diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1235d9e --- /dev/null +++ b/.gitignore @@ -0,0 +1,171 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +data/ +.DS_Store +# History files +.Rhistory +.Rapp.history + +# Session Data files +.RData + +# User-specific files +.Ruserdata + +# Example code in package build process +*-Ex.R + +# Output files from R CMD build +/*.tar.gz + +# Output files from R CMD check +/*.Rcheck/ + +# RStudio files +.Rproj.user/ + +# produced vignettes +vignettes/*.html +vignettes/*.pdf + +# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 +.httr-oauth + +# knitr and R markdown default cache directories +*_cache/ +/cache/ + +# Temporary files created by R markdown +*.utf8.md +*.knit.md + +# R Environment Variables +.Renviron diff --git a/README.md b/README.md index d01a981..6f5387f 100644 --- a/README.md +++ b/README.md @@ -1 +1,7473 @@ -# 2021PCOR-ML-AI +# Training Data for Machine Learning to Enhance PCOR Data Infrastructure + +[https://www.healthit.gov/topic/scientific-initiatives/pcor/machine-learning](https://www.healthit.gov/topic/scientific-initiatives/pcor/machine-learning) + +## Project Background +Innovative artificial intelligence (AI) methods and the increase in computational power support the use of tools and advanced technologies such as machine learning, which consumes large amounts of data to make predictions for actionable information. + +Current AI workflows make it possible to conduct complex studies and uncover deeper insights than traditional analytical methods do. As the volume and availability of electronic health data increases, patient-centered outcomes research (PCOR) investigators need better tools to analyze data and interpret those outcomes. A foundation of high-quality training data is critical to developing robust machine-learning models. Training data sets are essential to train prediction models that use machine learning algorithms, to extract features most relevant to specified research goals, and to reveal meaningful associations. + +See this [blog post](https://www.healthit.gov/buzz-blog/health-it/the-application-of-machine-learning-to-address-kidney-disease) for more background. + +Please contact onc.request@hhs.gov with questions about this project and rankin_summer@bah.com with any issues or questions about the code. + +Please see the detailed implementation guidance provided below or download it as a [pdf](./README.pdf). + + +# Implementation Guidance + +- [6.1 Data Understanding](#61-data-understanding) +- [6.2 Overall Training Dataset](#62-overall-training-dataset) + - [6.2.0 Deidentify the Data](#620-deidentify-the-data) + - [6.2.1 Overview of Cohort Creation](#621-overview-of-cohort-creation) + - [6.2.2 Connect to Postgres Database](#622-connect-to-postgres-database) + - [6.2.3 Convert Data to CSV](#623-convert-data-to-csv) + - [6.2.4 Create Patients Table](#624-create-patients-table) + - [6.2.5 Create Medevid Table](#625-create-medevid-table) + - [6.2.6 Join Patients to Medevid](#626-join-patients-to-medevid) + - [6.2.7 Create Transplant Waitlist Features](#627-create-transplant-waitlist-features) + - [6.2.8 Create Partition Data](#628-create-partition-data) + - [6.2.9 Join patients_medevid_waitlist Table to the Partition Index](#629-join-patients_medevid_waitlist-table-to-the-partition-index) + - [6.2.9.1 Calculate Demographic Subtotals Per Partition](#6291-calculate-demographic-subtotals-per-partition) + - [6.2.10 Get Pre-ESRD Claims Data](#6210-get-pre-esrd-claims-data) + - [6.2.11 Create Claims Tables](#6211-create-claims-tables) + - [6.2.12 Map Diagnosis Codes (drg_cd) to Primary Diagnosis Codes (pdgns_cd)](#6212-map-diagnosis-codes-drg_cd-to-primary-diagnosis-codes-pdgns_cd) + - [6.2.13 Get pre-2011 pre-ESRD Claims Data](#6213-get-pre-2011-pre-ESRD-claims-data) + - [6.2.14 Diagnosis Groupings](#6214-diagnosis-groupings) + - [6.2.15 Aggregate pre-ESRD Claims Data](#6215-aggregate-pre-esrd-claims-data) + - [6.2.16 Join the preesrdfeatures Tables to the Partition Index](#6216-join-the-preesrdfeatures-tables-to-the-partition-index) + - [6.2.17 Map ICD-9 to ICD-10](#6217-map-icd-9-to-icd-10) + - [6.2.18 Prepare Data for Modeling](#6218-prepare-data-for-modeling) + - [6.2.19 Impute Missing Values](#6219-impute-missing-values) + - [6.2.20 Utility Files](#6220-utility-files) + - [dx_mappings_ucsf.csv](#dx_mappings_ucsfcsv) + - [2017_I9gem_map.txt](#2017_I9gem_maptxt) + - [icd10_ccs_codes.R](#icd10_ccs_codesr) + - [icd10_dx_codes.txt](#icd10_dx_codestxt) + - [icd9_ccs_codes.R](#icd9_ccs_codesr) + - [icd9_dx_2014.txt](#icd9_dx_2014txt) + - [imputation_rules.xlsx](#imputation_rulesxlsx) + - [pre_esrd_ip_claim_variables.R](#pre_esrd_ip_claim_variablesr) + - [pre_esrd_hh_claim_variables.R](#pre_esrd_hh_claim_variablesr) + - [pre_esrd_hs_claim_variables.R](#pre_esrd_hs_claim_variablesr) + - [pre_esrd_op_claim_variables.R](#pre_esrd_op_claim_variablesr) + - [pre_esrd_sn_claim_variables.R](#pre_esrd_sn_claim_variablesr) + - [pre_esrd_pre2011_claim_variables.R](#pre_esrd_pre2011_claim_variablesr) + - [setfieldtypes.R](#setfieldtypesr) + - [6.2.21 Documentation of the Training Dataset](#6221-documentation-of-the-training-dataset) +- [6.3 ML Modeling and Evaluation](#63-ml-modeling-and-evaluation) + - [6.3.1 Non-Imputed XGBoost Model](#631-non-imputed-xgboost-model) + - [6.3.1.1 Pre-processing the training dataset](#6311-pre-processing-the-training-dataset) + - [6.3.1.2 Hyperparameter tuning for the non-imputed dataset](#6312-hyperparameter-tuning-for-the-non-imputed-dataset) + - [6.3.1.3 Final XGBoost model for the non-imputed dataset](#6313-final-xgboost-model-for-the-non-imputed-dataset) + - [6.3.1.4 Calibration](#6314-calibration) + - [6.3.1.5 Plotting calibrated results](#6315-plotting-calibrated-results) + - [6.3.1.6 Saving data for the fairness assessment](#6316-saving-data-for-the-fairness-assessment) + - [6.3.1.7 Fairness assessment](#6317-fairness-assessment) + - [6.3.1.8 Risk assessment](#6318-risk-assessment) + - [6.3.2 Imputed XGBoost Model](#632-imputed-xgboost-model) + - [6.3.2.1 Pre-processing the training dataset](#6321-pre-processing-the-training-dataset) + - [6.3.2.2 Hyperparameter tuning for each imputed dataset](#6322-hyperparameter-tuning-for-each-imputed-dataset) + - [6.3.2.3 Pooled hyperparameter tuning](#6323-pooled-hyperparameter-tuning) + - [6.3.2.4 Final imputed XGBoost model](#6324-final-imputed-xgboost-model) + - [6.3.2.5 Calibration](#6325-calibration) + - [6.3.2.6 Plotting calibrated results](#6326-plotting-calibrated-results) + - [6.3.2.7 Saving data for the fairness assessment](#6327-saving-data-for-the-fairness-assessment) + - [6.3.2.8 Fairness assessment](#6328-fairness-assessment) + - [6.3.2.9 Risk assessment](#6329-risk-assessment) + - [6.3.3 Logistic Regression (LR) Model](#633-logistic-regression-lr-model) + - [6.3.3.1 Pre-processing the training dataset](#6331-pre-processing-the-training-dataset) + - [6.3.3.2 Hyperparameter tuning and final logistic regression model](#6332-hyperparameter-tuning-and-final-logistic-regression-model) + - [6.3.3.3 Pool results](#6333-pool-results) + - [6.3.3.4 Plot results](#6334-plot-results) + - [6.3.3.5 Feature importance](#6335-feature-importance) + - [6.3.3.6 Fairness assessment](#6336-fairness-assessment) + - [6.3.3.7 Risk assessment](#6337-risk-assessment) + - [6.3.4 Artificial Neural Network--Multilayer Perceptron (MLP) Model](#634-artificial-neural-network--multilayer-perceptron-mlp-model) + - [6.3.4.1 Run docker container (optional)](#6341-run-docker-container-optional) + - [6.3.4.2 Run on a server (i.e. AWS)](#6342-run-on-a-server-ie-aws) + - [6.3.4.3 Pre-processing the data](#6343-pre-processing-the-data) + - [6.3.4.4 Hyperparameter tuning](#6344-hyperparameter-tuning) + - [6.3.4.5 Building layers and compiling the model](#6345-building-layers-and-compiling-the-model) + - [6.3.4.6 Final MLP model](#6346-final-mlp-model) + - [6.3.4.7 Pool results](#6347-pool-results) + - [6.3.4.8 Plot results](#6348-plot-results) + - [6.3.4.9 Fairness assessment](#6349-fairness-assessment) + - [6.3.4.10 Risk assessment](#63410-risk-assessment) +# 6.1 Data Understanding + +The source data for building the overall training dataset was obtained from the United States Renal Data System (USRDS), the national data registry developed from resources initiated by the Centers for Medicare & Medicaid Services (CMS) and its funded end-stage kidney disease (ESKD) networks and subsequently maintained by the National Institute for Diabetes and Digestive and Kidney Diseases (NIDDK). USRDS stores and distributes data on the outcomes and treatments of chronic kidney disease (CKD) and ESKD population in the U.S. +*(Note: to be consistent with USRDS terminology for data tables, this document uses end stage renal disease - ESRD - instead of ESKD.)* To better understand the data, data profiling was performed on the demographic variables and the outcome variable of interest (mortality in the first 90 days of dialysis). +Information on constructing the outcome variable can be found in [Section 6.2.4 Create Patients Table](#624-create-patients-table). + +The distribution of patients in the cohort who survived versus died in the first 90 days after dialysis initiation: +![died_vs_survived](./images/20210220_died_vs_survived_cohort.png) + +The age distribution of patients who survived versus died in the first 90 days after dialysis initiation: +![age_boxplot](./images/20210220_age_boxplot.png) + +The sex distribution of patients who survived versus died in the first 90 days after dialysis initiation: +![sex_cohort](./images/20210220_sex_cohort.png) + +The distribution by race of patients who survived versus died in the first 90 days after dialysis initiation: +![race_cohort](./images/survive_race_cohort.PNG) + + +# 6.2 Overall Training Dataset + +Section 6.2 details the methodology used to create the overall training dataset. A high level overview of the tables used for the training dataset can be found in [Section 6.2.1 Overview of Cohort Creation](#621-overview-of-cohort-creation) and results in a final dataset with 1,150,195 observations and 188 variables. The final dataset used for modeling is stored in PostgreSQL (Postgres) tables called `medxpreesrd`for the non-imputed variables and `micecomplete_pmm`for the imputed variables (5 sets of imputations were generated; more information on imputations can be found in [Section 6.2.19 Impute Missing Values](#6219-impute-missing-values)). + +The construction of `medxpreesrd` involves using more than 20 USRDS data tables, as well as publicly available data, for mapping diagnosis codes to groupings. + +All scripts are located in the DataSet/ directory on GitHub. + +Two types of files are involved in constructing `medxpreesrd`: +1) Sequential scripts - these have the prefix **S0-, "S1-"**, etc. to indicate the sequence in which they are run +2) Utility scripts - these create the data used by the sequential scripts + +Other resources that could be helpful to users include: +- [USRDS Researcher's Guide](https://www.usrds.org/media/2211/usrds_res_guide_app_b_datafiledescrip_16.pdf) +- [USRDS Researcher's Guide Appendix A](https://www.usrds.org/media/2457/usrds_res_guide_appendix_a-2020.pdf) +- [USRDS Researcher's Guide Appendix B](https://www.usrds.org/media/2458/usrds_res_guide_appendix_b_2020.pdf) +- [USRDS Researcher's Guide Appendix C](https://www.usrds.org/media/2459/usrds_res_guide_appendix_c_2020.pdf) +- [USRDS Researcher's Guide Appendix D](https://www.usrds.org/media/2460/usrds_res_guide_appendix_d_2020.pdf) + +## 6.2.0 Deidentify the Data + +The data received from USRDS was de-identified before use to comply with the approved University of San Francisco (UCSF) institutional review board (IRB) study plan. As per the Health Insurance Portability and Accountability Act (HIPAA) guidance, the following are identifiers: +- All elements of dates (except year) for dates directly related to an individual, including birth date, admission date, discharge date, date of death +- All ages over 89 and all elements of dates (including year) indicative of such age, except that such ages and elements may be aggregated into a single category of age 90 or older +- All geographic subdivisions smaller than a state, including street address, city, county, precinct, zip code, and their equivalent geocodes + +The date variables in USRDS were de-identified by offsetting each date by a randomly chosen number specific to each patient. For example, if first ESRD service date is April 5, 2016 and the random offset is 60 days, then first ESRD service day is transformed to April 5, 2016 plus 60 days (or June 5, 2016); for the same patient, if the date of birth is Sept 1, 1950, then date of birth gets transformed to Sept 1, 1950 plus 60 days (or Nov 1, 1950). +The ages of patients were de-identified by setting the age of all patients over the age of 90 to 90. +The location variables were de-identified by removing all location variables (zip code, etc.) from the dataset. + +***Points to consider*** + +1. Other methods can be used to de-identify locations without completely deleting the variables, such as by combining all zip codes with the same three initial digits to form geographic units containing more than 20,000 people according to the current publicly available data from the Bureau of the Census. For all such geographic units containing 20,000 for fewer people, the initial three digits should be changed to 000. + +2. Complete de-identification of the datasets obtained from USRDS was performed to comply with UCSF IRB requirements. Not all IRBs may require that PII/PHI be de-identified prior to use in a project. Future researchers may consider working with their IRB to ensure that relevant identifier variables for a specific use case are retained in the source dataset used for building the training datasets and ML models. + +## 6.2.1 Overview of Cohort Creation + +This diagram is a high level view of the tables used to create the cohort for the dataset. The number of rows and/or patients is listed at each stage of the cohort selection. Each of these R scripts is detailed below in the guide. The colors represent the following items: +- Yellow = R scripts +- Pink = Tables in the PostgreSQL database +- Green = Inclusion criteria + +![flow_of_data](./images/ONC_ML_Dataset_Flowchart.svg) + +## 6.2.2 Connect to Postgres Database + +***Steps for running the S0-connectToPostgres.R script*** + +This script creates and calls a function to 1) create a connection to a Postgres database and 2) drop a Postgres table if it exists. Both of these functions are used heavily throughout the dataset creation and are typically loaded into the top of each script. Each user will have their own details for connecting to Postgres. + +**Environment**: + +The Postgres Database for this project was hosted in an Amazon Web Services (AWS) environment with the following specifications: +``` +Name: t2.large +vCPU: 2 +GPU: 0 +Architecture: x86_64 +Memory: 8 GB +Storage: 500 GB +Operating System: Windows +Network Performance: low to moderate +Zone: US govcloud west +``` +The overall training dataset set was created using R (version 3.6.3 (2020-02-29) running on x86_64 Linux Ubuntu 20.04.1 LTS) and a PostgreSQL database (PostgreSQL 12.3, compiled by gcc (GCC) 4.8.3 20140911 (Red Hat 4.8.3-9), 64-bit). The specific R libraries and versions are shown in the table below: + +|R library |Version | +|-------------------|---------| +|RPostgres | 1.3.1| +|DBI |1.1.1| +|stringr| 1.4.0| +|haven |2.4.0| +|readr |1.4.0| +|lubridate| 1.7.9.2| +|dplyr |1.0.4| +|magrittr| 1.5| +|tidyr |1.1.2| +|sqldf |0.4-11| +|RSQLite| 2.2.3| +|gsubfn |0.7| +|proto |1.0.0| +|readxl |1.3.1| +|plyr |1.8.6| +|mice |3.13.0| + +**Input**: +``` +Name of the database +database port +user name +user password +``` + +Step 1. Create function for connecting to Postgres. +``` +dbConnect( + RPostgres::Postgres(), + dbname = cred$dbname, + host=cred$host, + port=cred$port, + user=cred$user, + password=cred$password + ) +- Output: + - An object called "con" that can be used in database queries. +- Example: +con = getConnection() +``` +Step 2. Create function for dropping a Postgres table if it exists. +``` +drop_table_function <- function(con, tablename) { + if (isTRUE(dbExistsTable(con, tablename))) { + print(str_glue("existing {tablename} table dropped")) + dbRemoveTable(con, tablename) + } + else { + print(str_glue("{tablename} table does not exist")) + } +} +``` +## 6.2.3 Convert Data to CSV + +***Steps for running the S1a_convertSAStoCSV.R script*** + +This script reads in a list of files from the raw source data (**.sas7bdat** files in USRDS data) and saves them as a .csv file. The reason for this conversion to CSV before loading into R is that the SAS files contain more information than is needed/able to store in Postgres or an R table, such as categorical variable encodings that are also documents in the USRDS Researchers Guide Appendix B and C. + +**Input**: +- source_data_dir string path to the raw data file +- file_name string name of the file without the extension +- output_data_dir string path to the output directory for csv files + +**Ouput**: +- A .csv version of the file with the same file_name + +Step 1. Convert and combine the raw source data from .sas7bdat files to .csv files +``` +convert_to_csv = function(source_data_dir, file_name, output_data_dir) { + raw_file_path = haven::read_sas(str_glue("{source_data_dir}{file_name}.sas7bdat")) + csv_path = str_glue("{output_data_dir}{file_name}.csv") + write_csv(raw_file_path, csv_path) +} +``` +- Example: +``` +convert_to_csv("/home/sas_data_usrds/", "patients", "/home/csv_data_usrds/")} +``` + +## 6.2.4 Create Patients Table +***Steps for running the S1b_patients.R script*** + +This script creates the table `patients`in the Postgres database, after filtering on the criteria to create the study cohort and the dependent variable (died in the first 90 days of dialysis). + +**Input**: csv files are produced in script [S1a-convertSAStoCSV.R](#623-convert-data-to-csv) +``` +patients.csv +``` +**Output**: Postgres table +``` +patients +``` + +Step 1. Import patients and apply exclusion criteria +``` +cohort_patients = read_csv(file.path(data_dir, "patients.csv"), col_types = cols( + CDTYPE = "c")) + +names(cohort_patients) = tolower(names(cohort_patients)) +``` +Connect to the Postgres database using the [S0-connectToPostgres.R](#622-connect-to-postgres-database) script, which results in the variable **con** that is used in the queries to Postgres. This also imports the **drop_table_function** used when creating a Postgres table. These functions are used in almost every script and will be imported at the top in the code. +``` +source(file.path(source_dir, "S0-connectToPostgres.R")) +``` +Store the raw cohort_patients data as "patients" table in Postgres (after dropping the table if it exists). +``` +fields = names(cohort_patients) +drop_table_function(con, "patients") + dbCreateTable( + con, + name = "patients", + fields = cohort_patients, + row.names = NULL + ) +dbWriteTable( + con, + name = "patients", + value = cohort_patients, + row.names = FALSE, + append = TRUE + ) +``` +The `patients` table holds the data for the 1,150,195 patients (rows) in the cohort which is created by excluding the following rows: +- age less than 18 +- incident year before 2008 +- incident year after 2017 +- first dialysis date is missing +- death date is before first dialysis date (one patient) + +The script does each exclusion criteria separately to calculate the number of rows/patients at each stage, but the exclusion can be done more simply with one SQL query shown below (and commented out in the script). +``` +exclude_patients = str_glue( + "DELETE FROM patients + WHERE inc_age<18 + OR incyear>2017 + OR incyear<2008 + OR masked_firstdial IS NULL + OR masked_died 90 are set to 90. +``` +patients_dependent_var = cohort_patients %>% + mutate(inc_age=ifelse(inc_age>90, 90, inc_age), +``` +Step 3. Create the **days_on_dial** variable by converting the **masked_died** and **masked_firstdial** to a date and by calculating the number of days between them. +``` + masked_firstdial = as_date(masked_firstdial, origin = "1960-01-01"), + masked_died = as_date(masked_died, origin = "1960-01-01"), + days_on_dial = as.double(difftime(masked_died, + masked_firstdial, + units = "days")), +``` +Step 4. Create the dependent variable (outcome variable) **died_in_90** by setting all patients with a value for **days_on_dial** to 1 (died) and patients with no value for **days_on_dial** to 0 (survived). +``` + died_in_90 = ifelse(is.na(days_on_dial), 0, ifelse(days_on_dial <= 90, 1, 0)), +``` +Step 5. Convert data variables to dates that are used to calculate waitlist and transplant status. +``` + masked_first_se = as_date(masked_first_se, origin = "1960-01-01"), +``` +**can_first_listing_dt** is the first date patient is ever waitlisted. +``` + masked_can_first_listing_dt = as_date(masked_can_first_listing_dt, origin = "1960-01-01"), +``` +**can_rem_dt** is the date patient was removed from the waitlist the first time. +``` + masked_can_rem_dt = as_date(masked_can_rem_dt, origin = "1960-01-01"), + masked_tx1date = as_date(masked_tx1date, origin = "1960-01-01"), + masked_tx1fail = as_date(masked_tx1fail, origin = "1960-01-01") +``` +Step 6. Save this table to Postgres as `patients` after dropping the initial `patients` table. +``` +drop_table_function(con, "patients") + dbCreateTable( + con, + name = "patients", + fields = patients_dependent_var, + row.names = NULL + ) + dbWriteTable( + con, + name = "patients", + value = patients_dependent_var, + row.names = FALSE, + append = TRUE + ) +``` +***Points to consider*** + +1. The study cohort as well as the outcome variable for the use case should be driven by a strong clinical understanding of the data and defined with clinician input. For example, kidney transplant events occurring within the first 90 days of initiating dialysis were evaluated as a potential competing outcome for death. However, since only less than 1% of the patient cohort recieved kidney transplants, retaining the patients in the study cohort would likely have only a small effect on modeling. After consultating with clinicans and the Technical Expert Panel, it was determined that patients with kidney transplants should be retained in the patient cohort for the purposes of this analysis. + +2. The origin date when converting data variables to readable dates is 1960-01-01. + +## 6.2.5 Create Medevid Table +The Medevid table contains the data from [CMS Form 2728 -- Medical Evidence Form](https://www.cms.gov/Medicare/CMS-Forms/CMS-Forms/Downloads/CMS2728.pdf), a form required to be completed and submitted when a patient is diagnosed with ESRD and receives their first chronic dialysis treatment(s) or receives a transplant. Medevid contains data on patient demographics, insurance status, comorbid conditions, primary cause of kidney failure, and laboratory values at the time of ESRD diagnosis as well as prior nephrology care, dietician care, and patient education. + +***Steps to running the 4.1.5 S1c_medevid.R script*** + +This script creates the `medevid` table in Postgres database. +The `medevid` table is filtered based on the following: +- Keep only rows with a matching **usrds_id** from our `patients` table +- For **usrds_ids** with multiple entries, select the first entry (in the table order) for each **usrds_id** +- The final table results in 1,150,195 patients/rows + +**Input**: csv files are produced in script [S1a-convertSAStoCSV.R](#623-convert-data-to-csv) +``` +patients +medevid.csv +``` +**Output**: Postgres table +``` +medevid +``` +Step 1. Import `medevid` data +``` +raw_medevid = read_csv(file.path(data_dir, filename), col_types = cols( + CDTYPE = "c", + masked_UREADT = "c", + ALGCON = "c", + PATNOTINFORMEDREASON = "c", + RACEC = "c", + RACE_SUB_CODE = "c")) + + names(raw_medevid) = tolower(names(raw_medevid)) +``` +Step 2. Import the **usrds_ids** from the `patients` table +``` +patients_filtered = dbGetQuery( + con, + str_glue( + " + SELECT * + FROM {table_name_pt} + ")) +``` +Step 3. Remove unused columns + +Columns with the comorbidities that were only collected in the 1995 version of the Medical Evidence Form were removed from the training dataset as patients with ESRD incident years between 2008-2017 do not have this data collected. +``` +medevid_ids_filtered = raw_medevid %>% + select(-c( + "como_ihd", + "como_mi", + "como_cararr", + "como_dysrhyt", + "como_pericar", + "como_diabprim", + "como_hiv", + "como_aids")) %>% +``` +Step 4. Filter on **usrds_ids** from the `patients` table +``` + filter(usrds_id %in% patients_filtered$usrds_id) +``` +Step 5. Keep first row of `medevid` data if a **usrds_id** has more than one, per the USRDS Researcher's Guide for de-duplicating the `medevid` table +``` +medevid_filtered = medevid_ids_filtered %>% + distinct(usrds_id, .keep_all = TRUE) %>% +``` +Step 6. Calculate the dialysis train time in days +``` + mutate( + masked_trnend = as_date(masked_trnend, origin = "1960-01-01"), + masked_trstdat = as_date(masked_trstdat, origin = "1960-01-01"), + + dial_train_time = as.double(difftime(masked_trnend, + masked_trstdat, + units = "days")) + ) +``` +***Points to consider*** + +1. It is important not to sort or alter the order of (or import into a SQL database) the `medevid` table before selecting the first entry per **usrds_id** for the `medevid` table. This order of the entries from the `medevid` table is curated as per the USRDS Researcher's Guide, which advises users to selected the first `medevid` entry for analysis. For other use cases, especially those requiring a longtitudinal dataset, the multiple MEDEVID records per patient may need to be retained. Decisions on how to handle the duplicated data should be made with the proposed use case in mind. + +2. Constructed features should be validated with clinicians to ensure that they are meaningful. For example, several preliminary features were initially constructed from the variables in the `medevid` table to serve as a proxy for prior nephrology care, such as whether a physician signature was present on the Medical Evidence form, the time between a patient signature and physician signature on the Medical Evidence Form, etc. After discussing these features with the clinicians on the team, it was determined that since a nephrologist's signature is required when a patient is referred for dialysis treatment, the signature date field is not a good proxy measure. + +## 6.2.6 Join Patients to Medevid + +***Steps to running the S1d_patients_medevid_join.R script*** + +This script creates the `patients_medevid` table in Postgres database. The `patients_medevid` table consists of the `patients` table with the data from the `medevid` table added via left join on **usrds_id**. + +**Input**: Postgres tables +``` +patients +medevid +``` +**Output**: Postgres table +``` +patients_medevid +``` +The result of this script produces the same 1,150,195 rows as we have in the `patients` table. + +Step 1. Left join the `patients` table and `medevid` table on **usrds_id** +``` +patients_medevid = left_join( + patients_filtered %>% select(-c( "cdtype")), + medevid_filtered %>% select(-c("randomoffsetindays", "disgrpc", "network", "inc_age", + "pdis", "sex", "race", "masked_died")), + by = "usrds_id" + ) +``` +The **cdtype** column is kept from the `medevid` table, the other duplicate colums are from the `patients` table + +Step 2. Populate any missing values for **sex** and **pdis** variables in `patients` with values from `medevid` (otherwise keep any duplicate columns from `patients`) +``` +patients_medevid = patients_medevid %>% + mutate( + sex = ifelse(is.na(sex), sex_med, sex), + pdis = ifelse(is.na(pdis), pdis_med, pdis) + ) %>% + select(-c(sex_med, pdis_med)) +``` + +## 6.2.7 Create Transplant Waitlist Features +The transplant data tables contains kidney transplant information from United Network for Organ Sharing (UNOS), such as information on transplant elibigility and transplant status. These features are created as transplant waitlist status and the amount of time on the transplant waitlist are indicative of a patients overall health status. Patients who are on the transplant waitlist are generally much healthier than those who are not listed. + +***Steps to running the S1e_patients_medevid_waitlist.R script*** + +This script creates the `waitseq_ki`, `waitseq_kp`, `tx`, `tx_waitlist_vars` and `patients_medevid_waitlist` tables in the Postgres database from the .csv files and the `patients_medevid` table. + +**Input**: csv files are produced in script [S1a-convertSAStoCSV.R](#623-convert-data-to-csv) +``` +patients_medevid +tx.csv +waitseq_kp.csv +waitseq_ki.csv +``` +**Output**: Postgres tables +``` +waitseq_ki +waitseq_kp +tx +tx_waitlist_vars +patients_medevid_waitlist +``` + +`patients_medevid_waitlist` is the full cohort that should be used from this point forward. + +The result of this script is the calculation of the following variables added to the `patients_medevid` table which will be saved as the `patients_medevid_waitlist` table. +``` +days_on_waitlist (number of days in transplant waitlist) +waitlist_status (active, transplanted, removed, never) +``` +Step 1. Import the `patients` table +``` +pat = dbGetQuery(con, + "SELECT * + FROM patients_medevid") +``` +Step 2. Import the **waitseq_ki.csv** file. +``` +waitseq_ki = read_csv(file.path(data_dir,"waitseq_ki.csv"), col_types = cols( + USRDS_ID = col_double(), + randomOffsetInDays = col_double(), + PROVUSRD = col_double(), + PID = col_double(), + masked_BEGIN = col_double(), + masked_ENDING = col_double() + )) +``` +Step 3. Transform column names to lowercase +``` +names(waitseq_ki) = tolower(names(waitseq_ki)) +``` +Step 4. Filter on rows with usrds_id in cohort. +``` +waitseq_ki = waitseq_ki %>% + filter(usrds_id %in% pat$usrds_id) %>% +``` +Step 5. Set **masked_begin** and **masked_ending** as dates. +``` + mutate(ws_list_dt = as_date(masked_begin, origin = "1960-01-01"), + ws_end_dt = as_date(masked_ending, origin = "1960-01-01"), + source = "ki") %>% +``` +Step 6. Keep only the following columns: +- ws_list_dt = New Waiting Period Starting Date +- ws_end_dt = New Waiting Period Ending Date +- provusrd = USRDS Assigned Facility ID +- source = 'ki' +- usrds_id +- pid +``` + select(usrds_id, pid, provusrd, ws_list_dt, ws_end_dt, source) +``` +Step 7. Save as the `waitseq_ki` table in Postgres +``` +fields = names(waitseq_ki) +drop_table_function(con, "waitseq_ki") +print(str_glue("create waitseq_ki in postgres")) +dbCreateTable( + con, + name = "waitseq_ki", + fields = waitseq_ki, + row.names = NULL +) +dbWriteTable( + con, + name = "waitseq_ki", + value = waitseq_ki, + row.names = FALSE, + append = TRUE +) +``` +Step 8. Import **waitseq_kp.csv** +``` +waitseq_kp = read_csv(file.path(data_dir,"waitseq_kp.csv"), col_types = cols( + USRDS_ID = col_double(), + randomOffsetInDays = col_double(), + PROVUSRD = col_double(), + PID = col_double(), + masked_BEGIN = col_double(), + masked_ENDING = col_double() +)) +names(waitseq_kp) = tolower(names(waitseq_kp)) +``` +Step 9. Filter on rows with usrds_id in cohort. +``` +waitseq_kp = waitseq_kp %>% + filter(usrds_id %in% pat$usrds_id) %>% +``` +Step 10. Set **masked_begin** and **masked_ending** as dates and save with new names **ws_list_dt** and **ws_end_dt**. +``` + mutate(ws_list_dt = as_date(masked_begin, origin = "1960-01-01"), + ws_end_dt = as_date(masked_ending, origin = "1960-01-01"), + source = "kp") %>% +``` +Step 11. Keep only the following columns: +- ws_list_dt = New Waiting Period Starting Date +- ws_end_dt = New Waiting Period Ending Date +- provusrd = USRDS Assigned Facility ID +- source = 'kp' +- usrds_id +- pid +``` + select(usrds_id, pid, provusrd, ws_list_dt, ws_end_dt, source) +``` +Step 12. Save as the `waitseq_kp` table in Postgres. +``` +fields = names(waitseq_kp) +drop_table_function(con, "waitseq_kp") +print(str_glue("create waitseq_kp in postgres")) +dbCreateTable( + con, + name = "waitseq_kp", + fields = waitseq_kp, + row.names = NULL +) +dbWriteTable( + con, + name = "waitseq_kp", + value = waitseq_kp, + row.names = FALSE, + append = TRUE +) +``` +Step 13. Concatenate waitseq_ki and waitseq_kp. +``` +waitseq = bind_rows(waitseq_ki, waitseq_kp) %>% + arrange(usrds_id, ws_list_dt) +``` +Step 14. Join the new waitseq table to `patients`. +``` +pat_waitseq = left_join( + pat %>% select(usrds_id, masked_first_se, masked_firstdial, + masked_can_first_listing_dt, masked_can_rem_dt, + masked_tx1date, masked_died, can_rem_cd, masked_tx1fail), + waitseq, + by = "usrds_id") %>% + arrange(usrds_id, ws_list_dt) +``` +Step 15. Label patients as ACTIVE on the waitlist and calculate the days on the transplant waitlist for ACTIVE patients + +Patients are labeled as "active" (those who are considered active on the transplant waitlist) if they meet one of the following criteria: +1. If list_date is before dial_date and end_date is on or after dial_date +2. Status is ACTIVE on the first day of dialysis + +First, check if earliest listing date from `waitseq` matches first listing date from `patients`. +``` +first_list = pat_waitseq %>% group_by(usrds_id) %>% + arrange(usrds_id, ws_list_dt) %>% + distinct(usrds_id, .keep_all = TRUE) %>% + ungroup(usrds_id) +``` +If **list_date** is before **dial_date** and **end_date** is on or after **dial_date**, OR if **list_dt** < **dial_dt** and **end_dt** == NA: +status is ACTIVE. +``` +pat_waitseq = pat_waitseq %>% + mutate(active = ifelse( + (ws_list_dt < masked_firstdial & ws_end_dt >= masked_firstdial) | (ws_list_dt < masked_firstdial & is.na(ws_end_dt)), 1, 0)) + +active = pat_waitseq %>% + filter((ws_list_dt < masked_firstdial & ws_end_dt >= masked_firstdial) | (ws_list_dt < masked_firstdial & is.na(ws_end_dt))) +``` +Calculate the days on the transplant waitlist for ACTIVE patients using **dial_dt** - **ws_list_dt**. +``` +active = active %>% + mutate( + days_on_waitlist = as.double(difftime(masked_firstdial, + ws_list_dt, + units = "days")) + ) +``` +Step 16. Remove ACTIVE patients from `pat_waitseq` + +Sort by **usrds_id** and **ws_list_dt** and keep the row with the earliest **ws_list_dt**. +``` +active = active %>% group_by(usrds_id) %>% + arrange(usrds_id, ws_list_dt) %>% + distinct(usrds_id, .keep_all = TRUE) %>% + ungroup(usrds_id) +``` +Remove active patients from `pat_waitseq`. Get unique **usrds_ids** in active dataframe. +``` +active_id = unique(active$usrds_id) +``` +Filter out rows from `pat_waitseq` where **usrds_id** is in the list of active USRDS IDs (**active_id**). +``` +pat_waitseq_not_act = pat_waitseq %>% + filter(!usrds_id %in% active_id) +``` +Step 17. Import the transplant dataset and process the data + +Import **tx.csv**. +``` +tx = read_csv(file.path(data_dir,"tx.csv"), col_types = cols( + DHISP = "c", + DSEX = "c", + RHISP = "c", + RSEX = "c" +)) + +names(tx) = tolower(names(tx)) +``` +Filter on rows with **usrds_id** in cohort. +``` +tx = tx %>% + filter(usrds_id %in% pat$usrds_id) %>% +``` +Transform **masked_tdate** to a date and save as **t_tx_dt**. +``` + mutate(t_tx_dt = as_date(masked_tdate, origin = "1960-01-01"), +``` +Transform **masked_faildate** to a date and save as **t_fail_dt**. +``` + t_fail_dt = as_date(masked_faildate, origin = "1960-01-01")) %>% +``` +Keep only the following columns: +- **t_tx_dt** = transplant date +- **t_fail_dt** = Transplant Failure Date +- **provusrd** = USRDS Assigned Facility ID +- **tottx** = Patient Total Number of Transplants +- **tx_srce** = Source of Transplant Record +- **usrds_id** +``` + select(usrds_id, provusrd, t_tx_dt, t_fail_dt, tottx, tx_srce) %>% + arrange(usrds_id, t_tx_dt) +``` +Step 18. Save as `tx` in Postgres database +``` +fields = names(tx) +drop_table_function(con, "tx") +print(str_glue("create tx in postgres")) +dbCreateTable( + con, + name = "tx", + fields = tx, + row.names = NULL +) +dbWriteTable( + con, + name = "tx", + value = tx, + row.names = FALSE, + append = TRUE +) +``` +Step 19. Construct TRANSPLANTED status + +Subset rows where LISTING DATE and LIST END DATE are both **BEFORE** DIAL START DATE +Subset rows with ws_list_dt (listing date) & ws_end_date (list end date) both **BEFORE** patient masked_firstdial (dialysis start date). +``` +list_before_dial = pat_waitseq_not_act %>% + filter(ws_list_dt < masked_firstdial & ws_end_dt < masked_firstdial) +``` +Group by **usrds_id**, sort by largest to smallest end_date, and keep the maximum **end_date** for each **usrds_id**. +``` +closest_end_dt_to_dial = list_before_dial %>% group_by(usrds_id) %>% + arrange(usrds_id, desc(ws_end_dt)) %>% + distinct(usrds_id, .keep_all = TRUE) %>% + ungroup(usrds_id) +``` +Left join `closest_end_dt_to_dial` and `tx` on **usrds_id**. This has effect of filtering `tx` dataset and keeping rows where **usrds_id** is in `closest_end_dt_to_dial`. + +If the maximum end date (**max_end_dt**) is equal to the transplant date (**t_tx_dt**), then the status is TRANSPLANTED. +``` +max_end_dt = left_join( + closest_end_dt_to_dial %>% select(-pid, -provusrd), + tx %>% select(usrds_id, t_tx_dt, t_fail_dt), + by = "usrds_id" +) + +max_end_dt = max_end_dt %>% + mutate(transplanted = if_else(is.na(t_tx_dt), 0, + if_else(ws_end_dt == t_tx_dt, 1, 0))) +transplanted = max_end_dt %>% + filter(ws_end_dt == t_tx_dt) +``` +Days on waitlist for TRANSPLANTED patients is **t_tx_dt** - **ws_list_dt**. +``` +transplanted = transplanted %>% + mutate( + days_on_waitlist = as.double(difftime(t_tx_dt, + ws_list_dt, + units = "days")) + ) +``` +Step 20. Construct REMOVED status + +Remove rows from **max_end_dt** where **usrds_id** is in `transplanted`. + +Get the unique **usrds_ids** in transplanted dataframe. +``` +transplanted_id = unique(transplanted$usrds_id) +``` +Filter out rows from **max_end_dt** where **usrds_id** is in **transplanted_id**. +``` +no_act_or_trans = max_end_dt %>% + filter(!usrds_id %in% transplanted_id) +``` +The remaining IDs should have REMOVED status. Check that all rows meet the removed criteria. +``` +num_no_act_tx = nrow(no_act_or_trans %>% + filter(ws_end_dt != t_tx_dt | is.na(t_tx_dt))) +``` +Create a REMOVED column and set **removed** = 1 if **ws_end_dt** != **t_tx_dt** or **t_tx_dt** = NA. +``` +no_act_or_trans = no_act_or_trans %>% + mutate(removed = if_else(ws_end_dt != t_tx_dt | is.na(t_tx_dt), 1, 0)) + +removed = no_act_or_trans %>% + filter(ws_end_dt != t_tx_dt | is.na(t_tx_dt)) +``` +Days on waitlist for REMOVED patients is **ws_end_dt** - **ws_list_dt**. +``` +removed = removed %>% + mutate( + days_on_waitlist = as.double(difftime(ws_end_dt, + ws_list_dt, + units = "days")) + ) +``` +Note: REMOVED only has duplicates because the `tx` table has duplicate rows for some patients, but the waitseq start and end dates are the same for both rows of each **usrds_id**, so only the first record is kept. +``` +removed = removed %>% group_by(usrds_id) %>% + arrange(usrds_id, ws_list_dt) %>% + distinct(usrds_id, .keep_all = TRUE) %>% + ungroup(usrds_id) +``` +Get unique **usrds_ids** in the `removed` dataframe. +``` +removed_id = unique(removed$usrds_id) +``` + +Step 21. Merge **days_on_waitlist** with **usrds_id** from active, transplanted, and removed. +``` +days = bind_rows(active %>% select(usrds_id, days_on_waitlist), + transplanted %>% select(usrds_id, days_on_waitlist), + removed %>% select(usrds_id, days_on_waitlist)) +days = days %>% arrange(usrds_id) +``` +Add ACTIVE patients to the `patients` table by setting all rows in `pat` where **usrds_id** is in **active_id** to ACTIVE = 1. +``` +pat = pat %>% + mutate(active = if_else(usrds_id %in% active_id, 1, 0)) %>% + select(usrds_id, active, masked_first_se, masked_firstdial, masked_can_first_listing_dt, + masked_can_rem_dt, masked_tx1date, masked_died, can_rem_cd, masked_tx1fail) +``` +Add TRANSPLANTED patients to the `patients` table by setting all rows in pat where **usrds_id** is in **transplanted_id** to TRANSPLANTED = 1. +``` +pat = pat %>% + mutate(transplanted = if_else(usrds_id %in% transplanted_id, 1, 0)) + +n_both = nrow(pat %>% filter(active == 1 & transplanted == 1)) +if (n_both!=0){ + print("WARNING! rows exist where active and transplanted are both == 1") +} +``` +Add REMOVED patients to the `patients` table by setting all rows in pat where **usrds_id** is in **removed_id** to REMOVED = 1. +``` +pat = pat %>% + mutate(removed = if_else(usrds_id %in% removed_id, 1, 0)) +``` +Step 22. Construct the NEVER status + +Set all rows where active, transplanted, and removed are all 0 to NEVER = 1. +``` +pat = pat %>% + mutate(never = if_else(active == 0 & transplanted == 0 & removed == 0, 1, 0)) +``` +Calculate the time on the waitlist. Join **days_on_waitlist** onto `patients` table. +``` +pat = left_join( + pat, + days, + by = "usrds_id" +) +``` +When **never** is 0, set **days_on_waitlist** to 0. +``` +pat = pat %>% + mutate(days_on_waitlist = replace_na(days_on_waitlist, 0)) +``` +Step 23. Reshape into long form with one **waitlist_status** variable. +``` +pat2 = pat %>% + mutate(waitlist_status = names( + pat %>% select( + active, transplanted, removed,never))[ + max.col(pat %>% select(active, transplanted, removed, never))]) +``` +Step 24. Save waitlist variables to Postgres. +``` +tx_waitlist_vars = pat2 %>% + select(usrds_id, waitlist_status, days_on_waitlist) %>% + arrange(usrds_id) + +csv_path = str_glue("{data_dir}tx_waitlist_vars.csv") +write_csv(tx_waitlist_vars,csv_path) +drop_table_function(con, "tx_waitlist_vars") +dbWriteTable( + con, + name = "tx_waitlist_vars", + value = tx_waitlist_vars, + row.names = FALSE, + append = TRUE) +``` +Step 25. Merge with `patients_medevid` and save to Postgres by adding the waitlist and transplant features to the `patient_medevid` table. +``` +patients_med = dbGetQuery(con, + "SELECT * + FROM patients_medevid") + +patients_med_waitlist = inner_join( + patients_med, + tx_waitlist_vars, + by="usrds_id" +) +fields = names(patients_med_waitlist) +print(str_glue("create patients_medevid_waitlist in postgres")) +drop_table_function(con, "patients_medevid_waitlist") +dbCreateTable( + con, + name = "patients_medevid_waitlist", + fields = patients_med_waitlist, + row.names = NULL +) +dbWriteTable( + con, + name = "patients_medevid_waitlist", + value = patients_med_waitlist, + row.names = FALSE, + append = TRUE +) +``` + +## 6.2.8 Create Partition Data + +***Steps for Running S2a_partitionData.R*** + +This script creates the `partition_10` table in Postgres which consists of **usrds_id** and **subset** and adds this **subset** column to the `patients_medevid_waitlist` table. +This **subset** column is the result of partitioning the number of rows (1,150,195) into 10 random subsets (numbered 0, 1, ..., 9) and assigning a patient identifier (**usrds_id**) to each subset. The purpose of partitioning the data is three-fold: +1. to ensure that there is no leakage between the training and test datasets (correctly stratify the classes) +2. to manage performance of imputation code (larger datasets require longer run times) +3. to ensure that the machine learning models are reproducible for any users (as opposed to setting the seed and using a library like caret to partition) + +Note: Each subset is *approximately* 10% because it is constructed completely at random. + +Input: `patients_medevid_waitlist` table from Postgres + +Output: `partition_10` table in Postgres + +Step 1. Define function to create **num_partitions** (10) indexed in a column named **subset** and save to Postgres as **partition_10** +``` +partition_data <- function(con, + usrds_id, + num_partitions, + data_tablename, + seed_value) { + + set.seed(2539) + + randvalue = runif( + length(usrds_id), + min = 0, + max = num_partitions + ) + + universe = cbind( + usrds_id, + floor(randvalue)) %>% + as.data.frame() + + names(universe) = c("usrds_id", "subset") + + tblname = str_glue("partition_{num_partitions}") + drop_table_function(con, tblname) + dbWriteTable( + con, + tblname, + universe, + append = FALSE, + row.names = FALSE + ) +} +``` +Step 2. Import the **usrds_ids** from Postgres. +``` +data_tbl = "patients_medevid_waitlist" + +usrds_id = dbGetQuery( + con, + str_glue( + " + SELECT usrds_id + FROM {data_tbl} + ORDER BY usrds_id + ")) +usrds_id = usrds_id$usrds_id +``` +Call the function defined above to create the 10 partitions. +``` +partition_data( + con, + usrds_id, + num_partitions = 10, + data_tablename = data_tbl + ) +``` + +## 6.2.9 Join `patients_medevid_waitlist` Table to the Partition Index + +***Steps to running the S2b_join_partition_data.R script*** + +This script joins the `patients_medevid_waitlist` table to the partition index. + +Input: `patients_medevid_waitlist` + +Output: `patients_medevid_waitlist` + +Step 1. Define a function to import and alter the `patients_medevid_waitlist` table by adding the **subset** column, and save to Postgres. +``` +join_data_partitions <- function(con, + data_tablename="patients_medevid_waitlist", + num_partitions=10){ + + dbSendStatement(con, str_glue( + " + ALTER TABLE {data_tablename} + ADD subset integer + "), n = -1) + + dbSendStatement( + con, + str_glue( + " + UPDATE {data_tablename} d + SET subset = p.subset + FROM partition_{num_partitions} p + WHERE d.usrds_id = p.usrds_id + "), n = -1) +} +``` +Step 2. Execute the function +``` +data_tbl = "patients_medevid_waitlist" + +join_data_partitions( + con, + data_tablename = data_tbl, + num_partitions = 10 +) +``` + +## 6.2.9.1 Calculate Demographic Subtotals Per Partition + +***Steps to running the S2c_calculate_partition_totals.R script*** + +This script creates a table with counts of select categories for each data partition to ensure that the partitions are representative of the entire dataset. + +Input: `patients_medevid_waitlist` + +Output: ./partition_totals_rev_method.csv + +Step 1. Pull the data from the database and count the number of patients per partition for the following variables: +- sex = male +- race = white +- number of missing hemoglobin values +- number of missing serum creatine values +- number of missing albumin values +- number of patients who died in the first 90 days (outcome variable) +``` +df = dbGetQuery( + con, + " + SELECT * + FROM patients_medevid_waitlist + " +) + +subsets_totals = df %>% + select(subset) %>% + group_by(subset) %>% + count() + +subsets_totals = rename(subsets_totals, c("total_pts"=n)) + +subsets_male = df %>% + filter(sex==1) %>% + select(sex, subset) %>% + group_by(sex, subset) %>% + count() +subsets_male <- rename(subsets_male, c("total_males"=n)) + +subsets_white = df %>% + filter(race==1) %>% + select(subset, race) %>% + group_by(subset,race) %>% + count() +subsets_white <- rename(subsets_white, c("total_white"=n)) + +subsets_heme = df %>% + filter(is.na(heglb)==TRUE) %>% + select(subset,heglb) %>% + group_by(heglb, subset) %>% + count() +subsets_heme <- rename(subsets_heme, c("total_heme_na"=n)) + +subsets_sercr = df %>% + filter(is.na(sercr)==TRUE) %>% + select(subset,sercr) %>% + group_by(sercr, subset) %>% + count() +subsets_sercr <- rename(subsets_sercr, c("total_sercr_na"=n)) + +subsets_album = df %>% + filter(is.na(album)==TRUE) %>% + select(subset,album) %>% + group_by(album, subset) %>% + count() +subsets_album <- rename(subsets_album, c("total_album_na"=n)) + +subsets_outcome = df %>% + filter(died_in_90==1) %>% + select(subset,died_in_90) %>% + group_by(died_in_90,subset) %>% + count() +subsets_outcome <- rename(subsets_outcome, c("total_died"=n)) + +dd = + left_join( + subsets_totals, + subsets_outcome, + by='subset' +) + +dd = left_join( + dd, + subsets_male, + by='subset' +) + +dd = left_join( + dd, + subsets_white, + by='subset' +) + +dd = left_join( dd, + subsets_heme, + by='subset' +) + +dd = left_join( dd, + subsets_album, + by='subset' +) + +dd = left_join( dd, + subsets_sercr, + by='subset' +) +write_csv(dd, "partition_totals_rev_method.csv") +``` +Table: Counts of select categories for each data partition +|Sub-set |Number of Males |Number of Race Group (White) |Number of Missing Hemoglobin Values |Number of Missing Serum Creatinine Values |Number of Missing Albumin Values |Total Number of Patients |Number of Patients who Died| +|--------|------|-------|-------|-------|-------|---------------|-----| +|0 |65,981 |76,535 |17,248 |2,055 |35,925 |114,824 |8,529| +|1 |66,131 |76,864 |17,108 |2,051 |35,129 |115,050 |8,773| +|2 |66,137 |76,773 |17,240 |2,043 |35,428 |115,044 |8,669| +|3 |66,031 |76,846 |17,406 |1,937 |35,100 |115,027 |8,426| +|4 |66,282 |76,788 |16,971 |1,917 |34,933 |114,802 |8,549| +|5 |66,042 |76,652 |17,285 |2,008 |35,138 |114,936 |8,671| +|6 |66,579 |77,002 |17,266 |1,976 |35,219 |115,207 |8,728| +|7 |66,332 |77,221 |17,266 |2,035 |35,019 |115,557 |8,695| +|8 |66,982 |76,605 |17,027 |2,014 |34,797 |114,925 |8,478| +|9 |66,033 |76,751 |16,847 |1,936 |34,973 |114,823 |8,565| + +## 6.2.10 Get Pre-ESRD Claims Data +The pre-ESRD claims tables in USRDS contains Medicare pre-ESRD Parts A and B, which are used to construct features for health care received prior to ESRD diagnosis. + +***Steps for running S3a_esrd_claims.R*** + +This script extracts, filters, and stores the pre-ESRD claims tables from 2011-2017 for the cohort. This script uses the [create_claim_table.R](#6211-create_claim_table-script) functions detailed in the next section. + +Input: csv files are produced in script [S1a-convertSAStoCSV.R](#623-convert-data-to-csv) +- [create_claim_table.R](#6211-create_claim_table-script) +- [pre_esrd_ip_claim_variables.R](#pre_esrd_ip_claim_variablesr) +- [pre_esrd_hs_claim_variables.R](#pre_esrd_hs_claim_variablesr) +- [pre_esrd_hh_claim_variables.R](#pre_esrd_hh_claim_variablesr) +- [pre_esrd_op_claim_variables.R](#pre_esrd_op_claim_variablesr) +- [pre_esrd_sn_claim_variables.R](#pre_esrd_sn_claim_variablesr) + +Output: The Postgres tables +``` +preesrd5y_ip_clm_inc +preesrd5y_hs_clm_inc +preesrd5y_hh_clm_inc +preesrd5y_op_clm_inc +preesrd5y_sn_clm_inc +``` +Step 1. Import the input file names and column types from the **pre_esrd_{xx}_claim_variables.R** scripts + +The types of claims include: +- Inpatient (IP) +- Outpatient (OP) +- Home health (HH) +- Hospice (HS) +- Skilled Nursing Unit (SN) + +``` +source('CreateDataSet/create_claim_table.R') + +claim_types = c( + "ip", + "hs", + "hh", + "op", + "sn" +) +``` +Step 2. Import and run the **create_claim_table** function for each claim type for years 2011-2017. +``` +for (typ in claim_types) { + source(str_glue("CreateDataSet/pre_esrd_{typ}_claim_variables.R")) + + create_claim_table( + data_dir, + con, + filenames_esrd, + fieldnames_esrd, + columns_esrd, + columns_esrd_2015, + table_name_pt='patients_medevid_waitlist' + ) +} +``` +***Points to consider*** + +Pre-ESRD claims data includes clinical as well as administrative information. Clinicians should be engaged to identify the variables in the claims data with predictive value. + +## 6.2.11 Create Claims Tables + +***Steps to running the create_claim_table.R script*** + +This script contains the functions used in **S3a_esrd_claims.R** to create the pre-ESRD claims tables. The schema for the tables changes from year to year. For example, there is no ***cdtype*** field prior to 2014, since all diagnosis codes were ICD9 prior to 2014. The script handles these year-to-year changes in schema. + +Step 1. Define **create_claim_table** function +``` +create_claim_table <- function( + data_dir, + con, + filenames, + fieldnames, + column_type, + column_type_2015, + table_name_pt) { + # send information to insert each year of claims data into the same Postgres table + + fieldnames = tolower(fieldnames) + for (filename in filenames) { + incident_year = + substr(filename, str_length(filename) - 3, str_length(filename)) + + if (incident_year < 2015) { + # claims prior to 2015 are all icd9, so we set cdtype to I for those years + csvfile = read_csv(file.path(data_dir, str_glue("{filename}.csv")), col_types = column_type_2015) + csvfile = csvfile %>% + mutate(cdtype = "I") + } + else { + csvfile = read_csv(file.path(data_dir, str_glue("{filename}.csv")), col_types = column_type) + } + + tblname = str_remove(filename, incident_year) + names(csvfile) = tolower(names(csvfile)) + fields = names(csvfile) + + patients = dbGetQuery( + con, + str_glue( + "SELECT usrds_id + FROM {table_name_pt}") + ) + + df = patients %>% + inner_join( + csvfile, + by = "usrds_id") %>% + mutate( + incident_year = incident_year) + + df$pdgns_cd = df$pdgns_cd %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0") + + if (grepl('_ip_', tblname)){ + df = createIP_CLM(df, incident_year) + } + else { + df <- df %>% + filter(!is.na(masked_clm_from) & (masked_clm_from != "")) + } + # Append every set, except '2012' which will be the first table to import. + # this is b/c 2012 has the format that we want to use to create the table + # and append the other years since the format changes between 2011 and 2012-2017 + + if (incident_year==2012){ + drop_table_function(con, tblname) + print(str_glue("creating {tblname} claims using {incident_year}={nrow(df)} + patients={nrow(df %>% distinct(usrds_id, keep_all=FALSE))}")) + + dbWriteTable( + con, + tblname, + df[, fieldnames], + append = FALSE, + row.names = FALSE) + } + else { + print(str_glue("adding {incident_year} to {tblname}={nrow(df)} + patients={nrow(df %>% distinct(usrds_id, keep_all=FALSE))}")) + dbWriteTable( + con, + tblname, + df[, fieldnames], + append = TRUE, + row.names = FALSE) + } + } +} +``` +Step 2. Create a separate function **createIP_CLM** to handle the inpatient (IP) claims differently. This filters out rows with missing data. +``` +createIP_CLM = function(df, incident_year) { + # filtering for table named "preesrd5y_ip_clm" + print(str_glue("filtering IP claims {incident_year}")) + + df = df %>% + filter( + !is.na(masked_clm_from) & + (masked_clm_from != "") & + !is.na(drg_cd) & + (drg_cd != "") + ) + return(df) +} +``` + +## 6.2.12 Map Diagnosis Codes (drg_cd) to Primary Diagnosis Codes (pdgns_cd) +More information about the primary diagnosis codes and aggregate categories can be found in [Section 6.2.14 Diagnosis Groupings](#6212-diagnosis-groupings). + +***Steps to running the S3b_mapDrgCdToPdgnsCd.R script*** + +Prior to 2011, there is no **pdgns_cd** (primary diagnosis code) in the USRDS pre-ESRD data. This is an issue, because we need the **pdgns_cd** in order to map a claim to one of the 12 aggregate categories. This script addresses the issue by mapping the **drg_cd** (which *is* available prior to 2011) to a **pdgns_cd**. The mapping is not one-to-one. This script therefore constructs a probability distribution for the mapping, and the **pdgns_cd** is subsequently constructed based on this probability distribution. + +**Input:** Postgres table +``` +preesrd5y_ip_clm_inc +``` +**Output:** Postgres table +``` +drg_cd_mapping +``` + +The script `S3a-esrd_claims.R` must be run in order to generate the data used by this script. The in-patient claims have both **drg_cd** and **pdgns_cd**. These are used as the source data for mapping **drg_cd** to **pdgns_cd**. + +Step 1. Import data from the `preesrd5y_ip_clm_inc` table +``` +res = dbGetQuery( + con, + "WITH pre_drg_pdgn AS ( + SELECT drg_cd, pdgns_cd, COUNT(*) AS nmbr + FROM preesrd5y_ip_clm_inc + WHERE cdtype='I' + GROUP BY drg_cd, pdgns_cd), + drg_cd_tbl AS ( + SELECT drg_cd, pdgns_cd, nmbr, + row_number() OVER (PARTITION BY drg_cd + ORDER BY nmbr DESC) + FROM pre_drg_pdgn + ) + SELECT a.drg_cd, a.pdgns_cd, a.nmbr, a.row_number, SUM(b.nmbr) AS cum + FROM drg_cd_tbl a + INNER JOIN drg_cd_tbl b + ON a.drg_cd=b.drg_cd + AND a.row_number<=b.row_number + GROUP BY a.drg_cd, a.pdgns_cd, a.nmbr, a.row_number + ORDER BY a.drg_cd, a.row_number" +) +``` +Step 2. Aggregate table by **drg_cd** +``` +bydrgcd = res %>% + group_by(drg_cd) %>% + dplyr::summarise( + total = sum(as.numeric(nmbr))) +res = res %>% + inner_join( + bydrgcd, + by = "drg_cd") +res = res %>% + mutate( + cum0 = as.numeric(cum - nmbr), + cum = as.numeric(cum), + lb = cum0 / total, + ub = cum / total +) +``` +Step 3. Select the columns to save. +``` +drg_cd_mapping = res %>% + select( + drg_cd, + pdgns_cd, + lb, + ub) +``` +Step 4. Save to Postgres as `drg_cd_mapping` +``` +drg_tblname = "drg_cd_mapping" +drop_table_function(con, drg_tblname) +dbWriteTable(con, + drg_tblname, + drg_cd_mapping, + append = F, + row.names = FALSE) +``` + +## 6.2.13 Get pre-2011 pre-ESRD Claims Data + +***Steps to running the S3c_esrd_claims_pre_2011.R script*** + +Before 2011, pre-ESRD claims are stored in the files inc2008.csv, inc2009.csv, inc2010.csv. The files are organized differently from the other pre-ESRD files: the type of claim is not part of the file name (instead, it is identified in the file's contents in a field called "hcfasaf"); and the contents of the file can differ from year to year. Also, the **pdgns_cd** is not available prior to 2012. This script constructs a **pdgns_cd** from the **drg_cd** which is available prior to 2011. + +**Input:** .csv files are produced in script [S1a-convertSAStoCSV.R](#623-convert-data-to-csv) +- [pre_esrd_pre2011_claim_variables.R](#pre_esrd_pre2011_claim_variablesr) +``` +inc2008.csv +inc2009.csv +inc2010.csv +drg_cd_mapping +``` +**Output**: Rows of pre-2011 claims for the cohort added to the following Postgres tables +``` +preesrd5y_ip_clm_inc +preesrd5y_hh_clm_inc +preesrd5y_hs_clm_inc +preesrd5y_op_clm_inc +preesrd5y_sn_clm_inc +``` +File names and column types are defined in [pre_esrd_pre2011_claim_variables.R](#pre_esrd_pre2011_claim_variablesr) +``` +source('CreateDataSet/pre_esrd_pre2011_claim_variables.R') +``` +Step 1. Import the pre-2011 claims and filter on **usrds_ids** in the cohort and features in the post-2011 claims. +- Set cdtype = "I" to indicate ICD-9 +- Set any missing drg_cd=000. +``` +create_pre_2011 <- function( + data_dir, + filename, + tblname, + append_flag, + table_name_pt, + newIn2010, + column_types){ + + inc20xx = read_csv(file.path(data_dir, str_glue("{filename}.csv")), col_types=column_types) + incident_year = + substr(filename, str_length(filename) - 3, str_length(filename)) + names(inc20xx) = tolower(names(inc20xx)) + + patients = dbGetQuery( + con, + str_glue( + "SELECT usrds_id + FROM {table_name_pt}") + ) + + # filter on ids from the patient table + inc20xx = inc20xx %>% + filter( + usrds_id %in% patients$usrds_id) %>% + mutate( + incident_year = incident_year, + cdtype = "I", + drg_cd = ifelse( + is.na(drg_cd), "000", drg_cd), + drg_cd = ifelse( + drg_cd == "", "000", drg_cd)) %>% + mutate( + drg_cd = as.numeric(drg_cd)) + + sortednm = names(inc20xx) %>% sort() + inc20xx = inc20xx[, sortednm] + + if (append_flag==FALSE){ + inc20xx[, newIn2010] = NA + drop_table_function(con, tblname) + } + print(nrow(inc20xx)) + dbWriteTable( + con, + tblname, + inc20xx, + append = append_flag, + row.names = FALSE) +} +``` +Step 2: For each claim type (home health - hh, hospice - hs, inpatient - ip, skilled nursing unit - sn, outpatient - op) +- Generate a uniform random number for each record in pre2011 claims, + and look up **pdgns_cd** from **drg_cd_mapping** based on this random number, + which will produce a **pdgns_cd** reflecting the underlying + joint distribution of (**drg_cd**, **pdgns_cd**) in the data +``` +get_claim_type_x <- function(claim_type, table_nm) { + print(str_glue("get {claim_type}")) + df = dbGetQuery( + con, + str_glue( + " + SELECT * + FROM {table_nm} + WHERE hcfasaf='{claim_type}' + ")) + return(df) +} +get_distribution <- function(df){ + # Generate a uniform rv for each record in df, and look up pdgns_cd from drg_cd_mapping + # based on this rv, which will produce a pdgns_cd reflecting the underlying + # joint distribution of (drg_cd,pdgns_cd) in the data + + print("get distribution of drg_cd, pdgns_cd") + set.seed(597) + + df$rv = runif( + dim(df)[1] + ) + temptablename = "temp_df" + + drop_table_function(con, temptablename) + + dbWriteTable( + con, + temptablename, + df, + temporary = TRUE + ) + dg = dbGetQuery( + con, + str_glue( + " + SELECT a.*, b.pdgns_cd + FROM {temptablename} a + LEFT JOIN drg_cd_mapping b + ON a.drg_cd = b.drg_cd + AND a.rv <= b.ub + AND a.rv > b.lb + ")) + return(dg) +} +``` +Step 3: Insert these rows into the main Postgres table for this claim type. +``` +insert_claim_rows <- function(claim_type, pre2011_data) { + #Get the field names to be inserted into the pre-esrd data, + # in the correct order + print(str_glue("intert pre 2011 {claim_type} rows into table {nrow(pre2011_data)}")) + main_fieldnames = names( + dbGetQuery( + con, + str_glue( + " + SELECT * + FROM preesrd5y_{claim_type}_clm_inc + LIMIT 10 + ") + ) + ) + + #Set fields in main claims fieldnames that do not appear in the pre2011 data = nan + pre2011_data[, setdiff(main_fieldnames, names(pre2011_data))] = NA + + # Include only fields also in main_fieldnames, in the proper order + pre2011_data = pre2011_data[, main_fieldnames] + + # append pre2011 rows to the main claims table + main_tblname = str_glue("preesrd5y_{claim_type}_clm_inc") + dbWriteTable( + con, + main_tblname, + pre2011_data, + append = TRUE, + row.names = FALSE) + } +``` +Step 4. Define the wrapper function to separate into each year and claim type and save to Postgres tables. +``` +source_pre_2011 <- function(data_dir, tblname, column_types) { + + newIn2010 = c( + "dpoadmin", + "dpodose", + "hgb", + "dpocash", + "attending_phys", + "operating_phys", + "other_phys" + ) + + create_pre_2011(data_dir, + "inc2010", + tblname, + append_flag=FALSE, + table_name_pt = "patients_medevid_waitlist", + newIn2010, + column_types) + + create_pre_2011(data_dir, + "inc2009", + tblname, + append_flag=TRUE, + table_name_pt = "patients_medevid_waitlist", + newIn2010, + column_types) + + create_pre_2011(data_dir, + "inc2008", + tblname, + append_flag=TRUE, + table_name_pt = "patients_medevid_waitlist", + newIn2010, + column_types) + + ########BEGIN HOME HEALTH####### + df = get_claim_type_x("H",tblname) + dg = get_distribution(df) + insert_claim_rows("hh", dg) + rm(df,dg) + + ####BEGIN HOSPICE########## + df = get_claim_type_x("S", tblname) + dg = get_distribution(df) + insert_claim_rows("hs", dg) + rm(df,dg) + + ####BEGIN INPATIENT####### + df = get_claim_type_x("I", tblname) + dg = get_distribution(df) + insert_claim_rows("ip", dg) + rm(df,dg) + + ###BEGIN SKILLED NURSING#### + df = get_claim_type_x("N", tblname) + dg = get_distribution(df) + insert_claim_rows("sn", dg) + rm(df,dg) + + ####BEGIN OUTPATIENT#### + df = get_claim_type_x("O", tblname) + + # Step 2: Generate a uniform rv for each record in df, and look up pdgns_cd from drg_cd_mapping + # based on this rv, which will produce a pdgns_cd reflecting the underlying + # joint distribution of (drg_cd, pdgns_cd) in the data + set.seed(597) + df$rv = runif( + dim(df)[1] + ) + temptablename = "temp_df" + drop_table_function(con, temptablename) + dbWriteTable( + con, + temptablename, + df, + temporary = TRUE + ) + + make_query <- function(dg_vals, temptablename){ + dg = str_glue( + "WITH w as ( + SELECT * + FROM {temptablename} + WHERE MOD(CAST(usrds_id AS NUMERIC),10) IN ({dg_vals}) + ) + SELECT a.*, b.pdgns_cd + FROM w a + LEFT JOIN drg_cd_mapping b + ON a.drg_cd = b.drg_cd + AND a.rv <= b.ub + AND a.rv > b.lb" + ) + return(dg) + } + dg_1 = dbGetQuery(con, make_query("0,1", temptablename)) + + dg_2 = dbGetQuery(con, make_query("2,3", temptablename)) + + dg_3 = dbGetQuery(con, make_query("4,5", temptablename)) + + dg_4 = dbGetQuery(con, make_query("6,7", temptablename)) + + dg_5 = dbGetQuery(con, make_query("8,9", temptablename)) + + dg = rbind(dg_1, dg_2) + dg = dg %>% + rbind(dg_3) %>% + rbind(dg_4) %>% + rbind(dg_5) + + #step 3 append rows to main table + insert_claim_rows("op", dg) +} +``` +Step 5. Execute all functions defined above +``` +source_pre_2011(data_dir,"pre_esrd_2011", columns_esrd_2015) +``` + +## 6.2.14 Diagnosis Groupings +There are several thousand primary diagnosis codes in pre-ESRD claims data, which need to be meaningfully categorized in order to create useful features. 12 major disease groups that were determined by the clinicians on the project include: diabetes, hypertension, heart failure, cardiovascular arterial disease, cerebrovascular disease, peripheral arterial disease, pneumonia, kidney failure, malignant neoplasm, smoking, alcohol dependence, and drug dependence. + +***Steps for running S3d_dxCodeGrouping.R*** + +This script maps each valule in pdgns_cd column in the pre-ESRD data to one of 12 aggregated diagnosis groupings, and stores the mapping in the `dxmap` Postgres table. Two sources of input are used for the groupings: CCS (Clinical Classification System) and UCSF physician expertise. + +**Input**: +- [icd9_ccs_codes.R](#icd9_ccs_codesr) (for CCS groupings) +- [icd10_ccs_codes.R](#icd10_ccs_codesr) (for CCS groupings) +- [icd9_dx_2014.txt](#icd9_dx_2014txt) (for the icd9 pdgsn_cd) +- [icd10_dx_codes.txt](#icd10_dx_codestxt) (for the icd10 pdgsn_cd) +- [dx_mappings_ucsf.csv](#dx_mappings_ucsfcsv) (for UCSF-advised categorizations of diagnosis codes) + +**Output**: +``` +dxmap +``` + +Step 1. Define functions +``` +read_icd9 <- function(directory, filename) { + #READ IN ICD9 SOURCE DATA + lines = readLines(file.path(directory,filename)) + lines = + iconv(lines[2:length(lines)], + from = "latin1", + to = "ASCII", + sub = "" + ) + + #Convert utf-8 to ASCII and remove special characters like umlauts and accents + pdgns_cd = substr(lines, 1, 6) %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0" + ) + description = substr(lines, 7, 130) + + df9 = as.data.frame(cbind(pdgns_cd, description)) + df9$cdtype = "I" + return(df9) +} +read_icd10 <- function(directory, filename){ + lines = readLines(file.path(directory, filename)) + lines <- + iconv(lines[2:length(lines)], + from = "latin1", + to = "ASCII", + sub = "" + ) + pdgns_cd = substr(lines, 1, 7) %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0" + ) + description = substr(lines, 11, 130) + df10 = as.data.frame(cbind(pdgns_cd, description), stringsAsFactors = F) + df10 = df10 %>% filter(pdgns_cd != '0000000') + #There may be multiple entries with the same pdgns_cd for icd10, so choose one + df10 = sqldf( + " + SELECT pdgns_cd, MAX(description) AS description + FROM df10 + GROUP BY pdgns_cd" + ) + df10$cdtype = "D" + return(df10) +} +map_pdgns = function(df9, df10){ + # join icd9 and icd10 + df <- as.data.frame(rbind(df9, df10)) %>% + mutate_at( + vars('cdtype', 'pdgns_cd', 'description'), + as.character + ) + df = df %>% + mutate( + dx_neo = as.integer( + grepl("malignant neoplasm", tolower(df$description)) & + grepl("family history", tolower(df$description)) + ), + # dx_poi=as.integer(grepl("poisoning",tolower(df$description))), + dx_smo = as.integer(( + cdtype == 'D' & pdgns_cd %in% smo_10 + ) |( + cdtype == 'I' & pdgns_cd %in% smo_9) + ), + dx_alc = as.integer(( + cdtype == 'D' & pdgns_cd %in% alc_10 + ) | ( + cdtype == 'I' & pdgns_cd %in% alc_9) + ), + dx_drg = as.integer(( + cdtype == 'D' & pdgns_cd %in% drg_10 + ) | ( + cdtype == 'I' & pdgns_cd %in% drg_9) + ), + dx_pne = as.integer(( + cdtype == 'D' & pdgns_cd %in% pne_10 + ) | ( + cdtype == 'I' & pdgns_cd %in% pne_9) + ), + dx_kid = as.integer(( + cdtype == 'D' & pdgns_cd %in% kid_10 + ) | ( + cdtype == 'I' & pdgns_cd %in% kid_9) + ) + ) + return(df) +} +getComorbids <- function(directory, filename, df, colname, prefix = 'dx_') { + ucsf_mappings = read.csv(file.path(directory, filename), stringsAsFactors = FALSE) + dg = sqldf( + "SELECT df.*, b.label + FROM df + LEFT JOIN ucsf_mappings b + ON df.pdgns_cd>=b.lb + AND df.pdgns_cd<=b.ub", + method = "raw" + ) + values = unique(dg[, colname]) %>% setdiff(NA) + for (v in values) { + dg[, paste0(prefix, v)] = (as.integer(dg[, colname] == v)) + dg[, paste0(prefix, v)] = replace_na(dg[, paste0(prefix, v)], 0) + } + dg$label = NULL + return(dg) +} +``` +Step 2. Execute Functions +``` +df9 = read_icd9(source_dir, "icd9_dx_2014.txt") +df10 = read_icd9(source_dir, "icd10_dx_codes.txt") +mapped9_10 = map_pdgns(df9, df10) +dh = getComorbids(source_dir, "dx_mappings_ucsf.csv", df=mapped9_10, colname = "label") +``` +Step 3. Save to Postgres database as `dxmap` +``` +drop_table_function(con, "dxmap") +tblname = "dxmap" +dbWriteTable( + con, + tblname, + dh, + append = FALSE, + row.names = FALSE + ) +``` + +***Points to consider*** + +The primary diagnosis codes in the pre-ESRD claims should be converted with clinician’s input into relevant disease groupings that can be used to create features with predictive value. It is difficult find a one-size-fits-all method for mapping diagnosis codes to meaningful categories as the categories are highly dependent on the use case. Future researchers may want to consider alternative disease groupings that are informed by clinicians and other health-care researchers. + +## 6.2.15 Aggregate Pre-ESRD Claims Data + +***Steps for running S4a_pre_esrd_full.R*** + +USRDS data have multiple pre-ESRD claims per patient. This script aggregates the data for each patient through the following steps: +1) Merge the pre-ESRD claims tables +2) Construct counts of claims grouped by type of claim and diagnosis code +3) Create one record per patient, with all pre-ESRD summary statistics aggregated for each patient +4) Create binary variables to indicate the presence or absence of pre-ESRD claims and of each type of claim (IP, HH, HS, OP, SN) + +The record includes total number of claims and total length of stay, grouped by: +1. Type of claim (IP, HH, HS, OP, SN) and +2. The aggregated diagnosis grouping. + +**Input**: +- [setfieldtypes.R](#setfieldtypesr) +``` +preesrd5y_ip_clm_inc +preesrd5y_hs_clm_inc +preesrd5y_hh_clm_inc +preesrd5y_op_clm_inc +preesrd5y_sn_clm_inc +patients_medevid_waitlist +``` +**Output**: +``` +preesrdfeatures +``` + +Table: Number of unique patients with each type of Medicare Pre-ESRD claims +| |Inpatient (IP) |Outpatient (OP) |Skilled Nursing Unit (SN) |Home Health (HH) |Hospice (HS)| +|--------|-------|-----------------------|-------------------------------|-----------------------|------------| +|Number of Unique Patients |553,704 |514,926 |140,417 |224,272 |12,482| +|Total Number of Claims |2,496,683 |15,222,280 |592,970 |939,751 |50,200| + +Step 1. Define functions for SQL queries to get claim information for 3 types of aggregations and join to the `dxmap` table. +``` +prepareQuery = function(dxcols, tablename, qryAggType = 1, testMode = 0) { + + qry_pt1=paste0("b.", dxcols$column_name, collapse=",") + + if (qryAggType == 1) { + vec1 = paste0("SUM(stay*", dxcols$column_name, ")") + vec2 = paste0(" AS stay", substr(dxcols$column_name, 3, 6)) + qry_pt5 = paste0(vec1, vec2, collapse = ", ") + + } else if (qryAggType == 2) { + vec1 = paste0("SUM(", dxcols$column_name, ")") + vec2 = paste0(" AS clms", substr(dxcols$column_name, 3, 6)) + qry_pt5 = paste0(vec1, vec2, collapse = ", ") + + } else if (qryAggType == 3) { + vec1 = paste0("MAX(", dxcols$column_name, ")") + vec2 = paste0(" AS has", substr(dxcols$column_name, 3, 6)) + qry_pt5 = paste0(vec1, vec2, collapse = ", ") + } + + qry_main = str_glue("WITH w AS ( + SELECT a.usrds_id, + a.pdgns_cd, + a.masked_clm_thru-a.masked_clm_from AS stay, + a.cdtype, + a.hgb, + a.hcrit, + {qry_pt1} + FROM {tablename} a + LEFT JOIN dxmap b + ON a.cdtype=b.cdtype + AND a.pdgns_cd=b.pdgns_cd + ) + SELECT usrds_id, {qry_pt5} + FROM w + GROUP BY usrds_id" + ) + return(qry_main) +} +``` +Step 2. Get column names +``` +dxcols = names(dbGetQuery( + con, + " + SELECT * + FROM dxmap + LIMIT 5 + ")) + +dxcols = dxcols[4:length(dxcols)] %>% as.data.frame() +names(dxcols) = "column_name" +``` +Step 3. Send a SQL query for each type of claim and aggregation. +``` +ip1 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_ip_clm_inc", + qryAggType = 1, + testMode = 0 + )) + +ip2 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_ip_clm_inc", + qryAggType = 2, + testMode = 0 + )) + +ip3 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_ip_clm_inc", + qryAggType = 3, + testMode = 0 + )) + +op1 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_op_clm_inc", + qryAggType = 1, + testMode = 0 + )) + +op2 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_op_clm_inc", + qryAggType = 2, + testMode = 0 + )) + +op3 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_op_clm_inc", + qryAggType = 3, + testMode = 0 + )) + +sn1 = dbGetQuery(con, prepareQuery( + dxcols, + "preesrd5y_sn_clm_inc", + qryAggType = 1, + testMode = 0 + )) + +sn2 = dbGetQuery(con, prepareQuery( + dxcols, + "preesrd5y_sn_clm_inc", + qryAggType = 2, + testMode = 0 + )) + +sn3 = dbGetQuery(con, prepareQuery( + dxcols, + "preesrd5y_sn_clm_inc", + qryAggType = 3, + testMode = 0 + )) +``` +Step 4. Calculate MAX(masked_clm_thru)-MIN(masked_clm_from) as the time range of claims for each patient. +``` +prepareAggQuery = function(clm_type) { + qry_main = str_glue("SELECT usrds_id, + SUM(masked_clm_thru-masked_clm_from) AS stay, + MAX(masked_clm_thru)-MIN(masked_clm_from) AS range, + MIN(masked_clm_from) AS earliest_clm, + MAX(masked_clm_thru) AS latest_clm, + COUNT(*) AS claims + FROM preesrd5y_{clm_type}_clm_inc + GROUP BY usrds_id" + ) + return(qry_main) +} + +hha = dbGetQuery(con, prepareAggQuery("hh")) +ipa = dbGetQuery(con, prepareAggQuery("ip")) +opa = dbGetQuery(con, prepareAggQuery("op")) +sna = dbGetQuery(con, prepareAggQuery("sn")) +hsa = dbGetQuery(con, prepareAggQuery("hs")) +``` +Note: A large amount of code devoted to creating queries is not included in this guide. See the code for details. + +Step 5. Get claims_range +``` +df = dbGetQuery(con, qry) + +earliest_cols = names(df)[grepl("earliest_clm", names(df))] +latest_cols = names(df)[grepl("latest_clm", names(df))] +for (c in earliest_cols) { + df[, c] = ifelse(is.na(df[, c]), 500000, df[, c]) +} +for (c in latest_cols) { + df[, c] = ifelse(is.na(df[, c]), -500000, df[, c]) +} + +earliest_claim_date = apply(df[, earliest_cols], 1, "min") +latest_claim_date = apply(df[, latest_cols], 1, "max") +df$claims_range = latest_claim_date - earliest_claim_date + +cols_to_delete = union(earliest_cols, latest_cols) +df[, cols_to_delete] = NULL +``` +Out of the individual columns named "has_dx_claimtype" (e.g., "has_neo_ip") create a single column "has_dx" +``` +has_cols = names(df)[grepl("has_", names(df))] +``` +Step 6. Create a list of diagnosis groupings +``` +dxs = unique( + substr( + has_cols, 5, 7)) +``` +Step 7. Create a binary result to yield 1 if the patients has any present, 0 if not, na if all are nans +- Example 1: has_dia_ip=NA, has_dia_op=0, has_dia_sn=1. So x=c(NA,0,1). Then returns 1 +- Example 2: x=c(NA,NA,NA). Then returns NA +- Example 3: x=c(NA,0,NA). Then returns 0 +``` +mymax = function(x) { + p_sum = sum(x > 0, na.rm = T) #number of positive elements + z_sum = sum(x == 0, na.rm = T) #number of zero elements + return(ifelse(p_sum > 0, 1, ifelse(z_sum > 0, 0, NA))) +} +``` +Use this so we end up with NA if a vector is all NA +``` +safe.max = function(invector) { + na.pct = sum(is.na(invector))/length(invector) + if (na.pct == 1) { + return(NA) } + else { + return(max(invector,na.rm=TRUE)) + } +} +``` +For each diagnosis grouping +``` +for (c in dxs) { + hasdxcols = has_cols[grepl(c, has_cols)] + df[,paste0("has_",c)]=apply( + df[,hasdxcols], + 1, + function(x) safe.max(as.numeric(x)) + ) +} + +hasvars = names(df)[grepl("has_", names(df))] +hasvarsettings = hasvars[grepl("_ip$|_op$|_sn$|_hh$|_hs$", hasvars)] +df[, hasvarsettings] = NULL #remove variables like "has_neo_ip", keeping in "has_neo" +df$claims_range = ifelse(df$claims_range < 0, NA, df$claims_range) +``` +Step 8. Create a binary feature for each claim type. These are used in the parametric models instead of the detailed claim numbers. +``` +df$prior_hh_care = as.integer(df$claims_hh > 0 & + !is.na(df$claims_hh)) +df$prior_hs_care = as.integer(df$claims_hs > 0 & + !is.na(df$claims_hs)) +df$prior_ip_care = as.integer(df$claims_ip > 0 & + !is.na(df$claims_ip)) +df$prior_op_care = as.integer(df$claims_op > 0 & + !is.na(df$claims_op)) +df$prior_sn_care = as.integer(df$claims_sn > 0 & + !is.na(df$claims_sn)) +priorvars = names(df)[grepl("prior_", names(df))] + +df$has_preesrd_claim = apply( + df[, priorvars], + 1, + function(x) safe.max(as.numeric(x)) +) +``` +Step 9. Save to Postgres as `preesrdfeatures` +``` +drop_table_function(con, pre_esrd_tblname) +dbWriteTable( + con, + pre_esrd_tblname, + df, + field.types = myfieldtypes, + append = FALSE, + row.names = FALSE +) +``` + +## 6.2.16 Join the `preesrdfeatures` Tables to the Partition Index + +***Steps to running the S4b_join_to_partition_data.R script*** + +Join the `preesrdfeatures` tables to our partition index. + +**Input**: +``` +preesrdfeatures +partition_10 +``` +**Output**: +``` +preesrdfeatures +``` + +Step 1. Define a function to import and alter the `preesrdfeatures` table by adding the **subset** column, and save to Postgres. +``` +join_data_partitions <- function(con, + data_tablename="preesrdfeatures", + num_partitions=10){ + + dbSendStatement(con, str_glue( + " + ALTER TABLE {data_tablename} + ADD subset integer + "), n = -1) + + dbSendStatement( + con, + str_glue( + " + UPDATE {data_tablename} d + SET subset = p.subset + FROM partition_{num_partitions} p + WHERE d.usrds_id = p.usrds_id + "), n = -1) +} +``` +Step 2. Execute the function +``` +data_tbl = "preesrdfeatures" + +join_data_partitions( + con, + data_tablename = data_tbl, + num_partitions = 10 +) +``` + +## 6.2.17 Map ICD-9 to ICD-10 + +***Steps for S5_pdis_mapping.R*** + +This script maps ICD-9 to ICD-10 codes and creates a table named `pdis_recode_map` which is used in *S6-Prepare Data Set*, for assigning **pdis** to a numeric value called **pdis_recode**. The [2017_I9gem_map.txt](#2017_I9gem_maptxt) is used for this purpose. + +PDIS (primary disease causing renal failure) is either the ICD-9 or ICD-10 code for the primary cause of renal failure depending on the year of the claim. Claims prior to 2015 contain ICD-9 codes whereas claims post-2016 contain ICD-10 codes. Claims from 2015 and 2016 can be either ICD-9 or ICD-10. The format for the **pdis** variable in the USRDS data is as a character variable. The ICD-9 codes were mapped to their ICD-10 equivalents to preserve the original meaning of the character variable in the numeric encoding. It was re-coded by +- Mapping all codes to their ICD-10 equivalent +- Converting them to a factor +- Typing them to a numeric + +**Input**: The **pdis** column from `patients_medevid_waitlist` (originally comes from the `patients` table) +``` +2017_I9gem_map.txt +patients_medevid_waitlist +``` +**Output**: +``` +pdis_recode_map +``` + +Step 1. Import the data from Postgres. +``` +df1 = dbGetQuery(con, + "SELECT * + FROM patients_medevid_waitlist") +``` +Whether the code is ICD-9 or ICD-10 is determined by the column **cdtype**. In order to create a map, we must get each unique **pdis** value for each **cdtype** where **cdtype** is NOT missing (NULL). Exclude entries where **cdtype** is missing (NULL). (There are 20,003 patients where **cdtype** is missing.) +``` +pdis_occurrences = dbGetQuery(con, + "SELECT cdtype, pdis, COUNT(*) AS nmbr + FROM patients_medevid_waitlist + WHERE cdtype IS NOT NULL + GROUP BY pdis, cdtype" +) +``` +Step 2. Standardize the format so that we can match with another pdis file. +``` +pdis_occurrences$pdis = pdis_occurrences$pdis %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0" + ) +``` +Step 3. Import [2017_I9gem_map.txt](#2017_I9gem_maptxt) +``` +map_icd_9_to_10 = read.table(file = file.path(source_dir, "2017_I9gem_map.txt"), + header = TRUE) %>% + select(icd9, icd10) +``` +Step 4. Format columns +``` +map_icd_9_to_10 = map_icd_9_to_10 %>% + mutate(icd9 = icd9 %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0" + ), + icd10 = icd10 %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0" + ) +) +``` +ICD-10: The character-level **pdis_recode** is same as **pdis** when **cdtype** equals "D" (indicating ICD-10) +``` +pdis_occurrences_D = pdis_occurrences %>% + filter(cdtype == "D") %>% + mutate(pdis_recode_char = pdis) +``` +Step 5. Use the crosswalk to map the ICD-9 codes to ICD-10 +``` +pdis_occurrences_I = sqldf( + "SELECT a.*, b.icd10 AS pdis_recode_char + FROM pdis_occurrences a + LEFT JOIN map_icd_9_to_10 b + ON a.pdis=b.icd9 + WHERE a.cdtype='I'", + method = "raw" +) +``` +Step 6. Concatenate the 2 maps +``` +pdis_recode_map = union(pdis_occurrences_D, pdis_occurrences_I) +pdis_recode_map = pdis_recode_map %>% + mutate(pdis_recode = as.factor(pdis_recode_char) %>% as.numeric()) +``` +Step 7. Calculate the sum of each recode value when recode is not missing (NaN) +``` +pdis_recode_agg = pdis_recode_map %>% + group_by(pdis_recode) %>% + dplyr::summarise(pdis_recode_nmbr = sum(nmbr)) %>% + as.data.frame() + +pdis_recode_map = pdis_recode_map %>% left_join(pdis_recode_agg, by = "pdis_recode") +``` +Step 8. Save to Postgres as `pdis_recode_map` +``` +tblname = "pdis_recode_map" +drop_table_function(con, tblname) +dbWriteTable(con, + tblname, + pdis_recode_map, + append = FALSE, + row.names = FALSE) +``` + +## 6.2.18 Prepare Data for Modeling + +***Steps for running S6-prepareDataSet.R script*** + +This script creates `medxpreesrd` and uses the full dataset `patients_medevid_waitlist` and `preesrdfeatures` to construct the table `medxpreesrd` by: +- creating binary variables to indicate whether imputed values are missing or out of bounds for a given patient +- encoding character values to numeric +- counting the number of value types for como_* columns +- incorporating **pdis_recode** column +- deleting features not used for modeling + +**Input**: +``` +patients_medevid_waitlist +preesrdfeatures +pdis_recode_map +dxmap +imputation_rules.xlsx +``` +**Output**: +``` +medxpreesrd +``` +Step 1. Define variables +``` +subsets = "0, 1" +tablename = "patients_medevid_waitlist" +table_preesrd = "preesrdfeatures" +medex_tblname = "medxpreesrd" +``` +Step 2. Import 2 partitions of data (subsets = "0, 1") from `patients_medevid_waitlist`. This code should be run 5 times (for the 10 partitions/subsets), but this example will be for 1 loop. The code contains the details to run the functions for the remaining partitions. +``` +qry = str_glue( + "SELECT * + FROM {tablename} + WHERE subset IN ({subsets})" + ) +data_subset = dbGetQuery(con, qry) +``` +For each variable in the list vars=(c("height","weight","bmi","sercr","album","gfr_epi","heglb"), introduce a binary variable for whether the variable is NA (which means "missing") and a separate binary variable for whether it is out of bounds (that is, not missing but below the clinically plausible min or above the clinically plausible max as determined by UCSF clinicians). These boundaries are imported from [imputation_rules.xlsx](#imputation_rulesxlsx). The function **valueExceptions** returns a data frame with usrds_id (the key field) and binary values to indicate whether or not each column in vars is NA. +``` +valueExceptions = function(df, vars) { + bounds = read_excel(str_glue("{source_dir}imputation_rules.xlsx"), sheet = + "Bounds") %>% as.data.frame() + isnavars = c() + for (v in vars) { + newv = str_glue("wasna_{v}") + df[, newv] = as.integer(is.na(df[, v])) + isnavars = c(isnavars, newv) + } + outofbndsvars = c() + for (v in vars) { + newv = str_glue("outofbnds_{v}") + df[, newv] = as.integer(!is.na(df[, v]) & + !(df[, v] >= bounds[1, v] & + df[, v] <= bounds[2, v])) + outofbndsvars = c(outofbndsvars, newv) + } + return(df[, c("usrds_id", isnavars, outofbndsvars)]) +} +``` +Step 3. Execute **valueExceptions** +``` +labvars=c("height","weight","bmi","sercr","album","gfr_epi","heglb") +ve=valueExceptions(data_subset,labvars) +``` +Join the out of bounds binary indicators for each patient to the data. +``` +df=data_subset %>% + left_join( + ve, + by="usrds_id") +``` +Step 4. Create a function to set the values to NA if it is out of bounds. +``` +setOutOfBoundsToNA=function(df,vars) { + for (v in vars) { + df[,v]=ifelse( + df[,paste0("outofbnds_",v)] == 1, + NA, + df[,v]) + } + return(df) +} +``` +Step 5. Execute the above function on the data +``` +df=setOutOfBoundsToNA(df,labvars) +oobvars = setdiff(names(df),names(data_subset)) +``` +Step 6. Get the list of categorical features. +``` +getCategoryVars <- function(dataset){ + pattern1 = "^MEDCOV|^PATTXOP|^PATINFORMED$|^DIET|^NEPHCARE|^EPO" %>% tolower() + pattern2 = "^DIAL|^TYPTRN|^AVGMATURING|^AVFMATURING" %>% tolower() + pattern3 = "^ACCESSTYPE|^TRCERT|^CDTYPE" %>% tolower() + pattern4 = "^EMPCUR|^EMPPREV|^pdis$|^hispanic$|^COMO_" %>% tolower() + categoryVars = names(dataset)[grepl(pattern1, names(dataset))] + categoryVars = union(categoryVars, names(dataset)[grepl(pattern2, names(dataset))]) + categoryVars = union(categoryVars, names(dataset)[grepl(pattern3, names(dataset))]) + categoryVars = union(categoryVars, names(dataset)[grepl(pattern4, names(dataset))]) + return(categoryVars) +} + +categoryVars = getCategoryVars(df) +``` +Step 7. Get the list of continuous features +``` +getContinuousVars <- function(dataset){ + pattern_continuous = "^GFR_EPI|^SERCR|^ALBUM|^HEGLB|^HBA1C|^BMI$|^HEIGHT|^WEIGHT" %>% tolower() + continuousVars = names(dataset)[grepl(pattern_continuous, names(dataset))] + return(continuousVars) +} +continuousVars = getContinuousVars(df) +df = df[, c("usrds_id", + "subset", + "comorbid", + "inc_age", + "race", + "sex", + "disgrpc", + "waitlist_status", + "days_on_waitlist", + "died_in_90", + oobvars, + categoryVars, + continuousVars)] +``` +Step 8. Get non numeric features +``` +getNonNumericCols = function(dx) { + cols = c() + for (v in names(dx)) { + if (!is.numeric(dx[, v])) { + cols = c(cols, v) + } + } + return(cols) +} +nonNumCols = setdiff(getNonNumericCols(df), c("pdis", "comorbid", "cdtype","hispanic","waitlist_status")) +``` +ML models typically require numeric values instead of characters or factors. The function **replaceCharacterVals** ensures that character values are replaced with a number. +``` +replaceCharacterVals = function(dx, + vars, + sourceValue = c("N", "Y", "M", "F", "U", "C", "X", "D", "I", "A", "R"), + sinkValue = c("2", "1", "12", "13", "9", "15", "16", "17", "18", "20", "21")) +{ + for (v in vars) { + print(v) + dx[, v] = mapvalues(pull(dx, v), sourceValue, sinkValue) + dx[, v] = as.integer(pull(dx, v)) + } + return(dx) +} +df = replaceCharacterVals(df, nonNumCols) +``` +**pdis** must be encoded as a number prior to ML model training. +``` +recodePdis = function(df, con) { + df$pdis = df$pdis %>% + trimws() %>% str_pad(., + width = 7, + side = "right", + pad = "0") #Format pdis with the same padding as in pdis_recode_map + pdis_map = dbGetQuery( + con, " + SELECT pdis, cdtype, pdis_recode + FROM pdis_recode_map") + + pdis_map = pdis_map %>% + group_by(pdis, cdtype) %>% + dplyr::summarise(pdis_recode = min(pdis_recode)) + + df = df %>% + left_join( + pdis_map, + by = c("cdtype", "pdis")) %>% + mutate( + pdis_recode = ifelse(is.na(pdis_recode), 9999, pdis_recode) + ) + + return(df) +} +df = recodePdis(df, con) +``` +Step 9. Count value types in como_* variables for each ID +``` +comoEncode <- function(dataset){ + como_names = names(dataset)[grepl("^como_", names(dataset))] + + dataset$num_como_nas = apply( + dataset[, como_names], + 1, + function(xx) + sum(is.na(xx)) + ) + dataset$num_como_Ns = apply( + dataset[, como_names], + 1, + function(xx) + sum(xx == 2, na.rm = TRUE) + ) + dataset$num_como_Ys = apply( + dataset[, como_names], + 1, + function(xx) + sum(xx == 1, na.rm = TRUE) + ) + dataset$num_como_Us = apply( + dataset[, como_names], + 1, + function(xx) + sum(xx == 9, na.rm = TRUE) + ) + return(dataset) +} +df = comoEncode(df) +``` +Step 10. Remove features from the `medevid` table that are not needed for the ML models +- All comorbidities that are only captured on the 1995 Medical Evidence Form (and therefore before our cohort ESRD inicident years of 2008-2017), such as **como_cararr**, **como__hiv**, etc. +- All laboratory variables that have greater than 40% missingness, such as **albumin** and **hba1c** +- All year variables and masked dates, such as **incyear**, **masked_died**, etc. +- All **pdis** (primary disease causing ESRD) re-formatted variables, such as **pdis_count**, **pdis_mortality**, etc. +``` + varsToDelete = c( + "albumlm", + "como_ihd", + "como_mi", + "como_cararr", + "como_dysrhyt", + "como_pericar", + "como_diabprim", + "como_hiv", + "como_aids", + "comorbid_count", + "comorbid_mortality", + "comorbid_se", + "comorbid", + "ethn", + "hba1c", + "incyear", + "masked_died", + "masked_tx1fail", + "masked_txactdt", + "masked_txlstdt", + "masked_txinitdt", + "masked_remdate", + "masked_unossdt", + "masked_mefdate", + "masked_ctdate", + "masked_tdate", + "masked_patsign", + "masked_trstdat", + "masked_trnend", + "pdis_count", + "pdis_mortality", + "pdis_se", + "pdis", + "recnum", + "tottx" + ) +df[, varsToDelete] = NULL +``` +Step 11. Get the `preesrdfeatures` for the 2 subsets of data. +``` +qry = str_glue( + "SELECT * + FROM {table_preesrd} + WHERE subset in ({subsets})" + ) +preesrd = dbGetQuery(con, qry) +``` +Step 12. Join the data with columns from `preesrdfeatures` +``` +full_data = df %>% + left_join( + preesrd, + by = c("usrds_id","subset") + ) +``` +Step 13. Save to Postgres as `medxpreesrd` +``` +dbWriteTable( + con, + "medxpreesrd", + full_data, + row.names = FALSE + ) +``` + +## 6.2.19 Impute Missing Values + +Missing data have the potential to introduce bias and loss of information, which can result in invalid conclusions. Multiple imputation was chosen as the method to impute missing values over single imputation methods because it addresses the uncertainty about missing data by creating several plausible imputed datasets. +For this project, multiple imputation was performed on the clinical and laboratory values (height, weight, BMI , serum creatinine, serum albumin, hemoglobin, and GFR-EPI) using the MICE (multiple imputations by chained equations) library in R (version 3.13.0), the predictive mean matching methodology for the imputations, and 5 imputations (5 datasets) to achieve 95% relative efficiency. + +***Steps for running S7_makeImputations.R*** + +This script contains the code to create 5 imputations for missing data for each of the laboratory variables +``` +weight +height +gfr_epi +sercr +album +``` +and saves the data to Postgres as the `micecomplete_pmm` table. + +The table `micecomplete_pmm` has 5 rows per **usrds_id**, for each of the imputed columns. There is one row per imputation, hence 5 rows per **usrds_id**. A modeler who wants to use imputed values would use both `medxpreesrd` and `micecomplete_pmm`, replacing weight, height, bmi, sercr, etc. in `medxpreesrd` with the imputed values in `micecomplete_pmm`. This is shown in the modeling steps. + +**Input**: +- [imputation_rules.xlsx](#imputation_rulesxlsx) +``` +medxpreesrd +``` +**Output**: +``` +micecomplete_pmm +``` +Step 1. Define the function to import the data and impute the missing values and save to Postgres as a new table. The function: +- Sets out-of-bounds values to NA so that they will be imputed +- Lists the variables to impute +- Lists the variables used to inform the imputation +- Imputes the missing values +- Calculates BMI and GFR as they are derived from other imputed variables + +``` +makeImputations <- + function(con, subset, bounds, impseed, data_tablename) { + df = dbGetQuery( + con, + str_glue( + "SELECT * + FROM {data_tablename} + WHERE subset={subset}" + )) + + varstoimpute = names(bounds)[2:length(names(bounds))] + + varstoimpute = c( + "height", + "weight", + "bmi", + "sercr", + "album", + "gfr_epi", + "heglb" + ) + + varstouse = c( + "inc_age", + "race", + "sex", + "hispanic", + "num_como_nas", + "num_como_Ns", + "num_como_Ys", + "num_como_Us", + "sercr", + "height", + "weight", + "album", + "heglb" + ) + + dg = df[, c("usrds_id", union(varstoimpute, varstouse))] + dh = df[, c("usrds_id", "wasna_gfr_epi")] + dg = dg %>% + mutate( + hispanic = as.factor(hispanic), + race = as.factor(race), + sex = ifelse(is.na(sex), 0, sex) %>% + as.factor() + ) + + imp <- mice(dg, seed = impseed, maxit = 0) + predictorMatrixDf = imp$predictorMatrix + #An entry of 1 means the column variable was used to impute the row variable + meth = imp$method + + #row_imputed indexes the row (variable to be imputed); + #c indexes the column (variable to use as an independent variable to impute row_imputed) + for (row_imputed in colnames(predictorMatrixDf)) { + predictorMatrixDf[,row_imputed ] = 0 + } + + for (col_imputed in varstoimpute) { + for (impute_by in varstouse) { + if (col_imputed != impute_by) + predictorMatrixDf[col_imputed, impute_by] = 1 + } + } + + # bmi is arithmetically related to weight and height + # so it needs to be handled with a separate model + predictorMatrixDf["bmi", "height"] = 1 + predictorMatrixDf["bmi", "weight"] = 1 + + for (to_use in c("usrds_id", varstouse)) { + meth[to_use] = "" + } + for (to_impute in varstoimpute) { + meth[to_impute] = "pmm" + } + meth["bmi"] = "~ I(weight/(.01*height)^2)" + #Model the arithmetic relationship among bmi, weight, and height + + miceimp <- + mice( + dg, + m = 5, + maxit = 20, + threshold = .99999, + seed = impseed, + predictorMatrix = predictorMatrixDf, + method = meth, + print = FALSE + ) + + writeImputations( + con, + miceimp, + varstoimpute, + dh, + subset + ) + return(0) + +} +``` +Step 2. Set the seeds for each subset, import the boundary data. +``` +seeds = c(2397, 3289, 4323, 4732, 691, 2388, 2688, 176, 1521, 461) +source_dir = file.path("CreateDataSet") +bounds = read_excel(file.path(source_dir, "imputation_rules.xlsx"), sheet ="Bounds" + ) %>% as.data.frame() +``` +Step 3. Execute the makeImputations function for each subset of the data (according to the 10 partitions). +``` +for (s in 0:9) { + makeImputations( + con, + subset = s, + bounds, + impseed = seeds[s], + data_tablename="medxpreesrd" + ) +} +``` +***Points to consider*** + +1. Curating clinical and laboratory variables requires input from clinicians to remove outlier values and to properly identify relevant variables to retain in the training dataset. For example: +- Both hemoglobin and hematocrit are included in the USRDS data and are used by clinicians to identify anemia. Clinicans identified hemoglobin as the more accurate variable so hematocrit was removed from the training dataset since keeping both features results in redunant data. +- GFR-EPI is kept in the training data as it is perferred in clinical practice over GFR MDRD. + +2. For smaller datasets, all features in the training dataset can be used to inform the imputation. With a dataset of over 1 million observations, using all features is time prohibitive. Variables that are rarely missing and correlate with the variables to be imputed (age, race, sex, ethnicity, number of comorbidities, and the clinical/laboratory values) were used in the imputation model for this project. + +3. Variables like BMI and GFR should be passively imputed since they are derived from other imputed variables (BMI: height and weight, GFR: serum creatinine, along with age, sex, and race) + +4. There are various types of imputation methods that can be selected from the 'mice' package, such as 'norm', 'pmmm', etc. Running a goodness of the imputations test by masking and then imputing known values as well as comparing the runtimes for each method will help the user select the appropriate imputation method. + +5. Only the features that were missing at random (MAR) with a percent missingness <40% were imputed (i.e., clinical and laboratory values of height, weight, BMI , serum creatinine, serum albumin, hemoglobin, and GFR-EPI). Future researchers could improve the imputations by imputing features that are missing not at random (MNAR) with a more complex imputation model. Additionally other multiple imputation packages, such as the multiple imputation (MI) and Amelias packages, could also be used for the imputations. + +6. Storing imputations in a database table separate from the table storing medevid, patients, and pre-ESRD data prevents the rest of the training dataset from being stored five times; it also reduces the amount of storage required for the training dataset. + +## 6.2.20 Utility files + +### dx_mappings_ucsf.csv + +Utility file: Used by the script [S3d_dxCodeGrouping.R](#6214-diagnosis-groupings) to produce the table `dxMap` + +UCSF advised the categorizations of diagnosis codes. + +### 2017_I9gem_map.txt + +Utility file: Used by the script [S5_pdis_mapping.R](6217-map-icd9-to-icd10) to produce the table `pdis_recode_map` for mapping pdis codes between ICD-9 and ICD-10. + +### icd10_ccs_codes.R + +Utility file: Used by the script [S3d_dxCodeGrouping.R](#6214-diagnosis-groupings) to produce the table `dxMap` + +Group codes related to alcohol abuse, drug abuse, pulmonary disorders, and renal failure based on the Clinical classification system (CCS) rules for grouping ICD-10 diagnosis codes. + +See [https://www.hcup-us.ahrq.gov/toolssoftware/ccs/ccs.jsp#download](https://www.hcup-us.ahrq.gov/toolssoftware/ccs/ccs.jsp#download) + +### icd10_dx_codes.txt + +Utility file: Used by the script [S3d_dxCodeGrouping.R](#6214-diagnosis-groupings) to produce the table `dxMap` + +Group codes related to alcohol abuse, drug abuse, pulmonary disorders, and renal failure based on the Clinical classification system (CCS) rules for grouping ICD-10 diagnosis codes. + +See [https://www.hcup-us.ahrq.gov/toolssoftware/ccs/ccs.jsp#download](https://www.hcup-us.ahrq.gov/toolssoftware/ccs/ccs.jsp#download) + +### icd9_ccs_codes.R + +Utility file: Used by the script [S3d_dxCodeGrouping.R](#6214-diagnosis-groupings) to produce the table `dxMap` + +Group codes related to alcohol abuse, drug abuse, pulmonary disorders, and renal failure based on the Clinical classification system (CCS) rules for grouping ICD-9 diagnosis codes. + + See [https://www.hcup-us.ahrq.gov/toolssoftware/ccs/ccs.jsp#download](https://www.hcup-us.ahrq.gov/toolssoftware/ccs/ccs.jsp#download) + +### icd9_dx_2014.txt + +Utility file: Used by the script [S3d_dxCodeGrouping.R](#6214-diagnosis-groupings) to produce the table `dxMap` + +Group codes related to alcohol abuse, drug abuse, pulmonary disorders, and renal failure based on the Clinical classification system (CCS) rules for grouping ICD9 diagnosis codes. + +See [https://www.hcup-us.ahrq.gov/toolssoftware/ccs/ccs.jsp#download](https://www.hcup-us.ahrq.gov/toolssoftware/ccs/ccs.jsp#download) + +### imputation_rules.xlsx + +Utility used by script [S7-makeImputations.R](#6219-impute-missing-values) and [S6-prepareDataSet.R](#6218-prepare-data-for-modeling) + +Contains the upper and lower bounds for clinical and laboratory variables. + +Table: Upper and lower bounds for clinical and laboratory variables +|Variable |Lower bound |Upper bound| +|---------------|---------------|-----------| +|Height (cm) |76 |243| +|Weight (kg) |20 |250| +|BMI (kg/m2) |13 |75| +|Serum Creatinine (mg/dL) |0.5 |50| +|Serum Albumin (g/dL) |0.5 |8| +|GFR EPI |1 |30| +|Hemoglobin (g/dL) |2 |18| + +### pre_esrd_ip_claim_variables.R + +Utility: used by [S3a_esrd_claims.R](#6210-get-pre-esrd-claim-data) + +Filenames and column types to input into [S3a_esrd_claims.R](#6210-get-pre-esrd-claim-data) to create the table for the inpatient (IP) pre-ESRD claims from 2011-2017. Pre-ESRD claims in USRDS are kept in files specific to the year. The order of these filenames is very important as the 2012 table needs to be created first in the function. The .csv files named here are produced in script [S1a-convertSAStoCSV.R](#623-convert-data-to-csv) + +Filenames: +``` +"preesrd5y_ip_clm_inc2012" +"preesrd5y_ip_clm_inc2013" +"preesrd5y_ip_clm_inc2014" +"preesrd5y_ip_clm_inc2015" +"preesrd5y_ip_clm_inc2016" +"preesrd5y_ip_clm_inc2017" +"preesrd5y_ip_clm_inc2011" +``` + +### pre_esrd_hh_claim_variables.R + +Utility: used by [S3a_esrd_claims.R](#6210-get-pre-esrd-claim-data) + +File names and column types to input into [S3a_esrd_claims.R](#6210-get-pre-esrd-claim-data) to create the table for the home health (HH) pre-ESRD claims from 2011-2017. Pre-ESRD claims in USRDS are kept in files specific to the year. The order of these filenames is very important as the 2012 table needs to be created first in the function. The .csv files named here are produced in script [S1a-convertSAStoCSV.R](#623-convert-data-to-csv) + +Filenames: +``` +"preesrd5y_hh_clm_inc2012" +"preesrd5y_hh_clm_inc2013" +"preesrd5y_hh_clm_inc2014" +"preesrd5y_hh_clm_inc2015" +"preesrd5y_hh_clm_inc2016" +"preesrd5y_hh_clm_inc2017" +"preesrd5y_hh_clm_inc2011" +``` + +### pre_esrd_hs_claim_variables.R + +Utility: used by [S3a_esrd_claims.R](#6210-get-pre-esrd-claim-data) + +Filenames and column types to input into [S3a_esrd_claims.R](#6210-get-pre-esrd-claim-data) to create the table for the hospice (HS) pre-ESRD claims from 2011-2017. Pre-ESRD claims in USRDS are kept in files specific to the year. The order of these filenames is very important as the 2012 table needs to be created first in the function. The .csv files named here are produced in script [S1a-convertSAStoCSV.R](#623-convert-data-to-csv) + +Filenames: +``` +"preesrd5y_hs_clm_inc2012" +"preesrd5y_hs_clm_inc2013" +"preesrd5y_hs_clm_inc2014" +"preesrd5y_hs_clm_inc2015" +"preesrd5y_hs_clm_inc2016" +"preesrd5y_hs_clm_inc2017" +"preesrd5y_hs_clm_inc2011" +``` + +### pre_esrd_op_claim_variables.R + +Utility script: used by [S3a_esrd_claims.R](#6210-get-pre-esrd-claim-data) + +Filenames and column types to input into [S3a_esrd_claims.R](#6210-get-pre-esrd-claim-data) to create the table for the outpatient (OP) pre-ESRD claims from 2011-2017. Pre-ESRD claims in USRDS are kept in files specific to the year. The order of these filenames is very important as the 2012 table needs to be created first in the function. The .csv files named here are produced in script [S1a-convertSAStoCSV.R](#623-convert-data-to-csv) + +Filenames: +``` +"preesrd5y_op_clm_inc2012" +"preesrd5y_op_clm_inc2013" +"preesrd5y_op_clm_inc2014" +"preesrd5y_op_clm_inc2015" +"preesrd5y_op_clm_inc2016" +"preesrd5y_op_clm_inc2017" +"preesrd5y_op_clm_inc2011" +``` + +### pre_esrd_sn_claim_variables.R + +Utility: used by [S3a_esrd_claims.R](#6210-get-pre-esrd-claim-data) + +Filenames and column types to input into [S3a_esrd_claims.R](#6210-get-pre-esrd-claim-data) to create the table for the skilled nursing (SN) pre-ESRD claims from 2011-2017. Pre-ESRD claims in USRDS are kept in files specific to the year. The order of these filenames is very important as the 2012 table needs to be created first in the function. The .csv files named here are produced in script [S1a-convertSAStoCSV.R](#623-convert-data-to-csv). + +Filenames: +``` +"preesrd5y_sn_clm_inc2012" +"preesrd5y_sn_clm_inc2013" +"preesrd5y_sn_clm_inc2014" +"preesrd5y_sn_clm_inc2015" +"preesrd5y_sn_clm_inc2016" +"preesrd5y_sn_clm_inc2017" +"preesrd5y_sn_clm_inc2011" +``` + +### pre_esrd_pre2011_claim_variables.R + +Utility: used by [S3c_esrd_claims_pre_2011.R](#6213-get-pre-2011-pre-esrd-claim-data) + +Filenames and column types to input into [S3c_esrd_claims_pre_2011.R](#6213-get-pre-2011-pre-esrd-claim-data) to create the tables for the pre-ESRD claims from 2008-2010. Pre-2011 pre-ESRD claims in USRDS are kept in files specific to the year but not claim type. The .csv files named here are produced in script [S1a-convertSAStoCSV.R](#623-convert-data-to-csv). + +Filenames: +``` +inc2010 +inc2009 +inc2008 +``` + +### setfieldtypes.R + +Used by the script [S4a_pre_esrd_full.R](#6215-aggregate-pre-esrd-claim-data) + +Utility file: The "setfieldtypes" utility is used in order to cast these column types explicitly, thereby avoiding auto assignment of "integer64" as the column data type. + +## 6.2.21 Documentation of the Training Dataset + +All features included in the training dataset are documented in the data dictionary. Features fall into two main categories: +- Features taken directly from USRDS +- Features constructed from the data in USRDS + +Additionally, all features in the training dataset are labeled as operational or not operational to identify and flag "nuisance variables" in the training dataset to ensure the that the ML models do not learn on noise. + +# 6.3 ML Modeling and Evaluation + +Three ML algorithms were selected to provisionally test the training dataset: eXtreme gradient boosting (XGBoost), logistic regression (LR), and a neural network implementation--multilayer perceptron (MLP). Some of the general considerations for selecting an algorithm include characteristics of the training dataset (tabular data vs image data, number of features, etc.), algorithms that have performed well in a specific domain area (kidney disease/clinical use cases), and available computational resources (for example, deep learning algorithms require intense compute resources). The algorithms that were selected are a mixture of non-parametric (XGBoost) and parametric (LR and MLP) models. +- XGBoost is a popular implementation of gradient boosted decision trees because it performs especially well for tabular data, can be applied to a wide array of use cases, data types, and desired prediction outcomes (regression vs classification), and can handle missing value natively which allows for a comparison between models run on non-imputed data versus models run on imputed data. +- LR is a classic categorization model that can be used to examine the association of (categorical or continuous) independent variable(s) with one binary dependent variable. However, it requires that the input dataset have no missing values. +- MLP is a class of hierarchical artificial neural network (ANN) that consists of at least three layers of nodes – an input layer, a hidden layer and an output layer – to carry out the process of machine learning. They are used for tabular datasets and classification prediction problems. + +The training dataset derived from the raw USRDS dataset was developed by building features relevant to the use case – predicting mortality in the first 90 days of dialysis. Each feature captures information known about a patient on or prior to the date of dialysis initiation. The final structure of the training dataset, which was used to train and test the ML models, consists of approximately 200 features, and has one record per patient. Two sets of features were included in the training dataset: features taken directly from the USRDS datasets and features that were constructed. The training dataset with the full set of features were split into train and test at approximately a 70/30 ratio. + +Each section below contains the code for pre-processing the data, hyperparameter tuning, final modeling, calibration, fairness assessment, and risk assessment for each model. All models were evaluated using area under the receiver operating characteristic curve (AUC ROC) and confusion matrix (true positives, true negatives, false positives, and false negatives) evaluated at thresholds from 0.1 to 0.5. +![ml_models_detailed](./images/ONC_implementation_guide_modeling.png) + +***Points to Consider*** + +The 90-day mortality outcome was predicted using USRDS data available from patients on or prior to being diagnosed with ESRD, who progressed to ESRD. This means that the ML models predicted an outcome conditional on ESRD (e.g., the models are applicable only to those having ESRD). Future extensions of this work could merge USRDS data with EHR data to be able to predict progression to ESRD or incorporate patient-centered features from EHR data to better predict mortality in the first 90 days after dialysis initiation + +## 6.3.1 Non-Imputed XGBoost Model + +All results for the non-imputed XGBoost model are located in the /roc_auc/ directory. + +**Environment** + +The environment used for the non-imputed XGBoost model was purchased on Amazon Web Services (AWS): +``` +Name: m5.4xlarge +vCPU: 16 +GPU: 0 +Cores: 8 +Threads per core: 2 +Architecture: x86_64 +Memory: 64 GB +Operating System: Linux (Ubuntu 20.04.1 Focal Fossa) +Network Performance: 10 GB or less +Zone: US govcloud west +``` + +All sections of code for the non-imputed XGBoost model takes approximately 2 days to run. + +The XGBoost models were created using R (version 3.6.3 (2020-02-29)) and the following libraries: +|R library |Version | +|-------------------|---------| +|RPostgres | 1.3.1| +|DBI |1.1.1| +|stringr| 1.4.0| +|haven |2.4.0| +|readr |1.4.0| +|lubridate| 1.7.9.2| +|dplyr |1.0.4| +|magrittr| 1.5| +|tidyr |1.1.2| +|sqldf |0.4-11| +|RSQLite| 2.2.3| +|gsubfn |0.7| +|proto |1.0.0| +|readxl |1.3.1| +|plyr |1.8.6| +|skimr| 2.1.2| +|data.table| 1.14.0| +|mltools |0.3.5| +|here | 1.0.1| +|rgenoud| 5.8-3.0| +|DiceKriging| 1.5.8| +|purrr |0.3.4| +|mlrMBO |1.1.5| +|mlr |2.18.0| +|smoof| 1.6.0.2| +|checkmate| 2.0.0| +|ParamHelpers| 1.14| +|xgboost |1.3.2.1| +|Matrix |1.2-18| +|rBayesianOptimization| 1.1.0| +|rsample |0.0.9| +|pROC |1.17.0.1| +|openxlsx| 4.2.3| + + +### 6.3.1.1 Pre-processing the training dataset +XGBoost can only handle numeric values as inputs to the model and can natively handle missing values - so, all categorical variables were one-hot encoded into dummy variables that are binary indicators of each factor in the categorical features (e.g., the sex feature will be turned into 3 columns: sex_1 (male), sex_2 (female), sex_3 (unknown)). + +***Steps for running the 0_xgb_nonimputed_preprocess.R script*** + +- Inputs: + + `medexpressesrd`table from the Postgres database + + category_variables.R +- Outputs: + + universe.RData (data ready for modeling) + +Step 1. Load the libraries +``` +library(RPostgres) #Interface to PostgreSQL +library(DBI) #R database interface +library(dplyr) +library(tidyr) +library(skimr) #Summarizing databases +library(data.table) +library(mltools) #data.table and mltools are needed for the "one_hot" function +library(readr) #read rds +``` +Step 2. Load the list of categorical variables +``` +source(file.path("~","ONC_xgboost","category_variables.R")) +``` +Step 3. Connect to the Postgres database and load the `medexpressesrd` table as the variable `universe` + +The credentials required to connect to the database should be inserted in the following snippet of code below: +``` +con <- dbConnect( + RPostgres::Postgres(), + dbname = '', + host = '', + port = '', + user = '', + password = '') +``` +The data from the database is loaded into R as the variable `universe`. +``` +universe=dbGetQuery( + con, + "SELECT * + FROM medxpreesrd") +``` + +Step 4. Set numeric features as numeric type +``` +num_vars = setdiff(names(universe) , categoryVars) + +continuous_vars = c("height", "weight", "bmi", "sercr", "album", "gfr_epi", "heglb") + +num_vars = setdiff(num_vars, continuous_vars) +for (cc in num_vars) { + universe[,cc]=as.numeric(universe[,cc]) +} +``` +Step 5. Separate categorical features from continuous and numeric to one-hot encode +``` +for (c in categoryVars) { + universe[,c]=as.factor(universe[,c]) +} +universe=data.table(universe) +universe=one_hot(as.data.table(universe), naCols=TRUE, dropUnusedLevels = TRUE) +``` +Step 6. Save the pre-processed data +``` +save(universe, file="universe.RData") +``` +***Points to consider*** + +One-hot encoding the categorical variables is preferable to numeric encoding (casting categorical encodings as numeric) as it is a better numeric representation of ordinal variables. However, one-hot encoding increases the number of variables in the training dataset which increases run time. + +### 6.3.1.2 Hyperparameter tuning for the non-imputed dataset +Hyperparameters were tuned on the training partitions for the non-imputed dataset with a Bayesian optimization and 5-fold cross validation to identify the optimal hyperparameters for the model. Bayesian optimization is the preferred method for hyperparameter tuning (versus grid search or random search) because it is able to find a set of hyperparameters that result in model performance equivalent to what the model performance would have been if the optimal hyperparameters had been found through exhaustive grid search. Exhaustive grid search can require testing tens of thousands of hyperparameter sets, which could be computationally infeasible or take an extraordinary amount of time. Because Bayesian optimization tests the combinations in an informed appoach, it is often able to find an optimal set of hyperparameters in only 50-100 iterations. + +The best performing model was evaluated by the selecting the hyperparameter combination with the highest AUC ROC. + +***Steps for running the 1_xgb_nonimputed_cv.R script*** + +- Input: + + universe.RData +- Output: + + 2021_xgb_cv_results_nonimputed.RData + +Step 1. Load the libraries +``` +library(RPostgres) +library(DBI) +library(xgboost) +library(dplyr) +library(tidyr) +library(magrittr) +library(smoof) +library(mlrMBO) # for bayesian optimisation +library(skimr) # for summarizing databases +library(purrr) # to evaluate the loglikelihood of each parameter set in the random grid search +library(DiceKriging) +library(rgenoud) +library(here) +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds +``` + +Step 2. Load the one hot encoded data and keep only the training subsets (1-6) and separate dependent variable and non-feature columns used for identification or subsetting +``` +load('universe.RData') + +depvar = "died_in_90" +trainsubsets = c(0,1,2,3,4,5,6) + +rhscols = setdiff(names(universe), c("usrds_id", "subset", "died_in_90")) + +train_onc=universe %>% filter(subset %in% trainsubsets) %>% as.data.frame() +``` +Step 3. Generate the list of indices for 5-fold cross validation +``` +# creating 5 fold validation +cv_folds = rBayesianOptimization::KFold(train_onc[, depvar], + nfolds= 5, + stratified = TRUE, + seed= 0) +``` +Step 4. Prepare the training dataset as a matrix +``` +dtrain <-xgb.DMatrix(as.matrix(train_onc[, rhscols]), label = train_onc[, depvar]) +``` +Step 5. Define the parameters for hyperparameter tuning + +The hyperparameters that were selected for tuning and the ranges that were tuned were: +|Parameter |Range | +|-------------------|---------| +|Eta | 0.001 - 0.8 | +|Gamma | 0 - 9 | +|Lambda | 1 -9 | +|Alpha | 0 - 9 | +|Max Depth | 2 - 10 | +|Minimum Child Weight | 1 - 5 | +|Number of Rounds | 10 - 500 | +|Subsample | 0.2 - 1 | +|Column Sample by Tree | 0.3 - 1 | +|Maxiumum Bin | 255 - 1023 | + +Additional information on these hyperparameters can be found at https://xgboost.readthedocs.io/en/latest/. + +Parameters that were set include: +- scale_pos_weight as 3.5, which is the square root of the ratio of the negative class (survived the first 90 days of dialysis) and the positive class (died in the first 90 days of dialysis). This parameter handles the class imbalance by weighting the minority class (died in the first 90 days of dialysis). +- Number of iterations as 100. Bayesian optimization will run through 100 iterations to identify the optimal hyperparameters. +- Early stopping rounds to 15, as evaluated using the highest AUC ROC. This parameter ends model training if the AUC ROC has not increased in 15 iterations. + +``` +# Tune parameters --------------------------------------------------- +obj.fun <- smoof::makeSingleObjectiveFunction( + name = "xgb_cv_bayes", + fn = function(x){ + set.seed(12345) + cv <- xgb.cv(params = list( + booster = "gbtree", + scale_pos_weight = sqrt(12), + eta = x["eta"], + max_depth = x["max_depth"], + min_child_weight = x["min_child_weight"], + gamma = x["gamma"], + lambda = x["lambda"], + alpha = x["alpha"], + subsample = x["subsample"], + colsample_bytree = x["colsample_bytree"], + max_bin = x["max_bin"], + objective = 'binary:logistic', + eval_metric = "auc", + tree_method = "hist"), + data=dtrain, + nrounds = x["nround"], + folds = cv_folds, + prediction = FALSE, + showsd = TRUE, + early_stopping_rounds = 15, + verbose = 1) + + cv$evaluation_log[, max(test_auc_mean)] + }, + par.set = makeParamSet( + makeNumericParam("eta", lower = 0.001, upper = 0.8), + makeNumericParam("gamma", lower = 0, upper = 9), + makeNumericParam("lambda", lower = 1, upper = 9), + makeNumericParam("alpha", lower = 0, upper = 9), + makeIntegerParam("max_depth", lower = 2, upper = 10), + makeIntegerParam("min_child_weight", lower = 1, upper = 5), + makeIntegerParam("nround", lower = 10, upper = 500), + makeNumericParam("subsample", lower = 0.2, upper = 1), + makeNumericParam("colsample_bytree", lower = 0.3, upper = 1), + makeIntegerParam("max_bin", lower = 255, upper = 1023) + ), + minimize = FALSE +) + +des = generateDesign(n=length(getParamSet(obj.fun)$pars)+1, # the number of experiments cannot equal the number of variables therefore to increase computation time, we are adding 1 to the total number of hyperparameters. + par.set = getParamSet(obj.fun), + fun = lhs::randomLHS) ## . If no design is given by the user, mlrMBO will generate a maximin Latin Hypercube Design of size 4 times the number of the black-box function's parameters. + +control = makeMBOControl() +control = setMBOControlTermination(control, iters = 100) # number of Bayesian iterations +``` +Step 6. Tune the hyperparameters with Bayesian optimization and 5-fold cross-validation on the training data +``` +results = mbo(fun = obj.fun, + design = des, + control = control, + show.info = TRUE) +``` +Step 7. Save the results to the output file +``` +save(results, file = "2021_xgb_cv_results_nonimputed.RData") +``` +***Points to consider*** + +1. Benchmark tests should be run on a fewer number of iterations to gauge the run-time per iteration. Hyperparameter tuning in a model with a large hyperparameter space, such as for gradient boosted decision trees, can be computationally and time intensive. This approach allows the user to estimate the time to completion for the hyperparameter tuning script. + +2. Different AUC evaluation metrics can be chosen to determine the optimal set of hyperparameters, such as optimizing on precision-recall (PR) AUC or model calibration. The decision for the metric on which to optimize should be made in conjunction with clinical experts and depend on the goals of the model or study. + +### 6.3.1.3 Final XGBoost model for the non-imputed dataset + +***Steps for running the 2_xgb_nonimputed_final_model.R script*** + +The final model is trained on the training subsets (0-6) of all 5 sets of non-imputed data using the optimal hyperparameters from hyperparameter tuning. The final model is evaluated on the testing subsets (7-9) of all 5 sets of non-imputed data using the ROC AUC as well as on the confusion matrix (true positives, false positives, true negatives, and false negatives) and associated model evaluation metrics (sensitivity, specificity, positive predictive value, positive likelihood ratio, and F1 score) at 0.1-0.5 thresholds. + +- Input: +``` +universe.RData +2021_xgb_cv_results_nonimputed.RData +``` +- Output: +``` +[date]_xgbResults_onehot_nonimp.csv +2021_xgb_nonimputed_feature_importance.RData +2021_xgb_nonimputed_y_proba.csv +2021_nonimputed_predictions.xlsx +2021_xgbResults_nonimputed.csv +``` +Step 1. Load the libraries +``` +library(xgboost) +library(sqldf) +library(dplyr) +library(tidyr) +library(magrittr) +library(smoof) +library(mlrMBO) # for bayesian optimisation +library(skimr) # for summarising databases +library(purrr) # to evaluate the loglikelihood of each parameter set in the random grid search +library(DiceKriging) +library(rgenoud) +library(here) +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds +``` +Step 2. Load the one-hot encoded data and split the training subsets (0-6) from the test subsets (7-9) and separate dependent variable and non-feature columns used for identification or subsetting. +``` +load("universe.RData") + +depvar = "died_in_90" + +trainsubsets = c(0,1,2,3,4,5,6) +testsubsets = c(7,8,9) + +rhscols = setdiff(names(universe), c("usrds_id", "subset", "died_in_90")) + +train_onc=universe %>% filter(subset %in% trainsubsets) %>% as.data.frame() +train_onc = train_onc[order(train_onc$usrds_id),] + +test_onc=universe %>% filter(subset %in% testsubsets) %>% as.data.frame() +test_onc = test_onc[order(test_onc$usrds_id),] +``` +Step 3. Set the train and test datasets in the matrix format +``` +dtrain <-xgb.DMatrix(as.matrix(train_onc[, rhscols]), label = train_onc[, depvar]) +dtest <-xgb.DMatrix(as.matrix(test_onc[, rhscols]), label = test_onc[, depvar]) + +``` +Step 4. Set the seed and load in the optimal hyperparameters identified during hyperparameter tuning +``` +set.seed(297) + +load("./roc_auc/2021_xgb_cv_results_nonimputed.RData") + +xeta= results$x[['eta']] +xgamma= results$x[['gamma']] +xlambda= results$x[['lambda']] +xalpha= results$x[['alpha']] +xmax_depth= results$x[['max_depth']] +xmin_child_weight= results$x[['min_child_weight']] +xnround=results$x[['nround']] +xsubsample= results$x[['subsample']] +xcolsample_bytree= results$x[['colsample_bytree']] +xmax_bin=results$x[['max_bin']] + +scenarios = as.data.frame( + rbind( + c(xalpha, xcolsample_bytree, xeta, xgamma, xlambda, xmax_bin, xmax_depth, xmin_child_weight, xnround, xsubsample) + )) +names(scenarios)=c("alpha","colsample_bytree","eta","gamma","lambda","max_bin","max_depth", + "min_child_weight","rounds","subsample") + +scenarios$inx = 1:dim(scenarios)[1] + +watchlist <- list(eval = dtest, train = dtrain) + +attr(dtrain, 'label') <- getinfo(dtrain, 'label') +dy = NULL + +for (i in scenarios$inx) { + s = scenarios[scenarios$inx == i, ] + + param <- + list( + max_depth = s$max_depth, + eta = s$eta, + nthread = 16, + verbosity = 0, + gamma = s$gamma, + lambda = s$lambda, + alpha = s$alpha, + maximize = TRUE, + tree_method = "hist", + max_bin = s$max_bin, + min_child_weight=s$min_child_weight, + eval_metric = "auc", + colsample_bytree=s$colsample_bytree, + subsample=s$subsample, + scale_pos_weight=sqrt(12), + objective = "binary:logistic" + ) + ``` + Step 5. Set the seed and run the final non-imputed XGBooost model + ``` + set.seed(297) + starttime = proc.time()[3] + fit <- + xgb.train( + param, + dtrain, + s$rounds, + # nthread=16, + watchlist, + maximize = TRUE, + early_stopping_rounds = 15, + verbose = 1 + ) + ``` + Step 6: Obtain feature importance and save the file + ``` + feature_imp = xgb.importance(fit$feature_names, + model = fit) + + save(feature_imp, file = "./roc_auc/2021_xgb_nonimputed_feature_importance.RData") + ``` + Step 7. Save the predictions + ``` + dx = as.data.frame(cbind(predict(fit, newdata = dtest), as.vector(getinfo(dtest, "label")))) + names(dx)[1:2] = c("score", "y") + dx$usrds_id = test_onc$usrds_id + + write.csv(dx,file="./roc_auc/2021_xgb_nonimputed_y_proba.csv") + + openxlsx::write.xlsx(as.data.frame(dx), file = "./roc_auc/2021_nonimputed_predictions.xlsx", + sheetName='Sheet1', row.names=FALSE,showNA = F) + + ``` + Step 8. Calculate the confusion matrix by each threshold value + ``` + outdata = as.data.frame(seq(0, .99, .01)) + names(outdata) = "bin" + + above_thresh = sqldf( + "select a.bin as threshold, sum(b.y) as tp, count(b.y) as detections + from outdata a + left join dx b on a.bin<=b.score + group by a.bin + order by a.bin desc" + ) + + below_thresh = sqldf( + "select a.bin as threshold, sum(b.y) as fn, count(b.y) as nondetections + from outdata a + left join dx b on a.bin>b.score + group by a.bin + order by a.bin desc" + ) + + perfdata = above_thresh %>% left_join(below_thresh, by = c("threshold")) + perfdata$tp = replace_na(perfdata$tp, 0) + perfdata$fn = replace_na(perfdata$fn, 0) + + perfdata = perfdata %>% mutate( + fp = detections - tp, + tn = nondetections - fn, + sensitivity = tp / (tp + fn), + specificity = tn / (fp + tn), + fpr = 1 - specificity, + tpr = sensitivity, + LR = sensitivity / (1 - specificity), + ppv = tp / detections, + npv = tn / (tn + fn) + ) + + perfdata$iter = i + + perfdata$durationinsecs = durationinsecs + + replace = T) > sample(neg.scores, 7000, replace = T)) + perfdata$auc_xgb_test = max(fit$evaluation_log$eval_auc) + perfdata$auc_xgb_train = max(fit$evaluation_log$train_auc) + + dy = as.data.frame(rbind(dy, perfdata)) + + print(paste0("Finished iteration ", i, " auc_tim_test: ", max(perfdata$auc_xgb_test, " Duration ", durationinsecs))) +} + +dy = dy %>% mutate( + accuracy = (tp + tn) / (tp + tn + fp + fn), + f1_score = 2 * ppv * sensitivity / (ppv + sensitivity) +) +``` +Step 9. Save the results file +``` +write.csv(dy,file="./roc_auc/2021_xgbResults_nonimputed.csv") +``` + +### 6.3.1.4 Calibration +The calibration curve shows the reliability of the model by each prediction score category, the number of patients that fall into each category, and the proportion of patients in each category who actually died in the first 90 days following dialysis initiation. + +***Steps for running the 3_xgb_nonimputed_calibration.ipynb script*** + +- Input: +``` +2021_xgb_nonimputed_y_proba.csv +medexpreesrd +``` +- Output: +``` +xgb_nonimputed_calibrated.pickle +y_calibrated_xgb_nonimputed.pickle +``` + +Step 1. Import libraries +``` +import pandas as pd +import numpy as np +import pickle + +import sys +#path to the functions file +sys.path.append('../../onc_functions/') + +# import custom functions +from plot_functions import onc_plot_calibration_curve +from calibrate_onc import calibrate_onc + +#connect to posgres database +import psycopg2 +import sqlalchemy +from sqlalchemy import create_engine + +con = create_engine('postgresql://username:password@location/dbname') +``` +Step 2. Load results from the XGBoost non-imputed model +``` +pred_df = pd.read_csv('./roc_auc/2021_xgb_nonimputed_y_proba.csv') +``` +Step 3. Plot the calibration of the original model. This function **onc_plot_calibration_curve** is located in the /onc_functions/plot_functions.py file. +``` +def onc_plot_calibration_curve(y_true, y_proba, label, filename): + + #calculate numbers to plot + clf_score = brier_score_loss(y_true, y_proba, pos_label=1) + fraction_of_positives, mean_predicted_value = \ + calibration_curve(y_true, y_proba, n_bins=10) + # set up plot + fig1 = plt.figure(1, figsize=(10,10))#,dpi=400) + ax1 = plt.subplot2grid((3, 1), (0, 0), rowspan=2) + ax2 = plt.subplot2grid((3, 1), (2, 0)) + + #plot the reference for a prefectly calibrated model + ax1.plot([0, 1], [0, 1], "k:", label="Reference Line") + + # plot the calibration curve + ax1.plot(mean_predicted_value, fraction_of_positives, "ks-", + label=label) + + # plot histogram of predicted values + ax2.hist(y_proba, range=(0, 1), bins=10, label=label, + histtype="step", lw=2) + + # set axes and other figure parameters + ax1.set_ylabel("Observed Event Rate") + ax1.set_xlabel("Predicted Event Rate") + ax1.set_ylim([-0.05, 1.05]) + ax1.legend(loc="lower right") + + ax2.set_xlabel("Mean predicted value") + ax2.set_ylabel("Count") + ax2.legend(loc="upper right", ncol=1) + + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + #save figure resolution + plt.savefig(filename + ".png", dpi=400, transparent=True) + plt.show() +``` +Run the function above. +``` +onc_plot_calibration_curve( + y_true=data.y, + y_proba=data.score, + label='XGBoost non-imputed', + filename='./roc_auc/xgb_nonimputed_orig_calibration') +``` + +![xgb_nonimputed_orig_calibration.png](./images/xgb_nonimputed_orig_calibration.png) + +The XGBoost model can be calibrated by training an isotonic regression on a portion of the testing set. (Model calibration is performed as probabilities of death in the first 90 days are more informative and useful for clinicians than a simple binary prediction. In order to produce valid probability estimates, predicted events rates should track observed rates across the full range of predicted risk.) + +Step 4. Load the subset for each ID: +``` +df = pd.read_sql_query(''' +SELECT usrds_id, subset FROM medxpreesrd;''', con) +``` +Merge the subset details with the predictions. +``` +data = pd.merge(pred_df, df, how="left", on="usrds_id") +``` +The next steps are inside function **calibrate_onc** located in the /onc_functions/calibrate_onc.py file. + +Step 5. Split the predictions from the test set (how we evaluated the model) into a test/train for the calibration (isotonic regression classifier). Split test data (subsets 7-9) into new train (7-8)/test (9) sets +``` +calibration_train_set = data[((data.subset==7)|(data.subset==8))].copy() +calibration_test_set = data[data.subset==9].copy() +``` +Step 6. Define the calibration model +``` +ir = IsotonicRegression(out_of_bounds="clip") +``` +Step 7. Fit the model to the XGBoost predictions from the (new) training set +``` +ir.fit(calibration_train_set.score, calibration_train_set.y) +``` +Step 8. Evaluate the model using the (new) test set +``` +p_calibrated = ir.transform(calibration_test_set.score) +calibration_test_set['p_calibrated'] = p_calibrated +``` +Step 9. Save +``` +with open(path + 'model_calibrated_' + model_name + '.pickle', 'wb') as picklefile: + pickle.dump(ir,picklefile) + +with open(path + 'y_calibrated_' + model_name + '.pickle', 'wb') as picklefile: + pickle.dump(calibration_test_set, picklefile) +``` +Step 10. Print the scores from the original and calibrated model. The function **print_calibrated_results** is found in the /onc_functions/calibrate_onc.py file. +``` +def print_calibrated_results(y_true, y_pred, y_calibrated): + '''print scores for pre and post calibration''' + + acc = accuracy_score(y_true, np.round(y_pred)) + acc_calibrated = accuracy_score(y_true, np.round(y_calibrated )) + print ("accuracy - original/calibrated:", acc, "/", acc_calibrated) + + auc = roc_auc_score(y_true, y_pred) + auc_calibrated = roc_auc_score(y_true, y_calibrated) + print ("ROC AUC - original/calibrated: ", auc, "/", auc_calibrated) + + pr = average_precision_score(y_true, y_pred) + pr_calibrated = average_precision_score(y_true, y_calibrated ) + print ("avg precision - original/calibrated:", pr, "/", pr_calibrated) + + clf_score = brier_score_loss(y_true, y_calibrated, pos_label=1) + print("\tBrier: %1.3f" % (clf_score)) +``` +Run these 2 calibration functions +``` +calibrated_results = calibrate_onc(data, path='./roc_auc/', model_name='xgb_nonimputed') +``` +### 6.3.1.5 Plotting calibrated results +***Steps for running the 4_xgb_nonimputed_calibrated_plots.ipynb script*** + +- Input: +``` +y_calibrated_xgb_nonimputed.pickle +``` +- Output: +``` +xgb_nonimputed_calibration.png +xgb_nonimputed_mortality_bar.png +xgb_nonimputed_roc_auc_bw.png +2021_xgb_nonimputed_calibrated_confusion_matrix.csv +``` + +Step 1. Import libraries +``` +import pandas as pd +import numpy as np +import pickle + +import sys +#add the absolute path to the onc_functions directory +sys.path.append('../../onc_functions/') + + +#import custom plotting functions +from plot_functions import (onc_plot_calibration_curve, + onc_calc_cm, + onc_plot_roc, + onc_plot_precision_recall, + onc_plot_risk, + onc_plot_roc_no_threshold) +``` +Step 2. Load results from the calibrated model +``` +with open('./roc_auc/y_calibrated_xgb_nonimputed.pickle, 'rb') as picklefile: + calibrated_results = pickle.load(picklefile) +``` +Step 3. Plot the calibration curve of the calibrated model using the same **onc_plot_calibration_curve** function from /onc_functions/plot_functions.py +``` +onc_plot_calibration_curve( + y_true=calibrated_results.y, + y_proba=calibrated_results.p_calibrated, + label='XGBoost_non-imputed calibrated', + filename='./roc_auc/xgb_nonimputed_calibrated') +``` +![xgb_nonimputed_calibration.jpeg](./images/xgb_nonimputed_calibration.jpeg) + +Step 4. Plot the Risk of the calibrated model. This function **onc_plot_risk** is located and imported from /onc_functions/plot_functions.py +``` +def onc_plot_risk(y_true, y_proba, label, filename): + # calculate values for plot + fraction_of_positives, mean_predicted_value = \ + calibration_curve(y_true, y_proba, n_bins=10) + + # set up figure params + fig1 = plt.figure(1, figsize=(12,30),dpi=400) + ax1 = plt.subplot2grid((7, 1), (0, 0), rowspan=2) + + # bar plot + xs = np.arange(len(fraction_of_positives)) + ax1.bar(xs, mean_predicted_value, color='k', width = 0.25, label=label) + ax1.bar(xs+.25, fraction_of_positives, color='gray', width = 0.25, label='Observed') + + #more figure settings + plt.xticks(xs, np.arange(1, len(xs)+1, 1)) + ax1.set_ylabel("Mortality Rate") + ax1.set_xlabel("Decile of Predicted Mortality Risk") + ax1.legend(loc="upper left") + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + #save plot + plt.savefig(filename + ".png", dpi=400, transparent=True) +``` +``` +onc_plot_risk( + calibrated_results.y, + calibrated_results.p_calibrated, + label='Predicted (XGBoost Non-Imputed)', + path='./roc_auc/', + filename='xgb_nonimputed_mortality_bar') +``` +![xgb_nonimputed_mortality_bar.jpeg](./images/xgb_nonimputed_mortality_bar.jpeg) + +Step 5. Plot the ROC AUC of the calibrated model. This function **onc_plot_roc** is located and imported from /onc_functions/plot_functions.py +``` +def onc_plot_roc(y_true, y_pred, model_name, **kwargs): + ''' + Plot the ROC AUC and return the test ROC AUC results. + INPUT: y_true, y_pred, model_name, **kwargs + ''' + + #calc values for plot + false_positives, true_positives, threshold = roc_curve(y_true, y_pred) + c_roc_auc_score = auc(false_positives, true_positives) + + #set figure params + fig1 = plt.figure(1, figsize=(12,30),dpi=400) + ax1 = plt.subplot2grid((7, 1), (0, 0), rowspan=2) + + #plot reference line for chance + ax1.plot([0, 1], [0, 1], linestyle='--', lw=2, color='gray', + label='Chance', alpha=.8) + + # plot AUC ROC + ax1.plot(false_positives, true_positives, + label=r'ROC (AUC = %0.3f)' % (c_roc_auc_score), + lw=2, alpha=.8, color = 'k') + + # additional figure params + ax1.set(xlim=[-0.05, 1.05], ylim=[-0.05, 1.05],) + ax1.legend(loc="lower right") + plt.xlabel('1-Specificity') + plt.ylabel('Sensitivity') + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + # save plot + plt.savefig(model_name + "_calibrated_roc_auc_bw.png", dpi=400, transparent=True) + plt.show() +``` +``` +onc_plot_roc( + calibrated_results.y, + calibrated_results.p_calibrated, + model_name='xgb_nonimputed'); +``` +![xgb_nonimputed_roc_auc_bw_nothreshold_hires_crop.png](./images/xgb_nonimputed_roc_auc_bw_nothreshold_hires_crop.png) + +Step 6. Save the performance metrics at multiple thresholds. The following function is imported from /onc_functions/plot_functions.py +``` +def onc_calc_cm(y_true, y_predictions, range_probas=[0.1,0.5]): + ''' + Plot the confusion matrix and scores for multiple thresholds + ''' + df = pd.DataFrame(index = range_probas, + columns=['threshold','sensitivity','specificity', + 'likelihood_ratio_neg','likelihood_ratio_pos', + 'tp','fp','tn','fn','total_survived','total_deceased',]) + for proba_threshold in range_probas: + + cm = confusion_matrix(y_true, y_predictions > proba_threshold) + tn = cm[0][0] + fp = cm[0][1] + + sensitivity = recall_score(y_true, y_predictions > proba_threshold) + specificity = tn / (tn + fp) + + df.loc[proba_threshold, "threshold"] = proba_threshold + df.loc[proba_threshold,"sensitivity"] = sensitivity + df.loc[proba_threshold, "specificity"] = specificity + df.loc[proba_threshold, "likelihood_ratio_neg"] = (1-sensitivity)/specificity + df.loc[proba_threshold, "likelihood_ratio_pos"] = sensitivity/(1-specificity) + df.loc[proba_threshold, "tp"] = cm[1][1] + df.loc[proba_threshold, "fp"] = fp + df.loc[proba_threshold, "tn"] = tn + df.loc[proba_threshold, "fn"] = cm[1][0] + df.loc[proba_threshold, "total_survived"] = np.sum(cm[0]) + df.loc[proba_threshold, "total_deceased"] = np.sum(cm[1]) + return df +``` +``` +cm = onc_calc_cm( + calibrated_results.y, + calibrated_results.p_calibrated, + range_probas=[.10,.20, .30, .40, .50]) +cm.to_csv('./roc_auc/2021_xgb_nonimputed_calibrated_confusion_matrix.csv') +``` +![xgb_nonimputed_cm.png](./images/xgb_nonimputed_cm.png) + +### 6.3.1.6 Saving data for the fairness assessment +***Steps for running the 5_xgb_fairness_assess_get_data.ipynb script*** + +Get the columns of data required to compute fairness assessment and save the file. +``` +inc_age = age +sex +dialtyp=type of dialysis +race +hispanic +``` +- Input: +``` +`medexpressesrd` table from Postgres +``` +- Output: +``` +complete_nonimputed.pickle +``` + +Step 1. Import the libraries +``` +import psycopg2 +import sqlalchemy +from sqlalchemy import create_engine + +import numpy as np +import pandas as pd +import sys +import pickle +``` +Step 2. Connect to the Postgres database + +The credentials required to connect to the database should be inserted in the following snippet of code below: +``` +con = create_engine('postgresql://username:password@location/dbname') +``` +Step 3. Import the columns required for the fairness assessment from the database +``` +df = pd.read_sql_query('''SELECT usrds_id, died_in_90, inc_age, sex, dialtyp, race, hispanic, subset FROM medxpreesrd;''', con) +``` +Step 4. Save the file +``` +with open('complete_fairness_data.pickle', 'wb') as picklefile: + pickle.dump(df, picklefile) +``` + +### 6.3.1.7 Fairness assessment +ML models can perform differently for different categories of patients, so the non-imputed XGBoost model was assessed for fairness, or how well the model performs for each category of interest (demographics—sex, race, and age—as well as initial dialysis modality). Age were binned into the following categories based on clinician input and an example in literature: 18-25, 26-35, 36-45, 46-55, 56-65, 66-75, 76-85, 86+. The USRDS predefined categories for race, sex, and dialysis modality were used for the fairness assessment. + +***Steps for running the 6_xgb_nonimputed_fairness.ipynb script*** + +Calculations for specific groups of patients to assess the fairness of the final model for all patients in the test subsets. Note: Fairness assessment is run on the non-calibrated model results. + +- Input: +``` +complete_nonimputed.pickle +2021_xgb_nonimputed_y_proba.csv +``` +- Output: +``` +2021_xgb_nonimputed_fairness.csv +``` + +Step 1. Import libraries +``` +import numpy as np +import pandas as pd +import pickle + +import datetime +dte = datetime.datetime.now() +dte = dte.strftime("%Y%m%d") + +# import custom functions +import sys +#path to the functions directory +sys.path.append('../../onc_functions/') + + +from fairness import get_fairness_assessment +``` +Step 2. Write the function that calculates AUC and the confusion matrix from the model prediction scores. This function is located and imported from the /onc_functions/fairness.py file. + +``` +def get_fairness_assessment(df, y_proba_col_name, y_true_col_name): + + #turn the continuous age variable into age categories + df['agegroup'] = pd.cut(df.inc_age, + bins=[17, 25, 35, 45, 55, 65, 75, 85, 90], + labels=[1, 2, 3, 4, 5, 6, 7, 8]) + + df = df.drop(columns=['inc_age']) + + #replace NaNs with a large number that does not appear in the data, effectively creating another category for missing values + df.loc[:,['race','dialtyp','hispanic']] = df.loc[:,['race','dialtyp','hispanic']].fillna(100.0, axis=1).copy() + + #Identify the cols for the fairness assessment + fairness_cols = ['agegroup', 'sex','dialtyp', 'race','hispanic'] + + #loop through all categories and values to get counts, auc, and confusion matrix + rows_list = [] + for col in fairness_cols: + for name, c in df.groupby(col): + fairness_dict = {} + fairness_dict['Feature'] = col + fairness_dict['Value'] = name + fairness_dict['Count'] = c.shape[0] + + fairness_dict['AUC'] = roc_auc_score(c[y_true_col_name], c[y_proba_col_name]) + tn, fp, fn, tp = confusion_matrix(y_true = c[y_true_col_name], + y_pred = np.where(c[y_proba_col_name] >= 0.5, 1, 0)).ravel() + fairness_dict['TN'] = tn + fairness_dict['FP'] = fp + fairness_dict['FN'] = fn + fairness_dict['TP'] = tp + rows_list.append(fairness_dict) + + #convert results from a list to a dataframe + df_fairness = pd.DataFrame(rows_list) + return df_fairness +``` +Step 3. Load results from the model and fairness details +``` +pred_df = pd.read_csv('./roc_auc/2021_xgb_nonimputed_y_proba.csv') + +with open('../complete_fairness_data.pickle', 'rb') as f: + dataset = pickle.load(f) + +# merge model results with fairness details +data = pred_df.merge(dataset, how='left', on=['usrds_id']) +``` +Step 4. Calculate fairness assessment +``` +fairness = get_fairness_assessment(data, + y_proba_col_name='score', + y_true_col_name='died_in_90') +``` +Step 5. Save results +``` +fairness.to_csv('./roc_results/' + str(dte) + '_xgb_nonimputed_fairness.csv') +``` +![xgb_nonimputed_fairness.png](./images/xgb_nonimputed_fairness.png) + +***Points to consider*** + +Performing the fairness assessment on the categories of interest gives additional insight into how the model performs by different patient categories of interest (by demographics, etc.). Future researchers should perform fairness assessments to better evaluate model performance, especially for models that may be deployed in a clinical setting. Other methods of assessing fairness include evaluating true positives, sensitivity, positive predictive value, etc. at various threshold across the different groups of interest, which would allow selection of a threshold that balances model performance across the groups of interest. + +### 6.3.1.8 Risk assessment + +***Steps for running the 7_xgb_nonimputed_risk_categories.ipynb script*** + +Note: Risk assessment is run on the non-calibrated model results + +- Input: +``` +complete_fairness_data.pickle +2021_xgb_nonimputed_y_proba.csv +``` +- Output: +``` +2021_xgb_nonimputed_risk_cat.csv +``` +Step 1. Import libraries +``` +import numpy as np +import pandas as pd +import pickle + +import sys +#path to the functions directory +sys.path.append('../../onc_functions/') + +from risk import get_risk_categories + +print('python-' + sys.version) +import datetime +dte = datetime.datetime.now() +dte = dte.strftime("%Y%m%d") +``` +Step 2. Import the details from the fairness assessment +``` +with open('../complete_fairness_data.pickle', 'rb') as f: + dataset = pickle.load(f) +``` + +Step 3. Import the pooled results from the model +``` +pred_df = pd.read_csv('./roc_auc/2021_xgb_nonimputed_y_proba.csv') +``` +Step 4. Merge the details with the results +``` +data = pred_df.merge(dataset, on=['usrds_id']) +``` + +Step 5. Calculate risk. The function **get_risk_categories** is imported from the /onc_functions/risk.py file. + +``` +def get_risk_categories(dataset, y_proba_col_name, y_true_col_name): + + test_x_pd = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id') + del dataset + + df = test_x_pd.loc[:,[y_true_col_name,y_proba_col_name]] + + #construct the risk categories from the predicted score + df['risk_categories'] = pd.cut(df[y_proba_col_name], + bins=[-0.1, 0.09, 0.19, 0.29, 0.39, 0.49, 0.59, 0.69, 0.79, 0.89, 0.99], + labels=['0-0.09', '0.1-0.19', '0.2-0.29', '0.3-0.39', '0.4-0.49', + '0.5-0.59','0.6-0.69','0.7-0.79','0.8-0.89','0.9-0.99']) + + #loop through all the categories to get the predicted score + risk_list = [] + for name, c in df.groupby('risk_categories'): + risk_dict = {} + risk_dict['Risk Category'] = name + risk_dict['Count'] = c[y_true_col_name].shape[0] + risk_dict['Count Died in 90'] = c[y_true_col_name].sum() + risk_dict['Count Survived'] = c[y_true_col_name].shape[0]-c[y_true_col_name].sum() + risk_dict['Percent Died in 90'] = c[y_true_col_name].sum()/c[y_true_col_name].shape[0] + + risk_list.append(risk_dict) + + df_risk = pd.DataFrame(risk_list) + return df_risk +``` +Run the function above +``` +risk_cat = get_risk_categories(data, + y_proba_col_name='score', + y_true_col_name='died_in_90') +``` +Step 6. Save +``` +risk_cat.to_csv('./results/' + str(dte) + '_xgb_nonimputed_risk_cat.csv') +``` +![xgb_nonimputed_risk.png](./images/xgb_nonimputed_risk.png) + +## 6.3.2 Imputed XGBoost Model + +All results for the imputed XGBoost model are located in the /roc_results/ directory. + +**Environment** + +The environment used for the Imputed XGBoost model was purchased on Amazon Web Services (AWS): +``` +Name: m5.12xlarge +vCPU: 48 +GPU: 0 +Cores: 24 +Threads per core: 2 +Architecture: x86_64 +Memory: 192 GB +Operating System: Linux (Ubuntu 20.04 Focal Fossa) +Network Performance: 10 GB +Zone: US govcloud west +``` +***Points to consider*** + +Hyperparameter tuning for the imputed XGBoost model required an instance with more than 65 GB of memory. When purchasing more memory we decided to upgrade the number of cores which helped to improve the computation time. The model utilizes parallel processing which used all available cores/CPUs. It took approximately 5 days to run the entire code for the imputed XGBoost model. +### 6.3.2.1 Pre-processing the training dataset + +The data pre-processing for the imputed XGBoost model is similar to the steps for the non-imputed XGBoost model--all categorical variables were one-hot encoded into dummy variables that are binary indicators of each factor in the categorical features (e.g., the sex feature will be turned into 3 columns: sex_1 (male), sex_2 (female), sex_3 (unknown)). An additional step is required to read in the 5 imputed datasets `micecomplete_pmm` and merge with the `medxpreesrd` data. + +***Steps for running the 0_xgb_imputed_preprocess.R script*** + +1. Load `medexpressesrd` table from Postgres and imputed data `micecomplete_pmm`. +2. Merge to create our 5 datasets. Left join `medexpreesrd` and the first set of imputations, keeping imputed cols from imp1, not `medxpreesrd`. +3. Categorical features get one-hot encoded. + +- Input: `medexpressesrd` and `micecomplete_pmm` tables from Postgres +- Output: universe.RData (data ready for modeling) + +Step 1. Load the libraries +``` +library(RPostgres) #Interface to PostgreSQL +library(DBI) #R database interface +library(dplyr) +library(tidyr) +library(skimr) #Summarizing databases +library(data.table) +library(mltools) #data.table and mltools are needed for the "one_hot" function +library(readr) #read rds +``` +Step 2. Load the list of categorical variables +``` +source(file.path("~","ONC_xgboost","category_variables.R")) +``` +Step 3. Connect to the Postgres database and load the `medexpressesrd` table as the variable `universe`. +The credentials required to connect to the database should be inserted in the following snippet of code below: +``` +con <- dbConnect( + RPostgres::Postgres(), + dbname = '', + host = '', + port = '', + user = '', + password = '') +``` +The data from the database is loaded into R as the variable `universe`. +``` +universe=dbGetQuery( + con, + "SELECT * + FROM medxpreesrd") +``` +Step 4. Load the `micecomplete_pmm` table as the variable `imputations_pmm` +``` +imputations_pmm = dbGetQuery( + con, + " + SELECT *, row_number() OVER(PARTITION BY usrds_id) AS impnum + FROM micecomplete_pmm + ") +``` +Step 5. Left join the `medxpreesrd` and `imputations_pmm` tables and keep only the imputed columns from `imputations_pmm` +``` +universe = left_join( + medxpreesrd %>% + select(-c("height", "weight", "bmi", "sercr", "album", "gfr_epi", "heglb", "cdtype")), + imputations_pmm, + by = c("usrds_id", "subset") +) +``` + +Step 6. Set numeric features as numeric type +``` +num_vars = setdiff(names(universe) , categoryVars) + +continuous_vars = c("height", "weight", "bmi", "sercr", "album", "gfr_epi", "heglb") + +num_vars = setdiff(num_vars, continuous_vars) +for (cc in num_vars) { + universe[,cc]=as.numeric(universe[,cc]) +} +``` +Step 7. Separate categorical features from continuous and numeric to one-hot encode +``` +for (c in categoryVars) { + universe[,c]=as.factor(universe[,c]) +} +universe=data.table(universe) +universe=one_hot(as.data.table(universe), naCols=TRUE, dropUnusedLevels = TRUE) +``` +Step 6. Save the pre-processed data +``` +save(universe, file="universe.RData") +``` +***Points to consider*** + +One-hot encoding the categorical variables is preferable to numeric encoding (casting categorical encodings as numeric) as it is a better numeric representation of ordinal variables. However, one-hot encoding increases the number of variables in the training dataset which increases run time and features with more than 5 categories are typically not one-hot encoded for this reason. + +### 6.3.2.2 Hyperparameter tuning for each imputed dataset + +This section tunes the hyperparameters using Bayesian optimization and 5-fold cross validation on each imputed dataset and returns the optimal hyperparameters for each imputed dataset. + +***Steps for running the 1_xgb_imputed_get_hyperparams.R script*** + +This file will run 100 Bayesian models that will: +1. Result in a new range of hyperparameters. +2. Set the dependent variable to died_in_90. +3. Drop non-feature and dependent variable cols ("usrds_id", "subset","died_in_90") +4. Create the train and test sets based on the following "subset" values +``` +trainsubsets = c(0,1,2,3,4,5,6) +``` +- Input: +``` +universe.RData +``` +- Output: +``` +[date]_xgb_results_imputed_1.RData +``` +Step 1. Load the libraries +``` +library(xgboost) +library(dplyr) +library(tidyr) +library(magrittr) +library(smoof) +library(mlrMBO) # for bayesian optimisation +library(skimr) # for summarising databases +library(purrr) # to evaluate the loglikelihood of each parameter set in the random grid search +library(DiceKriging) +library(rgenoud) +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds +library(rBayesianOptimization) +library(Matrix) +``` +Step 2. Load the one hot encoded data and keep only the training subsets (1-6). +``` +load('universe.RData') + +depvar = "died_in_90" +trainsubsets = c(0,1,2,3,4,5,6) +``` +Step 3. Initiate a list to hold the hyperparameter tuning results from each of the 5 imputed datasets +``` +model_results <-list() +``` + +Step 4. Loop through each imputation +``` +for(i in 1:5){ +---- +} +``` +For each imputation perform the following steps: + +Step 5. Set the training dataset +``` + train=universe %>% + filter(subset %in% trainsubsets, impnum == i) %>% as.data.frame() +``` + +Step 6. Generate the list of indices for 5-fold cross validation +``` +cv_folds = rBayesianOptimization::KFold(train[, depvar], # creating 5 fold validation + nfolds= 5, + stratified = TRUE, + seed = 0) +``` +Step 7. Set the training dataset as numeric and prepare the training dataset as a matrix +``` +train[] <- lapply(train, as.numeric) #force to numeric columns + +options(na.action='na.pass') +trainm <- sparse.model.matrix(died_in_90 ~ ., data = train[, rhscols]) +dtrain <- xgb.DMatrix(data = trainm, label=train[, depvar]) +``` +Step 8. Define the parameters for hyperparameter tuning + +The hyperparameters that were selected for tuning and the ranges that were tuned were: +|Parameter |Range | +|-------------------|---------| +|Eta | 0.001 - 0.8 | +|Gamma | 0 - 9 | +|Lambda | 1 -9 | +|Alpha | 0 - 9 | +|Max Depth | 2 - 10 | +|Minimum Child Weight | 1 - 5 | +|Number of Rounds | 10 - 500 | +|Subsample | 0.2 - 1 | +|Column Sample by Tree | 0.3 - 1 | +|Maxiumum Bin | 255 - 1023 | + +Additional hyperparameters can be found at https://xgboost.readthedocs.io/en/latest/. + +Parameters that were set include: +- Scale_pos_weight as 3.5, which is the square root of the ratio of the negative class (survived the first 90 days of dialysis) and the positive class (died in the first 90 days of dialysis). This parameter handles the class imbalance by weighting the minority class (died in the first 90 days of dialysis). +- Number of iterations as 100. Bayesian optimization will run through 100 iterations to identify the optimal hyperparameters. +- Early stopping rounds to 15, as evaluated using the highest ROC AUC. This parameter ends model training if the ROC AUC has not increased in 15 iterations. + +``` +# Tune parameters --------------------------------------------------- +obj.fun <- smoof::makeSingleObjectiveFunction( + name = "xgb_cv_bayes", + fn = function(x){ + set.seed(12345) + cv <- xgb.cv(params = list( + booster = "gbtree", + scale_pos_weight = sqrt(12), + eta = x["eta"], + max_depth = x["max_depth"], + min_child_weight = x["min_child_weight"], + gamma = x["gamma"], + lambda = x["lambda"], + alpha = x["alpha"], + subsample = x["subsample"], + colsample_bytree = x["colsample_bytree"], + max_bin = x["max_bin"], + objective = 'binary:logistic', + eval_metric = "auc", + tree_method = "hist"), + data=dtrain, + nrounds = x["nround"], + folds = cv_folds, + prediction = FALSE, + showsd = TRUE, + early_stopping_rounds = 15, + verbose = 1) + + cv$evaluation_log[, max(test_auc_mean)] + }, + par.set = makeParamSet( + makeNumericParam("eta", lower = 0.001, upper = 0.8), + makeNumericParam("gamma", lower = 0, upper = 9), + makeNumericParam("lambda", lower = 1, upper = 9), + makeNumericParam("alpha", lower = 0, upper = 9), + makeIntegerParam("max_depth", lower = 2, upper = 10), + makeIntegerParam("min_child_weight", lower = 1, upper = 5), + makeIntegerParam("nround", lower = 10, upper = 500), + makeNumericParam("subsample", lower = 0.2, upper = 1), + makeNumericParam("colsample_bytree", lower = 0.3, upper = 1), + makeIntegerParam("max_bin", lower = 255, upper = 1023) + ), + minimize = FALSE +) + +des = generateDesign(n=length(getParamSet(obj.fun)$pars)+1, # the number of experiments cannot equal the number of variables therefore to increase computation time, we are adding 1 to the total number of hyperparameters. + par.set = getParamSet(obj.fun), + fun = lhs::randomLHS) ## . If no design is given by the user, mlrMBO will generate a maximin Latin Hypercube Design of size 4 times the number of the black-box function's parameters. + +control = makeMBOControl() +control = setMBOControlTermination(control, iters = 100) # number of Bayesian iterations +``` +Step 8. Tune the hyperparameters with Bayesian optimization and 5-fold cross-validation on the training data +``` +results = mbo(fun = obj.fun, + design = des, + control = control, + show.info = TRUE) +``` +Step 9. Save the results to the list `model_results` +``` +model_results[[i]] <- results +``` +This is the end of the loop. To return the best hyperparameters for model i, use the following line of code +``` +model_results[[i]]$x +``` + +Step 10. Save the output to a file +``` +save(model_results, file = "2021_xgb_results_imputed_1.RData") +``` + +***Points to consider*** + +Bayesian optimization was used to narrow down the hyperparameter ranges to consider for a pooled approach to hyperparameter tuning. Using Bayesian optimization to limit the hyperparameter space reduced the time required to run a pooled approach for hyperparameter tuning for the imputed dataset. + +### 6.3.2.3 Pooled Hyperparameter Tuning + +This script runs a random cross validated search on this new range using a pooled approach for all 5 imputed datasets and takes the single set of hyperparameters from the best AUC and run it with the validation data. +The "best" single combination of hyperparameters resulting from this script was fed into 5 individual models for each imputed dataset resulting in 5 predictions averaged from each imputed dataset that was used to compute AUC. + +***Steps for running the 2_xgb_imputed_gridsearch_cv.R script*** + +- Input: +``` +universe.RData +``` +- Output: +``` +2021_pooling_sample.RData +2021_final_hp_results_random_grid_imputed.xlsx +2021_final_hp_results_random_grid_imputed.RData +``` +Step 1. Load the libraries +``` +library(pROC) +library(rsample) +library(xgboost) +library(sqldf) +library(dplyr) +library(tidyr) +library(magrittr) +library(smoof) +library(mlrMBO) # for bayesian optimisation +library(skimr) # for summarising databases +library(purrr) # to evaluate the loglikelihood of each parameter set in the random grid search +library(DiceKriging) +library(rgenoud) +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds +library(rBayesianOptimization) +library(openxlsx) +library(Matrix) +``` +Step 2. Load the one hot encoded data and keep only the training subsets (1-6). +``` +load("~/universe.RData") +depvar = "died_in_90" +rhscols = setdiff(names(universe), c("usrds_id", "subset", "cdtype")) + +trainsubsets = c(0,1,2,3,4,5,6) +``` +Step 3. Set the seed and the hyperparameter grid from the narrowed ranges from Step 2 + +Set the seed. + +```set.seed(123)``` + +25 iterations will be run for the pooled hyperparameter tuning approach. + +```how_many_models <- 25``` + +Set the updated ranges for each hyperparameter based on the results from Bayesian optimization and randonly generate 25 values for each hyperparameter. +``` +eta <- data.frame(eta = runif(how_many_models,min = 0.04852942, max = 0.08619335)) +gamma <- data.frame(gamma = runif(how_many_models,min = 0.766442, max = 6.013658)) +lambda <- data.frame(lambda = runif(how_many_models,min = 5.845102, max = 8.751962)) +alpha <- data.frame(alpha = runif(how_many_models,min = 6.516213, max = 8.719468)) +max_depth <- data.frame(max_depth = sample(6:7, how_many_models, replace=TRUE)) +min_child_weight <- data.frame(min_child_weight = sample(1:4, how_many_models, replace=TRUE)) +nround <- data.frame(nround = sample(419:499, how_many_models, replace=TRUE)) +subsample <- data.frame(subsample = runif(how_many_models,min = 0.7314413, max = 0.8471972)) +colsample_bytree <- data.frame(colsample_bytree = runif(how_many_models,min = 0.5921707, max = 0.8566342)) +max_bin <- data.frame(max_bin = sample(529:972, how_many_models, replace=TRUE)) +``` +Initiate the hyperparameter grid. +``` +random_grid <-eta %>% + bind_cols(gamma) %>% + bind_cols(lambda) %>% + bind_cols(alpha) %>% + bind_cols(max_depth) %>% + bind_cols(min_child_weight) %>% + bind_cols(nround) %>% + bind_cols(subsample) %>% + bind_cols(colsample_bytree) %>% + bind_cols(max_bin) %>%as_tibble() + + +df.params <- bind_rows(random_grid) %>% + mutate(rownum = row_number(), + model = row_number()) +list_of_param_sets <- df.params %>% nest(-rownum) + +colnames(list_of_param_sets) <- c("model","hyperparamters") +``` +Step 4. Prepare the training dataset +```train_full = universe %>% + filter(subset <=6 ) %>% as.data.frame() +``` +Step 5. Loop through each imputation +``` +for(i in 1:5){ +---- +} +``` +For each imputation perform the following steps: + +Step 6. Set the training dataset +``` +train_onc=train_full %>% + filter(impnum == i) %>% as.data.frame() +``` +Step 7. Sort the training dataset by `usrds_id` +``` +train_onc = train_onc[order(train_onc$usrds_id),] #We sort the data to make sure an usrsd_id will always end up in the training or validation regardless of which imputed dataset we are using +``` +Step 8. Remove columns containing all NAs +``` +all_na <- function(x) any(!is.na(x)) #creating function that removes columns containing all NAs +train_onc <- train_onc %>% select_if(all_na) #removing the columns containing all NAs +``` +Step 9. Set all columns to numeric and set the seed +``` +train_onc[] <- lapply(train_onc, as.numeric) #force to numeric columns + +set.seed(2369) +``` +Step 10. Set the train/test split (70% for training and 30% for validation) +``` +tr_te_split <- rsample::initial_split(train_onc, prop = 7/10) #70% for training, 30% for validation/test +train_onc <- rsample::training(tr_te_split) %>% as.data.frame() +test_onc <- rsample::testing(tr_te_split) %>% as.data.frame() +``` +Step 11. Prepare training and validation/test set for modeling +``` +options(na.action='na.pass') +trainm <- sparse.model.matrix(died_in_90 ~ ., data = train_onc[, c(rhscols,"died_in_90")]) +dtrain <- xgb.DMatrix(data = trainm, label=train_onc[, depvar]) + +testm <- sparse.model.matrix(died_in_90 ~ ., data = test_onc[, c(rhscols,"died_in_90")]) +dtest <- xgb.DMatrix(data = testm, label=test_onc[, depvar]) +watchlist <- list(train = dtrain, eval = dtest) +``` +Step 12. Write function to loop through all 25 hyperparameter combinations and run the model +``` +random_grid_results <- list_of_param_sets %>% + mutate(results = map(hyperparamters, function(x){ + + message(paste0("model #", x$model, + " eta = ", x$eta, + " max.depth = ", x$max_depth, + " min_child_weigth = ", x$min_child_weight, + " subsample = ", x$subsample, + " colsample_bytree = ", x$colsample_bytree, + " gamma = ", x$gamma, + " nrounds = ", x$nround)) + + set.seed(12345) + singleModel <- xgb.train(params = list( + booster = "gbtree", + scale_pos_weight = sqrt(12), + eta = x$eta, + max_depth = x$max_depth, + min_child_weight = x$min_child_weight, + gamma = x$gamma, + lambda = x$lambda, + alpha = x$alpha, + subsample = x$subsample, + colsample_bytree = x$colsample_bytree, + max_bin = x$max_bin, + objective = 'binary:logistic', + eval_metric = "auc"), + data=dtrain, + nrounds = x$nround, + prediction = FALSE, + watchlist = watchlist, + showsd = TRUE, + early_stopping_rounds = 15, + verbose = 2) + + output <- list(score = predict(singleModel, dtest), + id = test_onc$usrds_id + ) + return(output) + })) +``` +Step 12: Add all results to a list +```all[[i]] <- random_grid_results``` +This is the end of the loop. + +Step 13: Loop through each set of the 25 hyperparameters to pool the 5 prediction scores from each imputation together and calculate AUC +``` +for(i in 1:how_many_models){ + + one <- as.data.frame(data.table::transpose(all[[1]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[1]]$results[[i]]$id) + + two <- as.data.frame(data.table::transpose(all[[2]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[2]]$results[[i]]$id) + + third <- as.data.frame(data.table::transpose(all[[3]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[3]]$results[[i]]$id) + + fourth <- as.data.frame(data.table::transpose(all[[4]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[4]]$results[[i]]$id) + + fifth <- as.data.frame(data.table::transpose(all[[5]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[5]]$results[[i]]$id) + + pooling = one %>% + inner_join(two, by = "usrds_id") %>% + inner_join(third, by = "usrds_id") %>% + inner_join(fourth, by = "usrds_id") %>% + inner_join(fifth, by = "usrds_id") + + pooling$averaged <- apply(pooling[2:ncol(pooling)], 1, mean) #averaging scores + + pooling <- left_join(pooling, test_onc %>% select("usrds_id","died_in_90"), by = "usrds_id") + + #calculate AUC + auc <- pROC::auc(pooling$died_in_90, pooling$averaged) #compute AUC + } + # Add the results to a dataframe + toAdd <- data.frame(hyper = all[[1]]$hyperparamters[[i]], + auc = auc) + + final_hp_results <- rbind(final_hp_results,toAdd) + ``` +Step 14. Save the output file +``` +save(final_hp_results, file = "2021_final_hp_results_random_grid_imputed.RData") + +openxlsx::write.xlsx(as.data.frame(final_hp_results), file = "2021_final_hp_results_random_grid_imputed.xlsx", + sheetName='Sheet1', row.names=FALSE,showNA = F) +``` + +***Points to consider*** + +Using a random grid search on the narrowed hyperparameter ranges allowed for the pooling of the model prediction scores from each imputed dataset on each hyperparameter combination to produce one AUC, which resulted in a much shorter compute time to identify the optimal hyperparameters. + +### 6.3.2.4 Final Imputed XGBoost Model + +***Steps for running the 3_xgb_imputed_final_hyperparams.R script*** + +Run final model using the best combination of hyperparameters from the previous step on each of the 5 imputed datasets. Pool results by averaging across samples to get the the ROC AUC, confusion matrix and feature importance +- Input: +``` +universe.RData +``` + - Output: + ``` + 2021_final_hp_results_single_imputed_xgb.xlsx + 2021_final_hp_results_single_imputed_xgb.RData + 2021_conf_matrix.RData + 2021_myplot_xgb.RData + 2021_Rplots.pdf + 2021_all_features.RData + 2021_averaged_feature_importance_xgb.RData + 2021_xgb_pooling_results_final_roc.csv + ``` +Step 1. Load the libraries +``` +library(pROC) +library(rsample) +library(RPostgres) +library(DBI) +library(xgboost) +library(sqldf) +library(dplyr) +library(tidyr) +library(magrittr) +library(smoof) +library(mlrMBO) # for bayesian optimisation +library(skimr) # for summarising databases +library(purrr) # to evaluate the loglikelihood of each parameter set in the random grid search +library(DiceKriging) +library(rgenoud) +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds +library(rBayesianOptimization) +library(openxlsx) +library(Matrix) +library(stringr) +``` +Step 2. Load the data and set the seed +``` +load('~/universe.RData') +depvar = "died_in_90" + +rhscols = setdiff(names(universe), c("usrds_id", "subset", "died_in_90")) + +trainsubsets = c(0,1,2,3,4,5,6) +testsubsets = c(7,8,9) + +set.seed(123) +``` +Step 3. Set the number of models (1) and set the optimal hyperparameters from the previous section +``` +how_many_models <- 1 +eta <- data.frame(eta = 0.0501135) +gamma <- data.frame(gamma = 2.937342) +lambda <- data.frame(lambda = 8.20660) +alpha <- data.frame(alpha = 7.27306) +max_depth <- data.frame(max_depth = 7) +min_child_weight <- data.frame(min_child_weight = 2) +nround <- data.frame(nround = 493) +subsample <- data.frame(subsample = 0.7513711) +colsample_bytree <- data.frame(colsample_bytree = 0.6611578) +max_bin <- data.frame(max_bin = 935) +``` +Step 4. Initiate the hyperparameter grid +``` +random_grid <-eta %>% + bind_cols(gamma) %>% + bind_cols(lambda) %>% + bind_cols(alpha) %>% + bind_cols(max_depth) %>% + bind_cols(min_child_weight) %>% + bind_cols(nround) %>% + bind_cols(subsample) %>% + bind_cols(colsample_bytree) %>% + bind_cols(max_bin) %>%as_tibble() + + +df.params <- bind_rows(random_grid) %>% + mutate(rownum = row_number(), + model = row_number()) +list_of_param_sets <- df.params %>% nest(-rownum) + +colnames(list_of_param_sets) <- c("model","hyperparamters") +``` +Step 5. Set the training and test datasets +``` +train_full = universe %>% + filter(subset <=6 ) %>% as.data.frame() + +test_full = universe %>% + filter(subset > 6 ) %>% as.data.frame() +``` + +Step 6. Loop through each imputation +``` +for(i in 1:5){ +---- +} +``` +For each imputation perform the following steps: + +Step 7. Prepare the training and the test data for modeling +``` +train_onc=train_full %>% + filter(impnum == i) %>% as.data.frame() + +train_onc = train_onc[order(train_onc$usrds_id),] + +rownames(train_onc) <- train_onc$usrds_id #preserving usrds_id as rownames because usrds_id will be removed in next line + +train_onc <- train_onc[, c(rhscols,"died_in_90")] #selecting variables + +all_na <- function(x) any(!is.na(x)) #creating function that removes columns containing all NAs +train_onc <- train_onc %>% select_if(all_na) #removing the columns containing all NAs + +train_onc[] <- lapply(train_onc, as.numeric) #force to numeric columns + +print(paste("dimensions for train_onc:",dim(train_onc))) + +options(na.action='na.pass') +trainm <- sparse.model.matrix(died_in_90 ~ ., data = train_onc) +dtrain <- xgb.DMatrix(data = trainm, label=train_onc[, depvar]) +rm(trainm) +rm(train_onc) +gc() + +#### test pre-processing + +test_onc=test_full %>% + filter(impnum == i) %>% as.data.frame() + +test_onc = test_onc[order(test_onc$usrds_id),] + +test_ids <- test_onc$usrds_id #preserving usrds_id +rownames(test_onc) <- test_onc$usrds_id #preserving usrds_id as rownames because usrds_id will be removed in next line + +test_onc <- test_onc[, c(rhscols,"died_in_90")] #selecting variables + +test_onc <- test_onc %>% select_if(all_na) #removing the columns containing all NAs + +test_onc[] <- lapply(test_onc, as.numeric) #force to numeric columns + +print(paste("dimensions for test_onc:",dim(test_onc))) + +options(na.action='na.pass') +testm <- sparse.model.matrix(died_in_90 ~ ., data = test_onc) +dtest <- xgb.DMatrix(data = testm, label=test_onc[, depvar]) +rm(testm) +gc() + ``` +Step 8. Write function to run the model + ``` + watchlist <- list(train = dtrain, eval = dtest) + + random_grid_results <- list_of_param_sets %>% + mutate(results = map(hyperparamters, function(x){ + + message(paste0("model #", x$model, + " eta = ", x$eta, + " max.depth = ", x$max_depth, + " min_child_weigth = ", x$min_child_weight, + " subsample = ", x$subsample, + " colsample_bytree = ", x$colsample_bytree, + " gamma = ", x$gamma, + " nrounds = ", x$nround)) + + set.seed(12345) + singleModel <- xgb.train(params = list( + booster = "gbtree", + scale_pos_weight = sqrt(12), + eta = x$eta, + max_depth = x$max_depth, + min_child_weight = x$min_child_weight, + gamma = x$gamma, + lambda = x$lambda, + alpha = x$alpha, + subsample = x$subsample, + colsample_bytree = x$colsample_bytree, + max_bin = x$max_bin, + objective = 'binary:logistic', + eval_metric = "auc"), + data=dtrain, + nrounds = x$nround, + prediction = FALSE, + watchlist = watchlist, + showsd = TRUE, + early_stopping_rounds = 15, + verbose = 0) +``` +Step 9. Obtain feature importance and save prediction scores and USRDS IDs to a list +``` + feature_imp <- xgb.importance(singleModel$feature_names, + model = singleModel) + all_features[[i]] <- feature_imp # add feature_imp to list + + output <- list(score = predict(singleModel, dtest), + id = test_ids +``` +Step 10. Add modeling results to a list +```all[[i]] <- random_grid_results``` +This is the end of the loop. + +Step 11: Pool the 5 prediction scores from each imputation together and calculate AUC +``` +final_hp_results_single <- data.frame() + +for(i in 1:how_many_models){ + + one <- as.data.frame(data.table::transpose(all[[1]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[1]]$results[[i]]$id) + + two <- as.data.frame(data.table::transpose(all[[2]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[2]]$results[[i]]$id) + + third <- as.data.frame(data.table::transpose(all[[3]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[3]]$results[[i]]$id) + + fourth <- as.data.frame(data.table::transpose(all[[4]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[4]]$results[[i]]$id) + + fifth <- as.data.frame(data.table::transpose(all[[5]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[5]]$results[[i]]$id) + + pooling = one %>% + inner_join(two, by = "usrds_id") %>% + inner_join(third, by = "usrds_id") %>% + inner_join(fourth, by = "usrds_id") %>% + inner_join(fifth, by = "usrds_id") + + pooling$averaged <- apply(pooling[2:ncol(pooling)], 1, mean) #averaging scores + pooling$usrds_id <- as.character(pooling$usrds_id) + + test_onc$usrds_id <- as.character(rownames(test_onc)) + + pooling <- left_join(pooling, test_onc %>% select("usrds_id","died_in_90"), by = "usrds_id") + + pooling$predicted <- ifelse(pooling$averaged > 0.5, 1,0) + + print("pooling summary after left_join():") + summary(pooling) + + print("conf matrix:") + table(pooling$predicted, pooling$died_in_90) + conf_matrix <- table(pooling$predicted, pooling$died_in_90) + + save(conf_matrix, file = "2021_conf_matrix.RData") +``` +Step 12. For each imputation, calculate the confusion matrix and model evaluation metrics at a threshold of 0.5 +``` + tp <- conf_matrix[2,2] + fp <- conf_matrix[2,1] + fn <- conf_matrix[1,2] + tn <- conf_matrix[1,1] + + sensitivity = tp / (tp + fn) + specificity = tn / (fp + tn) + fpr = 1 - specificity + tpr = sensitivity + LR = sensitivity / (1 - specificity) + ppv = tp / (tp + fp) + npv = tn / (tn + fn) + f1_score = 2 * ppv * sensitivity / (ppv + sensitivity) + + accuracy <- mean(pooling$predicted == pooling$died_in_90) +``` +Step 13. Plot ROC AUC +``` + myplot <- pROC::plot.roc(pooling$died_in_90, pooling$averaged) + + save(myplot, file = "2021_myplot_xgb.RData") +``` +Step 14. Save final non-imputed XGBoost modeling results +``` + write.csv(pooling, '2021_xgb_pooling_results_final_roc.csv') + + final_hp_results_single <- rbind(final_hp_results_single,toAdd) + + save(final_hp_results_single, file = "2021_final_hp_results_single_imputed_xgb.RData") + openxlsx::write.xlsx(as.data.frame(final_hp_results_single), file = "2021_final_hp_results_single_imputed_xgb.xlsx", + sheetName='Sheet1', row.names=FALSE,showNA = F) +} + +print("saving the feature importance") +save(all_features, file = "2021_all_features.RData") +``` +Step 15: Average feature importance across imputations and save file +``` +#averging the feature importance +averaged <- all_features %>% reduce(inner_join, by = "Feature") %>% as.data.frame() + +rownames(averaged) <- averaged$Feature +averaged = averaged %>% select(contains("Gain")) + +averaged$average = as.data.frame(apply(averaged, 1, mean)) #compute average + +averaged$feature = rownames(averaged) + +save(averaged, file = "2021_averaged_feature_importance_xgb.RData") +``` + +### 6.3.2.5 Calibration +The calibration curve shows the reliability of the model by each prediction score category, the number of patients that fall into each category, and the proportion of patients in each category who actually died in the first 90 days following dialysis initiation. + +***Steps to running the 4_xgb_imputed_calibration.ipynb script*** +- Input: +``` +2021_xgb_pooling_results_final_roc.csv +``` +- Output: +``` +model_calibrated_xgb_imputed.pickle +y_calibrated_xgb_imputed.pickle +``` + +Step 1. Import libraries +``` +import pandas as pd +import numpy as np +import pickle + +import sys +#path to the functions directory +sys.path.append('../../onc_functions/') + +# import custom functions +from plot_functions import onc_plot_calibration_curve +from calibrate_onc import calibrate_onc + +#connect to posgres database +import psycopg2 +import sqlalchemy +from sqlalchemy import create_engine + +con = create_engine('postgresql://username:password@location/dbname') +``` +Step 2. Load results from the XGBoost Imputed model +``` +# load results from the aucroc evaluated model) +pred_df = pd.read_csv('./roc_results/2021_xgb_pooling_results_final_roc.csv') +pred_df = pred_df.loc[:,['averaged','died_in_90','usrds_id']] +``` +Step 3. Plot the original model's calibration curve. This function **onc_plot_calibration_curve** is located in the /onc_functions/plot_functions.py file. +``` +def onc_plot_calibration_curve(y_true, y_proba, label, filename): + + #calculate numbers to plot + clf_score = brier_score_loss(y_true, y_proba, pos_label=1) + fraction_of_positives, mean_predicted_value = \ + calibration_curve(y_true, y_proba, n_bins=10) + # set up plot + fig1 = plt.figure(1, figsize=(10,10))#,dpi=400) + ax1 = plt.subplot2grid((3, 1), (0, 0), rowspan=2) + ax2 = plt.subplot2grid((3, 1), (2, 0)) + + #plot the reference for a prefectly calibrated model + ax1.plot([0, 1], [0, 1], "k:", label="Reference Line") + + # plot the calibration curve + ax1.plot(mean_predicted_value, fraction_of_positives, "ks-", + label=label) + + # plot histogram of predicted values + ax2.hist(y_proba, range=(0, 1), bins=10, label=label, + histtype="step", lw=2) + + # set axes and other figure parameters + ax1.set_ylabel("Observed Event Rate") + ax1.set_xlabel("Predicted Event Rate") + ax1.set_ylim([-0.05, 1.05]) + ax1.legend(loc="lower right") + + ax2.set_xlabel("Mean predicted value") + ax2.set_ylabel("Count") + ax2.legend(loc="upper right", ncol=1) + + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + #save figure resolution + plt.savefig(filename + ".png", dpi=400, transparent=True) + plt.show() +``` +Run the function above. +``` +onc_plot_calibration_curve( + y_true=pred_df.died_in_90, + y_proba=pred_df.averaged, + label='XGBoost_imputed', + filename='./roc_results/xgb_imputed_orig_calibration') +``` +![xgb_imputed_orig_calibration](./images/xgb_imputed_orig_calibration.png) + +The XGBoost model can be calibrated by training an isotonic regression on a portion of the testing set. (Model calibration is performed as probabilities of death in the first 90 days are more informative and useful for clinicians than a simple binary prediction. In order to produce valid probability estimates, predicted events rates should track observed rates across the full range of predicted risk.) + +Step 4. Load the subset for each ID: +``` +df = pd.read_sql_query(''' +SELECT usrds_id, subset FROM medxpreesrd;''', con) +``` +Merge the subset details with the predictions +``` +data = pd.merge(pred_df, df, how="left", on="usrds_id") +``` +The next steps are inside function **calibrate_onc** located in the /onc_functions/calibrate_onc.py file. + +Step 5. Split the predictions from the test set (how we evaluated the model) into a test/train for the calibration (isotonic regression classifier). Split test data (subsets 7-9) into new train (7-8)/test (9) sets +``` +calibration_train_set = data[((data.subset==7)|(data.subset==8))].copy() +calibration_test_set = data[data.subset==9].copy() +``` +Step 6. Define the calibration model +``` +ir = IsotonicRegression(out_of_bounds="clip") +``` +Step 7. Fit the model to the XGBoost predictions from the (new) training set +``` +ir.fit(calibration_train_set.score, calibration_train_set.y ) +``` +Step 8. Evaluate the model using the (new) test set +``` +p_calibrated = ir.transform(calibration_test_set.score) +calibration_test_set['p_calibrated'] = p_calibrated +``` +Step 9. Save +``` +with open(path + 'model_calibrated_' + model_name + '.pickle', 'wb') as picklefile: + pickle.dump(ir,picklefile) + +with open(path + 'y_calibrated_' + model_name + '.pickle', 'wb') as picklefile: + pickle.dump(calibration_test_set, picklefile) +``` +Step 10. Print the scores from the original and calibrated model. The function **print_calibrated_results** is found in the /onc_functions/calibrate_onc.py file. +``` +def print_calibrated_results(y_true, y_pred, y_calibrated): + '''print scores for pre and post calibration''' + + acc = accuracy_score(y_true, np.round(y_pred)) + acc_calibrated = accuracy_score(y_true, np.round(y_calibrated )) + print ("accuracy - original/calibrated:", acc, "/", acc_calibrated) + + auc = roc_auc_score(y_true, y_pred) + auc_calibrated = roc_auc_score(y_true, y_calibrated) + print ("ROC AUC - original/calibrated: ", auc, "/", auc_calibrated) + + pr = average_precision_score(y_true, y_pred) + pr_calibrated = average_precision_score(y_true, y_calibrated ) + print ("avg precision - original/calibrated:", pr, "/", pr_calibrated) + + clf_score = brier_score_loss(y_true, y_calibrated, pos_label=1) + print("\tBrier: %1.3f" % (clf_score)) +``` +Run these 2 calibration functions. +``` +calibrated_results = calibrate_onc(data, path='./roc_results/',model_name='xgb_imputed') +``` +### 6.3.2.6 Plotting calibrated results +***Steps to running the 5_xgb_imputed_calibrated_plots.ipynb script*** + +- Input: +``` +y_calibrated_xgb_imputed.pickle +``` +- Output: +``` +xgb_imputed_calibration.jpeg +xgb_imputed_mortality_bar.jpeg +xgb_imputed_roc_auc_bw.jpeg +2021_xgb_imputed_calibrated_confusion_matrix.csv +``` +Step 1. Import libraries +``` +import pandas as pd +import numpy as np +import pickle + +#import custom plotting functions +from plot_functions import onc_plot_calibration_curve, onc_calc_cm, onc_plot_roc, onc_plot_precision_recall, onc_plot_risk +``` +Step 2. Load results from the calibrated model +``` +with open('./roc_results/y_calibrated_xgb_imputed.pickle', 'rb') as picklefile: + calibrated_results = pickle.load(picklefile) +``` +Step 3. Plot the calibration curve of the calibrated model using the same **onc_plot_calibration_curve** function from /onc_functions/plot_functions.py +``` +onc_plot_calibration_curve( + y_true=calibrated_results.y, + y_proba=calibrated_results.p_calibrated, + label='XGBoost imputed calibrated', + filename='./roc_results/xgb_imputed_calibrated') +``` +![xgb_imputed_calibration.jpeg](./images/xgb_imputed_calibration.jpeg) + +Step 4. Plot the Risk of the calibrated model. This function **onc_plot_risk** is located and imported from plot_functions.py +``` +def onc_plot_risk(y_true, y_proba, label, filename): + # calculate values for plot + fraction_of_positives, mean_predicted_value = \ + calibration_curve(y_true, y_proba, n_bins=10) + + # set up figure params + fig1 = plt.figure(1, figsize=(12,30),dpi=400) + ax1 = plt.subplot2grid((7, 1), (0, 0), rowspan=2) + + # bar plot + xs = np.arange(len(fraction_of_positives)) + ax1.bar(xs, mean_predicted_value, color='k', width = 0.25, label=label) + ax1.bar(xs+.25, fraction_of_positives, color='gray', width = 0.25, label='Observed') + + #more figure settings + plt.xticks(xs, np.arange(1, len(xs)+1, 1)) + ax1.set_ylabel("Mortality Rate") + ax1.set_xlabel("Decile of Predicted Mortality Risk") + ax1.legend(loc="upper left") + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + #save plot + plt.savefig(filename + ".png", dpi=400, transparent=True) +``` +``` +onc_plot_risk( + y_true=calibrated_results.y, + y_proba=calibrated_results.p_calibrated, + label='Predicted (XGBoost Imputed)', + filename='xgb_imputed_mortality_bar') +``` + +![xgb_imputed_mortality_bar.jpeg](./images/xgb_imputed_mortality_bar.jpeg) + +Step 5. Plot the ROC AUC of the calibrated model. This function **onc_plot_roc** is located and imported from plot_functions.py +``` +def onc_plot_roc(y_true, y_pred, model_name, **kwargs): + ''' + Plot the ROC AUC and return the test ROC AUC results. + INPUT: y_true, y_pred, model_name, **kwargs + ''' + + #calc values for plot + false_positives, true_positives, threshold = roc_curve(y_true, y_pred) + c_roc_auc_score = auc(false_positives, true_positives) + + #set figure params + fig1 = plt.figure(1, figsize=(12,30),dpi=400) + ax1 = plt.subplot2grid((7, 1), (0, 0), rowspan=2) + + #plot reference line for chance + ax1.plot([0, 1], [0, 1], linestyle='--', lw=2, color='gray', + label='Chance', alpha=.8) + + # plot AUC ROC + ax1.plot(false_positives, true_positives, + label=r'ROC (AUC = %0.3f)' % (c_roc_auc_score), + lw=2, alpha=.8, color = 'k') + + # additional figure params + ax1.set(xlim=[-0.05, 1.05], ylim=[-0.05, 1.05],) + ax1.legend(loc="lower right") + plt.xlabel('1-Specificity') + plt.ylabel('Sensitivity') + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + # save plot + plt.savefig(model_name + "_calibrated_roc_auc_bw.png", dpi=400, transparent=True) + plt.show() +``` +``` +onc_plot_roc( + y_true=calibrated_results.y, + y_pred=calibrated_results.p_calibrated, + model_name='xgb_imputed'); +``` +![xgb_imputed_roc_auc_bw_nothreshold_hires_crop.png](./images/xgb_imputed_roc_auc_bw_nothreshold_hires_crop.png) + +Step 6. Save the performance metrics at multiple thresholds. The following function is imported from /onc_functions/plot_functions.py +``` +def onc_calc_cm(y_true, y_predictions, range_probas=[0.1,0.5]): + ''' + Plot the confusion matrix and scores for multiple thresholds + ''' + df = pd.DataFrame(index = range_probas, + columns=['threshold','sensitivity','specificity', + 'likelihood_ratio_neg','likelihood_ratio_pos', + 'tp','fp','tn','fn','total_survived','total_deceased',]) + for proba_threshold in range_probas: + + cm = confusion_matrix(y_true, y_predictions > proba_threshold) + tn = cm[0][0] + fp = cm[0][1] + + sensitivity = recall_score(y_true, y_predictions > proba_threshold) + specificity = tn / (tn + fp) + + df.loc[proba_threshold, "threshold"] = proba_threshold + df.loc[proba_threshold,"sensitivity"] = sensitivity + df.loc[proba_threshold, "specificity"] = specificity + df.loc[proba_threshold, "likelihood_ratio_neg"] = (1-sensitivity)/specificity + df.loc[proba_threshold, "likelihood_ratio_pos"] = sensitivity/(1-specificity) + df.loc[proba_threshold, "tp"] = cm[1][1] + df.loc[proba_threshold, "fp"] = fp + df.loc[proba_threshold, "tn"] = tn + df.loc[proba_threshold, "fn"] = cm[1][0] + df.loc[proba_threshold, "total_survived"] = np.sum(cm[0]) + df.loc[proba_threshold, "total_deceased"] = np.sum(cm[1]) + return df +``` +``` +cm = onc_calc_cm( + calibrated_results.y, + calibrated_results.p_calibrated, + range_probas=[.10,.20, .30, .40, .50]) +cm.to_csv('./roc_results/2021_xgb_imputed_calibrated_confusion_matrix.csv') +cm +``` +![xgb_imputed_cm.png](./images/xgb_imputed_cm.png) + +### 6.3.2.7 Saving data for the fairness assessment + +***Steps to running the 6_xgb_fairness_assess_get_data.ipynb script*** + +Get the columns of data required to compute fairness assessment and save +``` +inc_age = age +sex +dialtyp=type of dialysis +race +``` +- Input:`medexpressesrd` table from Postgres +- Output: +``` +complete_fairness_data.pickle +``` + +Step 1. Import the libraries +``` +import psycopg2 +import sqlalchemy +from sqlalchemy import create_engine + +import numpy as np +import pandas as pd +import sys +import pickle +``` +Step 2. Connect to the Postgres database + +The credentials required to connect to the database should be inserted in the following snippet of code below: +``` +con = create_engine('postgresql://username:password@location/dbname') +``` +Step 3. Import the columns required for the fairness assessment from the database +``` +df = pd.read_sql_query('''SELECT usrds_id, died_in_90, inc_age, sex, dialtyp, race, hispanic, subset FROM medxpreesrd;''', con) +``` +Step 4. Save the files +``` +with open('complete_fairness_data.pickle', 'wb') as picklefile: + pickle.dump(df, picklefile) +``` +### 6.3.2.8 Fairness assessment + +ML models can perform differently for different categories of patients, so the imputed XGBoost model was assessed for fairness, or how well the model performs for each category of interest (demographics—sex, race, and age—as well as initial dialysis modality). Age is binned into the following categories based on UCSF clinician input and an example in literature: 18-25, 26-35, 36-45, 46-55, 56-65, 66-75, 76-85, 86+. The USRDS predefined categories for race, sex, and dialysis modality were used for the fairness assessment. + +***Steps for running the 7_xgb_imputed_fairness.ipynb script*** + +Calculations for specific groups of patients to assess the fairness of the final model for all patients in the test subsets. For the fairness assessment for the imputed XGBoost model, all results are for imputation #5 for the non-calibrated model. + +- Input: +``` +2021_xgb_pooling_results_final_roc.csv +complete_fairness_data.pickle +``` +- Output: +``` +2021_xgb_imputed_fairness.csv +``` +Step 1. Import libraries +``` +import numpy as np +import pandas as pd + +import pickle +import datetime +import sys +#path to the functions directory +sys.path.append('../../onc_functions/') + +# import custom function +from fairness import get_fairness_assessment +``` +Step 2. Write the function that calculates AUC and the confusion matrix from the model prediction scores. This function is located and imported from the /onc_functions/fairness.py file. + +``` +def get_fairness_assessment(df, y_proba_col_name, y_true_col_name): + + #turn the continuous age variable into age categories + df['agegroup'] = pd.cut(df.inc_age, + bins=[17, 25, 35, 45, 55, 65, 75, 85, 90], + labels=[1, 2, 3, 4, 5, 6, 7, 8]) + + df = df.drop(columns=['inc_age']) + + #replace NaNs with a large number that does not appear in the data, effectively creating another category for missing values + df.loc[:,['race','dialtyp','hispanic']] = df.loc[:,['race','dialtyp','hispanic']].fillna(100.0, axis=1).copy() + + #Identify the cols for the fairness assessment + fairness_cols = ['agegroup', 'sex','dialtyp', 'race','hispanic'] + + #loop through all categories and values to get counts, auc, and confusion matrix + rows_list = [] + for col in fairness_cols: + for name, c in df.groupby(col): + fairness_dict = {} + fairness_dict['Feature'] = col + fairness_dict['Value'] = name + fairness_dict['Count'] = c.shape[0] + + fairness_dict['AUC'] = roc_auc_score(c[y_true_col_name], c[y_proba_col_name]) + tn, fp, fn, tp = confusion_matrix(y_true = c[y_true_col_name], + y_pred = np.where(c[y_proba_col_name] >= 0.5, 1, 0)).ravel() + fairness_dict['TN'] = tn + fairness_dict['FP'] = fp + fairness_dict['FN'] = fn + fairness_dict['TP'] = tp + rows_list.append(fairness_dict) + + #convert results from a list to a dataframe + df_fairness = pd.DataFrame(rows_list) + return df_fairness +``` +Step 3. Load results from the model and fairness details +``` +pred_df = pd.read_csv('./roc_results/2021_xgb_pooling_results_final_roc.csv') + +with open('../complete_fairness_data.pickle', 'rb') as f: + dataset = pickle.load(f) + +# merge model results with fairness details +data = pred_df.merge(dataset, how='left', on=['usrds_id','died_in_90']) +``` +Step 4. Calculate fairness assessment +``` +fairness = get_fairness_assessment(data, + y_proba_col_name='averaged', + y_true_col_name='died_in_90') +``` +Step 5. Save results +``` +fairness.to_csv('./roc_results/' + str(dte) + '_xgb_imputed_fairness.csv') +``` +![xgb_imputed_fairness.png](./images/xgb_imputed_fairness.png) + +***Points to consider*** + +Performing the fairness assessment on the categories of interest gives additional insight into how the model performs by different patient categories of interest (by demographics, etc.). Future researchers should perform fairness assessments to better evaluate model performance, especially for models that may be deployed in a clinical setting. Other methods of assessing fairness include evaluating true positives, sensitivity, positive predictive value, etc. at various threshold across the different groups of interest, which would allow selection of a threshold that balances model performance across the groups of interest. + +### 6.3.2.9 Risk assessment + +***Steps for running the 8_xgb_imputed_risk_categories.ipynb script*** + +Note: Risk categorization is run on the non-calibrated model results. + +- Input: +``` +complete_fairness_data.pickle +2021_xgb_pooling_results_final_roc.csv +``` +- Output: +``` +2021_xgb_imputed_risk_cat.csv +``` +Step 1. Import libraries +``` +import numpy as np +import pandas as pd +import pickle + +import sys +#path to the functions directory +sys.path.append('../../onc_functions/') + +from risk import get_risk_categories + +print('python-' + sys.version) +import datetime +dte = datetime.datetime.now() +dte = dte.strftime("%Y%m%d") +``` +Step 2. Import the details from the fairness assessment +``` +with open('../complete_fairness_data.pickle', 'rb') as f: + dataset = pickle.load(f) +``` + +Step 3. Import the pooled results from the model +``` +pred_df = pd.read_csv('./roc_results/2021_xgb_pooling_results_final_roc.csv') +``` +Step 4. Merge the details with the results +``` +data = pred_df.merge(dataset, on=['usrds_id','died_in_90']) +``` + +Step 5. Calculate risk. The function **get_risk_categories** is imported from the /onc_functions/risk.py file. + +``` +def get_risk_categories(dataset, y_proba_col_name, y_true_col_name): + + test_x_pd = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id') + del dataset + + df = test_x_pd.loc[:,[y_true_col_name,y_proba_col_name]] + + #construct the risk categories from the predicted score + df['risk_categories'] = pd.cut(df[y_proba_col_name], + bins=[-0.1, 0.09, 0.19, 0.29, 0.39, 0.49, 0.59, 0.69, 0.79, 0.89, 0.99], + labels=['0-0.09', '0.1-0.19', '0.2-0.29', '0.3-0.39', '0.4-0.49', + '0.5-0.59','0.6-0.69','0.7-0.79','0.8-0.89','0.9-0.99']) + + #loop through all the categories to get the predicted score + risk_list = [] + for name, c in df.groupby('risk_categories'): + risk_dict = {} + risk_dict['Risk Category'] = name + risk_dict['Count'] = c[y_true_col_name].shape[0] + risk_dict['Count Died in 90'] = c[y_true_col_name].sum() + risk_dict['Count Survived'] = c[y_true_col_name].shape[0]-c[y_true_col_name].sum() + risk_dict['Percent Died in 90'] = c[y_true_col_name].sum()/c[y_true_col_name].shape[0] + + risk_list.append(risk_dict) + + df_risk = pd.DataFrame(risk_list) + return df_risk +``` +Run the function above +``` +risk_cat = get_risk_categories(data, + y_proba_col_name='score', + y_true_col_name='died_in_90') +``` +Step 6. Save +``` +risk_cat.to_csv('./results/' + str(dte) + '_xgb_imputed_risk_cat.csv') +``` +![xgb_imputed_risk.png](./images/xgb_imputed_risk.png) + +## 6.3.3 Logistic Regression (LR) Model + +LR is a classic categorization model that can be used to examine the association of (categorical or continuous) independent variable(s) with one binary dependent variable. + +**Environment** + +The environment used for the LR model was purchased on Amazon Web Services (AWS): +``` +Name: m5.4xlarge +vCPU: 16 +GPU: 0 +Cores: 8 +Threads per core: 2 +Architecture: x86_64 +Memory: 64 GB +Operating System: Linux (Ubuntu 20.04 Focal Fossa) +Network Performance: 10 GB or less +Zone: US govcloud west +``` +The LR model takes less than 1 day to run each section of code if using the above environment. + +The LR model and cross validation methods from the Python (version 3.6.9) library scikit learn (version 0.24.1) were utilized along with the following libraries: + +|Python Library |Version| +|-------------------|---------| +|scikit-learn| 0.24.1| +|numpy |1.19.5| +|pandas |1.1.5| +|matplotlib |3.3.3| +|seaborn |0.11.1| + + +***Points to consider*** + +The use of parallel processing significantly decreased the amount of time it took to run the model. + +### 6.3.3.1 Pre-processing the training dataset + +The preprocessing included one hot encoding of categorical features and removal of features with missing values. + +***Steps for running the 1_lr_preprocessing.ipynb script*** + +- Input: +``` +medexpressesrd +micecomplete_pmm +numeric_columns.pickle +``` +- Output: +``` +complete1.pickle +complete2.pickle +complete3.pickle +complete4.pickle +complete5.pickle +``` + +Step 1. Install/import libraries +``` +import psycopg2 +import sqlalchemy +from sqlalchemy import create_engine + +# other libraries +import numpy as np +import pandas as pd +import sys +import pickle +import seaborn as sns + +#plotting +import matplotlib.pyplot as plt +%matplotlib inline +``` +Step 2. Connect to the Postgres database. + +The credentials for the Postgres database will be inserted here. +``` +con = create_engine('postgresql://username:password@address/dbname') +``` +Step 3. Get data + +Load the full non-imputed data found in the `medexpressesrd` table from Postgres database. +``` +df = pd.read_sql_query('''SELECT * FROM medxpreesrd;''', con) +``` +Get counts for each class. (This gets used later when we train the model.) +``` +neg_class_count, positive_class_count = np.bincount(df['died_in_90']) +``` +The labels are 2 integers, 0 (survived) or 1 (deceased). These correspond to the class. Note that we have a class imbalance with deceased being the minority class. +``` +Label Class Count +0 survived 1064112 +1 deceased 86083 +``` +![class_imbalance_bar.png](./images/class_imbalance_bar.png) +Step 4. Remove missing data + +Logistic regression models cannot account for missing values. The columns to remove are loaded at the top of the notebook in the variable **vars_to_remove** and were chosen by the clinical experts who are part of the project team. + +For this dataset, the columns of pre-esrd claims data that have missing values (claim counts, etc) were removed, keeping the binary features from the Medicare pre-ESRD claims, which include indicators for claims in each care setting, indicator for pre-ESRD claims, indicators for each diagnosis group. +``` +df.drop(columns=vars_to_remove,inplace=True) +``` + +Step 5. Encode categorical features + +One variable **dial_train_time** was created from taking the difference between 2 dates in the medevid table. This feature was the only non-claims-related feature to have a large number of missing values, but instead of dropping, it was encoded as follows: +- a number greater than zero=1 +- 0=0 +- missing=3 +Thus, the feature is turned into a categorical rather than numeric variable to retain some (though not all) information. +``` +df.dial_train_time = df.dial_train_time.fillna(-1) +df.dial_train_time=df.dial_train_time.astype(int).clip(lower=-1,upper=1) +df.dial_train_time=df.dial_train_time.astype(str).replace("-1","na") +``` +Use dummy variables for categorical variables (loaded at the top of the notebook) which is the method used for one-hot encoding. + +Get the list of categorical variables that have more then 2 levels, then encode using pandas get_dummies function. +``` +dummy_list = [] +for col in categoryVars: + u = len(df[col].unique()) + if u>2: + dummy_list.append(col) + +df = pd.concat([df, pd.get_dummies(df.loc[:,dummy_list].astype('str'))],axis=1).drop(columns=dummy_list,axis=1) +``` +Step 6. Load imputed data +Import imputed data `micecomplete_pmm` table from Postgres. +``` +imp = pd.read_sql_query('''SELECT *, row_number() + OVER(PARTITION BY usrds_id) AS impnum + FROM micecomplete_pmm +''', con) +``` +Step 7. Remove the 5 (imputed) columns from the original data +``` +df.drop(columns=["height", "weight", "bmi", "sercr", "album", "gfr_epi", "heglb"],inplace=True) +df.shape = (1150195, 290) +``` +Step 8. Separate the imputed data into 5 data frames + +This makes it easier to store, load, and compute. +``` +imp1 = imp[imp.impnum==1] +imp2 = imp[imp.impnum==2] +imp3 = imp[imp.impnum==3] +imp4 = imp[imp.impnum==4] +imp5 = imp[imp.impnum==5] +``` +Step 9. Merge the encoded data with each of the 5 imputed datasets. + +This is a left merge on the non-imputed data based on the **usrds_id** and the **subset** number. +``` +complete1 = pd.merge(df, imp1, how='left', on=["usrds_id","subset"]) +complete2 = pd.merge(df, imp2, how='left', on=["usrds_id","subset"]) +complete3 = pd.merge(df, imp3, how='left', on=["usrds_id","subset"]) +complete4 = pd.merge(df, imp4, how='left', on=["usrds_id","subset"]) +complete5 = pd.merge(df, imp5, how='left', on=["usrds_id","subset"]) + +complete5.shape +(1150195, 298) +``` +Step 10. Save + +Save each set to the current directory as a pickle file (a file type that works well for pandas dataframes). +``` +with open('complete1.pickle', 'wb') as picklefile: + pickle.dump(complete1, picklefile) +with open('complete2.pickle', 'wb') as picklefile: + pickle.dump(complete2, picklefile) +with open('complete3.pickle', 'wb') as picklefile: + pickle.dump(complete3, picklefile) +with open('complete4.pickle', 'wb') as picklefile: + pickle.dump(complete4, picklefile) +with open('complete5.pickle', 'wb') as picklefile: + pickle.dump(complete5, picklefile) +``` +***Points to consider*** + +The approach used to handle missing values is dependent on the dataset and the features in the dataset. Clinical expertise is crucial in understanding the impact of missing values and whether or not they should be imputed, removed, or replaced. + +### 6.3.3.2 Hyperparameter tuning and final logistic regression model + +This script computes the 5-fold cross-validation gridsearch on each set of the complete imputed data to find the best hyperparameters for the logistic regression model. LR has few parameters to set, therefore, hyperparameter tuning is simpler for this model. The data was split into test and train sets (the same ~70/30 split used in the other models). The training data was used to run the cross-validation model. The following parameters were tested: +- regularization strength +- regularization type (penalty) +- max iterations for convergence +- class weight + +The cross validation was run once per each imputed dataset and results were pooled (averaged). + +***Steps for running the 2_logistic_regression.ipynb script*** + +- Input: +``` +complete1.pickle +complete2.pickle +complete3.pickle +complete4.pickle +complete5.pickle +``` +- Output: +``` +2021_LR_cv_clf_imp_1.pickle +2021_LR_cv_clf_imp_2.pickle +2021_LR_cv_clf_imp_3.pickle +2021_LR_cv_clf_imp_4.pickle +2021_LR_cv_clf_imp_5.pickle +2021_final_LR_model_test_pred_proba_imp_x.pickle +2021_final_model_LR_fpr_all.pickle +2021_final_model_LR_tpr_all.pickle +2021_final_model_LR_auc_all.pickle +2021_final_LR_model.pickle +``` +Step 1. Install/import libraries +``` +import pandas as pd +import numpy as np +import os +import pickle +import sklearn.metrics as metrics +from sklearn.metrics import auc, plot_confusion_matrix, roc_curve, plot_roc_curve, accuracy_score, roc_auc_score, classification_report, confusion_matrix, PrecisionRecallDisplay, precision_recall_curve, RocCurveDisplay + +from sklearn.model_selection import GridSearchCV +from sklearn.preprocessing import StandardScaler + +from sklearn.model_selection import KFold, StratifiedKFold, train_test_split, GridSearchCV +from sklearn.preprocessing import StandardScaler +from sklearn.linear_model import LogisticRegressionCV, LogisticRegression +from sklearn.dummy import DummyRegressor, DummyClassifier + +import seaborn as sns +import matplotlib.pyplot as plt +``` +Step 2. Load numeric column list +``` +with open('numeric_columns.pickle', 'rb') as f: + nu_cols = pickle.load(f) +``` +Step 3. Import a set of data and scale numeric columns + +Each imputed set should be run separately, so only import one set at a time. Here, we import imputation 5. +``` + with open('complete5.pickle', 'rb') as f: + dataset = pickle.load(f) +``` +Keep only the training data subsets (1-6) since we are only running a cross validation to obtain the optimal parameters for the model. +``` + X_train = dataset[dataset.subset <= 6].copy().sort_values(by = 'usrds_id') +``` +Step 4. Separate the labels (typically denoted as 'y') and save as an array. +``` + y_train = np.array(X_train.pop('died_in_90')) +``` +Step 6. Scale only the numeric columns with an sklearn library **StandardScaler**. +``` + scaler = StandardScaler() + X_train[nu_cols] = scaler.fit_transform(X_train[nu_cols]) +``` +Step 5. Save the training data as an array (rather than a pandas dataframe) and drop the non-feature columns. +``` + X_train = np.array(X_train.drop(columns=['subset','usrds_id','impnum'])) +``` + +Step 6. Create the grid for the grid search +``` +param_grid = [{ + 'penalty':['l1','l2','elasticnet'], + 'C': np.logspace(-3, 3, 10, 20), + 'max_iter': [500, 1000, 1500], + 'class_weight' :['balanced'] + }] +``` + +Step 7. Instantiate the model +``` +lr_model = LogisticRegression() +clf = GridSearchCV( + lr_model, + param_grid=param_grid, + cv=5, + verbose=True, + n_jobs=-1, + scoring='average_precision' +) +``` +Step 8. Fit the grid search 5-fold cross-validated logistic regression model +``` +best_clf = clf.fit(X_train, y_train) +``` +Save the model. +``` +with open('2021_LR_cv_clf_imp_'+str(imp)+'.pickle', 'wb') as picklefile: + pickle.dump(clf,picklefile) +``` +Step 9. Calculate predictions on the test set +``` +pred_proba_onc_train = clf.predict_proba(X_train)[:,1] +``` +Step 10. Metrics and results +Calculate and plot the roc_auc (area under the receiver operating characteristic curve) for each fold. +``` +train_score = roc_auc_score(y_train, pred_proba_onc_train) +``` +Step 11. Import data and scale numeric cols + +Train and evaluate the final model based on the best parameters from the cross-validation step. This must be done for each of the 5 imputed datasets. + +Load a set of data. +``` +with open('./complete' + str(imp) + '.pickle', 'rb') as f: + dataset = pickle.load(f) + +``` +Separate the training set (1-6) +``` +train_x = dataset[dataset.subset <= 6].copy().sort_values(by = 'usrds_id') +``` +from the test set (7-9). +``` +test_x = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id') +``` +Separate the labels. +``` +train_y = np.array(train_x.pop('died_in_90')) +test_y = np.array(test_x.pop('died_in_90')) +``` +Scale the numeric columns by training the model on the training set and then using this to transform the test set. Also remove the non-feature columns used to identify patients, imputations or subsets. +``` +scaler = StandardScaler() +train_x[nu_cols] = scaler.fit_transform(train_x[nu_cols]) +train_x = np.array(train_x.drop(columns=['subset','usrds_id','impnum'])) + +test_x[nu_cols] = scaler.transform(test_x[nu_cols]) +test_x = np.array(test_x.drop(columns=['subset','usrds_id','impnum'])) +``` + +Step 12. Instantiate the final logistic regression model + +Use the best hyperparameters from the cross-validation for the final model. +``` +lr_model_final = LogisticRegression(C=0.1, + penalty='l2', + max_iter=1000, + solver='saga', + class_weight='balanced', + n_jobs=-1, + verbose=1, + random_state=499) +``` +Step 13. Train the model + +Fit the model on the training data subsets. +``` +logistic_model_final = lr_model_final.fit(train_x, train_y) +``` +Step 14. Evaluate the model + +Evaluate the model by predicting on the test set and plot the outcome for each imputation. +``` +pred_proba_onc_test = logistic_model_final.predict_proba(test_x) +``` +Step 15. Save the model +``` +with open('2021_final_LR_model_test_pred_proba_imp_' + str(imp) + '.pickle', 'wb') as picklefile: + pickle.dump(pred_proba_onc_test, picklefile) +``` +***Points to consider*** + +1. Standardization allows for comparison of multiple features in different units and the penalty (i.e., L1) will be applied more equally across the features. The model will learn the importance of features better and faster when it isn't overwhelmed by a feature with a much larger range than the others. + +2. Logistic regression models do not perform well when the outcome variable is imbalanced (or heavily skewed towards one outcome). The outcome variables (survived, died_in_90) in the training dataset was balanced through weighting (edit the weight parameter in the model to give more weight to the minority class and less to the majority class). Balancing the data ensures that the models have sufficient data from both of the outcome classes (died vs survived) on which to train. This results in a better balance between sensitivity and specificity, which is important for this dataset where mortality is predicted. + +3. Due to the small set of hyperparameters to tune, this model does not require a GPU or even multiple CPUs to run the cross-validation. + +4. It is important to keep the test set separate when scaling, otherwise we are peeking at the test set which will cause an invalid evaluation of the model. + +### 6.3.3.3 Pool Results +***Steps for running the 3_pool_results_from_imputations.ipynb script*** + +This script pools the probability predicions for each row/patient from all 5 imputations by averaging the scores. + +- Input: +``` +2021_final_LR_model_test_pred_proba_imp_1.pickle +2021_final_LR_model_test_pred_proba_imp_2.pickle +2021_final_LR_model_test_pred_proba_imp_3.pickle +2021_final_LR_model_test_pred_proba_imp_4.pickle +2021_final_LR_model_test_pred_proba_imp_5.pickle +``` + +- Output: +``` +2021_final_LR_model_test_pred_proba_pooled.pickle +``` + +Step 1. Libraries +``` +import pickle +import numpy as np +import pandas as pd + +import psycopg2 +import sqlalchemy +from sqlalchemy import create_engine +``` + +Step 2. Import results from each imputation +``` +with open('./results/2021_final_LR_model_test_pred_proba_imp_1.pickle','rb') as f: + imp1_pred = pickle.load(f) +with open('./results/2021_final_LR_model_test_pred_proba_imp_2.pickle','rb') as f: + imp2_pred = pickle.load(f) +with open('./results/2021_final_LR_model_test_pred_proba_imp_3.pickle','rb') as f: + imp3_pred = pickle.load(f) +with open('./results/2021_final_LR_model_test_pred_proba_imp_4.pickle','rb') as f: + imp4_pred = pickle.load(f) +with open('./results/2021_final_LR_model_test_pred_proba_imp_5.pickle','rb') as f: + imp5_pred = pickle.load(f) +``` + +Step 3. Keep only the predictions from the positive class +``` +pooled = pd.DataFrame() +pooled['imp1']=imp1_pred[:,1] +pooled['imp2']=imp2_pred[:,1] +pooled['imp3']=imp3_pred[:,1] +pooled['imp4']=imp4_pred[:,1] +pooled['imp5']=imp5_pred[:,1] +``` +Step 4. Calculate the mean and standard deviation of the predicted probability for the positive class (died_in_90) for each patient/row. +``` +pooled['score'] = pooled.mean(axis=1) +pooled['std_'] = pooled.std(axis=1) +``` +![lr_pooled.png](./images/lr_pooled.png) + +Step 5. Import details from the medexpreesrd table +``` +con = create_engine('postgresql://username:password@location/dbname') + +dataset = pd.read_sql_query('''SELECT usrds_id, died_in_90, subset FROM medxpreesrd;''', con) +``` +Step 6. Sort the values so they are in the same order as when the LR was calculated and keep only the test set. +``` +dataset = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id').reset_index(drop=True) +``` +Step 7. Merge the details with the pooled predictions. +``` +pooled = pooled.merge(dataset, left_index=True, right_index=True) +``` +Step 8. Save +``` +with open('./results/2021_final_LR_model_test_pred_proba_pooled.pickle', 'wb') as picklefile: + pickle.dump(pooled, picklefile) +``` + +### 6.3.3.4 Plot Results +***Steps for running the 4_plot_lr_roc_auc.ipynb script*** + +- Input: +``` +2021_final_LR_model_test_pred_proba_pooled.pickle +``` +- Output: +``` +lr_roc_auc_bw.png +2021_lr_confusion_matrix.csv +``` + +Step 1. Import libraries +``` +import pandas as pd +import numpy as np +import pickle + +import sys +#path to the functions directory +sys.path.append('../onc_functions/') + +#import custom plotting functions +from plot_functions import onc_calc_cm, onc_plot_roc +``` +Step 2. Load the pooled model results +``` +with open('./results/2021_final_LR_model_test_pred_proba_pooled.pickle','rb') as f: + results = pickle.load(f) + +results = results.loc[:,['score','died_in_90','subset','usrds_id']] +results = results.rename(columns={'died_in_90':'y'}) +``` +Step 3. Plot the ROC AUC. This function **onc_plot_roc** is located and imported from /onc_functions/plot_functions.py +``` +def onc_plot_roc(y_true, y_pred, model_name, **kwargs): + ''' + Plot the ROC AUC and return the test ROC AUC results. + INPUT: y_true, y_pred, model_name, **kwargs + ''' + + #calc values for plot + false_positives, true_positives, threshold = roc_curve(y_true, y_pred) + c_roc_auc_score = auc(false_positives, true_positives) + + #set figure params + fig1 = plt.figure(1, figsize=(12,30),dpi=400) + ax1 = plt.subplot2grid((7, 1), (0, 0), rowspan=2) + + #plot reference line for chance + ax1.plot([0, 1], [0, 1], linestyle='--', lw=2, color='gray', + label='Chance', alpha=.8) + + # plot AUC ROC + ax1.plot(false_positives, true_positives, + label=r'ROC (AUC = %0.3f)' % (c_roc_auc_score), + lw=2, alpha=.8, color = 'k') + + # additional figure params + ax1.set(xlim=[-0.05, 1.05], ylim=[-0.05, 1.05],) + ax1.legend(loc="lower right") + plt.xlabel('1-Specificity') + plt.ylabel('Sensitivity') + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + # save plot + plt.savefig(model_name + "_roc_auc_bw.png", dpi=400, transparent=True) + plt.show() +``` +``` +onc_plot_roc( + y_true=results.y, + y_pred=results.score, + model_name='lr'); +``` +![lr_roc_auc_bw_nothreshold_hires_crop.png](./images/lr_roc_auc_bw_nothreshold_hires_crop.png) + +Step 4. Print and save the performance metrics at multiple thresholds +``` +def onc_calc_cm(y_true, y_predictions, range_probas=[0.1,0.5]): + ''' + Plot the confusion matrix and scores for multiple thresholds + ''' + df = pd.DataFrame(index = range_probas, + columns=['threshold','sensitivity','specificity', + 'likelihood_ratio_neg','likelihood_ratio_pos', + 'tp','fp','tn','fn','total_survived','total_deceased',]) + for proba_threshold in range_probas: + + cm = confusion_matrix(y_true, y_predictions > proba_threshold) + tn = cm[0][0] + fp = cm[0][1] + + sensitivity = recall_score(y_true, y_predictions > proba_threshold) + specificity = tn / (tn + fp) + + df.loc[proba_threshold, "threshold"] = proba_threshold + df.loc[proba_threshold,"sensitivity"] = sensitivity + df.loc[proba_threshold, "specificity"] = specificity + df.loc[proba_threshold, "likelihood_ratio_neg"] = (1-sensitivity)/specificity + df.loc[proba_threshold, "likelihood_ratio_pos"] = sensitivity/(1-specificity) + df.loc[proba_threshold, "tp"] = cm[1][1] + df.loc[proba_threshold, "fp"] = fp + df.loc[proba_threshold, "tn"] = tn + df.loc[proba_threshold, "fn"] = cm[1][0] + df.loc[proba_threshold, "total_survived"] = np.sum(cm[0]) + df.loc[proba_threshold, "total_deceased"] = np.sum(cm[1]) + return df +``` +``` +cm = onc_calc_cm( + results.y, + results.score, + range_probas=[.10,.20, .30, .40, .50]) +cm.to_csv('./results/2021_lr_confusion_matrix.csv') +cm +``` +![lr_cm.png](./images/lr_cm.png) +### 6.3.3.5 Feature Importance +***Steps for running the 5_lr_feature_importance.ipynb script*** + +Plot the feature importance according to the final logistic regression model. +- Input: +``` +complete5.pickle +2021_final_LR_model +``` +- Output: +``` +2021_top_bottom_plot.svg +2021_top_log_regression_coef_20.csv +``` + +Step 1. Load the final model +``` +with open('./results/2021_final_LR_model.pickle', 'rb') as picklefile: + logistic_model_final = pickle.load(picklefile) +``` +Step 2. Import feature names +Import one imputation of the data to get feature names. +``` +with open('./complete5.pickle', 'rb') as f: + dataset = pickle.load(f) +feats = dataset.iloc[0:1,:] +``` +Drop the columns that were not used as features in the model. +``` +ff = feats.drop(columns=['usrds_id','subset','died_in_90','impnum']).copy() +ff = ff.columns +ff = np.array(ff) +``` +Step 3. Sort features by coeffecient score + +Create a function to sort the features by their highest (tops) or lowest (bottom) coeffecient to see which features were most important for the model to determine which class a patient was in. Here we get the strongest scores regardless of whether they are positive or negative because we are interested in the magnitude (difference from zero). +``` +def get_most_important_features(r, model, n=5): + + classes ={} + for class_index in range(model.coef_.shape[0]): + word_importances = [(el, r[i]) for i, el in enumerate(model.coef_[class_index])] + sorted_coeff = sorted(word_importances, key = lambda x : x[0], reverse=True) + tops = sorted(sorted_coeff[:n], key = lambda x : x[0]) + bottom = sorted_coeff[-n:] + classes[class_index] = { + 'tops':tops, + 'bottom':bottom + } + return classes +```` +Call function for the top and bottom 20 features. +``` +importance = get_most_important_features(ff, logistic_model_final, 20) +``` +Save the strongest scores (most negative and most positive). +``` +top_scores = [a[0] for a in importance[0]['tops']] +top_words = [a[1] for a in importance[0]['tops']] +bottom_scores = [a[0] for a in importance[0]['bottom']] +bottom_words = [a[1] for a in importance[0]['bottom']] +top_coef = pd.DataFrame(columns=['vocab','coef']) +top_coef['vocab'] = top_words + bottom_words +top_coef['coef'] = top_scores + bottom_scores +top_coef = top_coef.sort_values(by='coef',axis=0,ascending=False) +top_coef.to_csv('./results/2021_top_log_regression_coef_20.csv') +``` + +![lr_feat_importance.png](./images/lr_feat_importance.png) + +### 6.3.3.6 Fairness assessment +ML models can perform differently for different categories of patients, so the LR model was assessed for fairness, or how well the model performs for each category of interest (demographics—sex, race, and age—as well as initial dialysis modality). Age is binned into the following categories based on clinician input and an example in literature: 18-25, 26-35, 36-45, 46-55, 56-65, 66-75, 76-85, 86+. The USRDS predefined categories for race, sex, and dialysis modality were used for the fairness assessment. + +***Steps for running the 6_logistic_regression_fairness.ipynb script*** + +This script calculates the ROC AUC for specific groups of patients to assess the fairness of the final model. + +- Input: +``` +medexpreesrd +2021_final_LR_model_test_pred_proba_pooled.pickle +``` +- Output: +``` +complete_fair1.pickle +2021_lr_fairness.csv +``` +Step 1. Import libraries +``` +import numpy as np +import pandas as pd +import sys +import pickle + +#path to the functions directory +sys.path.append('../onc_functions/') + +from fairness import get_fairness_assessment + +import datetime +dte = datetime.datetime.now() +dte = dte.strftime("%Y") + +print('python-' + sys.version) +``` + +Step 2. Get the columns of data required to compute fairness assessment and save them. +``` +con = create_engine('postgresql://username:password@location/dbname') +df = pd.read_sql_query('''SELECT usrds_id, died_in_90, inc_age, sex, dialtyp, race, hispanic, subset FROM medxpreesrd;''', con) +``` +Step 3. Save +``` +with open('complete_fair1.pickle', 'wb') as picklefile: + pickle.dump(df, picklefile) +``` +Step 4. Import the pooled results from the LR model +``` +with open('./results/2021_final_LR_model_test_pred_proba_pooled.pickle', 'rb') as f: + y_pred = pickle.load(f) +``` +Step 5. Merge the fairness details with the results +``` +data = df.merge(y_pred, on=['usrds_id','died_in_90','subset']) +``` + +Step 6. Calculate fairness. The function **get_fairness_assessment** is imported from the /onc_functions/fairness.py file. This function calculates AUC and the confusion matrix from the model prediction scores for specific groups. +``` +def get_fairness_assessment(data, + y_proba_col_name, + y_true_col_name): + + #turn the continuous age variable into age categories + df['agegroup'] = pd.cut(df.inc_age, + bins=[17, 25, 35, 45, 55, 65, 75, 85, 90], + labels=[1, 2, 3, 4, 5, 6, 7, 8]) + + df = df.drop(columns=['inc_age']) + + #replace NaNs with a large number that does not appear in the data, effectively creating another category for missing values + df.loc[:,['race','dialtyp','hispanic']] = df.loc[:,['race','dialtyp','hispanic']].fillna(100.0, axis=1).copy() + + #Identify the cols for the fairness assessment + fairness_cols = ['agegroup', 'sex','dialtyp', 'race','hispanic'] + + #loop through all categories and values to get counts, auc, and confusion matrix + rows_list = [] + for col in fairness_cols: + for name, c in df.groupby(col): + fairness_dict = {} + fairness_dict['Feature'] = col + fairness_dict['Value'] = name + fairness_dict['Count'] = c.shape[0] + + fairness_dict['AUC'] = roc_auc_score(c[y_true_col_name], c[y_proba_col_name]) + tn, fp, fn, tp = confusion_matrix(y_true = c[y_true_col_name], + y_pred = np.where(c[y_proba_col_name] >= 0.5, 1, 0)).ravel() + fairness_dict['TN'] = tn + fairness_dict['FP'] = fp + fairness_dict['FN'] = fn + fairness_dict['TP'] = tp + rows_list.append(fairness_dict) + + #convert results from a list to a dataframe + df_fairness = pd.DataFrame(rows_list) + return df_fairness +``` +Step 7. Calculate the assessment and save the results. +``` +fairness = get_fairness_assessment(data, + y_proba_col_name='score', + y_true_col_name='died_in_90') +fairness.to_csv('./results/2021_lr_fairness.csv') +``` + +![lr_fair.png](./images/lr_fair.png) + +***Points to consider*** + +Performing fairness assessment on the categories of interest gives additional insight into how the model performs by different patient categories of interest (by demographics, etc.). Future researchers should perform fairness assessments to better evaluate model performance, especially for models that may be deployed in a clinical setting. Other methods of assessing fairness include evaluating true positives, sensitivity, positive predictive value, etc. at various threshold across the different groups of interest, which would allow selection of a threshold that balances model performance across the groups of interest. + +## 6.3.3.7 Risk Assessment + +***Steps for running the 7_logistic_regression_risk.ipynb script*** + +- Input: +``` +complete_fair1.pickle +2021_final_LR_model_test_pred_proba_pooled.pickle +``` +- Output: +``` +2021_lr_risk_cat.csv +``` +Step 1. Import libraries +``` +import numpy as np +import pandas as pd +import pickle + +import sys +#path to the functions directory +sys.path.append('../onc_functions/') + +from risk import get_risk_categories + +print('python-' + sys.version) +import datetime +dte = datetime.datetime.now() +dte = dte.strftime("%Y%m%d") +``` + +Step 2. Import the details from the fairness assessment +``` +with open('complete_fair1.pickle','rb') as f: + details = pickle.load(f) +``` + +Step 3. Import the pooled results from the LR model +``` +with open('./results/2021_final_LR_model_test_pred_proba_pooled.pickle', 'rb') as f: + y_pred = pickle.load(f) +``` +Step 4. Merge the details with the results +``` +data = df.merge(y_pred, on=['usrds_id','died_in_90','subset']) +``` + +Step 5. Calculate risk. The function **get_risk_categories** is imported from the /onc_functions/risk.py file. + +``` +def get_risk_categories(dataset, y_proba_col_name, y_true_col_name): + + test_x_pd = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id') + del dataset + + df = test_x_pd.loc[:,[y_true_col_name,y_proba_col_name]] + + #construct the risk categories from the predicted score + df['risk_categories'] = pd.cut(df[y_proba_col_name], + bins=[-0.1, 0.09, 0.19, 0.29, 0.39, 0.49, 0.59, 0.69, 0.79, 0.89, 0.99], + labels=['0-0.09', '0.1-0.19', '0.2-0.29', '0.3-0.39', '0.4-0.49', + '0.5-0.59','0.6-0.69','0.7-0.79','0.8-0.89','0.9-0.99']) + + #loop through all the categories to get the predicted score + risk_list = [] + for name, c in df.groupby('risk_categories'): + risk_dict = {} + risk_dict['Risk Category'] = name + risk_dict['Count'] = c[y_true_col_name].shape[0] + risk_dict['Count Died in 90'] = c[y_true_col_name].sum() + risk_dict['Count Survived'] = c[y_true_col_name].shape[0]-c[y_true_col_name].sum() + risk_dict['Percent Died in 90'] = c[y_true_col_name].sum()/c[y_true_col_name].shape[0] + + risk_list.append(risk_dict) + + df_risk = pd.DataFrame(risk_list) + return df_risk +``` +Run the function above +``` +risk_cat = get_risk_categories(data, + y_proba_col_name='score', + y_true_col_name='died_in_90') +``` +Step 6. Save +``` +risk_cat.to_csv('./results/' + str(dte) + '_lr_risk_cat.csv') +``` + +![lr_risk.png](./images/lr_risk.png) + +## 6.3.4 Artificial Neural Network--Multilayer Perceptron (MLP) Model + +This section containts the code for the artificial neural net model - multilayer perceptron: MLP. The repository contains ipython notebooks to train an artificial neural net to classify patients as `survived` or `died_in_90`. Tensorflow is the library used to create and train the neural network. For a more detailed explanation of neural networks or tensorflow, we recommend the tutorials at [https://www.tensorflow.org/tutorials](https://www.tensorflow.org/tutorials). + +**Environment** + +These ipython notebooks can easily be run in a plain tensorflow docker container or used on their own in a conda or other ipython environment. + +The environment used for the MLP model was purchased on Amazon Web Services (AWS): +``` +Name: p2.16xlarge +vCPU: 64 +Cores: 32 +Threads per core: 2 +Architecture: x86_64 +Memory: 732 GB +GPU: 16 +GPU Memory: 12 GB +GPU Manufacturer: NVIDIA +GPU Name: K80 +Operating System: Linux (Ubuntu 20.04 Focal Fossa) +Network Performance: 25 GB +Zone: US govcloud west +``` +This code takes approximately 3 days to run all the sections. + +The MLP model was trained using the python (version 3.6.9) tensorflow (version 2.4.1) library and cross validation methods were from the Python (version 3.6.9) library scikit learn (version 0.24.1) and the following libraries: +|Python library | Version| +|---------------|--------| +|tensorflow |2.4.1| +|scikit-learn |0.24.1| +|numpy| 1.19.5| +|pandas| 1.1.5| +|matplotlib| 3.3.3| + +***Points to consider*** + +An instance with GPUs can be utilized for tuning a large number of hyperparameters, as done here. If multiple cores or a GPU are not available, recommend choosing only a few hyperparameters to tune at one time. + +### 6.3.4.1 Run Docker container (optional) +Run the following command in the same directory where you store the jupyter notebook (the repository). This will first pull the container, then instantiate it and mount the current directory to allow you to access the notebooks and also save any changes. + +Step 1. Use the following code to run the container on your local machine: +``` +sudo docker run -it -v "$PWD":/tf/notebooks --name onc_tf_1 tensorflow/tensorflow:latest-jupyter +``` +Step 2. Then open a browser and go to the default port mapping +``` +localhost:8888 +``` +Step 3. There you will see this directory of notebooks that you can open and run. + +### 6.3.4.2 Run on a server (i.e. AWS) +Ports will need to be mapped when running the container. +In our case 8080 is the port that is open and we can access it from the local machine at that port if connected to the server +``` +sudo docker run -it -p 8080:8888 -v "$PWD":/tf/notebooks --name onc_tf_1 tensorflow/tensorflow:latest-jupyter +``` +To utilize a GPU (which can be useful for the cross-validation step). +``` +sudo docker run -it -p 8080:8888 -v "$PWD":/tf/notebooks --name onc_tf_gpu tensorflow/tensorflow:latest-gpu-jupyter +``` +Then you can access the current directory and notebooks at https://[my_aws_ec2_address]:8080 + +***Points to consider*** + +To run the cross-validation hyperparameter tuning with a GPU, run it from a python file (a conda environment worked) not the ipython jupyter notebook. + +### 6.3.4.3 Pre-processing the data +The preprocessing is the same as for the logistic regression model and includes one hot encoding of categorical features and removal of features with missing values in lieu of the binary features. + +***Steps for running the 1_mlp_preprocessing.ipynb script*** + +- Input: +``` +medexpressesrd +micecomplete_pmm +numeric_columns.pickle +``` +- Output: +``` +complete1.pickle +complete2.pickle +complete3.pickle +complete4.pickle +complete5.pickle +``` + +Step 1. Install and import libraries + +Install the python packages into the docker container (if running in a container) and import them into the notebook. +``` +!pip install --upgrade pip +!pip install --upgrade scikit-learn +!pip install pandas +!pip install psycopg2-binary +!pip install sqlalchemy +!pip install seaborn + +import psycopg2 +import sqlalchemy +from sqlalchemy import create_engine + +# other libraries +import numpy as np +import pandas as pd +import sys +import pickle + +#plotting +import matplotlib.pyplot as plt +import seaborn as sns +%matplotlib inline +``` +Step 2. Connect to the Postgres database + +The credentials for the Postgres database will be inserted here. +``` +con = create_engine('postgresql://username:password@address/dbname') +``` + +Step 3. Get data + +Load the full non-imputed data found in the `medexpressesrd` table from Postgres database. +``` +df = pd.read_sql_query('''SELECT * FROM medxpreesrd;''', con) +``` +Get counts for each class (this gets used lated when we train the model) +``` +neg_class_count, positive_class_count = np.bincount(df['died_in_90']) +``` +The labels are 2 integers, 0 (survived) or 1 (deceased). These correspond to the class. Note that we have a class imbalance with deceased being the minority class. +``` +Label Class Count +0 survived 1064112 +1 deceased 86083 +``` +![class_imbalance_bar.png](./images/class_imbalance_bar.png) + +Step 4. Remove missing data + +Neural networks models cannot handle missing values. The columns to remove are loaded at the top of the notebook in the variable vars_to_remove and were chosen based on clinician input. + +For this dataset, the columns of pre-ESRD claims data that have missing values (claim counts, etc) were removed but kept the binary features from the Medicare pre-ESRD claims, which include indicators for claims in each setting, indicator for pre-ESRD claims, and indicators for each diagnosis group. +``` +df.drop(columns=vars_to_remove,inplace=True) +``` + +Step 5. Encode categorical features + +One variable **dial_train_time** was created from taking the difference between 2 dates in the medevid table. This feature was the only non-claims-related feature to have a large number of missing values, but we did not want to drop it so we encoded it in the following way +- a number greater than zero=1 +- 0=0 +- missing=3 + +Thus, the feature is turned into a categorical rather than numeric variable to retain some (though not all) information. +``` +df.dial_train_time = df.dial_train_time.fillna(-1) +df.dial_train_time=df.dial_train_time.astype(int).clip(lower=-1,upper=1) +df.dial_train_time=df.dial_train_time.astype(str).replace("-1","na") +``` +Use dummy variables for categorical variables (loaded at the top of the notebook). + +Get the list of categorical variables that have more then 2 levels, then encode using pandas get_dummies function. +``` +dummy_list = [] +for col in categoryVars: + u = len(df[col].unique()) + if u>2: + dummy_list.append(col) + +df = pd.concat([df, pd.get_dummies(df.loc[:,dummy_list].astype('str'))],axis=1).drop(columns=dummy_list,axis=1) +``` +Step 6. Load imputed data + +Import imputed data `micecomplete_pmm` table from Postgres. +``` +imp = pd.read_sql_query('''SELECT *, row_number() + OVER(PARTITION BY usrds_id) AS impnum + FROM micecomplete_pmm +''', con) +``` +Step 7. Remove the 5 columns from the original data +``` +df.drop(columns=["height", "weight", "bmi", "sercr", "album", "gfr_epi", "heglb"],inplace=True) +df.shape = (1150195, 290) +``` +Step 8. Separate the imputed data into 5 dataframes + +Separating the 5 imputed datasets into different dataframes makes it easier to store, load, and compute. +``` +imp1 = imp[imp.impnum==1] +imp2 = imp[imp.impnum==2] +imp3 = imp[imp.impnum==3] +imp4 = imp[imp.impnum==4] +imp5 = imp[imp.impnum==5] +``` +Step 9. Merge the encoded data with each of the 5 imputed datasets + +This is a left merge on the non-imputed data based on the **usrds_id** and the **subset** number. +``` +complete1 = pd.merge(df, imp1, how='left', on=["usrds_id","subset"]) +complete2 = pd.merge(df, imp2, how='left', on=["usrds_id","subset"]) +complete3 = pd.merge(df, imp3, how='left', on=["usrds_id","subset"]) +complete4 = pd.merge(df, imp4, how='left', on=["usrds_id","subset"]) +complete5 = pd.merge(df, imp5, how='left', on=["usrds_id","subset"]) + +complete5.shape +(1150195, 298) +``` +Step 10. Save the data + +Save each set to the current directory as a pickle file (a file type that works well for pandas dataframes). +``` +with open('complete1.pickle', 'wb') as picklefile: + pickle.dump(complete1, picklefile) +with open('complete2.pickle', 'wb') as picklefile: + pickle.dump(complete2, picklefile) +with open('complete3.pickle', 'wb') as picklefile: + pickle.dump(complete3, picklefile) +with open('complete4.pickle', 'wb') as picklefile: + pickle.dump(complete4, picklefile) +with open('complete5.pickle', 'wb') as picklefile: + pickle.dump(complete5, picklefile) +``` +***Points to consider*** + +The approach used to handle missing values is dependent on the dataset and the features in the dataset. Clinical expertise is crucial in understanding the impact of missing values and whether or not they should be imputed, removed, or replaced. + +### 6.3.4.4 Hyperparameter tuning + +This script computes the 5-fold cross-validation gridsearch to find the best hyperparameters for the MLP model. Keras (tensorflow) is used to create the layers of the neural net and take advantage of multiple GPUs (if available). The gridsearch cross-validation is computed using with sci-kit learn GridSearchCV. The class imbalance is handled by using the class_weights parameter. This hyperparameter cannot be tuned as part of the grid search and the function mlp_cv must be run for each set of weights. + +***Steps for running the 2_mlp_cross_val.ipynb script*** + +- Input: +``` +build_mlp.py +complete1.pickle +complete2.pickle +complete3.pickle +complete4.pickle +complete5.pickle +numeric_columns.pickle +``` + +-Output: x = [1,2,3,4,5] +``` +2021_grid_best_params_imp_x_weight_m.pickle +2021_grid_best_auc_imp_x_weight_m.pickle +2021_grid_cv_results_imp_x_weight_m.pickle + +2021_grid_best_params_imp_x_weight_5.pickle +2021_grid_best_auc_imp_x_weight_5.pickle +2021_grid_cv_results_imp_x_weight_5.pickle + +2021_grid_best_params_imp_x_weight_10.pickle +2021_grid_best_auc_imp_x_weight_10.pickle +2021_grid_cv_results_imp_x_weight_10.pickle + +2021_grid_best_params_imp_x_weight_20.pickle +2021_grid_best_auc_imp_x_weight_20.pickle +2021_grid_cv_results_imp_x_weight_20.pickle +``` +Step 1. Import packages + +Tensorflow is a popular framework for training a neural network and keras is a high-level API used for ease of access to the tensorflow functions. +``` +!pip install --upgrade scikit-learn +!pip install pandas +!pip install pyyaml h5py +!pip install seaborn + +# TensorFlow and tf.keras +import tensorflow as tf +from tensorflow.keras import layers +from tensorflow.keras.wrappers.scikit_learn import KerasClassifier +from tensorflow.keras.optimizers import Adam, SGD, Adamax + +import sklearn.metrics as metrics +from sklearn.metrics import auc, plot_roc_curve, roc_curve, mean_squared_error, accuracy_score, roc_auc_score, classification_report, confusion_matrix, log_loss +from sklearn.model_selection import GridSearchCV +from sklearn.preprocessing import StandardScaler +import sklearn + +# load custom function for building the NN +import sys +sys.path.append('../onc_functions/') +from build_mlp import build_mlp + +# other libraries +import numpy as np +import pandas as pd +import sys +import pickle + +#plotting +import matplotlib.pyplot as plt +import seaborn as sns +%matplotlib inline +``` +Step 2. Import list of numeric columns + +The following code snippet obtains the list of numeric columns to be scaled +``` +with open('numeric_columns.pickle', 'rb') as f: + nu_cols = pickle.load(f) +``` +Step 3. Import a set of data and scale numeric columns + +Each imputed set should be run separately, so only import one set at a time. The example below imports imputation 5: +``` +with open('complete5.pickle', 'rb') as f: + dataset = pickle.load(f) +``` +Keep only the training data subsets (1-6) since we are only running a cross validation to obtain the optimal parameters for the model. +``` +X_train = dataset[dataset.subset <= 6].copy().sort_values(by = 'usrds_id') +``` +Separate the labels (typically denoted as 'y') and save as an array. +``` +y_train = np.array(X_train.pop('died_in_90')) +``` +Scale only the numeric columns with an sklearn library **StandardScaler**. +``` +scaler = StandardScaler() +X_train[nu_cols] = scaler.fit_transform(X_train[nu_cols]) +``` +Save the training data as an array (rather than a pandas dataframe) and drop the non-feature columns. +``` + X_train = np.array(X_train.drop(columns=['subset','usrds_id','impnum'])) +``` + +Step 4. Create the grid for the grid search + +Insert the different parameters you want to test when doing the cross validation. For a detailed explanation of each parameter, see the section on the *Build_mlp.py* script below. +``` + neurons = [16, 32, 64, 128] + layers = [1, 2] + kernel_regularizer = ['l2'] + dropout_rate = [ 0.1, 0.2, 0.4, 0.5, 0.6] + learn_rate = [.001, .0001, .0002] + activation = ['relu', 'sigmoid', 'tanh'] + optimizer = ['Adam'] + output_bias = [None] + epochs = [10, 20] # 1mill/256=4000 steps for one pass thru dataset + batches = [512, 256] +``` +Step 5. Set parameters for early stopping (to optimize time) + +Early stopping for the epochs based on the auc_pr (area under the precision-recall curve). +``` +early_stopping = tf.keras.callbacks.EarlyStopping( + monitor='auc_pr' , + verbose=1, + patience=10, + mode='max', + restore_best_weights=True) +``` + +Step 6. Build layers + +Use the Keras wrapper for scikitlearn and our custom build_mlp function imported from the custom python script build_mlp.py +``` + weighted_model_skl = KerasClassifier(build_fn=build_mlp, + verbose=0) +``` +***Points to consider*** + +Standardization and scaling of numeric features allows for comparison of multiple features in different units. The model will learn the importance of features better and faster when it is not overwhelmed by a feature with a much larger range than the others. + +### 6.3.4.5 Building layers and compiling the model +This script is used to create the neural network by building the layers and then compiling the model. This model will consist of a few simple layers (Dense and Dropout) to illustrate the concepts and give an example. + +**Wrapper function** + +In the actual notebook, the full code is wrapped in a function (**mlp_cv**) for ease of running the cross-validation with the different weightings and each imputation dataset. An example of the code for imputation 5 is included below: +``` +mlp_cv(class_weight_20, weight_name=20, imputation=5) +``` +***Steps for running the build_mlp.py script*** + +Step 1. Import tensorflow packages to create the layers of the network. +``` +import tensorflow as tf +from tensorflow.keras.layers import Dense, Dropout +from tensorflow.keras.layers.experimental import preprocessing +from tensorflow.keras.wrappers.scikit_learn import KerasClassifier +from tensorflow.keras.optimizers import Adam +from tensorflow.keras.constraints import max_norm +from tensorflow.keras.metrics import AUC +``` +Step 2. Select metrics to measure the loss and the accuracy of the model. + +Multiple metrics can be reported as we have done here. +``` +METRICS = [ + tf.keras.metrics.TruePositives(name='tp'), + tf.keras.metrics.FalsePositives(name='fp'), + tf.keras.metrics.TrueNegatives(name='tn'), + tf.keras.metrics.FalseNegatives(name='fn'), + tf.keras.metrics.BinaryAccuracy(name='accuracy'), + tf.keras.metrics.Precision(name='precision'), + tf.keras.metrics.Recall(name='recall'), + tf.keras.metrics.AUC(name='auc'), + tf.keras.metrics.AUC(name='auc_pr', + num_thresholds=200, + curve="PR", + summation_method="interpolation", + dtype=None, + thresholds=None, + multi_label=False, + label_weights=None) +] +```` +Step 3. Define a function to take in the parameters for building the network. +``` +def build_mlp( + layers=2, + neurons=16, + output_bias=None, + optimizer='Adam', + activation='relu', + learn_rate=.0002, + dropout_rate=0.2, + kernel_regularizer='l2', + metrics=METRICS +): + if output_bias is not None: + output_bias = tf.keras.initializers.Constant(output_bias) + model = tf.keras.Sequential() +``` +This loop allows for us to test one or more identical dense layers based on the **layers** argument. Dense or fully connected layers consist of the number of neurons(nodes) defined in the **neurons** argument, an activation function defined by **activation**, an input shape of 294 (this is specific to our data since we always have 294 features or columns. If a feature is added or removed, this number needs to reflect that), and a kernel regularizer defined by the **kernel_regularizer** argument. +``` +for i in range(layers): + model.add(Dense( + neurons, + activation=activation, + input_shape=(294,), + kernel_regularizer=kernel_regularizer)) +``` +A Dropout layer is used to avoid overfitting when testing the model. The parameter **dropout_rate** determines the rate. +``` +model.add(Dropout(dropout_rate)) +``` +The final layer is a dense layer with a sigmoid activation function to give the probablility of each class for each sample. +``` +model.add(Dense( + 1, + activation='sigmoid', + bias_initializer=output_bias)) +``` +Step 4. Set the final arguments for compiling the model. +- Optimizer —This is how the model is updated based on the data it sees and its loss function. +- Loss function —This measures how accurate the model is during training. You want to minimize this function to "steer" the model in the right direction. BinaryCrossentropy() is used because we are training a binary classification model. +- Metrics —Used to monitor the training and testing steps. Here we use multiple metrics that are printed out. +``` + opt = optimizer(lr=learn_rate) + + model.compile( + optimizer=opt, + loss=tf.keras.losses.BinaryCrossentropy(), + metrics=metrics) + + return model +``` +Step 5. Instantiate the grid search cross validation model + +Evaluate our list of parameters using the sci-kit learn package **GridSearchCV** to run a 5-fold cross validation. This will result in the best combination of these parameters according to our score (which is set to **average_precision** to optimize precision and recall). Multiple processors can be taken advantage of by setting n_jobs=-1. Training many different parameters will take a significant amount of time that depends on the number of processors and size of the data. +``` +grid = GridSearchCV( + weighted_model_skl, + param_grid=params, + cv=5, + scoring='average_precision', + return_train_score=True, + n_jobs=-1 + ) +``` + +Step 6. Class imbalance and fit the model to the data + +When fitting the model to the training data, the class imbalanced can be set using the **class_weight** parameter. +``` +grid_result = grid.fit( + X_train, + y_train, + class_weight=selected_class_weight, + callbacks=[early_stopping] + ) +``` +Note that when testing multiple class weights, this must be done by fitting a new cross-validated model (running the entire script) for each different set of class weights to be tested, rather than as a hyperparameter in the model. +Multiple class weights were tested on the data. +- Classes: 0=survived (negative class), 1=died_in_90 (positive class). +``` +total = 1150195 +positive_class_count = 86083 #(7.48% of total) +neg_class_count = 1064112 #(92.52% of total) +# Scaling by total/2 helps keep the loss to a similar magnitude. +# The sum of the weights of all examples stays the same. +weight_for_0 = (1 / neg_class_count)*(total)/2.0 +weight_for_1 = (1 / positive_class_count)*(total)/2.0 + +class_weight_m = {0: weight_for_0, 1: weight_for_1} +``` +- A range of stronger weights the minority class. +``` +class_weight_5 = {0: 1, 1: 5} +class_weight_10 = {0: 1, 1: 10} +class_weight_20 = {0: 1, 1: 20} +``` + +Step 7. Summarize and print results +``` +means = grid_result.cv_results_['mean_test_score'] +stds = grid_result.cv_results_['std_test_score'] +params = grid_result.cv_results_['params'] + +for mean, stdev, param in zip(means, stds, params): + print("%f (%f) with: %r" % (mean, stdev, param)) +print("Best: %f using %s" % (grid_result.best_score_, grid_result.best_params_)) +``` + +Step 8. Save results + +Save the result for each set of class weight parameters (to select the one with the best score) and for each dataset (each imputation) and review the best_params_ from each one to check for similarity. +``` + with open('./results/2021_grid_best_params_imp_' + str(imputation) + '_weight_' + str(weight_name) + '.pickle', 'wb') as f: + pickle.dump(grid_result.best_params_, f) + + with open('./results/2021_grid_best_auc_imp_' + str(imputation) + '_weight_' + str(weight_name) + '.pickle','wb') as f: + pickle.dump(grid_result.best_score_, f) + + with open('./results/2021_grid_cv_results_imp_' + str(imputation) + '_weight_' + str(weight_name) + '.pickle','wb') as f: + pickle.dump(grid_result.cv_results_, f) +``` +***Points to consider*** + +1. One imputed set of data was used to tune hyperparameters which reduced computational time while effectively tuning the parameters. + +2. Due to the severe class imbalance in the dataset, the AUC ROC tends to be high while recall is low. It is well-known that precision-recall plots are more informative than AUC ROC plots when training a binary classification model on severely imbalanced data; therefore, the average precision metric from sklearn (https://scikit-learn.org/stable/modules/generated/sklearn.metrics.average_precision_score.html#sklearn.metrics.average_precision_score) was used to tune the MLP model. + +![average_precision](./images/avg_prec.png) + +### 6.3.4.6 Final MLP Model +***Steps for running the 3_mlp_final_model.ipynb script*** + +This script trains and evaluates the final MLP model based on the best parameters from the hyperparameter tuning/cross-validation step. + +- Input: +``` +complete1.pickle +complete2.pickle +complete3.pickle +complete4.pickle +complete5.pickle +numeric_columns.pickle +``` + +- Output: x=[1-5] +``` +2021_MLP_final_results_imp_x.pickle +2021_MLP_final_model_imp_x.h5 +2021_MLP_final_eval_imp_x.pickle + +2021_MLP_final_fpr.pickle +2021_MLP_final_tpr.pickle +2021_MLP_final_auc.pickle + +2021_MLP_final_ytest_all.pickle +2021_MLP_final_ypred_all.pickle + +2021_MLP_final_prec.pickle +2021_MLP_final_recall.pickle +2021_MLP_final_avgprec_thresh.pickle +2021_MLP_final_avgprec_score.pickle +``` +Step 1. Install and import libraries +``` +!pip install --upgrade scikit-learn +!pip install pandas +!pip install pyyaml h5py +!pip install seaborn + +# TensorFlow and tf.keras +import tensorflow as tf +from tensorflow.keras.layers import Dense, Dropout +from tensorflow.keras.optimizers import Adam + +import sklearn +from sklearn.metrics import auc, average_precision_score, roc_curve, precision_recall_curve, roc_auc_score, confusion_matrix +from sklearn.preprocessing import StandardScaler + +# other libraries +import numpy as np +import pandas as pd +import sys +import pickle + +#plotting +import matplotlib.pyplot as plt +import seaborn as sns +%matplotlib inline +``` +Step 2. Import list of numeric columns + +Get list of columns to be scaled +``` +with open('numeric_columns.pickle', 'rb') as f: + nu_cols = pickle.load(f) +``` +Step 3. Import data + +Import the data from a single imputation. +``` +imp=5 +with open('complete' + str(imp) + '.pickle', 'rb') as f: + dataset = pickle.load(f) +``` +Separate the training set (subsets 0-6). +``` +X_train = dataset[dataset.subset <= 4].copy().sort_values(by = 'usrds_id') +``` +Separate the labels. +``` +y_train = np.array(X_train.pop('died_in_90')) +``` +Separate the validation set (subsets 5-6). This validation set gets used as the 'test' set of data while the model is being trained to avoid ever 'looking' at the test set until we evaluate the model. +``` +X_val = dataset[(dataset.subset == 6) | (dataset.subset == 5)].copy().sort_values(by = 'usrds_id') +``` +Separate labels. +``` +y_val = np.array(X_val.pop('died_in_90')) +``` +Separate the test set (subsets 7 8 9) for evaluating the model to see how well it performs on new data. Sorting by usrds_id is important so that we can calculate the fairness (or you could just run the predictions again and save the order). +``` +X_test = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id') +``` +Separate labels. +``` +y_test = np.array(X_test.pop('died_in_90')) +``` +Scale only the numeric columns with an sklearn library **StandardScaler** by fitting the scaler model on the training set, and use this model and transform on the validation and test sets. Then drop the non-feature columns and save as an array. +``` +scaler = StandardScaler() +X_train[nu_cols] = scaler.fit_transform(X_train[nu_cols]) +X_train = np.array(X_train.drop(columns=['subset','usrds_id','impnum'])) + +X_val[nu_cols] = scaler.transform(X_val[nu_cols]) +X_val = np.array(X_val.drop(columns=['subset','usrds_id','impnum'])) + +X_test[nu_cols] = scaler.transform(X_test[nu_cols]) +X_test = np.array(X_test.drop(columns=['subset','usrds_id','impnum'])) +``` + + +Step 3. Build final model + +Build the final model based on the best hyperparameters from the previous cross-validation step. +First set the metric(s) to report. +``` +METRICS = [ + tf.keras.metrics.TruePositives(name='tp'), + tf.keras.metrics.FalsePositives(name='fp'), + tf.keras.metrics.TrueNegatives(name='tn'), + tf.keras.metrics.FalseNegatives(name='fn'), + tf.keras.metrics.BinaryAccuracy(name='accuracy'), + tf.keras.metrics.Precision(name='precision'), + tf.keras.metrics.Recall(name='recall'), + tf.keras.metrics.AUC(name='auc'), + tf.keras.metrics.AUC(name='auc_pr', + num_thresholds=200, + curve="PR", + summation_method="interpolation", + dtype=None, + thresholds=None, + multi_label=False, + label_weights=None) +] +``` +Define a function to create the model layers and complie the model. Insert the best hyperparameters from the cross validation tuning. For details on each line, see the above explanation of the **build_mlp.py** script. +``` +def final_build_mlp( + layers=2, + neurons=16, + output_bias=None, + optimizer='Adam', + activation='relu', + learn_rate=.0002, + dropout_rate=0.2, + kernel_regularizer='l2', + metrics=METRICS +): + + model = tf.keras.Sequential() + + #add 2 dense layers + for i in range(layers): + model.add(Dense( + neurons, + activation=activation, + input_shape=(294,), + kernel_regularizer=kernel_regularizer) + ) + model.add(Dropout(dropout_rate)) + model.add(Dense( + 1, + activation='sigmoid', + bias_initializer=output_bias)) + opt = Adam(lr=learn_rate) + model.compile( + optimizer=opt, + loss=tf.keras.losses.BinaryCrossentropy(), + metrics=metrics) + + return model +``` +Step 4. Instantiate the final model +``` +final_model = final_build_mlp() +``` +Step 5. Train (fit) the final model + +Set the optimal parameters for fitting the model based on results from the cross-validation. +``` +class_weight_10 = {0: 1, 1: 10} +epochs_final = 10 +batches = 256 +``` +Fit the model to the training and validation data. +``` +final_history = final_model.fit( + X_train, + y_train, + batch_size=batches, + epochs=epochs_final, + validation_data=(X_val, y_val), + class_weight=class_weight_10) +``` +Step 6. Get predictions on the training set from the model +``` +train_predictions_final = final_model.predict( + X_train, + batch_size=batches + ) +``` +Step 7. Evaluate the final model + +Evaluate the final model that has been trained on the new data (test set). +``` +test_predictions_final = final_model.predict( + X_test, + batch_size=batches + ) +final_eval = final_model.evaluate( + X_test, + y_test, + batch_size=batches, + verbose=1 + ) +``` +Print results of test set. +``` + res = {} + for name, value in zip(final_model.metrics_names, final_eval): + print(name, ': ', value) + res = {name : value} +``` +***Points to consider*** + +Standardization and scaling of numeric features allows for comparison of multiple features in different units. The model will learn the importance of features better and faster when it isn't overwhelmed by a feature with a much larger range than the others. Scaling and standardization should be done separately for training and test sets so that we are not looking at the test set. + +Neural network models are computationally expensive and there are many parameters to tune and decisions to make. It is beneficial to consult with other experts and test the code before running the full set of data. Multiple CPUs or GPUs can speed up computation time for the cross validation hyperparameter tuning step. + +### 6.3.4.7 Pool Results + +***Steps for running 4_pool_results_from_imputations.ipynb*** + +- Input: +``` +medexpreesrd +2021_MLP_final_ytest_all.pickle +2021_MLP_final_ypred_all.pickle +``` + +- Output: +``` +2021_final_MLP_model_test_pred_proba_pooled.pickle +``` +Step 1. Import libraries +``` +import pickle +import numpy as np +import pandas as pd + +import psycopg2 +import sqlalchemy +from sqlalchemy import create_engine +``` +Step 2. Import results from the MLP model +``` +with open('./results/2021_MLP_final_ytest_all.pickle', 'rb') as f: + y_true_mlp = pickle.load(f) + +with open('./results/2021_MLP_final_ypred_all.pickle', 'rb') as picklefile: + y_pred_proba_mlp = pickle.load(picklefile) +``` +Step 3. Reformat into a pandas dataframe. This makes the data easier to work with. + +The index for the values is zero here b/c we only saved it for the positive class, otherwise it would be 1 +``` +pooled = pd.DataFrame() +pooled['imp1']=y_pred_proba_mlp[0][:,0] +pooled['imp2']=y_pred_proba_mlp[1][:,0] +pooled['imp3']=y_pred_proba_mlp[2][:,0] +pooled['imp4']=y_pred_proba_mlp[3][:,0] +pooled['imp5']=y_pred_proba_mlp[4][:,0] +``` +Step 4. Calculate the mean and standard deviation of the predicted probability for the positive class (died_in_90) for each patient/row. +``` +pooled['score'] = pooled.mean(axis=1) +pooled['std_'] = pooled.std(axis=1) +``` +Step 5. Import the details from the original data + +Enter your credentials for your postgres database. +``` +con = create_engine('postgresql://username:password@location/dbname') + +dataset = pd.read_sql_query('''SELECT usrds_id, died_in_90, subset FROM medxpreesrd;''', con) +``` +Step 6. Sort the values so they are in the same order as when the MLP model was calculated and keep only the test set. +``` +dataset = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id').reset_index(drop=True) +``` +Step 7. Merge the details with the pooled predictions. +``` +pooled = pooled.merge(dataset, left_index=True, right_index=True) +``` +Step 8. Save +``` +with open('./results/2021_final_MLP_model_test_pred_proba_pooled.pickle', 'wb') as picklefile: + pickle.dump(pooled, picklefile) +``` + +### 6.3.4.8 Plot Results + +***Steps for running the 5_plot_mlp_roc_auc.ipynb script*** + +- Input: +``` +2021_final_MLP_model_test_pred_proba_pooled.pickle +``` +- Output: +``` +mlp_roc_auc_bw.png +2021_mlp_confusion_matrix.csv +``` + +Step 1. Import libraries +``` +import pandas as pd +import numpy as np +import pickle + +import sys +#path to the functions directory +sys.path.append('../onc_functions/') + +#import custom plotting functions +from plot_functions import onc_calc_cm, onc_plot_roc, onc_plot_precision_recall +``` +Step 2. Load results from the pooled model results +``` +with open('./results/2021_final_MLP_model_test_pred_proba_pooled.pickle', 'rb') as f: + results = pickle.load(f) + +results = results.loc[:,['score','died_in_90','subset','usrds_id']] +results = results.rename(columns={'died_in_90':'y'}) +``` +Step 3. Plot the ROC AUC. This function **onc_plot_roc** is located and imported from /onc_functions/plot_functions.py +``` +def onc_plot_roc(y_true, y_pred, model_name, **kwargs): + ''' + Plot the ROC AUC and return the test ROC AUC results. + INPUT: y_true, y_pred, model_name, **kwargs + ''' + + #calc values for plot + false_positives, true_positives, threshold = roc_curve(y_true, y_pred) + c_roc_auc_score = auc(false_positives, true_positives) + + #set figure params + fig1 = plt.figure(1, figsize=(12,30),dpi=400) + ax1 = plt.subplot2grid((7, 1), (0, 0), rowspan=2) + + #plot reference line for chance + ax1.plot([0, 1], [0, 1], linestyle='--', lw=2, color='gray', + label='Chance', alpha=.8) + + # plot AUC ROC + ax1.plot(false_positives, true_positives, + label=r'ROC (AUC = %0.3f)' % (c_roc_auc_score), + lw=2, alpha=.8, color = 'k') + + # additional figure params + ax1.set(xlim=[-0.05, 1.05], ylim=[-0.05, 1.05],) + ax1.legend(loc="lower right") + plt.xlabel('1-Specificity') + plt.ylabel('Sensitivity') + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + # save plot + plt.savefig(model_name + "_roc_auc_bw.png", dpi=400, transparent=True) + plt.show() +``` +``` +onc_plot_roc( + y_true=results.y, + y_pred=results.score, + model_name='mlp'); +``` +![mlp_roc_auc_bw_nothreshold_hires_crop.png](./images/mlp_roc_auc_bw_nothreshold_hires_crop.png) + +Step 4. Print and save the performance metrics at multiple thresholds +``` +def onc_calc_cm(y_true, y_predictions, range_probas=[0.1,0.5]): + ''' + Plot the confusion matrix and scores for multiple thresholds + ''' + df = pd.DataFrame(index = range_probas, + columns=['threshold','sensitivity','specificity', + 'likelihood_ratio_neg','likelihood_ratio_pos', + 'tp','fp','tn','fn','total_survived','total_deceased',]) + for proba_threshold in range_probas: + + cm = confusion_matrix(y_true, y_predictions > proba_threshold) + tn = cm[0][0] + fp = cm[0][1] + + sensitivity = recall_score(y_true, y_predictions > proba_threshold) + specificity = tn / (tn + fp) + + df.loc[proba_threshold, "threshold"] = proba_threshold + df.loc[proba_threshold,"sensitivity"] = sensitivity + df.loc[proba_threshold, "specificity"] = specificity + df.loc[proba_threshold, "likelihood_ratio_neg"] = (1-sensitivity)/specificity + df.loc[proba_threshold, "likelihood_ratio_pos"] = sensitivity/(1-specificity) + df.loc[proba_threshold, "tp"] = cm[1][1] + df.loc[proba_threshold, "fp"] = fp + df.loc[proba_threshold, "tn"] = tn + df.loc[proba_threshold, "fn"] = cm[1][0] + df.loc[proba_threshold, "total_survived"] = np.sum(cm[0]) + df.loc[proba_threshold, "total_deceased"] = np.sum(cm[1]) + return df +``` +``` +cm = onc_calc_cm( + results.y, + results.score, + range_probas=[.10,.20, .30, .40, .50]) +cm.to_csv('./results/2021_mlp_confusion_matrix.csv') +cm +``` +![mlp_cm_orig.png](./images/mlp_cm_orig.png) + +### 6.3.4.9 Fairness assessment +ML models can perform differently for different categories of patients, so the MLP model was assessed for fairness, or how well the model performs for each category of interest (demographics—sex, race, and age—as well as initial dialysis modality). Age is binned into the following categories based on UCSF clinician input and an example in literature: 18-25, 26-35, 36-45, 46-55, 56-65, 66-75, 76-85, 86+. The USRDS predefined categories for race, sex, and dialysis modality were used for the fairness assessment. + +***Steps to running the 6_mlp_fairness_assessment.ipynb script*** + +This script calculates the ROC AUC for specific groups of patients to assess the fairness of the final model. + +- Input: +``` +medexpreesrd +2021_final_MLP_model_test_pred_proba_pooled.pickle +``` +- Output: +``` +complete_fair1.pickle +2021_mlp_fairness.csv +``` +Step 1. Import libraries +``` +import numpy as np +import pandas as pd +import pickle +import sys +#path to the functions directory +sys.path.append('../onc_functions/') + +import psycopg2 +from sqlalchemy import create_engine + +from fairness import get_fairness_assessment +``` + +Step 2. Get the columns of data required to compute fairness assessment and save them +``` +con = create_engine('postgresql://username:password@location/dbname') +df = pd.read_sql_query('''SELECT usrds_id, died_in_90, inc_age, sex, dialtyp, race, hispanic, subset FROM medxpreesrd;''', con) +``` +Step 3. Save +``` +with open('complete_fair1.pickle', 'wb') as picklefile: + pickle.dump(df, picklefile) +``` +Step 4. Import the pooled results from the LR model +``` +with open('./results/2021_final_MLP_model_test_pred_proba_pooled.pickle', 'rb') as f: + proba = pickle.load(f) +``` +Step 5. Merge the fairness details with the results +``` +data = df.merge(proba, on=['usrds_id','subset','died_in_90']) +``` +Step 6. Calculate fairness. The function **get_fairness_assessment** is imported from the /onc_functions/fairness.py file. This function calculates AUC and the confusion matrix from the model prediction scores for specific groups. +``` +def get_fairness_assessment(data, + y_proba_col_name, + y_true_col_name): + + #turn the continuous age variable into age categories + df['agegroup'] = pd.cut(df.inc_age, + bins=[17, 25, 35, 45, 55, 65, 75, 85, 90], + labels=[1, 2, 3, 4, 5, 6, 7, 8]) + + df = df.drop(columns=['inc_age']) + + #replace NaNs with a large number that does not appear in the data, effectively creating another category for missing values + df.loc[:,['race','dialtyp','hispanic']] = df.loc[:,['race','dialtyp','hispanic']].fillna(100.0, axis=1).copy() + + #Identify the cols for the fairness assessment + fairness_cols = ['agegroup', 'sex','dialtyp', 'race','hispanic'] + + #loop through all categories and values to get counts, auc, and confusion matrix + rows_list = [] + for col in fairness_cols: + for name, c in df.groupby(col): + fairness_dict = {} + fairness_dict['Feature'] = col + fairness_dict['Value'] = name + fairness_dict['Count'] = c.shape[0] + + fairness_dict['AUC'] = roc_auc_score(c[y_true_col_name], c[y_proba_col_name]) + tn, fp, fn, tp = confusion_matrix(y_true = c[y_true_col_name], + y_pred = np.where(c[y_proba_col_name] >= 0.5, 1, 0)).ravel() + fairness_dict['TN'] = tn + fairness_dict['FP'] = fp + fairness_dict['FN'] = fn + fairness_dict['TP'] = tp + rows_list.append(fairness_dict) + + #convert results from a list to a dataframe + df_fairness = pd.DataFrame(rows_list) + return df_fairness +``` +Step 7. Calculate the assessment and save the results. +``` +fairness = get_fairness_assessment(data, + y_proba_col_name='score', + y_true_col_name='died_in_90' +) +fairness.to_csv('./results/2021_mlp_fairness.csv') +``` +![mlp_fair.png](./images/mlp_fair.png) + +***Points to consider*** + +Performing the fairness assessment on the categories of interest gives additional insight into how the model performs by different patient categories of interest (by demographics, etc.). Future researchers should perform fairness assessments to better evaluate model performance, especially for models that may be deployed in a clinical setting. Other methods of assessing fairness include evaluating true positives, sensitivity, positive predictive value, etc. at various threshold across the different groups of interest, which would allow selection of a threshold that balances model performance across the groups of interest. + +### 6.3.4.10 Risk assessment + +***Steps for running the 7_mlp_risk.ipynb script*** + +- Input: +``` +complete_fair1.pickle +2021_final_MLP_model_test_pred_proba_pooled.pickle +``` +- Output: +``` +2021_mlp_risk_cat.csv +``` +Step 1. Import libraries +``` +import numpy as np +import pandas as pd +import pickle + +import sys +#path to the functions directory +sys.path.append('../onc_functions/') + +from risk import get_risk_categories + +print('python-' + sys.version) +import datetime +dte = datetime.datetime.now() +dte = dte.strftime("%Y%m%d") +``` + +Step 2. Import the details from the fairness assessment +``` +with open('complete_fair1.pickle','rb') as f: + details = pickle.load(f) +``` + +Step 3. Import the pooled results from the model +``` +with open('./results/2021_final_MLP_model_test_pred_proba_pooled.pickle', 'rb') as f: + y_pred = pickle.load(f) +``` +Step 4. Merge the details with the results +``` +data = df.merge(y_pred, on=['usrds_id','died_in_90','subset']) +``` + +Step 5. Calculate risk. The function **get_risk_categories** is imported from the /onc_functions/risk.py file. + +``` +def get_risk_categories(dataset, y_proba_col_name, y_true_col_name): + + test_x_pd = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id') + del dataset + + df = test_x_pd.loc[:,[y_true_col_name,y_proba_col_name]] + + #construct the risk categories from the predicted score + df['risk_categories'] = pd.cut(df[y_proba_col_name], + bins=[-0.1, 0.09, 0.19, 0.29, 0.39, 0.49, 0.59, 0.69, 0.79, 0.89, 0.99], + labels=['0-0.09', '0.1-0.19', '0.2-0.29', '0.3-0.39', '0.4-0.49', + '0.5-0.59','0.6-0.69','0.7-0.79','0.8-0.89','0.9-0.99']) + + #loop through all the categories to get the predicted score + risk_list = [] + for name, c in df.groupby('risk_categories'): + risk_dict = {} + risk_dict['Risk Category'] = name + risk_dict['Count'] = c[y_true_col_name].shape[0] + risk_dict['Count Died in 90'] = c[y_true_col_name].sum() + risk_dict['Count Survived'] = c[y_true_col_name].shape[0]-c[y_true_col_name].sum() + risk_dict['Percent Died in 90'] = c[y_true_col_name].sum()/c[y_true_col_name].shape[0] + + risk_list.append(risk_dict) + + df_risk = pd.DataFrame(risk_list) + return df_risk +``` +Run the function above +``` +risk_cat = get_risk_categories(data, + y_proba_col_name='score', + y_true_col_name='died_in_90') +``` +Step 6. Save +``` +risk_cat.to_csv('./results/' + str(dte) + '_mlp_risk_cat.csv') +``` +![mlp_risk.png](./images/mlp_risk.png) diff --git a/README.pdf b/README.pdf new file mode 100644 index 0000000..de87ea7 Binary files /dev/null and b/README.pdf differ diff --git a/create_data_set/2017_I9gem_map.txt b/create_data_set/2017_I9gem_map.txt new file mode 100644 index 0000000..8ad9a1e --- /dev/null +++ b/create_data_set/2017_I9gem_map.txt @@ -0,0 +1,24691 @@ +icd9 icd10 group +0010 A000 00000 +0011 A001 00000 +0019 A009 00000 +0020 A0100 10000 +0021 A011 00000 +0022 A012 00000 +0023 A013 00000 +0029 A014 00000 +0030 A020 00000 +0031 A021 10000 +00320 A0220 00000 +00321 A0221 00000 +00322 A0222 00000 +00323 A0223 00000 +00324 A0224 00000 +00329 A0229 10000 +0038 A028 00000 +0039 A029 00000 +0040 A030 00000 +0041 A031 00000 +0042 A032 00000 +0043 A033 00000 +0048 A038 00000 +0049 A039 00000 +0050 A050 00000 +0051 A051 00000 +0052 A052 00000 +0053 A058 10000 +0054 A053 00000 +00581 A055 00000 +00589 A054 10000 +00589 A058 10000 +0059 A059 00000 +0060 A060 00000 +0061 A061 00000 +0062 A062 00000 +0063 A064 00000 +0064 A065 00000 +0065 A066 00000 +0066 A067 00000 +0068 A0689 10000 +0069 A069 00000 +0070 A070 00000 +0071 A071 00000 +0072 A073 00000 +0073 A078 10000 +0074 A072 00000 +0075 A074 00000 +0078 A078 10000 +0079 A079 00000 +00800 A044 10000 +00801 A040 00000 +00802 A041 00000 +00803 A042 00000 +00804 A043 00000 +00809 A044 10000 +0081 A048 10000 +0082 A048 10000 +0083 A048 10000 +00841 A048 10000 +00842 A048 10000 +00843 A045 00000 +00844 A046 00000 +00845 A047 00000 +00846 A048 10000 +00847 A048 10000 +00849 A048 10000 +0085 A049 00000 +00861 A080 00000 +00862 A082 00000 +00863 A0811 10000 +00864 A0819 10000 +00865 A0831 00000 +00866 A0832 00000 +00867 A0839 10000 +00869 A0839 10000 +0088 A088 10000 +0090 A09 10000 +0091 A09 10000 +0092 A09 10000 +0093 A09 10000 +01000 A157 10000 +01001 A157 10000 +01002 A157 10000 +01003 A157 10000 +01004 A157 10000 +01005 A157 10000 +01006 A157 10000 +01010 A156 10000 +01011 A156 10000 +01012 A156 10000 +01013 A156 10000 +01014 A156 10000 +01015 A156 10000 +01016 A156 10000 +01080 A157 10000 +01081 A157 10000 +01082 A157 10000 +01083 A157 10000 +01084 A157 10000 +01085 A157 10000 +01086 A157 10000 +01090 A157 10000 +01091 A157 10000 +01092 A157 10000 +01093 A157 10000 +01094 A157 10000 +01095 A157 10000 +01096 A157 10000 +01100 A150 10000 +01101 A150 10000 +01102 A150 10000 +01103 A150 10000 +01104 A150 10000 +01105 A150 10000 +01106 A150 10000 +01110 A150 10000 +01111 A150 10000 +01112 A150 10000 +01113 A150 10000 +01114 A150 10000 +01115 A150 10000 +01116 A150 10000 +01120 A150 10000 +01121 A150 10000 +01122 A150 10000 +01123 A150 10000 +01124 A150 10000 +01125 A150 10000 +01126 A150 10000 +01130 A155 10000 +01131 A155 10000 +01132 A155 10000 +01133 A155 10000 +01134 A155 10000 +01135 A155 10000 +01136 A155 10000 +01140 A150 10000 +01141 A150 10000 +01142 A150 10000 +01143 A150 10000 +01144 A150 10000 +01145 A150 10000 +01146 A150 10000 +01150 A150 10000 +01151 A150 10000 +01152 A150 10000 +01153 A150 10000 +01154 A150 10000 +01155 A150 10000 +01156 A150 10000 +01160 A150 10000 +01161 A150 10000 +01162 A150 10000 +01163 A150 10000 +01164 A150 10000 +01165 A150 10000 +01166 A150 10000 +01170 A150 10000 +01171 A150 10000 +01172 A150 10000 +01173 A150 10000 +01174 A150 10000 +01175 A150 10000 +01176 A150 10000 +01180 A150 10000 +01181 A150 10000 +01182 A150 10000 +01183 A150 10000 +01184 A150 10000 +01185 A150 10000 +01186 A150 10000 +01190 A150 10000 +01191 A150 10000 +01192 A150 10000 +01193 A150 10000 +01194 A150 10000 +01195 A150 10000 +01196 A150 10000 +01200 A156 10000 +01201 A156 10000 +01202 A156 10000 +01203 A156 10000 +01204 A156 10000 +01205 A156 10000 +01206 A156 10000 +01210 A154 10000 +01211 A154 10000 +01212 A154 10000 +01213 A154 10000 +01214 A154 10000 +01215 A154 10000 +01216 A154 10000 +01220 A155 10000 +01221 A155 10000 +01222 A155 10000 +01223 A155 10000 +01224 A155 10000 +01225 A155 10000 +01226 A155 10000 +01230 A155 10000 +01231 A155 10000 +01232 A155 10000 +01233 A155 10000 +01234 A155 10000 +01235 A155 10000 +01236 A155 10000 +01280 A158 10000 +01281 A158 10000 +01282 A158 10000 +01283 A158 10000 +01284 A158 10000 +01285 A158 10000 +01286 A158 10000 +01300 A170 10000 +01301 A170 10000 +01302 A170 10000 +01303 A170 10000 +01304 A170 10000 +01305 A170 10000 +01306 A170 10000 +01310 A171 10000 +01311 A171 10000 +01312 A171 10000 +01313 A171 10000 +01314 A171 10000 +01315 A171 10000 +01316 A171 10000 +01320 A1781 10000 +01321 A1781 10000 +01322 A1781 10000 +01323 A1781 10000 +01324 A1781 10000 +01325 A1781 10000 +01326 A1781 10000 +01330 A1781 10000 +01331 A1781 10000 +01332 A1781 10000 +01333 A1781 10000 +01334 A1781 10000 +01335 A1781 10000 +01336 A1781 10000 +01340 A1781 10000 +01341 A1781 10000 +01342 A1781 10000 +01343 A1781 10000 +01344 A1781 10000 +01345 A1781 10000 +01346 A1781 10000 +01350 A1781 10000 +01351 A1781 10000 +01352 A1781 10000 +01353 A1781 10000 +01354 A1781 10000 +01355 A1781 10000 +01356 A1781 10000 +01360 A1782 10000 +01361 A1782 10000 +01362 A1782 10000 +01363 A1782 10000 +01364 A1782 10000 +01365 A1782 10000 +01366 A1782 10000 +01380 A1789 10000 +01381 A1789 10000 +01382 A1789 10000 +01383 A1789 10000 +01384 A1789 10000 +01385 A1789 10000 +01386 A1789 10000 +01390 A179 10000 +01391 A179 10000 +01392 A179 10000 +01393 A179 10000 +01394 A179 10000 +01395 A179 10000 +01396 A179 10000 +01400 A1831 10000 +01401 A1831 10000 +01402 A1831 10000 +01403 A1831 10000 +01404 A1831 10000 +01405 A1831 10000 +01406 A1831 10000 +01480 A1832 10000 +01480 A1839 10000 +01481 A1832 10000 +01481 A1839 10000 +01482 A1832 10000 +01482 A1839 10000 +01483 A1832 10000 +01483 A1839 10000 +01484 A1832 10000 +01484 A1839 10000 +01485 A1832 10000 +01485 A1839 10000 +01486 A1832 10000 +01486 A1839 10000 +01500 A1801 10000 +01501 A1801 10000 +01502 A1801 10000 +01503 A1801 10000 +01504 A1801 10000 +01505 A1801 10000 +01506 A1801 10000 +01510 A1802 10000 +01511 A1802 10000 +01512 A1802 10000 +01513 A1802 10000 +01514 A1802 10000 +01515 A1802 10000 +01516 A1802 10000 +01520 A1802 10000 +01521 A1802 10000 +01522 A1802 10000 +01523 A1802 10000 +01524 A1802 10000 +01525 A1802 10000 +01526 A1802 10000 +01550 A1803 10000 +01551 A1803 10000 +01552 A1803 10000 +01553 A1803 10000 +01554 A1803 10000 +01555 A1803 10000 +01556 A1803 10000 +01560 A1803 10000 +01561 A1803 10000 +01562 A1803 10000 +01563 A1803 10000 +01564 A1803 10000 +01565 A1803 10000 +01566 A1803 10000 +01570 A1803 10000 +01571 A1803 10000 +01572 A1803 10000 +01573 A1803 10000 +01574 A1803 10000 +01575 A1803 10000 +01576 A1803 10000 +01580 A1802 10000 +01581 A1802 10000 +01582 A1802 10000 +01583 A1802 10000 +01584 A1802 10000 +01585 A1802 10000 +01586 A1802 10000 +01590 A1802 10000 +01590 A1803 10000 +01591 A1802 10000 +01591 A1803 10000 +01592 A1802 10000 +01592 A1803 10000 +01593 A1802 10000 +01593 A1803 10000 +01594 A1802 10000 +01594 A1803 10000 +01595 A1802 10000 +01595 A1803 10000 +01596 A1802 10000 +01596 A1803 10000 +01600 A1811 10000 +01601 A1811 10000 +01602 A1811 10000 +01603 A1811 10000 +01604 A1811 10000 +01605 A1811 10000 +01606 A1811 10000 +01610 A1812 10000 +01611 A1812 10000 +01612 A1812 10000 +01613 A1812 10000 +01614 A1812 10000 +01615 A1812 10000 +01616 A1812 10000 +01620 A1811 10000 +01621 A1811 10000 +01622 A1811 10000 +01623 A1811 10000 +01624 A1811 10000 +01625 A1811 10000 +01626 A1811 10000 +01630 A1813 10000 +01631 A1813 10000 +01632 A1813 10000 +01633 A1813 10000 +01634 A1813 10000 +01635 A1813 10000 +01636 A1813 10000 +01640 A1815 10000 +01641 A1815 10000 +01642 A1815 10000 +01643 A1815 10000 +01644 A1815 10000 +01645 A1815 10000 +01646 A1815 10000 +01650 A1814 10000 +01650 A1815 10000 +01651 A1814 10000 +01651 A1815 10000 +01652 A1814 10000 +01652 A1815 10000 +01653 A1814 10000 +01653 A1815 10000 +01654 A1814 10000 +01654 A1815 10000 +01655 A1814 10000 +01655 A1815 10000 +01656 A1814 10000 +01656 A1815 10000 +01660 A1817 10000 +01661 A1817 10000 +01662 A1817 10000 +01663 A1817 10000 +01664 A1817 10000 +01665 A1817 10000 +01666 A1817 10000 +01670 A1816 10000 +01670 A1817 10000 +01670 A1818 10000 +01671 A1816 10000 +01671 A1817 10000 +01671 A1818 10000 +01672 A1816 10000 +01672 A1817 10000 +01672 A1818 10000 +01673 A1816 10000 +01673 A1817 10000 +01673 A1818 10000 +01674 A1816 10000 +01674 A1817 10000 +01674 A1818 10000 +01675 A1816 10000 +01675 A1817 10000 +01675 A1818 10000 +01676 A1816 10000 +01676 A1817 10000 +01676 A1818 10000 +01690 A1810 10000 +01691 A1810 10000 +01692 A1810 10000 +01693 A1810 10000 +01694 A1810 10000 +01695 A1810 10000 +01696 A1810 10000 +01700 A184 10000 +01701 A184 10000 +01702 A184 10000 +01703 A184 10000 +01704 A184 10000 +01705 A184 10000 +01706 A184 10000 +01710 A184 10000 +01711 A184 10000 +01712 A184 10000 +01713 A184 10000 +01714 A184 10000 +01715 A184 10000 +01716 A184 10000 +01720 A182 10000 +01721 A182 10000 +01722 A182 10000 +01723 A182 10000 +01724 A182 10000 +01725 A182 10000 +01726 A182 10000 +01730 A1850 10000 +01730 A1851 10000 +01730 A1852 10000 +01730 A1853 10000 +01730 A1854 10000 +01730 A1859 10000 +01731 A1850 10000 +01731 A1851 10000 +01731 A1852 10000 +01731 A1854 10000 +01731 A1859 10000 +01732 A1850 10000 +01732 A1851 10000 +01732 A1852 10000 +01732 A1854 10000 +01732 A1859 10000 +01733 A1850 10000 +01733 A1851 10000 +01733 A1852 10000 +01733 A1854 10000 +01733 A1859 10000 +01734 A1850 10000 +01734 A1851 10000 +01734 A1852 10000 +01734 A1854 10000 +01734 A1859 10000 +01735 A1850 10000 +01735 A1851 10000 +01735 A1852 10000 +01735 A1854 10000 +01735 A1859 10000 +01736 A1850 10000 +01736 A1851 10000 +01736 A1852 10000 +01736 A1854 10000 +01736 A1859 10000 +01740 A186 10000 +01741 A186 10000 +01742 A186 10000 +01743 A186 10000 +01744 A186 10000 +01745 A186 10000 +01746 A186 10000 +01750 A1881 10000 +01751 A1881 10000 +01752 A1881 10000 +01753 A1881 10000 +01754 A1881 10000 +01755 A1881 10000 +01756 A1881 10000 +01760 A187 10000 +01761 A187 10000 +01762 A187 10000 +01763 A187 10000 +01764 A187 10000 +01765 A187 10000 +01766 A187 10000 +01770 A1885 10000 +01771 A1885 10000 +01772 A1885 10000 +01773 A1885 10000 +01774 A1885 10000 +01775 A1885 10000 +01776 A1885 10000 +01780 A1889 10000 +01781 A1889 10000 +01782 A1889 10000 +01783 A1889 10000 +01784 A1889 10000 +01785 A1889 10000 +01786 A1889 10000 +01790 A1884 10000 +01791 A1884 10000 +01791 A1889 10000 +01792 A1884 10000 +01792 A1889 10000 +01793 A1884 10000 +01793 A1889 10000 +01794 A1884 10000 +01794 A1889 10000 +01795 A1884 10000 +01795 A1889 10000 +01796 A1884 10000 +01796 A1889 10000 +01800 A192 10000 +01801 A192 10000 +01802 A192 10000 +01803 A192 10000 +01804 A192 10000 +01805 A192 10000 +01806 A192 10000 +01880 A198 10000 +01881 A198 10000 +01882 A198 10000 +01883 A198 10000 +01884 A198 10000 +01885 A198 10000 +01886 A198 10000 +01890 A199 10000 +01891 A199 10000 +01892 A199 10000 +01893 A199 10000 +01894 A199 10000 +01895 A199 10000 +01896 A199 10000 +0200 A200 00000 +0201 A201 00000 +0202 A207 00000 +0203 A202 10000 +0204 A202 10000 +0205 A202 10000 +0208 A208 10000 +0209 A209 00000 +0210 A210 00000 +0211 A213 10000 +0212 A212 00000 +0213 A211 00000 +0218 A217 10000 +0218 A218 10000 +0219 A219 00000 +0220 A220 00000 +0221 A221 10000 +0222 A222 00000 +0223 A227 10000 +0228 A228 00000 +0229 A229 00000 +0230 A230 00000 +0231 A231 00000 +0232 A232 00000 +0233 A233 00000 +0238 A238 00000 +0239 A239 00000 +024 A240 00000 +025 A243 10000 +025 A249 10000 +0260 A250 00000 +0261 A251 00000 +0269 A259 00000 +0270 A3211 10000 +0270 A3212 10000 +0270 A327 10000 +0270 A3281 10000 +0270 A3289 10000 +0270 A329 10000 +0271 A267 10000 +0271 A268 10000 +0271 A269 10000 +0272 A280 00000 +0278 A288 10000 +0279 A289 00000 +0300 A305 00000 +0301 A301 00000 +0302 A300 00000 +0303 A303 10000 +0308 A308 00000 +0309 A309 00000 +0310 A310 00000 +0311 A311 00000 +0312 A312 00000 +0318 A318 00000 +0319 A319 00000 +0320 A360 00000 +0321 A361 00000 +0322 A3689 10000 +0323 A362 00000 +03281 A3686 00000 +03282 A3681 00000 +03283 A3689 10000 +03284 A3685 00000 +03285 A363 00000 +03289 A3682 10000 +03289 A3683 10000 +03289 A3684 10000 +03289 A3689 10000 +0329 A369 00000 +0330 A3700 10000 +0331 A3710 10000 +0338 A3780 10000 +0339 A3790 10000 +0340 J020 10000 +0340 J0300 10000 +0341 A389 10000 +035 A46 00000 +0360 A390 00000 +0361 A3981 00000 +0362 A394 10000 +0363 A391 00000 +03640 A3950 00000 +03641 A3953 00000 +03642 A3951 00000 +03643 A3952 00000 +03681 A3982 10000 +03682 A3983 10000 +03689 A3989 00000 +0369 A399 00000 +037 A35 00000 +0380 A409 10000 +03810 A412 10000 +03811 A4101 10000 +03812 A4102 10000 +03819 A411 10000 +0382 A403 10000 +0383 A414 10000 +03840 A4150 10000 +03841 A413 10000 +03842 A4151 10000 +03843 A4152 10000 +03844 A4153 10000 +03849 A4159 10000 +0388 A4189 10000 +0389 A419 10000 +0390 L081 10000 +0391 A420 10000 +0392 A421 00000 +0393 A422 00000 +0394 B479 10000 +0398 A4281 10000 +0398 A4282 10000 +0398 A4289 10000 +0398 A438 10000 +0399 A429 10000 +0399 A439 10000 +0399 B471 10000 +0400 A480 00000 +0401 A488 10000 +0402 K9081 00000 +0403 A488 10000 +04041 A4851 00000 +04042 A4852 00000 +04081 M60009 10000 +04082 A483 00000 +04089 A488 10000 +04100 B955 10000 +04101 B950 00000 +04102 B951 00000 +04103 B954 10000 +04104 B952 00000 +04105 B954 10000 +04109 B954 10000 +04110 B958 10000 +04111 B9561 10000 +04112 B9562 10000 +04119 B957 10000 +0412 B953 10000 +0413 B961 00000 +04141 B9621 00000 +04142 B9622 00000 +04143 B9623 00000 +04149 B9620 10000 +04149 B9629 10000 +0415 B963 10000 +0416 B964 00000 +0417 B965 00000 +04181 A493 10000 +04181 B960 10000 +04182 B966 00000 +04183 B967 10000 +04184 B9689 10000 +04185 B9689 10000 +04186 B9681 00000 +04189 B9689 10000 +0419 B9689 10000 +042 B20 00000 +04500 A8039 10000 +04501 A8039 10000 +04502 A8039 10000 +04503 A8039 10000 +04510 A8039 10000 +04511 A8039 10000 +04512 A8039 10000 +04513 A8039 10000 +04520 A804 10000 +04521 A804 10000 +04522 A804 10000 +04523 A804 10000 +04590 A809 10000 +04591 A809 10000 +04592 A809 10000 +04593 A809 10000 +0460 A8181 00000 +04611 A8101 00000 +04619 A8100 10000 +04619 A8109 10000 +0462 A811 00000 +0463 A812 10000 +04671 A8182 00000 +04672 A8183 00000 +04679 A8189 10000 +0468 A8189 10000 +0469 A819 00000 +0470 A870 10000 +0471 A870 10000 +0478 A878 10000 +0479 A879 10000 +048 A880 10000 +0490 A872 00000 +0491 A871 00000 +0498 A850 10000 +0498 A851 10000 +0498 A858 10000 +0498 A888 10000 +0499 A86 10000 +0499 A89 10000 +0500 B03 10000 +0501 B03 10000 +0502 B03 10000 +0509 B03 10000 +05101 B08010 00000 +05102 B08011 00000 +0511 B0803 00000 +0512 B0802 10000 +0519 B0804 10000 +0520 B0111 10000 +0521 B012 00000 +0522 B0112 00000 +0527 B010 10000 +0527 B0181 10000 +0527 B0189 10000 +0528 B0189 10000 +0529 B019 00000 +0530 B021 00000 +05310 B0229 10000 +05311 B0221 00000 +05312 B0222 00000 +05313 B0223 00000 +05314 B0224 00000 +05319 B0229 10000 +05320 B0239 10000 +05321 B0233 00000 +05322 B0232 00000 +05329 B0239 10000 +05371 B028 10000 +05379 B028 10000 +0538 B028 10000 +0539 B029 00000 +0540 B000 00000 +05410 A609 10000 +05411 A6004 10000 +05412 A6004 10000 +05413 A6001 00000 +05419 A6009 10000 +0542 B002 00000 +0543 B004 10000 +05440 B0050 00000 +05441 B0059 10000 +05442 B0052 10000 +05443 B0052 10000 +05444 B0051 00000 +05449 B0059 10000 +0545 B007 00000 +0546 B0089 10000 +05471 B0081 10000 +05472 B003 00000 +05473 B001 10000 +05474 B0082 00000 +05479 B0089 10000 +0548 B009 10000 +0549 B009 10000 +0550 B050 00000 +0551 B052 00000 +0552 B053 00000 +05571 B0581 00000 +05579 B051 10000 +05579 B054 10000 +05579 B0589 10000 +0558 B0589 10000 +0559 B059 00000 +05600 B0600 00000 +05601 B0601 00000 +05609 B0609 10000 +05671 B0682 00000 +05679 B0681 10000 +05679 B0689 10000 +0568 B0689 10000 +0569 B069 00000 +0570 B083 00000 +0578 B09 10000 +0578 L444 10000 +0579 B09 10000 +05810 B0820 00000 +05811 B0821 00000 +05812 B0822 00000 +05821 B1001 00000 +05829 B1009 00000 +05881 B1081 10000 +05882 B1082 10000 +05889 B1089 10000 +05900 B0809 10000 +05901 B04 00000 +05909 B0809 10000 +05910 B0860 00000 +05911 B0861 00000 +05912 B0862 00000 +05919 B0869 00000 +05920 B0870 10000 +05921 B0871 00000 +05922 B0872 00000 +0598 B088 10000 +0599 B088 10000 +0600 A950 00000 +0601 A951 00000 +0609 A959 00000 +061 A90 00000 +0620 A830 00000 +0621 A831 00000 +0622 A832 00000 +0623 A833 00000 +0624 A834 00000 +0625 A835 00000 +0628 A838 10000 +0629 A839 00000 +0630 A840 00000 +0631 A848 10000 +0632 A841 00000 +0638 A848 10000 +0639 A849 00000 +064 A852 00000 +0650 A980 00000 +0651 A981 00000 +0652 A982 00000 +0653 A988 10000 +0654 A91 10000 +0654 A920 10000 +0658 A988 10000 +0659 A99 10000 +0660 A931 00000 +0661 A932 10000 +0662 A922 00000 +0663 A920 10000 +0663 A921 10000 +0663 A924 10000 +0663 A925 10000 +0663 A928 10000 +0663 A930 10000 +0663 B331 10000 +06640 A9230 00000 +06641 A9231 00000 +06642 A9232 00000 +06649 A9239 00000 +0668 A938 00000 +0669 A94 10000 +0700 B150 00000 +0701 B159 00000 +07020 B162 10000 +07020 B1911 10000 +07021 B160 10000 +07022 B181 10000 +07023 B180 10000 +07030 B169 10000 +07030 B1910 10000 +07031 B161 10000 +07032 B181 10000 +07033 B180 10000 +07041 B1711 00000 +07042 B170 10000 +07043 B172 10000 +07044 B182 10000 +07049 B178 10000 +07051 B1710 00000 +07052 B170 10000 +07053 B172 10000 +07054 B182 10000 +07059 B178 10000 +07059 B188 10000 +07059 B189 10000 +0706 B190 00000 +07070 B1920 00000 +07071 B1921 00000 +0709 B199 10000 +071 A829 10000 +0720 B260 00000 +0721 B261 00000 +0722 B262 00000 +0723 B263 00000 +07271 B2681 00000 +07272 B2684 00000 +07279 B2682 10000 +07279 B2683 10000 +07279 B2685 10000 +07279 B2689 10000 +0728 B2689 10000 +0729 B269 00000 +0730 A70 10111 +0730 J17 10112 +0737 A70 10000 +0738 A70 10000 +0739 A70 10000 +0740 B085 00000 +0741 B330 00000 +07420 B3320 10000 +07421 B3323 10000 +07422 B3321 10000 +07423 B3322 10000 +0743 B084 00000 +0748 B341 10000 +075 B2790 10000 +0760 A710 00000 +0761 A711 00000 +0769 A719 00000 +0770 A740 10000 +0771 B300 00000 +0772 B302 00000 +0773 B301 10000 +0774 B303 00000 +0778 B308 00000 +07798 A740 10000 +07798 A7489 10000 +07799 B309 00000 +0780 B081 00000 +07810 B079 00000 +07811 A630 00000 +07812 B070 00000 +07819 B078 00000 +0782 B338 10000 +0783 A281 00000 +0784 B088 10000 +0785 B259 10000 +0786 A985 00000 +0787 A960 10000 +0787 A961 10000 +0787 A968 10000 +07881 A881 00000 +07882 R1111 10000 +07888 A7489 10000 +07889 A983 10000 +07889 A984 10000 +07889 B338 10000 +0790 B970 10000 +0791 B9712 10000 +0792 B9711 10000 +0793 B9789 10000 +0794 B977 00000 +07950 B9730 00000 +07951 B9733 00000 +07952 B9734 00000 +07953 B9735 00000 +07959 B333 10000 +07959 B9739 10000 +0796 B974 10000 +07981 B334 10000 +07982 B9721 00000 +07983 B343 10000 +07988 A7489 10000 +07989 B338 10000 +07989 B341 10000 +07989 B342 10000 +07989 B344 10000 +07989 B348 10000 +07989 B9719 10000 +07989 B9729 10000 +07989 B9789 10000 +07998 A749 10000 +07999 B9789 10000 +080 A750 00000 +0810 A752 00000 +0811 A751 00000 +0812 A753 00000 +0819 A759 00000 +0820 A770 10000 +0821 A771 00000 +0822 A772 00000 +0823 A773 00000 +08240 A7740 00000 +08241 A7741 00000 +08249 A7749 00000 +0828 A778 10000 +0829 A799 10000 +0830 A78 00000 +0831 A790 00000 +0832 A791 10000 +0838 A7981 10000 +0838 A7989 10000 +0839 A799 10000 +0840 B508 10000 +0840 B509 10000 +0841 B519 10000 +0842 B529 10000 +0843 B530 00000 +0844 B531 10000 +0844 B538 10000 +0845 B509 10000 +0845 B519 10000 +0845 B529 10000 +0846 B54 00000 +0847 B538 10000 +0848 B508 10000 +0849 B500 10000 +0849 B508 10000 +0849 B510 10000 +0849 B518 10000 +0849 B520 10000 +0849 B528 10000 +0850 B550 00000 +0851 B551 10000 +0852 B551 10000 +0853 B551 10000 +0854 B551 10000 +0855 B552 00000 +0859 B559 00000 +0860 B570 10000 +0860 B572 10000 +0861 B575 10000 +0862 B571 10000 +0863 B560 00000 +0864 B561 00000 +0865 B569 10000 +0869 B569 10000 +0870 A680 00000 +0871 A681 00000 +0879 A689 00000 +0880 A449 10000 +08881 A6920 10000 +08882 B600 00000 +08889 B608 10000 +0889 B64 10000 +0900 A5009 10000 +0901 A501 00000 +0902 A502 00000 +0903 A5031 10000 +09040 A5040 10000 +09040 A5045 10000 +09041 A5042 10000 +09042 A5041 10000 +09049 A5049 10000 +0905 A5052 10000 +0905 A5057 10000 +0905 A5059 10000 +0906 A506 00000 +0907 A507 00000 +0909 A509 00000 +0910 A510 00000 +0911 A511 00000 +0912 A512 00000 +0913 A5131 10000 +0913 A5139 10000 +0914 A5149 10000 +09150 A5143 10000 +09151 A5143 10000 +09152 A5143 10000 +09161 A5146 10000 +09162 A5145 00000 +09169 A5149 10000 +0917 A5149 10000 +09181 A5141 10000 +09182 A5132 00000 +09189 A5149 10000 +0919 A5149 10000 +0920 A515 10000 +0929 A515 10000 +0930 A5201 00000 +0931 A5202 00000 +09320 A5203 10000 +09321 A5203 10000 +09322 A5203 10000 +09323 A5203 10000 +09324 A5203 10000 +09381 A5206 10000 +09382 A5206 10000 +09389 A5209 10000 +0939 A5200 00000 +0940 A5211 10000 +0941 A5217 00000 +0942 A5213 10000 +0943 A522 00000 +09481 A5214 10000 +09482 A5219 10000 +09483 A5219 10000 +09484 A5215 10000 +09485 A5215 10000 +09486 A5215 10000 +09487 A5219 10000 +09489 A5219 10000 +0949 A523 10000 +0950 A5271 10000 +0951 A5272 10000 +0952 A5274 10000 +0953 A5274 10000 +0954 A5275 10000 +0955 A5277 10000 +0956 A5278 10000 +0957 A5278 10000 +0958 A5273 10000 +0958 A5276 10000 +0958 A5279 10000 +0959 A5279 10000 +096 A528 00000 +0970 A529 00000 +0971 A530 00000 +0979 A539 00000 +0980 A5400 10000 +09810 A5429 10000 +09811 A5401 10000 +09812 A5422 10000 +09813 A5423 10000 +09814 A5423 10000 +09815 A5403 10000 +09816 A5424 10000 +09817 A5429 10000 +09819 A5421 10000 +0982 A5400 10000 +09830 A5429 10000 +09831 A5401 10000 +09832 A5422 10000 +09833 A5423 10000 +09834 A5423 10000 +09835 A5403 10000 +09836 A5424 10000 +09837 A5429 10000 +09839 A5429 10000 +09840 A5431 00000 +09841 A5432 00000 +09842 A5439 10000 +09843 A5433 00000 +09849 A5439 10000 +09850 A5442 00000 +09851 A5449 10000 +09852 A5449 10000 +09853 A5441 00000 +09859 A5440 10000 +0986 A545 00000 +0987 A546 00000 +09881 A5489 10000 +09882 A5481 00000 +09883 A5483 10000 +09884 A5483 10000 +09885 A5483 10000 +09886 A5485 00000 +09889 A5486 10000 +09889 A5489 10000 +0990 A57 00000 +0991 A55 00000 +0992 A58 00000 +0993 M0230 10000 +09940 N341 10000 +09941 N341 10000 +09949 N341 10000 +09950 A5619 10000 +09951 A564 00000 +09952 A563 00000 +09953 A5600 10000 +09954 A5619 10000 +09955 A562 00000 +09956 A568 10000 +09959 A568 10000 +0998 A638 10000 +0999 A64 00000 +1000 A270 00000 +10081 A2781 00000 +10089 A2789 10000 +1009 A279 00000 +101 A690 10000 +101 A691 10000 +1020 A660 00000 +1021 A661 00000 +1022 A662 00000 +1023 A663 00000 +1024 A664 00000 +1025 A665 00000 +1026 A666 00000 +1027 A667 00000 +1028 A668 00000 +1029 A669 00000 +1030 A670 00000 +1031 A671 00000 +1032 A672 00000 +1033 A673 00000 +1039 A679 00000 +1040 A65 00000 +1048 A698 00000 +1049 A699 00000 +1100 B350 00000 +1101 B351 00000 +1102 B352 00000 +1103 B356 00000 +1104 B353 00000 +1105 B354 10000 +1105 B355 10000 +1106 B358 10000 +1108 B358 10000 +1109 B359 00000 +1110 B360 00000 +1111 B361 00000 +1112 B362 00000 +1113 B363 00000 +1118 B368 10000 +1119 B369 10000 +1120 B370 10000 +1120 B3783 10000 +1121 B373 00000 +1122 B3742 10000 +1122 B3749 10000 +1123 B372 00000 +1124 B371 10000 +1125 B377 10000 +11281 B376 00000 +11282 B3784 00000 +11283 B375 00000 +11284 B3781 00000 +11285 B3782 00000 +11289 B3789 10000 +1129 B379 00000 +1140 B380 10000 +1141 B383 10000 +1142 B384 00000 +1143 B3889 10000 +1144 B381 00000 +1145 B382 00000 +1149 B389 00000 +11500 B394 10000 +11501 B394 10111 +11501 G02 10112 +11502 B394 10111 +11502 H32 10112 +11503 B394 10111 +11503 I32 10112 +11504 B394 10111 +11504 I39 10112 +11505 B392 10000 +11509 B393 10000 +11510 B395 10000 +11511 B395 10111 +11511 G02 10112 +11512 B395 10111 +11512 H32 10112 +11513 B395 10111 +11513 I32 10112 +11514 B395 10111 +11514 I39 10112 +11515 B395 10111 +11515 J17 10112 +11519 B395 10000 +11590 B399 10000 +11591 B399 10111 +11591 G02 10112 +11592 B399 10111 +11592 H32 10112 +11593 B399 10111 +11593 I32 10112 +11594 B399 10111 +11594 I39 10112 +11595 B399 10111 +11595 J17 10112 +11599 B399 10000 +1160 B409 10000 +1161 B410 10000 +1161 B419 10000 +1162 B480 00000 +1170 B481 00000 +1171 B420 10000 +1171 B421 10000 +1171 B427 10000 +1171 B429 10000 +1172 B439 10000 +1173 B449 10000 +1174 B470 10000 +1175 B450 10000 +1175 B457 10000 +1175 B459 10000 +1176 B482 00000 +1177 B469 10000 +1178 B488 10000 +1179 B488 10000 +1179 B49 10000 +118 B488 10000 +1200 B650 00000 +1201 B651 00000 +1202 B652 00000 +1203 B653 00000 +1208 B658 00000 +1209 B659 00000 +1210 B660 00000 +1211 B661 00000 +1212 B664 00000 +1213 B663 00000 +1214 B665 00000 +1215 B668 10000 +1216 B668 10000 +1218 B662 10000 +1218 B668 10000 +1219 B669 00000 +1220 B670 00000 +1221 B671 00000 +1222 B6731 00000 +1223 B6739 10000 +1224 B674 00000 +1225 B675 00000 +1226 B6769 10000 +1227 B677 00000 +1228 B678 00000 +1229 B6790 10000 +1229 B6799 10000 +1230 B680 00000 +1231 B699 10000 +1232 B681 00000 +1233 B689 00000 +1234 B700 00000 +1235 B701 00000 +1236 B710 00000 +1238 B711 10000 +1238 B718 10000 +1239 B719 00000 +124 B75 00000 +1250 B740 00000 +1251 B741 00000 +1252 B743 00000 +1253 B731 10000 +1254 B748 10000 +1255 B744 00000 +1256 B748 10000 +1257 B72 00000 +1259 B749 00000 +1260 B760 10000 +1261 B761 00000 +1262 B760 10000 +1263 B760 10000 +1268 B760 10000 +1269 B768 10000 +1269 B769 10000 +1270 B7781 10000 +1270 B779 10000 +1271 B810 00000 +1272 B789 10000 +1273 B79 00000 +1274 B80 00000 +1275 B811 00000 +1276 B812 00000 +1277 B818 10000 +1278 B814 00000 +1279 B820 00000 +1280 B830 00000 +1281 B831 00000 +1288 B832 10000 +1288 B838 10000 +1289 B839 00000 +129 B829 00000 +1300 B582 00000 +1301 B5809 10000 +1302 B5801 00000 +1303 B5881 00000 +1304 B583 10000 +1305 B581 00000 +1307 B5889 10000 +1308 B5889 10000 +1309 B589 00000 +13100 A5900 00000 +13101 A5901 00000 +13102 A5903 10000 +13103 A5902 00000 +13109 A5909 00000 +1318 A598 00000 +1319 A599 00000 +1320 B850 00000 +1321 B851 00000 +1322 B853 00000 +1323 B854 00000 +1329 B852 00000 +1330 B86 00000 +1338 B880 10000 +1339 B889 10000 +1340 B879 10000 +1341 B882 10000 +1342 B834 10000 +1342 B883 10000 +1348 B888 10000 +1349 B889 10000 +135 D869 10000 +1360 L946 00000 +1361 M352 10000 +13621 B6011 10000 +13629 B6019 10000 +13629 B602 10000 +1363 B59 00000 +1364 B608 10000 +1365 A078 10000 +1368 B608 10000 +1368 B998 10000 +1369 B89 10000 +1369 B999 10000 +1370 B909 00000 +1371 B900 00000 +1372 B901 00000 +1373 B902 00000 +1374 B908 00000 +138 B91 10000 +138 G14 10000 +1390 B941 00000 +1391 B940 00000 +1398 B948 10000 +1398 B949 10000 +1400 C000 00000 +1401 C001 00000 +1403 C003 00000 +1404 C004 00000 +1405 C005 00000 +1406 C006 00000 +1408 C008 00000 +1409 C002 10000 +1410 C01 00000 +1411 C020 00000 +1412 C021 00000 +1413 C022 00000 +1414 C023 00000 +1415 C028 10000 +1416 C024 00000 +1418 C028 10000 +1419 C029 00000 +1420 C07 00000 +1421 C080 00000 +1422 C081 00000 +1428 C089 10000 +1429 C089 10000 +1430 C030 00000 +1431 C031 00000 +1438 C039 10000 +1439 C039 10000 +1440 C040 00000 +1441 C041 00000 +1448 C048 00000 +1449 C049 00000 +1450 C060 00000 +1451 C061 00000 +1452 C050 00000 +1453 C051 00000 +1454 C052 00000 +1455 C059 10000 +1456 C062 00000 +1458 C0689 10000 +1459 C069 00000 +1460 C099 10000 +1461 C090 00000 +1462 C091 00000 +1463 C100 00000 +1464 C101 00000 +1465 C108 10000 +1466 C102 00000 +1467 C103 00000 +1468 C104 10000 +1468 C108 10000 +1469 C109 00000 +1470 C110 00000 +1471 C111 00000 +1472 C112 00000 +1473 C113 00000 +1478 C118 10000 +1479 C119 00000 +1480 C130 00000 +1481 C12 00000 +1482 C131 00000 +1483 C132 00000 +1488 C138 10000 +1489 C139 00000 +1490 C140 00000 +1491 C142 00000 +1498 C148 10000 +1499 C148 10000 +1500 C153 10000 +1501 C154 10000 +1502 C155 10000 +1503 C153 10000 +1504 C154 10000 +1505 C155 10000 +1508 C158 10000 +1509 C159 00000 +1510 C160 00000 +1511 C164 00000 +1512 C163 00000 +1513 C161 00000 +1514 C162 00000 +1515 C165 00000 +1516 C166 00000 +1518 C168 10000 +1519 C169 00000 +1520 C170 00000 +1521 C171 00000 +1522 C172 00000 +1523 C173 00000 +1528 C178 10000 +1529 C179 00000 +1530 C183 00000 +1531 C184 00000 +1532 C186 00000 +1533 C187 00000 +1534 C180 00000 +1535 C181 00000 +1536 C182 00000 +1537 C185 00000 +1538 C188 10000 +1539 C189 00000 +1540 C19 00000 +1541 C20 00000 +1542 C211 00000 +1543 C210 00000 +1548 C218 10000 +1550 C220 10000 +1550 C222 10000 +1550 C227 10000 +1550 C228 10000 +1551 C221 00000 +1552 C229 00000 +1560 C23 00000 +1561 C240 00000 +1562 C241 00000 +1568 C248 00000 +1569 C249 00000 +1570 C250 00000 +1571 C251 00000 +1572 C252 00000 +1573 C253 00000 +1574 C254 00000 +1578 C257 10000 +1578 C258 10000 +1579 C259 00000 +1580 C480 00000 +1588 C481 10000 +1588 C488 10000 +1589 C482 00000 +1590 C260 00000 +1591 C261 00000 +1598 C269 10000 +1599 C269 10000 +1600 C300 00000 +1601 C301 00000 +1602 C310 00000 +1603 C311 00000 +1604 C312 00000 +1605 C313 00000 +1608 C318 00000 +1609 C319 00000 +1610 C320 00000 +1611 C321 00000 +1612 C322 00000 +1613 C323 00000 +1618 C328 00000 +1619 C329 00000 +1620 C33 00000 +1622 C3400 10000 +1623 C3410 10000 +1624 C342 00000 +1625 C3430 10000 +1628 C3480 10000 +1629 C3490 10000 +1630 C384 10000 +1631 C384 10000 +1638 C384 10000 +1639 C384 10000 +1640 C37 00000 +1641 C380 10000 +1642 C381 00000 +1643 C382 00000 +1648 C388 00000 +1649 C383 00000 +1650 C390 00000 +1658 C399 10000 +1659 C399 10000 +1700 C410 00000 +1701 C411 00000 +1702 C412 00000 +1703 C413 00000 +1704 C4000 10000 +1705 C4010 10000 +1706 C414 00000 +1707 C4020 10000 +1708 C4030 10000 +1709 C419 10000 +1710 C490 10000 +1712 C4910 10000 +1713 C4920 10000 +1714 C493 10000 +1715 C494 10000 +1715 C49A0 10000 +1715 C49A1 10000 +1715 C49A2 10000 +1715 C49A3 10000 +1715 C49A4 10000 +1715 C49A5 10000 +1715 C49A9 10000 +1716 C495 10000 +1717 C496 10000 +1718 C478 10000 +1718 C498 10000 +1719 C499 10000 +1720 C430 10000 +1720 D030 10000 +1721 C4310 10000 +1721 D0310 10000 +1721 D0311 10000 +1721 D0312 10000 +1722 C4320 10000 +1722 D0320 10000 +1722 D0321 10000 +1722 D0322 10000 +1723 C4330 10000 +1723 C4331 10000 +1723 C4339 10000 +1723 D0330 10000 +1723 D0339 10000 +1724 C434 10000 +1724 D034 10000 +1725 C4359 10000 +1725 D0351 10000 +1725 D0352 10000 +1725 D0359 10000 +1726 C4360 10000 +1726 D0360 10000 +1726 D0361 10000 +1726 D0362 10000 +1727 C4370 10000 +1727 D0370 10000 +1727 D0371 10000 +1727 D0372 10000 +1728 C438 10000 +1728 D038 10000 +1729 C439 10000 +1729 D039 10000 +17300 C4400 00000 +17301 C4401 00000 +17302 C4402 00000 +17309 C4409 00000 +17310 C44101 10000 +17311 C44111 10000 +17312 C44121 10000 +17319 C44191 10000 +17320 C44201 10000 +17321 C44211 10000 +17322 C44221 10000 +17329 C44291 10000 +17330 C44300 10000 +17330 C44301 10000 +17330 C44309 10000 +17331 C44310 10000 +17331 C44311 10000 +17331 C44319 10000 +17332 C44320 10000 +17332 C44321 10000 +17332 C44329 10000 +17339 C44390 10000 +17339 C44391 10000 +17339 C44399 10000 +17340 C4440 00000 +17341 C4441 00000 +17342 C4442 00000 +17349 C4449 00000 +17350 C44500 10000 +17350 C44501 10000 +17350 C44509 10000 +17351 C44510 10000 +17351 C44511 10000 +17351 C44519 10000 +17352 C44520 10000 +17352 C44521 10000 +17352 C44529 10000 +17359 C44590 10000 +17359 C44591 10000 +17359 C44599 10000 +17360 C44601 10000 +17361 C44611 10000 +17362 C44621 10000 +17369 C44691 10000 +17370 C44701 10000 +17371 C44711 10000 +17372 C44721 10000 +17379 C44791 10000 +17380 C4480 10000 +17381 C4481 10000 +17382 C4482 10000 +17389 C4489 10000 +17390 C4490 00000 +17391 C4491 00000 +17392 C4492 00000 +17399 C4499 00000 +1740 C50019 10000 +1741 C50119 10000 +1742 C50219 10000 +1743 C50319 10000 +1744 C50419 10000 +1745 C50519 10000 +1746 C50619 10000 +1748 C50819 10000 +1749 C50919 10000 +1750 C50029 10000 +1759 C50929 10000 +1760 C460 00000 +1761 C461 00000 +1762 C462 00000 +1763 C464 00000 +1764 C4650 10000 +1765 C463 00000 +1768 C467 00000 +1769 C469 00000 +179 C55 00000 +1800 C530 00000 +1801 C531 00000 +1808 C538 00000 +1809 C539 00000 +181 C58 00000 +1820 C541 10000 +1820 C542 10000 +1820 C543 10000 +1820 C549 10000 +1821 C540 00000 +1828 C548 00000 +1830 C569 10000 +1832 C5700 10000 +1833 C5710 10000 +1834 C573 00000 +1835 C5720 10000 +1838 C574 10000 +1839 C574 10000 +1840 C52 00000 +1841 C510 00000 +1842 C511 00000 +1843 C512 00000 +1844 C519 00000 +1848 C577 10000 +1848 C578 10000 +1849 C579 00000 +185 C61 00000 +1860 C6200 10000 +1869 C6210 10000 +1869 C6290 10000 +1871 C600 00000 +1872 C601 00000 +1873 C602 00000 +1874 C609 00000 +1875 C6300 10000 +1876 C6310 10000 +1877 C632 00000 +1878 C608 10000 +1878 C637 10000 +1878 C638 10000 +1879 C639 00000 +1880 C670 00000 +1881 C671 00000 +1882 C672 00000 +1883 C673 00000 +1884 C674 00000 +1885 C675 00000 +1886 C676 00000 +1887 C677 00000 +1888 C678 00000 +1889 C679 00000 +1890 C649 10000 +1891 C659 10000 +1892 C669 10000 +1893 C680 00000 +1894 C681 00000 +1898 C688 00000 +1899 C689 00000 +1900 C6940 10000 +1901 C6960 10000 +1902 C6950 10000 +1903 C6900 10000 +1904 C6910 10000 +1905 C6920 10000 +1906 C6930 10000 +1907 C6950 10000 +1908 C6980 10000 +1909 C6990 10000 +1910 C710 00000 +1911 C711 00000 +1912 C712 00000 +1913 C713 00000 +1914 C714 00000 +1915 C715 00000 +1916 C716 00000 +1917 C717 00000 +1918 C718 00000 +1919 C719 00000 +1920 C7250 10000 +1921 C700 10000 +1921 C709 10000 +1922 C720 10000 +1922 C721 10000 +1923 C701 00000 +1928 C729 10000 +1929 C729 10000 +193 C73 00000 +1940 C7490 10000 +1941 C750 00000 +1943 C751 10000 +1943 C752 10000 +1944 C753 00000 +1945 C754 00000 +1946 C755 00000 +1948 C758 00000 +1949 C759 00000 +1950 C760 00000 +1951 C761 00000 +1952 C762 00000 +1953 C763 00000 +1954 C7640 10000 +1955 C7650 10000 +1958 C768 10000 +1960 C770 00000 +1961 C771 00000 +1962 C772 00000 +1963 C773 00000 +1965 C774 00000 +1966 C775 00000 +1968 C778 00000 +1969 C779 00000 +1970 C7800 10000 +1971 C781 00000 +1972 C782 00000 +1973 C7839 10000 +1974 C784 00000 +1975 C785 00000 +1976 C786 00000 +1977 C787 10000 +1978 C787 10000 +1978 C7889 10000 +1980 C7900 10000 +1981 C7911 10000 +1981 C7919 10000 +1982 C792 00000 +1983 C7931 10000 +1984 C7932 10000 +1984 C7949 10000 +1985 C7951 10000 +1985 C7952 10000 +1986 C7960 10000 +1987 C7970 10000 +19881 C7981 00000 +19882 C7982 00000 +19889 C7989 10000 +1990 C800 00000 +1991 C801 10000 +1992 C802 00000 +20000 C8330 10000 +20000 C8339 10000 +20001 C8331 10000 +20002 C8332 10000 +20003 C8333 10000 +20004 C8334 10000 +20005 C8335 10000 +20006 C8336 10000 +20007 C8337 10000 +20008 C8338 10000 +20010 C8350 10000 +20010 C8359 10000 +20011 C8351 10000 +20012 C8352 10000 +20013 C8353 10000 +20014 C8354 10000 +20015 C8355 10000 +20016 C8356 10000 +20017 C8357 10000 +20018 C8358 10000 +20020 C8370 10000 +20020 C8379 10000 +20021 C8371 00000 +20022 C8372 00000 +20023 C8373 00000 +20024 C8374 00000 +20025 C8375 00000 +20026 C8376 00000 +20027 C8377 00000 +20028 C8378 00000 +20030 C8380 10000 +20030 C8389 10000 +20031 C8381 10000 +20032 C8382 10000 +20033 C8383 10000 +20034 C8384 10000 +20035 C8385 10000 +20036 C8386 10000 +20037 C8387 10000 +20038 C8388 10000 +20040 C8310 10000 +20040 C8319 10000 +20041 C8311 00000 +20042 C8312 00000 +20043 C8313 00000 +20044 C8314 00000 +20045 C8315 00000 +20046 C8316 00000 +20047 C8317 00000 +20048 C8318 00000 +20050 C8339 10000 +20050 C8380 10000 +20050 C8389 10000 +20051 C8331 10000 +20051 C8381 10000 +20052 C8332 10000 +20052 C8382 10000 +20053 C8333 10000 +20053 C8383 10000 +20054 C8334 10000 +20054 C8384 10000 +20055 C8335 10000 +20055 C8385 10000 +20056 C8336 10000 +20056 C8386 10000 +20057 C8337 10000 +20057 C8387 10000 +20058 C8338 10000 +20058 C8388 10000 +20060 C8460 10000 +20060 C8469 10000 +20060 C8470 10000 +20060 C8479 10000 +20061 C8461 10000 +20061 C8471 10000 +20062 C8462 10000 +20062 C8472 10000 +20063 C8463 10000 +20063 C8473 10000 +20064 C8464 10000 +20064 C8474 10000 +20065 C8465 10000 +20065 C8475 10000 +20066 C8466 10000 +20066 C8476 10000 +20067 C8467 10000 +20067 C8477 10000 +20068 C8468 10000 +20068 C8478 10000 +20070 C8339 10000 +20071 C8331 10000 +20072 C8332 10000 +20073 C8333 10000 +20074 C8334 10000 +20075 C8335 10000 +20076 C8336 10000 +20077 C8337 10000 +20078 C8338 10000 +20080 C8380 10000 +20080 C8389 10000 +20081 C8381 10000 +20082 C8382 10000 +20083 C8383 10000 +20084 C8384 10000 +20085 C8385 10000 +20086 C8386 10000 +20087 C8387 10000 +20088 C8388 10000 +20100 C8170 10000 +20100 C8179 10000 +20101 C8171 10000 +20102 C8172 10000 +20103 C8173 10000 +20104 C8174 10000 +20105 C8175 10000 +20106 C8176 10000 +20107 C8177 10000 +20108 C8178 10000 +20110 C8179 10000 +20111 C8171 10000 +20112 C8172 10000 +20113 C8173 10000 +20114 C8174 10000 +20115 C8175 10000 +20116 C8176 10000 +20117 C8177 10000 +20118 C8178 10000 +20120 C8179 10000 +20121 C8171 10000 +20122 C8172 10000 +20123 C8173 10000 +20124 C8174 10000 +20125 C8175 10000 +20126 C8176 10000 +20127 C8177 10000 +20128 C8178 10000 +20140 C8100 10000 +20140 C8109 10000 +20140 C8140 10000 +20140 C8149 10000 +20141 C8101 10000 +20141 C8141 10000 +20142 C8102 10000 +20142 C8142 10000 +20143 C8103 10000 +20143 C8143 10000 +20144 C8104 10000 +20144 C8144 10000 +20145 C8105 10000 +20145 C8145 10000 +20146 C8106 10000 +20146 C8146 10000 +20147 C8107 10000 +20147 C8147 10000 +20148 C8108 10000 +20148 C8148 10000 +20150 C8110 10000 +20150 C8119 10000 +20151 C8111 00000 +20152 C8112 00000 +20153 C8113 00000 +20154 C8114 00000 +20155 C8115 00000 +20156 C8116 00000 +20157 C8117 00000 +20158 C8118 00000 +20160 C8120 10000 +20160 C8129 10000 +20161 C8121 00000 +20162 C8122 00000 +20163 C8123 00000 +20164 C8124 00000 +20165 C8125 00000 +20166 C8126 00000 +20167 C8127 00000 +20168 C8128 00000 +20170 C8130 10000 +20170 C8139 10000 +20171 C8131 00000 +20172 C8132 00000 +20173 C8133 00000 +20174 C8134 00000 +20175 C8135 00000 +20176 C8136 00000 +20177 C8137 00000 +20178 C8138 00000 +20190 C8190 10000 +20190 C8199 10000 +20191 C8191 00000 +20192 C8192 00000 +20193 C8193 00000 +20194 C8194 00000 +20195 C8195 00000 +20196 C8196 00000 +20197 C8197 00000 +20198 C8198 00000 +20200 C8290 10000 +20200 C8299 10000 +20201 C8291 10000 +20202 C8292 10000 +20203 C8293 10000 +20204 C8294 10000 +20205 C8295 10000 +20206 C8296 10000 +20207 C8297 10000 +20208 C8298 10000 +20210 C8400 10000 +20210 C8409 10000 +20211 C8401 10000 +20212 C8402 10000 +20213 C8403 10000 +20214 C8404 10000 +20215 C8405 10000 +20216 C8406 10000 +20217 C8407 10000 +20218 C8408 10000 +20220 C8410 10000 +20220 C8419 10000 +20221 C8411 00000 +20222 C8412 00000 +20223 C8413 00000 +20224 C8414 00000 +20225 C8415 00000 +20226 C8416 00000 +20227 C8417 00000 +20228 C8418 00000 +20230 C96A 10000 +20231 C96A 10000 +20232 C96A 10000 +20233 C96A 10000 +20234 C96A 10000 +20235 C96A 10000 +20236 C96A 10000 +20237 C96A 10000 +20238 C96A 10000 +20240 C9140 10000 +20240 C9141 10000 +20241 C9140 10000 +20242 C9140 10000 +20243 C9140 10000 +20244 C9140 10000 +20245 C9140 10000 +20246 C9140 10000 +20247 C9140 10000 +20248 C9140 10000 +20250 C960 10000 +20251 C960 10000 +20252 C960 10000 +20253 C960 10000 +20254 C960 10000 +20255 C960 10000 +20256 C960 10000 +20257 C960 10000 +20258 C960 10000 +20260 C962 10000 +20261 C962 10000 +20262 C962 10000 +20263 C962 10000 +20264 C962 10000 +20265 C962 10000 +20266 C962 10000 +20267 C962 10000 +20268 C962 10000 +20270 C8440 10000 +20270 C8449 10000 +20271 C8441 10000 +20272 C8442 10000 +20273 C8443 10000 +20274 C8444 10000 +20275 C8445 10000 +20276 C8446 10000 +20277 C8447 10000 +20278 C8448 10000 +20280 C8580 10000 +20280 C8589 10000 +20281 C8581 10000 +20282 C8582 10000 +20283 C8493 10000 +20283 C8583 10000 +20284 C8584 10000 +20285 C8585 10000 +20286 C8586 10000 +20287 C8587 10000 +20288 C8588 10000 +20290 C964 10000 +20290 C969 10000 +20290 C96Z 10000 +20291 C969 10000 +20291 C96Z 10000 +20292 C969 10000 +20292 C96Z 10000 +20293 C969 10000 +20293 C96Z 10000 +20294 C969 10000 +20294 C96Z 10000 +20295 C969 10000 +20295 C96Z 10000 +20296 C969 10000 +20296 C96Z 10000 +20297 C969 10000 +20297 C96Z 10000 +20298 C969 10000 +20298 C96Z 10000 +20300 C9000 00000 +20301 C9001 00000 +20302 C9002 00000 +20310 C9010 00000 +20311 C9011 00000 +20312 C9012 00000 +20380 C888 10000 +20380 C9020 10000 +20380 C9030 10000 +20381 C9021 10000 +20381 C9031 10000 +20382 C888 10000 +20382 C9022 10000 +20382 C9032 10000 +20400 C9100 00000 +20401 C9101 00000 +20402 C9102 00000 +20410 C9110 00000 +20411 C9111 00000 +20412 C9112 00000 +20420 C91Z0 10000 +20421 C91Z1 10000 +20422 C91Z2 10000 +20480 C91Z0 10000 +20481 C91Z1 10000 +20482 C91Z2 10000 +20490 C9190 00000 +20491 C9191 00000 +20492 C9192 00000 +20500 C9200 10000 +20500 C9240 10000 +20500 C9250 10000 +20501 C9201 10000 +20501 C9241 10000 +20501 C9251 10000 +20502 C9202 10000 +20502 C9242 10000 +20502 C9252 10000 +20510 C9210 10000 +20511 C9211 10000 +20512 C9212 10000 +20520 C9220 10000 +20521 C9221 10000 +20522 C9222 10000 +20530 C9230 00000 +20531 C9231 00000 +20532 C9232 00000 +20580 C92Z0 10000 +20581 C92Z1 10000 +20582 C92Z2 10000 +20590 C9290 00000 +20591 C9291 00000 +20592 C9292 00000 +20600 C9300 00000 +20601 C9301 00000 +20602 C9302 00000 +20610 C9310 00000 +20611 C9311 00000 +20612 C9312 00000 +20620 C9390 10000 +20621 C9391 10000 +20622 C9392 10000 +20680 C93Z0 10000 +20681 C93Z1 10000 +20682 C93Z2 10000 +20690 C9390 10000 +20691 C9391 10000 +20692 C9392 10000 +20700 C9400 00000 +20701 C9401 00000 +20702 C9402 00000 +20710 D45 10000 +20711 D45 10000 +20712 D45 10000 +20720 C9420 10000 +20721 C9421 10000 +20722 C9422 10000 +20780 C9430 10000 +20780 C9480 10000 +20781 C9431 10000 +20781 C9481 10000 +20782 C9432 10000 +20782 C9482 10000 +20800 C9500 00000 +20801 C9501 00000 +20802 C9502 00000 +20810 C9510 00000 +20811 C9511 00000 +20812 C9512 00000 +20820 C9590 10000 +20821 C9591 10000 +20822 C9592 10000 +20880 C9590 10000 +20881 C9591 10000 +20882 C9592 10000 +20890 C9590 10000 +20891 C9591 10000 +20892 C9592 10000 +20900 C7A019 00000 +20901 C7A010 00000 +20902 C7A011 00000 +20903 C7A012 00000 +20910 C7A029 00000 +20911 C7A020 00000 +20912 C7A021 00000 +20913 C7A022 00000 +20914 C7A023 00000 +20915 C7A024 00000 +20916 C7A025 00000 +20917 C7A026 00000 +20920 C7A00 00000 +20921 C7A090 00000 +20922 C7A091 00000 +20923 C7A092 00000 +20924 C7A093 00000 +20925 C7A094 00000 +20926 C7A095 00000 +20927 C7A096 00000 +20929 C7A098 00000 +20930 C7A1 10000 +20931 C4A0 10000 +20931 C4A10 10000 +20931 C4A20 10000 +20931 C4A30 10000 +20931 C4A39 10000 +20932 C4A4 00000 +20933 C4A60 10000 +20934 C4A70 10000 +20935 C4A59 10000 +20936 C4A8 10000 +20936 C4A9 10000 +20940 D3A019 00000 +20941 D3A010 00000 +20942 D3A011 00000 +20943 D3A012 00000 +20950 D3A029 00000 +20951 D3A020 00000 +20952 D3A021 00000 +20953 D3A022 00000 +20954 D3A023 00000 +20955 D3A024 00000 +20956 D3A025 00000 +20957 D3A026 00000 +20960 D3A00 10000 +20961 D3A090 00000 +20962 D3A091 00000 +20963 D3A092 00000 +20964 D3A093 00000 +20965 D3A094 00000 +20966 D3A095 00000 +20967 D3A096 00000 +20969 D3A098 00000 +20970 C7B00 10000 +20971 C7B01 10000 +20972 C7B02 10000 +20973 C7B03 10000 +20974 C7B04 10000 +20975 C7B1 10000 +20979 C7B09 10000 +20979 C7B8 10000 +2100 D100 00000 +2101 D101 00000 +2102 D119 10000 +2103 D102 00000 +2104 D1030 10000 +2104 D1039 10000 +2105 D104 00000 +2106 D105 00000 +2107 D106 00000 +2108 D107 00000 +2109 D109 00000 +2110 D130 00000 +2111 D131 10000 +2111 K317 10000 +2112 D132 10000 +2112 D1330 10000 +2112 D1339 10000 +2113 D120 10000 +2113 D121 10000 +2113 D126 10000 +2113 K635 10000 +2114 D127 10000 +2114 D128 10000 +2114 D129 10000 +2115 D134 10000 +2115 D135 10000 +2116 D136 00000 +2117 D137 00000 +2118 D200 10000 +2118 D201 10000 +2119 D139 10000 +2120 D140 00000 +2121 D141 00000 +2122 D142 00000 +2123 D1430 10000 +2124 D190 10000 +2125 D152 00000 +2126 D150 00000 +2127 D151 00000 +2128 D157 10000 +2129 D144 10000 +2129 D159 10000 +2130 D164 00000 +2131 D165 00000 +2132 D166 00000 +2133 D167 00000 +2134 D1600 10000 +2135 D1610 10000 +2136 D168 00000 +2137 D1620 10000 +2138 D1630 10000 +2139 D169 00000 +2140 D170 10000 +2141 D171 10000 +2141 D1730 10000 +2141 D1739 10000 +2142 D174 00000 +2143 D175 10000 +2143 D1771 10000 +2144 D176 00000 +2148 D1779 10000 +2149 D179 00000 +2150 D210 00000 +2152 D2110 10000 +2153 D2120 10000 +2154 D213 00000 +2155 D214 00000 +2156 D215 00000 +2157 D216 00000 +2158 D219 10000 +2159 D219 10000 +2160 D230 10000 +2161 D2310 10000 +2162 D2320 10000 +2163 D2330 10000 +2163 D2339 10000 +2164 D234 10000 +2165 D235 10000 +2166 D2360 10000 +2167 D2370 10000 +2168 D229 10000 +2168 D239 10000 +2169 D239 10000 +217 D241 10000 +2180 D250 00000 +2181 D251 00000 +2182 D252 00000 +2189 D259 00000 +2190 D260 00000 +2191 D261 00000 +2198 D267 00000 +2199 D269 00000 +220 D279 10000 +2210 D282 00000 +2211 D281 00000 +2212 D280 00000 +2218 D287 00000 +2219 D289 00000 +2220 D2920 10000 +2221 D290 00000 +2222 D291 00000 +2223 D2930 10000 +2224 D294 00000 +2228 D298 00000 +2229 D299 00000 +2230 D3000 10000 +2231 D3010 10000 +2232 D3020 10000 +2233 D303 00000 +22381 D304 00000 +22389 D308 00000 +2239 D309 00000 +2240 D3140 10000 +2241 D3160 10000 +2242 D3150 10000 +2243 D3100 10000 +2244 D3110 10000 +2245 D3120 10000 +2246 D3130 10000 +2247 D3150 10000 +2248 D3190 10000 +2249 D3190 10000 +2250 D332 10000 +2251 D333 00000 +2252 D320 10000 +2252 D329 10000 +2253 D334 00000 +2254 D321 00000 +2258 D337 00000 +2259 D339 10000 +226 D34 00000 +2270 D3500 10000 +2271 D351 00000 +2273 D352 10000 +2273 D353 10000 +2274 D354 00000 +2275 D355 00000 +2276 D356 00000 +2278 D357 10000 +2279 D359 00000 +22800 D1800 00000 +22801 D1801 00000 +22802 D1802 00000 +22803 D1809 10000 +22804 D1803 00000 +22809 D1809 10000 +2281 D181 00000 +2290 D360 00000 +2298 D367 10000 +2299 D369 10000 +2300 D0000 10000 +2300 D0001 10000 +2300 D0002 10000 +2300 D0003 10000 +2300 D0004 10000 +2300 D0005 10000 +2300 D0006 10000 +2300 D0007 10000 +2300 D0008 10000 +2301 D001 00000 +2302 D002 00000 +2303 D010 00000 +2304 D011 10000 +2304 D012 10000 +2305 D013 10000 +2306 D013 10000 +2307 D0140 10000 +2307 D0149 10000 +2308 D015 00000 +2309 D017 10000 +2309 D019 10000 +2310 D020 00000 +2311 D021 00000 +2312 D0220 10000 +2318 D023 10000 +2319 D024 00000 +2320 D040 10000 +2321 D0410 10000 +2322 D0420 10000 +2323 D0430 10000 +2323 D0439 10000 +2324 D044 10000 +2325 D045 10000 +2326 D0460 10000 +2327 D0470 10000 +2328 D048 10000 +2329 D049 10000 +2330 D0590 10000 +2331 D069 10000 +2332 D070 10000 +23330 D0730 00000 +23331 D072 00000 +23332 D071 00000 +23339 D0739 10000 +2334 D075 00000 +2335 D074 00000 +2336 D0760 10000 +2336 D0769 10000 +2337 D090 00000 +2339 D0910 10000 +2339 D0919 10000 +2340 D0920 10000 +2348 D093 10000 +2348 D098 10000 +2349 D099 00000 +2350 D37030 10000 +2350 D37031 10000 +2350 D37032 10000 +2350 D37039 10000 +2351 D3701 10000 +2351 D3702 10000 +2351 D3704 10000 +2351 D3705 10000 +2352 D371 10000 +2352 D372 10000 +2352 D374 10000 +2352 D375 10000 +2353 D376 00000 +2354 D483 10000 +2354 D484 10000 +2355 D378 10000 +2355 D379 10000 +2356 D380 00000 +2357 D381 00000 +2358 D382 10000 +2358 D383 10000 +2358 D384 10000 +2359 D385 10000 +2359 D386 10000 +2360 D390 00000 +2361 D392 00000 +2362 D3910 10000 +2363 D398 10000 +2363 D399 10000 +2364 D4010 10000 +2365 D400 00000 +2366 D408 10000 +2366 D409 10000 +2367 D414 00000 +23690 D419 00000 +23691 D4100 10000 +23691 D4120 10000 +23699 D418 10000 +2370 D443 10000 +2370 D444 10000 +2371 D445 00000 +2372 D4410 10000 +2373 D446 10000 +2373 D447 10000 +2374 D440 10000 +2374 D442 10000 +2374 D449 10000 +2375 D432 10000 +2375 D434 10000 +2376 D420 10000 +2376 D421 10000 +2376 D429 10000 +23770 Q8500 00000 +23771 Q8501 00000 +23772 Q8502 00000 +23773 Q8503 00000 +23779 Q8509 00000 +2379 D433 10000 +2379 D438 10000 +2379 D439 10000 +2380 D480 00000 +2381 D481 10000 +2382 D485 00000 +2383 D4860 10000 +2384 D45 10000 +2385 D470 00000 +2386 D47Z9 10000 +23871 D473 10000 +23872 D460 10000 +23872 D461 10000 +23872 D4620 10000 +23872 D4621 10000 +23872 D46A 10000 +23872 D46B 10000 +23873 D4622 10000 +23874 D46C 00000 +23875 D469 10000 +23876 D471 10000 +23877 D47Z1 00000 +23879 C9440 10000 +23879 C9441 10000 +23879 C9442 10000 +23879 D471 10000 +23879 D479 10000 +23879 D47Z2 10000 +23879 D47Z9 10000 +2388 D487 00000 +2389 D489 00000 +2390 D490 00000 +2391 D491 00000 +2392 D492 00000 +2393 D493 00000 +2394 D494 00000 +2395 D49511 10000 +2395 D49512 10000 +2395 D49519 10000 +2395 D4959 10000 +2396 D496 00000 +2397 D497 00000 +23981 D4981 00000 +23989 D4989 00000 +2399 D499 00000 +2400 E040 10000 +2409 E012 10000 +2409 E049 10000 +2410 E041 10000 +2411 E042 10000 +2419 E049 10000 +24200 E0500 00000 +24201 E0501 00000 +24210 E0510 00000 +24211 E0511 00000 +24220 E0520 10000 +24221 E0521 10000 +24230 E0520 10000 +24231 E0521 10000 +24240 E0530 00000 +24241 E0531 00000 +24280 E0540 10000 +24280 E0580 10000 +24281 E0541 10000 +24281 E0581 10000 +24290 E0590 00000 +24291 E0591 00000 +243 E009 10000 +2440 E890 10000 +2441 E890 10000 +2442 E032 10000 +2443 E032 10000 +2448 E018 10000 +2448 E038 10000 +2449 E039 00000 +2450 E060 00000 +2451 E061 00000 +2452 E063 00000 +2453 E065 10000 +2454 E064 10000 +2458 E065 10000 +2459 E069 00000 +2460 E070 00000 +2461 E071 00000 +2462 E041 10000 +2463 E0789 10000 +2468 E034 10000 +2468 E0789 10000 +2469 E079 00000 +24900 E089 10000 +24900 E099 10000 +24900 E139 10000 +24901 E0865 10000 +24901 E0965 10000 +24910 E0810 10000 +24910 E0910 10000 +24910 E1310 10000 +24911 E0810 10111 +24911 E0865 10112 +24911 E0910 10111 +24920 E0801 10000 +24920 E0901 10000 +24920 E1300 10000 +24921 E0801 10111 +24921 E0865 10112 +24921 E0901 10111 +24930 E0811 10000 +24930 E08641 10000 +24930 E0911 10000 +24930 E09641 10000 +24930 E1311 10000 +24930 E13641 10000 +24931 E0811 10111 +24931 E0911 10111 +24931 E0965 10112 +24940 E0821 10000 +24940 E0921 10000 +24941 E0821 10111 +24941 E0865 10112 +24941 E0921 10111 +24950 E08311 10000 +24950 E08319 10000 +24950 E0836 10000 +24950 E0837X1 10000 +24950 E0837X2 10000 +24950 E0837X3 10000 +24950 E0837X9 10000 +24950 E0839 10000 +24950 E09311 10000 +24950 E09319 10000 +24950 E0936 10000 +24950 E0937X1 10000 +24950 E0937X2 10000 +24950 E0937X3 10000 +24950 E0937X9 10000 +24950 E0939 10000 +24950 E1339 10000 +24951 E08311 10111 +24951 E08319 10111 +24951 E0836 10111 +24951 E0839 10000 +24951 E0865 10112 +24951 E09311 10111 +24951 E09319 10111 +24951 E0936 10111 +24951 E0939 10000 +24960 E0840 10000 +24960 E0841 10000 +24960 E0842 10000 +24960 E0843 10000 +24960 E0844 10000 +24960 E0849 10000 +24960 E08610 10000 +24960 E0940 10000 +24960 E0941 10000 +24960 E0942 10000 +24960 E0943 10000 +24960 E0944 10000 +24960 E0949 10000 +24960 E09610 10000 +24960 E1340 10000 +24960 E1341 10000 +24960 E1342 10000 +24960 E1343 10000 +24960 E1344 10000 +24960 E1349 10000 +24961 E0840 10111 +24961 E0865 10112 +24961 E0940 10111 +24970 E0851 10000 +24970 E0951 10000 +24970 E1359 10000 +24971 E0851 10111 +24971 E0865 10112 +24971 E0951 10111 +24980 E08618 10000 +24980 E08620 10000 +24980 E08621 10000 +24980 E08622 10000 +24980 E08628 10000 +24980 E08630 10000 +24980 E08638 10000 +24980 E0865 10000 +24980 E0869 10000 +24980 E09618 10000 +24980 E09620 10000 +24980 E09621 10000 +24980 E09622 10000 +24980 E09628 10000 +24980 E09630 10000 +24980 E09638 10000 +24980 E09649 10000 +24980 E0965 10000 +24980 E0969 10000 +24980 E13620 10000 +24980 E13621 10000 +24980 E13622 10000 +24980 E13628 10000 +24980 E13638 10000 +24980 E13649 10000 +24980 E1365 10000 +24980 E1369 10000 +24981 E0865 10112 +24981 E0869 10111 +24981 E0969 10111 +24990 E088 10000 +24990 E098 10000 +24990 E138 10000 +24991 E0865 10112 +24991 E088 10111 +24991 E098 10111 +25000 E119 10000 +25001 E109 10000 +25002 E1165 10000 +25003 E1065 10000 +25010 E1169 10000 +25010 E1310 10000 +25011 E1010 10000 +25012 E1165 10112 +25012 E1169 10111 +25012 E1310 10111 +25013 E1010 10111 +25013 E1065 10112 +25020 E1100 10000 +25020 E1101 10000 +25021 E1069 10000 +25022 E1100 10111 +25022 E1165 10112 +25023 E1065 10112 +25023 E1069 10111 +25030 E11641 10000 +25031 E1011 10000 +25031 E10641 10000 +25032 E1101 10111 +25032 E1165 10112 +25033 E1011 10111 +25033 E1065 10112 +25040 E1129 10000 +25041 E1029 10000 +25042 E1121 10111 +25042 E1165 10112 +25043 E1021 10111 +25043 E1065 10112 +25050 E11311 10000 +25050 E11319 10000 +25050 E1136 10000 +25050 E1139 10000 +25051 E10311 10000 +25051 E10319 10000 +25051 E1036 10000 +25051 E1037X1 10000 +25051 E1037X2 10000 +25051 E1037X3 10000 +25051 E1037X9 10000 +25051 E1039 10000 +25052 E11311 10111 +25052 E11319 10111 +25052 E1136 10111 +25052 E1139 10111 +25052 E1165 10112 +25053 E10311 10111 +25053 E10319 10111 +25053 E1036 10111 +25053 E1039 10111 +25053 E1065 10112 +25060 E1140 10000 +25061 E1040 10000 +25062 E1140 10111 +25062 E1165 10112 +25063 E1040 10111 +25063 E1065 10112 +25070 E1151 10000 +25071 E1051 10000 +25072 E1151 10111 +25072 E1165 10112 +25073 E1051 10111 +25073 E1065 10112 +25080 E11618 10000 +25080 E11620 10000 +25080 E11621 10000 +25080 E11622 10000 +25080 E11628 10000 +25080 E11630 10000 +25080 E11638 10000 +25080 E11649 10000 +25080 E1165 10000 +25080 E1169 10000 +25081 E10618 10000 +25081 E10620 10000 +25081 E10621 10000 +25081 E10622 10000 +25081 E10628 10000 +25081 E10630 10000 +25081 E10638 10000 +25081 E10649 10000 +25081 E1065 10000 +25081 E1069 10000 +25082 E1165 10112 +25082 E1169 10111 +25083 E1065 10112 +25083 E1069 10111 +25090 E118 10000 +25091 E108 10000 +25092 E1165 10112 +25092 E118 10111 +25093 E1065 10112 +25093 E108 10111 +2510 E15 00000 +2511 E160 10000 +2511 E161 10000 +2512 E162 00000 +2513 E891 00000 +2514 E163 00000 +2515 E164 00000 +2518 E168 10000 +2519 E169 00000 +25200 E213 00000 +25201 E210 00000 +25202 E211 00000 +25208 E212 00000 +2521 E209 10000 +2528 E214 00000 +2529 E215 00000 +2530 E220 10000 +2531 E228 10000 +2531 E229 10000 +2532 E230 10000 +2533 E230 10000 +2534 E236 10000 +2535 E232 00000 +2536 E222 00000 +2537 E231 10000 +2537 E893 10000 +2538 E236 10000 +2539 E233 10000 +2539 E237 10000 +2540 E320 00000 +2541 E321 00000 +2548 E328 00000 +2549 E329 00000 +2550 E240 10000 +2550 E242 10000 +2550 E243 10000 +2550 E248 10000 +2550 E249 10000 +25510 E2609 10000 +25510 E269 10000 +25511 E2602 00000 +25512 E2601 00000 +25513 E2681 00000 +25514 E261 10000 +2552 E250 10000 +2552 E258 10000 +2552 E259 10000 +2553 E270 10000 +25541 E271 10000 +25541 E272 10000 +25541 E2740 10000 +25542 E2749 10000 +2555 E2749 10000 +2556 E275 00000 +2558 E278 10000 +2559 E279 00000 +2560 E280 00000 +2561 E281 10000 +2561 N981 10000 +2562 E8940 10000 +2562 E8941 10000 +25631 E28310 10000 +25631 E28319 10000 +25639 E2839 00000 +2564 E282 00000 +2568 E288 00000 +2569 E289 00000 +2570 E290 00000 +2571 E895 00000 +2572 E291 00000 +2578 E298 00000 +2579 E299 00000 +25801 E3121 00000 +25802 E3122 00000 +25803 E3123 00000 +2581 E310 10000 +2588 E3120 10000 +2588 E318 10000 +2589 E319 00000 +2590 E300 00000 +2591 E301 10000 +2591 E308 10000 +2592 E340 00000 +2593 E342 00000 +2594 E343 00000 +25950 E3450 00000 +25951 E3451 00000 +25952 E3452 00000 +2598 E348 10000 +2599 E349 10000 +260 E40 10000 +261 E41 10000 +261 E43 10000 +262 E43 10000 +2630 E440 00000 +2631 E441 00000 +2632 E45 10000 +2638 E46 10000 +2639 E46 10000 +2640 E500 00000 +2641 E501 00000 +2642 E502 00000 +2643 E503 00000 +2644 E504 00000 +2645 E505 00000 +2646 E506 00000 +2647 E507 00000 +2648 E508 00000 +2649 E509 10000 +2650 E5111 10000 +2650 E5112 10000 +2651 E518 10000 +2651 E519 10000 +2652 E52 00000 +2660 E530 00000 +2661 E531 00000 +2662 E538 10000 +2669 E539 10000 +267 E54 10000 +2680 E550 00000 +2681 E643 10000 +2682 M839 10000 +2689 E559 00000 +2690 E561 00000 +2691 E560 10000 +2691 E568 10000 +2692 E569 10000 +2693 E58 10000 +2693 E59 10000 +2693 E60 10000 +2693 E614 10000 +2693 E615 10000 +2698 E638 10000 +2699 E639 10000 +2700 E7200 10000 +2700 E7201 10000 +2700 E7204 10000 +2700 E7209 10000 +2701 E700 10000 +2702 E7021 10000 +2702 E7029 10000 +2702 E7030 10000 +2702 E705 10000 +2702 E708 10000 +2703 E710 10000 +2703 E71120 10000 +2703 E7119 10000 +2703 E712 10000 +2704 E7210 10000 +2704 E7211 10000 +2704 E7219 10000 +2705 E7040 10000 +2706 E7220 10000 +2706 E7221 10000 +2706 E7222 10000 +2706 E7223 10000 +2706 E7229 10000 +2707 E723 10000 +2707 E728 10000 +2708 E7203 10000 +2708 E728 10000 +2709 E729 00000 +2710 E7400 10000 +2710 E7401 10000 +2710 E7404 10000 +2710 E7409 10000 +2710 E744 10000 +2711 E7421 10000 +2712 E7411 10000 +2712 E7412 10000 +2713 E7439 10000 +2714 E748 10000 +2718 E7252 10000 +2718 E7253 10000 +2718 E744 10000 +2718 E748 10000 +2718 E771 10000 +2719 E749 00000 +2720 E7800 10000 +2720 E7801 10000 +2721 E781 00000 +2722 E782 00000 +2723 E783 00000 +2724 E784 10000 +2724 E785 10000 +2725 E786 00000 +2726 E881 00000 +2727 E7521 10000 +2727 E7522 10000 +2727 E75249 10000 +2727 E770 10000 +2727 E771 10000 +2728 E7881 10000 +2728 E7889 10000 +2728 E8889 10000 +2729 E789 10000 +2730 D890 00000 +2731 D472 10000 +2732 D891 00000 +2733 C880 10000 +2734 E8801 00000 +2738 E8809 10000 +2739 E8809 10000 +27400 M1000 10000 +27401 M1000 10000 +27402 M1A9XX0 10000 +27403 M1A00X1 10000 +27403 M1A20X1 10000 +27403 M1A30X1 10000 +27403 M1A40X1 10000 +27403 M1A9XX1 10000 +27410 M1030 10000 +27411 N200 10000 +27419 M1030 10000 +27481 M109 10000 +27482 M109 10000 +27489 M1040 10000 +2749 M109 10000 +27501 E83110 00000 +27502 E83111 00000 +27503 E83118 10000 +27503 E83119 10000 +27509 E8310 10000 +27509 E8319 10000 +2751 E8300 10000 +2751 E8301 10000 +2751 E8309 10000 +2752 E8340 10000 +2752 E8341 10000 +2752 E8342 10000 +2752 E8349 10000 +2753 E8330 10000 +2753 E8331 10000 +2753 E8332 10000 +2753 E8339 10000 +27540 E8350 00000 +27541 E8351 00000 +27542 E8352 00000 +27549 E201 10000 +27549 E8359 10000 +2755 E8381 00000 +2758 E8389 00000 +2759 E839 00000 +2760 E870 00000 +2761 E871 00000 +2762 E872 00000 +2763 E873 00000 +2764 E874 00000 +27650 E869 00000 +27651 E860 00000 +27652 E861 00000 +27661 E8771 00000 +27669 E8770 10000 +27669 E8779 10000 +2767 E875 00000 +2768 E876 00000 +2769 E878 00000 +27700 E849 00000 +27701 E8411 00000 +27702 E840 00000 +27703 E8419 10000 +27709 E848 00000 +2771 E800 10000 +2771 E8020 10000 +2771 E8029 10000 +2772 E791 10000 +2772 E798 10000 +27730 E859 10000 +27731 E850 10000 +27731 M041 10000 +27739 E851 10000 +27739 E853 10000 +27739 E858 10000 +2774 E804 10000 +2774 E805 10000 +2774 E806 10000 +2774 E807 10000 +2775 E7601 10000 +2775 E7603 10000 +2775 E761 10000 +2775 E76219 10000 +2775 E7622 10000 +2775 E7629 10000 +2775 E763 10000 +2776 D841 10000 +2777 E8881 00000 +27781 E7141 00000 +27782 E7142 00000 +27783 E7143 00000 +27784 E71448 10000 +27785 E71310 10000 +27785 E71311 10000 +27785 E71312 10000 +27785 E71313 10000 +27785 E71314 10000 +27785 E71318 10000 +27786 E7150 10000 +27786 E71510 10000 +27786 E71511 10000 +27786 E71522 10000 +27786 E71529 10000 +27786 E71548 10000 +27787 E8840 10000 +27787 E8841 10000 +27787 E8842 10000 +27787 E8849 10000 +27787 H49819 10000 +27788 E883 00000 +27789 C965 10000 +27789 C966 10000 +27789 E7139 10000 +27789 E803 10000 +27789 E8889 10000 +27789 E889 10000 +2779 E889 10000 +27800 E669 10000 +27801 E6601 10000 +27802 E663 00000 +27803 E662 00000 +2781 E65 00000 +2782 E670 00000 +2783 E671 00000 +2784 E673 00000 +2788 E678 10000 +27900 D801 00000 +27901 D802 00000 +27902 D804 00000 +27903 D803 10000 +27904 D800 00000 +27905 D805 00000 +27906 D831 10000 +27909 D806 10000 +27909 D807 10000 +27909 D808 10000 +27909 D809 10000 +27910 D848 10000 +27911 D821 00000 +27912 D820 00000 +27913 D814 00000 +27919 D848 10000 +2792 D810 10000 +2792 D811 10000 +2792 D812 10000 +2792 D8189 10000 +2792 D819 10000 +2793 D849 10000 +27941 D8982 00000 +27949 D8989 10000 +27950 D89813 00000 +27951 D89810 00000 +27952 D89811 00000 +27953 D89812 00000 +2798 D841 10000 +2798 D8940 10000 +2798 D8941 10000 +2798 D8942 10000 +2798 D8943 10000 +2798 D8949 10000 +2798 D8989 10000 +2798 M359 10000 +2799 D899 00000 +2800 D500 00000 +2801 D508 10000 +2808 D501 10000 +2808 D508 10000 +2809 D509 00000 +2810 D510 10000 +2811 D511 10000 +2811 D513 10000 +2811 D518 10000 +2812 D520 10000 +2812 D521 10000 +2812 D528 10000 +2812 D529 10000 +2813 D531 00000 +2814 D530 00000 +2818 D532 10000 +2818 D538 10000 +2819 D539 10000 +2820 D580 00000 +2821 D581 00000 +2822 D550 10000 +2822 D551 10000 +2823 D558 10000 +28240 D569 00000 +28241 D5740 00000 +28242 D57419 10000 +28243 D560 00000 +28244 D561 00000 +28245 D562 00000 +28246 D563 00000 +28247 D565 00000 +28249 D568 00000 +2825 D573 00000 +28260 D571 10000 +28261 D571 10000 +28262 D5700 10000 +28263 D5720 00000 +28264 D57219 10000 +28268 D5780 00000 +28269 D57819 10000 +2827 D564 10000 +2827 D582 10000 +2828 D588 00000 +2829 D589 00000 +2830 D590 10000 +2830 D591 10000 +28310 D594 10000 +28311 D593 00000 +28319 D594 10000 +2832 D595 10000 +2832 D596 10000 +2832 D598 10000 +2839 D599 00000 +28401 D6101 00000 +28409 D6109 00000 +28411 D61810 00000 +28412 D61811 00000 +28419 D61818 00000 +2842 D6182 00000 +28481 D600 10000 +28481 D601 10000 +28481 D608 10000 +28481 D609 10000 +28489 D611 10000 +28489 D612 10000 +28489 D6189 10000 +2849 D619 10000 +2850 D640 10000 +2850 D641 10000 +2850 D642 10000 +2850 D643 10000 +2851 D62 00000 +28521 D631 10000 +28522 D630 00000 +28529 D638 10000 +2853 D6481 00000 +2858 D644 10000 +2858 D6489 10000 +2859 D649 00000 +2860 D66 00000 +2861 D67 00000 +2862 D681 00000 +2863 D682 00000 +2864 D680 00000 +28652 D68311 00000 +28653 D68312 00000 +28659 D68318 00000 +2866 D65 00000 +2867 D6832 10000 +2867 D684 10000 +2869 D688 10000 +2869 D689 10000 +2870 D690 00000 +2871 D691 00000 +2872 D692 00000 +28730 D6949 10000 +28731 D693 10000 +28732 D6941 00000 +28733 D6942 00000 +28739 D693 10000 +28739 D6949 10000 +28741 D6951 00000 +28749 D6959 00000 +2875 D696 00000 +2878 D698 00000 +2879 D699 00000 +28800 D709 00000 +28801 D700 00000 +28802 D704 00000 +28803 D701 10000 +28803 D702 10000 +28804 D703 00000 +28809 D708 00000 +2881 D71 00000 +2882 D720 00000 +2883 D721 00000 +2884 D761 10000 +2884 D762 10000 +2884 D763 10000 +28850 D72819 10000 +28851 D72810 00000 +28859 D72818 00000 +28860 D72829 00000 +28861 D72820 00000 +28862 D72823 00000 +28863 D72821 00000 +28864 D72822 00000 +28865 D72824 00000 +28866 D72825 00000 +28869 D72828 00000 +2888 D7289 00000 +2889 D729 00000 +2890 D751 00000 +2891 I881 00000 +2892 I880 00000 +2893 I889 10000 +2894 D731 00000 +28950 D739 00000 +28951 D732 00000 +28952 D5702 10000 +28952 D57212 10000 +28952 D57412 10000 +28953 D7381 00000 +28959 D733 10000 +28959 D734 10000 +28959 D735 10000 +28959 D7389 10000 +2896 D750 00000 +2897 D740 10000 +2897 D748 10000 +2897 D749 10000 +28981 D6851 10000 +28981 D6852 10000 +28981 D6859 10000 +28981 D6861 10000 +28981 D6862 10000 +28982 D6869 10000 +28983 D7581 00000 +28984 D7582 00000 +28989 D474 10000 +28989 D7589 10000 +28989 D892 10000 +2899 D759 10000 +2900 F0390 10000 +29010 F0390 10000 +29011 F0390 10000 +29012 F0390 10111 +29012 F05 10112 +29013 F0390 10000 +29020 F0390 10111 +29020 F05 10112 +29021 F0390 10000 +2903 F0390 10111 +2903 F05 10112 +29040 F0150 10000 +29041 F0151 10000 +29042 F0151 10000 +29043 F0151 10000 +2908 F0390 10000 +2909 F0390 10000 +2910 F10231 10000 +2911 F1096 10000 +2912 F1027 10000 +2913 F10951 10000 +2914 F10929 10000 +2915 F10950 10000 +29181 F10239 10000 +29182 F10182 10000 +29182 F10282 10000 +29182 F10982 10000 +29189 F10159 10000 +29189 F10180 10000 +29189 F10181 10000 +29189 F10188 10000 +29189 F10259 10000 +29189 F10280 10000 +29189 F10281 10000 +29189 F10288 10000 +29189 F10959 10000 +29189 F10980 10000 +2919 F1099 10000 +2920 F19939 10000 +29211 F19950 10000 +29212 F19951 10000 +2922 F15920 10000 +29281 F19921 10000 +29282 F1997 10000 +29283 F1996 10000 +29284 F1994 10000 +29285 F11182 10000 +29285 F11282 10000 +29285 F11982 10000 +29285 F13182 10000 +29285 F13282 10000 +29285 F13982 10000 +29285 F14182 10000 +29285 F14282 10000 +29285 F14982 10000 +29285 F15182 10000 +29285 F15282 10000 +29285 F15982 10000 +29285 F19182 10000 +29285 F19282 10000 +29285 F19982 10000 +29289 F11159 10000 +29289 F11181 10000 +29289 F11188 10000 +29289 F11222 10000 +29289 F11259 10000 +29289 F11281 10000 +29289 F11288 10000 +29289 F11922 10000 +29289 F11959 10000 +29289 F11981 10000 +29289 F11988 10000 +29289 F12122 10000 +29289 F12159 10000 +29289 F12180 10000 +29289 F12188 10000 +29289 F12222 10000 +29289 F12259 10000 +29289 F12280 10000 +29289 F12288 10000 +29289 F12922 10000 +29289 F12959 10000 +29289 F12980 10000 +29289 F12988 10000 +29289 F13159 10000 +29289 F13180 10000 +29289 F13181 10000 +29289 F13188 10000 +29289 F13259 10000 +29289 F13280 10000 +29289 F13281 10000 +29289 F13288 10000 +29289 F13959 10000 +29289 F13980 10000 +29289 F13981 10000 +29289 F13988 10000 +29289 F14122 10000 +29289 F14159 10000 +29289 F14180 10000 +29289 F14181 10000 +29289 F14188 10000 +29289 F14222 10000 +29289 F14259 10000 +29289 F14280 10000 +29289 F14281 10000 +29289 F14288 10000 +29289 F14922 10000 +29289 F14959 10000 +29289 F14980 10000 +29289 F14981 10000 +29289 F14988 10000 +29289 F15122 10000 +29289 F15159 10000 +29289 F15180 10000 +29289 F15181 10000 +29289 F15188 10000 +29289 F15222 10000 +29289 F15259 10000 +29289 F15280 10000 +29289 F15281 10000 +29289 F15288 10000 +29289 F15922 10000 +29289 F15959 10000 +29289 F15980 10000 +29289 F15981 10000 +29289 F15988 10000 +29289 F16122 10000 +29289 F16159 10000 +29289 F16180 10000 +29289 F16183 10000 +29289 F16188 10000 +29289 F16259 10000 +29289 F16280 10000 +29289 F16283 10000 +29289 F16288 10000 +29289 F16959 10000 +29289 F16980 10000 +29289 F16983 10000 +29289 F16988 10000 +29289 F17208 10000 +29289 F17218 10000 +29289 F17228 10000 +29289 F17298 10000 +29289 F18159 10000 +29289 F18180 10000 +29289 F18188 10000 +29289 F18259 10000 +29289 F18280 10000 +29289 F18288 10000 +29289 F18959 10000 +29289 F18980 10000 +29289 F18988 10000 +29289 F19122 10000 +29289 F19159 10000 +29289 F19180 10000 +29289 F19181 10000 +29289 F19188 10000 +29289 F19222 10000 +29289 F19259 10000 +29289 F19280 10000 +29289 F19281 10000 +29289 F19288 10000 +29289 F19922 10000 +29289 F19959 10000 +29289 F19980 10000 +29289 F19981 10000 +29289 F19988 10000 +2929 F1999 10000 +2930 F05 10000 +2931 F05 10000 +29381 F062 00000 +29382 F060 10000 +29383 F0630 10000 +29384 F064 00000 +29389 F061 10000 +29389 F53 10000 +2939 F068 10000 +2940 F04 10000 +29410 F0280 00000 +29411 F0281 00000 +29420 F0390 00000 +29421 F0391 00000 +2948 F060 10000 +2948 F068 10000 +2949 F068 10000 +29500 F2089 10000 +29501 F2089 10000 +29502 F2089 10000 +29503 F2089 10000 +29504 F2089 10000 +29505 F2089 10000 +29510 F201 10000 +29511 F201 10000 +29512 F201 10000 +29513 F201 10000 +29514 F201 10000 +29515 F201 10000 +29520 F202 10000 +29521 F202 10000 +29522 F202 10000 +29523 F202 10000 +29524 F202 10000 +29525 F202 10000 +29530 F200 10000 +29531 F200 10000 +29532 F200 10000 +29533 F200 10000 +29534 F200 10000 +29535 F200 10000 +29540 F2081 10000 +29541 F2081 10000 +29542 F2081 10000 +29543 F2081 10000 +29544 F2081 10000 +29545 F2081 10000 +29550 F2089 10000 +29551 F2089 10000 +29552 F2089 10000 +29553 F2089 10000 +29554 F2089 10000 +29555 F2089 10000 +29560 F205 10000 +29561 F205 10000 +29562 F205 10000 +29563 F205 10000 +29564 F205 10000 +29565 F205 10000 +29570 F259 10000 +29571 F259 10000 +29572 F259 10000 +29573 F259 10000 +29574 F259 10000 +29575 F259 10000 +29580 F2089 10000 +29581 F2089 10000 +29582 F2089 10000 +29583 F2089 10000 +29584 F2089 10000 +29585 F2089 10000 +29590 F209 10000 +29591 F209 10000 +29592 F209 10000 +29593 F209 10000 +29594 F209 10000 +29595 F209 10000 +29600 F3010 10000 +29601 F3011 10000 +29602 F3012 10000 +29603 F3013 10000 +29604 F302 10000 +29605 F303 10000 +29606 F304 10000 +29610 F3010 10000 +29611 F3011 10000 +29612 F3012 10000 +29613 F3013 10000 +29614 F302 10000 +29615 F303 10000 +29616 F304 10000 +29620 F329 10000 +29621 F320 00000 +29622 F321 00000 +29623 F322 00000 +29624 F323 10000 +29625 F324 00000 +29626 F325 00000 +29630 F339 10000 +29631 F330 00000 +29632 F331 00000 +29633 F332 00000 +29634 F333 10000 +29635 F3341 00000 +29636 F3342 00000 +29640 F3110 10000 +29641 F3111 00000 +29642 F3112 00000 +29643 F3113 00000 +29644 F312 00000 +29645 F3173 10000 +29646 F3174 10000 +29650 F3130 10000 +29651 F3131 00000 +29652 F3132 00000 +29653 F314 00000 +29654 F315 00000 +29655 F3175 00000 +29656 F3176 00000 +29660 F3160 00000 +29661 F3161 00000 +29662 F3162 00000 +29663 F3163 00000 +29664 F3164 00000 +29665 F3177 00000 +29666 F3178 00000 +2967 F319 10000 +29680 F319 10000 +29681 F308 10000 +29682 F3289 10000 +29689 F3181 10000 +29690 F39 10000 +29699 F3481 10000 +29699 F3489 10000 +2970 F22 10000 +2971 F22 10000 +2972 F22 10000 +2973 F24 00000 +2978 F22 10000 +2979 F23 10000 +2980 F323 10000 +2980 F333 10000 +2981 F28 10000 +2982 F4489 10000 +2983 F23 10000 +2984 F23 10000 +2988 F23 10000 +2989 F29 10000 +29900 F840 10000 +29901 F840 10000 +29910 F843 10000 +29911 F843 10000 +29980 F845 10000 +29980 F848 10000 +29981 F845 10000 +29981 F848 10000 +29990 F849 10000 +29991 F849 10000 +30000 F419 00000 +30001 F410 00000 +30002 F411 00000 +30009 F418 10000 +30010 F449 10000 +30011 F444 10000 +30011 F446 10000 +30012 F440 00000 +30013 F441 00000 +30014 F4481 00000 +30015 F449 10000 +30016 F4489 10000 +30016 F6811 10000 +30019 F688 10000 +30020 F409 10000 +30021 F4001 00000 +30022 F4002 10000 +30023 F4010 10000 +30029 F40218 10000 +30029 F40240 10000 +30029 F40241 10000 +30029 F408 10000 +3003 F422 10000 +3003 F423 10000 +3003 F428 10000 +3003 F429 10000 +3004 F341 10000 +3005 F488 10000 +3006 F481 00000 +3007 F4521 10000 +3007 F4522 10000 +30081 F450 00000 +30082 F451 10000 +30082 F459 10000 +30089 F458 10000 +30089 F488 10000 +3009 F489 10000 +3009 F99 10000 +3010 F600 00000 +30110 F340 10000 +30111 F6089 10000 +30112 F341 10000 +30113 F340 10000 +30120 F601 10000 +30121 F601 10000 +30122 F21 00000 +3013 F603 10000 +3014 F605 00000 +30150 F604 10000 +30151 F6812 10000 +30159 F604 10000 +3016 F607 00000 +3017 F602 00000 +30181 F6081 00000 +30182 F606 00000 +30183 F603 10000 +30184 F6089 10000 +30189 F6089 10000 +3019 F609 10000 +3020 F66 10000 +3021 F6589 10000 +3022 F654 00000 +3023 F651 00000 +3024 F652 00000 +30250 F640 10000 +30250 Z87890 10000 +30251 F640 10000 +30252 F640 10000 +30253 F640 10000 +3026 F642 10000 +30270 R37 10000 +30271 F520 00000 +30272 F5221 10000 +30272 F528 10000 +30273 F5231 00000 +30274 F5232 00000 +30275 F524 00000 +30276 F526 00000 +30279 F521 10000 +30279 F528 10000 +30281 F650 00000 +30282 F653 00000 +30283 F6551 00000 +30284 F6552 10000 +30285 F641 10000 +30289 F6581 10000 +30289 F6589 10000 +30289 F66 10000 +3029 F659 10000 +30300 F10229 10000 +30301 F10229 10000 +30302 F10229 10000 +30303 F10229 10000 +30390 F1020 10000 +30391 F1020 10000 +30392 F1020 10000 +30393 F1021 00000 +30400 F1120 10000 +30401 F1120 10000 +30402 F1120 10000 +30403 F1121 00000 +30410 F1320 10000 +30411 F1320 10000 +30412 F1320 10000 +30413 F1321 00000 +30420 F1420 10000 +30421 F1420 10000 +30422 F1420 10000 +30423 F1421 00000 +30430 F1220 10000 +30431 F1220 10000 +30432 F1220 10000 +30433 F1221 00000 +30440 F1520 10000 +30441 F1520 10000 +30442 F1520 10000 +30443 F1521 10000 +30450 F1620 10000 +30451 F1620 10000 +30452 F1620 10000 +30453 F1621 00000 +30460 F1920 10000 +30461 F1920 10000 +30462 F1920 10000 +30463 F1921 10000 +30470 F1920 10000 +30471 F1920 10000 +30472 F1920 10000 +30473 F1921 10000 +30480 F1920 10000 +30481 F1920 10000 +30482 F1920 10000 +30483 F1921 10000 +30490 F1920 10000 +30491 F1920 10000 +30492 F1920 10000 +30493 F1921 10000 +30500 F1010 10000 +30501 F1010 10000 +30502 F1010 10000 +30503 F1010 10000 +3051 F17200 10000 +30520 F1210 10000 +30521 F1210 10000 +30521 F1290 10000 +30522 F1210 10000 +30522 F1290 10000 +30523 F1210 10000 +30523 F1290 10000 +30530 F1610 10000 +30531 F1610 10000 +30532 F1610 10000 +30533 F1610 10000 +30540 F1310 10000 +30541 F1310 10000 +30542 F1310 10000 +30543 F1310 10000 +30550 F1110 10000 +30551 F1110 10000 +30552 F1110 10000 +30553 F1110 10000 +30560 F1410 10000 +30561 F1410 10000 +30562 F1410 10000 +30563 F1410 10000 +30570 F1510 10000 +30571 F1510 10000 +30572 F1510 10000 +30573 F1510 10000 +30580 F1910 10000 +30581 F1910 10000 +30582 F1910 10000 +30583 F1910 10000 +30590 F1810 10000 +30591 F1810 10000 +30592 F1810 10000 +30593 F1810 10000 +3060 F458 10000 +3061 F458 10000 +3062 F458 10000 +3063 F424 10000 +3063 F458 10000 +3064 F458 10000 +30650 F458 10000 +30651 F525 00000 +30652 F458 10000 +30653 F458 10000 +30659 F458 10000 +3066 F458 10000 +3067 F458 10000 +3068 F458 10000 +3068 F59 10000 +3069 F459 10000 +3070 F985 00000 +3071 F5000 10000 +30720 F959 10000 +30721 F950 00000 +30722 F951 00000 +30723 F952 00000 +3073 F984 00000 +30740 F519 00000 +30741 F5102 10000 +30741 F5109 10000 +30742 F5101 10000 +30742 F5103 10000 +30742 F5109 10000 +30743 F5119 10000 +30744 F5111 10000 +30744 F5112 10000 +30744 F5119 10000 +30745 F518 10000 +30746 F513 10000 +30747 F518 10000 +30748 F518 10000 +30749 F518 10000 +30750 F509 00000 +30751 F502 00000 +30752 F983 10000 +30753 F9821 10000 +30754 F5089 10000 +30759 F5081 10000 +30759 F5089 10000 +30759 F9829 10000 +3076 F980 00000 +3077 F981 00000 +30780 F4541 10000 +30781 G44209 10000 +30789 F4542 10000 +3079 F633 10000 +3079 R451 10000 +3080 F430 10000 +3081 F430 10000 +3082 F430 10000 +3083 F430 10000 +3084 F430 10000 +3089 F430 10000 +3089 R457 10000 +3090 F4321 10000 +3091 F4321 10000 +30921 F930 00000 +30922 F948 10000 +30923 F948 10000 +30924 F4322 00000 +30928 F4323 00000 +30929 F4329 10000 +30929 F948 10000 +3093 F4324 00000 +3094 F4325 00000 +30981 F4310 10000 +30981 F4312 10000 +30982 F438 10000 +30983 F438 10000 +30989 F438 10000 +3099 F4320 10000 +3100 F070 10000 +3101 F070 10000 +3102 F0781 00000 +31081 F482 00000 +31089 F0789 10000 +3109 F09 10000 +311 F329 10000 +31200 F911 10000 +31201 F911 10000 +31202 F911 10000 +31203 F911 10000 +31210 F918 10000 +31211 F918 10000 +31212 F918 10000 +31213 F918 10000 +31220 F912 10000 +31221 F912 10000 +31222 F912 10000 +31223 F912 10000 +31230 F639 00000 +31231 F630 00000 +31232 F632 00000 +31233 F631 00000 +31234 F6381 10000 +31235 F6381 10000 +31239 F633 10000 +31239 F6389 10000 +3124 F918 10000 +31281 F911 10000 +31282 F912 10000 +31289 F918 10000 +3129 F919 00000 +3130 F938 10000 +3131 F938 10000 +31321 F938 10000 +31322 F938 10000 +31323 F940 00000 +3133 F938 10000 +31381 F913 00000 +31382 F938 10000 +31383 F938 10000 +31389 F938 10000 +31389 F941 10000 +31389 F988 10000 +3139 F939 10000 +3139 F948 10000 +3139 F989 10000 +31400 F900 10000 +31400 F909 10000 +31401 F901 10000 +31401 F902 10000 +31401 F909 10000 +3141 F908 10000 +3142 F908 10000 +3148 F908 10000 +3149 F909 10000 +31500 F810 10000 +31501 R480 10000 +31502 F810 10000 +31509 F8181 10000 +3151 F812 00000 +3152 F8181 10000 +3152 F8189 10000 +31531 F801 00000 +31532 F802 10000 +31532 H9325 10000 +31534 F804 00000 +31535 F8081 00000 +31539 F800 10000 +31539 F8082 10000 +31539 F8089 10000 +3154 F82 10000 +3155 F82 10000 +3158 F88 10000 +3159 F819 10000 +3159 F89 10000 +316 F54 00000 +317 F70 00000 +3180 F71 00000 +3181 F72 00000 +3182 F73 00000 +319 F79 10000 +3200 G000 00000 +3201 G001 00000 +3202 G002 00000 +3203 G003 00000 +3207 G01 00000 +32081 G008 10000 +32082 G009 10000 +32089 G008 10000 +3209 G009 10000 +3209 G042 10000 +3210 B451 10000 +3211 G02 10000 +3212 G02 10000 +3213 G02 10000 +3214 G02 10000 +3218 G02 10000 +3220 G030 00000 +3221 G038 10000 +3222 G031 00000 +3229 G039 00000 +32301 G053 10000 +32302 G054 10000 +3231 G053 10000 +3232 G053 10000 +32341 G053 10000 +32342 G054 10000 +32351 G0402 10000 +32351 G0432 10000 +32352 G0402 10000 +32361 G0400 10000 +32361 G0401 10000 +32361 G0439 10000 +32362 G0430 10000 +32362 G0431 10000 +32363 G054 10000 +32371 G92 10000 +32372 G92 10000 +32381 G0481 10000 +32382 G0489 10000 +3239 G0490 10000 +3239 G0491 10000 +3240 G060 10000 +3241 G061 10000 +3249 G062 10000 +325 G08 00000 +326 G09 10000 +32700 G4701 10000 +32701 G4701 10000 +32702 F5104 10000 +32702 F5105 10000 +32709 G4709 10000 +32710 G4710 10000 +32711 G4711 00000 +32712 G4712 00000 +32713 G4713 00000 +32714 G4714 00000 +32715 F5113 10000 +32719 G4719 10000 +32720 G4730 10000 +32721 G4731 00000 +32722 G4732 00000 +32723 G4733 00000 +32724 G4734 00000 +32725 G4735 00000 +32726 G4736 00000 +32727 G4737 00000 +32729 G4739 10000 +32730 G4720 10000 +32731 G4721 00000 +32732 G4722 00000 +32733 G4723 00000 +32734 G4724 00000 +32735 G4725 00000 +32736 G4726 00000 +32737 G4727 00000 +32739 G4729 00000 +32740 G4750 00000 +32741 G4751 00000 +32742 G4752 00000 +32743 G4753 00000 +32744 G4754 00000 +32749 G4759 00000 +32751 G4761 00000 +32752 G4762 00000 +32753 G4763 00000 +32759 G4769 10000 +3278 G478 10000 +3300 E7523 10000 +3300 E7525 10000 +3300 E7529 10000 +3301 E7502 10000 +3301 E7519 10000 +3301 E754 10000 +3302 G9389 10000 +3303 G939 10000 +3308 F842 10000 +3308 G3181 10000 +3308 G3182 10000 +3309 G319 10000 +3310 G309 10000 +33111 G3101 00000 +33119 G3109 00000 +3312 G311 00000 +3313 G910 00000 +3314 G911 10000 +3315 G912 00000 +3316 G3185 00000 +3317 G94 10000 +33181 G937 00000 +33182 G3183 00000 +33183 G3184 00000 +33189 G3189 10000 +3319 G319 10000 +3320 G20 10000 +3321 G2111 10000 +3321 G2119 10000 +3321 G218 10000 +3330 G230 10000 +3330 G231 10000 +3330 G232 10000 +3330 G238 10000 +3331 G250 10000 +3331 G251 10000 +3331 G252 10000 +3332 G253 00000 +3333 G2561 10000 +3333 G2569 10000 +3334 G10 00000 +3335 G254 10000 +3335 G255 10000 +3336 G241 00000 +33371 G803 00000 +33372 G2402 00000 +33379 G248 10000 +33381 G245 00000 +33382 G244 00000 +33383 G243 00000 +33384 G2589 10000 +33385 G2401 00000 +33389 G249 10000 +33390 G259 10000 +33391 G2582 00000 +33392 G210 00000 +33393 G2583 00000 +33394 G2581 00000 +33399 G2589 10000 +33399 G259 10000 +3340 G111 10000 +3341 G114 10000 +3342 G110 10000 +3342 G112 10000 +3343 G111 10000 +3344 G3281 00000 +3348 G113 10000 +3348 G118 10000 +3349 G119 10000 +3350 G120 00000 +33510 G129 10000 +33511 G121 10000 +33519 G128 10000 +33520 G1221 10000 +33521 G1221 10000 +33522 G1222 00000 +33523 G128 10000 +33524 G1229 10000 +33529 G1229 10000 +3358 G128 10000 +3359 G129 10000 +3360 G950 00000 +3361 G9519 10000 +3362 G320 00000 +3363 G992 10000 +3368 G9589 10000 +3369 G959 10000 +33700 G9009 10000 +33701 G9001 10000 +33709 G9009 10000 +3371 G990 00000 +33720 G9059 10000 +33721 G90519 10000 +33722 G90529 10000 +33729 G9059 10000 +3373 G904 00000 +3379 G909 10000 +3380 G890 00000 +33811 G8911 00000 +33812 G8912 00000 +33818 G8918 00000 +33819 R52 10000 +33821 G8921 00000 +33822 G8922 00000 +33828 G8928 00000 +33829 G8929 00000 +3383 G893 00000 +3384 G894 00000 +33900 G44009 10000 +33901 G44019 10000 +33902 G44029 10000 +33903 G44039 10000 +33904 G44049 10000 +33905 G44059 10000 +33909 G44099 10000 +33910 G44209 10000 +33911 G44219 10000 +33912 G44221 10000 +33912 G44229 10000 +33920 G44309 10000 +33921 G44319 10000 +33922 G44329 10000 +3393 G4441 10000 +33941 G4451 00000 +33942 G4452 00000 +33943 G4453 00000 +33944 G4459 00000 +33981 G4481 00000 +33982 G4482 00000 +33983 G4483 00000 +33984 G4484 00000 +33985 G4485 00000 +33989 G4489 00000 +340 G35 00000 +3410 G360 00000 +3411 G370 10000 +3411 G375 10000 +34120 G373 10000 +34121 G373 10000 +34122 G373 10000 +3418 G371 10000 +3418 G372 10000 +3418 G378 10000 +3419 G379 10000 +34200 G8100 10000 +34201 G8101 10000 +34201 G8102 10000 +34202 G8103 10000 +34202 G8104 10000 +34210 G8110 10000 +34211 G8111 10000 +34211 G8112 10000 +34212 G8113 10000 +34212 G8114 10000 +34280 G8190 10000 +34281 G8191 10000 +34281 G8192 10000 +34282 G8193 10000 +34282 G8194 10000 +34290 G8190 10000 +34291 G8191 10000 +34291 G8192 10000 +34292 G8193 10000 +34292 G8194 10000 +3430 G801 00000 +3431 G802 10000 +3432 G800 00000 +3433 G808 10000 +3434 G802 10000 +3438 G808 10000 +3439 G809 00000 +34400 G8250 10000 +34401 G8251 00000 +34402 G8252 00000 +34403 G8253 00000 +34404 G8254 00000 +34409 G8250 10000 +3441 G8220 10000 +3442 G830 00000 +34430 G8310 10000 +34431 G8311 10000 +34431 G8312 10000 +34432 G8313 10000 +34432 G8314 10000 +34440 G8320 10000 +34441 G8321 10000 +34441 G8322 10000 +34442 G8323 10000 +34442 G8324 10000 +3445 G8330 10000 +34460 G834 10000 +34461 G834 10000 +34481 G835 00000 +34489 G8381 10000 +34489 G8384 10000 +34489 G8389 10000 +3449 G839 10000 +34500 G40A01 10000 +34500 G40A09 10000 +34501 G40A11 10000 +34501 G40A19 10000 +34510 G40309 10000 +34510 G40401 10000 +34510 G40409 10000 +34511 G40311 10000 +34511 G40411 10000 +34511 G40419 10000 +3452 G40A01 10000 +3452 G40A09 10000 +3452 G40A11 10000 +3452 G40A19 10000 +3453 G40301 10000 +34540 G40201 10000 +34540 G40209 10000 +34541 G40211 10000 +34541 G40219 10000 +34550 G40101 10000 +34550 G40109 10000 +34551 G40111 10000 +34551 G40119 10000 +34560 G40821 10000 +34560 G40822 10000 +34561 G40823 10000 +34561 G40824 10000 +34570 G40101 10000 +34570 G40109 10000 +34571 G40111 10000 +34571 G40119 10000 +34580 G40101 10000 +34580 G40109 10000 +34580 G40501 10000 +34580 G40509 10000 +34580 G40802 10000 +34581 G40111 10000 +34581 G40119 10000 +34581 G40804 10000 +34590 G40901 10000 +34590 G40909 10000 +34591 G40911 10000 +34591 G40919 10000 +34600 G43109 00000 +34601 G43119 00000 +34602 G43101 00000 +34603 G43111 00000 +34610 G43009 00000 +34611 G43019 00000 +34612 G43001 00000 +34613 G43011 00000 +34620 G43809 10000 +34620 G43A0 10000 +34620 G43B0 10000 +34620 G43C0 10000 +34620 G43D0 10000 +34621 G43819 10000 +34621 G43A1 10000 +34621 G43B1 10000 +34621 G43C1 10000 +34621 G43D1 10000 +34622 G43801 10000 +34623 G43811 10000 +34630 G43409 00000 +34631 G43419 00000 +34632 G43401 00000 +34633 G43411 00000 +34640 G43829 00000 +34641 G43839 00000 +34642 G43821 00000 +34643 G43831 00000 +34650 G43509 00000 +34651 G43519 00000 +34652 G43501 00000 +34653 G43511 00000 +34660 G43609 00000 +34661 G43619 00000 +34662 G43601 00000 +34663 G43611 00000 +34670 G43709 00000 +34671 G43719 00000 +34672 G43701 00000 +34673 G43711 00000 +34680 G43809 10000 +34681 G43819 10000 +34682 G43801 10000 +34683 G43811 10000 +34690 G43909 00000 +34691 G43919 00000 +34692 G43901 00000 +34693 G43911 00000 +34700 G47419 00000 +34701 G47411 00000 +34710 G47429 00000 +34711 G47421 00000 +3480 G930 00000 +3481 G931 00000 +3482 G932 00000 +34830 G9340 00000 +34831 G9341 00000 +34839 G9349 10000 +34839 I6783 10000 +3484 G935 00000 +3485 G936 10000 +34881 G9381 00000 +34882 G9382 00000 +34889 G9389 10000 +3489 G939 10000 +3490 G971 10000 +3491 G9782 10000 +3492 G9612 10000 +3492 G9619 10000 +34931 G9741 00000 +34939 G9611 00000 +34981 G960 10000 +34982 G92 10000 +34989 G968 10000 +34989 G988 10000 +3499 G969 10000 +3501 G500 00000 +3502 G501 00000 +3508 G508 00000 +3509 G509 00000 +3510 G510 00000 +3511 G511 00000 +3518 G512 10000 +3518 G514 10000 +3518 G518 10000 +3519 G519 00000 +3520 G520 00000 +3521 G521 10000 +3522 G521 10000 +3523 G522 00000 +3524 G528 10000 +3525 G523 00000 +3526 G527 10000 +3529 G529 10000 +3530 G540 10000 +3531 G541 10000 +3532 G542 10000 +3533 G543 10000 +3534 G544 10000 +3535 G545 10000 +3536 G546 10000 +3536 G547 10000 +3538 G548 10000 +3539 G549 00000 +3540 G5600 10000 +3541 G5610 10000 +3542 G5620 10000 +3543 G5630 10000 +3544 G5640 10000 +3545 G587 00000 +3548 G5680 10000 +3549 G5690 10000 +3550 G5700 10000 +3551 G5710 10000 +3552 G5720 10000 +3553 G5730 10000 +3554 G5740 10000 +3555 G5750 10000 +3556 G5760 10000 +35571 G5770 10000 +35579 G5780 10000 +3558 G5790 10000 +3559 G589 10000 +3560 G600 10000 +3561 G600 10000 +3562 G600 10000 +3563 G601 00000 +3564 G603 00000 +3568 G608 10000 +3569 G609 10000 +3570 G610 00000 +3571 G63 10000 +3572 E0842 10000 +3572 E0942 10000 +3572 E1042 10000 +3572 E1142 10000 +3572 E1342 10000 +3573 G63 10000 +3574 G63 10000 +3575 G621 00000 +3576 G620 00000 +3577 G622 10000 +35781 G6181 00000 +35782 G6281 00000 +35789 G6182 10000 +35789 G6189 10000 +3579 G619 10000 +35800 G7000 00000 +35801 G7001 00000 +3581 G733 00000 +3582 G701 00000 +35830 G7080 00000 +35831 G731 00000 +35839 G7081 00000 +3588 G702 10000 +3588 G7089 10000 +3589 G709 00000 +3590 G712 10000 +3591 G710 00000 +35921 G7111 00000 +35922 G7112 00000 +35923 G7113 00000 +35924 G7114 00000 +35929 G7119 00000 +3593 G723 00000 +3594 G722 10000 +3595 G737 10000 +3596 G737 10000 +35971 G7241 00000 +35979 G7249 10000 +35981 G7281 00000 +35989 G7289 10000 +3599 G729 10000 +36000 H44009 10000 +36001 H44009 10000 +36002 H44019 10000 +36003 H44009 10000 +36004 H44029 10000 +36011 H44139 10000 +36012 H44119 10000 +36013 H33129 10000 +36013 H44129 10000 +36014 H16249 10000 +36019 H4419 00000 +36020 H4430 00000 +36021 H4423 10000 +36023 H44329 10000 +36024 H44319 10000 +36029 H44399 10000 +36030 H4440 00000 +36031 H44449 10000 +36032 H44429 10000 +36033 H44439 10000 +36034 H44419 10000 +36040 H4450 00000 +36041 H44529 10000 +36042 H44519 10000 +36043 H44819 10000 +36044 H44539 10000 +36050 H44609 10000 +36051 H44619 10000 +36052 H44629 10000 +36053 H44639 10000 +36054 H44659 10000 +36055 H44649 10000 +36059 H44699 10000 +36060 H44709 10000 +36061 H44719 10000 +36062 H44729 10000 +36063 H44739 10000 +36064 H44759 10000 +36065 H44749 10000 +36069 H44799 10000 +36081 H44829 10000 +36089 H4489 00000 +3609 H449 00000 +36100 H33009 10000 +36101 H33019 10000 +36102 H33029 10000 +36103 H33039 10000 +36104 H33049 10000 +36105 H33059 10000 +36106 H338 10000 +36107 H33059 10000 +36110 H33109 10000 +36111 H33199 10000 +36112 H33199 10000 +36113 H33199 10000 +36114 H33199 10000 +36119 H33119 10000 +36119 H33199 10000 +3612 H3323 10000 +36130 H33309 10000 +36131 H33329 10000 +36132 H33319 10000 +36133 H33339 10000 +36181 H3343 10000 +36189 H338 10000 +3619 H3320 10000 +36201 E11319 10000 +36202 E113591 10000 +36202 E113592 10000 +36202 E113593 10000 +36202 E113599 10000 +36203 E113291 10000 +36203 E113292 10000 +36203 E113293 10000 +36203 E113299 10000 +36204 E113291 10000 +36204 E113292 10000 +36204 E113293 10000 +36204 E113299 10000 +36205 E113391 10000 +36205 E113392 10000 +36205 E113393 10000 +36205 E113399 10000 +36206 E113491 10000 +36206 E113492 10000 +36206 E113493 10000 +36206 E113499 10000 +36207 E11311 10000 +36210 H3500 00000 +36211 H35039 10000 +36212 H35029 10000 +36213 H35019 10000 +36214 H35049 10000 +36215 H35079 10000 +36216 H35059 10000 +36217 H3509 00000 +36218 H35069 10000 +36220 H35109 10000 +36221 H35179 10000 +36222 H35119 10000 +36223 H35129 10000 +36224 H35139 10000 +36225 H35149 10000 +36226 H35159 10000 +36227 H35169 10000 +36229 H3523 10000 +36230 H349 00000 +36231 H3413 10000 +36232 H34239 10000 +36233 H34219 10000 +36234 H3400 10000 +36235 H348110 10000 +36235 H348111 10000 +36235 H348112 10000 +36235 H348120 10000 +36235 H348121 10000 +36235 H348122 10000 +36235 H348130 10000 +36235 H348131 10000 +36235 H348132 10000 +36235 H348190 10000 +36235 H348191 10000 +36235 H348192 10000 +36236 H348310 10000 +36236 H348311 10000 +36236 H348312 10000 +36236 H348320 10000 +36236 H348321 10000 +36236 H348322 10000 +36236 H348330 10000 +36236 H348331 10000 +36236 H348332 10000 +36236 H348390 10000 +36236 H348391 10000 +36236 H348392 10000 +36237 H34829 10000 +36240 H3570 00000 +36241 H35719 10000 +36242 H35729 10000 +36243 H35739 10000 +36250 H3530 00000 +36251 H353110 10000 +36251 H353111 10000 +36251 H353112 10000 +36251 H353113 10000 +36251 H353114 10000 +36251 H353120 10000 +36251 H353121 10000 +36251 H353122 10000 +36251 H353123 10000 +36251 H353124 10000 +36251 H353130 10000 +36251 H353131 10000 +36251 H353132 10000 +36251 H353133 10000 +36251 H353134 10000 +36251 H353190 10000 +36251 H353191 10000 +36251 H353192 10000 +36251 H353193 10000 +36251 H353194 10000 +36252 H353210 10000 +36252 H353211 10000 +36252 H353212 10000 +36252 H353213 10000 +36252 H353220 10000 +36252 H353221 10000 +36252 H353222 10000 +36252 H353223 10000 +36252 H353230 10000 +36252 H353231 10000 +36252 H353232 10000 +36252 H353233 10000 +36252 H353290 10000 +36252 H353291 10000 +36252 H353292 10000 +36252 H353293 10000 +36253 H35359 10000 +36254 H35349 10000 +36255 H35389 10000 +36256 H35379 10000 +36257 H35369 10000 +36260 H3540 00000 +36261 H35439 10000 +36262 H35429 10000 +36263 H35419 10000 +36264 H35449 10000 +36265 H35459 10000 +36266 H35469 10000 +36270 H3550 00000 +36271 H36 10000 +36272 H36 10000 +36273 H3551 00000 +36274 H3552 00000 +36275 H3553 00000 +36276 H3554 00000 +36277 H31101 10000 +36281 H3560 10000 +36282 H3589 10000 +36283 H3581 00000 +36284 H3582 00000 +36285 H3589 10000 +36289 H3589 10000 +3629 H359 00000 +36300 H30009 10000 +36301 H30019 10000 +36303 H30029 10000 +36304 H30039 10000 +36305 H30019 10000 +36306 H30049 10000 +36307 H30029 10000 +36308 H30039 10000 +36310 H30109 10000 +36311 H30119 10000 +36312 H30129 10000 +36313 H30139 10000 +36314 H30109 10000 +36315 H30149 10000 +36320 H3093 10000 +36321 H3023 10000 +36322 H30819 10000 +36330 H31009 10000 +36331 H31029 10000 +36332 H31019 10000 +36333 H31019 10000 +36334 H31099 10000 +36335 H31099 10000 +36340 H31109 10000 +36341 H31119 10000 +36342 H31129 10000 +36343 H3533 00000 +36350 H3120 00000 +36351 H3129 10000 +36352 H3129 10000 +36353 H3122 10000 +36354 H3122 10000 +36355 H3121 00000 +36356 H3129 10000 +36357 H3123 00000 +36361 H31309 10000 +36362 H31319 10000 +36363 H31329 10000 +36370 H31409 10000 +36371 H31429 10000 +36372 H31419 10000 +3638 H318 10000 +3639 H319 00000 +36400 H2000 00000 +36401 H20019 10000 +36402 H20029 10000 +36403 H20039 10000 +36404 H20049 10000 +36405 H20059 10000 +36410 H2013 10000 +36411 H209 10000 +36421 H20819 10000 +36422 H4040X0 10000 +36423 H2023 10000 +36424 H20829 10000 +3643 H209 10000 +36441 H2103 10000 +36442 H211X9 10000 +36451 H21269 10000 +36452 H21259 10000 +36453 H21239 10000 +36454 H21249 10000 +36455 H21279 10000 +36456 H21219 10000 +36457 H21229 10000 +36459 H2129 00000 +36460 H21309 10000 +36461 H21329 10000 +36462 H21319 10000 +36463 H21349 10000 +36464 H21359 10000 +36470 H21509 10000 +36471 H21549 10000 +36472 H21519 10000 +36473 H21529 10000 +36474 H2143 10000 +36475 H21569 10000 +36476 H21539 10000 +36477 H21559 10000 +36481 H2181 00000 +36482 H2182 00000 +36489 H2189 10000 +3649 H219 00000 +36500 H40009 10000 +36501 H40019 10000 +36502 H40039 10000 +36503 H40049 10000 +36504 H40059 10000 +36505 H40029 10000 +36506 H40069 10000 +36510 H4010X0 10000 +36510 H4010X1 10000 +36510 H4010X2 10000 +36510 H4010X3 10000 +36510 H4010X4 10000 +36511 H401110 10000 +36511 H401111 10000 +36511 H401112 10000 +36511 H401113 10000 +36511 H401114 10000 +36511 H401120 10000 +36511 H401121 10000 +36511 H401122 10000 +36511 H401123 10000 +36511 H401124 10000 +36511 H401130 10000 +36511 H401131 10000 +36511 H401132 10000 +36511 H401133 10000 +36511 H401134 10000 +36511 H401190 10000 +36511 H401191 10000 +36511 H401192 10000 +36511 H401193 10000 +36511 H401194 10000 +36512 H401290 10000 +36513 H401390 10000 +36514 Q150 10000 +36515 H40159 10000 +36520 H4020X0 10000 +36520 H4020X1 10000 +36520 H4020X2 10000 +36520 H4020X3 10000 +36520 H4020X4 10000 +36521 H40239 10000 +36522 H40219 10000 +36523 H402290 10000 +36524 H40249 10000 +36531 H4060X0 10000 +36532 H4060X0 10000 +36541 H4089 10000 +36542 H4089 10000 +36543 H4089 10000 +36544 H42 10000 +36551 H4089 10000 +36552 H401490 10000 +36559 H4050X0 10000 +36560 H4050X0 10000 +36561 H4050X0 10000 +36562 H4040X0 10000 +36563 H4089 10000 +36564 H4050X0 10000 +36565 H4030X0 10000 +36570 NoDx 11000 +36571 NoDx 11000 +36572 NoDx 11000 +36573 NoDx 11000 +36574 NoDx 11000 +36581 H40829 10000 +36582 H40819 10000 +36583 H40839 10000 +36589 H4089 10000 +3659 H409 00000 +36600 H26009 10000 +36601 H26049 10000 +36602 H26059 10000 +36603 H26019 10000 +36604 H26039 10000 +36609 H26069 10000 +36609 H2609 10000 +36610 H259 00000 +36611 H2589 10000 +36612 H25099 10000 +36613 H25039 10000 +36614 H25049 10000 +36615 H25019 10000 +36616 H2510 10000 +36617 H2589 10000 +36618 H2520 10000 +36619 H25819 10000 +36619 H2589 10000 +36620 H26109 10000 +36621 H26119 10000 +36622 H26139 10000 +36623 H26129 10000 +36630 H2620 00000 +36631 H26239 10000 +36632 H26229 10000 +36633 H26219 10000 +36634 H26229 10000 +36641 E0836 10000 +36641 E0936 10000 +36641 E1036 10000 +36641 E1136 10000 +36641 E1336 10000 +36642 H28 10000 +36643 H28 10000 +36644 H28 10000 +36645 H2630 10000 +36646 H268 10000 +36650 H2640 00000 +36651 H26419 10000 +36652 H26499 10000 +36653 H26499 10000 +3668 H268 10000 +3669 H269 00000 +3670 H5203 10000 +3671 H5213 10000 +36720 H52209 10000 +36721 H52229 10000 +36722 H52219 10000 +36731 H5231 00000 +36732 H5232 00000 +3674 H524 00000 +36751 H52529 10000 +36752 H52519 10000 +36753 H52539 10000 +36781 H526 10000 +36789 H526 10000 +3679 H527 00000 +36800 H53009 10000 +36801 H53039 10000 +36802 H53019 10000 +36803 H53029 10000 +36810 H5310 10000 +36811 H53139 10000 +36812 H53129 10000 +36813 H53149 10000 +36814 H5315 00000 +36815 H5319 10000 +36816 H5316 10000 +36816 R483 10000 +3682 H532 00000 +36830 H5330 00000 +36831 H5334 00000 +36832 H5333 00000 +36833 H5332 00000 +36834 H5331 00000 +36840 H5340 00000 +36841 H53419 10000 +36842 H53429 10000 +36843 H53439 10000 +36844 H53459 10000 +36845 H53489 10000 +36846 H53469 10000 +36847 H5347 00000 +36851 H5354 00000 +36852 H5353 00000 +36853 H5355 00000 +36854 H5351 00000 +36855 H5352 00000 +36859 H5359 10000 +36860 H5360 00000 +36861 H5363 00000 +36862 H5362 00000 +36863 H5361 00000 +36869 H5369 00000 +3688 H538 10000 +3689 H539 00000 +36900 H540 10000 +36901 H540 10000 +36902 H5410 10000 +36903 H5410 10000 +36904 H5410 10000 +36905 H5410 10000 +36906 H5410 10000 +36907 H5410 10000 +36908 H5410 10000 +36910 H5410 10000 +36911 H5410 10000 +36912 H5410 10000 +36913 H5410 10000 +36914 H5410 10000 +36915 H5410 10000 +36916 H5410 10000 +36917 H5410 10000 +36918 H5410 10000 +36920 H542 10000 +36921 H5410 10000 +36922 H5410 10000 +36923 H5410 10000 +36924 H5410 10000 +36925 H542 10000 +3693 H543 00000 +3694 H548 10000 +36960 H5440 10000 +36961 H5441 10000 +36961 H5442 10000 +36962 H5441 10000 +36962 H5442 10000 +36963 H5441 10000 +36963 H5442 10000 +36964 H5441 10000 +36964 H5442 10000 +36965 H5441 10000 +36965 H5442 10000 +36966 H5441 10000 +36966 H5442 10000 +36967 H5441 10000 +36967 H5442 10000 +36968 H5441 10000 +36968 H5442 10000 +36969 H5441 10000 +36969 H5442 10000 +36970 H5450 10000 +36971 H5440 10000 +36972 H5440 10000 +36973 H5440 10000 +36974 H5450 10000 +36975 H5450 10000 +36976 H5450 10000 +3698 H5460 10000 +3699 H547 10000 +37000 H16009 10000 +37001 H16049 10000 +37002 H16029 10000 +37003 H16019 10000 +37004 H16039 10000 +37005 H16069 10000 +37006 H16079 10000 +37007 H16059 10000 +37020 H16109 10000 +37021 H16149 10000 +37022 H16119 10000 +37023 H16129 10000 +37024 H16139 10000 +37031 H16259 10000 +37032 H16269 10000 +37033 H16229 10000 +37034 H16219 10000 +37035 H16239 10000 +37040 H16209 10000 +37044 H16299 10000 +37049 H16299 10000 +37050 H16309 10000 +37052 H16329 10000 +37054 H16339 10000 +37055 H16319 10000 +37059 H16399 10000 +37060 H16409 10000 +37061 H16439 10000 +37062 H16429 10000 +37063 H16449 10000 +37064 H16419 10000 +3708 H168 10000 +3709 H169 00000 +37100 H179 10000 +37101 H17819 10000 +37102 H17829 10000 +37103 H1713 10000 +37104 H1703 10000 +37105 A1859 10000 +37110 H18009 10000 +37111 H18019 10000 +37112 H18069 10000 +37113 H18059 10000 +37114 H18049 10000 +37115 H18039 10000 +37116 H18029 10000 +37120 H1820 00000 +37121 H18229 10000 +37122 H18239 10000 +37123 H1813 10000 +37124 H18219 10000 +37130 H1830 00000 +37131 H18319 10000 +37132 H18329 10000 +37133 H18339 10000 +37140 H1840 00000 +37141 H18419 10000 +37142 H18839 10000 +37143 H18429 10000 +37144 H1843 00000 +37145 H18449 10000 +37146 H18459 10000 +37148 H18469 10000 +37149 H1849 10000 +37150 H1850 00000 +37151 H1852 00000 +37152 H1859 10000 +37153 H1853 00000 +37154 H1854 00000 +37155 H1855 00000 +37156 H1859 10000 +37157 H1851 00000 +37158 H1859 10000 +37160 H18609 10000 +37161 H18619 10000 +37162 H18629 10000 +37170 H1870 10000 +37171 H18719 10000 +37172 H18739 10000 +37173 H18729 10000 +37181 H18819 10000 +37182 H18829 10000 +37189 H18899 10000 +3719 H189 00000 +37200 H1033 10000 +37201 H10239 10000 +37202 H10019 10000 +37203 H10029 10000 +37204 H10229 10000 +37205 H1013 10000 +37206 H10219 10000 +37210 H10409 10000 +37211 H10429 10000 +37212 H10439 10000 +37213 H1044 10000 +37214 H1045 10000 +37215 H1089 10000 +37220 H10509 10000 +37221 H10529 10000 +37222 H10539 10000 +37230 H109 00000 +37231 H1089 10000 +37233 H1089 10000 +37234 H10819 10000 +37239 H1089 10000 +37240 H11009 10000 +37241 H11049 10000 +37242 H11059 10000 +37243 H11029 10000 +37244 H11039 10000 +37245 H11069 10000 +37250 H1110 00000 +37251 H11159 10000 +37252 H11819 10000 +37253 H11149 10000 +37254 H11129 10000 +37255 H11139 10000 +37256 H11119 10000 +37261 H11229 10000 +37262 H11219 10000 +37263 H11239 10000 +37264 H11249 10000 +37271 H11439 10000 +37272 H1133 10000 +37273 H11429 10000 +37274 H11419 10000 +37275 H11449 10000 +37281 H11829 10000 +37289 H1189 10000 +3729 H119 00000 +37300 H01009 10000 +37301 H01019 10000 +37302 H01029 10000 +37311 H00019 10000 +37312 H00029 10000 +37313 H00039 10000 +3732 H0019 10000 +37331 H01139 10000 +37332 H01119 10000 +37333 H01149 10000 +37334 H01129 10000 +3734 H018 10000 +3735 H018 10000 +3736 H018 10000 +3738 H018 10000 +3739 H019 00000 +37400 H02009 10000 +37401 H02039 10000 +37402 H02029 10000 +37403 H02049 10000 +37404 H02019 10000 +37405 H02059 10000 +37410 H02109 10000 +37411 H02139 10000 +37412 H02129 10000 +37413 H02149 10000 +37414 H02119 10000 +37420 H02209 10000 +37421 H02239 10000 +37422 H02229 10000 +37423 H02219 10000 +37430 H02409 10000 +37431 H02439 10000 +37432 H02429 10000 +37433 H02419 10000 +37434 H0236 10000 +37441 H02539 10000 +37443 H02519 10000 +37444 H0259 10000 +37445 H0259 10000 +37446 H02529 10000 +37450 H0270 00000 +37451 H0266 10000 +37452 H02719 10000 +37453 H02739 10000 +37454 H02869 10000 +37455 H02729 10000 +37456 H0279 10000 +37481 H0289 10000 +37482 H02849 10000 +37483 H02859 10000 +37484 H02829 10000 +37485 H02879 10000 +37486 H02819 10000 +37487 H02839 10000 +37489 H0289 10000 +3749 H029 00000 +37500 H04009 10000 +37501 H04019 10000 +37502 H04029 10000 +37503 H04039 10000 +37511 H04119 10000 +37512 H04139 10000 +37513 H04149 10000 +37514 H04159 10000 +37515 H04129 10000 +37516 H04169 10000 +37520 H04209 10000 +37521 H04219 10000 +37522 H04229 10000 +37530 H04309 10000 +37531 H04339 10000 +37532 H04329 10000 +37533 H04319 10000 +37541 H04429 10000 +37542 H04419 10000 +37543 H04439 10000 +37551 H04529 10000 +37552 H04569 10000 +37553 H04549 10000 +37554 H04579 10000 +37555 H04539 10000 +37556 H04559 10000 +37557 H04519 10000 +37561 H04619 10000 +37569 H0469 00000 +37581 H04819 10000 +37589 H0489 10000 +3759 H049 00000 +37600 H0500 00000 +37601 H05019 10000 +37602 H05039 10000 +37603 H05029 10000 +37604 H05049 10000 +37610 H0510 00000 +37611 H05119 10000 +37612 H05129 10000 +37613 H0589 10000 +37621 H0589 10000 +37622 H0589 10000 +37630 H0520 00000 +37631 H05249 10000 +37632 H05239 10000 +37633 H05229 10000 +37634 H05259 10000 +37635 H05269 10000 +37636 H05219 10000 +37640 H0530 00000 +37641 H0589 10000 +37642 H05359 10000 +37643 H05329 10000 +37644 H0589 10000 +37645 H05319 10000 +37646 H05349 10000 +37647 H05339 10000 +37650 H05409 10000 +37651 H05419 10000 +37652 H05429 10000 +3766 H0553 10000 +37681 H05819 10000 +37682 H05829 10000 +37689 H0589 10000 +3769 H059 00000 +37700 H4710 00000 +37701 H4711 00000 +37702 H4712 00000 +37703 H4713 00000 +37704 H47149 10000 +37710 H4720 00000 +37711 H47219 10000 +37712 H47299 10000 +37713 H47299 10000 +37714 H47239 10000 +37715 H47299 10000 +37716 H4722 00000 +37721 H47329 10000 +37722 H47399 10000 +37723 H47319 10000 +37724 H47339 10000 +37730 H469 00000 +37731 H4600 10000 +37732 H4610 10000 +37733 H462 00000 +37734 H463 00000 +37739 H468 00000 +37741 H47019 10000 +37742 H47029 10000 +37743 H47039 10000 +37749 H47099 10000 +37751 H4749 10000 +37752 H4742 10000 +37753 H4743 00000 +37754 H4741 00000 +37761 H47529 10000 +37762 H47539 10000 +37763 H47519 10000 +37771 H47639 10000 +37772 H47649 10000 +37773 H47629 10000 +37775 H47619 10000 +3779 H479 10000 +37800 H5000 00000 +37801 H50011 10000 +37801 H50012 10000 +37802 H50021 10000 +37802 H50022 10000 +37803 H50031 10000 +37803 H50032 10000 +37804 H50041 10000 +37804 H50042 10000 +37805 H5005 00000 +37806 H5006 00000 +37807 H5007 00000 +37808 H5008 00000 +37810 H5010 00000 +37811 H50111 10000 +37811 H50112 10000 +37812 H50121 10000 +37812 H50122 10000 +37813 H50131 10000 +37813 H50132 10000 +37814 H50141 10000 +37814 H50142 10000 +37815 H5015 00000 +37816 H5016 00000 +37817 H5017 00000 +37818 H5018 00000 +37820 H5030 00000 +37821 H50311 10000 +37821 H50312 10000 +37822 H5032 00000 +37823 H50331 10000 +37823 H50332 10000 +37824 H5034 00000 +37830 H5040 00000 +37831 H5021 10000 +37831 H5022 10000 +37832 H5021 10000 +37832 H5022 10000 +37833 H50411 10000 +37833 H50412 10000 +37834 H5042 00000 +37835 H5043 00000 +37840 H5050 00000 +37841 H5051 00000 +37842 H5052 00000 +37843 H5053 00000 +37844 H5054 00000 +37845 H5055 00000 +37850 H49889 10000 +37851 H4900 10000 +37852 H4900 10000 +37853 H4910 10000 +37854 H4920 10000 +37855 H4940 10000 +37856 H4930 10000 +37860 H5060 00000 +37861 H50611 10000 +37861 H50612 10000 +37862 H5069 10000 +37863 H5069 10000 +37871 H50811 10000 +37871 H50812 10000 +37872 H5089 10000 +37873 H5089 10000 +37881 H510 10000 +37882 H510 10000 +37883 H5111 00000 +37884 H5112 00000 +37885 H518 10000 +37886 H5120 10000 +37887 H518 10000 +3789 H519 10000 +37900 H15009 10000 +37900 H15109 10000 +37901 H15119 10000 +37902 H15129 10000 +37903 H15019 10000 +37904 H15059 10000 +37905 H15049 10000 +37906 H15029 10000 +37907 H15039 10000 +37909 H15099 10000 +37911 H15849 10000 +37912 H15839 10000 +37913 H15819 10000 +37914 H15829 10000 +37915 H15859 10000 +37916 H1589 10000 +37919 H1589 10000 +37921 H43819 10000 +37922 H4323 10000 +37923 H4313 10000 +37924 H43399 10000 +37925 H43319 10000 +37926 H4303 10000 +37927 H43829 10000 +37929 H4389 10000 +37931 H2703 10000 +37932 H27119 10000 +37933 H27129 10000 +37934 H27139 10000 +37939 H278 10000 +37940 H5700 10000 +37941 H5702 00000 +37942 H5703 00000 +37943 H5704 00000 +37945 H5701 00000 +37946 H57059 10000 +37949 H5709 00000 +37950 H5500 00000 +37951 H5501 00000 +37952 H5502 00000 +37953 H5503 00000 +37954 H5509 10000 +37955 H5504 00000 +37956 H5509 10000 +37957 H5581 00000 +37958 H5589 10000 +37959 H5589 10000 +37960 H5940 00000 +37961 H5941 00000 +37962 H5942 00000 +37963 H5943 00000 +3798 H578 10000 +37990 H579 10000 +37991 H5713 10000 +37992 H578 10000 +37993 H578 10000 +37999 H578 10000 +38000 H61009 10000 +38001 H61019 10000 +38002 H61029 10000 +38003 H61039 10000 +38010 H6000 10000 +38010 H6010 10000 +38010 H60319 10000 +38010 H60329 10000 +38010 H60399 10000 +38011 H6193 10000 +38012 H60339 10000 +38013 H6240 10000 +38014 H6020 10000 +38015 H628X1 10000 +38016 H60399 10000 +38021 H6040 10000 +38022 H60509 10000 +38022 H60519 10000 +38022 H60529 10000 +38022 H60539 10000 +38022 H60549 10000 +38022 H60559 10000 +38022 H60599 10000 +38023 H6060 10000 +38023 H608X1 10000 +38023 H6090 10000 +38030 H61109 10000 +38031 H61129 10000 +38032 H61119 10000 +38039 H61199 10000 +3804 H6123 10000 +38050 H61309 10000 +38050 H61399 10000 +38051 H61319 10000 +38052 H61399 10000 +38053 H61329 10000 +38081 H61819 10000 +38089 H61899 10000 +3809 H6193 10000 +38100 H65199 10000 +38101 H6500 10000 +38102 H65119 10000 +38103 H65119 10000 +38104 H65119 10000 +38105 H65119 10000 +38106 H65119 10000 +38110 H6520 10000 +38119 H6520 10000 +38120 H6530 10000 +38129 H6530 10000 +3813 H65499 10000 +3814 H6590 10000 +38150 H68009 10000 +38151 H68019 10000 +38152 H68029 10000 +38160 H68109 10000 +38161 H68119 10000 +38162 H68129 10000 +38163 H68139 10000 +3817 H6900 10000 +38181 H6980 10000 +38189 H6980 10000 +3819 H6990 10000 +38200 H66009 10000 +38201 H66019 10000 +38202 H679 10000 +3821 H6613 10000 +3822 H6623 10000 +3823 H663X9 10000 +3824 H6640 10000 +3829 H6690 10000 +38300 H70009 10000 +38301 H70019 10000 +38302 H70099 10000 +3831 H7010 10000 +38320 H70209 10000 +38321 H70219 10000 +38322 H70229 10000 +38330 H95199 10000 +38331 H95139 10000 +38332 H9503 10000 +38333 H95129 10000 +38381 H70819 10000 +38389 H70899 10000 +3839 H7090 10000 +38400 H73009 10000 +38401 H73019 10000 +38409 H73099 10000 +3841 H7310 10000 +38420 H7290 10000 +38421 H7200 10000 +38422 H7210 10000 +38423 H722X9 10000 +38424 H72819 10000 +38425 H72829 10000 +38481 H73819 10000 +38482 H73829 10000 +3849 H7393 10000 +38500 H7409 10000 +38501 H7409 10000 +38502 H7409 10000 +38503 H7409 10000 +38509 H7409 10000 +38510 H7419 10000 +38511 H7419 10000 +38512 H7419 10000 +38513 H7419 10000 +38519 H7419 10000 +38521 H74319 10000 +38522 H74319 10000 +38523 H7420 10000 +38523 H74399 10000 +38524 H74329 10000 +38530 H7193 10000 +38531 H7103 10000 +38532 H7113 10000 +38532 H7440 10000 +38533 H7123 10000 +38535 H7133 10000 +38582 H748X9 10000 +38583 H748X9 10000 +38589 H748X9 10000 +3859 H7490 10000 +38600 H8109 10000 +38601 H8109 10000 +38602 H8109 10000 +38603 H8109 10000 +38604 H8109 10000 +38610 H81399 10000 +38611 H8113 10000 +38612 H8123 10000 +38619 H81319 10000 +3862 H8149 10000 +38630 H8309 10000 +38631 H8309 10000 +38632 H8309 10000 +38633 H8309 10000 +38634 H8309 10000 +38635 H8309 10000 +38640 H8319 10000 +38641 H8319 10000 +38642 H8319 10000 +38643 H8319 10000 +38648 H8319 10000 +38650 H832X9 10000 +38651 H832X9 10000 +38652 H832X9 10000 +38653 H832X9 10000 +38654 H832X9 10000 +38655 H832X9 10000 +38656 H832X9 10000 +38658 H832X9 10000 +3868 H818X9 10000 +3868 H829 10000 +3868 H838X9 10000 +3869 H8193 10000 +3869 H8393 10000 +3870 H8003 10000 +3871 H8013 10000 +3872 H8023 10000 +3878 H8083 10000 +3879 H8093 10000 +38800 H93099 10000 +38801 H9113 10000 +38802 H93019 10000 +38810 H833X9 10000 +38811 H918X9 10000 +38812 H833X9 10000 +3882 H9123 10000 +38830 H9319 10000 +38831 H9319 10000 +38832 H9319 10000 +38840 H93249 10000 +38840 H93299 10000 +38841 H93229 10000 +38842 H93239 10000 +38843 H93299 10000 +38844 H93219 10000 +38845 H93299 10000 +3885 H933X9 10000 +38860 H9210 10000 +38861 G960 10000 +38869 H9220 10000 +38870 H9209 10000 +38871 H9209 10000 +38872 H9209 10000 +3888 H938X9 10000 +3889 H9393 10000 +38900 H902 10000 +38901 H902 10000 +38902 H902 10000 +38903 H902 10000 +38904 H902 10000 +38905 H9011 10000 +38905 H9012 10000 +38906 H900 10000 +38908 H902 10000 +38910 H905 10000 +38911 H903 10000 +38912 H903 10000 +38913 H9041 10000 +38913 H9042 10000 +38914 H905 10000 +38915 H9041 10000 +38915 H9042 10000 +38916 H905 10000 +38917 H9041 10000 +38917 H9042 10000 +38918 H903 10000 +38920 H908 00000 +38921 H9071 10000 +38921 H9072 10000 +38922 H906 00000 +3897 H913 00000 +3898 H918X9 10000 +3899 H9190 10000 +390 I00 00000 +3910 I010 00000 +3911 I011 00000 +3912 I012 00000 +3918 I018 00000 +3919 I019 00000 +3920 I020 00000 +3929 I029 00000 +393 I092 00000 +3940 I050 00000 +3941 I051 00000 +3942 I052 00000 +3949 I058 10000 +3950 I060 00000 +3951 I061 00000 +3952 I062 00000 +3959 I068 10000 +3959 I069 10000 +3960 I080 10000 +3961 I080 10000 +3962 I080 10000 +3963 I080 10000 +3968 I088 10000 +3969 I089 10000 +3970 I071 10000 +3970 I072 10000 +3970 I078 10000 +3971 I0989 10000 +3979 I091 10000 +3980 I090 00000 +39890 I099 00000 +39891 I0981 00000 +39899 I0989 10000 +4010 I10 10000 +4011 I10 10000 +4019 I10 10000 +4019 I169 10000 +40200 I119 10000 +40201 I110 10000 +40210 I119 10000 +40211 I110 10000 +40290 I119 10000 +40291 I110 10000 +40300 I129 10000 +40301 I120 10000 +40310 I129 10000 +40311 I120 10000 +40390 I129 10000 +40391 I120 10000 +40400 I1310 10000 +40401 I130 10000 +40402 I1311 10000 +40403 I132 10000 +40410 I1310 10000 +40411 I130 10000 +40412 I1311 10000 +40413 I132 10000 +40490 I1310 10000 +40491 I130 10000 +40492 I1311 10000 +40493 I132 10000 +40501 I150 10000 +40509 I158 10000 +40511 I150 10000 +40519 I158 10000 +40591 I150 10000 +40599 I158 10000 +41000 I2109 10000 +41001 I2109 10000 +41002 I2109 10000 +41010 I2109 10000 +41011 I2109 10000 +41012 I2109 10000 +41020 I2119 10000 +41021 I2119 10000 +41022 I2119 10000 +41030 I2111 10000 +41031 I2111 10000 +41032 I2111 10000 +41040 I2119 10000 +41041 I2119 10000 +41042 I2119 10000 +41050 I2129 10000 +41051 I2129 10000 +41052 I2129 10000 +41060 I2129 10000 +41061 I2129 10000 +41062 I2129 10000 +41070 I214 10000 +41071 I214 10000 +41072 I214 10000 +41080 I2129 10000 +41081 I2129 10000 +41082 I2129 10000 +41090 I213 10000 +41091 I213 10000 +41092 I213 10000 +4110 I241 00000 +4111 I200 10000 +41181 I240 00000 +41189 I248 10000 +412 I252 00000 +4130 I208 10000 +4131 I201 00000 +4139 I208 10000 +4139 I209 10000 +41400 I2510 10000 +41401 I2510 10000 +41402 I25810 10000 +41403 I25810 10000 +41404 I25810 10000 +41405 I25810 10000 +41406 I25811 10000 +41407 I25812 10000 +41410 I253 10000 +41411 I2541 00000 +41412 I2542 00000 +41419 I253 10000 +4142 I2582 00000 +4143 I2583 00000 +4144 I2584 00000 +4148 I255 10000 +4148 I2589 10000 +4148 I259 10000 +4149 I259 10000 +4150 I2609 10000 +41511 I2690 10112 +41511 I2699 10112 +41511 T800XXA 10111 +41511 T81718A 10111 +41511 T8172XA 10111 +41511 T82817A 10111 +41511 T82818A 10111 +41512 I2690 10000 +41513 I2692 10000 +41519 I2699 10000 +4160 I270 00000 +4161 I271 00000 +4162 I2782 00000 +4168 I272 10000 +4168 I2789 10000 +4169 I2781 10000 +4169 I279 10000 +4170 I280 00000 +4171 I281 00000 +4178 I288 00000 +4179 I289 00000 +4200 I32 10000 +42090 I309 10000 +42091 I300 00000 +42099 I308 10000 +4210 I330 10000 +4211 I39 10000 +4219 I339 00000 +4220 I41 10000 +42290 I409 00000 +42291 I400 10000 +42291 I401 10000 +42292 I400 10000 +42293 I408 10000 +42299 I408 10000 +4230 I312 00000 +4231 I310 00000 +4232 I311 00000 +4233 I314 00000 +4238 I318 10000 +4239 I319 10000 +4240 I340 10000 +4240 I348 10000 +4241 I350 10000 +4241 I351 10000 +4241 I352 10000 +4241 I358 10000 +4241 I359 10000 +4242 I360 10000 +4242 I368 10000 +4243 I370 10000 +4243 I378 10000 +42490 I38 10000 +42491 I39 10000 +42499 I38 10000 +4250 I423 10000 +42511 I421 00000 +42518 I422 00000 +4252 I428 10000 +4253 I424 00000 +4254 I425 10000 +4254 I428 10000 +4255 I426 00000 +4257 I43 10000 +4258 I43 10000 +4259 I427 10000 +4260 I442 00000 +42610 I4430 10000 +42611 I440 00000 +42612 I441 10000 +42613 I441 10000 +4262 I444 10000 +4262 I445 10000 +4262 I4460 10000 +4262 I4469 10000 +4263 I447 10000 +4264 I4510 10000 +42650 I4430 10000 +42650 I4439 10000 +42650 I454 10000 +42651 I452 10000 +42652 I452 10000 +42653 I452 10000 +42654 I453 00000 +4266 I455 00000 +4267 I456 10000 +42681 I456 10000 +42682 I4581 00000 +42689 I4589 00000 +4269 I459 00000 +4270 I471 10000 +4271 I472 10000 +4272 I479 00000 +42731 I4891 10000 +42732 I4892 10000 +42741 I4901 00000 +42742 I4902 00000 +4275 I469 10000 +42760 I4940 00000 +42761 I491 00000 +42769 I493 10000 +42769 I4949 10000 +42781 I495 10000 +42781 R001 10000 +42789 I498 10000 +42789 R001 10000 +4279 I499 00000 +4280 I509 10000 +4281 I501 00000 +42820 I5020 10000 +42821 I5021 10000 +42822 I5022 10000 +42823 I5023 10000 +42830 I5030 10000 +42831 I5031 10000 +42832 I5032 10000 +42833 I5033 10000 +42840 I5040 10000 +42841 I5041 10000 +42842 I5042 10000 +42843 I5043 10000 +4289 I509 10000 +4290 I514 00000 +4291 I515 00000 +4292 I2510 10000 +4293 I517 00000 +4294 I970 10000 +4294 I97110 10000 +4294 I97130 10000 +4294 I97190 10000 +4295 I511 10000 +4296 I512 10000 +42971 I510 10000 +42979 I230 10000 +42981 I5189 10000 +42982 I5189 10000 +42983 I5181 00000 +42989 I513 10000 +42989 I5189 10000 +4299 I519 10000 +430 I609 10000 +431 I619 10000 +4320 I621 00000 +4321 I6200 10000 +4329 I629 00000 +43300 I651 00000 +43301 I6322 10000 +43310 I6529 10000 +43311 I63139 10000 +43311 I63239 10000 +43320 I6509 10000 +43321 I63019 10000 +43321 I63119 10000 +43321 I63219 10000 +43330 I658 10000 +43331 I6359 10000 +43380 I658 10000 +43381 I6359 10000 +43390 I659 10000 +43391 I6320 10000 +43400 I6609 10000 +43400 I6619 10000 +43400 I6629 10000 +43401 I6330 10000 +43410 I6609 10000 +43410 I6619 10000 +43410 I6629 10000 +43410 I669 10000 +43411 I6340 10000 +43490 I669 10000 +43491 I6350 10000 +4350 G450 10000 +4351 G450 10000 +4352 G458 10000 +4353 G450 10000 +4358 G451 10000 +4358 G458 10000 +4359 G459 10000 +4359 I67848 10000 +436 I6789 10000 +4370 I672 00000 +4371 I6781 10000 +4371 I6782 10000 +4371 I6789 10000 +4372 I674 00000 +4373 I671 10000 +4374 I677 10000 +4375 I675 00000 +4376 I676 00000 +4377 G454 00000 +4378 I6789 10000 +4379 I679 00000 +4380 I69910 10000 +4380 I69911 10000 +4380 I69912 10000 +4380 I69913 10000 +4380 I69914 10000 +4380 I69915 10000 +4380 I69918 10000 +4380 I69919 10000 +43810 I69928 10000 +43811 I69920 10000 +43812 I69921 10000 +43813 I69922 10000 +43814 I69923 10000 +43819 I69928 10000 +43820 I69959 10000 +43821 I69951 10000 +43821 I69952 10000 +43822 I69953 10000 +43822 I69954 10000 +43830 I69939 10000 +43831 I69931 10000 +43831 I69932 10000 +43832 I69933 10000 +43832 I69934 10000 +43840 I69949 10000 +43841 I69941 10000 +43841 I69942 10000 +43842 I69943 10000 +43842 I69944 10000 +43850 I69969 10000 +43851 I69961 10000 +43851 I69962 10000 +43852 I69963 10000 +43852 I69964 10000 +43853 I69965 10000 +4386 I69998 10000 +4387 I69998 10000 +43881 I69990 10000 +43882 I69991 10000 +43883 I69992 10000 +43884 I69993 10000 +43885 I69998 10000 +43889 I69898 10000 +43889 I69998 10000 +4389 I6990 10000 +4400 I700 00000 +4401 I701 00000 +44020 I70209 10000 +44021 I70219 10000 +44022 I70229 10000 +44023 I7025 10000 +44024 I70269 10000 +44029 I70299 10000 +44030 I70399 10000 +44031 I70499 10000 +44032 I70599 10000 +4404 I7092 00000 +4408 I708 10000 +4409 I7090 10000 +4409 I7091 10000 +44100 I7100 00000 +44101 I7101 00000 +44102 I7102 00000 +44103 I7103 00000 +4411 I711 00000 +4412 I712 00000 +4413 I713 00000 +4414 I714 00000 +4415 I718 00000 +4416 I715 00000 +4417 I716 00000 +4419 I719 10000 +4420 I721 00000 +4421 I722 00000 +4422 I723 00000 +4423 I724 00000 +44281 I720 10000 +44281 I725 10000 +44281 I726 10000 +44282 I728 10000 +44283 I728 10000 +44284 I728 10000 +44289 I728 10000 +4429 I729 00000 +4430 I7300 10000 +4431 I731 00000 +44321 I7771 00000 +44322 I7772 00000 +44323 I7773 00000 +44324 I7774 00000 +44329 I7775 10000 +44329 I7776 10000 +44329 I7777 10000 +44329 I7779 10000 +44381 I798 10000 +44382 I7381 00000 +44389 I7389 10000 +4439 I739 00000 +44401 I7401 00000 +44409 I7409 10000 +4441 I7411 00000 +44421 I742 00000 +44422 I743 10000 +44481 I745 00000 +44489 I748 00000 +4449 I749 00000 +44501 I75019 10000 +44502 I75029 10000 +44581 I7581 00000 +44589 I7589 00000 +4460 M300 10000 +4461 M303 00000 +44620 M310 10000 +44621 M310 10000 +44629 M310 10000 +4463 M312 00000 +4464 M3130 10000 +4465 M316 10000 +4466 M311 00000 +4467 M314 00000 +4470 I770 00000 +4471 I771 00000 +4472 I772 00000 +4473 I773 10000 +4474 I774 00000 +4475 I775 10000 +4476 I776 00000 +44770 I77819 00000 +44771 I77810 00000 +44772 I77811 00000 +44773 I77812 00000 +4478 I773 10000 +4478 I7789 10000 +4479 I779 00000 +4480 I780 00000 +4481 I781 00000 +4489 I788 10000 +4489 I789 10000 +449 I76 00000 +4510 I8000 10000 +45111 I8010 10000 +45119 I80209 10000 +4512 I803 00000 +45181 I80219 10000 +45182 I808 10000 +45183 I808 10000 +45184 I808 10000 +45189 I808 10000 +4519 I809 00000 +452 I81 00000 +4530 I820 00000 +4531 I821 00000 +4532 I82220 10000 +4532 I82221 10000 +4533 I823 00000 +45340 I82409 10000 +45341 I82419 10000 +45341 I82429 10000 +45341 I82439 10000 +45341 I824Y9 10000 +45342 I82449 10000 +45342 I82499 10000 +45342 I824Z9 10000 +45350 I82509 10000 +45350 I82599 10000 +45351 I82519 10000 +45351 I82529 10000 +45351 I82539 10000 +45351 I825Y9 10000 +45352 I82549 10000 +45352 I825Z9 10000 +4536 I82819 10000 +45371 I82719 10000 +45372 I82729 10000 +45373 I82709 10000 +45374 I82A29 10000 +45375 I82B29 10000 +45376 I82C29 10000 +45377 I82291 10000 +45379 I82891 10000 +45381 I82619 10000 +45382 I82629 10000 +45383 I82609 10000 +45384 I82A19 10000 +45385 I82B19 10000 +45386 I82C19 10000 +45387 I82290 10000 +45389 I82890 10000 +4539 I8291 10000 +4540 I83009 10000 +4540 I83019 10000 +4540 I83029 10000 +4541 I8310 10000 +4542 I83209 10000 +4548 I83899 10000 +4549 I8390 10000 +4550 K648 10000 +4551 K648 10000 +4552 K648 10000 +4553 K644 10000 +4554 K645 10000 +4555 K644 10000 +4556 K649 10000 +4557 K645 10000 +4558 K648 10000 +4559 K644 00000 +4560 I8501 00000 +4561 I8500 00000 +45620 I8511 00000 +45621 I8510 00000 +4563 I860 00000 +4564 I861 00000 +4565 I862 00000 +4566 I863 00000 +4568 I868 10000 +4570 I972 00000 +4571 I890 00000 +4572 I891 00000 +4578 I898 00000 +4579 I899 00000 +4580 I951 00000 +4581 I9589 10000 +45821 I953 00000 +45829 I952 10000 +45829 I9581 10000 +4588 I9589 10000 +4589 I959 00000 +4590 R58 00000 +45910 I87009 10000 +45911 I87019 10000 +45912 I87029 10000 +45913 I87039 10000 +45919 I87099 10000 +4592 I871 00000 +45930 I87309 10000 +45931 I87319 10000 +45932 I87329 10000 +45933 I87339 10000 +45939 I87399 10000 +45981 I872 10000 +45989 I998 10000 +4599 I879 10000 +4599 I999 10000 +460 J00 00000 +4610 J0100 10000 +4611 J0110 10000 +4612 J0120 10000 +4613 J0130 10000 +4618 J0140 10000 +4619 J0190 10000 +462 J029 10000 +463 J0390 10000 +46400 J040 00000 +46401 J050 10000 +46410 J0410 00000 +46411 J0411 00000 +46420 J042 00000 +46421 J050 10000 +46430 J0510 00000 +46431 J0511 00000 +4644 J050 10000 +46450 J0430 00000 +46451 J0431 00000 +4650 J060 00000 +4658 J069 10000 +4659 J069 10000 +4660 J209 10000 +46611 J210 00000 +46619 J218 10000 +470 J342 00000 +4710 J330 00000 +4711 J331 00000 +4718 J338 00000 +4719 J339 00000 +4720 J310 00000 +4721 J312 00000 +4722 J311 00000 +4730 J320 00000 +4731 J321 00000 +4732 J322 00000 +4733 J323 00000 +4738 J324 10000 +4738 J328 10000 +4739 J329 00000 +47400 J3501 00000 +47401 J3502 00000 +47402 J3503 00000 +47410 J353 00000 +47411 J351 00000 +47412 J352 00000 +4742 J358 10000 +4748 J358 10000 +4749 J359 00000 +475 J36 00000 +4760 J370 00000 +4761 J371 00000 +4770 J301 00000 +4771 J305 00000 +4772 J3081 00000 +4778 J302 10000 +4778 J3089 10000 +4779 J300 10000 +4779 J309 10000 +4780 J343 00000 +47811 J3481 00000 +47819 J340 10000 +47819 J341 10000 +47819 J3489 10000 +47820 J392 10000 +47821 J391 10000 +47822 J390 10000 +47824 J390 10000 +47825 J392 10000 +47826 J392 10000 +47829 J392 10000 +47830 J3800 00000 +47831 J3801 10000 +47832 J3801 10000 +47833 J3802 10000 +47834 J3802 10000 +4784 J381 00000 +4785 J383 10000 +4786 J384 00000 +47870 J387 10000 +47871 J387 10000 +47874 J386 00000 +47875 J385 00000 +47879 J387 10000 +4788 J393 00000 +4789 J398 10000 +4789 J399 10000 +4800 J120 00000 +4801 J121 00000 +4802 J122 00000 +4803 J1281 00000 +4808 J1289 10000 +4809 J129 10000 +481 J13 10000 +481 J181 10000 +4820 J150 00000 +4821 J151 00000 +4822 J14 00000 +48230 J154 10000 +48231 J154 10000 +48232 J153 00000 +48239 J154 10000 +48240 J1520 00000 +48241 J15211 00000 +48242 J15212 00000 +48249 J1529 00000 +48281 J158 10000 +48282 J155 00000 +48283 J156 00000 +48284 A481 00000 +48289 J158 10000 +4829 J159 00000 +4830 J157 00000 +4831 J160 00000 +4838 J168 00000 +4841 B250 10000 +4843 A3791 10000 +4845 A221 10000 +4846 B440 10000 +4847 J17 10000 +4848 J17 10000 +485 J180 00000 +486 J189 10000 +4870 J1100 10000 +4870 J129 10000 +4871 J101 10000 +4871 J111 10000 +4878 J112 10000 +4878 J1181 10000 +4878 J1189 10000 +48801 J09X1 10000 +48802 J09X2 10000 +48809 J09X3 10000 +48809 J09X9 10000 +48811 J1008 10000 +48812 J101 10000 +48819 J09X9 10000 +48881 J09X1 10000 +48882 J09X2 10000 +48889 J09X3 10000 +48889 J09X9 10000 +490 J40 00000 +4910 J410 00000 +4911 J411 00000 +49120 J449 10000 +49121 J441 10000 +49122 J440 10000 +4918 J418 10000 +4919 J42 00000 +4920 J439 10000 +4928 J439 10000 +49300 J4520 10000 +49301 J4522 10000 +49302 J4521 10000 +49310 J4520 10000 +49311 J4522 10000 +49312 J4521 10000 +49320 J449 10000 +49321 J440 10000 +49322 J441 10000 +49381 J45990 00000 +49382 J45991 00000 +49390 J45909 10000 +49390 J45998 10000 +49391 J45902 00000 +49392 J45901 00000 +4940 J479 00000 +4941 J471 10000 +4950 J670 00000 +4951 J671 00000 +4952 J672 00000 +4953 J673 00000 +4954 J674 00000 +4955 J675 00000 +4956 J676 00000 +4957 J677 00000 +4958 J678 00000 +4959 J679 00000 +496 J449 10000 +500 J60 00000 +501 J61 10000 +502 J628 10000 +503 J630 10000 +503 J631 10000 +503 J632 10000 +503 J633 10000 +503 J634 10000 +503 J635 10000 +503 J636 10000 +504 J660 10000 +504 J661 10000 +504 J662 10000 +504 J668 10000 +505 J64 10000 +5060 J680 00000 +5061 J681 00000 +5062 J682 00000 +5063 J683 00000 +5064 J684 00000 +5069 J689 10000 +5070 J690 00000 +5071 J691 00000 +5078 J698 00000 +5080 J700 00000 +5081 J701 00000 +5082 J705 00000 +5088 J708 10000 +5089 J709 00000 +5100 J860 10000 +5109 J869 10000 +5110 J869 10000 +5110 J941 10000 +5110 J948 10000 +5110 J949 10000 +5110 R091 10000 +5111 J90 10000 +5111 J942 10000 +51181 J910 00000 +51189 J90 10000 +51189 J942 10000 +51189 J948 10000 +5119 J918 10000 +5120 J930 00000 +5121 J95811 10000 +5122 J95812 00000 +51281 J9311 00000 +51282 J9312 00000 +51283 J9381 00000 +51284 J9382 00000 +51289 J9383 10000 +51289 J939 10000 +5130 J850 10000 +5130 J851 10000 +5130 J852 10000 +5131 J853 00000 +514 J182 10000 +514 J811 10000 +515 J8410 10000 +515 J8489 10000 +5160 J8401 00000 +5161 J8403 00000 +5162 J8402 00000 +51630 J84111 00000 +51631 J84112 00000 +51632 J84113 00000 +51633 J84114 00000 +51634 J84115 00000 +51635 J842 00000 +51636 J84116 00000 +51637 J84117 00000 +5164 J8481 00000 +5165 J8482 00000 +51661 J84841 00000 +51662 J84842 00000 +51663 J8483 00000 +51664 J84843 00000 +51669 J84848 00000 +5168 J8409 10000 +5169 J849 10000 +5171 J17 10000 +5172 M3481 10000 +5173 J99 10000 +5178 J99 10000 +5180 J9811 10000 +5180 J9819 10000 +5181 J982 00000 +5182 J983 00000 +5183 J82 00000 +5184 J810 00000 +51851 J95821 10000 +51851 J9600 10000 +51852 J951 10000 +51852 J952 10000 +51852 J953 10000 +51853 J95822 10000 +51853 J9620 10000 +5186 B4481 00000 +5187 J9584 00000 +51881 J9600 10000 +51881 J9690 10000 +51882 J80 10000 +51883 J9610 10000 +51884 J9620 10000 +51889 J984 00000 +51900 J9500 00000 +51901 J9502 00000 +51902 J9503 10000 +51909 J9501 10000 +51909 J9503 10000 +51909 J9504 10000 +51909 J9509 10000 +51911 J9801 00000 +51919 J398 10000 +51919 J9809 10000 +5192 J9851 00000 +5193 J9859 10000 +5194 J986 00000 +5198 J988 10000 +5199 J989 00000 +5200 K000 00000 +5201 K001 00000 +5202 K002 00000 +5203 K003 00000 +5204 K004 00000 +5205 K005 00000 +5206 K006 10000 +5206 K010 10000 +5206 K011 10000 +5207 K007 00000 +5208 K008 10000 +5209 K009 00000 +52100 K029 10000 +52101 K0261 10000 +52102 K0262 10000 +52103 K0263 10000 +52104 K023 00000 +52105 K0389 10000 +52106 K0251 10000 +52107 K0261 10000 +52107 K0262 10000 +52107 K0263 10000 +52108 K027 00000 +52109 K029 10000 +52110 K030 10000 +52111 K030 10000 +52112 K030 10000 +52113 K030 10000 +52114 K030 10000 +52115 K030 10000 +52120 K031 10000 +52121 K031 10000 +52122 K031 10000 +52123 K031 10000 +52124 K031 10000 +52125 K031 10000 +52130 K032 10000 +52131 K032 10000 +52132 K032 10000 +52133 K032 10000 +52134 K032 10000 +52135 K032 10000 +52140 K033 10000 +52141 K033 10000 +52142 K033 10000 +52149 K033 10000 +5215 K034 00000 +5216 K035 00000 +5217 K037 10000 +52181 K0381 00000 +52189 K0389 10000 +5219 K039 00000 +5220 K0401 10000 +5220 K0402 10000 +5221 K041 00000 +5222 K042 00000 +5223 K043 00000 +5224 K044 00000 +5225 K047 00000 +5226 K045 00000 +5227 K046 00000 +5228 K048 00000 +5229 K0490 10000 +5229 K0499 10000 +52300 K0500 00000 +52301 K0501 00000 +52310 K0510 00000 +52311 K0511 00000 +52320 K060 10000 +52321 K060 10000 +52322 K060 10000 +52323 K060 10000 +52324 K060 10000 +52325 K060 10000 +52330 K0520 10000 +52331 K05211 10000 +52331 K05212 10000 +52331 K05213 10000 +52331 K05219 10000 +52332 K05221 10000 +52332 K05222 10000 +52332 K05223 10000 +52332 K05229 10000 +52333 K0520 10000 +52340 K0530 00000 +52341 K05311 10000 +52341 K05312 10000 +52341 K05313 10000 +52341 K05319 10000 +52342 K05321 10000 +52342 K05322 10000 +52342 K05323 10000 +52342 K05329 10000 +5235 K054 00000 +5236 K036 00000 +5238 K055 10000 +5238 K061 10000 +5238 K062 10000 +5238 K063 10000 +5239 K056 10000 +52400 M2600 00000 +52401 M2601 00000 +52402 M2603 00000 +52403 M2602 00000 +52404 M2604 00000 +52405 M2605 00000 +52406 M2606 00000 +52407 M2607 00000 +52409 M2609 10000 +52410 M2610 00000 +52411 M2611 00000 +52412 M2612 00000 +52419 M2619 00000 +52420 M2620 00000 +52421 M26211 00000 +52422 M26212 00000 +52423 M26213 00000 +52424 M26220 00000 +52425 M26221 00000 +52426 M2623 00000 +52427 M2624 00000 +52428 M2625 00000 +52429 M2629 00000 +52430 M2630 00000 +52431 M2631 00000 +52432 M2632 00000 +52433 M2633 00000 +52434 M2634 00000 +52435 M2635 00000 +52436 M2636 00000 +52437 M2637 00000 +52439 M2639 00000 +5244 M264 10000 +52450 M2650 00000 +52451 M2651 00000 +52452 M2652 00000 +52453 M2653 00000 +52454 M2654 00000 +52455 M2655 00000 +52456 M2656 00000 +52457 M2657 00000 +52459 M2659 00000 +52460 M26601 10000 +52460 M26602 10000 +52460 M26603 10000 +52460 M26609 10000 +52460 M2669 10000 +52461 M26611 10000 +52461 M26612 10000 +52461 M26613 10000 +52461 M26619 10000 +52462 M26621 10000 +52462 M26622 10000 +52462 M26623 10000 +52462 M26629 10000 +52463 M26631 10000 +52463 M26632 10000 +52463 M26633 10000 +52463 M26639 10000 +52464 M2669 10000 +52469 M2669 10000 +52470 M2670 00000 +52471 M2671 00000 +52472 M2672 00000 +52473 M2673 00000 +52474 M2674 00000 +52475 M2679 10000 +52476 M2679 10000 +52479 M2679 10000 +52481 M2681 00000 +52482 M2682 00000 +52489 M264 10000 +52489 M2689 10000 +5249 M269 00000 +5250 K080 00000 +52510 K08109 10000 +52511 K08419 10000 +52512 K08429 10000 +52513 K08439 10000 +52519 K08499 10000 +52520 K0820 00000 +52521 K0821 00000 +52522 K0822 00000 +52523 K0823 00000 +52524 K0824 00000 +52525 K0825 00000 +52526 K0826 00000 +5253 K083 00000 +52540 K08109 10000 +52541 K08101 10000 +52542 K08102 10000 +52543 K08103 10000 +52544 K08104 10000 +52550 K08409 10000 +52551 K08401 10000 +52552 K08402 10000 +52553 K08403 10000 +52554 K08404 10000 +52560 K0850 00000 +52561 K0851 00000 +52562 K0852 00000 +52563 K08530 00000 +52564 K08531 00000 +52565 K0854 00000 +52566 K0855 00000 +52567 K0856 00000 +52569 K0859 10000 +52571 M2761 00000 +52572 M2762 00000 +52573 M2763 00000 +52579 M2769 00000 +5258 K0889 10000 +5258 M2679 10000 +5259 K089 00000 +5260 K090 00000 +5261 K091 10000 +5262 M2749 10000 +5263 M271 00000 +5264 M272 10000 +5265 M273 00000 +52661 M2751 00000 +52662 M2752 00000 +52663 M2753 00000 +52669 M2759 00000 +52681 M278 10000 +52689 M272 10000 +52689 M278 10000 +5269 M279 10000 +5270 K110 00000 +5271 K111 00000 +5272 K1120 10000 +5273 K113 00000 +5274 K114 00000 +5275 K115 00000 +5276 K116 00000 +5277 K117 10000 +5277 R682 10000 +5278 K118 10000 +5279 K119 00000 +52800 K122 10000 +52800 K1230 10000 +52801 K1231 10000 +52801 K1233 10000 +52802 K1232 00000 +52809 K121 10000 +52809 K1239 10000 +5281 A690 10000 +5282 K120 00000 +5283 K122 10000 +5284 K098 10000 +5285 K130 00000 +5286 K1321 10000 +52871 K1322 00000 +52872 K1323 00000 +52879 K1329 10000 +5288 K135 00000 +5289 K1370 10000 +5289 K1379 10000 +5290 K140 00000 +5291 K141 00000 +5292 K142 00000 +5293 K143 00000 +5294 K144 00000 +5295 K145 00000 +5296 K146 00000 +5298 K148 00000 +5299 K149 00000 +5300 K220 10000 +53010 K209 10000 +53011 K210 00000 +53012 K209 10000 +53013 K200 00000 +53019 K208 00000 +53020 K2210 00000 +53021 K2211 00000 +5303 K222 00000 +5304 K223 00000 +5305 K224 00000 +5306 K225 00000 +5307 K226 00000 +53081 K219 00000 +53082 K228 10000 +53083 K228 10000 +53084 J860 10000 +53085 K2270 10000 +53086 K9432 00000 +53087 K9433 10000 +53089 K228 10000 +5309 K229 00000 +53100 K250 10000 +53101 K250 10111 +53101 K5660 10112 +53110 K251 10000 +53111 K251 10111 +53111 K5660 10112 +53120 K252 10000 +53121 K252 10111 +53121 K5660 10112 +53130 K253 10000 +53131 K253 10111 +53131 K5660 10112 +53140 K254 10000 +53141 K254 10111 +53141 K5660 10112 +53150 K255 10000 +53151 K255 10111 +53151 K5660 10112 +53160 K256 10000 +53161 K256 10111 +53161 K5660 10112 +53170 K257 10000 +53171 K257 10111 +53171 K5660 10112 +53190 K259 10000 +53191 K259 10111 +53191 K5660 10112 +53200 K260 10000 +53201 K260 10111 +53201 K5660 10112 +53210 K261 10000 +53211 K261 10111 +53211 K5660 10112 +53220 K262 10000 +53221 K262 10111 +53221 K5660 10112 +53230 K263 10000 +53231 K263 10111 +53231 K5660 10112 +53240 K264 10000 +53241 K264 10111 +53241 K5660 10112 +53250 K265 10000 +53251 K265 10111 +53251 K5660 10112 +53260 K266 10000 +53261 K266 10111 +53261 K5660 10112 +53270 K267 10000 +53271 K267 10111 +53271 K5660 10112 +53290 K269 10000 +53291 K269 10111 +53291 K5660 10112 +53300 K270 10000 +53301 K270 10000 +53310 K271 10000 +53311 K271 10000 +53320 K272 10000 +53321 K272 10000 +53330 K273 10000 +53331 K273 10000 +53340 K274 10000 +53341 K274 10000 +53350 K275 10000 +53351 K275 10000 +53360 K276 10000 +53361 K276 10000 +53370 K277 10000 +53371 K277 10000 +53390 K279 10000 +53391 K279 10000 +53400 K280 10000 +53401 K280 10000 +53410 K281 10000 +53411 K281 10000 +53420 K282 10000 +53421 K282 10000 +53430 K283 10000 +53431 K283 10000 +53440 K284 10000 +53441 K284 10000 +53450 K285 10000 +53451 K285 10000 +53460 K286 10000 +53461 K286 10000 +53470 K287 10000 +53471 K287 10000 +53490 K289 10000 +53491 K289 10000 +53500 K2900 00000 +53501 K2901 00000 +53510 K2940 10000 +53510 K2950 10000 +53511 K2941 10000 +53511 K2951 10000 +53520 K2960 10000 +53521 K2961 10000 +53530 K2920 00000 +53531 K2921 00000 +53540 K2960 10000 +53541 K2961 10000 +53550 K2970 10000 +53550 K2990 10000 +53551 K2971 10000 +53551 K2991 10000 +53560 K2980 00000 +53561 K2981 00000 +53570 K5281 10000 +53571 K5281 10000 +5360 K3183 00000 +5361 K310 00000 +5362 R1110 10000 +5363 K3184 10000 +53640 K9420 00000 +53641 K9422 00000 +53642 K9423 00000 +53649 K9429 10000 +5368 K30 00000 +5369 K3189 10000 +5369 K319 10000 +5370 K311 00000 +5371 K314 00000 +5372 K315 10000 +5373 K315 10000 +5374 K316 00000 +5375 K3189 10000 +5376 K312 00000 +53781 K313 00000 +53782 K31819 00000 +53783 K31811 00000 +53784 K3182 00000 +53789 K3189 10000 +5379 K319 10000 +538 K9281 00000 +53901 K9501 00000 +53909 K9509 00000 +53981 K9581 00000 +53989 K9589 00000 +5400 K352 00000 +5401 K353 10000 +5409 K3580 10000 +5409 K3589 10000 +541 K37 00000 +542 K36 00000 +5430 K380 00000 +5439 K381 10000 +5439 K382 10000 +5439 K383 10000 +5439 K388 10000 +5439 K389 10000 +55000 K4040 00000 +55001 K4041 00000 +55002 K4010 00000 +55003 K4011 00000 +55010 K4030 00000 +55011 K4031 00000 +55012 K4000 00000 +55013 K4001 00000 +55090 K4090 00000 +55091 K4091 00000 +55092 K4020 00000 +55093 K4021 00000 +55100 K4140 00000 +55101 K4141 00000 +55102 K4110 00000 +55103 K4111 00000 +5511 K421 00000 +55120 K437 10000 +55121 K431 00000 +55129 K437 10000 +5513 K441 00000 +5518 K451 00000 +5519 K461 00000 +55200 K4130 00000 +55201 K4131 00000 +55202 K4100 00000 +55203 K4101 00000 +5521 K420 00000 +55220 K436 10000 +55221 K430 00000 +55229 K436 10000 +5523 K440 00000 +5528 K450 00000 +5529 K460 00000 +55300 K4190 00000 +55301 K4191 00000 +55302 K4120 00000 +55303 K4121 00000 +5531 K429 00000 +55320 K439 10000 +55321 K432 00000 +55329 K439 10000 +55329 K469 10000 +5533 K449 00000 +5538 K458 00000 +5539 K469 10000 +5550 K5000 10000 +5551 K5010 10000 +5552 K5080 10000 +5559 K5090 10000 +5560 K5180 10000 +5561 K5180 10000 +5562 K5120 10000 +5563 K5130 10000 +5564 K5140 10000 +5565 K5150 10000 +5566 K5100 10000 +5568 K5180 10000 +5569 K5190 10000 +5569 K5931 10000 +5570 K55011 10000 +5570 K55012 10000 +5570 K55019 10000 +5570 K55021 10000 +5570 K55022 10000 +5570 K55029 10000 +5570 K55031 10000 +5570 K55032 10000 +5570 K55039 10000 +5570 K55041 10000 +5570 K55042 10000 +5570 K55049 10000 +5570 K55051 10000 +5570 K55052 10000 +5570 K55059 10000 +5570 K55061 10000 +5570 K55062 10000 +5570 K55069 10000 +5570 K5530 10000 +5570 K5531 10000 +5570 K5532 10000 +5570 K5533 10000 +5571 K551 00000 +5579 K559 10000 +5581 K520 00000 +5582 K521 00000 +5583 K5221 10000 +5583 K5222 10000 +5583 K5229 10000 +55841 K5281 10000 +55842 K5282 00000 +5589 K523 10000 +5589 K5289 10000 +5589 K529 10000 +5600 K561 00000 +5601 K560 10000 +5601 K567 10000 +5602 K562 00000 +56030 K5649 10000 +56031 K563 00000 +56032 K5641 00000 +56039 K5649 00000 +56081 K565 00000 +56089 K5669 10000 +5609 K5660 10000 +56200 K5710 10000 +56201 K5712 10000 +56202 K5711 10000 +56203 K5713 10000 +56210 K5730 10000 +56211 K5732 10000 +56212 K5731 10000 +56213 K5733 10000 +56400 K5900 00000 +56401 K5901 00000 +56402 K5902 00000 +56409 K5903 10000 +56409 K5904 10000 +56409 K5909 10000 +5641 K581 10000 +5641 K582 10000 +5641 K588 10000 +5641 K589 10000 +5642 K911 00000 +5643 K910 00000 +5644 K9189 10000 +5645 K591 00000 +5646 K594 00000 +5647 K5939 10000 +56481 K592 00000 +56489 K598 00000 +5649 K599 00000 +5650 K602 10000 +5651 K603 10000 +5651 K604 10000 +5651 K605 10000 +566 K610 10000 +566 K611 10000 +566 K613 10000 +5670 K67 00000 +5671 K658 10000 +56721 K650 10000 +56722 K651 00000 +56723 K652 00000 +56729 K650 10000 +56731 K6812 00000 +56738 K6819 00000 +56739 K689 10000 +56781 K653 00000 +56782 K654 00000 +56789 K658 10000 +5679 K659 00000 +5680 K660 10000 +56881 K661 00000 +56882 R188 10000 +56889 K668 10000 +56889 K689 10000 +5689 K669 00000 +5690 K620 10000 +5690 K621 10000 +5691 K622 10000 +5691 K623 10000 +5692 K624 00000 +5693 K625 00000 +56941 K626 00000 +56942 K6289 10000 +56943 K6281 00000 +56944 K6282 00000 +56949 K6289 10000 +5695 K630 10000 +56960 K9400 10000 +56960 K9410 10000 +56961 K9402 10000 +56961 K9412 10000 +56962 K9403 10000 +56962 K9413 10000 +56969 K9409 10000 +56969 K9419 10000 +56971 K91850 00000 +56979 K91858 00000 +56981 K632 10000 +56982 K633 00000 +56983 K631 00000 +56984 K5520 00000 +56985 K5521 00000 +56986 K6381 00000 +56987 R1113 00000 +56989 K634 10000 +56989 K6389 10000 +5699 K639 10000 +570 K7200 10000 +570 K762 10000 +5710 K700 00000 +5711 K7010 10000 +5712 K7030 10000 +5713 K709 10000 +57140 K739 00000 +57141 K730 00000 +57142 K754 00000 +57149 K732 10000 +57149 K738 10000 +5715 K740 10000 +5715 K7460 10000 +5715 K7469 10000 +5716 K743 10000 +5716 K744 10000 +5716 K745 10000 +5718 K760 10000 +5718 K7689 10000 +5719 K741 10000 +5719 K769 10000 +5720 K750 00000 +5721 K751 10000 +5722 K7290 10000 +5722 K7291 10000 +5723 K766 00000 +5724 K767 00000 +5728 K7210 10000 +5728 K7290 10000 +5730 K761 00000 +5731 K77 10000 +5732 K77 10000 +5733 K716 10000 +5733 K759 10000 +5734 K763 00000 +5735 K7681 00000 +5738 K761 10000 +5738 K7689 10000 +5739 K769 10000 +57400 K8000 10000 +57401 K8001 10000 +57410 K8018 10000 +57411 K8019 10000 +57420 K8020 10000 +57421 K8021 00000 +57430 K8042 10000 +57431 K8043 10000 +57440 K8044 10000 +57441 K8045 10000 +57450 K8050 10000 +57451 K8051 10000 +57460 K8062 00000 +57461 K8063 00000 +57470 K8064 10000 +57471 K8065 10000 +57480 K8066 00000 +57481 K8067 00000 +57490 K8070 00000 +57491 K8071 00000 +5750 K810 00000 +57510 K819 00000 +57511 K811 00000 +57512 K812 00000 +5752 K820 00000 +5753 K821 00000 +5754 K822 00000 +5755 K823 00000 +5756 K824 00000 +5758 K828 00000 +5759 K829 00000 +5760 K915 00000 +5761 K830 10000 +5762 K831 00000 +5763 K832 00000 +5764 K833 00000 +5765 K834 00000 +5768 K835 10000 +5768 K838 10000 +5769 K839 00000 +5770 K8590 10000 +5770 K8591 10000 +5770 K8592 10000 +5771 K861 10000 +5772 K862 10000 +5772 K863 10000 +5778 K861 10000 +5778 K8681 10000 +5778 K8689 10000 +5779 K869 00000 +5780 K920 00000 +5781 K921 00000 +5789 K922 00000 +5790 K900 00000 +5791 K901 00000 +5792 K902 00000 +5793 K912 00000 +5794 K903 00000 +5798 K9041 10000 +5798 K9049 10000 +5798 K9089 10000 +5799 K909 00000 +5800 N003 10000 +5804 N013 10000 +58081 N08 10000 +58089 N008 10000 +5809 N009 10000 +5810 N044 10000 +5811 N022 10000 +5812 N043 10000 +5813 N040 10000 +58181 N08 10000 +58189 N048 10000 +5819 N049 10000 +5820 N032 10000 +5821 N033 10000 +5822 N035 10000 +5824 N038 10000 +58281 N08 10000 +58289 N038 10000 +5829 N039 10000 +5830 N059 10000 +5831 N052 10000 +5832 N055 10000 +5834 N059 10000 +5836 N171 10000 +5837 N172 10000 +58381 N08 10000 +58389 N058 10000 +5839 N059 10000 +5845 N170 00000 +5846 N171 10000 +5847 N172 10000 +5848 N178 00000 +5849 N179 00000 +5851 N181 00000 +5852 N182 00000 +5853 N183 00000 +5854 N184 00000 +5855 N185 00000 +5856 N186 00000 +5859 N189 00000 +586 N19 00000 +587 N269 10000 +5880 N250 00000 +5881 N251 00000 +58881 N2581 00000 +58889 N2589 00000 +5889 N259 00000 +5890 N270 00000 +5891 N271 00000 +5899 N279 00000 +59000 N110 10000 +59001 N110 10000 +59001 N118 10000 +59010 N10 10000 +59011 N10 10000 +5902 N151 00000 +5903 N2884 10000 +5903 N2885 10000 +5903 N2886 10000 +59080 N12 10000 +59081 N16 10000 +5909 N159 10000 +591 N1330 10000 +5920 N200 10000 +5921 N201 10000 +5929 N209 10000 +5930 N2883 00000 +5931 N2881 00000 +5932 N281 00000 +5933 N135 10000 +5934 N138 10000 +5935 N134 00000 +5936 R802 10000 +59370 N1370 10000 +59370 N1371 10000 +59371 N13721 10000 +59372 N13722 10000 +59373 N13729 10000 +59381 N280 10000 +59382 N2889 10000 +59389 N2882 10000 +59389 N2889 10000 +5939 N289 10000 +5940 N210 10000 +5941 N210 10000 +5942 N211 00000 +5948 N218 00000 +5949 N219 00000 +5950 N3000 10000 +5950 N3001 10000 +5951 N3010 10000 +5951 N3011 10000 +5952 N3020 10000 +5952 N3021 10000 +5953 N3030 10000 +5953 N3031 10000 +5954 N3080 10000 +5954 N3081 10000 +59581 N3080 10000 +59581 N3081 10000 +59582 N3040 10000 +59582 N3041 10000 +59589 N3080 10000 +59589 N3081 10000 +5959 N3090 10000 +5959 N3091 10000 +5960 N320 00000 +5961 N321 00000 +5962 N322 00000 +5963 N323 00000 +5964 N312 10000 +59651 N3281 00000 +59652 N318 10000 +59653 N312 10000 +59654 N319 10000 +59655 N3644 00000 +59659 N319 10000 +5966 N3289 10000 +5967 N3289 10000 +59681 N99511 00000 +59682 N99512 00000 +59683 N99510 10000 +59683 N99518 10000 +59689 N3289 10000 +5969 N329 00000 +5970 N340 00000 +59780 N341 10000 +59780 N342 10000 +59781 N343 00000 +59789 N342 10000 +59800 N35111 10000 +59801 N37 10000 +5981 N35014 10000 +5981 N35028 10000 +5982 N99110 10000 +5988 N358 00000 +5989 N359 00000 +5990 N390 00000 +5991 N360 00000 +5992 N361 00000 +5993 N362 00000 +5994 N365 00000 +5995 N368 10000 +59960 N139 10000 +59969 N139 10000 +59970 R319 00000 +59971 R310 00000 +59972 R311 10000 +59972 R3121 10000 +59972 R3129 10000 +59981 N3641 10000 +59982 N3642 10000 +59983 N368 10000 +59984 N368 10000 +59989 N398 00000 +5999 N369 10000 +5999 N399 10000 +60000 N400 10000 +60001 N401 10000 +60010 N402 10000 +60011 N403 10000 +60020 N400 10000 +60021 N401 10000 +6003 N4283 00000 +60090 N400 10000 +60091 N401 10000 +6010 N410 00000 +6011 N411 00000 +6012 N412 00000 +6013 N413 00000 +6014 N51 10000 +6018 N414 10000 +6018 N418 10000 +6019 N419 00000 +6020 N420 00000 +6021 N421 00000 +6022 N4289 10000 +6023 N4230 10000 +6023 N4231 10000 +6023 N4232 10000 +6023 N4239 10000 +6028 N4289 10000 +6029 N429 00000 +6030 N430 00000 +6031 N431 00000 +6038 N432 00000 +6039 N433 00000 +6040 N454 10000 +60490 N451 10000 +60490 N452 10000 +60490 N453 10000 +60491 N51 10000 +60499 N451 10000 +60499 N452 10000 +60499 N453 10000 +605 N470 10000 +605 N471 10000 +605 N472 10000 +605 N475 10000 +605 N478 10000 +6060 N4601 10000 +6061 N4611 10000 +6068 N46029 10000 +6069 N469 00000 +6070 N480 10000 +6071 N476 10000 +6071 N481 10000 +6072 N4829 10000 +6073 N4830 10000 +60781 N480 10000 +60782 N501 10000 +60783 N4889 10000 +60784 N529 10000 +60785 N486 10000 +60789 N485 10000 +60789 N4882 10000 +60789 N4889 10000 +6079 N489 00000 +6080 N490 00000 +6081 N4340 10000 +60820 N4400 00000 +60821 N4401 00000 +60822 N4402 00000 +60823 N4403 00000 +60824 N4404 00000 +6083 N500 00000 +6084 N499 10000 +60881 N51 10000 +60882 R361 00000 +60883 N501 10000 +60884 N5089 10000 +60885 N5089 10000 +60886 N5089 10000 +60887 N5314 10000 +60889 N442 10000 +60889 N448 10000 +60889 N503 10000 +60889 N50811 10000 +60889 N50812 10000 +60889 N50819 10000 +60889 N5082 10000 +60889 N5089 10000 +60889 N5312 10000 +6089 N509 10000 +6089 R102 10000 +6100 N6009 10000 +6101 N6019 10000 +6102 N6029 10000 +6103 N6039 10000 +6104 N6049 10000 +6108 N6089 10000 +6109 N6099 10000 +6110 N610 10000 +6110 N611 10000 +6111 N62 00000 +6112 N640 10000 +6113 N641 00000 +6114 N642 00000 +6115 N6489 10000 +6116 N643 00000 +61171 N644 00000 +61172 N63 00000 +61179 N6451 10000 +61179 N6452 10000 +61179 N6453 10000 +61179 N6459 10000 +61181 N6481 00000 +61182 N6482 00000 +61183 N6489 10000 +61189 N6489 10000 +6119 N649 00000 +6120 N650 00000 +6121 N651 00000 +6140 N7001 10000 +6140 N7002 10000 +6140 N7003 10000 +6141 N7011 10000 +6141 N7012 10000 +6141 N7013 10000 +6142 N7091 10000 +6142 N7092 10000 +6142 N7093 10000 +6143 N730 00000 +6144 N731 10000 +6144 N732 10000 +6145 N733 00000 +6146 N736 00000 +6147 N734 00000 +6148 N738 10000 +6149 N739 10000 +6150 N710 00000 +6151 N711 00000 +6159 N719 00000 +6160 N72 00000 +61610 N760 10000 +61610 N761 10000 +61610 N762 10000 +61610 N763 10000 +61611 N771 10000 +6162 N750 10000 +6163 N751 00000 +6164 N764 00000 +61650 N766 00000 +61651 N770 00000 +61681 N7681 00000 +61689 N759 10000 +61689 N765 10000 +61689 N7689 10000 +6169 N739 10000 +6170 N800 00000 +6171 N801 00000 +6172 N802 00000 +6173 N803 00000 +6174 N804 00000 +6175 N805 00000 +6176 N806 00000 +6178 N808 00000 +6179 N809 00000 +61800 N819 10000 +61801 N8110 10000 +61801 N8111 10000 +61802 N8112 00000 +61803 N810 00000 +61804 N816 00000 +61805 N8181 00000 +61809 N8189 10000 +6181 N812 10000 +6182 N812 10000 +6183 N813 00000 +6184 N814 00000 +6185 N993 00000 +6186 N815 00000 +6187 N8189 10000 +61881 N8182 00000 +61882 N8183 00000 +61883 N8184 00000 +61884 N812 10000 +61884 N8185 10000 +61889 N8189 10000 +6189 N819 10000 +6190 N820 10000 +6190 N821 10000 +6191 N824 10000 +6192 N825 00000 +6198 N828 10000 +6199 N829 00000 +6200 N8300 10000 +6200 N8301 10000 +6200 N8302 10000 +6201 N8310 10000 +6201 N8311 10000 +6201 N8312 10000 +6202 N83201 10000 +6202 N83202 10000 +6202 N83209 10000 +6202 N83291 10000 +6202 N83292 10000 +6202 N83299 10000 +6203 N83331 10000 +6203 N83332 10000 +6203 N83339 10000 +6204 N8340 10000 +6204 N8341 10000 +6204 N8342 10000 +6205 N8353 10000 +6206 N838 10000 +6207 N837 00000 +6208 N838 10000 +6208 N9983 10000 +6209 N839 00000 +6210 N840 10000 +6211 N853 10000 +6212 N852 00000 +62130 N8500 00000 +62131 N8501 10000 +62132 N8501 10000 +62133 N8502 10000 +62134 N8501 10000 +62135 N8502 10000 +6214 N857 00000 +6215 N856 00000 +6216 N854 00000 +6217 N855 10000 +6218 N858 10000 +6219 N859 00000 +6220 N86 00000 +62210 N879 00000 +62211 N870 00000 +62212 N871 00000 +6222 N880 00000 +6223 N881 00000 +6224 N882 00000 +6225 N883 00000 +6226 N884 00000 +6227 N841 00000 +6228 N888 00000 +6229 N889 00000 +6230 N893 10000 +6231 N894 00000 +6232 N895 10000 +6232 N992 10000 +6233 N896 00000 +6234 N898 10000 +6235 N898 10000 +6236 N898 10000 +6237 N842 00000 +6238 N898 10000 +6239 N899 00000 +62401 N900 00000 +62402 N901 00000 +62409 N904 10000 +6241 N905 00000 +6242 N9089 10000 +6243 N9060 10000 +6243 N9061 10000 +6243 N9069 10000 +6244 N9089 10000 +6245 N9089 10000 +6246 N843 00000 +6248 N907 10000 +6248 N9089 10000 +6249 N909 00000 +6250 N9410 10000 +6250 N9411 10000 +6250 N9412 10000 +6250 N9419 10000 +6251 N942 00000 +6252 N940 00000 +6253 N946 10000 +6254 F3281 10000 +6254 N943 10000 +6255 N9489 10000 +6256 N393 10000 +62570 N94819 00000 +62571 N94810 00000 +62579 N94818 00000 +6258 N9489 10000 +6259 N9489 10000 +6259 R102 10000 +6260 N912 10000 +6261 N915 10000 +6262 N920 00000 +6263 N922 00000 +6264 N925 10000 +6264 N926 10000 +6265 N923 00000 +6266 N921 00000 +6267 N930 00000 +6268 N925 10000 +6268 N931 10000 +6268 N938 10000 +6269 N926 10000 +6269 N939 10000 +6270 N924 00000 +6271 N950 00000 +6272 N951 00000 +6273 N952 00000 +6274 N958 10000 +6278 N958 10000 +6279 N959 10000 +6280 N970 00000 +6281 E230 10000 +6282 N971 00000 +6283 N972 00000 +6284 N978 10000 +6288 N978 10000 +6289 N979 00000 +6290 N9489 10000 +6291 N9489 10000 +62920 N90810 00000 +62921 N90811 00000 +62922 N90812 00000 +62923 N90813 00000 +62929 N90818 00000 +62931 T83711A 10000 +62932 T83721A 10000 +62981 N96 00000 +62989 N9489 10000 +6299 N949 10000 +630 O019 10000 +6310 O0281 00000 +6318 O020 10000 +6318 O0289 10000 +632 O021 00000 +63300 O0000 00000 +63301 O0001 00000 +63310 O0010 00000 +63311 O0011 00000 +63320 O0020 00000 +63321 O0021 00000 +63380 O0080 00000 +63381 O0081 00000 +63390 O0090 00000 +63391 O0091 00000 +63400 O035 10000 +63400 O0387 10000 +63401 O030 10000 +63401 O0337 10000 +63402 O035 10000 +63402 O0387 10000 +63410 O036 10000 +63411 O031 00000 +63412 O036 10000 +63420 O0384 10000 +63421 O0334 00000 +63422 O0384 10000 +63430 O0382 10000 +63431 O0332 00000 +63432 O0382 10000 +63440 O0383 10000 +63441 O0333 00000 +63442 O0383 10000 +63450 O0381 10000 +63451 O0331 00000 +63452 O0381 10000 +63460 O037 10000 +63461 O032 00000 +63462 O037 10000 +63470 O0385 10000 +63470 O0386 10000 +63470 O0388 10000 +63470 O0389 10000 +63471 O0339 10000 +63472 O0385 10000 +63472 O0386 10000 +63472 O0388 10000 +63472 O0389 10000 +63480 O0380 10000 +63481 O0330 10000 +63482 O0380 10000 +63490 O039 10000 +63491 O034 10000 +63492 O039 10000 +63500 O045 10000 +63500 O0487 10000 +63501 O045 10000 +63501 O0487 10000 +63502 O045 10000 +63502 O0487 10000 +63510 O046 10000 +63511 O046 10000 +63512 O046 10000 +63520 O0484 10000 +63521 O0484 10000 +63522 O0484 10000 +63530 O0482 10000 +63531 O0482 10000 +63532 O0482 10000 +63540 O0483 10000 +63541 O0483 10000 +63542 O0483 10000 +63550 O0481 10000 +63551 O0481 10000 +63552 O0481 10000 +63560 O047 10000 +63561 O047 10000 +63562 O047 10000 +63570 O0485 10000 +63570 O0486 10000 +63570 O0488 10000 +63570 O0489 10000 +63571 O0485 10000 +63571 O0486 10000 +63571 O0488 10000 +63571 O0489 10000 +63572 O0485 10000 +63572 O0486 10000 +63572 O0488 10000 +63572 O0489 10000 +63580 O0480 10000 +63581 O0480 10000 +63582 O0480 10000 +63590 Z332 10000 +63591 Z332 10000 +63592 Z332 10000 +63600 O045 10000 +63601 O045 10000 +63602 O045 10000 +63610 O046 10000 +63611 O046 10000 +63612 O046 10000 +63620 O0484 10000 +63621 O0484 10000 +63622 O0484 10000 +63630 O0482 10000 +63631 O0482 10000 +63632 O0482 10000 +63640 O0483 10000 +63641 O0483 10000 +63642 O0483 10000 +63650 O0481 10000 +63651 O0481 10000 +63652 O0481 10000 +63660 O047 10000 +63661 O047 10000 +63662 O047 10000 +63670 O0489 10000 +63671 O0489 10000 +63672 O0489 10000 +63680 O0480 10000 +63681 O0480 10000 +63682 O0480 10000 +63690 Z332 10000 +63691 Z332 10000 +63692 Z332 10000 +63700 O045 10000 +63701 O045 10000 +63702 O045 10000 +63710 O046 10000 +63711 O046 10000 +63712 O046 10000 +63720 O0484 10000 +63721 O0484 10000 +63722 O0484 10000 +63730 O0482 10000 +63731 O0482 10000 +63732 O0482 10000 +63740 O0483 10000 +63741 O0483 10000 +63742 O0483 10000 +63750 O0481 10000 +63751 O0481 10000 +63752 O0481 10000 +63760 O047 10000 +63761 O047 10000 +63762 O047 10000 +63770 O0489 10000 +63771 O0489 10000 +63772 O0489 10000 +63780 O0480 10000 +63781 O0480 10000 +63782 O0480 10000 +63790 Z332 10000 +63791 Z332 10000 +63792 Z332 10000 +6380 O070 10000 +6380 O0737 10000 +6381 O071 00000 +6382 O0734 00000 +6383 O0732 00000 +6384 O0733 00000 +6385 O0731 00000 +6386 O072 00000 +6387 O0735 10000 +6387 O0736 10000 +6387 O0738 10000 +6387 O0739 10000 +6388 O0730 00000 +6389 O074 00000 +6390 A34 10000 +6390 O080 10000 +6390 O0882 10000 +6391 O081 00000 +6392 O086 00000 +6393 O084 00000 +6394 O085 00000 +6395 O083 00000 +6396 O082 00000 +6398 O087 10000 +6398 O0881 10000 +6398 O0883 10000 +6398 O0889 10000 +6399 O089 10000 +64000 O200 10000 +64001 O200 10000 +64003 O200 10000 +64080 O208 10000 +64081 O208 10000 +64083 O208 10000 +64090 O209 10000 +64091 O209 10000 +64093 O209 10000 +64100 O4400 10000 +64100 O4420 10000 +64100 O4440 10000 +64101 O4401 10000 +64101 O4402 10000 +64101 O4403 10000 +64101 O4421 10000 +64101 O4422 10000 +64101 O4423 10000 +64101 O4441 10000 +64101 O4442 10000 +64101 O4443 10000 +64103 O4401 10000 +64103 O4402 10000 +64103 O4403 10000 +64103 O4421 10000 +64103 O4422 10000 +64103 O4423 10000 +64103 O4441 10000 +64103 O4442 10000 +64103 O4443 10000 +64110 O4410 10000 +64110 O4430 10000 +64110 O4450 10000 +64111 O4411 10000 +64111 O4412 10000 +64111 O4413 10000 +64111 O4431 10000 +64111 O4432 10000 +64111 O4433 10000 +64111 O4451 10000 +64111 O4452 10000 +64111 O4453 10000 +64113 O4411 10000 +64113 O4412 10000 +64113 O4413 10000 +64113 O4431 10000 +64113 O4432 10000 +64113 O4433 10000 +64113 O4451 10000 +64113 O4452 10000 +64113 O4453 10000 +64120 O458X9 10000 +64121 O458X1 10000 +64121 O458X2 10000 +64121 O458X3 10000 +64121 O4591 10000 +64121 O4592 10000 +64121 O4593 10000 +64123 O458X1 10000 +64123 O458X2 10000 +64123 O458X3 10000 +64123 O4591 10000 +64123 O4592 10000 +64123 O4593 10000 +64130 O46009 10000 +64130 O46019 10000 +64130 O46029 10000 +64130 O46099 10000 +64131 O45001 10000 +64131 O45002 10000 +64131 O45003 10000 +64131 O45011 10000 +64131 O45012 10000 +64131 O45013 10000 +64131 O45021 10000 +64131 O45022 10000 +64131 O45023 10000 +64131 O45091 10000 +64131 O45092 10000 +64131 O45093 10000 +64131 O46001 10000 +64131 O46002 10000 +64131 O46003 10000 +64131 O46011 10000 +64131 O46012 10000 +64131 O46013 10000 +64131 O46021 10000 +64131 O46022 10000 +64131 O46023 10000 +64131 O46091 10000 +64131 O46092 10000 +64131 O46093 10000 +64131 O670 10000 +64133 O45001 10000 +64133 O45002 10000 +64133 O45003 10000 +64133 O45011 10000 +64133 O45012 10000 +64133 O45013 10000 +64133 O45021 10000 +64133 O45022 10000 +64133 O45023 10000 +64133 O45091 10000 +64133 O45092 10000 +64133 O45093 10000 +64133 O46001 10000 +64133 O46002 10000 +64133 O46003 10000 +64133 O46011 10000 +64133 O46012 10000 +64133 O46013 10000 +64133 O46021 10000 +64133 O46022 10000 +64133 O46023 10000 +64133 O46091 10000 +64133 O46092 10000 +64133 O46093 10000 +64180 O468X9 10000 +64181 O468X1 10000 +64181 O468X2 10000 +64181 O468X3 10000 +64181 O678 10000 +64183 O468X1 10000 +64183 O468X2 10000 +64183 O468X3 10000 +64190 O4690 10000 +64191 O4691 10000 +64191 O4692 10000 +64191 O4693 10000 +64191 O679 10000 +64193 O4691 10000 +64193 O4692 10000 +64193 O4693 10000 +64200 O10019 10000 +64200 O10919 10000 +64201 O10011 10000 +64201 O10012 10000 +64201 O10013 10000 +64201 O1002 10000 +64201 O10911 10000 +64201 O10912 10000 +64201 O10913 10000 +64201 O1092 10000 +64202 O1003 10000 +64203 O10011 10000 +64203 O10012 10000 +64203 O10013 10000 +64203 O10911 10000 +64203 O10912 10000 +64203 O10913 10000 +64204 O1003 10000 +64204 O1093 10000 +64210 O10419 10000 +64211 O10411 10000 +64211 O10412 10000 +64211 O10413 10000 +64211 O1042 10000 +64212 O1043 10000 +64213 O10411 10000 +64213 O10412 10000 +64213 O10413 10000 +64214 O1043 10000 +64220 O10119 10000 +64220 O10219 10000 +64220 O10319 10000 +64220 O119 10000 +64221 O10111 10000 +64221 O10112 10000 +64221 O10113 10000 +64221 O1012 10000 +64221 O10211 10000 +64221 O10212 10000 +64221 O10213 10000 +64221 O1022 10000 +64221 O10311 10000 +64221 O10312 10000 +64221 O10313 10000 +64221 O1032 10000 +64221 O111 10000 +64221 O112 10000 +64221 O113 10000 +64222 O1013 10000 +64223 O10111 10000 +64223 O10112 10000 +64223 O10113 10000 +64223 O10211 10000 +64223 O10212 10000 +64223 O10213 10000 +64223 O10311 10000 +64223 O10312 10000 +64223 O10313 10000 +64223 O111 10000 +64223 O112 10000 +64223 O113 10000 +64224 O1013 10000 +64224 O1023 10000 +64224 O1033 10000 +64230 O139 10000 +64231 O131 10000 +64231 O132 10000 +64231 O133 10000 +64231 O134 10000 +64231 O161 10000 +64231 O162 10000 +64231 O163 10000 +64232 O131 10000 +64232 O132 10000 +64232 O133 10000 +64232 O135 10000 +64233 O131 10000 +64233 O132 10000 +64233 O133 10000 +64233 O161 10000 +64233 O162 10000 +64233 O163 10000 +64234 O131 10000 +64234 O132 10000 +64234 O133 10000 +64234 O135 10000 +64240 O1400 10000 +64240 O1490 10000 +64241 O1402 10000 +64241 O1403 10000 +64241 O1404 10000 +64241 O1492 10000 +64241 O1493 10000 +64241 O1494 10000 +64242 O1402 10000 +64242 O1403 10000 +64242 O1405 10000 +64242 O1495 10000 +64243 O1402 10000 +64243 O1403 10000 +64243 O1492 10000 +64243 O1493 10000 +64244 O1405 10000 +64244 O1495 10000 +64244 O152 10000 +64250 O1410 10000 +64250 O1420 10000 +64251 O1412 10000 +64251 O1413 10000 +64251 O1414 10000 +64251 O1422 10000 +64251 O1423 10000 +64251 O1424 10000 +64252 O1412 10000 +64252 O1413 10000 +64252 O1415 10000 +64252 O1422 10000 +64252 O1423 10000 +64252 O1425 10000 +64253 O1412 10000 +64253 O1413 10000 +64253 O1422 10000 +64253 O1423 10000 +64254 O1412 10000 +64254 O1413 10000 +64254 O1415 10000 +64254 O1422 10000 +64254 O1423 10000 +64254 O1425 10000 +64260 O159 10000 +64261 O1502 10000 +64261 O1503 10000 +64261 O151 10000 +64262 O152 10000 +64263 O1502 10000 +64263 O1503 10000 +64264 O152 10000 +64270 O119 10000 +64271 O111 10000 +64271 O112 10000 +64271 O113 10000 +64271 O114 10000 +64272 O114 10000 +64273 O111 10000 +64273 O112 10000 +64273 O113 10000 +64274 O115 10000 +64290 O169 10000 +64291 O161 10000 +64291 O162 10000 +64291 O163 10000 +64291 O164 10000 +64292 O165 10000 +64292 O169 10000 +64293 O161 10000 +64293 O162 10000 +64293 O163 10000 +64294 O161 10000 +64294 O162 10000 +64294 O163 10000 +64294 O165 10000 +64300 O210 10000 +64301 O210 10000 +64303 O210 10000 +64310 O211 10000 +64311 O211 10000 +64313 O211 10000 +64320 O212 10000 +64321 O212 10000 +64323 O212 10000 +64380 O218 10000 +64381 O218 10000 +64383 O218 10000 +64390 O219 10000 +64391 O219 10000 +64393 O219 10000 +64400 O6000 10000 +64403 O6002 10000 +64403 O6003 10000 +64410 O4700 10000 +64410 O479 10000 +64413 O4702 10000 +64413 O4703 10000 +64413 O471 10000 +64420 O6010X0 10000 +64421 O6012X0 10000 +64421 O6013X0 10000 +64421 O6014X0 10000 +64510 O480 10000 +64511 O480 10000 +64513 O480 10000 +64520 O481 10000 +64521 O481 10000 +64523 O481 10000 +64600 O3100X0 10000 +64601 O3101X0 10000 +64601 O3102X0 10000 +64601 O3103X0 10000 +64603 O3101X0 10000 +64603 O3102X0 10000 +64603 O3103X0 10000 +64610 O1200 10000 +64610 O1220 10000 +64610 O2600 10000 +64611 O1201 10000 +64611 O1202 10000 +64611 O1203 10000 +64611 O1204 10000 +64611 O1221 10000 +64611 O1222 10000 +64611 O1223 10000 +64611 O1224 10000 +64611 O2601 10000 +64611 O2602 10000 +64611 O2603 10000 +64612 O1201 10000 +64612 O1202 10000 +64612 O1203 10000 +64612 O1205 10000 +64612 O1224 10000 +64613 O1201 10000 +64613 O1202 10000 +64613 O1203 10000 +64613 O1221 10000 +64613 O1222 10000 +64613 O1223 10000 +64613 O2601 10000 +64613 O2602 10000 +64613 O2603 10000 +64614 O1201 10000 +64614 O1202 10000 +64614 O1203 10000 +64614 O1205 10000 +64614 O1225 10000 +64620 O26839 10000 +64621 O1214 10000 +64621 O26831 10000 +64621 O26832 10000 +64621 O26833 10000 +64622 O1215 10000 +64622 O26831 10000 +64622 O26832 10000 +64622 O26833 10000 +64623 O26831 10000 +64623 O26832 10000 +64623 O26833 10000 +64624 O1215 10000 +64624 O9089 10000 +64630 O2620 10000 +64631 O2621 10000 +64631 O2622 10000 +64631 O2623 10000 +64633 O2621 10000 +64633 O2622 10000 +64633 O2623 10000 +64640 O26829 10000 +64641 O26821 10000 +64641 O26822 10000 +64641 O26823 10000 +64642 O26821 10000 +64642 O26822 10000 +64642 O26823 10000 +64643 O26821 10000 +64643 O26822 10000 +64643 O26823 10000 +64644 O9089 10000 +64650 O2340 10000 +64651 O2341 10000 +64651 O2342 10000 +64651 O2343 10000 +64652 O2391 10000 +64652 O2392 10000 +64652 O2393 10000 +64653 O2341 10000 +64653 O2342 10000 +64653 O2343 10000 +64654 O9089 10000 +64660 O2300 10000 +64660 O2310 10000 +64660 O2320 10000 +64660 O2330 10000 +64660 O2340 10000 +64660 O23519 10000 +64660 O23529 10000 +64660 O23599 10000 +64660 O2390 10000 +64661 O2391 10000 +64661 O2392 10000 +64661 O2393 10000 +64662 O2391 10000 +64662 O2392 10000 +64662 O2393 10000 +64663 O2391 10000 +64663 O2392 10000 +64663 O2393 10000 +64664 O8611 10000 +64664 O8613 10000 +64664 O8619 10000 +64664 O8620 10000 +64664 O8621 10000 +64664 O8622 10000 +64664 O8629 10000 +64670 O26619 10000 +64671 O26611 10000 +64671 O26612 10000 +64671 O26613 10000 +64671 O2662 10000 +64673 O26611 10000 +64673 O26612 10000 +64673 O26613 10000 +64680 O26819 10000 +64680 O9989 10000 +64681 O2611 10000 +64681 O2612 10000 +64681 O2613 10000 +64681 O2641 10000 +64681 O2642 10000 +64681 O2643 10000 +64681 O26811 10000 +64681 O26812 10000 +64681 O26813 10000 +64681 O26891 10000 +64681 O26892 10000 +64681 O26893 10000 +64681 O9989 10000 +64682 O26891 10000 +64682 O26892 10000 +64682 O26893 10000 +64683 O2611 10000 +64683 O2612 10000 +64683 O2613 10000 +64683 O2641 10000 +64683 O2642 10000 +64683 O2643 10000 +64683 O26811 10000 +64683 O26812 10000 +64683 O26813 10000 +64683 O26891 10000 +64683 O26892 10000 +64683 O26893 10000 +64683 O9989 10000 +64684 O9089 10000 +64690 O2690 10000 +64691 O9989 10000 +64693 O9989 10000 +64700 O98119 10000 +64701 O98111 10000 +64701 O98112 10000 +64701 O98113 10000 +64701 O9812 10000 +64702 O9813 10000 +64703 O98111 10000 +64703 O98112 10000 +64703 O98113 10000 +64704 O9813 10000 +64710 O98219 10000 +64711 O98211 10000 +64711 O98212 10000 +64711 O98213 10000 +64711 O9822 10000 +64712 O9823 10000 +64713 O98211 10000 +64713 O98212 10000 +64713 O98213 10000 +64714 O9823 10000 +64720 O98319 10000 +64721 O98311 10000 +64721 O98312 10000 +64721 O98313 10000 +64721 O9832 10000 +64722 O9833 10000 +64723 O98311 10000 +64723 O98312 10000 +64723 O98313 10000 +64724 O9833 10000 +64730 O98019 10000 +64731 O98011 10000 +64731 O98012 10000 +64731 O98013 10000 +64731 O9802 10000 +64732 O9803 10000 +64733 O98011 10000 +64733 O98012 10000 +64733 O98013 10000 +64734 O9803 10000 +64740 O98619 10000 +64741 O98611 10000 +64741 O98612 10000 +64741 O98613 10000 +64741 O9862 10000 +64742 O9863 10000 +64743 O98611 10000 +64743 O98612 10000 +64743 O98613 10000 +64744 O9863 10000 +64750 O98519 10000 +64751 O98511 10000 +64751 O98512 10000 +64751 O98513 10000 +64751 O9852 10000 +64752 O9853 10000 +64753 O98511 10000 +64753 O98512 10000 +64753 O98513 10000 +64754 O9853 10000 +64760 O98519 10000 +64761 O9842 10000 +64761 O98511 10000 +64761 O98512 10000 +64761 O98513 10000 +64761 O9852 10000 +64762 O9843 10000 +64762 O9853 10000 +64763 O98511 10000 +64763 O98512 10000 +64763 O98513 10000 +64764 O9843 10000 +64764 O9853 10000 +64780 O98819 10000 +64781 O98611 10000 +64781 O98612 10000 +64781 O98613 10000 +64781 O98811 10000 +64781 O98812 10000 +64781 O98813 10000 +64781 O9882 10000 +64781 O99834 10000 +64782 O9883 10000 +64782 O99835 10000 +64783 O98611 10000 +64783 O98612 10000 +64783 O98613 10000 +64783 O98811 10000 +64783 O98812 10000 +64783 O98813 10000 +64784 O9883 10000 +64790 O98919 10000 +64791 O98911 10000 +64791 O98912 10000 +64791 O98913 10000 +64791 O9892 10000 +64792 O9893 10000 +64793 O98911 10000 +64793 O98912 10000 +64793 O98913 10000 +64794 O9893 10000 +64800 O24319 10000 +64801 O2432 10000 +64801 O24911 10000 +64801 O24912 10000 +64801 O24913 10000 +64801 O2492 10000 +64802 O2493 10000 +64803 O24911 10000 +64803 O24912 10000 +64803 O24913 10000 +64804 O2493 10000 +64810 O99280 10000 +64811 O99281 10000 +64811 O99282 10000 +64811 O99283 10000 +64811 O99284 10000 +64812 O905 10000 +64812 O99285 10000 +64813 O99281 10000 +64813 O99282 10000 +64813 O99283 10000 +64814 O905 10000 +64814 O99285 10000 +64820 O99019 10000 +64821 O99011 10000 +64821 O99012 10000 +64821 O99013 10000 +64821 O9902 10000 +64822 O9903 10000 +64823 O99011 10000 +64823 O99012 10000 +64823 O99013 10000 +64824 O9081 10000 +64824 O9903 10000 +64830 O99320 10000 +64831 O99321 10000 +64831 O99322 10000 +64831 O99323 10000 +64831 O99324 10000 +64832 O99325 10000 +64833 O99321 10000 +64833 O99322 10000 +64833 O99323 10000 +64834 O99325 10000 +64840 O99340 10000 +64841 O99341 10000 +64841 O99342 10000 +64841 O99343 10000 +64841 O99344 10000 +64842 O906 10000 +64842 O99345 10000 +64843 O99341 10000 +64843 O99342 10000 +64843 O99343 10000 +64844 O99345 10000 +64850 O99419 10000 +64851 O99411 10000 +64851 O99412 10000 +64851 O99413 10000 +64851 O9942 10000 +64852 O9943 10000 +64853 O99411 10000 +64853 O99412 10000 +64853 O99413 10000 +64854 O9943 10000 +64860 O99419 10000 +64861 O99411 10000 +64861 O99412 10000 +64861 O99413 10000 +64861 O9942 10000 +64862 O9943 10000 +64863 O99411 10000 +64863 O99412 10000 +64863 O99413 10000 +64864 O9943 10000 +64870 O330 10000 +64871 O330 10000 +64872 O330 10000 +64873 O330 10000 +64874 O330 10000 +64880 O99810 10000 +64881 O24419 10000 +64881 O24425 10000 +64881 O24429 10000 +64881 O99810 10000 +64881 O99814 10000 +64882 O24435 10000 +64882 O99815 10000 +64883 O24415 10000 +64883 O24419 10000 +64883 O99810 10000 +64884 O24435 10000 +64884 O24439 10000 +64884 O99815 10000 +64890 O2510 10000 +64891 O252 10000 +64891 O99284 10000 +64892 O99285 10000 +64893 O2511 10000 +64893 O2512 10000 +64893 O2513 10000 +64893 O99281 10000 +64893 O99282 10000 +64893 O99283 10000 +64894 O253 10000 +64894 O99285 10000 +64894 O9953 10000 +64894 O9963 10000 +64894 O9A23 10000 +64900 O99330 10000 +64901 O99331 10000 +64901 O99332 10000 +64901 O99333 10000 +64901 O99334 10000 +64902 O99335 10000 +64903 O99331 10000 +64903 O99332 10000 +64903 O99333 10000 +64904 O99335 10000 +64910 O99210 10000 +64911 O99211 10000 +64911 O99212 10000 +64911 O99213 10000 +64911 O99214 10000 +64912 O99215 10000 +64913 O99211 10000 +64913 O99212 10000 +64913 O99213 10000 +64914 O99215 10000 +64920 O99840 10000 +64921 O99841 10000 +64921 O99842 10000 +64921 O99843 10000 +64921 O99844 10000 +64922 O99845 10000 +64923 O99841 10000 +64923 O99842 10000 +64923 O99843 10000 +64924 O99845 10000 +64930 O99119 10000 +64931 O99111 10000 +64931 O99112 10000 +64931 O99113 10000 +64931 O9912 10000 +64932 O9913 10000 +64933 O99111 10000 +64933 O99112 10000 +64933 O99113 10000 +64934 O9913 10000 +64940 O99350 10000 +64941 O99351 10000 +64941 O99352 10000 +64941 O99353 10000 +64941 O99354 10000 +64942 O99355 10000 +64943 O99351 10000 +64943 O99352 10000 +64943 O99353 10000 +64944 O99355 10000 +64950 O26859 10000 +64951 O26851 10000 +64951 O26852 10000 +64951 O26853 10000 +64953 O26851 10000 +64953 O26852 10000 +64953 O26853 10000 +64960 O26849 10000 +64961 O26841 10000 +64961 O26842 10000 +64961 O26843 10000 +64962 O26841 10000 +64962 O26842 10000 +64962 O26843 10000 +64963 O26841 10000 +64963 O26842 10000 +64963 O26843 10000 +64964 O26841 10000 +64964 O26842 10000 +64964 O26843 10000 +64970 O26879 10000 +64971 O26872 10000 +64971 O26873 10000 +64973 O26872 10000 +64973 O26873 10000 +64981 O7582 10000 +64982 O7582 10000 +650 O80 00000 +65100 O30009 10000 +65101 O30001 10000 +65101 O30002 10000 +65101 O30003 10000 +65103 O30001 10000 +65103 O30002 10000 +65103 O30003 10000 +65110 O30109 10000 +65111 O30101 10000 +65111 O30102 10000 +65111 O30103 10000 +65113 O30101 10000 +65113 O30102 10000 +65113 O30103 10000 +65120 O30209 10000 +65121 O30201 10000 +65121 O30202 10000 +65121 O30203 10000 +65123 O30201 10000 +65123 O30202 10000 +65123 O30203 10000 +65130 O3110X0 10000 +65131 O3111X0 10000 +65133 O3111X0 10000 +65140 O3110X0 10000 +65141 O3111X0 10000 +65143 O3111X0 10000 +65150 O3110X0 10000 +65151 O3111X0 10000 +65153 O3111X0 10000 +65160 O3110X0 10000 +65161 O3111X0 10000 +65163 O3111X0 10000 +65170 O3130X0 10000 +65171 O3131X0 10000 +65171 O3132X0 10000 +65171 O3133X0 10000 +65173 O3131X0 10000 +65173 O3132X0 10000 +65173 O3133X0 10000 +65180 O30809 10000 +65181 O30801 10000 +65181 O30802 10000 +65181 O30803 10000 +65181 O318X10 10000 +65181 O318X20 10000 +65181 O318X30 10000 +65183 O30801 10000 +65183 O30802 10000 +65183 O30803 10000 +65183 O318X10 10000 +65183 O318X20 10000 +65183 O318X30 10000 +65190 O3090 10000 +65190 O318X90 10000 +65191 O3091 10000 +65191 O3092 10000 +65191 O3093 10000 +65193 O3091 10000 +65193 O3092 10000 +65193 O3093 10000 +65200 O320XX0 10000 +65201 O320XX0 10000 +65203 O320XX0 10000 +65210 O321XX0 10000 +65211 O321XX0 10000 +65213 O321XX0 10000 +65220 O321XX0 10000 +65221 O321XX0 10000 +65223 O321XX0 10000 +65230 O322XX0 10000 +65231 O322XX0 10000 +65233 O322XX0 10000 +65240 O323XX0 10000 +65241 O323XX0 10000 +65243 O323XX0 10000 +65250 O324XX0 10000 +65251 O324XX0 10000 +65253 O324XX0 10000 +65260 O329XX0 10000 +65261 O329XX0 10000 +65263 O329XX0 10000 +65270 O328XX0 10000 +65271 O328XX0 10000 +65273 O328XX0 10000 +65280 O328XX0 10000 +65281 O326XX0 10000 +65281 O328XX0 10000 +65283 O326XX0 10000 +65283 O328XX0 10000 +65290 O329XX0 10000 +65291 O329XX0 10000 +65293 O329XX0 10000 +65300 O330 10000 +65301 O330 10000 +65303 O330 10000 +65310 O331 10000 +65311 O331 10000 +65313 O331 10000 +65320 O332 10000 +65321 O332 10000 +65323 O332 10000 +65330 O333XX0 10000 +65331 O333XX0 10000 +65333 O333XX0 10000 +65340 O334XX0 10000 +65341 O334XX0 10000 +65343 O334XX0 10000 +65350 O335XX0 10000 +65351 O335XX0 10000 +65353 O335XX0 10000 +65360 O336XX0 10000 +65361 O336XX0 10000 +65363 O336XX0 10000 +65370 O337XX0 10000 +65371 O337XX0 10000 +65371 O337XX1 10000 +65371 O337XX2 10000 +65371 O337XX3 10000 +65371 O337XX4 10000 +65371 O337XX5 10000 +65371 O337XX9 10000 +65373 O337XX0 10000 +65373 O337XX1 10000 +65373 O337XX2 10000 +65373 O337XX3 10000 +65373 O337XX4 10000 +65373 O337XX5 10000 +65373 O337XX9 10000 +65380 O338 10000 +65381 O338 10000 +65383 O338 10000 +65390 O339 10000 +65391 O339 10000 +65393 O339 10000 +65400 O3400 10000 +65401 O3401 10000 +65401 O3402 10000 +65401 O3403 10000 +65402 O3401 10000 +65402 O3402 10000 +65402 O3403 10000 +65403 O3401 10000 +65403 O3402 10000 +65403 O3403 10000 +65404 O3401 10000 +65404 O3402 10000 +65404 O3403 10000 +65410 O3410 10000 +65411 O3411 10000 +65411 O3412 10000 +65411 O3413 10000 +65412 O3411 10000 +65412 O3412 10000 +65412 O3413 10000 +65413 O3411 10000 +65413 O3412 10000 +65413 O3413 10000 +65414 O3411 10000 +65414 O3412 10000 +65414 O3413 10000 +65420 O34219 10000 +65421 O34211 10000 +65421 O34212 10000 +65421 O34219 10000 +65423 O34211 10000 +65423 O34212 10000 +65423 O34219 10000 +65430 O34519 10000 +65430 O34539 10000 +65431 O34511 10000 +65431 O34512 10000 +65431 O34513 10000 +65431 O34531 10000 +65431 O34532 10000 +65431 O34533 10000 +65432 O34511 10000 +65432 O34512 10000 +65432 O34513 10000 +65432 O34531 10000 +65432 O34532 10000 +65432 O34533 10000 +65433 O34511 10000 +65433 O34512 10000 +65433 O34513 10000 +65433 O34531 10000 +65433 O34532 10000 +65433 O34533 10000 +65434 O34511 10000 +65434 O34512 10000 +65434 O34513 10000 +65434 O34531 10000 +65434 O34532 10000 +65434 O34533 10000 +65440 O34529 10000 +65440 O34599 10000 +65441 O34521 10000 +65441 O34522 10000 +65441 O34523 10000 +65441 O34591 10000 +65441 O34592 10000 +65441 O34593 10000 +65442 O34591 10000 +65442 O34592 10000 +65442 O34593 10000 +65443 O34521 10000 +65443 O34522 10000 +65443 O34523 10000 +65443 O34591 10000 +65443 O34592 10000 +65443 O34593 10000 +65444 O34591 10000 +65444 O34592 10000 +65444 O34593 10000 +65450 O3430 10000 +65451 O3431 10000 +65451 O3432 10000 +65451 O3433 10000 +65452 O3431 10000 +65452 O3432 10000 +65452 O3433 10000 +65453 O3431 10000 +65453 O3432 10000 +65453 O3433 10000 +65454 O3431 10000 +65454 O3432 10000 +65454 O3433 10000 +65460 O3440 10000 +65461 O3441 10000 +65461 O3442 10000 +65461 O3443 10000 +65462 O3441 10000 +65462 O3442 10000 +65462 O3443 10000 +65463 O3441 10000 +65463 O3442 10000 +65463 O3443 10000 +65464 O3441 10000 +65464 O3442 10000 +65464 O3443 10000 +65470 O3460 10000 +65471 O3461 10000 +65471 O3462 10000 +65471 O3463 10000 +65472 O3461 10000 +65472 O3462 10000 +65472 O3463 10000 +65473 O3461 10000 +65473 O3462 10000 +65473 O3463 10000 +65474 O3461 10000 +65474 O3462 10000 +65474 O3463 10000 +65480 O3470 10000 +65481 O3471 10000 +65481 O3472 10000 +65481 O3473 10000 +65482 O3471 10000 +65482 O3472 10000 +65482 O3473 10000 +65483 O3471 10000 +65483 O3472 10000 +65483 O3473 10000 +65484 O3471 10000 +65484 O3472 10000 +65484 O3473 10000 +65490 O3480 10000 +65490 O3490 10000 +65491 O3429 10000 +65491 O3481 10000 +65491 O3482 10000 +65491 O3483 10000 +65491 O3491 10000 +65491 O3492 10000 +65491 O3493 10000 +65492 O3481 10000 +65492 O3482 10000 +65492 O3483 10000 +65492 O3491 10000 +65492 O3492 10000 +65492 O3493 10000 +65493 O3429 10000 +65493 O3481 10000 +65493 O3482 10000 +65493 O3483 10000 +65493 O3491 10000 +65493 O3492 10000 +65493 O3493 10000 +65494 O3481 10000 +65494 O3482 10000 +65494 O3483 10000 +65494 O3491 10000 +65494 O3492 10000 +65494 O3493 10000 +65500 O350XX0 10000 +65501 O350XX0 10000 +65503 O350XX0 10000 +65510 O351XX0 10000 +65511 O351XX0 10000 +65513 O351XX0 10000 +65520 O352XX0 10000 +65521 O352XX0 10000 +65523 O352XX0 10000 +65530 O353XX0 10000 +65531 O353XX0 10000 +65533 O353XX0 10000 +65540 O354XX0 10000 +65541 O354XX0 10000 +65543 O354XX0 10000 +65550 O355XX0 10000 +65551 O355XX0 10000 +65553 O355XX0 10000 +65560 O356XX0 10000 +65561 O356XX0 10000 +65563 O356XX0 10000 +65570 O368190 10000 +65571 O368120 10000 +65571 O368130 10000 +65573 O368120 10000 +65573 O368130 10000 +65573 O368190 10000 +65580 O358XX0 10000 +65581 O358XX0 10000 +65583 O358XX0 10000 +65590 O359XX0 10000 +65591 O359XX0 10000 +65593 O359XX0 10000 +65600 O43019 10000 +65601 O43011 10000 +65603 O43011 10000 +65610 O360190 10000 +65610 O360990 10000 +65611 O360110 10000 +65611 O360120 10000 +65611 O360130 10000 +65611 O360910 10000 +65611 O360920 10000 +65611 O360930 10000 +65613 O360110 10000 +65613 O360120 10000 +65613 O360130 10000 +65613 O360910 10000 +65613 O360920 10000 +65613 O360930 10000 +65620 O361190 10000 +65620 O361990 10000 +65621 O361110 10000 +65621 O361120 10000 +65621 O361130 10000 +65621 O361910 10000 +65621 O361920 10000 +65621 O361930 10000 +65623 O361110 10000 +65623 O361120 10000 +65623 O361130 10000 +65623 O361910 10000 +65623 O361920 10000 +65623 O361930 10000 +65630 O68 10000 +65631 O68 10000 +65633 O68 10000 +65640 O364XX0 10000 +65641 O364XX0 10000 +65643 O364XX0 10000 +65650 O365190 10000 +65650 O365990 10000 +65651 O365110 10000 +65651 O365120 10000 +65651 O365130 10000 +65651 O365910 10000 +65651 O365920 10000 +65651 O365930 10000 +65653 O365110 10000 +65653 O365120 10000 +65653 O365130 10000 +65653 O365910 10000 +65653 O365920 10000 +65653 O365930 10000 +65660 O3660X0 10000 +65661 O3661X0 10000 +65661 O3662X0 10000 +65661 O3663X0 10000 +65663 O3661X0 10000 +65663 O3662X0 10000 +65663 O3663X0 10000 +65670 O43199 10000 +65670 O43819 10000 +65671 O43101 10000 +65671 O43102 10000 +65671 O43103 10000 +65671 O43811 10000 +65671 O43812 10000 +65671 O43813 10000 +65671 O4391 10000 +65671 O4392 10000 +65671 O4393 10000 +65673 O43101 10000 +65673 O43102 10000 +65673 O43103 10000 +65673 O43811 10000 +65673 O43812 10000 +65673 O43813 10000 +65673 O4391 10000 +65673 O4392 10000 +65673 O4393 10000 +65680 O368990 10000 +65680 O68 10000 +65680 O770 10000 +65681 O368910 10000 +65681 O368920 10000 +65681 O368930 10000 +65681 O68 10000 +65681 O770 10000 +65683 O368910 10000 +65683 O368920 10000 +65683 O368930 10000 +65683 O68 10000 +65690 O3690X0 10000 +65691 O3691X0 10000 +65691 O3692X0 10000 +65691 O3693X0 10000 +65693 O3691X0 10000 +65693 O3692X0 10000 +65693 O3693X0 10000 +65700 O409XX0 10000 +65701 O401XX0 10000 +65701 O402XX0 10000 +65701 O403XX0 10000 +65703 O401XX0 10000 +65703 O402XX0 10000 +65703 O403XX0 10000 +65800 O4100X0 10000 +65801 O4101X0 10000 +65801 O4102X0 10000 +65801 O4103X0 10000 +65803 O4101X0 10000 +65803 O4102X0 10000 +65803 O4103X0 10000 +65810 O4200 10000 +65811 O4200 10000 +65811 O42011 10000 +65811 O42012 10000 +65811 O42013 10000 +65811 O4202 10000 +65813 O42011 10000 +65813 O42012 10000 +65813 O42013 10000 +65820 O4210 10000 +65821 O4210 10000 +65821 O42111 10000 +65821 O42112 10000 +65821 O42113 10000 +65821 O4212 10000 +65823 O42111 10000 +65823 O42112 10000 +65823 O42113 10000 +65830 O755 10000 +65831 O755 10000 +65833 O755 10000 +65840 O411090 10000 +65840 O411290 10000 +65840 O411490 10000 +65841 O411010 10000 +65841 O411020 10000 +65841 O411030 10000 +65841 O411210 10000 +65841 O411220 10000 +65841 O411230 10000 +65841 O411410 10000 +65841 O411420 10000 +65841 O411430 10000 +65843 O411010 10000 +65843 O411020 10000 +65843 O411030 10000 +65843 O411210 10000 +65843 O411220 10000 +65843 O411230 10000 +65843 O411410 10000 +65843 O411420 10000 +65843 O411430 10000 +65880 O418X90 10000 +65881 O418X10 10000 +65881 O418X20 10000 +65881 O418X30 10000 +65883 O418X10 10000 +65883 O418X20 10000 +65883 O418X30 10000 +65890 O4190X0 10000 +65891 O4191X0 10000 +65891 O4192X0 10000 +65891 O4193X0 10000 +65893 O4191X0 10000 +65893 O4192X0 10000 +65893 O4193X0 10000 +65900 O611 10000 +65901 O611 10000 +65903 O611 10000 +65910 O610 10000 +65911 O610 10000 +65911 O619 10000 +65913 O610 10000 +65920 O752 10000 +65921 O752 10000 +65923 O752 10000 +65930 O753 10000 +65931 O753 10000 +65933 O753 10000 +65940 O0940 10000 +65941 O0941 10000 +65941 O0942 10000 +65941 O0943 10000 +65943 O0941 10000 +65943 O0942 10000 +65943 O0943 10000 +65950 O09519 10000 +65951 O09511 10000 +65951 O09512 10000 +65951 O09513 10000 +65953 O09511 10000 +65953 O09512 10000 +65953 O09513 10000 +65960 O09529 10000 +65961 O09521 10000 +65961 O09522 10000 +65961 O09523 10000 +65963 O09521 10000 +65963 O09522 10000 +65963 O09523 10000 +65970 O76 10000 +65971 O76 10000 +65973 O76 10000 +65980 O7589 10000 +65981 O7589 10000 +65983 O7589 10000 +65990 O759 10000 +65991 O759 10000 +65993 O759 10000 +66000 O649XX0 10000 +66001 O649XX0 10000 +66003 O649XX0 10000 +66010 O654 10000 +66011 O654 10000 +66013 O654 10000 +66020 O659 10000 +66021 O655 10000 +66023 O659 10000 +66030 O640XX0 10000 +66031 O640XX0 10000 +66033 O640XX0 10000 +66040 O660 10000 +66041 O660 10000 +66043 O660 10000 +66050 O661 10000 +66051 O661 10000 +66053 O661 10000 +66060 O6640 10000 +66061 O6640 10000 +66063 O6640 10000 +66070 O665 10000 +66071 O665 10000 +66073 O665 10000 +66080 O668 10000 +66081 O668 10000 +66083 O668 10000 +66090 O669 10000 +66091 O669 10000 +66093 O669 10000 +66100 O620 10000 +66101 O620 10000 +66103 O620 10000 +66110 O621 10000 +66111 O621 10000 +66113 O621 10000 +66120 O622 10000 +66121 O622 10000 +66123 O622 10000 +66130 O623 10000 +66131 O623 10000 +66133 O623 10000 +66140 O624 10000 +66141 O624 10000 +66143 O624 10000 +66190 O629 10000 +66191 O629 10000 +66193 O629 10000 +66200 O630 10000 +66201 O630 10000 +66203 O630 10000 +66210 O639 10000 +66211 O639 10000 +66213 O639 10000 +66220 O631 10000 +66221 O631 10000 +66223 O631 10000 +66230 O632 10000 +66231 O632 10000 +66233 O632 10000 +66300 O690XX0 10000 +66301 O690XX0 10000 +66303 O690XX0 10000 +66310 O691XX0 10000 +66311 O691XX0 10000 +66313 O691XX0 10000 +66320 O692XX0 10000 +66321 O692XX0 10000 +66323 O692XX0 10000 +66330 O6981X0 10000 +66330 O6982X0 10000 +66330 O6989X0 10000 +66331 O6981X0 10000 +66331 O6982X0 10000 +66331 O6989X0 10000 +66333 O6981X0 10000 +66333 O6982X0 10000 +66333 O6989X0 10000 +66340 O693XX0 10000 +66341 O693XX0 10000 +66343 O693XX0 10000 +66350 O694XX0 10000 +66351 O694XX0 10000 +66353 O694XX0 10000 +66360 O695XX0 10000 +66361 O695XX0 10000 +66363 O695XX0 10000 +66380 O6989X0 10000 +66381 O6989X0 10000 +66383 O6989X0 10000 +66390 O699XX0 10000 +66391 O699XX0 10000 +66393 O699XX0 10000 +66400 O700 10000 +66401 O700 10000 +66404 O700 10000 +66410 O701 10000 +66411 O701 10000 +66414 O701 10000 +66420 O7020 10000 +66420 O7021 10000 +66420 O7022 10000 +66420 O7023 10000 +66421 O7020 10000 +66421 O7021 10000 +66421 O7022 10000 +66421 O7023 10000 +66424 O7020 10000 +66424 O7021 10000 +66424 O7022 10000 +66424 O7023 10000 +66430 O703 10000 +66431 O703 10000 +66434 O703 10000 +66440 O709 10000 +66441 O709 10000 +66444 O709 10000 +66450 O717 10000 +66451 O717 10000 +66454 O717 10000 +66460 O704 10000 +66461 O704 10000 +66464 O704 10000 +66480 O7182 10000 +66481 O7182 10000 +66484 O7182 10000 +66490 O719 10000 +66491 O719 10000 +66494 O719 10000 +66500 O7100 10000 +66501 O7102 10000 +66501 O7103 10000 +66503 O7102 10000 +66503 O7103 10000 +66510 O711 10000 +66511 O711 10000 +66520 O712 10000 +66522 O712 10000 +66524 O712 10000 +66530 O713 10000 +66531 O713 10000 +66534 O713 10000 +66540 O714 10000 +66541 O714 10000 +66544 O714 10000 +66550 O715 10000 +66551 O715 10000 +66554 O715 10000 +66560 O716 10000 +66561 O716 10000 +66564 O716 10000 +66570 O717 10000 +66571 O717 10000 +66572 O717 10000 +66574 O717 10000 +66580 O7189 10000 +66581 O7189 10000 +66582 O7189 10000 +66583 O7189 10000 +66584 O7189 10000 +66590 O719 10000 +66591 O719 10000 +66592 O719 10000 +66593 O719 10000 +66594 O719 10000 +66600 O720 10000 +66602 O43211 10112 +66602 O43212 10112 +66602 O43213 10112 +66602 O43221 10112 +66602 O43222 10112 +66602 O43223 10112 +66602 O43231 10112 +66602 O43232 10112 +66602 O43233 10112 +66602 O720 10000 +66602 O720 10111 +66604 O43211 10112 +66604 O43212 10112 +66604 O43213 10112 +66604 O43221 10112 +66604 O43222 10112 +66604 O43223 10112 +66604 O43231 10112 +66604 O43232 10112 +66604 O43233 10112 +66604 O720 10000 +66604 O720 10111 +66610 O721 10000 +66612 O721 10000 +66614 O721 10000 +66620 O722 10000 +66622 O722 10000 +66624 O722 10000 +66630 O723 10000 +66632 O723 10000 +66634 O723 10000 +66700 O43239 10000 +66700 O730 10000 +66702 O43231 10000 +66702 O730 10000 +66704 O43231 10000 +66704 O730 10000 +66710 O731 10000 +66712 O731 10000 +66714 O731 10000 +66800 O741 10000 +66801 O741 10000 +66802 O741 10000 +66802 O8909 10000 +66803 O741 10000 +66804 O8909 10000 +66810 O742 10000 +66811 O742 10000 +66812 O742 10000 +66813 O742 10000 +66814 O891 10000 +66820 O743 10000 +66821 O743 10000 +66822 O743 10000 +66823 O743 10000 +66824 O892 10000 +66880 O748 10000 +66881 O748 10000 +66882 O748 10000 +66882 O898 10000 +66883 O748 10000 +66884 O898 10000 +66890 O749 10000 +66891 O749 10000 +66892 O749 10000 +66892 O899 10000 +66893 O749 10000 +66894 O899 10000 +66900 O750 10000 +66901 O750 10000 +66902 O750 10000 +66903 O750 10000 +66904 O750 10000 +66910 O751 10000 +66911 O751 10000 +66912 O751 10000 +66913 O751 10000 +66914 O751 10000 +66920 O2650 10000 +66921 O2651 10000 +66921 O2652 10000 +66921 O2653 10000 +66922 O2651 10000 +66922 O2652 10000 +66922 O2653 10000 +66923 O2651 10000 +66923 O2652 10000 +66923 O2653 10000 +66924 O2651 10000 +66924 O2652 10000 +66924 O2653 10000 +66930 O904 10000 +66932 O904 10000 +66934 O904 10000 +66940 O754 10000 +66941 O754 10000 +66942 O754 10000 +66943 O754 10000 +66944 O754 10000 +66950 O665 10000 +66951 O665 10000 +66960 O641XX0 10000 +66961 O641XX0 10000 +66970 O82 10000 +66971 O82 10000 +66980 O7581 10000 +66980 O7589 10000 +66981 O7581 10000 +66981 O7589 10000 +66982 O7581 10000 +66982 O7589 10000 +66983 O7581 10000 +66983 O7589 10000 +66984 O7581 10000 +66984 O7589 10000 +66990 O759 10000 +66991 O759 10000 +66992 O759 10000 +66993 O759 10000 +66994 O759 10000 +67000 O8689 10000 +67002 O8689 10000 +67004 O8689 10000 +67010 O8612 10000 +67012 O8612 10000 +67014 O8612 10000 +67020 O85 10000 +67022 O85 10000 +67024 O85 10000 +67030 O8681 10000 +67032 O8681 10000 +67034 O8681 10000 +67080 O8689 10000 +67082 O8689 10000 +67084 O8689 10000 +67100 O2200 10000 +67101 O2201 10000 +67101 O2202 10000 +67101 O2203 10000 +67102 O874 10000 +67103 O2201 10000 +67103 O2202 10000 +67103 O2203 10000 +67104 O874 10000 +67110 O2210 10000 +67111 O2211 10000 +67111 O2212 10000 +67111 O2213 10000 +67112 O2211 10000 +67112 O2212 10000 +67112 O2213 10000 +67113 O2211 10000 +67113 O2212 10000 +67113 O2213 10000 +67114 O2211 10000 +67114 O2212 10000 +67114 O2213 10000 +67120 O2220 10000 +67121 O2221 10000 +67121 O2222 10000 +67121 O2223 10000 +67122 O870 10000 +67123 O2221 10000 +67123 O2222 10000 +67123 O2223 10000 +67124 O870 10000 +67130 O2230 10000 +67131 O2231 10000 +67131 O2232 10000 +67131 O2233 10000 +67133 O2231 10000 +67133 O2232 10000 +67133 O2233 10000 +67140 O871 10000 +67142 O871 10000 +67144 O871 10000 +67150 O2250 10000 +67151 O2251 10000 +67151 O2252 10000 +67151 O2253 10000 +67151 O2291 10000 +67151 O2292 10000 +67151 O2293 10000 +67152 O873 10000 +67153 O2251 10000 +67153 O2252 10000 +67153 O2253 10000 +67153 O2291 10000 +67153 O2292 10000 +67153 O2293 10000 +67154 O873 10000 +67180 O2240 10000 +67180 O228X9 10000 +67181 O2241 10000 +67181 O2242 10000 +67181 O2243 10000 +67181 O228X1 10000 +67181 O228X2 10000 +67181 O228X3 10000 +67182 O872 10000 +67182 O878 10000 +67183 O2241 10000 +67183 O2242 10000 +67183 O2243 10000 +67183 O228X1 10000 +67183 O228X2 10000 +67183 O228X3 10000 +67184 O872 10000 +67184 O878 10000 +67190 O2290 10000 +67191 O2291 10000 +67191 O2292 10000 +67191 O2293 10000 +67192 O879 10000 +67193 O2291 10000 +67193 O2292 10000 +67193 O2293 10000 +67194 O879 10000 +67200 O864 10000 +67202 O864 10000 +67204 O864 10000 +67300 O88019 10000 +67301 O88011 10000 +67301 O88012 10000 +67301 O88013 10000 +67301 O8802 10000 +67302 O8802 10000 +67302 O8803 10000 +67303 O88011 10000 +67303 O88012 10000 +67303 O88013 10000 +67304 O8803 10000 +67310 O88119 10000 +67311 O88111 10000 +67311 O88112 10000 +67311 O88113 10000 +67311 O8812 10000 +67312 O8812 10000 +67312 O8813 10000 +67313 O88111 10000 +67313 O88112 10000 +67313 O88113 10000 +67314 O8813 10000 +67320 O88219 10000 +67321 O88211 10000 +67321 O88212 10000 +67321 O88213 10000 +67321 O8822 10000 +67322 O8822 10000 +67322 O8823 10000 +67323 O88211 10000 +67323 O88212 10000 +67323 O88213 10000 +67324 O8823 10000 +67330 O88319 10000 +67331 O88311 10000 +67331 O88312 10000 +67331 O88313 10000 +67331 O8832 10000 +67332 O8832 10000 +67332 O8833 10000 +67333 O88311 10000 +67333 O88312 10000 +67333 O88313 10000 +67334 O8833 10000 +67380 O88819 10000 +67381 O88811 10000 +67381 O88812 10000 +67381 O88813 10000 +67381 O8882 10000 +67382 O88811 10000 +67382 O88812 10000 +67382 O88813 10000 +67382 O8882 10000 +67382 O8883 10000 +67383 O88811 10000 +67383 O88812 10000 +67383 O88813 10000 +67384 O8883 10000 +67400 O99419 10000 +67401 O99411 10000 +67401 O99412 10000 +67401 O99413 10000 +67401 O9942 10000 +67402 O9942 10000 +67402 O9943 10000 +67403 O99411 10000 +67403 O99412 10000 +67403 O99413 10000 +67404 O9943 10000 +67410 O900 10000 +67412 O900 10000 +67414 O900 10000 +67420 O901 10000 +67422 O901 10000 +67424 O901 10000 +67430 O860 10000 +67430 O902 10000 +67432 O860 10000 +67432 O902 10000 +67434 O860 10000 +67434 O902 10000 +67440 O9089 10000 +67442 O9089 10000 +67444 O9089 10000 +67450 O903 10000 +67451 O903 10000 +67452 O903 10000 +67453 O903 10000 +67454 O903 10000 +67480 O9089 10000 +67482 O9089 10000 +67484 O9089 10000 +67490 O909 10000 +67492 O909 10000 +67494 O909 10000 +67500 O91019 10000 +67501 O91011 10000 +67501 O91012 10000 +67501 O91013 10000 +67502 O9102 10000 +67503 O91011 10000 +67503 O91012 10000 +67503 O91013 10000 +67504 O9102 10000 +67510 O91119 10000 +67511 O91111 10000 +67511 O91112 10000 +67511 O91113 10000 +67512 O9112 10000 +67513 O91111 10000 +67513 O91112 10000 +67513 O91113 10000 +67514 O9112 10000 +67520 O91219 10000 +67521 O91211 10000 +67521 O91212 10000 +67521 O91213 10000 +67522 O9122 10000 +67523 O91211 10000 +67523 O91212 10000 +67523 O91213 10000 +67524 O9122 10000 +67580 O9123 10000 +67581 O9123 10000 +67582 O9123 10000 +67583 O9123 10000 +67584 O9123 10000 +67590 O9123 10000 +67591 O9123 10000 +67592 O9123 10000 +67593 O9123 10000 +67594 O9123 10000 +67600 O92019 10000 +67601 O92011 10000 +67601 O92012 10000 +67601 O92013 10000 +67602 O9203 10000 +67603 O92011 10000 +67603 O92012 10000 +67603 O92013 10000 +67604 O9203 10000 +67610 O92119 10000 +67611 O92111 10000 +67611 O92112 10000 +67611 O92113 10000 +67612 O9213 10000 +67613 O92111 10000 +67613 O92112 10000 +67613 O92113 10000 +67614 O9213 10000 +67620 O9229 10000 +67621 O9229 10000 +67622 O9229 10000 +67623 O9229 10000 +67624 O9229 10000 +67630 O9220 10000 +67630 O9229 10000 +67631 O9220 10000 +67631 O9229 10000 +67632 O9220 10000 +67632 O9229 10000 +67633 O9220 10000 +67634 O9220 10000 +67634 O9229 10000 +67640 O923 10000 +67641 O923 10000 +67642 O923 10000 +67643 O923 10000 +67644 O923 10000 +67650 O925 10000 +67651 O925 10000 +67652 O925 10000 +67653 O925 10000 +67654 O925 10000 +67660 O926 10000 +67661 O926 10000 +67662 O926 10000 +67663 O926 10000 +67664 O926 10000 +67680 O9279 10000 +67681 O9279 10000 +67682 O9279 10000 +67683 O9279 10000 +67684 O9279 10000 +67690 O9270 10000 +67691 O9270 10000 +67692 O9270 10000 +67693 O9270 10000 +67694 O9270 10000 +677 O94 00000 +67800 O358XX0 10000 +67800 O368290 10000 +67801 O358XX0 10000 +67801 O368210 10000 +67801 O368220 10000 +67801 O368230 10000 +67803 O358XX0 10000 +67803 O368210 10000 +67803 O368220 10000 +67803 O368230 10000 +67810 O30029 10000 +67811 O30021 10000 +67811 O30022 10000 +67811 O30023 10000 +67813 O30021 10000 +67813 O30022 10000 +67813 O30023 10000 +67900 O26899 10000 +67901 O7589 10000 +67902 O7589 10000 +67903 O26891 10000 +67903 O26892 10000 +67903 O26893 10000 +67904 O9089 10000 +67910 O357XX0 10000 +67911 O357XX0 10000 +67912 O357XX0 10000 +67913 O357XX0 10000 +67914 O357XX0 10000 +6800 L0202 10000 +6800 L0203 10000 +6801 L0212 10000 +6801 L0213 10000 +6802 L02221 10000 +6802 L02222 10000 +6802 L02223 10000 +6802 L02224 10000 +6802 L02225 10000 +6802 L02226 10000 +6802 L02229 10000 +6802 L02231 10000 +6802 L02232 10000 +6802 L02233 10000 +6802 L02234 10000 +6802 L02235 10000 +6802 L02236 10000 +6802 L02239 10000 +6803 L02429 10000 +6803 L02439 10000 +6804 L02529 10000 +6804 L02539 10000 +6805 L0233 10000 +6806 L02429 10000 +6806 L02439 10000 +6807 L02629 10000 +6807 L02639 10000 +6808 L02821 10000 +6808 L02828 10000 +6808 L02831 10000 +6808 L02838 10000 +6809 L0292 10000 +6809 L0293 10000 +68100 L03019 10000 +68100 L03029 10000 +68101 L03019 10000 +68102 L03019 10000 +68110 L03039 10000 +68110 L03049 10000 +68111 L03039 10000 +6819 L03019 10000 +6819 L03029 10000 +6819 L03039 10000 +6819 L03049 10000 +6820 K122 10000 +6820 L03211 10000 +6820 L03212 10000 +6820 L03213 10000 +6821 L03221 10000 +6821 L03222 10000 +6822 L03319 10000 +6822 L03329 10000 +6823 L03119 10000 +6823 L03129 10000 +6824 L03119 10000 +6824 L03129 10000 +6825 L03317 10000 +6826 L03119 10000 +6826 L03129 10000 +6827 L03119 10000 +6827 L03129 10000 +6828 L03811 10000 +6828 L03818 10000 +6828 L03891 10000 +6828 L03898 10000 +6829 L0390 10000 +6829 L0391 10000 +683 L049 10000 +684 L0100 10000 +684 L0103 10000 +6850 L0501 10000 +6850 L0502 10000 +6851 L0591 10000 +6851 L0592 10000 +68600 L080 10000 +68601 L88 00000 +68609 L0889 10000 +6861 L980 10000 +6868 E832 10000 +6868 L0889 10000 +6869 L089 00000 +69010 L219 10000 +69011 L210 00000 +69012 L2083 10000 +69012 L211 10000 +69018 L218 00000 +6908 L303 10000 +6910 L22 00000 +6918 L200 10000 +6918 L2081 10000 +6918 L2082 10000 +6918 L2084 10000 +6918 L2089 10000 +6920 L240 00000 +6921 L241 00000 +6922 L242 00000 +6923 L251 10000 +6924 L253 10000 +6925 L254 10000 +6926 L255 10000 +69270 L578 10000 +69271 L550 10000 +69271 L559 10000 +69272 L560 10000 +69272 L561 10000 +69272 L562 10000 +69273 L571 10000 +69273 L575 10000 +69274 L579 10000 +69275 L565 00000 +69276 L551 00000 +69277 L552 00000 +69279 L568 10000 +69281 L250 10000 +69282 L589 10000 +69283 L230 10000 +69283 L2481 10000 +69284 L2381 10000 +69289 L252 10000 +69289 L258 10000 +6929 L259 10000 +6930 L270 10000 +6930 L271 10000 +6931 L272 00000 +6938 L278 00000 +6939 L279 00000 +6940 L130 00000 +6941 L131 00000 +6942 L122 00000 +6943 L401 10000 +6944 L100 10000 +6944 L101 10000 +6944 L102 10000 +6944 L104 10000 +6944 L109 10000 +6945 L120 10000 +6945 L128 10000 +69460 L121 10000 +69461 L121 10000 +6948 L138 10000 +6949 L139 00000 +6950 L530 10000 +6950 L531 10000 +6950 L532 10000 +69510 L510 10000 +69510 L519 10000 +69511 L518 10000 +69512 L518 10000 +69513 L511 00000 +69514 L513 00000 +69515 L512 10000 +69519 L518 10000 +6952 L52 00000 +6953 L710 10000 +6953 L711 10000 +6953 L718 10000 +6954 L930 10000 +6954 L932 10000 +69550 L490 00000 +69551 L491 00000 +69552 L492 00000 +69553 L493 00000 +69554 L494 00000 +69555 L495 00000 +69556 L496 00000 +69557 L497 00000 +69558 L498 00000 +69559 L499 00000 +69581 L00 10000 +69589 L26 10000 +69589 L304 10000 +69589 L538 10000 +69589 L920 10000 +69589 L951 10000 +69589 L982 10000 +6959 L539 00000 +6960 L4054 10000 +6960 L4059 10000 +6961 L400 10000 +6961 L401 10000 +6961 L402 10000 +6961 L403 10000 +6961 L404 10000 +6961 L408 10000 +6962 L410 10000 +6962 L411 10000 +6962 L418 10000 +6963 L42 00000 +6964 L440 10000 +6965 L305 10000 +6968 L448 10000 +6970 L438 10000 +6970 L661 10000 +6971 L441 00000 +6978 L442 10000 +6978 L443 10000 +6979 L449 10000 +6980 L290 00000 +6981 L293 10000 +6982 L282 00000 +6983 L280 10000 +6983 L281 10000 +6984 L981 00000 +6988 L298 10000 +6989 L299 00000 +700 L84 00000 +7010 L900 10000 +7010 L940 10000 +7010 L943 10000 +7011 L110 10000 +7011 L850 10000 +7011 L851 10000 +7011 L852 10000 +7011 L870 10000 +7011 L872 10000 +7012 L83 00000 +7013 L901 10000 +7013 L902 10000 +7013 L906 10000 +7014 L910 00000 +7015 L929 10000 +7018 L119 10000 +7018 L572 10000 +7018 L574 10000 +7018 L664 10000 +7018 L904 10000 +7018 L908 10000 +7018 L918 10000 +7018 L922 10000 +7018 L985 10000 +7019 L909 10000 +7019 L919 10000 +7019 L987 10000 +7020 L570 00000 +70211 L820 00000 +70219 L821 00000 +7028 L988 10000 +7030 L600 00000 +7038 L601 10000 +7038 L602 10000 +7038 L603 10000 +7038 L604 10000 +7038 L608 10000 +7039 L609 00000 +70400 L659 10000 +70401 L632 10000 +70401 L638 10000 +70402 L650 00000 +70409 L658 10000 +70409 L660 10000 +70409 L662 10000 +70409 L668 10000 +7041 L680 10000 +7041 L681 10000 +7041 L683 10000 +7041 L689 10000 +7042 L670 10000 +7042 L678 10000 +7043 L671 00000 +70441 L7211 00000 +70442 L7212 00000 +7048 L663 10000 +7048 L738 10000 +7049 L739 10000 +7050 L744 00000 +7051 L740 10000 +7051 L741 10000 +7051 L742 10000 +70521 L74510 10000 +70521 L74511 10000 +70521 L74512 10000 +70521 L74513 10000 +70521 L74519 10000 +70522 L7452 00000 +70581 L301 00000 +70582 L752 00000 +70583 L732 00000 +70589 L748 10000 +70589 L750 10000 +70589 L751 10000 +70589 L758 10000 +7059 L749 10000 +7059 L759 10000 +7060 L702 00000 +7061 L700 10000 +7061 L701 10000 +7061 L708 10000 +7062 L723 10000 +7063 L219 10000 +7068 L853 10000 +7069 L739 10000 +70700 L8990 10000 +70701 L89009 10000 +70702 L89119 10000 +70702 L89129 10000 +70703 L89139 10000 +70703 L89149 10000 +70703 L89159 10000 +70704 L89209 10000 +70705 L89309 10000 +70706 L89509 10000 +70707 L89609 10000 +70709 L89819 10000 +70709 L89899 10000 +70710 L97909 10000 +70711 L97109 10000 +70712 L97209 10000 +70713 L97309 10000 +70714 L97409 10000 +70715 L97509 10000 +70719 L97809 10000 +70720 NoDx 11000 +70721 NoDx 11000 +70722 NoDx 11000 +70723 NoDx 11000 +70724 NoDx 11000 +70725 NoDx 11000 +7078 L98419 10000 +7078 L98429 10000 +7079 L98499 10000 +7080 L500 00000 +7081 L501 00000 +7082 L502 00000 +7083 L503 00000 +7084 L504 00000 +7085 L505 00000 +7088 L506 10000 +7088 L508 10000 +7089 L509 00000 +70900 L819 00000 +70901 L80 00000 +70909 L818 10000 +7091 L959 10000 +7092 L905 00000 +7093 L921 10000 +7093 L942 10000 +7093 L988 10000 +7094 L923 00000 +7098 L942 10000 +7098 L988 10000 +7099 L989 10000 +7100 M3210 10000 +7101 M340 10000 +7101 M341 10000 +7101 M349 10000 +7102 M3500 10000 +7102 M3501 10000 +7103 M3390 10000 +7104 M3320 10000 +7105 M358 10000 +7108 M355 10000 +7109 M359 10000 +71100 M0000 10000 +71100 M0010 10000 +71100 M0020 10000 +71100 M0080 10000 +71100 M009 10000 +71101 M00019 10000 +71101 M00119 10000 +71101 M00219 10000 +71101 M00819 10000 +71102 M00029 10000 +71102 M00129 10000 +71102 M00229 10000 +71102 M00829 10000 +71103 M00039 10000 +71103 M00139 10000 +71103 M00239 10000 +71103 M00839 10000 +71104 M00049 10000 +71104 M00149 10000 +71104 M00249 10000 +71104 M00849 10000 +71105 M00059 10000 +71105 M00159 10000 +71105 M00259 10000 +71105 M00859 10000 +71106 M00069 10000 +71106 M00169 10000 +71106 M00269 10000 +71106 M00869 10000 +71107 M00079 10000 +71107 M00179 10000 +71107 M00279 10000 +71107 M00879 10000 +71108 M0008 10000 +71108 M0018 10000 +71108 M0028 10000 +71108 M0088 10000 +71108 M009 10000 +71109 M0009 10000 +71109 M0019 10000 +71109 M0029 10000 +71109 M0089 10000 +71110 M0230 10000 +71111 M02319 10000 +71112 M02329 10000 +71113 M02339 10000 +71114 M02349 10000 +71115 M02359 10000 +71116 M02369 10000 +71117 M02379 10000 +71118 M0238 10000 +71119 M0239 10000 +71120 M352 10000 +71121 M352 10000 +71122 M352 10000 +71123 M352 10000 +71124 M352 10000 +71125 M352 10000 +71126 M352 10000 +71127 M352 10000 +71128 M352 10000 +71129 M352 10000 +71130 M0210 00000 +71131 M02119 10000 +71132 M02129 10000 +71133 M02139 10000 +71134 M02149 10000 +71135 M02159 10000 +71136 M02169 10000 +71137 M02179 10000 +71138 M0218 10000 +71139 M0219 00000 +71140 M01X0 10000 +71141 M01X19 10000 +71142 M01X29 10000 +71143 M01X39 10000 +71144 M01X49 10000 +71145 M01X59 10000 +71146 M01X69 10000 +71147 M01X79 10000 +71148 M01X8 10000 +71149 M01X9 10000 +71150 M01X0 10000 +71151 M01X19 10000 +71152 M01X29 10000 +71153 M01X39 10000 +71154 M01X49 10000 +71155 M01X59 10000 +71156 M01X69 10000 +71157 M01X79 10000 +71158 M01X8 10000 +71159 M01X9 10000 +71160 M01X0 10000 +71161 M01X19 10000 +71162 M01X29 10000 +71163 M01X39 10000 +71164 M01X49 10000 +71165 M01X59 10000 +71166 M01X69 10000 +71167 M01X79 10000 +71168 M01X8 10000 +71169 M01X9 10000 +71170 M01X0 10000 +71171 M01X19 10000 +71172 M01X29 10000 +71173 M01X39 10000 +71174 M01X49 10000 +71175 M01X59 10000 +71176 M01X69 10000 +71177 M01X79 10000 +71178 M01X8 10000 +71179 M01X9 10000 +71180 M01X0 10000 +71181 M01X19 10000 +71182 M01X29 10000 +71183 M01X39 10000 +71184 M01X49 10000 +71185 M01X59 10000 +71186 M01X69 10000 +71187 M01X79 10000 +71188 M01X8 10000 +71189 M01X9 10000 +71190 M01X0 10000 +71191 M01X19 10000 +71192 M01X29 10000 +71193 M01X39 10000 +71194 M01X49 10000 +71195 M01X59 10000 +71196 M01X69 10000 +71197 M01X79 10000 +71198 M01X8 10000 +71199 M01X9 10000 +71210 M1180 10000 +71211 M11819 10000 +71212 M11829 10000 +71213 M11839 10000 +71214 M11849 10000 +71215 M11859 10000 +71216 M11869 10000 +71217 M11879 10000 +71218 M1188 10000 +71219 M1189 10000 +71220 M1180 10000 +71221 M11819 10000 +71222 M11829 10000 +71223 M11839 10000 +71224 M11849 10000 +71225 M11859 10000 +71226 M11869 10000 +71227 M11879 10000 +71228 M1188 10000 +71229 M1189 10000 +71230 M1120 10000 +71231 M11219 10000 +71232 M11229 10000 +71233 M11239 10000 +71234 M11249 10000 +71235 M11259 10000 +71236 M11269 10000 +71237 M11279 10000 +71238 M1128 10000 +71239 M1129 10000 +71280 M1180 10000 +71281 M11819 10000 +71282 M11829 10000 +71283 M11839 10000 +71284 M11849 10000 +71285 M11859 10000 +71286 M11869 10000 +71287 M11879 10000 +71288 M1188 10000 +71289 M1189 10000 +71290 M1180 10000 +71290 M119 10000 +71291 M11819 10000 +71292 M11829 10000 +71293 M11839 10000 +71294 M11849 10000 +71295 M11859 10000 +71296 M11869 10000 +71297 M11879 10000 +71298 M1188 10000 +71299 M1189 10000 +7130 M1480 10000 +7131 M0200 10000 +7132 M362 10000 +7132 M363 10000 +7133 M1280 10000 +7134 M1280 10000 +7135 M1460 10000 +7136 M0220 10000 +7136 M364 10000 +7137 M029 10000 +7138 M1480 10000 +7140 M069 10000 +7141 M0500 10000 +7142 M0530 10000 +7142 M0560 10000 +7142 M061 10000 +71430 M0800 10000 +71431 M083 10000 +71432 M0840 10000 +71433 M0840 10000 +7144 M1200 10000 +71481 M0510 10000 +71489 M064 10000 +7149 M064 10000 +71500 M150 10000 +71500 M159 10000 +71504 M151 10000 +71504 M152 10000 +71509 M150 10000 +71510 M1991 10000 +71511 M19019 10000 +71512 M19029 10000 +71513 M19039 10000 +71514 M19049 10000 +71515 M1610 10000 +71516 M1710 10000 +71517 M19079 10000 +71518 M1991 10000 +71520 M1993 10000 +71521 M19219 10000 +71522 M19229 10000 +71523 M19239 10000 +71524 M19249 10000 +71525 M167 10000 +71526 M175 10000 +71527 M19279 10000 +71528 M1993 10000 +71530 M1990 10000 +71531 M1990 10000 +71532 M1990 10000 +71533 M1990 10000 +71534 M189 10000 +71535 M169 10000 +71536 M179 10000 +71537 M1990 10000 +71538 M1990 10000 +71580 M158 10000 +71589 M153 10000 +71589 M158 10000 +71590 M159 10000 +71590 M1990 10000 +71591 M1990 10000 +71592 M1990 10000 +71593 M1990 10000 +71594 M189 10000 +71595 M169 10000 +71596 M179 10000 +71597 M1990 10000 +71598 M1990 10000 +71600 M1210 00000 +71601 M12119 10000 +71602 M12129 10000 +71603 M12139 10000 +71604 M12149 10000 +71605 M12159 10000 +71606 M12169 10000 +71607 M12179 10000 +71608 M1218 10000 +71609 M1219 00000 +71610 M1250 00000 +71611 M12519 10000 +71612 M12529 10000 +71613 M12539 10000 +71614 M12549 10000 +71615 M12559 10000 +71616 M12569 10000 +71617 M12579 10000 +71618 M1258 00000 +71619 M1259 00000 +71620 M1380 10000 +71621 M13819 10000 +71622 M13829 10000 +71623 M13839 10000 +71624 M13849 10000 +71625 M13859 10000 +71626 M13869 10000 +71627 M13879 10000 +71628 M1388 10000 +71629 M1389 10000 +71630 M1380 10000 +71631 M13819 10000 +71632 M13829 10000 +71633 M13839 10000 +71634 M13849 10000 +71635 M13859 10000 +71636 M13869 10000 +71637 M13879 10000 +71638 M1388 10000 +71639 M1389 10000 +71640 M1280 10000 +71641 M12819 10000 +71642 M12829 10000 +71643 M12839 10000 +71644 M12849 10000 +71645 M12859 10000 +71646 M12869 10000 +71647 M12879 10000 +71648 M1288 10000 +71649 M1289 10000 +71650 M130 10000 +71651 M130 10000 +71652 M130 10000 +71653 M130 10000 +71654 M130 10000 +71655 M130 10000 +71656 M130 10000 +71657 M130 10000 +71658 M130 10000 +71659 M130 10000 +71660 M1310 10000 +71661 M13119 10000 +71662 M13129 10000 +71663 M13139 10000 +71664 M13149 10000 +71665 M13159 10000 +71666 M13169 10000 +71667 M13179 10000 +71668 M1310 10000 +71680 M1280 10000 +71681 M12819 10000 +71682 M12829 10000 +71683 M12839 10000 +71684 M12849 10000 +71685 M12859 10000 +71686 M12869 10000 +71687 M12879 10000 +71688 M1288 10000 +71689 M1289 10000 +71690 M129 10000 +71691 M129 10000 +71692 M129 10000 +71693 M129 10000 +71694 M129 10000 +71695 M129 10000 +71696 M129 10000 +71697 M129 10000 +71698 M129 10000 +71699 M129 10000 +7170 M23205 10000 +7171 M23219 10000 +7171 M23319 10000 +7172 M23229 10000 +7172 M23329 10000 +7173 M23239 10000 +7173 M23305 10000 +7173 M23339 10000 +71740 M23269 10000 +71741 M23202 10000 +71742 M23249 10000 +71742 M23349 10000 +71743 M23259 10000 +71743 M23359 10000 +71749 M23369 10000 +7175 M23009 10000 +7176 M2340 10000 +7177 M2240 10000 +71781 M2350 10000 +71782 M2350 10000 +71783 M2350 10000 +71784 M2350 10000 +71785 M2350 10000 +71789 M238X9 10000 +7179 M2390 10000 +71800 M2410 10000 +71801 M24119 10000 +71802 M24129 10000 +71803 M24139 10000 +71804 M24149 10000 +71805 M24159 10000 +71807 M24173 10000 +71807 M24176 10000 +71808 M2410 10000 +71809 M2410 10000 +71810 M2400 10000 +71811 M24019 10000 +71812 M24029 10000 +71813 M24039 10000 +71814 M24049 10000 +71815 M24059 10000 +71817 M24073 10000 +71817 M24076 10000 +71818 M2408 00000 +71819 M2400 10000 +71820 M2430 10000 +71821 M24319 10000 +71822 M24329 10000 +71823 M24339 10000 +71824 M24349 10000 +71825 M24359 10000 +71826 M24369 10000 +71827 M24373 10000 +71827 M24376 10000 +71828 M2430 10000 +71829 M2430 10000 +71830 M2440 00000 +71831 M24419 10000 +71832 M24429 10000 +71833 M24439 10000 +71834 M24443 10000 +71834 M24446 10000 +71835 M24459 10000 +71836 M24469 10000 +71837 M24473 10000 +71837 M24476 10000 +71838 M434 10000 +71838 M435X9 10000 +71839 M435X9 10000 +71840 M2450 10000 +71841 M24519 10000 +71842 M24529 10000 +71843 M24539 10000 +71844 M24549 10000 +71845 M24559 10000 +71846 M24569 10000 +71847 M24573 10000 +71847 M24576 10000 +71848 M2450 10000 +71849 M2450 10000 +71850 M2460 10000 +71851 M24619 10000 +71852 M24629 10000 +71853 M24639 10000 +71854 M24649 10000 +71855 M24659 10000 +71856 M24669 10000 +71857 M24673 10000 +71857 M24676 10000 +71858 M2460 10000 +71859 M2460 10000 +71865 M247 10000 +71870 M2480 10000 +71871 M24819 10000 +71872 M24829 10000 +71873 M24839 10000 +71874 M24849 10000 +71875 M24859 10000 +71876 M2480 10000 +71877 M24873 10000 +71877 M24876 10000 +71878 M2480 10000 +71879 M2480 10000 +71880 M2480 10000 +71881 M24819 10000 +71882 M24829 10000 +71883 M24839 10000 +71884 M24849 10000 +71885 M24859 10000 +71886 M2350 10000 +71886 M238X9 10000 +71887 M24873 10000 +71887 M24876 10000 +71888 M2480 10000 +71889 M2480 10000 +71890 M249 10000 +71891 M249 10000 +71892 M249 10000 +71893 M249 10000 +71894 M249 10000 +71895 M249 10000 +71897 M249 10000 +71898 M249 10000 +71899 M249 10000 +71900 M2540 10000 +71901 M25419 10000 +71902 M25429 10000 +71903 M25439 10000 +71904 M25449 10000 +71905 M25459 10000 +71906 M25469 10000 +71907 M25473 10000 +71907 M25476 10000 +71908 M2548 00000 +71909 M2540 10000 +71910 M2500 10000 +71911 M25019 10000 +71912 M25029 10000 +71913 M25039 10000 +71914 M25049 10000 +71915 M25059 10000 +71916 M25069 10000 +71917 M25073 10000 +71917 M25076 10000 +71918 M2508 00000 +71919 M2500 10000 +71920 M1220 00000 +71921 M12219 10000 +71922 M12229 10000 +71923 M12239 10000 +71924 M12249 10000 +71925 M12259 10000 +71926 M12269 10000 +71927 M12279 10000 +71928 M1228 00000 +71929 M1229 00000 +71930 M1230 10000 +71930 M1240 10000 +71931 M12319 10000 +71931 M12419 10000 +71932 M12329 10000 +71932 M12429 10000 +71933 M12339 10000 +71933 M12439 10000 +71934 M12349 10000 +71934 M12449 10000 +71935 M12359 10000 +71935 M12459 10000 +71936 M12369 10000 +71936 M12469 10000 +71937 M12379 10000 +71937 M12479 10000 +71938 M1238 10000 +71938 M1248 10000 +71939 M1239 10000 +71939 M1249 10000 +71940 M2550 10000 +71941 M25519 10000 +71942 M25529 10000 +71943 M25539 10000 +71944 M25541 10000 +71944 M25542 10000 +71944 M25549 10000 +71944 M79646 10000 +71945 M25559 10000 +71946 M25569 10000 +71947 M25579 10000 +71948 M2550 10000 +71949 M2550 10000 +71950 M2560 10000 +71951 M25619 10000 +71952 M25629 10000 +71953 M25639 10000 +71954 M25649 10000 +71955 M25659 10000 +71956 M25669 10000 +71957 M25673 10000 +71957 M25676 10000 +71958 M2560 10000 +71959 M2560 10000 +71960 R29898 10000 +71961 R29898 10000 +71962 R29898 10000 +71963 R29898 10000 +71964 R29898 10000 +71965 R294 10000 +71966 R29898 10000 +71967 R29898 10000 +71968 R29898 10000 +71969 R29898 10000 +7197 R262 00000 +71980 M2510 10000 +71980 M2580 10000 +71981 M25119 10000 +71981 M25819 10000 +71982 M25129 10000 +71982 M25829 10000 +71983 M25139 10000 +71983 M25839 10000 +71984 M25149 10000 +71984 M25849 10000 +71985 M25159 10000 +71985 M25859 10000 +71986 M25169 10000 +71986 M25869 10000 +71987 M25173 10000 +71987 M25176 10000 +71987 M25879 10000 +71988 M2518 10000 +71989 M2510 10000 +71989 M2580 10000 +71990 M259 10000 +71991 M259 10000 +71992 M259 10000 +71993 M259 10000 +71994 M259 10000 +71995 M259 10000 +71996 M259 10000 +71997 M259 10000 +71998 M259 10000 +71999 M259 10000 +7200 M459 10000 +7201 M4600 10000 +7202 M461 00000 +72081 M4980 10000 +72089 M4680 10000 +7209 M4690 10000 +7210 M47812 10000 +7211 M4712 10000 +7212 M47814 10000 +7213 M47817 10000 +72141 M4714 10000 +72142 M4716 10000 +7215 M4820 10000 +7216 M4810 10000 +7217 M4830 10000 +7218 M489 10000 +72190 M47819 10000 +72191 M4710 10000 +7220 M5020 10000 +72210 M5126 10000 +72210 M5127 10000 +72211 M5124 10000 +72211 M5125 10000 +7222 M519 10000 +72230 M519 10000 +72231 M5144 10000 +72231 M5145 10000 +72232 M5146 10000 +72232 M5147 10000 +72239 M519 10000 +7224 M5030 10000 +72251 M5134 10000 +72251 M5135 10000 +72252 M5136 10000 +72252 M5137 10000 +7226 M5134 10000 +7226 M5135 10000 +7226 M5136 10000 +7226 M5137 10000 +72270 M519 10000 +72271 M5000 10000 +72272 M5104 10000 +72272 M5105 10000 +72273 M5106 00000 +72280 M961 10000 +72281 M961 10000 +72282 M961 10000 +72283 M961 10000 +72290 M4640 10000 +72290 M519 10000 +72291 M5080 10000 +72291 M5090 10000 +72292 M4645 10000 +72292 M5184 10000 +72292 M5185 10000 +72293 M4647 10000 +72293 M5186 10000 +72293 M5187 10000 +7230 M4802 10000 +7231 M542 00000 +7232 M530 00000 +7233 M531 00000 +7234 M5412 10000 +7234 M5413 10000 +7235 M436 00000 +7236 M5402 10000 +7237 M6788 10000 +7238 M5382 10000 +7239 M5382 10000 +72400 M4800 00000 +72401 M4804 10000 +72402 M4806 10000 +72403 M4806 10000 +72409 M4808 10000 +7241 M546 00000 +7242 M545 00000 +7243 M5430 10000 +7244 M5414 10000 +7244 M5415 10000 +7244 M5416 10000 +7244 M5417 10000 +7245 M5489 10000 +7245 M549 10000 +7246 M4327 10000 +7246 M4328 10000 +7246 M532X7 10000 +7246 M533 10000 +72470 M533 10000 +72471 M532X8 10000 +72479 M533 10000 +7248 M5408 10000 +7249 M438X9 10000 +7249 M539 10000 +725 M353 00000 +7260 M7500 10000 +72610 M75100 10000 +72610 M7550 10000 +72611 M7530 10000 +72612 M7520 10000 +72613 M75110 10000 +72619 M7580 10000 +7262 M7530 10000 +7262 M7540 10000 +7262 M7580 10000 +72630 M25729 10000 +72631 M7700 10000 +72632 M7710 10000 +72633 M7020 10000 +72639 M7030 10000 +7264 M7010 10000 +7264 M7720 10000 +7265 M7060 10000 +7265 M7070 10000 +7265 M7610 10000 +7265 M7620 10000 +72660 M7050 10000 +72661 M76899 10000 +72662 M7640 10000 +72663 M76899 10000 +72664 M7650 10000 +72665 M7040 10000 +72669 M76899 10000 +72670 M76899 10000 +72670 M7740 10000 +72671 M7660 10000 +72672 M76829 10000 +72673 M7730 10000 +72679 M7750 10000 +7268 M778 10000 +72690 M779 00000 +72691 M2570 00000 +72700 M659 00000 +72701 M6580 10000 +72702 D481 10000 +72703 M6530 10000 +72704 M654 00000 +72705 M65849 10000 +72706 M65879 10000 +72709 M6580 10000 +7271 M2010 10000 +7271 M21611 10000 +7271 M21612 10000 +7271 M21619 10000 +7271 M21621 10000 +7271 M21622 10000 +7271 M21629 10000 +7272 M70039 10000 +7272 M7030 10000 +7272 M7040 10000 +7273 M7150 10000 +72740 M7130 10000 +72741 M67419 10000 +72741 M67429 10000 +72741 M67439 10000 +72741 M67449 10000 +72741 M67459 10000 +72741 M67469 10000 +72741 M67479 10000 +72742 M67419 10000 +72742 M67429 10000 +72742 M67439 10000 +72742 M67449 10000 +72742 M67459 10000 +72742 M67469 10000 +72742 M67479 10000 +72743 M6740 10000 +72749 M7130 10000 +72750 M6610 00000 +72751 M7120 10000 +72759 M6618 10000 +72760 M669 10000 +72761 M75120 10000 +72762 M66829 10000 +72763 M66239 10000 +72763 M66249 10000 +72764 M66339 10000 +72764 M66349 10000 +72765 M66259 10000 +72766 M66269 10000 +72767 M66369 10000 +72768 M66879 10000 +72769 M6688 10000 +72781 M6700 10000 +72782 M6520 10000 +72782 M7140 10000 +72783 M6750 10000 +72789 M6500 10000 +72789 M6780 10000 +72789 M6788 10000 +72789 M7100 10000 +72789 M7180 10000 +7279 M6790 10000 +7279 M719 10000 +7280 M60009 10000 +72810 M619 10000 +72811 M6110 10000 +72812 M6100 10000 +72813 M6140 10000 +72819 M6159 10000 +7282 M6250 10000 +7283 M623 10000 +7283 M6284 10000 +7283 M6289 10000 +7284 M2420 10000 +7285 M357 00000 +7286 M720 00000 +72871 M722 00000 +72879 M721 10000 +72879 M724 10000 +72881 M6010 10000 +72882 M6020 10000 +72883 M6210 10000 +72884 M6200 10000 +72885 M6240 10000 +72885 M62838 10000 +72886 M726 00000 +72887 M6281 00000 +72888 M6282 00000 +72889 M6289 10000 +7289 M629 10000 +7290 M790 00000 +7291 M609 10000 +7291 M791 10000 +7291 M797 10000 +7292 M5410 10000 +7292 M792 10000 +72930 M793 10000 +72931 M794 00000 +72939 M793 10000 +7294 M729 10000 +7295 M79609 10000 +7296 M795 00000 +72971 M79A19 10000 +72972 M79A29 10000 +72973 M79A3 00000 +72979 M79A9 00000 +72981 M7989 10000 +72982 R252 10000 +72989 R29898 10000 +72990 M799 10000 +72991 M7098 10000 +72992 M7981 00000 +72999 M7989 10000 +73000 M8610 10000 +73000 M8620 10000 +73001 M86119 10000 +73001 M86219 10000 +73002 M86129 10000 +73002 M86229 10000 +73003 M86139 10000 +73003 M86239 10000 +73004 M86149 10000 +73004 M86249 10000 +73005 M86159 10000 +73005 M86259 10000 +73006 M86169 10000 +73006 M86269 10000 +73007 M86179 10000 +73007 M86279 10000 +73008 M8618 10000 +73008 M8628 10000 +73009 M8619 10000 +73009 M8629 10000 +73010 M8660 10000 +73011 M86619 10000 +73012 M86629 10000 +73013 M86639 10000 +73014 M86642 10000 +73015 M86659 10000 +73016 M86669 10000 +73017 M86679 10000 +73018 M8668 10000 +73019 M8669 10000 +73020 M869 10000 +73021 M869 10000 +73022 M869 10000 +73023 M869 10000 +73024 M869 10000 +73025 M869 10000 +73026 M869 10000 +73027 M869 10000 +73028 M4620 10000 +73029 M869 10000 +73030 M869 10000 +73031 M869 10000 +73032 M869 10000 +73033 M869 10000 +73034 M869 10000 +73035 M869 10000 +73036 M869 10000 +73037 M869 10000 +73038 M869 10000 +73039 M869 10000 +73070 M8960 00000 +73071 M89619 10000 +73072 M89629 10000 +73073 M89639 10000 +73074 M89649 10000 +73075 M89659 10000 +73076 M89669 10000 +73077 M89679 10000 +73078 M8968 00000 +73079 M8969 00000 +73080 M9080 10000 +73081 M90819 10000 +73082 M90829 10000 +73083 M90839 10000 +73084 M90849 10000 +73085 M90859 10000 +73086 M90869 10000 +73087 M90879 10000 +73088 M9088 10000 +73089 M9089 10000 +73090 M869 10000 +73091 M869 10000 +73092 M869 10000 +73093 M869 10000 +73094 M869 10000 +73095 M869 10000 +73096 M869 10000 +73097 M869 10000 +73098 M4630 10000 +73099 M869 10000 +7310 M889 10000 +7311 M9060 10000 +7312 M8940 10000 +7313 M8970 10000 +7318 M9080 10000 +7320 M4200 10000 +7321 M9180 10000 +7322 M93003 10000 +7323 M9230 10000 +7324 M9240 10000 +7324 M9250 10000 +7325 M9260 10000 +7325 M9270 10000 +7326 M928 10000 +7327 M9320 10000 +7328 M4210 10000 +7328 M931 10000 +7328 M9380 10000 +7329 M9390 10000 +73300 M810 10000 +73301 M810 00000 +73302 M818 10000 +73303 M818 10000 +73309 M818 10000 +73310 M8440XA 10000 +73311 M84429A 10000 +73312 M84439A 10000 +73313 M4850XA 10000 +73313 M8008XA 10000 +73313 M8448XA 10000 +73313 M8468XA 10000 +73314 M84459A 10000 +73315 M84453A 10000 +73315 M84750A 10000 +73316 M84469A 10000 +73319 M84419A 10000 +73319 M84479A 10000 +73319 M8448XA 10000 +73320 M8560 10000 +73321 M8540 10000 +73322 M8550 10000 +73329 M8500 10000 +73329 M8560 10000 +7333 M852 00000 +73340 M8700 10000 +73341 M87029 10000 +73342 M87059 10000 +73343 M87059 10000 +73344 M87076 10000 +73345 M8708 10000 +73349 M8708 10000 +7335 M8530 10000 +7336 M940 00000 +7337 M8900 10000 +73381 S42009P 10000 +73381 S42209P 10000 +73381 S4290XP 10000 +73381 S5290XP 10000 +73381 S5290XQ 10000 +73381 S5290XR 10000 +73381 S6290XP 10000 +73381 S7290XP 10000 +73381 S7290XQ 10000 +73381 S7290XR 10000 +73381 S82009P 10000 +73381 S82009Q 10000 +73381 S82009R 10000 +73381 S8290XP 10000 +73381 S8290XQ 10000 +73381 S8290XR 10000 +73381 S92819P 10000 +73381 S92909P 10000 +73381 S92919P 10000 +73381 S99209P 10000 +73381 S99219P 10000 +73381 S99229P 10000 +73381 S99239P 10000 +73381 S99249P 10000 +73381 S99299P 10000 +73382 S0291XK 10000 +73382 S0292XK 10000 +73382 S12000K 10000 +73382 S12001K 10000 +73382 S12100K 10000 +73382 S12101K 10000 +73382 S12200K 10000 +73382 S12201K 10000 +73382 S12300K 10000 +73382 S12301K 10000 +73382 S12400K 10000 +73382 S12401K 10000 +73382 S12500K 10000 +73382 S12501K 10000 +73382 S12600K 10000 +73382 S12601K 10000 +73382 S229XXK 10000 +73382 S329XXK 10000 +73382 S42009K 10000 +73382 S42209K 10000 +73382 S4290XK 10000 +73382 S5290XK 10000 +73382 S5290XM 10000 +73382 S5290XN 10000 +73382 S6290XK 10000 +73382 S7290XK 10000 +73382 S7290XM 10000 +73382 S7290XN 10000 +73382 S8290XK 10000 +73382 S8290XM 10000 +73382 S8290XN 10000 +73382 S92819K 10000 +73382 S92909K 10000 +73382 S92919K 10000 +73382 S99209K 10000 +73382 S99219K 10000 +73382 S99229K 10000 +73382 S99239K 10000 +73382 S99249K 10000 +73382 S99299K 10000 +73390 M859 10000 +73390 M899 10000 +73390 M949 10000 +73391 M89129 10000 +73391 M89139 10000 +73391 M89159 10000 +73391 M89169 10000 +73391 M8918 10000 +73392 M9420 10000 +73393 M84369A 10000 +73394 M84376A 10000 +73394 M84379A 10000 +73395 M4840XA 10000 +73395 M4841XA 10000 +73395 M4842XA 10000 +73395 M4843XA 10000 +73395 M4844XA 10000 +73395 M4845XA 10000 +73395 M4846XA 10000 +73395 M4847XA 10000 +73395 M4848XA 10000 +73395 M8430XA 10000 +73395 M84319A 10000 +73395 M84329A 10000 +73395 M84339A 10000 +73395 M84343A 10000 +73395 M84373A 10000 +73395 M8438XA 10000 +73396 M84359A 10000 +73397 M84353A 10000 +73398 M84350A 10000 +73399 M8930 10000 +73399 M898X9 10000 +73399 M948X9 10000 +734 M2140 10000 +7350 M2010 10000 +7351 M2030 10000 +7352 M2020 10000 +7353 M2040 10000 +7354 M2040 10000 +7355 M205X9 10000 +7358 M205X9 10000 +7359 M2060 10000 +73600 M21939 10000 +73601 M21029 10000 +73602 M21129 10000 +73603 M21839 10000 +73604 M21839 10000 +73605 M21339 10000 +73606 M21519 10000 +73607 M21529 10000 +73609 M21839 10000 +7361 M20019 10000 +73620 M20009 10000 +73621 M20029 10000 +73622 M20039 10000 +73629 M20099 10000 +73630 M21959 10000 +73631 M21059 10000 +73632 M21159 10000 +73639 M21859 10000 +73641 M21069 10000 +73642 M21169 10000 +7365 M21869 10000 +7366 M21869 10000 +73670 M21969 10000 +73671 M21549 10000 +73672 M216X9 10000 +73673 M216X9 10000 +73674 M21539 10000 +73675 M216X9 10000 +73676 M216X9 10000 +73679 M216X9 10000 +73681 M21759 10000 +73681 M21769 10000 +73689 M2180 10000 +73689 M21969 10000 +7369 M2190 10000 +7370 M4000 10000 +73710 M4000 10000 +73710 M40209 10000 +73711 M962 00000 +73712 M963 00000 +73719 M40299 10000 +73720 M4040 10000 +73721 M964 10000 +73722 M964 10000 +73729 M4050 10000 +73730 M4120 10000 +73731 M4100 10000 +73732 M4100 10000 +73733 M965 00000 +73734 M4130 10000 +73739 M4180 10000 +73739 M419 10000 +73740 M438X9 10000 +73741 M4010 10000 +73742 M4050 10000 +73743 M4140 10000 +73743 M4150 10000 +7378 M438X9 10000 +7379 M438X9 10000 +7380 M950 00000 +73810 M952 10000 +73811 M8938 10000 +73812 M898X8 10000 +73819 M952 10000 +7382 M953 10000 +7383 M954 10000 +7384 M4300 10000 +7384 M4310 10000 +7385 M9983 10000 +7385 M9984 10000 +7386 M955 10000 +7387 M9510 10000 +7388 M958 10000 +7389 M959 10000 +7390 M9900 10000 +7391 M9901 10000 +7392 M9902 10000 +7393 M9903 10000 +7394 M9904 10000 +7395 M9905 10000 +7396 M9906 10000 +7397 M9907 10000 +7398 M9908 10000 +7399 M9909 10000 +7400 Q000 00000 +7401 Q001 00000 +7402 Q002 00000 +74100 Q054 10000 +74100 Q0702 10000 +74100 Q0703 10000 +74101 Q050 00000 +74102 Q051 00000 +74103 Q052 10000 +74190 Q058 10000 +74190 Q0701 10000 +74191 Q055 00000 +74192 Q056 00000 +74193 Q057 00000 +7420 Q019 10000 +7421 Q02 00000 +7422 Q041 10000 +7422 Q042 10000 +7422 Q043 10000 +7423 Q030 10000 +7423 Q031 10000 +7423 Q038 10000 +7424 Q045 10000 +7424 Q046 10000 +7424 Q048 10000 +74251 Q062 00000 +74253 Q064 00000 +74259 Q060 10000 +74259 Q061 10000 +74259 Q063 10000 +74259 Q068 10000 +7428 G901 10000 +7428 Q078 10000 +7429 Q079 10000 +74300 Q111 00000 +74303 Q110 00000 +74306 Q112 10000 +74310 Q112 10000 +74311 Q112 10000 +74312 Q112 10000 +74320 Q150 10000 +74321 Q150 10000 +74322 Q150 10000 +74330 Q120 10000 +74331 Q120 10000 +74332 Q120 10000 +74333 Q120 10000 +74334 Q120 10000 +74335 Q123 00000 +74336 Q124 10000 +74336 Q128 10000 +74337 Q121 00000 +74339 Q129 10000 +74341 Q134 10000 +74342 Q133 10000 +74343 Q133 10000 +74344 Q134 10000 +74344 Q1381 10000 +74344 Q150 10000 +74345 Q131 00000 +74346 Q130 10000 +74346 Q132 10000 +74347 Q135 10000 +74348 Q1389 10000 +74349 Q1389 10000 +74351 Q140 00000 +74352 Q148 10000 +74353 Q143 10000 +74354 Q148 10000 +74355 Q148 10000 +74356 Q141 10000 +74357 Q142 10000 +74358 Q148 10000 +74359 Q148 10000 +74361 Q100 00000 +74362 Q101 10000 +74362 Q102 10000 +74362 Q103 10000 +74363 Q103 10000 +74364 Q106 10000 +74365 Q104 10000 +74365 Q106 10000 +74366 Q107 10000 +74369 Q103 10000 +74369 Q106 10000 +74369 Q107 10000 +7438 Q113 10000 +7438 Q158 10000 +7439 Q159 00000 +74400 Q169 10000 +74401 Q160 00000 +74402 Q161 10000 +74403 Q164 00000 +74404 Q163 00000 +74405 Q165 00000 +74409 Q169 10000 +7441 Q170 00000 +74421 Q178 10000 +74422 Q171 00000 +74423 Q172 00000 +74424 Q162 10000 +74429 Q173 10000 +74429 Q174 10000 +74429 Q175 10000 +74429 Q178 10000 +7443 Q179 00000 +74441 Q180 10000 +74442 Q180 10000 +74443 Q182 10000 +74446 Q181 10000 +74447 Q181 10000 +74449 Q182 10000 +7445 Q183 00000 +74481 Q186 00000 +74482 Q187 00000 +74483 Q184 00000 +74484 Q185 00000 +74489 Q188 00000 +7449 Q189 00000 +7450 Q200 00000 +74510 Q203 10000 +74511 Q201 00000 +74512 Q205 10000 +74519 Q203 10000 +74519 Q208 10000 +7452 Q213 00000 +7453 Q204 00000 +7454 Q210 00000 +7455 Q211 00000 +74560 Q212 10000 +74561 Q212 10000 +74569 Q212 10000 +7457 Q208 10000 +7458 Q208 10000 +7458 Q218 10000 +7459 Q219 00000 +74600 Q223 10000 +74601 Q220 00000 +74602 Q221 00000 +74609 Q222 10000 +7461 Q229 10000 +7462 Q225 00000 +7463 Q230 00000 +7464 Q231 00000 +7465 Q232 00000 +7466 Q233 00000 +7467 Q234 00000 +74681 Q244 00000 +74682 Q242 00000 +74683 Q243 00000 +74684 Q248 10000 +74685 Q245 10000 +74686 Q246 00000 +74687 Q240 10000 +74687 Q241 10000 +74687 Q248 10000 +74689 Q238 10000 +74689 Q248 10000 +7469 Q209 10000 +7469 Q249 10000 +7470 Q250 00000 +74710 Q251 00000 +74711 Q2521 00000 +74720 Q2540 10000 +74721 Q2545 10000 +74721 Q2546 10000 +74721 Q2547 10000 +74722 Q2529 10000 +74722 Q253 10000 +74729 Q2541 10000 +74729 Q2542 10000 +74729 Q2543 10000 +74729 Q2544 10000 +74729 Q2548 10000 +74729 Q2549 10000 +74731 Q255 10000 +74731 Q2571 10000 +74732 Q2572 00000 +74739 Q256 10000 +74739 Q2579 10000 +74740 Q269 10000 +74741 Q262 00000 +74742 Q263 10000 +74749 Q260 10000 +74749 Q261 10000 +74749 Q268 10000 +7475 Q270 00000 +74760 Q279 10000 +74761 Q265 10000 +74762 Q272 10000 +74763 Q2731 00000 +74764 Q2732 00000 +74769 Q278 10000 +74781 Q282 10000 +74781 Q283 10000 +74782 Q279 10000 +74783 P293 00000 +74789 Q288 10000 +7479 Q289 00000 +7480 Q300 00000 +7481 Q301 10000 +7481 Q302 10000 +7481 Q308 10000 +7482 Q310 00000 +7483 Q311 10000 +7483 Q313 10000 +7483 Q318 10000 +7483 Q321 10000 +7483 Q324 10000 +7484 Q330 00000 +7485 Q332 10000 +7485 Q333 10000 +7485 Q336 10000 +74860 Q339 00000 +74861 Q334 00000 +74869 Q331 10000 +74869 Q335 10000 +74869 Q338 10000 +7488 Q340 10000 +7488 Q341 10000 +7488 Q348 10000 +7489 Q349 00000 +74900 Q359 10000 +74901 Q359 10000 +74902 Q357 10000 +74902 Q359 10000 +74903 Q359 10000 +74904 Q359 10000 +74910 Q369 10000 +74911 Q369 10000 +74912 Q369 10000 +74913 Q360 10000 +74914 Q360 10000 +74920 Q379 10000 +74921 Q379 10000 +74922 Q379 10000 +74923 Q378 10000 +74924 Q378 10000 +74925 Q379 10000 +7500 Q381 00000 +75010 Q383 10000 +75011 Q383 10000 +75012 Q383 10000 +75013 Q383 10000 +75015 Q382 00000 +75016 Q383 10000 +75019 Q383 10000 +75021 Q384 10000 +75022 Q384 10000 +75023 Q384 10000 +75024 Q384 10000 +75025 Q380 10000 +75026 Q386 10000 +75027 Q387 00000 +75029 Q388 00000 +7503 Q390 10000 +7503 Q391 10000 +7503 Q392 10000 +7503 Q393 10000 +7503 Q394 10000 +7504 Q395 10000 +7504 Q396 10000 +7504 Q398 10000 +7505 Q400 00000 +7506 Q401 00000 +7507 Q395 10000 +7507 Q402 10000 +7508 Q408 00000 +7509 Q385 10000 +7509 Q409 10000 +7510 Q430 00000 +7511 Q419 10000 +7512 Q429 10000 +7513 Q431 10000 +7514 Q433 00000 +7515 Q434 10000 +7515 Q435 10000 +7515 Q437 10000 +7515 Q438 10000 +75160 Q441 10000 +75160 Q445 10000 +75160 Q447 10000 +75161 Q442 10000 +75161 Q443 10000 +75162 Q446 00000 +75169 Q441 10000 +75169 Q444 10000 +75169 Q445 10000 +75169 Q447 10000 +7517 Q450 10000 +7517 Q451 10000 +7517 Q453 10000 +7518 Q458 00000 +7519 Q459 00000 +7520 Q5001 10000 +7520 Q5002 10000 +7520 Q5031 10000 +7520 Q5032 10000 +7520 Q5039 10000 +75210 Q506 10000 +75211 Q504 10000 +75211 Q505 10000 +75219 Q506 10000 +7522 Q5110 10000 +7522 Q512 10000 +75231 Q510 10000 +75232 Q51811 00000 +75233 Q514 00000 +75234 Q513 00000 +75235 Q512 10000 +75236 Q51810 00000 +75239 Q51818 10000 +75240 Q529 10000 +75241 Q516 10000 +75241 Q524 10000 +75242 Q523 00000 +75243 Q515 10000 +75244 Q51820 00000 +75245 Q520 00000 +75246 Q5211 00000 +75247 Q52120 10000 +75247 Q52121 10000 +75247 Q52122 10000 +75247 Q52123 10000 +75247 Q52124 10000 +75247 Q52129 10000 +75249 Q510 10000 +75249 Q515 10000 +75249 Q51821 10000 +75249 Q51828 10000 +75249 Q5210 10000 +75249 Q522 10000 +75249 Q524 10000 +75249 Q525 10000 +75249 Q526 10000 +75249 Q5270 10000 +75249 Q5271 10000 +75249 Q5279 10000 +75249 Q528 10000 +75251 Q539 10000 +75252 Q5522 00000 +75261 Q549 10000 +75262 Q640 00000 +75263 Q544 00000 +75264 Q5562 00000 +75265 Q5564 00000 +75269 Q5563 10000 +75269 Q5569 10000 +7527 Q563 10000 +7527 Q564 10000 +75281 Q5523 00000 +75289 Q528 10000 +75289 Q550 10000 +75289 Q551 10000 +75289 Q5521 10000 +75289 Q5529 10000 +75289 Q553 10000 +75289 Q558 10000 +7529 Q529 10000 +7529 Q559 10000 +7530 Q602 10000 +7530 Q605 10000 +75310 Q6100 10000 +75310 Q619 10000 +75311 Q6101 00000 +75312 Q613 00000 +75313 Q612 00000 +75314 Q6119 10000 +75315 Q614 00000 +75316 Q615 10000 +75317 Q615 10000 +75319 Q6102 10000 +75319 Q618 10000 +75320 Q6239 10000 +75321 Q6211 10000 +75322 Q6212 10000 +75323 Q6231 10000 +75329 Q6210 10000 +75329 Q6211 10000 +7533 Q630 10000 +7533 Q631 10000 +7533 Q632 10000 +7533 Q633 10000 +7533 Q638 10000 +7534 Q624 10000 +7534 Q625 10000 +7534 Q6261 10000 +7534 Q6262 10000 +7534 Q6263 10000 +7534 Q628 10000 +7535 Q6410 10000 +7535 Q6419 10000 +7536 Q642 10000 +7536 Q6431 10000 +7536 Q6432 10000 +7536 Q6433 10000 +7536 Q6439 10000 +7537 Q644 00000 +7538 Q645 10000 +7538 Q646 10000 +7538 Q6471 10000 +7538 Q6473 10000 +7538 Q6474 10000 +7538 Q6475 10000 +7538 Q6479 10000 +7539 Q649 10000 +7540 Q670 10000 +7540 Q671 10000 +7540 Q672 10000 +7540 Q673 10000 +7540 Q674 10000 +7541 Q680 00000 +7542 Q675 10000 +7542 Q763 10000 +7542 Q76425 10000 +7542 Q76426 10000 +7542 Q76427 10000 +7542 Q76428 10000 +75430 Q6500 10000 +75431 Q651 00000 +75432 Q6530 10000 +75433 Q654 00000 +75435 Q6501 10111 +75435 Q6502 10121 +75435 Q6531 10122 +75435 Q6532 10112 +75440 Q682 10000 +75441 Q682 10000 +75442 Q683 00000 +75443 Q684 00000 +75444 Q685 00000 +75450 Q660 10000 +75451 Q660 10000 +75452 Q6621 00000 +75453 Q6622 00000 +75459 Q661 10000 +75459 Q663 10000 +75460 Q664 10000 +75461 Q6650 10000 +75461 Q6680 10000 +75462 Q664 10000 +75469 Q666 00000 +75470 Q6689 10000 +75471 Q667 00000 +75479 Q6689 10000 +75481 Q676 00000 +75482 Q677 00000 +75489 Q678 10000 +75489 Q681 10000 +75489 Q743 10000 +75500 Q699 10000 +75501 Q690 10000 +75501 Q691 10000 +75502 Q692 00000 +75510 Q704 10000 +75510 Q709 10000 +75511 Q7010 10000 +75512 Q7000 10000 +75513 Q7030 10000 +75514 Q7020 10000 +75520 Q71899 10000 +75520 Q7190 10000 +75521 Q7100 10000 +75522 Q7100 10000 +75523 Q7110 10000 +75524 Q7110 10000 +75525 Q7120 10000 +75526 Q7140 10000 +75527 Q7150 10000 +75528 Q7130 10000 +75529 Q7130 10000 +75530 Q72899 10000 +75531 Q7200 10000 +75532 Q72899 10000 +75533 Q7210 10000 +75534 Q7240 10000 +75535 Q7220 10000 +75536 Q7250 10000 +75537 Q7260 10000 +75538 Q7230 10000 +75538 Q7270 10000 +75539 Q7230 10000 +75539 Q7270 10000 +7554 Q730 10000 +7554 Q731 10000 +7554 Q738 10000 +75550 Q749 10000 +75551 Q688 10000 +75552 Q688 10000 +75553 Q740 10000 +75554 Q740 10000 +75555 Q870 10000 +75556 Q740 10000 +75557 Q740 10000 +75558 Q7160 10000 +75559 Q740 10000 +75560 Q742 10000 +75561 Q6581 00000 +75562 Q6582 00000 +75563 Q6589 10000 +75564 Q682 10000 +75564 Q741 10000 +75565 Q742 10000 +75566 Q6689 10000 +75567 Q6689 10000 +75569 Q742 10000 +7558 Q748 00000 +7559 Q749 10000 +7560 Q750 10000 +7560 Q752 10000 +7560 Q759 10000 +75610 Q7649 10000 +75611 Q762 10000 +75612 Q762 10000 +75613 Q7649 10000 +75614 Q7649 10000 +75615 Q7649 10000 +75616 Q761 00000 +75617 Q760 00000 +75619 Q76419 10000 +75619 Q7649 10000 +7562 Q765 00000 +7563 Q766 10000 +7563 Q767 10000 +7563 Q772 10000 +7564 Q771 10000 +7564 Q774 10000 +7564 Q778 10000 +7564 Q784 10000 +75650 Q789 10000 +75651 Q780 00000 +75652 Q782 00000 +75653 Q788 10000 +75654 Q781 00000 +75655 Q776 00000 +75656 Q783 10000 +75659 Q788 10000 +7566 Q790 10000 +7566 Q791 10000 +75670 Q7959 10000 +75671 Q794 10000 +75671 Q7951 10000 +75672 Q792 00000 +75673 Q793 00000 +75679 Q7959 10000 +75681 Q798 10000 +75682 Q798 10000 +75683 Q796 00000 +75689 Q798 10000 +7569 Q688 10000 +7569 Q798 10000 +7569 Q799 10000 +7570 Q820 00000 +7571 Q803 10000 +7571 Q804 10000 +7571 Q809 10000 +7572 Q828 10000 +75731 Q824 00000 +75732 Q825 10000 +75733 Q821 10000 +75733 Q822 10000 +75739 Q819 10000 +75739 Q826 10000 +75739 Q828 10000 +7574 Q840 10000 +7574 Q841 10000 +7574 Q842 10000 +7575 Q843 10000 +7575 Q844 10000 +7575 Q845 10000 +7575 Q846 10000 +7576 Q830 10000 +7576 Q831 10000 +7576 Q832 10000 +7576 Q833 10000 +7576 Q838 10000 +7578 Q848 00000 +7579 Q849 00000 +7580 Q909 10000 +7581 Q917 10000 +7582 Q913 10000 +75831 Q934 00000 +75832 Q9381 00000 +75833 Q9388 00000 +75839 Q933 10000 +75839 Q937 10000 +75839 Q9389 10000 +7584 Q950 10000 +7585 Q928 10000 +7586 Q969 10000 +7587 Q984 10000 +75881 Q970 10000 +75881 Q971 10000 +75881 Q972 10000 +75881 Q978 10000 +75881 Q985 10000 +75881 Q987 10000 +75881 Q988 10000 +75881 Q998 10000 +75889 Q998 10000 +7589 Q999 00000 +7590 Q8901 10000 +7590 Q8909 10000 +7591 Q891 00000 +7592 Q892 00000 +7593 Q893 00000 +7594 Q894 00000 +7595 Q851 00000 +7596 Q858 10000 +7597 Q897 00000 +75981 Q871 10000 +75982 Q8740 10000 +75983 Q992 00000 +75989 E7871 10000 +75989 E7872 10000 +75989 Q872 10000 +75989 Q873 10000 +75989 Q875 10000 +75989 Q8781 10000 +75989 Q8782 10000 +75989 Q8789 10000 +75989 Q898 10000 +7599 Q899 00000 +7600 P000 00000 +7601 P001 00000 +7602 P002 10000 +7603 P003 10000 +7604 P004 00000 +7605 P005 00000 +76061 P007 10000 +76062 P007 10000 +76063 P006 10000 +76064 P006 10000 +76070 P049 10000 +76071 P043 10000 +76071 Q860 10000 +76072 P0449 10000 +76073 P0449 10000 +76074 P041 10000 +76075 P0441 00000 +76076 P048 10000 +76077 P041 10000 +76078 P041 10000 +76079 P048 10000 +7608 P0089 10000 +7609 P009 10000 +7610 P010 00000 +7611 P011 00000 +7612 P012 00000 +7613 P013 00000 +7614 P014 00000 +7615 P015 00000 +7616 P016 00000 +7617 P017 00000 +7618 P018 00000 +7619 P019 00000 +7620 P020 00000 +7621 P021 00000 +7622 P0229 10000 +7623 P023 00000 +7624 P024 00000 +7625 P025 00000 +7626 P0260 10000 +7626 P0269 10000 +7627 P027 00000 +7628 P028 00000 +7629 P029 00000 +7630 P030 00000 +7631 P031 00000 +7632 P032 00000 +7633 P033 00000 +7634 P034 00000 +7635 P040 00000 +7636 P035 00000 +7637 P036 00000 +76381 P03810 00000 +76382 P03811 00000 +76383 P03819 00000 +76384 P0382 00000 +76389 P0389 00000 +7639 P039 00000 +76400 P0500 10000 +76400 P0509 10000 +76400 P0510 10000 +76400 P0519 10000 +76401 P0501 10000 +76401 P0511 10000 +76402 P0502 10000 +76402 P0512 10000 +76403 P0503 10000 +76403 P0513 10000 +76404 P0504 10000 +76404 P0514 10000 +76405 P0505 10000 +76405 P0515 10000 +76406 P0506 10000 +76406 P0516 10000 +76407 P0507 10000 +76407 P0517 10000 +76408 P0508 10000 +76408 P0518 10000 +76409 P0509 10000 +76410 P0500 10000 +76410 P0510 10000 +76411 P0501 10000 +76411 P0511 10000 +76412 P0502 10000 +76412 P0512 10000 +76413 P0503 10000 +76413 P0513 10000 +76414 P0504 10000 +76414 P0514 10000 +76415 P0505 10000 +76415 P0515 10000 +76416 P0506 10000 +76416 P0516 10000 +76417 P0507 10000 +76417 P0517 10000 +76418 P0508 10000 +76418 P0518 10000 +76419 P0509 10000 +76420 P052 10000 +76421 P052 10000 +76422 P052 10000 +76423 P052 10000 +76424 P052 10000 +76425 P052 10000 +76426 P052 10000 +76427 P052 10000 +76428 P052 10000 +76429 P052 10000 +76490 P059 10000 +76491 P059 10000 +76492 P059 10000 +76493 P059 10000 +76494 P059 10000 +76495 P059 10000 +76496 P059 10000 +76497 P059 10000 +76498 P059 10000 +76499 P059 10000 +76500 P0700 10000 +76500 P0710 10000 +76501 P0701 10000 +76502 P0702 10000 +76503 P0703 10000 +76504 P0714 10000 +76505 P0715 10000 +76506 P0716 10000 +76507 P0717 10000 +76508 P0718 10000 +76509 P0730 10000 +76510 P0700 10000 +76510 P0710 10000 +76511 P0701 10000 +76512 P0702 10000 +76513 P0703 10000 +76514 P0714 10000 +76515 P0715 10000 +76516 P0716 10000 +76517 P0717 10000 +76518 P0718 10000 +76519 P0730 10000 +76520 P0720 10000 +76520 P0730 10000 +76521 P0721 10000 +76521 P0722 10000 +76522 P0723 10000 +76523 P0724 10000 +76523 P0725 10000 +76524 P0726 10000 +76524 P0731 10000 +76525 P0732 10000 +76525 P0733 10000 +76526 P0734 10000 +76526 P0735 10000 +76527 P0736 10000 +76527 P0737 10000 +76528 P0738 10000 +76528 P0739 10000 +76529 NoDx 11000 +7660 P080 00000 +7661 P081 00000 +76621 P0821 00000 +76622 P0822 00000 +7670 P100 10000 +7670 P101 10000 +7670 P104 10000 +7670 P524 10000 +7670 P528 10000 +76711 P122 00000 +76719 P120 10000 +76719 P121 10000 +76719 P1281 10000 +76719 P1289 10000 +7672 P134 00000 +7673 P130 10000 +7673 P132 10000 +7673 P133 10000 +7673 P138 10000 +7674 P115 00000 +7675 P113 00000 +7676 P140 10000 +7676 P141 10000 +7676 P143 10000 +7677 P114 10000 +7677 P142 10000 +7677 P148 10000 +7678 P150 10000 +7678 P151 10000 +7678 P152 10000 +7678 P153 10000 +7678 P155 10000 +7678 P158 10000 +7679 P159 00000 +7680 P84 10000 +7681 P84 10000 +7682 P190 10000 +7683 P191 10000 +7684 P199 10000 +7685 P84 10000 +7686 P84 10000 +76870 P9160 00000 +76871 P9161 00000 +76872 P9162 00000 +76873 P9163 00000 +7689 P84 10000 +769 P220 00000 +7700 P239 10000 +77010 P249 10000 +77011 P2400 00000 +77012 P2401 00000 +77013 P2410 00000 +77014 P2411 00000 +77015 P2420 00000 +77016 P2421 00000 +77017 P2480 00000 +77018 P2481 00000 +7702 P250 10000 +7702 P251 10000 +7702 P252 10000 +7702 P253 10000 +7702 P258 10000 +7703 P261 10000 +7703 P268 10000 +7704 P280 00000 +7705 P2810 10000 +7705 P2819 10000 +7706 P221 00000 +7707 P270 10000 +7707 P271 10000 +7707 P278 10000 +77081 P283 10000 +77082 P284 00000 +77083 P282 00000 +77084 P285 00000 +77085 P2430 00000 +77086 P2431 00000 +77087 P2881 00000 +77088 P84 10000 +77089 P2889 10000 +7709 P289 10000 +7710 P350 00000 +7711 P351 00000 +7712 P352 10000 +7712 P370 10000 +7712 P371 10000 +7712 P372 10000 +7712 P373 10000 +7712 P374 10000 +7712 P378 10000 +7713 A33 00000 +7714 P389 10000 +7715 P390 00000 +7716 P391 00000 +7717 P375 00000 +77181 P369 10000 +77182 P393 00000 +77183 R7881 10000 +77189 P392 10000 +77189 P398 10000 +7720 P500 10000 +7720 P501 10000 +7720 P502 10000 +7720 P503 10000 +7720 P504 10000 +7720 P505 10000 +7720 P508 10000 +77210 P523 10000 +77211 P520 00000 +77212 P521 00000 +77213 P5221 00000 +77214 P5222 00000 +7722 P103 10000 +7722 P525 10000 +7723 P518 10000 +7724 P543 10000 +7725 P544 00000 +7726 P545 00000 +7728 P548 10000 +7729 P549 00000 +7730 P550 00000 +7731 P551 10000 +7732 P558 10000 +7732 P559 10000 +7733 P560 10000 +7734 P570 00000 +7735 P551 10000 +7740 P588 10000 +7741 P580 10000 +7741 P582 10000 +7741 P583 10000 +7741 P5841 10000 +7741 P585 10000 +7741 P588 10000 +7742 P590 00000 +77430 P598 10000 +77431 P598 10000 +77439 P593 10000 +7744 P591 10000 +7744 P5929 10000 +7745 P598 10000 +7746 P599 10000 +7747 P578 10000 +7750 P700 10000 +7750 P701 10000 +7751 P702 00000 +7752 P940 10000 +7753 P721 00000 +7754 P710 10000 +7754 P711 10000 +7754 P712 10000 +7754 P713 10000 +7754 P714 10000 +7754 P718 10000 +7755 P741 10000 +7755 P744 10000 +7756 P704 10000 +7757 P740 00000 +77581 P84 10000 +77589 P728 10000 +77589 P748 10000 +7759 P729 10000 +7759 P749 10000 +7760 P53 00000 +7761 P610 00000 +7762 P60 00000 +7763 P616 00000 +7764 P611 00000 +7765 P613 10000 +7765 P614 10000 +7766 P612 00000 +7767 P615 00000 +7768 P618 00000 +7769 P619 00000 +7771 P760 10000 +7772 P762 00000 +7773 P782 00000 +7774 P761 00000 +77750 P779 00000 +77751 P771 00000 +77752 P772 00000 +77753 P773 00000 +7776 P780 00000 +7778 P7881 10000 +7778 P7889 10000 +7779 P789 00000 +7780 P832 00000 +7781 P830 00000 +7782 P800 00000 +7783 P808 10000 +7784 P810 10000 +7784 P818 10000 +7784 P819 10000 +7785 P8330 10000 +7785 P8339 10000 +7786 P835 00000 +7787 P834 00000 +7788 P838 10000 +7789 P839 10000 +7790 P90 00000 +7791 P918 10000 +7791 P919 10000 +7792 P914 10000 +7792 P915 10000 +77931 P921 10000 +77931 P922 10000 +77931 P928 10000 +77931 P929 10000 +77932 P9201 00000 +77933 P9209 10000 +77934 P926 00000 +7794 P930 10000 +7794 P938 10000 +7795 P961 10000 +7795 P962 10000 +7796 NoDx 11000 +7797 P912 10000 +77981 P2912 00000 +77982 P2911 00000 +77983 P9682 00000 +77984 P9683 00000 +77985 P2981 00000 +77989 P290 10000 +77989 P2989 10000 +77989 P941 10000 +77989 P942 10000 +77989 P9689 10000 +7799 P95 10000 +7799 P969 10000 +78001 R4020 10000 +78002 R404 00000 +78003 R403 00000 +78009 R400 10000 +78009 R401 10000 +7801 R440 10000 +7801 R442 10000 +7801 R443 10000 +7802 R55 00000 +78031 R5600 00000 +78032 R5601 00000 +78033 R561 00000 +78039 R569 10000 +7804 R42 00000 +78050 G479 10000 +78051 G4730 10000 +78052 G4700 00000 +78053 G4730 10000 +78054 G4710 10000 +78055 G4720 10000 +78056 G478 10000 +78057 G4730 10000 +78058 F518 10000 +78059 G478 10000 +78060 R502 10000 +78060 R509 10000 +78061 R5081 00000 +78062 R5082 00000 +78063 R5083 00000 +78064 R6883 00000 +78065 R680 00000 +78066 R5084 00000 +78071 R5382 00000 +78072 R532 00000 +78079 G933 10000 +78079 R531 10000 +78079 R5381 10000 +78079 R5383 10000 +7808 R61 00000 +78091 R6812 00000 +78092 R6811 00000 +78093 R412 10000 +78093 R413 10000 +78094 R6881 00000 +78095 R4583 00000 +78096 R52 10000 +78097 R4182 10000 +78099 R4584 10000 +78099 R6889 10000 +7810 R250 10000 +7810 R251 10000 +7810 R252 10000 +7810 R253 10000 +7810 R259 10000 +7811 R430 10000 +7811 R431 10000 +7811 R432 10000 +7812 R260 10000 +7812 R261 10000 +7812 R2689 10000 +7812 R269 10000 +7813 R270 10000 +7813 R278 10000 +7813 R279 10000 +7814 R295 10000 +7815 R683 00000 +7816 R291 00000 +7817 R290 00000 +7818 R414 00000 +78191 R29890 00000 +78192 R293 00000 +78193 R29891 00000 +78194 R29810 00000 +78199 R29818 10000 +78199 R29898 10000 +78199 R2990 10000 +78199 R2991 10000 +7820 R200 10000 +7820 R201 10000 +7820 R202 10000 +7820 R203 10000 +7820 R208 10000 +7820 R209 10000 +7821 R21 00000 +7822 R229 10000 +7823 R600 10000 +7823 R601 10000 +7823 R609 10000 +7824 R17 00000 +7825 R230 00000 +78261 R231 00000 +78262 R232 00000 +7827 R233 00000 +7828 R234 00000 +7829 R238 10000 +7830 R630 00000 +7831 R635 00000 +78321 R634 00000 +78322 R636 00000 +7833 R633 00000 +78340 R6250 10000 +78341 R6251 00000 +78342 R620 00000 +78343 R6252 00000 +7835 R631 00000 +7836 R632 00000 +7837 R627 00000 +7839 R638 10000 +7840 G441 10000 +7840 R51 10000 +7841 R070 00000 +7842 R220 10000 +7842 R221 10000 +7843 R4701 00000 +78440 R499 10000 +78441 R491 00000 +78442 R490 00000 +78443 R4921 00000 +78444 R4922 00000 +78449 R498 10000 +78451 R471 00000 +78452 R4782 00000 +78459 R4702 10000 +78459 R4781 10000 +78459 R4789 10000 +78460 R489 00000 +78461 R480 10000 +78469 R481 10000 +78469 R482 10000 +78469 R488 10000 +7847 R040 00000 +7848 R041 00000 +78491 R0982 00000 +78492 R6884 00000 +78499 R065 10000 +78499 R067 10000 +78499 R0689 10000 +78499 R196 10000 +7850 R000 00000 +7851 R002 00000 +7852 R011 10000 +7853 R012 10000 +7854 I96 10000 +78550 R579 00000 +78551 R570 00000 +78552 R6521 10000 +78559 R571 10000 +78559 R578 10000 +7856 R599 10000 +7859 R0989 10000 +78600 R069 10000 +78601 R064 00000 +78602 R0601 00000 +78603 R0681 00000 +78604 R063 00000 +78605 R0602 00000 +78606 R0682 00000 +78607 R062 00000 +78609 R0600 10000 +78609 R0609 10000 +78609 R063 10000 +78609 R0683 10000 +78609 R0689 10000 +7861 R061 00000 +7862 R05 00000 +78630 R042 10000 +78630 R049 10000 +78631 R0481 00000 +78639 R0489 10000 +7864 R093 00000 +78650 R079 00000 +78651 R072 00000 +78652 R071 10000 +78652 R0781 10000 +78659 R0782 10000 +78659 R0789 10000 +7866 R222 10000 +7867 R0989 10000 +7868 R066 00000 +7869 R0689 10000 +78701 R112 10000 +78702 R110 00000 +78703 R1110 10000 +78703 R1111 10000 +78703 R1112 10000 +78704 R1114 00000 +7871 R12 00000 +78720 R130 10000 +78720 R1310 10000 +78721 R1311 00000 +78722 R1312 00000 +78723 R1313 00000 +78724 R1314 00000 +78729 R1319 10000 +7873 R140 10000 +7873 R141 10000 +7873 R142 10000 +7873 R143 10000 +7874 R192 00000 +7875 R1911 10000 +7875 R1912 10000 +7875 R1915 10000 +78760 R159 00000 +78761 R150 00000 +78762 R151 00000 +78763 R152 00000 +7877 R195 10000 +78791 K5229 10000 +78791 K5289 10000 +78791 R197 10000 +78799 R194 10000 +78799 R198 10000 +7880 N23 00000 +7881 R300 10000 +7881 R309 10000 +78820 R339 00000 +78821 R3914 10000 +78829 R338 10000 +78830 R32 00000 +78831 N3941 00000 +78832 N393 10000 +78833 N3946 00000 +78834 N3942 00000 +78835 N3943 00000 +78836 N3944 00000 +78837 N3945 00000 +78838 N39490 00000 +78839 N39491 10000 +78839 N39492 10000 +78839 N39498 10000 +78841 R350 00000 +78842 R358 00000 +78843 R351 00000 +7885 R34 00000 +78861 R3913 00000 +78862 R3912 10000 +78863 R3915 00000 +78864 R3911 00000 +78865 R3916 00000 +78869 R39191 10000 +78869 R39192 10000 +78869 R39198 10000 +7887 R360 10000 +7887 R369 10000 +7888 R390 00000 +78891 R3981 00000 +78899 R301 10000 +78899 R392 10000 +78899 R3982 10000 +78899 R3989 10000 +78900 R109 10000 +78901 R1011 00000 +78902 R1012 00000 +78903 R1031 00000 +78904 R1032 00000 +78905 R1033 00000 +78906 R1013 00000 +78907 R1084 00000 +78909 R1010 10000 +78909 R102 10000 +78909 R1030 10000 +7891 R160 10000 +7892 R161 10000 +78930 R1900 00000 +78931 R1901 00000 +78932 R1902 00000 +78933 R1903 00000 +78934 R1904 00000 +78935 R1905 00000 +78936 R1906 00000 +78937 R1907 00000 +78939 R1909 10000 +78940 R1930 10000 +78941 R1931 00000 +78942 R1932 00000 +78943 R1933 00000 +78944 R1934 00000 +78945 R1935 00000 +78946 R1936 00000 +78947 R1937 00000 +78949 R1930 10000 +78951 R180 00000 +78959 R188 00000 +78960 R10819 10000 +78960 R10829 10000 +78961 R10811 10000 +78961 R10821 10000 +78962 R10812 10000 +78962 R10822 10000 +78963 R10813 10000 +78963 R10823 10000 +78964 R10814 10000 +78964 R10824 10000 +78965 R10815 10000 +78965 R10825 10000 +78966 R10816 10000 +78966 R10826 10000 +78967 R10817 10000 +78967 R10827 10000 +78969 R10819 10000 +78969 R10829 10000 +7897 R1083 00000 +7899 R198 10000 +79001 R710 00000 +79009 R718 00000 +7901 R700 00000 +79021 R7301 00000 +79022 R7302 00000 +79029 R7303 10000 +79029 R7309 10000 +7903 R780 10000 +7904 R740 00000 +7905 R748 10000 +7906 R7889 10000 +7906 R790 10000 +7906 R7989 10000 +7907 R7881 10000 +7908 B349 10000 +79091 R7981 10000 +79092 R791 00000 +79093 R9720 10000 +79093 R9721 10000 +79094 E0781 00000 +79095 R7982 00000 +79099 R7889 10000 +79099 R789 10000 +7910 R803 10000 +7910 R809 10000 +7911 R820 00000 +7912 R823 00000 +7913 R821 00000 +7914 R822 00000 +7915 R81 00000 +7916 R824 00000 +7917 R8299 10000 +7919 R825 10000 +7919 R8271 10000 +7919 R8279 10000 +7919 R8299 10000 +7920 R839 10000 +7921 R195 10000 +7922 R869 10000 +7923 O289 10000 +7924 R859 10000 +7925 R880 00000 +7929 R849 10000 +7929 R859 10000 +7929 R879 10000 +7929 R888 10000 +7929 R899 10000 +7930 R930 10000 +79311 R911 00000 +79319 R918 00000 +7932 R931 10000 +7932 R938 10000 +7933 R932 10000 +7934 R933 10000 +7935 R9341 10000 +7935 R93421 10000 +7935 R93422 10000 +7935 R93429 10000 +7935 R9349 10000 +7936 R935 10000 +7937 R936 10000 +7937 R937 10000 +79380 R928 10000 +79381 R920 00000 +79382 R922 00000 +79389 R928 10000 +79391 R939 00000 +79399 R938 10000 +79400 R9409 10000 +79401 R9081 00000 +79402 R9401 00000 +79409 R9402 10000 +79409 R9409 10000 +79410 R94130 00000 +79411 R94111 00000 +79412 R94110 00000 +79413 R94112 00000 +79414 R94113 00000 +79415 R94120 00000 +79416 R94121 00000 +79417 R94131 00000 +79419 R94118 10000 +79419 R94128 10000 +79419 R94138 10000 +7942 R942 00000 +79430 R9430 00000 +79431 R9431 00000 +79439 R9439 00000 +7944 R944 00000 +7945 R946 00000 +7946 R947 00000 +7947 R948 10000 +7948 R945 00000 +7949 R948 10000 +79500 R87619 10000 +79501 R87610 00000 +79502 R87611 00000 +79503 R87612 00000 +79504 R87613 00000 +79505 R87810 00000 +79506 R87614 00000 +79507 R87616 00000 +79508 R87615 00000 +79509 R87820 10000 +79510 R87628 10000 +79511 R87620 00000 +79512 R87621 00000 +79513 R87622 00000 +79514 R87623 00000 +79515 R87811 10000 +79516 R87624 00000 +79518 R87625 00000 +79519 R87628 10000 +7952 R898 10000 +79531 R895 10000 +79539 R899 10000 +7954 R897 10000 +79551 R7611 00000 +79552 R7612 00000 +7956 R768 10000 +79571 R75 10000 +79579 R760 10000 +79579 R768 10000 +79579 R769 10000 +79581 R970 00000 +79582 R971 00000 +79589 R978 00000 +7960 R825 10000 +7960 R826 10000 +7960 R892 10000 +7960 R893 10000 +7961 R292 00000 +7962 R030 00000 +7963 R031 00000 +7964 R6889 10000 +7965 O289 10000 +7966 P09 00000 +79670 R85619 00000 +79671 R85610 00000 +79672 R85611 00000 +79673 R85612 00000 +79674 R85613 00000 +79675 R8581 00000 +79676 R85614 00000 +79677 R85616 00000 +79678 R85615 00000 +79679 R85618 10000 +79679 R8582 10000 +7969 R6889 10000 +797 R4181 10000 +7980 R99 10000 +7981 R99 10000 +7982 R99 10000 +7989 R99 10000 +79901 R0901 00000 +79902 R0902 00000 +7991 R092 00000 +79921 R450 00000 +79922 R454 10000 +79923 R4587 00000 +79924 R4586 00000 +79925 R453 00000 +79929 R4589 10000 +7993 R5381 10000 +7994 R64 00000 +79951 R41840 00000 +79952 R41841 00000 +79953 R41842 00000 +79954 R41843 00000 +79955 R41844 00000 +79959 R4189 00000 +79981 R6882 00000 +79982 R6813 00000 +79989 R69 10000 +7999 R69 10000 +7999 R99 10000 +80000 S020XXA 10000 +80001 S020XXA 10000 +80002 S020XXA 10000 +80003 S020XXA 10000 +80004 S020XXA 10000 +80005 S020XXA 10000 +80006 S020XXA 10000 +80009 S020XXA 10000 +80010 S020XXA 10111 +80010 S06330A 10112 +80011 S020XXA 10111 +80011 S06330A 10112 +80012 S020XXA 10111 +80012 S06331A 10112 +80012 S06332A 10112 +80013 S020XXA 10111 +80013 S06333A 10112 +80013 S06334A 10112 +80014 S020XXA 10111 +80014 S06335A 10112 +80015 S020XXA 10111 +80015 S06336A 10112 +80015 S06337A 10112 +80015 S06338A 10112 +80016 S020XXA 10111 +80016 S06339A 10112 +80019 S020XXA 10111 +80019 S06330A 10112 +80020 S020XXA 10111 +80020 S064X0A 10112 +80020 S065X0A 10112 +80020 S066X0A 10112 +80021 S020XXA 10111 +80021 S064X0A 10112 +80021 S065X0A 10112 +80021 S066X0A 10112 +80022 S020XXA 10111 +80022 S064X1A 10112 +80022 S064X2A 10112 +80022 S065X1A 10112 +80022 S065X2A 10112 +80022 S066X1A 10112 +80022 S066X2A 10112 +80023 S020XXA 10111 +80023 S064X3A 10112 +80023 S064X4A 10112 +80023 S065X3A 10112 +80023 S065X4A 10112 +80023 S066X3A 10112 +80023 S066X4A 10112 +80024 S020XXA 10111 +80024 S064X5A 10112 +80024 S065X5A 10112 +80024 S066X5A 10112 +80025 S020XXA 10111 +80025 S064X6A 10112 +80025 S064X7A 10112 +80025 S064X8A 10112 +80025 S065X6A 10112 +80025 S065X7A 10112 +80025 S065X8A 10112 +80025 S066X6A 10112 +80025 S066X7A 10112 +80025 S066X8A 10112 +80026 S020XXA 10111 +80026 S064X9A 10112 +80026 S065X9A 10112 +80026 S066X9A 10112 +80029 S020XXA 10111 +80029 S064X0A 10112 +80029 S065X0A 10112 +80029 S066X0A 10112 +80030 S020XXA 10111 +80030 S06360A 10112 +80031 S020XXA 10111 +80031 S06360A 10112 +80032 S020XXA 10111 +80032 S06361A 10112 +80032 S06362A 10112 +80033 S020XXA 10111 +80033 S06363A 10112 +80033 S06364A 10112 +80034 S020XXA 10111 +80034 S06365A 10112 +80035 S020XXA 10111 +80035 S06366A 10112 +80035 S06367A 10112 +80035 S06368A 10112 +80036 S020XXA 10111 +80036 S06369A 10112 +80039 S020XXA 10111 +80039 S06360A 10112 +80040 S020XXA 10111 +80040 S06890A 10112 +80040 S069X0A 10112 +80041 S020XXA 10111 +80041 S06890A 10112 +80041 S069X0A 10112 +80042 S020XXA 10111 +80042 S06891A 10112 +80042 S06892A 10112 +80042 S069X1A 10112 +80042 S069X2A 10112 +80043 S020XXA 10111 +80043 S06893A 10112 +80043 S06894A 10112 +80043 S069X3A 10112 +80043 S069X4A 10112 +80044 S020XXA 10111 +80044 S06895A 10112 +80044 S069X5A 10112 +80045 S020XXA 10111 +80045 S06896A 10112 +80045 S06897A 10112 +80045 S06898A 10112 +80045 S069X6A 10112 +80045 S069X7A 10112 +80045 S069X8A 10112 +80046 S020XXA 10111 +80046 S06899A 10112 +80046 S069X9A 10112 +80049 S020XXA 10111 +80049 S06890A 10112 +80049 S069X0A 10112 +80050 S020XXB 10000 +80051 S020XXB 10000 +80052 S020XXB 10000 +80053 S020XXB 10000 +80054 S020XXB 10000 +80055 S020XXB 10000 +80056 S020XXB 10000 +80059 S020XXB 10000 +80060 S020XXB 10111 +80060 S06330A 10112 +80061 S020XXB 10111 +80061 S06330A 10112 +80062 S020XXB 10111 +80062 S06331A 10112 +80062 S06332A 10112 +80063 S020XXB 10111 +80063 S06333A 10112 +80063 S06334A 10112 +80064 S020XXB 10111 +80064 S06335A 10112 +80065 S020XXB 10111 +80065 S06336A 10112 +80065 S06337A 10112 +80065 S06338A 10112 +80066 S020XXB 10111 +80066 S06339A 10112 +80069 S020XXB 10111 +80069 S06330A 10112 +80070 S020XXB 10111 +80070 S064X0A 10112 +80070 S065X0A 10112 +80070 S066X0A 10112 +80071 S020XXB 10111 +80071 S064X0A 10112 +80071 S065X0A 10112 +80071 S066X0A 10112 +80072 S020XXB 10111 +80072 S064X1A 10112 +80072 S064X2A 10112 +80072 S065X1A 10112 +80072 S065X2A 10112 +80072 S066X1A 10112 +80072 S066X2A 10112 +80073 S020XXB 10111 +80073 S064X3A 10112 +80073 S064X4A 10112 +80073 S065X3A 10112 +80073 S065X4A 10112 +80073 S066X3A 10112 +80073 S066X4A 10112 +80074 S020XXB 10111 +80074 S064X5A 10112 +80074 S065X5A 10112 +80074 S066X5A 10112 +80075 S020XXB 10111 +80075 S064X6A 10112 +80075 S064X7A 10112 +80075 S064X8A 10112 +80075 S065X6A 10112 +80075 S065X7A 10112 +80075 S065X8A 10112 +80075 S066X6A 10112 +80075 S066X7A 10112 +80075 S066X8A 10112 +80076 S020XXB 10111 +80076 S064X9A 10112 +80076 S065X9A 10112 +80076 S066X9A 10112 +80079 S020XXB 10111 +80079 S064X0A 10112 +80079 S065X0A 10112 +80079 S066X0A 10112 +80080 S020XXB 10111 +80080 S06360A 10112 +80081 S020XXB 10111 +80081 S06360A 10112 +80082 S020XXB 10111 +80082 S06361A 10112 +80082 S06362A 10112 +80083 S020XXB 10111 +80083 S06363A 10112 +80083 S06364A 10112 +80084 S020XXB 10111 +80084 S06365A 10112 +80085 S020XXB 10111 +80085 S06366A 10112 +80085 S06367A 10112 +80085 S06368A 10112 +80086 S020XXB 10111 +80086 S06369A 10112 +80089 S020XXB 10111 +80089 S06360A 10112 +80090 S020XXB 10111 +80090 S06890A 10112 +80090 S069X0A 10112 +80091 S020XXB 10111 +80091 S06890A 10112 +80091 S069X0A 10112 +80092 S020XXB 10111 +80092 S06891A 10112 +80092 S06892A 10112 +80092 S069X1A 10112 +80092 S069X2A 10112 +80093 S020XXB 10111 +80093 S06893A 10112 +80093 S06894A 10112 +80093 S069X3A 10112 +80093 S069X4A 10112 +80094 S020XXB 10111 +80094 S06895A 10112 +80094 S069X5A 10112 +80095 S020XXB 10111 +80095 S06896A 10112 +80095 S06897A 10112 +80095 S06898A 10112 +80095 S069X6A 10112 +80095 S069X7A 10112 +80095 S069X8A 10112 +80096 S020XXB 10111 +80096 S06899A 10112 +80096 S069X9A 10112 +80099 S020XXB 10111 +80099 S06890A 10112 +80099 S069X0A 10112 +80100 S02101A 10000 +80100 S02102A 10000 +80100 S02109A 10000 +80101 S02101A 10000 +80101 S02102A 10000 +80101 S02109A 10000 +80102 S02101A 10000 +80102 S02102A 10000 +80102 S02109A 10000 +80103 S02101A 10000 +80103 S02102A 10000 +80103 S02109A 10000 +80104 S02101A 10000 +80104 S02102A 10000 +80104 S02109A 10000 +80105 S02101A 10000 +80105 S02102A 10000 +80105 S02109A 10000 +80106 S02101A 10000 +80106 S02102A 10000 +80106 S02109A 10000 +80109 S02101A 10000 +80109 S02102A 10000 +80109 S02109A 10000 +80110 S02109A 10111 +80110 S06330A 10112 +80111 S02109A 10111 +80111 S06330A 10112 +80112 S02109A 10111 +80112 S06331A 10112 +80112 S06332A 10112 +80113 S02109A 10111 +80113 S06333A 10112 +80113 S06334A 10112 +80114 S02109A 10111 +80114 S06335A 10112 +80115 S02109A 10111 +80115 S06336A 10112 +80115 S06337A 10112 +80115 S06338A 10112 +80116 S02109A 10111 +80116 S06339A 10112 +80119 S02109A 10111 +80119 S06330A 10112 +80120 S02109A 10111 +80120 S064X0A 10112 +80120 S065X0A 10112 +80120 S066X0A 10112 +80121 S02109A 10111 +80121 S064X0A 10112 +80121 S065X0A 10112 +80121 S066X0A 10112 +80122 S02109A 10111 +80122 S064X1A 10112 +80122 S064X2A 10112 +80122 S065X1A 10112 +80122 S065X2A 10112 +80122 S066X1A 10112 +80122 S066X2A 10112 +80123 S02109A 10111 +80123 S064X3A 10112 +80123 S064X4A 10112 +80123 S065X3A 10112 +80123 S065X4A 10112 +80123 S066X3A 10112 +80123 S066X4A 10112 +80124 S02109A 10111 +80124 S064X5A 10112 +80124 S065X5A 10112 +80124 S066X5A 10112 +80125 S02109A 10111 +80125 S064X6A 10112 +80125 S064X7A 10112 +80125 S064X8A 10112 +80125 S065X6A 10112 +80125 S065X7A 10112 +80125 S065X8A 10112 +80125 S066X6A 10112 +80125 S066X7A 10112 +80125 S066X8A 10112 +80126 S02109A 10111 +80126 S064X9A 10112 +80126 S065X9A 10112 +80126 S066X9A 10112 +80129 S02109A 10111 +80129 S064X0A 10112 +80129 S065X0A 10112 +80129 S066X0A 10112 +80130 S02109A 10111 +80130 S06360A 10112 +80131 S02109A 10111 +80131 S06360A 10112 +80132 S02109A 10111 +80132 S06361A 10112 +80132 S06362A 10112 +80133 S02109A 10111 +80133 S06363A 10112 +80133 S06364A 10112 +80134 S02109A 10111 +80134 S06365A 10112 +80135 S02109A 10111 +80135 S06366A 10112 +80135 S06367A 10112 +80135 S06368A 10112 +80136 S02109A 10111 +80136 S06369A 10112 +80139 S02109A 10111 +80139 S06360A 10112 +80140 S02109A 10111 +80140 S06890A 10112 +80140 S069X0A 10112 +80141 S02109A 10111 +80141 S06890A 10112 +80141 S069X0A 10112 +80142 S02109A 10111 +80142 S06891A 10112 +80142 S06892A 10112 +80142 S069X1A 10112 +80142 S069X2A 10112 +80143 S02109A 10111 +80143 S06893A 10112 +80143 S06894A 10112 +80143 S069X3A 10112 +80143 S069X4A 10112 +80144 S02109A 10111 +80144 S06895A 10112 +80144 S069X5A 10112 +80145 S02109A 10111 +80145 S06896A 10112 +80145 S06897A 10112 +80145 S06898A 10112 +80145 S069X6A 10112 +80145 S069X7A 10112 +80145 S069X8A 10112 +80146 S02109A 10111 +80146 S06899A 10112 +80146 S069X9A 10112 +80149 S02109A 10111 +80149 S06890A 10112 +80149 S069X0A 10112 +80150 S02101B 10000 +80150 S02102B 10000 +80150 S02109B 10000 +80151 S02101B 10000 +80151 S02102B 10000 +80151 S02109B 10000 +80152 S02101B 10000 +80152 S02102B 10000 +80152 S02109B 10000 +80153 S02101B 10000 +80153 S02102B 10000 +80153 S02109B 10000 +80154 S02101B 10000 +80154 S02102B 10000 +80154 S02109B 10000 +80155 S02101B 10000 +80155 S02102B 10000 +80155 S02109B 10000 +80156 S02101B 10000 +80156 S02102B 10000 +80156 S02109B 10000 +80159 S02101B 10000 +80159 S02102B 10000 +80159 S02109B 10000 +80160 S02109B 10111 +80160 S06330A 10112 +80161 S02109B 10111 +80161 S06330A 10112 +80162 S02109B 10111 +80162 S06331A 10112 +80162 S06332A 10112 +80163 S02109B 10111 +80163 S06333A 10112 +80163 S06334A 10112 +80164 S02109B 10111 +80164 S06335A 10112 +80165 S02109B 10111 +80165 S06336A 10112 +80165 S06337A 10112 +80165 S06338A 10112 +80166 S02109B 10111 +80166 S06339A 10112 +80169 S02109B 10111 +80169 S06330A 10112 +80170 S02109B 10111 +80170 S064X0A 10112 +80170 S065X0A 10112 +80170 S066X0A 10112 +80171 S02109B 10111 +80171 S064X0A 10112 +80171 S065X0A 10112 +80171 S066X0A 10112 +80172 S02109B 10111 +80172 S064X1A 10112 +80172 S064X2A 10112 +80172 S065X1A 10112 +80172 S065X2A 10112 +80172 S066X1A 10112 +80172 S066X2A 10112 +80173 S02109B 10111 +80173 S064X3A 10112 +80173 S064X4A 10112 +80173 S065X3A 10112 +80173 S065X4A 10112 +80173 S066X3A 10112 +80173 S066X4A 10112 +80174 S02109B 10111 +80174 S064X5A 10112 +80174 S065X5A 10112 +80174 S066X5A 10112 +80175 S02109B 10111 +80175 S064X6A 10112 +80175 S064X7A 10112 +80175 S064X8A 10112 +80175 S065X6A 10112 +80175 S065X7A 10112 +80175 S065X8A 10112 +80175 S066X6A 10112 +80175 S066X7A 10112 +80175 S066X8A 10112 +80176 S02109B 10111 +80176 S064X9A 10112 +80176 S065X9A 10112 +80176 S066X9A 10112 +80179 S02109B 10111 +80179 S064X0A 10112 +80179 S065X0A 10112 +80179 S066X0A 10112 +80180 S02109B 10111 +80180 S06360A 10112 +80181 S02109B 10111 +80181 S06360A 10112 +80182 S02109B 10111 +80182 S06361A 10112 +80182 S06362A 10112 +80183 S02109B 10111 +80183 S06363A 10112 +80183 S06364A 10112 +80184 S02109B 10111 +80184 S06365A 10112 +80185 S02109B 10111 +80185 S06366A 10112 +80185 S06367A 10112 +80185 S06368A 10112 +80186 S02109B 10111 +80186 S06369A 10112 +80189 S02109B 10111 +80189 S06360A 10112 +80190 S02109B 10111 +80190 S06890A 10112 +80190 S069X0A 10112 +80191 S02109B 10111 +80191 S06890A 10112 +80191 S069X0A 10112 +80192 S02109B 10111 +80192 S06891A 10112 +80192 S06892A 10112 +80192 S069X1A 10112 +80192 S069X2A 10112 +80193 S02109B 10111 +80193 S06893A 10112 +80193 S06894A 10112 +80193 S069X3A 10112 +80193 S069X4A 10112 +80194 S02109B 10111 +80194 S06895A 10112 +80194 S069X5A 10112 +80195 S02109B 10111 +80195 S06896A 10112 +80195 S06897A 10112 +80195 S06898A 10112 +80195 S069X6A 10112 +80195 S069X7A 10112 +80195 S069X8A 10112 +80196 S02109B 10111 +80196 S06899A 10112 +80196 S069X9A 10112 +80199 S02109B 10111 +80199 S06890A 10112 +80199 S069X0A 10112 +8020 S022XXA 10000 +8021 S022XXB 10000 +80220 S02609A 10000 +80220 S0269XA 10000 +80221 S02610A 10000 +80221 S02611A 10000 +80221 S02612A 10000 +80222 S02620A 10000 +80222 S02621A 10000 +80222 S02622A 10000 +80223 S02630A 10000 +80223 S02631A 10000 +80223 S02632A 10000 +80224 S02640A 10000 +80224 S02641A 10000 +80224 S02642A 10000 +80225 S02650A 10000 +80225 S02651A 10000 +80225 S02652A 10000 +80226 S0266XA 10000 +80227 S02670A 10000 +80227 S02671A 10000 +80227 S02672A 10000 +80228 S02600A 10000 +80228 S02601A 10000 +80228 S02602A 10000 +80229 S02609A 10000 +80229 S0269XA 10000 +80230 S02609B 10000 +80230 S0269XB 10000 +80231 S02610B 10000 +80231 S02611B 10000 +80231 S02612B 10000 +80232 S02620B 10000 +80232 S02621B 10000 +80232 S02622B 10000 +80233 S02630B 10000 +80233 S02631B 10000 +80233 S02632B 10000 +80234 S02640B 10000 +80234 S02641B 10000 +80234 S02642B 10000 +80235 S02650B 10000 +80235 S02651B 10000 +80235 S02652B 10000 +80236 S0266XB 10000 +80237 S02670B 10000 +80237 S02671B 10000 +80237 S02672B 10000 +80238 S02600B 10000 +80238 S02601B 10000 +80238 S02602B 10000 +80239 S02609B 10000 +80239 S0269XB 10000 +8024 S02400A 10000 +8024 S02401A 10000 +8024 S02402A 10000 +8024 S0240AA 10000 +8024 S0240BA 10000 +8024 S0240CA 10000 +8024 S0240DA 10000 +8024 S0240EA 10000 +8024 S0240FA 10000 +8025 S02400B 10000 +8025 S02401B 10000 +8025 S02402B 10000 +8025 S0240AB 10000 +8025 S0240BB 10000 +8025 S0240CB 10000 +8025 S0240DB 10000 +8025 S0240EB 10000 +8025 S0240FB 10000 +8026 S0230XA 10000 +8026 S0231XA 10000 +8026 S0232XA 10000 +8027 S0230XB 10000 +8027 S0231XB 10000 +8027 S0232XB 10000 +8028 S0242XA 10000 +8028 S0292XA 10000 +8029 S0242XB 10000 +8029 S0292XB 10000 +80300 S0291XA 10000 +80301 S0291XA 10000 +80302 S0291XA 10000 +80303 S0291XA 10000 +80304 S0291XA 10000 +80305 S0291XA 10000 +80306 S0291XA 10000 +80309 S0291XA 10000 +80310 S0291XA 10111 +80310 S06330A 10112 +80311 S0291XA 10111 +80311 S06330A 10112 +80312 S0291XA 10111 +80312 S06331A 10112 +80312 S06332A 10112 +80313 S0291XA 10111 +80313 S06333A 10112 +80313 S06334A 10112 +80314 S0291XA 10111 +80314 S06335A 10112 +80315 S0291XA 10111 +80315 S06336A 10112 +80315 S06337A 10112 +80315 S06338A 10112 +80316 S0291XA 10111 +80316 S06339A 10112 +80319 S0291XA 10111 +80319 S06330A 10112 +80320 S0291XA 10111 +80320 S064X0A 10112 +80320 S065X0A 10112 +80320 S066X0A 10112 +80321 S0291XA 10111 +80321 S064X0A 10112 +80321 S065X0A 10112 +80321 S066X0A 10112 +80322 S0291XA 10111 +80322 S064X1A 10112 +80322 S064X2A 10112 +80322 S065X1A 10112 +80322 S065X2A 10112 +80322 S066X1A 10112 +80322 S066X2A 10112 +80323 S0291XA 10111 +80323 S064X3A 10112 +80323 S064X4A 10112 +80323 S065X3A 10112 +80323 S065X4A 10112 +80323 S066X3A 10112 +80323 S066X4A 10112 +80324 S0291XA 10111 +80324 S064X5A 10112 +80324 S065X5A 10112 +80324 S066X5A 10112 +80325 S0291XA 10111 +80325 S064X6A 10112 +80325 S064X7A 10112 +80325 S064X8A 10112 +80325 S065X6A 10112 +80325 S065X7A 10112 +80325 S065X8A 10112 +80325 S066X6A 10112 +80325 S066X7A 10112 +80325 S066X8A 10112 +80326 S0291XA 10111 +80326 S064X9A 10112 +80326 S065X9A 10112 +80326 S066X9A 10112 +80329 S0291XA 10111 +80329 S064X0A 10112 +80329 S065X0A 10112 +80329 S066X0A 10112 +80330 S0291XA 10111 +80330 S06369A 10112 +80331 S0291XA 10111 +80331 S06360A 10112 +80332 S0291XA 10111 +80332 S06361A 10112 +80332 S06362A 10112 +80333 S0291XA 10111 +80333 S06363A 10112 +80333 S06364A 10112 +80334 S0291XA 10111 +80334 S06365A 10112 +80335 S0291XA 10111 +80335 S06366A 10112 +80335 S06367A 10112 +80335 S06368A 10112 +80336 S0291XA 10111 +80336 S06369A 10112 +80339 S0291XA 10111 +80339 S06360A 10112 +80340 S0291XA 10111 +80340 S06890A 10112 +80340 S069X0A 10112 +80341 S0291XA 10111 +80341 S06890A 10112 +80341 S069X0A 10112 +80342 S0291XA 10111 +80342 S06891A 10112 +80342 S06892A 10112 +80342 S069X1A 10112 +80342 S069X2A 10112 +80343 S0291XA 10111 +80343 S06893A 10112 +80343 S06894A 10112 +80343 S069X3A 10112 +80343 S069X4A 10112 +80344 S0291XA 10111 +80344 S06895A 10112 +80344 S069X5A 10112 +80345 S0291XA 10111 +80345 S06896A 10112 +80345 S06897A 10112 +80345 S06898A 10112 +80345 S069X6A 10112 +80345 S069X7A 10112 +80345 S069X8A 10112 +80346 S0291XA 10111 +80346 S06899A 10112 +80346 S069X9A 10112 +80349 S0291XA 10111 +80349 S06890A 10112 +80349 S069X0A 10112 +80350 S0291XB 10000 +80351 S0291XB 10000 +80352 S0291XB 10000 +80353 S0291XB 10000 +80354 S0291XB 10000 +80355 S0291XB 10000 +80356 S0291XB 10000 +80359 S0291XB 10000 +80360 S0291XB 10111 +80360 S06330A 10112 +80361 S0291XB 10111 +80361 S06330A 10112 +80362 S0291XB 10111 +80362 S06331A 10112 +80362 S06332A 10112 +80363 S0291XB 10111 +80363 S06333A 10112 +80363 S06334A 10112 +80364 S0291XB 10111 +80364 S06335A 10112 +80365 S0291XB 10111 +80365 S06336A 10112 +80365 S06337A 10112 +80365 S06338A 10112 +80366 S0291XB 10111 +80366 S06339A 10112 +80369 S0291XB 10111 +80369 S06330A 10112 +80370 S0291XB 10111 +80370 S064X0A 10112 +80370 S065X0A 10112 +80370 S066X0A 10112 +80371 S0291XB 10111 +80371 S064X0A 10112 +80371 S065X0A 10112 +80371 S066X0A 10112 +80372 S0291XB 10111 +80372 S064X1A 10112 +80372 S064X2A 10112 +80372 S065X1A 10112 +80372 S065X2A 10112 +80372 S066X1A 10112 +80372 S066X2A 10112 +80373 S0291XB 10111 +80373 S064X3A 10112 +80373 S064X4A 10112 +80373 S065X3A 10112 +80373 S065X4A 10112 +80373 S066X3A 10112 +80373 S066X4A 10112 +80374 S0291XB 10111 +80374 S064X5A 10112 +80374 S065X5A 10112 +80374 S066X5A 10112 +80375 S0291XB 10111 +80375 S064X6A 10112 +80375 S064X7A 10112 +80375 S064X8A 10112 +80375 S065X6A 10112 +80375 S065X7A 10112 +80375 S065X8A 10112 +80375 S066X6A 10112 +80375 S066X7A 10112 +80375 S066X8A 10112 +80376 S0291XB 10111 +80376 S064X9A 10112 +80376 S065X9A 10112 +80376 S066X9A 10112 +80379 S0291XB 10111 +80379 S064X0A 10112 +80379 S065X0A 10112 +80379 S066X0A 10112 +80380 S0291XB 10111 +80380 S06360A 10112 +80381 S0291XB 10111 +80381 S06360A 10112 +80382 S0291XB 10111 +80382 S06361A 10112 +80382 S06362A 10112 +80383 S0291XB 10111 +80383 S06363A 10112 +80383 S06364A 10112 +80384 S0291XB 10111 +80384 S06365A 10112 +80385 S0291XB 10111 +80385 S06366A 10112 +80385 S06367A 10112 +80385 S06368A 10112 +80386 S0291XB 10111 +80386 S06369A 10112 +80389 S0291XB 10111 +80389 S06360A 10112 +80390 S0291XB 10111 +80390 S06890A 10112 +80390 S069X0A 10112 +80391 S0291XB 10111 +80391 S06890A 10112 +80391 S069X0A 10112 +80392 S0291XB 10111 +80392 S06891A 10112 +80392 S06892A 10112 +80392 S069X1A 10112 +80392 S069X2A 10112 +80393 S0291XB 10111 +80393 S06893A 10112 +80393 S06894A 10112 +80393 S069X3A 10112 +80393 S069X4A 10112 +80394 S0291XB 10111 +80394 S06895A 10112 +80394 S069X5A 10112 +80395 S0291XB 10111 +80395 S06896A 10112 +80395 S06897A 10112 +80395 S06898A 10112 +80395 S069X6A 10112 +80395 S069X7A 10112 +80395 S069X8A 10112 +80396 S0291XB 10111 +80396 S06899A 10112 +80396 S069X9A 10112 +80399 S0291XB 10111 +80399 S06890A 10112 +80399 S069X0A 10112 +80400 S0291XA 10000 +80401 S0291XA 10000 +80402 S0291XA 10000 +80403 S0291XA 10000 +80404 S0291XA 10000 +80405 S0291XA 10000 +80406 S0291XA 10000 +80409 S0291XA 10000 +80410 S0291XA 10111 +80410 S06330A 10112 +80411 S0291XA 10111 +80411 S06330A 10112 +80412 S0291XA 10111 +80412 S06331A 10112 +80412 S06332A 10112 +80413 S0291XA 10111 +80413 S06333A 10112 +80413 S06334A 10112 +80414 S0291XA 10111 +80414 S06335A 10112 +80415 S0291XA 10111 +80415 S06336A 10112 +80415 S06337A 10112 +80415 S06338A 10112 +80416 S0291XA 10111 +80416 S06339A 10112 +80419 S0291XA 10111 +80419 S06330A 10112 +80420 S0291XA 10111 +80420 S064X0A 10112 +80420 S065X0A 10112 +80420 S066X0A 10112 +80421 S0291XA 10111 +80421 S064X0A 10112 +80421 S065X0A 10112 +80421 S066X0A 10112 +80422 S0291XA 10111 +80422 S064X1A 10112 +80422 S064X2A 10112 +80422 S065X1A 10112 +80422 S065X2A 10112 +80422 S066X1A 10112 +80422 S066X2A 10112 +80423 S0291XA 10111 +80423 S064X3A 10112 +80423 S064X4A 10112 +80423 S065X3A 10112 +80423 S065X4A 10112 +80423 S066X3A 10112 +80423 S066X4A 10112 +80424 S0291XA 10111 +80424 S064X5A 10112 +80424 S065X5A 10112 +80424 S066X5A 10112 +80425 S0291XA 10111 +80425 S064X6A 10112 +80425 S064X7A 10112 +80425 S064X8A 10112 +80425 S065X6A 10112 +80425 S065X7A 10112 +80425 S065X8A 10112 +80425 S066X6A 10112 +80425 S066X7A 10112 +80425 S066X8A 10112 +80426 S0291XA 10111 +80426 S064X9A 10112 +80426 S065X9A 10112 +80426 S066X9A 10112 +80429 S0291XA 10111 +80429 S064X0A 10112 +80429 S065X0A 10112 +80429 S066X0A 10112 +80430 S0291XA 10111 +80430 S06360A 10112 +80431 S0291XA 10111 +80431 S06360A 10112 +80432 S0291XA 10111 +80432 S06361A 10112 +80432 S06362A 10112 +80433 S0291XA 10111 +80433 S06363A 10112 +80433 S06364A 10112 +80434 S0291XA 10111 +80434 S06365A 10112 +80435 S0291XA 10111 +80435 S06366A 10112 +80435 S06367A 10112 +80435 S06368A 10112 +80436 S0291XA 10111 +80436 S06369A 10112 +80439 S0291XA 10111 +80439 S06360A 10112 +80440 S0291XA 10111 +80440 S06890A 10112 +80440 S069X0A 10112 +80441 S0291XA 10111 +80441 S06890A 10112 +80441 S069X0A 10112 +80442 S0291XA 10111 +80442 S06891A 10112 +80442 S06892A 10112 +80442 S069X1A 10112 +80442 S069X2A 10112 +80443 S0291XA 10111 +80443 S06893A 10112 +80443 S06894A 10112 +80443 S069X4A 10112 +80444 S0291XA 10111 +80444 S06895A 10112 +80444 S069X5A 10112 +80445 S0291XA 10111 +80445 S06896A 10112 +80445 S06897A 10112 +80445 S06898A 10112 +80445 S069X6A 10112 +80445 S069X7A 10112 +80445 S069X8A 10112 +80446 S0291XA 10111 +80446 S06899A 10112 +80446 S069X9A 10112 +80449 S0291XA 10111 +80449 S06890A 10112 +80449 S069X9A 10112 +80450 S0291XB 10000 +80451 S0291XB 10000 +80452 S0291XB 10000 +80453 S0291XB 10000 +80454 S0291XB 10000 +80455 S0291XB 10000 +80456 S0291XB 10000 +80459 S0291XB 10000 +80460 S0291XB 10111 +80460 S06330A 10112 +80461 S0291XB 10111 +80461 S06330A 10112 +80462 S0291XB 10111 +80462 S06331A 10112 +80462 S06332A 10112 +80463 S0291XB 10111 +80463 S06333A 10112 +80463 S06334A 10112 +80464 S0291XB 10111 +80464 S06335A 10112 +80465 S0291XB 10111 +80465 S06336A 10112 +80465 S06337A 10112 +80465 S06338A 10112 +80466 S0291XB 10111 +80466 S06339A 10112 +80469 S0291XB 10111 +80469 S06330A 10112 +80470 S0291XB 10111 +80470 S064X0A 10112 +80470 S065X0A 10112 +80470 S066X0A 10112 +80471 S0291XB 10111 +80471 S064X0A 10112 +80471 S065X0A 10112 +80471 S066X0A 10112 +80472 S0291XB 10111 +80472 S064X1A 10112 +80472 S064X2A 10112 +80472 S065X1A 10112 +80472 S065X2A 10112 +80472 S066X1A 10112 +80472 S066X2A 10112 +80473 S0291XB 10111 +80473 S064X3A 10112 +80473 S064X4A 10112 +80473 S065X3A 10112 +80473 S065X4A 10112 +80473 S066X3A 10112 +80473 S066X4A 10112 +80474 S0291XB 10111 +80474 S064X5A 10112 +80474 S065X5A 10112 +80474 S066X5A 10112 +80475 S0291XB 10111 +80475 S064X6A 10112 +80475 S064X7A 10112 +80475 S064X8A 10112 +80475 S065X6A 10112 +80475 S065X7A 10112 +80475 S065X8A 10112 +80475 S066X6A 10112 +80475 S066X7A 10112 +80475 S066X8A 10112 +80476 S0291XB 10111 +80476 S064X9A 10112 +80476 S065X9A 10112 +80476 S066X9A 10112 +80479 S0291XB 10111 +80479 S064X0A 10112 +80479 S065X0A 10112 +80479 S066X0A 10112 +80480 S0291XB 10111 +80480 S06360A 10112 +80481 S0291XB 10111 +80481 S06360A 10112 +80482 S0291XB 10111 +80482 S06361A 10112 +80482 S06362A 10112 +80483 S0291XB 10111 +80483 S06363A 10112 +80483 S06364A 10112 +80484 S0291XB 10111 +80484 S06365A 10112 +80485 S0291XB 10111 +80485 S06366A 10112 +80485 S06367A 10112 +80485 S06368A 10112 +80486 S0291XB 10111 +80486 S06369A 10112 +80489 S0291XB 10111 +80489 S06360A 10112 +80490 S0291XB 10111 +80490 S06890A 10112 +80490 S069X0A 10112 +80491 S0291XB 10111 +80491 S06890A 10112 +80491 S069X0A 10112 +80492 S0291XB 10111 +80492 S06891A 10112 +80492 S06892A 10112 +80492 S069X1A 10112 +80492 S069X2A 10112 +80493 S0291XB 10111 +80493 S06893A 10112 +80493 S06894A 10112 +80493 S069X4A 10112 +80494 S0291XB 10111 +80494 S06895A 10112 +80494 S069X5A 10112 +80495 S0291XB 10111 +80495 S06896A 10112 +80495 S06897A 10112 +80495 S06898A 10112 +80495 S069X6A 10112 +80495 S069X7A 10112 +80495 S069X8A 10112 +80496 S0291XB 10111 +80496 S06899A 10112 +80496 S069X9A 10112 +80499 S0291XB 10111 +80499 S06890A 10112 +80499 S069X0A 10112 +80500 S129XXA 10000 +80501 S12000A 10000 +80501 S12001A 10000 +80502 S12100A 10000 +80502 S12101A 10000 +80503 S12200A 10000 +80503 S12201A 10000 +80504 S12300A 10000 +80504 S12301A 10000 +80505 S12400A 10000 +80505 S12401A 10000 +80506 S12500A 10000 +80506 S12501A 10000 +80507 S12600A 10000 +80507 S12601A 10000 +80508 S129XXA 10000 +80510 S129XXA 10000 +80511 S12000B 10000 +80511 S12001B 10000 +80512 S12100B 10000 +80512 S12101B 10000 +80513 S12200B 10000 +80513 S12201B 10000 +80514 S12300B 10000 +80514 S12301B 10000 +80515 S12400B 10000 +80515 S12401B 10000 +80516 S12500B 10000 +80516 S12501B 10000 +80517 S12600B 10000 +80517 S12601B 10000 +80518 S129XXA 10000 +8052 S22009A 10000 +8053 S22009B 10000 +8054 S32009A 10000 +8055 S32009B 10000 +8056 S3210XA 10000 +8056 S322XXA 10000 +8057 S3210XB 10000 +8057 S322XXB 10000 +8058 S129XXA 10000 +8058 S22009A 10000 +8058 S32009A 10000 +8058 S3210XA 10000 +8058 S322XXA 10000 +8059 S129XXA 10000 +8059 S22009B 10000 +8059 S32009B 10000 +8059 S3210XB 10000 +8059 S322XXB 10000 +80600 S12000A 10112 +80600 S12001A 10112 +80600 S12100A 10122 +80600 S12101A 10122 +80600 S12200A 10132 +80600 S12201A 10132 +80600 S12300A 10142 +80600 S12301A 10142 +80600 S14101A 10111 +80600 S14102A 10121 +80600 S14103A 10131 +80600 S14104A 10141 +80601 S12000A 10112 +80601 S12001A 10112 +80601 S12100A 10122 +80601 S12101A 10122 +80601 S12200A 10132 +80601 S12201A 10132 +80601 S12300A 10142 +80601 S12301A 10142 +80601 S14111A 10111 +80601 S14112A 10121 +80601 S14113A 10131 +80601 S14114A 10141 +80602 S12000A 10112 +80602 S12001A 10112 +80602 S12100A 10122 +80602 S12101A 10122 +80602 S12200A 10132 +80602 S12201A 10132 +80602 S12300A 10142 +80602 S12301A 10142 +80602 S14131A 10111 +80602 S14132A 10121 +80602 S14133A 10131 +80602 S14134A 10141 +80603 S12000A 10112 +80603 S12001A 10112 +80603 S12100A 10122 +80603 S12101A 10122 +80603 S12200A 10132 +80603 S12201A 10132 +80603 S12300A 10142 +80603 S12301A 10142 +80603 S14121A 10111 +80603 S14122A 10121 +80603 S14123A 10131 +80603 S14124A 10141 +80604 S12000A 10112 +80604 S12001A 10112 +80604 S12100A 10122 +80604 S12101A 10122 +80604 S12200A 10132 +80604 S12201A 10132 +80604 S12300A 10142 +80604 S12301A 10142 +80604 S14151A 10111 +80604 S14152A 10121 +80604 S14153A 10131 +80604 S14154A 10141 +80605 S12400A 10112 +80605 S12401A 10112 +80605 S12500A 10122 +80605 S12501A 10122 +80605 S12600A 10132 +80605 S12601A 10132 +80605 S14105A 10111 +80605 S14106A 10121 +80605 S14107A 10131 +80606 S12400A 10112 +80606 S12401A 10112 +80606 S12500A 10122 +80606 S12501A 10122 +80606 S12600A 10132 +80606 S12601A 10132 +80606 S14115A 10111 +80606 S14116A 10121 +80606 S14117A 10131 +80607 S12400A 10112 +80607 S12401A 10112 +80607 S12500A 10122 +80607 S12501A 10122 +80607 S12600A 10132 +80607 S12601A 10132 +80607 S14135A 10111 +80607 S14136A 10121 +80607 S14137A 10131 +80608 S12400A 10112 +80608 S12401A 10112 +80608 S12500A 10122 +80608 S12501A 10122 +80608 S12600A 10132 +80608 S12601A 10132 +80608 S14125A 10111 +80608 S14126A 10121 +80608 S14127A 10131 +80609 S12400A 10112 +80609 S12401A 10112 +80609 S12500A 10122 +80609 S12501A 10122 +80609 S12600A 10132 +80609 S12601A 10132 +80609 S14155A 10111 +80609 S14156A 10121 +80609 S14157A 10131 +80610 S12000B 10112 +80610 S12001B 10112 +80610 S12100B 10122 +80610 S12101B 10122 +80610 S12200B 10132 +80610 S12201B 10132 +80610 S12300B 10142 +80610 S12301B 10142 +80610 S14101A 10111 +80610 S14102A 10121 +80610 S14103A 10131 +80610 S14104A 10141 +80611 S12000B 10112 +80611 S12001B 10112 +80611 S12100B 10122 +80611 S12101B 10122 +80611 S12200B 10132 +80611 S12201B 10132 +80611 S12300B 10142 +80611 S12301B 10142 +80611 S14111A 10111 +80611 S14112A 10121 +80611 S14113A 10131 +80611 S14114A 10141 +80612 S12000B 10112 +80612 S12001B 10112 +80612 S12100B 10122 +80612 S12101B 10122 +80612 S12200B 10132 +80612 S12201B 10132 +80612 S12300B 10142 +80612 S12301B 10142 +80612 S14131A 10111 +80612 S14132A 10121 +80612 S14133A 10131 +80612 S14134A 10141 +80613 S12000B 10112 +80613 S12001B 10112 +80613 S12100B 10122 +80613 S12101B 10122 +80613 S12200B 10132 +80613 S12201B 10132 +80613 S12300B 10142 +80613 S12301B 10142 +80613 S14121A 10111 +80613 S14122A 10121 +80613 S14123A 10131 +80613 S14124A 10141 +80614 S12000B 10112 +80614 S12001B 10112 +80614 S12100B 10122 +80614 S12101B 10122 +80614 S12200B 10132 +80614 S12201B 10132 +80614 S12300B 10142 +80614 S12301B 10142 +80614 S14151A 10111 +80614 S14152A 10121 +80614 S14153A 10131 +80614 S14154A 10141 +80615 S12400B 10112 +80615 S12401B 10112 +80615 S12500B 10122 +80615 S12501B 10122 +80615 S12600B 10132 +80615 S12601B 10132 +80615 S14105A 10111 +80615 S14106A 10121 +80615 S14107A 10131 +80616 S12400B 10112 +80616 S12401B 10112 +80616 S12500B 10122 +80616 S12501B 10122 +80616 S12600B 10132 +80616 S12601B 10132 +80616 S14115A 10111 +80616 S14116A 10121 +80616 S14117A 10131 +80617 S12400B 10112 +80617 S12401B 10112 +80617 S12500B 10122 +80617 S12501B 10122 +80617 S12600B 10132 +80617 S12601B 10132 +80617 S14135A 10111 +80617 S14136A 10121 +80617 S14137A 10131 +80618 S12400B 10112 +80618 S12401B 10112 +80618 S12500B 10122 +80618 S12501B 10122 +80618 S12600B 10132 +80618 S12601B 10132 +80618 S14125A 10111 +80618 S14126A 10121 +80618 S14127A 10131 +80619 S12400B 10112 +80619 S12401B 10112 +80619 S12500B 10122 +80619 S12501B 10122 +80619 S12600B 10132 +80619 S12601B 10132 +80619 S14155A 10111 +80619 S14156A 10121 +80619 S14157A 10131 +80620 S22019A 10112 +80620 S22029A 10122 +80620 S22039A 10122 +80620 S22049A 10122 +80620 S22059A 10122 +80620 S24101A 10111 +80620 S24102A 10121 +80621 S22019A 10112 +80621 S22029A 10122 +80621 S22039A 10122 +80621 S22049A 10122 +80621 S22059A 10122 +80621 S24111A 10111 +80621 S24112A 10121 +80622 S22019A 10112 +80622 S22029A 10122 +80622 S22039A 10122 +80622 S22049A 10122 +80622 S22059A 10122 +80622 S24131A 10111 +80622 S24132A 10121 +80623 S22019A 10112 +80623 S22029A 10122 +80623 S22039A 10122 +80623 S22049A 10122 +80623 S22059A 10122 +80623 S24151A 10111 +80623 S24152A 10121 +80624 S22019A 10112 +80624 S22029A 10122 +80624 S22039A 10122 +80624 S22049A 10122 +80624 S22059A 10122 +80624 S24151A 10111 +80624 S24152A 10121 +80625 S22069A 10112 +80625 S22079A 10112 +80625 S22089A 10122 +80625 S24103A 10111 +80625 S24104A 10121 +80626 S22069A 10112 +80626 S22079A 10112 +80626 S22089A 10122 +80626 S24113A 10111 +80626 S24114A 10121 +80627 S22069A 10112 +80627 S22079A 10112 +80627 S22089A 10122 +80627 S24133A 10111 +80627 S24134A 10121 +80628 S22069A 10112 +80628 S22079A 10112 +80628 S22089A 10122 +80628 S24153A 10111 +80628 S24154A 10121 +80629 S22069A 10112 +80629 S22079A 10112 +80629 S22089A 10122 +80629 S24153A 10111 +80629 S24154A 10121 +80630 S22019B 10112 +80630 S22029B 10122 +80630 S22039B 10122 +80630 S22049B 10122 +80630 S22059B 10122 +80630 S24101A 10111 +80630 S24102A 10121 +80631 S22019B 10112 +80631 S22029B 10122 +80631 S22039B 10122 +80631 S22049B 10122 +80631 S22059B 10122 +80631 S24111A 10111 +80631 S24112A 10121 +80632 S22019B 10112 +80632 S22029B 10122 +80632 S22039B 10122 +80632 S22049B 10122 +80632 S22059B 10122 +80632 S24131A 10111 +80632 S24132A 10121 +80633 S22019B 10112 +80633 S22029B 10122 +80633 S22039B 10122 +80633 S22049B 10122 +80633 S22059B 10122 +80633 S24151A 10111 +80633 S24152A 10121 +80634 S22019B 10112 +80634 S22029B 10122 +80634 S22039B 10122 +80634 S22049B 10122 +80634 S22059B 10122 +80634 S24151A 10111 +80634 S24152A 10121 +80635 S22069B 10112 +80635 S22079B 10112 +80635 S22089B 10122 +80635 S24103A 10111 +80635 S24104A 10121 +80636 S22069B 10112 +80636 S22079B 10112 +80636 S22089B 10122 +80636 S24113A 10111 +80636 S24114A 10121 +80637 S22069B 10112 +80637 S22079B 10112 +80637 S22089B 10122 +80637 S24133A 10111 +80637 S24134A 10121 +80638 S22069B 10112 +80638 S22079B 10112 +80638 S22089B 10122 +80638 S24153A 10111 +80638 S24154A 10121 +80639 S22069B 10112 +80639 S22079B 10112 +80639 S22089B 10122 +80639 S24153A 10111 +80639 S24154A 10121 +8064 S32009A 10112 +8064 S32019A 10122 +8064 S32029A 10132 +8064 S32039A 10142 +8064 S32049A 10152 +8064 S32059A 10162 +8064 S34101A 10121 +8064 S34102A 10131 +8064 S34103A 10141 +8064 S34104A 10151 +8064 S34105A 10161 +8064 S34109A 10111 +8064 S34111A 10121 +8064 S34112A 10131 +8064 S34113A 10141 +8064 S34114A 10151 +8064 S34115A 10161 +8064 S34119A 10111 +8064 S34121A 10121 +8064 S34122A 10131 +8064 S34123A 10141 +8064 S34124A 10151 +8064 S34125A 10161 +8064 S34129A 10111 +8065 S32009B 10112 +8065 S32019B 10122 +8065 S32029B 10132 +8065 S32039B 10142 +8065 S32049B 10152 +8065 S32059B 10162 +8065 S34101A 10121 +8065 S34102A 10131 +8065 S34103A 10141 +8065 S34104A 10151 +8065 S34105A 10161 +8065 S34109A 10111 +8065 S34111A 10121 +8065 S34112A 10131 +8065 S34113A 10141 +8065 S34114A 10151 +8065 S34115A 10161 +8065 S34119A 10111 +8065 S34121A 10121 +8065 S34122A 10131 +8065 S34123A 10141 +8065 S34124A 10151 +8065 S34125A 10161 +8065 S34129A 10111 +80660 S3210XA 10112 +80660 S322XXA 10112 +80660 S34139A 10111 +80661 S3210XA 10112 +80661 S322XXA 10112 +80661 S343XXA 10111 +80662 S3210XA 10112 +80662 S322XXA 10112 +80662 S343XXA 10111 +80669 S3210XA 10112 +80669 S322XXA 10112 +80669 S34131A 10111 +80669 S34132A 10111 +80670 S3210XB 10112 +80670 S322XXB 10112 +80670 S34139A 10111 +80671 S3210XB 10112 +80671 S322XXB 10112 +80671 S343XXA 10111 +80672 S3210XB 10112 +80672 S322XXB 10112 +80672 S343XXA 10111 +80679 S3210XB 10112 +80679 S322XXB 10112 +80679 S34131A 10111 +80679 S34132A 10111 +8068 S129XXA 10112 +8068 S14109A 10111 +8068 S22009A 10122 +8068 S24109A 10121 +8068 S32009A 10132 +8068 S3210XA 10142 +8068 S34109A 10131 +8068 S34139A 10141 +8069 S129XXA 10112 +8069 S14109A 10111 +8069 S22009B 10122 +8069 S24109A 10121 +8069 S32009B 10132 +8069 S3210XB 10142 +8069 S34109A 10131 +8069 S34139A 10141 +80700 S2239XA 10000 +80701 S2239XA 10000 +80702 S2249XA 10000 +80703 S2249XA 10000 +80704 S2249XA 10000 +80705 S2249XA 10000 +80706 S2249XA 10000 +80707 S2249XA 10000 +80708 S2249XA 10000 +80709 S2249XA 10000 +80710 S2239XB 10000 +80711 S2239XB 10000 +80712 S2249XB 10000 +80713 S2249XB 10000 +80714 S2249XB 10000 +80715 S2249XB 10000 +80716 S2249XB 10000 +80717 S2249XB 10000 +80718 S2249XB 10000 +80719 S2249XB 10000 +8072 S2220XA 10000 +8073 S2220XB 10000 +8074 S225XXA 10000 +8074 S225XXB 10000 +8075 S128XXA 10000 +8076 S128XXA 10000 +8080 S32409A 10000 +8081 S32409B 10000 +8082 S32501A 10000 +8082 S32502A 10000 +8082 S32509A 10000 +8083 S32501B 10000 +8083 S32502B 10000 +8083 S32509B 10000 +80841 S32309A 10000 +80842 S32609A 10000 +80843 S32810A 10000 +80843 S32811A 10000 +80844 S3282XA 10000 +80849 S3289XA 10000 +80851 S32309B 10000 +80852 S32609B 10000 +80853 S32810B 10000 +80853 S32811B 10000 +80854 S3282XB 10000 +80859 S3289XB 10000 +8088 S329XXA 10000 +8089 S329XXB 10000 +8090 S229XXA 10000 +8091 S229XXB 10000 +81000 S42009A 10000 +81001 S42013A 10000 +81001 S42016A 10000 +81001 S42019A 10000 +81002 S42023A 10000 +81002 S42026A 10000 +81003 S42033A 10000 +81003 S42036A 10000 +81010 S42009B 10000 +81011 S42013B 10000 +81011 S42016B 10000 +81011 S42019B 10000 +81012 S42023B 10000 +81012 S42026B 10000 +81013 S42033B 10000 +81013 S42036B 10000 +81100 S42109A 10000 +81101 S42123A 10000 +81101 S42126A 10000 +81102 S42133A 10000 +81102 S42136A 10000 +81103 S42143A 10000 +81103 S42146A 10000 +81103 S42153A 10000 +81103 S42156A 10000 +81109 S42113A 10000 +81109 S42116A 10000 +81109 S42199A 10000 +81110 S42109B 10000 +81111 S42123B 10000 +81111 S42126B 10000 +81112 S42133B 10000 +81112 S42136B 10000 +81113 S42143B 10000 +81113 S42146B 10000 +81113 S42153B 10000 +81113 S42156B 10000 +81119 S42113B 10000 +81119 S42116B 10000 +81119 S42199B 10000 +81200 S42209A 10000 +81201 S42213A 10000 +81201 S42216A 10000 +81202 S42293A 10000 +81202 S42295A 10000 +81203 S42253A 10000 +81203 S42256A 10000 +81209 S42293A 10000 +81209 S42296A 10000 +81210 S42209B 10000 +81211 S42213B 10000 +81211 S42216B 10000 +81212 S42293B 10000 +81212 S42296B 10000 +81213 S42253B 10000 +81213 S42256B 10000 +81219 S42293B 10000 +81219 S42296B 10000 +81220 S42309A 10000 +81221 S42399A 10000 +81230 S42309B 10000 +81231 S42399B 10000 +81240 S42409A 10000 +81241 S42413A 10000 +81241 S42416A 10000 +81242 S42433A 10000 +81242 S42436A 10000 +81242 S42453A 10000 +81242 S42456A 10000 +81243 S42443A 10000 +81243 S42446A 10000 +81243 S42463A 10000 +81243 S42466A 10000 +81244 S42473A 10000 +81244 S42476A 10000 +81249 S42493A 10000 +81249 S42496A 10000 +81250 S42409B 10000 +81251 S42413B 10000 +81251 S42416B 10000 +81252 S42453B 10000 +81252 S42456B 10000 +81253 S42463B 10000 +81253 S42466B 10000 +81254 S42473B 10000 +81254 S42476B 10000 +81259 S42493B 10000 +81259 S42496B 10000 +81300 S5290XA 10000 +81301 S52023A 10000 +81301 S52026A 10000 +81302 S52043A 10000 +81302 S52046A 10000 +81303 S52279A 10000 +81304 S52009A 10000 +81304 S52099A 10000 +81305 S52123A 10000 +81305 S52126A 10000 +81306 S52133A 10000 +81306 S52136A 10000 +81307 S52109A 10000 +81307 S52189A 10000 +81307 S59109A 10000 +81308 S52009A 10112 +81308 S52109A 10111 +81310 S5290XB 10000 +81310 S5290XC 10000 +81311 S52023B 10000 +81311 S52023C 10000 +81311 S52026B 10000 +81311 S52026C 10000 +81312 S52043B 10000 +81312 S52043C 10000 +81312 S52046B 10000 +81312 S52046C 10000 +81313 S52279B 10000 +81313 S52279C 10000 +81314 S52009B 10000 +81314 S52009C 10000 +81314 S52099B 10000 +81314 S52099C 10000 +81315 S52123B 10000 +81315 S52123C 10000 +81315 S52126B 10000 +81315 S52126C 10000 +81316 S52133B 10000 +81316 S52133C 10000 +81316 S52136B 10000 +81316 S52136C 10000 +81317 S52109B 10000 +81317 S52109C 10000 +81317 S52189B 10000 +81317 S52189C 10000 +81318 S52009B 10112 +81318 S52009C 10112 +81318 S52109B 10111 +81318 S52109C 10111 +81320 S5290XA 10000 +81321 S52309A 10000 +81322 S52209A 10000 +81323 S52209A 10111 +81323 S52309A 10112 +81330 S5290XB 10000 +81330 S5290XC 10000 +81331 S52309B 10000 +81331 S52309C 10000 +81332 S52209B 10000 +81332 S52209C 10000 +81333 S52209B 10111 +81333 S52209C 10111 +81333 S52309B 10112 +81333 S52309C 10112 +81340 S5290XA 10000 +81341 S52539A 10000 +81341 S52549A 10000 +81342 S52509A 10000 +81343 S52609A 10000 +81344 S52509A 10112 +81344 S52609A 10111 +81345 S52119A 10000 +81345 S52529A 10000 +81346 S52019A 10000 +81346 S52629A 10000 +81347 S52011A 10121 +81347 S52012A 10141 +81347 S52111A 10122 +81347 S52112A 10142 +81347 S52521A 10112 +81347 S52522A 10132 +81347 S52621A 10111 +81347 S52622A 10131 +81350 S5290XB 10000 +81350 S5290XC 10000 +81351 S52539B 10000 +81351 S52539C 10000 +81352 S52509B 10000 +81352 S52509C 10000 +81353 S52609B 10000 +81353 S52609C 10000 +81354 S52509B 10112 +81354 S52509C 10112 +81354 S52609B 10111 +81354 S52609C 10111 +81380 S5290XA 10000 +81381 S5290XA 10000 +81382 S5290XA 10000 +81383 S5290XA 10000 +81390 S5290XB 10000 +81390 S5290XC 10000 +81391 S5290XB 10000 +81391 S5290XC 10000 +81392 S5290XB 10000 +81392 S5290XC 10000 +81393 S5290XB 10000 +81393 S5290XC 10000 +81400 S62109A 10000 +81401 S62009A 10000 +81402 S62123A 10000 +81402 S62126A 10000 +81403 S62113A 10000 +81403 S62116A 10000 +81404 S62163A 10000 +81404 S62166A 10000 +81405 S62173A 10000 +81405 S62176A 10000 +81406 S62183A 10000 +81406 S62186A 10000 +81407 S62133A 10000 +81407 S62136A 10000 +81408 S62143A 10000 +81408 S62146A 10000 +81409 S62153A 10000 +81409 S62156A 10000 +81410 S62109B 10000 +81411 S62009B 10000 +81412 S62123B 10000 +81412 S62126B 10000 +81413 S62113B 10000 +81413 S62116B 10000 +81414 S62163B 10000 +81414 S62166B 10000 +81415 S62173B 10000 +81415 S62176B 10000 +81416 S62183B 10000 +81416 S62186B 10000 +81417 S62133B 10000 +81417 S62136B 10000 +81418 S62143B 10000 +81418 S62146B 10000 +81419 S62153B 10000 +81419 S62156B 10000 +81500 S62309A 10000 +81501 S62233A 10000 +81501 S62236A 10000 +81502 S62319A 10000 +81502 S62349A 10000 +81503 S62329A 10000 +81503 S62359A 10000 +81504 S62339A 10000 +81504 S62369A 10000 +81509 S62399A 10000 +81510 S62309B 10000 +81511 S62233B 10000 +81511 S62236B 10000 +81512 S62319B 10000 +81512 S62349B 10000 +81513 S62329B 10000 +81513 S62359B 10000 +81514 S62339B 10000 +81514 S62369B 10000 +81519 S62399B 10000 +81600 S62509A 10000 +81600 S62609A 10000 +81601 S62513A 10000 +81601 S62516A 10000 +81601 S62629A 10000 +81601 S62649A 10000 +81601 S62659A 10000 +81602 S62523A 10000 +81602 S62526A 10000 +81602 S62639A 10000 +81602 S62669A 10000 +81603 S6290XA 10000 +81610 S62509B 10000 +81610 S62609B 10000 +81611 S62513B 10000 +81611 S62516B 10000 +81611 S62619B 10000 +81611 S62629B 10000 +81611 S62649B 10000 +81611 S62659B 10000 +81612 S62523B 10000 +81612 S62526B 10000 +81612 S62639B 10000 +81612 S62669B 10000 +81613 S6290XB 10000 +8170 S6290XA 10000 +8171 S6290XB 10000 +8180 S6290XA 10000 +8181 S6290XB 10000 +8190 S2220XA 10122 +8190 S2249XA 10123 +8190 S4290XA 10121 +8190 S4291XA 10111 +8190 S4292XA 10112 +8190 S5290XA 10121 +8190 S5291XA 10111 +8190 S5292XA 10112 +8191 S2220XB 10122 +8191 S2249XB 10123 +8191 S4290XB 10121 +8191 S4291XB 10111 +8191 S4292XB 10112 +8191 S5290XB 10121 +8191 S5291XB 10111 +8191 S5292XB 10112 +82000 S72019A 10000 +82001 S72023A 10000 +82001 S72026A 10000 +82002 S72033A 10000 +82002 S72036A 10000 +82003 S72043A 10000 +82003 S72046A 10000 +82009 S72099A 10000 +82010 S72019B 10000 +82010 S72019C 10000 +82011 S72023B 10000 +82011 S72023C 10000 +82011 S72026B 10000 +82011 S72026C 10000 +82012 S72033B 10000 +82012 S72033C 10000 +82012 S72036B 10000 +82012 S72036C 10000 +82013 S72043B 10000 +82013 S72043C 10000 +82013 S72046B 10000 +82013 S72046C 10000 +82019 S72099B 10000 +82019 S72099C 10000 +82020 S72109A 10000 +82021 S72143A 10000 +82021 S72146A 10000 +82022 S7223XA 10000 +82022 S7226XA 10000 +82030 S72109B 10000 +82030 S72109C 10000 +82031 S72143B 10000 +82031 S72143C 10000 +82031 S72146B 10000 +82031 S72146C 10000 +82032 S7223XB 10000 +82032 S7223XC 10000 +82032 S7226XB 10000 +82032 S7226XC 10000 +8208 S72009A 10000 +8209 S72009B 10000 +8209 S72009C 10000 +82100 S7290XA 10000 +82101 S72309A 10000 +82110 S7290XB 10000 +82110 S7290XC 10000 +82111 S72309B 10000 +82111 S72309C 10000 +82120 S72409A 10000 +82121 S72413A 10000 +82121 S72416A 10000 +82122 S72443A 10000 +82122 S72446A 10000 +82123 S72453A 10000 +82123 S72456A 10000 +82129 S72499A 10000 +82130 S72409B 10000 +82130 S72409C 10000 +82131 S72413B 10000 +82131 S72413C 10000 +82131 S72416B 10000 +82131 S72416C 10000 +82132 S72443B 10000 +82132 S72443C 10000 +82132 S72446B 10000 +82132 S72446C 10000 +82133 S72453B 10000 +82133 S72453C 10000 +82133 S72456B 10000 +82133 S72456C 10000 +82139 S72499B 10000 +82139 S72499C 10000 +8220 S82009A 10000 +8221 S82009B 10000 +8221 S82009C 10000 +82300 S82109A 10000 +82301 S82839A 10000 +82302 S82101A 10111 +82302 S82102A 10121 +82302 S82831A 10112 +82302 S82832A 10122 +82310 S82109B 10000 +82310 S82109C 10000 +82311 S82839B 10000 +82311 S82839C 10000 +82312 S82101B 10111 +82312 S82102B 10121 +82312 S82831B 10112 +82312 S82832B 10122 +82320 S82209A 10000 +82321 S82409A 10000 +82322 S82201A 10111 +82322 S82202A 10121 +82322 S82401A 10112 +82322 S82402A 10122 +82330 S82209B 10000 +82330 S82209C 10000 +82331 S82409B 10000 +82331 S82409C 10000 +82332 S82201B 10111 +82332 S82202B 10121 +82332 S82401B 10112 +82332 S82402B 10122 +82340 S82169A 10000 +82340 S82319A 10000 +82341 S82819A 10000 +82341 S82829A 10000 +82342 S82161A 10111 +82342 S82162A 10131 +82342 S82311A 10121 +82342 S82312A 10141 +82342 S82811A 10112 +82342 S82812A 10132 +82342 S82821A 10122 +82342 S82822A 10142 +82380 S82201A 10000 +82381 S82401A 10000 +82382 S82201A 10111 +82382 S82202A 10121 +82382 S82401A 10112 +82382 S82402A 10122 +82390 S82201B 10000 +82390 S82201C 10000 +82391 S82401B 10000 +82391 S82401C 10000 +82392 S82201B 10111 +82392 S82202B 10121 +82392 S82401B 10112 +82392 S82402B 10122 +8240 S8253XA 10000 +8240 S8256XA 10000 +8241 S8253XB 10000 +8241 S8253XC 10000 +8241 S8256XB 10000 +8241 S8256XC 10000 +8242 S8263XA 10000 +8242 S8266XA 10000 +8243 S8263XB 10000 +8243 S8263XC 10000 +8243 S8266XB 10000 +8243 S8266XC 10000 +8244 S82843A 10000 +8244 S82846A 10000 +8245 S82843B 10000 +8245 S82843C 10000 +8245 S82846B 10000 +8245 S82846C 10000 +8246 S82853A 10000 +8246 S82856A 10000 +8247 S82853B 10000 +8247 S82853C 10000 +8247 S82856B 10000 +8247 S82856C 10000 +8248 S82899A 10000 +8249 S82899B 10000 +8249 S82899C 10000 +8250 S92009A 10000 +8250 S99009A 10000 +8250 S99019A 10000 +8250 S99029A 10000 +8250 S99039A 10000 +8250 S99049A 10000 +8250 S99099A 10000 +8251 S92009B 10000 +8251 S99009B 10000 +8251 S99019B 10000 +8251 S99029B 10000 +8251 S99039B 10000 +8251 S99049B 10000 +8251 S99099B 10000 +82520 S92819A 10000 +82520 S92909A 10000 +82521 S92109A 10000 +82522 S92253A 10000 +82522 S92256A 10000 +82523 S92213A 10000 +82523 S92216A 10000 +82524 S92223A 10000 +82524 S92226A 10000 +82524 S92233A 10000 +82524 S92236A 10000 +82524 S92243A 10000 +82524 S92246A 10000 +82525 S92309A 10000 +82525 S99109A 10000 +82525 S99119A 10000 +82525 S99129A 10000 +82525 S99139A 10000 +82525 S99149A 10000 +82525 S99199A 10000 +82529 S92201A 10000 +82529 S92201A 10111 +82529 S92202A 10000 +82529 S92202A 10121 +82529 S92209A 10000 +82529 S92301A 10112 +82529 S92302A 10122 +82530 S92819B 10000 +82530 S92909B 10000 +82531 S92109B 10000 +82532 S92253B 10000 +82532 S92256B 10000 +82533 S92213B 10000 +82533 S92216B 10000 +82534 S92223B 10000 +82534 S92226B 10000 +82534 S92233B 10000 +82534 S92236B 10000 +82534 S92243B 10000 +82534 S92246B 10000 +82535 S92309B 10000 +82535 S99109B 10000 +82535 S99119B 10000 +82535 S99129B 10000 +82535 S99139B 10000 +82535 S99149B 10000 +82535 S99199B 10000 +82539 S92201B 10000 +82539 S92201B 10111 +82539 S92202B 10000 +82539 S92202B 10121 +82539 S92209B 10000 +82539 S92301B 10112 +82539 S92302B 10122 +8260 S92403A 10000 +8260 S92406A 10000 +8260 S92503A 10000 +8260 S92506A 10000 +8261 S92403B 10000 +8261 S92406B 10000 +8261 S92503B 10000 +8261 S92506B 10000 +8270 S8290XA 10000 +8271 S8290XB 10000 +8280 S2220XA 10133 +8280 S2249XA 10132 +8280 S4290XA 10122 +8280 S5290XA 10122 +8280 S7290XA 10121 +8280 S7290XA 10131 +8280 S7291XA 10111 +8280 S7292XA 10112 +8280 S8290XA 10121 +8280 S8290XA 10131 +8280 S8291XA 10111 +8280 S8292XA 10112 +8281 S2220XB 10133 +8281 S2249XB 10132 +8281 S4290XB 10122 +8281 S5290XB 10122 +8281 S7290XE 10121 +8281 S7290XE 10131 +8281 S7291XE 10111 +8281 S7292XE 10112 +8281 S8290XB 10121 +8281 S8290XB 10131 +8281 S8291XB 10111 +8281 S8292XB 10112 +8290 T148 10000 +8291 T148 10000 +8300 S0300XA 10000 +8300 S0301XA 10000 +8300 S0302XA 10000 +8300 S0303XA 10000 +8301 S01409A 10112 +8301 S0300XA 10111 +83100 S43006A 10000 +83101 S43016A 10000 +83102 S43026A 10000 +83103 S43036A 10000 +83104 S43109A 10000 +83109 S43086A 10000 +83110 S41009A 10112 +83110 S43006A 10111 +83111 S41109A 10112 +83111 S43016A 10111 +83112 S41109A 10112 +83112 S43026A 10111 +83113 S41109A 10112 +83113 S43036A 10111 +83114 S41009A 10112 +83114 S43109A 10111 +83119 S41009A 10112 +83119 S43086A 10111 +83200 S53006A 10000 +83200 S53106A 10000 +83201 S53016A 10000 +83201 S53116A 10000 +83202 S53026A 10000 +83203 S53136A 10000 +83204 S53146A 10000 +83209 S53096A 10000 +83209 S53196A 10000 +83210 S51009A 10112 +83210 S53006A 10111 +83210 S53106A 10111 +83211 S51009A 10112 +83211 S53016A 10111 +83211 S53116A 10111 +83212 S51009A 10112 +83212 S53026A 10111 +83213 S51009A 10112 +83213 S53136A 10111 +83214 S51009A 10112 +83214 S53146A 10111 +83219 S51009A 10112 +83219 S53096A 10111 +83219 S53196A 10111 +8322 S53033A 10000 +83300 S63006A 10000 +83301 S63016A 10000 +83302 S63026A 10000 +83303 S63036A 10000 +83304 S63056A 10000 +83305 S63066A 10000 +83309 S63076A 10000 +83309 S63096A 10000 +83310 S61509A 10112 +83310 S63006A 10111 +83311 S61509A 10112 +83311 S63016A 10111 +83312 S61509A 10112 +83312 S63026A 10111 +83313 S61509A 10112 +83313 S63036A 10111 +83314 S61509A 10112 +83314 S63046A 10111 +83314 S63056A 10111 +83315 S61509A 10112 +83315 S63066A 10111 +83319 S61509A 10112 +83319 S63076A 10111 +83319 S63096A 10111 +83400 S63106A 10000 +83400 S63259A 10000 +83401 S63116A 10000 +83401 S63269A 10000 +83402 S63126A 10000 +83402 S63279A 10000 +83402 S63289A 10000 +83402 S63299A 10000 +83410 S61009A 10112 +83410 S61209A 10122 +83410 S63106A 10111 +83410 S63259A 10121 +83411 S61409A 10112 +83411 S63116A 10111 +83411 S63269A 10111 +83412 S61009A 10112 +83412 S61209A 10122 +83412 S63126A 10111 +83412 S63279A 10121 +83500 S73006A 10000 +83501 S73016A 10000 +83502 S73026A 10000 +83503 S73036A 10000 +83510 S71009A 10112 +83510 S73006A 10111 +83511 S71009A 10112 +83511 S73016A 10111 +83512 S71009A 10112 +83512 S73026A 10111 +83513 S71009A 10112 +83513 S73036A 10111 +8360 S83219A 10000 +8360 S83249A 10000 +8361 S83289A 10000 +8362 S83209A 10000 +8362 S8330XA 10000 +8363 S83006A 10000 +8364 S81009A 10112 +8364 S83006A 10111 +83650 S83106A 10000 +83651 S83116A 10000 +83652 S83126A 10000 +83653 S83136A 10000 +83654 S83146A 10000 +83659 S83196A 10000 +83660 S81009A 10112 +83660 S83106A 10111 +83661 S81009A 10112 +83661 S83116A 10111 +83662 S81009A 10112 +83662 S83126A 10111 +83663 S81009A 10112 +83663 S83136A 10111 +83664 S81009A 10112 +83664 S83146A 10111 +83669 S81009A 10112 +83669 S83196A 10111 +8370 S9306XA 10000 +8371 S91009A 10112 +8371 S9306XA 10111 +83800 S93306A 10000 +83801 S93316A 10000 +83802 S93316A 10000 +83803 S93326A 10000 +83804 S93336A 10000 +83805 S93129A 10000 +83806 S93119A 10000 +83809 S93106A 10000 +83809 S93336A 10000 +83810 S91309A 10112 +83810 S93306A 10111 +83811 S91309A 10112 +83811 S93316A 10111 +83812 S91309A 10112 +83812 S93316A 10111 +83813 S91309A 10112 +83813 S93326A 10111 +83814 S91309A 10112 +83814 S93336A 10111 +83815 S91309A 10112 +83815 S93129A 10111 +83816 S91109A 10112 +83816 S93119A 10111 +83819 S91109A 10112 +83819 S93336A 10111 +83900 S13101A 10000 +83901 S13111A 10000 +83902 S13121A 10000 +83903 S13131A 10000 +83904 S13141A 10000 +83905 S13151A 10000 +83906 S13161A 10000 +83907 S13171A 10000 +83907 S13181A 10000 +83908 S13101A 10000 +83910 S1190XA 10112 +83910 S13101A 10111 +83911 S1190XA 10112 +83911 S13111A 10111 +83912 S1190XA 10112 +83912 S13121A 10111 +83913 S1190XA 10112 +83913 S13131A 10111 +83914 S1190XA 10112 +83914 S13141A 10111 +83915 S1190XA 10112 +83915 S13151A 10111 +83916 S1190XA 10112 +83916 S13161A 10111 +83917 S1190XA 10112 +83917 S13171A 10111 +83917 S13181A 10111 +83918 S1190XA 10112 +83918 S13101A 10111 +83920 S33101A 10000 +83921 S23101A 10000 +83930 S31000A 10112 +83930 S33101A 10111 +83931 S21209A 10112 +83931 S23101A 10111 +83940 S2320XA 10000 +83941 S332XXA 10000 +83942 S332XXA 10000 +83949 S3339XA 10000 +83950 S2320XA 10111 +83950 S31000A 10112 +83951 S31000A 10112 +83951 S332XXA 10111 +83952 S31000A 10112 +83952 S332XXA 10111 +83959 S31000A 10112 +83959 S3339XA 10111 +83961 S43206A 10000 +83969 S031XXA 10000 +83969 S3339XA 10000 +83971 S21109A 10112 +83971 S43206A 10111 +83979 S31000A 10112 +83979 S3339XA 10111 +8398 T1490 10000 +8399 T1490 10000 +8400 S4350XA 10000 +8401 S4380XA 10000 +8402 S43419A 10000 +8403 S4380XA 10000 +8404 S43429A 10000 +8405 S4380XA 10000 +8406 S4380XA 10000 +8407 S43439A 10000 +8408 S43499A 10000 +8408 S46019A 10000 +8408 S46119A 10000 +8408 S46819A 10000 +8409 S43409A 10000 +8409 S46919A 10000 +8410 S53439A 10000 +8411 S53449A 10000 +8412 S53419A 10000 +8413 S53429A 10000 +8418 S53499A 10000 +8419 S53409A 10000 +8419 S56919A 10000 +84200 S63509A 10000 +84200 S66919A 10000 +84201 S63519A 10000 +84202 S63329A 10000 +84202 S63529A 10000 +84209 S63599A 10000 +84210 S6390XA 10000 +84210 S66919A 10000 +84211 S638X9A 10000 +84212 S63649A 10000 +84212 S63659A 10000 +84213 S63629A 10000 +84213 S63639A 10000 +84219 S638X9A 10000 +8430 S73119A 10000 +8431 S73129A 10000 +8438 S73199A 10000 +8439 S73109A 10000 +8439 S76919A 10000 +8440 S83429A 10000 +8441 S83419A 10000 +8442 S83509A 10000 +8443 S8360XA 10000 +8448 S838X9A 10000 +8448 S86819A 10000 +8449 S8390XA 10000 +8449 S86919A 10000 +84500 S93409A 10000 +84500 S96919A 10000 +84501 S93429A 10000 +84502 S93419A 10000 +84503 S93439A 10000 +84509 S86019A 10000 +84509 S93499A 10000 +84510 S93609A 10000 +84510 S96919A 10000 +84511 S93629A 10000 +84512 S93529A 10000 +84513 S93519A 10000 +84519 S93699A 10000 +8460 S338XXA 10000 +8461 S336XXA 10000 +8462 S338XXA 10000 +8463 S338XXA 10000 +8468 S338XXA 10000 +8469 S339XXA 10000 +8470 S134XXA 10000 +8470 S138XXA 10000 +8471 S233XXA 10000 +8471 S238XXA 10000 +8472 S335XXA 10000 +8473 S338XXA 10000 +8474 S338XXA 10000 +8479 S239XXA 10000 +8480 S038XXA 10000 +8481 S0340XA 10000 +8481 S0341XA 10000 +8481 S0342XA 10000 +8481 S0343XA 10000 +8482 S135XXA 10000 +8483 S2341XA 10000 +84840 S23429A 10000 +84841 S23420A 10000 +84842 S23421A 10000 +84849 S23428A 10000 +8485 S338XXA 10000 +8488 S039XXA 10000 +8488 S29019A 10000 +8488 S39011A 10000 +8489 T1490 10000 +8500 S060X0A 10000 +85011 S060X1A 10000 +85012 NoDx 11000 +8502 NoDx 11000 +8503 NoDx 11000 +8504 NoDx 11000 +8505 S060X9A 10000 +8509 S060X0A 10000 +85100 S06330A 10000 +85101 S06330A 10000 +85102 S06331A 10000 +85103 S06333A 10000 +85104 S06335A 10000 +85105 S06336A 10000 +85106 S06339A 10000 +85109 S06330A 10000 +85110 S0190XA 10112 +85110 S06330A 10111 +85111 S0190XA 10112 +85111 S06330A 10111 +85112 S0190XA 10112 +85112 S06331A 10111 +85112 S06332A 10111 +85113 S0190XA 10112 +85113 S06333A 10111 +85113 S06334A 10111 +85114 S0190XA 10112 +85114 S06335A 10111 +85115 S0190XA 10112 +85115 S06336A 10111 +85115 S06337A 10111 +85115 S06338A 10111 +85116 S0190XA 10112 +85116 S06339A 10111 +85119 S0190XA 10112 +85119 S06330A 10111 +85119 S06339A 10111 +85120 S06330A 10000 +85121 S06330A 10000 +85122 S06331A 10000 +85123 S06333A 10000 +85124 S06335A 10000 +85125 S06336A 10000 +85126 S06339A 10000 +85129 S06330A 10000 +85129 S06339A 10000 +85130 S0190XA 10112 +85130 S06330A 10111 +85131 S0190XA 10112 +85131 S06330A 10111 +85132 S0190XA 10112 +85132 S06331A 10111 +85132 S06332A 10111 +85133 S0190XA 10112 +85133 S06333A 10111 +85133 S06334A 10111 +85134 S0190XA 10112 +85134 S06335A 10111 +85135 S0190XA 10112 +85135 S06336A 10111 +85135 S06337A 10111 +85135 S06338A 10111 +85136 S0190XA 10112 +85136 S06339A 10111 +85139 S0190XA 10112 +85139 S06330A 10111 +85140 S06370A 10000 +85140 S06380A 10000 +85141 S06370A 10000 +85141 S06380A 10000 +85142 S06371A 10000 +85142 S06372A 10000 +85142 S06381A 10000 +85142 S06382A 10000 +85143 S06373A 10000 +85143 S06374A 10000 +85143 S06383A 10000 +85143 S06384A 10000 +85144 S06375A 10000 +85144 S06385A 10000 +85145 S06376A 10000 +85145 S06377A 10000 +85145 S06378A 10000 +85145 S06386A 10000 +85145 S06387A 10000 +85145 S06388A 10000 +85146 S06379A 10000 +85146 S06389A 10000 +85149 S06370A 10000 +85149 S06380A 10000 +85150 S0190XA 10112 +85150 S06370A 10111 +85150 S06380A 10111 +85151 S0190XA 10112 +85151 S06370A 10111 +85151 S06380A 10111 +85152 S0190XA 10112 +85152 S06371A 10111 +85152 S06372A 10111 +85152 S06381A 10111 +85152 S06382A 10111 +85153 S0190XA 10112 +85153 S06373A 10111 +85153 S06374A 10111 +85153 S06383A 10111 +85153 S06384A 10111 +85154 S0190XA 10112 +85154 S06375A 10111 +85154 S06385A 10111 +85155 S0190XA 10112 +85155 S06376A 10111 +85155 S06377A 10111 +85155 S06378A 10111 +85155 S06386A 10111 +85155 S06387A 10111 +85155 S06388A 10111 +85156 S0190XA 10112 +85156 S06379A 10111 +85156 S06389A 10111 +85159 S0190XA 10112 +85159 S06370A 10111 +85159 S06380A 10111 +85160 S06370A 10000 +85160 S06380A 10000 +85161 S06370A 10000 +85161 S06380A 10000 +85162 S06371A 10000 +85162 S06372A 10000 +85162 S06381A 10000 +85162 S06382A 10000 +85163 S06373A 10000 +85163 S06374A 10000 +85163 S06383A 10000 +85163 S06384A 10000 +85164 S06375A 10000 +85164 S06385A 10000 +85165 S06376A 10000 +85165 S06377A 10000 +85165 S06378A 10000 +85165 S06386A 10000 +85165 S06387A 10000 +85165 S06388A 10000 +85166 S06379A 10000 +85166 S06389A 10000 +85169 S06370A 10000 +85169 S06380A 10000 +85170 S0190XA 10112 +85170 S06370A 10111 +85170 S06380A 10111 +85171 S0190XA 10112 +85171 S06370A 10111 +85171 S06380A 10111 +85172 S0190XA 10112 +85172 S06371A 10111 +85172 S06372A 10111 +85172 S06381A 10111 +85172 S06382A 10111 +85173 S0190XA 10112 +85173 S06373A 10111 +85173 S06374A 10111 +85173 S06383A 10111 +85173 S06384A 10111 +85174 S0190XA 10112 +85174 S06375A 10111 +85174 S06385A 10111 +85175 S0190XA 10112 +85175 S06376A 10111 +85175 S06377A 10111 +85175 S06378A 10111 +85175 S06386A 10111 +85175 S06387A 10111 +85175 S06388A 10111 +85176 S0190XA 10112 +85176 S06379A 10111 +85176 S06389A 10111 +85179 S0190XA 10112 +85179 S06370A 10111 +85179 S06380A 10111 +85180 S06330A 10000 +85181 S06330A 10000 +85182 S06331A 10000 +85182 S06332A 10000 +85183 S06333A 10000 +85183 S06334A 10000 +85184 S06335A 10000 +85185 S06336A 10000 +85185 S06337A 10000 +85186 S06339A 10000 +85189 S06330A 10000 +85190 S0190XA 10112 +85190 S06330A 10111 +85191 S0190XA 10112 +85191 S06330A 10111 +85192 S0190XA 10112 +85192 S06331A 10111 +85192 S06332A 10111 +85193 S0190XA 10112 +85193 S06333A 10111 +85193 S06334A 10111 +85194 S0190XA 10112 +85194 S06335A 10111 +85195 S0190XA 10112 +85195 S06336A 10111 +85195 S06337A 10111 +85195 S06338A 10111 +85196 S0190XA 10112 +85196 S06339A 10111 +85199 S0190XA 10112 +85199 S06330A 10111 +85200 S066X0A 10000 +85201 S066X0A 10000 +85202 S066X1A 10000 +85202 S066X2A 10000 +85203 S066X3A 10000 +85203 S066X4A 10000 +85204 S066X5A 10000 +85205 S066X6A 10000 +85205 S066X7A 10000 +85205 S066X8A 10000 +85206 S066X9A 10000 +85209 S066X0A 10000 +85209 S066X9A 10000 +85210 S066X0A 10000 +85211 S0190XA 10112 +85211 S066X0A 10111 +85212 S0190XA 10112 +85212 S066X1A 10111 +85212 S066X2A 10111 +85213 S0190XA 10112 +85213 S066X3A 10111 +85213 S066X4A 10111 +85214 S0190XA 10112 +85214 S066X5A 10111 +85215 S0190XA 10112 +85215 S066X6A 10111 +85215 S066X7A 10111 +85215 S066X8A 10111 +85216 S0190XA 10112 +85216 S066X9A 10111 +85219 S0190XA 10112 +85219 S066X0A 10111 +85219 S066X9A 10111 +85220 S065X0A 10000 +85221 S065X0A 10000 +85222 S065X1A 10000 +85222 S065X2A 10000 +85223 S065X3A 10000 +85223 S065X4A 10000 +85224 S065X5A 10000 +85225 S065X6A 10000 +85225 S065X7A 10000 +85225 S065X8A 10000 +85226 S065X9A 10000 +85229 S065X0A 10000 +85229 S065X9A 10000 +85230 S0190XA 10112 +85230 S065X0A 10111 +85231 S0190XA 10112 +85231 S065X0A 10111 +85232 S0190XA 10112 +85232 S065X1A 10111 +85232 S065X2A 10111 +85233 S0190XA 10112 +85233 S065X3A 10111 +85233 S065X4A 10111 +85234 S0190XA 10112 +85234 S065X5A 10111 +85235 S0190XA 10112 +85235 S065X6A 10111 +85235 S065X7A 10111 +85235 S065X8A 10111 +85236 S0190XA 10112 +85236 S065X9A 10111 +85239 S0190XA 10112 +85239 S065X0A 10111 +85239 S065X9A 10111 +85240 S064X0A 10000 +85241 S064X0A 10000 +85242 S064X1A 10000 +85242 S064X2A 10000 +85243 S064X3A 10000 +85243 S064X4A 10000 +85244 S064X5A 10000 +85245 S064X6A 10000 +85245 S064X7A 10000 +85245 S064X8A 10000 +85246 S064X9A 10000 +85249 S064X0A 10000 +85249 S064X9A 10000 +85250 S0190XA 10112 +85250 S064X0A 10111 +85251 S0190XA 10112 +85251 S064X0A 10111 +85252 S0190XA 10112 +85252 S064X1A 10111 +85252 S064X2A 10111 +85253 S0190XA 10112 +85253 S064X3A 10111 +85253 S064X4A 10111 +85254 S0190XA 10112 +85254 S064X5A 10111 +85255 S0190XA 10112 +85255 S064X6A 10111 +85255 S064X7A 10111 +85255 S064X8A 10111 +85256 S0190XA 10112 +85256 S064X9A 10111 +85259 S0190XA 10112 +85259 S064X0A 10111 +85259 S064X9A 10111 +85300 S06360A 10000 +85301 S06360A 10000 +85302 S06361A 10000 +85302 S06362A 10000 +85303 S06363A 10000 +85303 S06364A 10000 +85304 S06365A 10000 +85305 S06366A 10000 +85305 S06367A 10000 +85305 S06368A 10000 +85306 S06369A 10000 +85309 S06360A 10000 +85309 S06369A 10000 +85310 S0190XA 10112 +85310 S06360A 10111 +85311 S0190XA 10112 +85311 S06360A 10111 +85312 S0190XA 10112 +85312 S06361A 10111 +85312 S06362A 10111 +85313 S0190XA 10112 +85313 S06363A 10111 +85313 S06364A 10111 +85314 S0190XA 10112 +85314 S06365A 10111 +85315 S0190XA 10112 +85315 S06366A 10111 +85315 S06367A 10111 +85315 S06368A 10111 +85316 S0190XA 10112 +85316 S06369A 10111 +85319 S0190XA 10112 +85319 S06360A 10111 +85319 S06369A 10111 +85400 S06890A 10000 +85401 S061X0A 10000 +85401 S06890A 10000 +85401 S069X0A 10000 +85402 S061X1A 10000 +85402 S061X2A 10000 +85402 S069X1A 10000 +85402 S069X2A 10000 +85403 S061X3A 10000 +85403 S061X4A 10000 +85403 S069X3A 10000 +85403 S069X4A 10000 +85404 S061X5A 10000 +85404 S069X5A 10000 +85405 S061X6A 10000 +85405 S061X7A 10000 +85405 S061X8A 10000 +85405 S069X6A 10000 +85406 S061X9A 10000 +85406 S069X9A 10000 +85409 S060X0A 10112 +85409 S06890A 10111 +85410 S0190XA 10112 +85410 S06890A 10111 +85411 S0190XA 10112 +85411 S06890A 10111 +85412 S0190XA 10112 +85412 S06891A 10111 +85412 S06892A 10111 +85413 S0190XA 10112 +85413 S06893A 10111 +85413 S06894A 10111 +85414 S0190XA 10112 +85414 S06895A 10111 +85415 S0190XA 10112 +85415 S06896A 10111 +85415 S06897A 10111 +85415 S06898A 10111 +85416 S0190XA 10112 +85416 S06899A 10111 +85419 S0190XA 10112 +85419 S06890A 10111 +85419 S06899A 10111 +8600 S270XXA 10000 +8601 S21309A 10112 +8601 S270XXA 10111 +8602 S271XXA 10000 +8603 S21309A 10112 +8603 S271XXA 10111 +8604 S272XXA 10000 +8605 S21309A 10112 +8605 S272XXA 10111 +86100 S2610XA 10000 +86100 S2690XA 10000 +86100 S2699XA 10000 +86101 S2691XA 10000 +86102 S2692XA 10000 +86103 S2692XA 10000 +86110 S21309A 10112 +86110 S2690XA 10111 +86111 S21309A 10112 +86111 S2691XA 10111 +86112 S21309A 10112 +86112 S26020A 10111 +86112 S2692XA 10111 +86113 S21309A 10112 +86113 S26021A 10111 +86113 S26022A 10111 +86120 S27309A 10000 +86121 S27329A 10000 +86122 S27339A 10000 +86130 S21309A 10112 +86130 S27309A 10111 +86131 S21309A 10112 +86131 S27329A 10111 +86132 S21309A 10112 +86132 S27339A 10111 +8620 S27809A 10000 +8621 S21309A 10112 +8621 S27809A 10111 +86221 S27409A 10000 +86222 S27819A 10000 +86229 S27899A 10000 +86231 S21309A 10112 +86231 S27409A 10111 +86232 S21309A 10112 +86232 S27813A 10111 +86239 S21309A 10112 +86239 S27893A 10111 +8628 S279XXA 10000 +8629 S21309A 10112 +8629 S279XXA 10111 +8630 S3630XA 10000 +8631 S31609A 10112 +8631 S3630XA 10111 +86320 S36409A 10000 +86321 S36400A 10000 +86329 S36408A 10000 +86330 S31609A 10112 +86330 S36409A 10111 +86331 S31609A 10112 +86331 S36400A 10111 +86339 S31609A 10112 +86339 S36408A 10111 +86340 S36509A 10000 +86341 S36500A 10000 +86342 S36501A 10000 +86343 S36502A 10000 +86344 S36503A 10000 +86345 S3660XA 10000 +86346 S36508A 10000 +86349 S36508A 10000 +86350 S31609A 10112 +86350 S36509A 10111 +86351 S31609A 10112 +86351 S36500A 10111 +86352 S31609A 10112 +86352 S36501A 10111 +86353 S31609A 10112 +86353 S36502A 10111 +86354 S31609A 10112 +86354 S36503A 10111 +86355 S31609A 10112 +86355 S3660XA 10111 +86356 S31609A 10112 +86356 S36508A 10111 +86359 S31609A 10112 +86359 S36508A 10111 +86380 S3690XA 10000 +86381 S36200A 10000 +86382 S36201A 10000 +86383 S36202A 10000 +86384 S36209A 10000 +86385 S36899A 10000 +86389 S36899A 10000 +86390 S31609A 10112 +86390 S3690XA 10111 +86391 S31609A 10112 +86391 S36200A 10111 +86392 S31609A 10112 +86392 S36201A 10111 +86393 S31609A 10112 +86393 S36202A 10111 +86394 S31609A 10112 +86394 S36209A 10111 +86395 S31609A 10112 +86395 S36899A 10111 +86399 S31609A 10112 +86399 S36899A 10111 +86400 S36119A 10000 +86401 S36112A 10000 +86402 S36114A 10000 +86403 S36115A 10000 +86404 S36116A 10000 +86405 S36113A 10000 +86409 S36118A 10000 +86410 S31609A 10112 +86410 S36119A 10111 +86411 S31609A 10112 +86411 S36112A 10111 +86412 S31609A 10112 +86412 S36114A 10111 +86413 S31609A 10112 +86413 S36115A 10111 +86414 S31609A 10112 +86414 S36116A 10111 +86415 S31609A 10112 +86415 S36113A 10111 +86419 S31609A 10112 +86419 S36118A 10111 +86500 S3600XA 10000 +86501 S36029A 10000 +86502 S36030A 10000 +86503 S36031A 10000 +86504 S36032A 10000 +86509 S3609XA 10000 +86510 S31609A 10112 +86510 S3600XA 10111 +86511 S31609A 10112 +86511 S36020A 10111 +86511 S36021A 10111 +86511 S36029A 10111 +86512 S31609A 10112 +86512 S36030A 10111 +86513 S31609A 10112 +86513 S36031A 10111 +86514 S31609A 10112 +86514 S36032A 10111 +86519 S31609A 10112 +86519 S3609XA 10111 +86600 S37009A 10000 +86601 S37019A 10000 +86601 S37029A 10000 +86602 S37039A 10000 +86603 S37069A 10000 +86610 S31001A 10112 +86610 S37009A 10111 +86611 S31001A 10112 +86611 S37019A 10111 +86611 S37029A 10111 +86612 S31001A 10112 +86612 S37039A 10111 +86612 S37049A 10111 +86612 S37059A 10111 +86613 S31001A 10112 +86613 S37069A 10111 +8670 S3720XA 10000 +8670 S3730XA 10000 +8671 S31001A 10112 +8671 S3720XA 10111 +8671 S3730XA 10111 +8672 S3710XA 10000 +8673 S31001A 10112 +8673 S3710XA 10111 +8674 S3760XA 10000 +8675 S31001A 10112 +8675 S3760XA 10111 +8676 S37409A 10000 +8676 S37509A 10000 +8676 S37829A 10000 +8676 S37899A 10000 +8677 S31001A 10112 +8677 S37409A 10111 +8677 S37509A 10111 +8677 S37829A 10111 +8677 S37899A 10111 +8678 S3790XA 10000 +8679 S31001A 10112 +8679 S3790XA 10111 +86800 S3690XA 10000 +86801 S37819A 10000 +86802 S36129A 10000 +86802 S3613XA 10000 +86803 S3681XA 10000 +86804 S36899A 10000 +86809 S36899A 10000 +86810 S31001A 10112 +86810 S3690XA 10111 +86811 S31001A 10112 +86811 S37819A 10111 +86812 S31001A 10112 +86812 S36129A 10111 +86812 S3613XA 10111 +86813 S3681XA 10000 +86814 S31001A 10112 +86814 S36899A 10111 +86819 S31001A 10112 +86819 S36899A 10111 +8690 S3690XA 10000 +8690 S3790XA 10000 +8691 S31001A 10112 +8691 S3690XA 10111 +8691 S3790XA 10111 +8700 S01119A 10000 +8700 S01129A 10000 +8700 S01139A 10000 +8700 S01149A 10000 +8700 S01159A 10000 +8701 S01119A 10000 +8701 S01129A 10000 +8701 S01139A 10000 +8701 S01149A 10000 +8701 S01159A 10000 +8702 S01119A 10000 +8703 S0540XA 10000 +8704 S0540XA 10000 +8708 S01109A 10000 +8709 S01109A 10000 +8710 S0530XA 10000 +8711 S0520XA 10000 +8712 S0520XA 10000 +8713 S0570XA 10000 +8714 S0530XA 10000 +8715 S0550XA 10000 +8716 S0550XA 10000 +8717 S0560XA 10000 +8719 S0590XA 10000 +87200 S01309A 10000 +87201 S01309A 10000 +87201 S08119A 10000 +87201 S08129A 10000 +87202 S01309A 10000 +87210 S01329A 10000 +87211 S01329A 10000 +87212 S01329A 10000 +87261 S0920XA 10000 +87262 S09309A 10000 +87263 S09309A 10000 +87264 S09309A 10000 +87269 S09399A 10000 +87271 S0920XA 10000 +87272 S09309A 10000 +87273 S09309A 10000 +87274 S09309A 10000 +87279 S098XXA 10000 +8728 S0991XA 10000 +8729 S0991XA 10000 +8730 S0100XA 10000 +8731 S0102XA 10000 +87320 S0120XA 10000 +87320 S0121XA 10000 +87320 S0123XA 10000 +87320 S0125XA 10000 +87321 S0120XA 10000 +87321 S0121XA 10000 +87321 S0123XA 10000 +87321 S0125XA 10000 +87322 S0120XA 10000 +87322 S0121XA 10000 +87322 S0123XA 10000 +87322 S0125XA 10000 +87323 S0120XA 10000 +87323 S0121XA 10000 +87323 S0123XA 10000 +87323 S0125XA 10000 +87329 S08811A 10000 +87330 S0122XA 10000 +87330 S0124XA 10000 +87331 S0122XA 10000 +87331 S0124XA 10000 +87332 S0122XA 10000 +87332 S0124XA 10000 +87333 S0122XA 10000 +87333 S0124XA 10000 +87339 S08811A 10000 +87340 S0993XA 10000 +87341 S01409A 10000 +87342 S0180XA 10000 +87343 S01501A 10000 +87344 S01409A 10000 +87349 S0180XA 10000 +87350 S0993XA 10000 +87351 S01429A 10000 +87352 S0182XA 10000 +87353 S01521A 10000 +87354 S01422A 10000 +87359 S0182XA 10000 +87360 S01502A 10000 +87361 S01512A 10000 +87362 S01512A 10000 +87363 S025XXA 10000 +87363 S025XXB 10000 +87364 S01512A 10000 +87365 S01512A 10000 +87369 S01512A 10000 +87370 S01522A 10000 +87371 S01522A 10000 +87372 S01522A 10000 +87373 S025XXA 10000 +87373 S025XXB 10000 +87374 S01522A 10000 +87375 S01522A 10000 +87379 S01522A 10000 +8738 S0190XA 10000 +8738 S0990XA 10000 +8739 S0190XA 10000 +8739 S0192XA 10000 +87400 S11019A 10111 +87400 S11029A 10112 +87401 S11019A 10000 +87402 S11029A 10000 +87410 S11012A 10111 +87410 S11014A 10121 +87410 S11022A 10112 +87410 S11024A 10122 +87411 S11012A 10000 +87412 S11022A 10000 +8742 S1110XA 10000 +8743 S1112XA 10000 +8744 S1120XA 10000 +8745 S1122XA 10000 +8748 S1180XA 10000 +8748 S1190XA 10000 +8749 S1182XA 10000 +8750 S21109A 10000 +8751 S21129A 10000 +8760 S21209A 10000 +8760 S31000A 10000 +8761 S31020A 10000 +8770 S31809A 10000 +8771 S31802A 10000 +8780 S3120XA 10000 +8780 S38221A 10000 +8780 S38222A 10000 +8781 S3122XA 10000 +8782 S3130XA 10000 +8783 S3132XA 10000 +8784 S3140XA 10000 +8785 S3142XA 10000 +8786 S3140XA 10000 +8787 S3142XA 10000 +8788 S31501A 10000 +8788 S31502A 10000 +8789 S31522A 10000 +8789 S31541A 10000 +8790 S21009A 10000 +8791 S21029A 10000 +8792 S31102A 10000 +8792 S31105A 10000 +8793 S31122A 10000 +8793 S31125A 10000 +8794 S31109A 10000 +8795 S31129A 10000 +8796 S31000A 10000 +8797 S31020A 10000 +8798 S31000A 10000 +8799 S31020A 10000 +88000 S41009A 10000 +88001 S41009A 10000 +88002 S41009A 10000 +88003 S41109A 10000 +88009 S41109A 10000 +88010 S41029A 10000 +88011 S41029A 10000 +88012 S41029A 10000 +88013 S41129A 10000 +88019 S41129A 10000 +88020 S41009A 10112 +88020 S46929A 10111 +88021 S41009A 10112 +88021 S46929A 10111 +88022 S41009A 10112 +88022 S46929A 10111 +88023 S41109A 10112 +88023 S46929A 10111 +88029 S41109A 10112 +88029 S46929A 10111 +88100 S51809A 10000 +88101 S51009A 10000 +88102 S61509A 10000 +88110 S51829A 10000 +88111 S51029A 10000 +88112 S61529A 10000 +88120 S51809A 10112 +88120 S56929A 10111 +88121 S51009A 10112 +88121 S56929A 10111 +88122 S61509A 10112 +88122 S66929A 10111 +8820 S61409A 10000 +8821 S61429A 10000 +8822 S61409A 10112 +8822 S66929A 10111 +8830 S61209A 10000 +8831 S61229A 10000 +8832 S61109A 10112 +8832 S61209A 10112 +8832 S66529A 10111 +8840 S41009A 10000 +8841 S41029A 10000 +8842 S41009A 10000 +8850 S68019A 10000 +8850 S68029A 10000 +8850 S68519A 10000 +8850 S68529A 10000 +8851 S68019A 10000 +8851 S68029A 10000 +8851 S68519A 10000 +8851 S68529A 10000 +8860 S68119A 10000 +8860 S68129A 10000 +8860 S68619A 10000 +8860 S68629A 10000 +8861 S68119A 10000 +8861 S68129A 10000 +8861 S68619A 10000 +8861 S68629A 10000 +8870 S58119A 10000 +8870 S58129A 10000 +8870 S58919A 10000 +8870 S58929A 10000 +8870 S68419A 10000 +8870 S68429A 10000 +8870 S68719A 10000 +8870 S68729A 10000 +8871 S58119A 10000 +8871 S58129A 10000 +8871 S58919A 10000 +8871 S58929A 10000 +8871 S68419A 10000 +8871 S68429A 10000 +8871 S68719A 10000 +8871 S68729A 10000 +8872 S48019A 10000 +8872 S48029A 10000 +8872 S48119A 10000 +8872 S48129A 10000 +8872 S58019A 10000 +8872 S58029A 10000 +8873 S48019A 10000 +8873 S48029A 10000 +8873 S48119A 10000 +8873 S48129A 10000 +8873 S58019A 10000 +8873 S58029A 10000 +8874 S48919A 10000 +8874 S48929A 10000 +8875 S48919A 10000 +8875 S48929A 10000 +8876 S48911A 10111 +8876 S48912A 10112 +8876 S48921A 10111 +8876 S48922A 10112 +8877 S48911A 10111 +8877 S48912A 10112 +8900 S71009A 10000 +8900 S71109A 10000 +8901 S71029A 10000 +8901 S71129A 10000 +8902 S71009A 10112 +8902 S71109A 10112 +8902 S76929A 10111 +8910 S81009A 10000 +8910 S81809A 10000 +8910 S91009A 10000 +8911 S81029A 10000 +8911 S81829A 10000 +8911 S91029A 10000 +8912 S81009A 10112 +8912 S81809A 10112 +8912 S86929A 10111 +8912 S91009A 10122 +8912 S96929A 10121 +8920 S91309A 10000 +8921 S91329A 10000 +8922 S91309A 10112 +8922 S96929A 10111 +8930 S91109A 10000 +8931 S91129A 10000 +8932 S91109A 10112 +8932 S91209A 10112 +8932 S96929A 10111 +8940 S71009A 10000 +8941 S71029A 10000 +8942 S71009A 10000 +8950 S98119A 10000 +8950 S98129A 10000 +8950 S98139A 10000 +8950 S98149A 10000 +8950 S98219A 10000 +8950 S98229A 10000 +8951 S98119A 10000 +8951 S98129A 10000 +8951 S98139A 10000 +8951 S98149A 10000 +8951 S98219A 10000 +8951 S98229A 10000 +8960 S98019A 10000 +8960 S98029A 10000 +8960 S98319A 10000 +8960 S98329A 10000 +8960 S98919A 10000 +8960 S98929A 10000 +8961 S98019A 10000 +8961 S98029A 10000 +8961 S98319A 10000 +8961 S98329A 10000 +8961 S98919A 10000 +8961 S98929A 10000 +8962 S98911A 10111 +8962 S98912A 10112 +8962 S98921A 10111 +8962 S98922A 10112 +8963 S98911A 10111 +8963 S98912A 10112 +8970 S88119A 10000 +8970 S88129A 10000 +8971 S88119A 10000 +8971 S88129A 10000 +8972 S78019A 10000 +8972 S78029A 10000 +8972 S78119A 10000 +8972 S78129A 10000 +8972 S78919A 10000 +8972 S78929A 10000 +8972 S88019A 10000 +8972 S88029A 10000 +8973 S78019A 10000 +8973 S78029A 10000 +8973 S78119A 10000 +8973 S78129A 10000 +8973 S88019A 10000 +8973 S88029A 10000 +8974 S78919A 10000 +8974 S78929A 10000 +8974 S88919A 10000 +8974 S88929A 10000 +8975 S78919A 10000 +8975 S78929A 10000 +8975 S88919A 10000 +8975 S88929A 10000 +8976 S88911A 10111 +8976 S88912A 10112 +8977 S88911A 10111 +8977 S88912A 10112 +90000 S15009A 10000 +90001 S15009A 10000 +90002 S15009A 10000 +90003 S15009A 10000 +9001 S15309A 10000 +90081 S15209A 10000 +90082 S158XXA 10000 +90089 S090XXA 10000 +90089 S158XXA 10000 +9009 S159XXA 10000 +9010 S2500XA 10000 +9011 S25109A 10000 +9012 S2520XA 10000 +9013 S25309A 10000 +90140 S25409A 10000 +90141 S25409A 10000 +90142 S25409A 10000 +90181 S25509A 10000 +90182 S25809A 10000 +90183 S25809A 10000 +90189 S25809A 10000 +9019 S2590XA 10000 +9020 S3500XA 10000 +90210 S3510XA 10000 +90211 S3510XA 10000 +90219 S3510XA 10000 +90220 S35299A 10000 +90221 S35299A 10000 +90222 S35299A 10000 +90223 S35299A 10000 +90224 S35219A 10000 +90225 S35229A 10000 +90226 S35229A 10000 +90227 S35239A 10000 +90229 S35299A 10000 +90231 S35339A 10000 +90232 S35349A 10000 +90233 S35319A 10000 +90234 S35329A 10000 +90239 S358X9A 10000 +90240 S35403A 10000 +90240 S35406A 10000 +90241 S35403A 10000 +90242 S35406A 10000 +90249 S35403A 10000 +90249 S35406A 10000 +90250 S35513A 10000 +90251 S35513A 10000 +90252 S35516A 10000 +90253 S35513A 10000 +90254 S35516A 10000 +90255 S35533A 10000 +90256 S35536A 10000 +90259 S3559XA 10000 +90259 S358X9A 10000 +90281 S358X9A 10000 +90282 S358X9A 10000 +90287 S358X9A 10000 +90289 S358X9A 10000 +9029 S3590XA 10000 +90300 S45809A 10000 +90301 S45009A 10000 +90302 S45209A 10000 +9031 S45109A 10000 +9031 S45209A 10000 +9032 S55109A 10000 +9032 S65109A 10000 +9033 S55009A 10000 +9033 S65009A 10000 +9034 S65209A 10000 +9034 S65309A 10000 +9035 S65409A 10000 +9035 S65509A 10000 +9038 S45809A 10000 +9038 S55809A 10000 +9038 S65809A 10000 +9039 S45909A 10000 +9039 S55909A 10000 +9039 S65909A 10000 +9040 S75009A 10000 +9041 S75009A 10000 +9042 S75109A 10000 +9043 S75209A 10000 +9043 S85309A 10000 +9043 S85409A 10000 +90440 S85009A 10000 +90440 S85509A 10000 +90441 S85009A 10000 +90442 S85509A 10000 +90450 S85109A 10000 +90451 S85139A 10000 +90452 S85809A 10000 +90453 S85169A 10000 +90454 S85809A 10000 +9046 S95109A 10000 +9047 S75809A 10000 +9047 S85809A 10000 +9047 S95809A 10000 +9048 S75909A 10000 +9048 S85909A 10000 +9048 S95902A 10000 +9049 T1490 10000 +9050 S020XXS 10000 +9050 S02101S 10000 +9050 S02102S 10000 +9050 S02109S 10000 +9050 S02110S 10000 +9050 S02111S 10000 +9050 S02112S 10000 +9050 S02113S 10000 +9050 S02118S 10000 +9050 S02119S 10000 +9050 S0211AS 10000 +9050 S0211BS 10000 +9050 S0211CS 10000 +9050 S0211DS 10000 +9050 S0211ES 10000 +9050 S0211FS 10000 +9050 S0211GS 10000 +9050 S0211HS 10000 +9050 S0219XS 10000 +9050 S022XXS 10000 +9050 S0230XS 10000 +9050 S0231XS 10000 +9050 S0232XS 10000 +9050 S02400S 10000 +9050 S02401S 10000 +9050 S02402S 10000 +9050 S0240AS 10000 +9050 S0240BS 10000 +9050 S0240CS 10000 +9050 S0240DS 10000 +9050 S0240ES 10000 +9050 S0240FS 10000 +9050 S02411S 10000 +9050 S02412S 10000 +9050 S02413S 10000 +9050 S0242XS 10000 +9050 S025XXS 10000 +9050 S02600S 10000 +9050 S02601S 10000 +9050 S02602S 10000 +9050 S02609S 10000 +9050 S02610S 10000 +9050 S02611S 10000 +9050 S02612S 10000 +9050 S02620S 10000 +9050 S02621S 10000 +9050 S02622S 10000 +9050 S02630S 10000 +9050 S02631S 10000 +9050 S02632S 10000 +9050 S02640S 10000 +9050 S02641S 10000 +9050 S02642S 10000 +9050 S02650S 10000 +9050 S02651S 10000 +9050 S02652S 10000 +9050 S0266XS 10000 +9050 S02670S 10000 +9050 S02671S 10000 +9050 S02672S 10000 +9050 S0269XS 10000 +9050 S0280XS 10000 +9050 S0281XS 10000 +9050 S0282XS 10000 +9050 S0291XS 10000 +9050 S0292XS 10000 +9051 S129XXS 10000 +9051 S22009S 10000 +9051 S229XXS 10000 +9051 S329XXS 10000 +9052 M84429S 10000 +9052 M84439S 10000 +9052 S42209S 10000 +9052 S42309S 10000 +9052 S42409S 10000 +9052 S4290XS 10000 +9052 S5290XS 10000 +9052 S6290XS 10000 +9053 M84459S 10000 +9053 S72009S 10000 +9054 M84369S 10000 +9054 M84376S 10000 +9054 M84453S 10000 +9054 M84469S 10000 +9054 M84750S 10000 +9054 S79009S 10000 +9054 S82009S 10000 +9054 S8290XS 10000 +9054 S92819S 10000 +9054 S92909S 10000 +9054 S92919S 10000 +9054 S99209S 10000 +9054 S99219S 10000 +9054 S99229S 10000 +9054 S99239S 10000 +9054 S99249S 10000 +9054 S99299S 10000 +9055 M8440XS 10000 +9055 M8448XS 10000 +9056 S0300XS 10000 +9056 S0301XS 10000 +9056 S0302XS 10000 +9056 S1320XS 10000 +9056 S2320XS 10000 +9056 S3330XS 10000 +9056 S43306S 10000 +9056 S63006S 10000 +9056 S73006S 10000 +9056 S83006S 10000 +9056 S83106S 10000 +9056 S9306XS 10000 +9056 S93306S 10000 +9057 S039XXS 10000 +9057 S139XXS 10000 +9057 S239XXS 10000 +9057 S339XXS 10000 +9057 S4390XS 10000 +9057 S46919S 10000 +9057 S53499S 10000 +9057 S56919S 10000 +9057 S6390XS 10000 +9057 S66919S 10000 +9057 S73109S 10000 +9057 S76919S 10000 +9057 S83209S 10000 +9057 S8390XS 10000 +9057 S93609S 10000 +9057 S96919S 10000 +9058 M6790 10000 +9059 S48919S 10000 +9059 S58922S 10000 +9059 S68419S 10000 +9059 S78019S 10000 +9059 S88919S 10000 +9060 S0190XS 10000 +9060 S1190XS 10000 +9060 S2190XS 10000 +9060 S31000S 10000 +9060 S31109S 10000 +9061 S41009S 10000 +9061 S41109S 10000 +9061 S51009S 10000 +9061 S51809S 10000 +9061 S61409S 10000 +9061 S61509S 10000 +9061 S71009S 10000 +9061 S71109S 10000 +9061 S81009S 10000 +9061 S81809S 10000 +9061 S91009S 10000 +9062 S0090XS 10000 +9062 S1090XS 10000 +9062 S2090XS 10000 +9062 S3091XS 10000 +9062 S3092XS 10000 +9062 S3096XS 10000 +9062 S3097XS 10000 +9062 S40919S 10000 +9062 S40929S 10000 +9062 S50909S 10000 +9062 S50919S 10000 +9062 S60919S 10000 +9062 S60929S 10000 +9062 S70919S 10000 +9062 S70929S 10000 +9062 S80919S 10000 +9062 S80929S 10000 +9062 S90919S 10000 +9062 S90929S 10000 +9063 S0093XS 10000 +9063 S1093XS 10000 +9063 S2020XS 10000 +9063 S300XXS 10000 +9063 S301XXS 10000 +9063 S30201S 10000 +9063 S30202S 10000 +9063 S40029S 10000 +9063 S5000XS 10000 +9063 S5010XS 10000 +9063 S60219S 10000 +9063 S60229S 10000 +9063 S7000XS 10000 +9063 S7010XS 10000 +9063 S8000XS 10000 +9063 S8010XS 10000 +9063 S9000XS 10000 +9063 S9030XS 10000 +9064 S079XXS 10000 +9064 S179XXS 10000 +9064 S280XXS 10000 +9064 S38001S 10000 +9064 S38002S 10000 +9064 S381XXS 10000 +9064 S479XXS 10000 +9064 S5700XS 10000 +9064 S5780XS 10000 +9064 S6790XS 10000 +9064 S7700XS 10000 +9064 S7710XS 10000 +9064 S8700XS 10000 +9064 S8780XS 10000 +9064 S9700XS 10000 +9064 S9780XS 10000 +9065 T2000XS 10000 +9065 T2040XS 10000 +9066 T23009S 10000 +9066 T23079S 10000 +9066 T23409S 10000 +9066 T23479S 10000 +9067 T2200XS 10000 +9067 T2240XS 10000 +9067 T24009S 10000 +9067 T24409S 10000 +9068 T2100XS 10000 +9068 T2140XS 10000 +9068 T2840XS 10000 +9068 T2890XS 10000 +9069 T2000XS 10000 +9069 T2040XS 10000 +9070 S069X9S 10000 +9071 S049XXS 10000 +9072 S14109S 10000 +9072 S24109S 10000 +9072 S34109S 10000 +9072 S34139S 10000 +9073 S142XXS 10000 +9073 S149XXS 10000 +9073 S242XXS 10000 +9073 S249XXS 10000 +9073 S3421XS 10000 +9073 S3422XS 10000 +9073 S349XXS 10000 +9074 S4490XS 10000 +9074 S5490XS 10000 +9074 S6490XS 10000 +9075 S7490XS 10000 +9075 S8490XS 10000 +9075 S9490XS 10000 +9079 S149XXS 10000 +9079 S249XXS 10000 +9079 S349XXS 10000 +9079 S4490XS 10000 +9079 S5490XS 10000 +9079 S6490XS 10000 +9079 S7490XS 10000 +9079 S8490XS 10000 +9079 S9490XS 10000 +9080 S2699XS 10000 +9080 S279XXS 10000 +9081 S3690XS 10000 +9082 S3790XS 10000 +9083 S090XXS 10000 +9083 S159XXS 10000 +9083 S45909S 10000 +9083 S55909S 10000 +9083 S65909S 10000 +9083 S75909S 10000 +9083 S85909S 10000 +9083 S95909S 10000 +9084 S2590XS 10000 +9084 S3590XS 10000 +9085 T1590XS 10000 +9085 T169XXS 10000 +9085 T171XXS 10000 +9085 T17900S 10000 +9085 T180XXS 10000 +9085 T189XXS 10000 +9085 T199XXS 10000 +9086 T799XXS 10000 +9089 S0990XS 10000 +9089 S169XXS 10000 +9089 S299XXS 10000 +9089 S3991XS 10000 +9089 S3992XS 10000 +9089 S3993XS 10000 +9089 S3994XS 10000 +9089 S4990XS 10000 +9089 S59909S 10000 +9089 S6990XS 10000 +9089 S79919S 10000 +9089 S79929S 10000 +9089 S8990XS 10000 +9089 S99919S 10000 +9089 S99929S 10000 +9090 T50901S 10000 +9091 T6591XS 10000 +9091 T6592XS 10000 +9091 T6593XS 10000 +9091 T6594XS 10000 +9092 L599 10000 +9093 T82855S 10000 +9093 T82856S 10000 +9093 T889XXS 10000 +9094 T7589XS 10000 +9095 T50905S 10000 +9095 T887XXS 10000 +9099 T788XXS 10000 +9100 S0001XA 10000 +9100 S0031XA 10000 +9100 S00419A 10000 +9100 S00511A 10000 +9100 S00512A 10000 +9100 S0091XA 10000 +9100 S1011XA 10000 +9100 S1091XA 10000 +9101 L0889 10112 +9101 S0090XA 10111 +9101 S1091XA 10111 +9102 S0002XA 10000 +9102 S0032XA 10000 +9102 S00429A 10000 +9102 S00521A 10000 +9102 S00522A 10000 +9102 S0092XA 10000 +9102 S1012XA 10000 +9102 S1092XA 10000 +9103 L0889 10112 +9103 S0092XA 10111 +9103 S1092XA 10111 +9104 S0006XA 10000 +9104 S0036XA 10000 +9104 S00469A 10000 +9104 S00561A 10000 +9104 S0096XA 10000 +9104 S1016XA 10000 +9104 S1096XA 10000 +9105 L0889 10112 +9105 S0096XA 10111 +9105 S1096XA 10111 +9106 S0005XA 10000 +9106 S0035XA 10000 +9106 S00459A 10000 +9106 S00551A 10000 +9106 S00552A 10000 +9106 S0095XA 10000 +9106 S1015XA 10000 +9106 S1095XA 10000 +9107 L0889 10112 +9107 S0095XA 10111 +9107 S1095XA 10111 +9108 S0000XA 10000 +9108 S0030XA 10000 +9108 S00409A 10000 +9108 S00501A 10000 +9108 S00502A 10000 +9108 S0090XA 10000 +9108 S1010XA 10000 +9108 S1080XA 10000 +9109 L0889 10112 +9109 S0090XA 10111 +9109 S1090XA 10111 +9110 S20119A 10000 +9110 S2091XA 10000 +9110 S30810A 10000 +9110 S30811A 10000 +9110 S30815A 10000 +9110 S30816A 10000 +9110 S30817A 10000 +9111 L0889 10112 +9111 S2091XA 10111 +9112 S20129A 10000 +9112 S2092XA 10000 +9112 S30820A 10000 +9112 S30821A 10000 +9112 S30825A 10000 +9112 S30826A 10000 +9112 S30827A 10000 +9113 L0889 10112 +9113 S2092XA 10111 +9114 S20169A 10000 +9114 S2096XA 10000 +9114 S30860A 10000 +9114 S30861A 10000 +9114 S30865A 10000 +9114 S30866A 10000 +9114 S30867A 10000 +9115 L0889 10112 +9115 S2096XA 10111 +9116 S20159A 10000 +9116 S2095XA 10000 +9116 S30850A 10000 +9116 S30851A 10000 +9116 S30855A 10000 +9116 S30856A 10000 +9116 S30857A 10000 +9117 L0889 10112 +9117 S2095XA 10111 +9118 S20109A 10000 +9118 S2090XA 10000 +9118 S3091XA 10000 +9118 S3092XA 10000 +9118 S3096XA 10000 +9118 S3097XA 10000 +9118 S3098XA 10000 +9119 L0889 10112 +9119 S2090XA 10111 +9120 S40219A 10000 +9120 S40819A 10000 +9121 L0889 10112 +9121 S40219A 10111 +9121 S40819A 10111 +9122 S40229A 10000 +9122 S40829A 10000 +9123 L0889 10112 +9123 S40229A 10111 +9123 S40829A 10111 +9124 S40269A 10000 +9124 S40869A 10000 +9125 L0889 10112 +9125 S40269A 10111 +9125 S40869A 10111 +9126 S40259A 10000 +9126 S40859A 10000 +9127 L0889 10112 +9127 S40259A 10111 +9127 S40859A 10111 +9128 S40919A 10000 +9128 S40929A 10000 +9129 L0889 10112 +9129 S40919A 10111 +9129 S40929A 10111 +9130 S50319A 10000 +9130 S50819A 10000 +9130 S60819A 10000 +9131 L0889 10112 +9131 S50319A 10111 +9131 S50819A 10111 +9131 S60819A 10111 +9132 S50329A 10000 +9132 S50829A 10000 +9132 S60829A 10000 +9133 L0889 10112 +9133 S50329A 10111 +9133 S50829A 10111 +9133 S60829A 10111 +9134 S50369A 10000 +9134 S50869A 10000 +9134 S60869A 10000 +9135 L0889 10112 +9135 S50369A 10111 +9135 S50869A 10111 +9135 S60869A 10111 +9136 S50359A 10000 +9136 S50859A 10000 +9136 S60859A 10000 +9137 L0889 10112 +9137 S50359A 10111 +9137 S50859A 10111 +9137 S60859A 10111 +9138 S50909A 10000 +9138 S50919A 10000 +9138 S60919A 10000 +9139 L0889 10112 +9139 S50909A 10111 +9139 S50919A 10111 +9139 S60919A 10111 +9140 S60519A 10000 +9141 L0889 10112 +9141 S60519A 10111 +9142 S60529A 10000 +9143 L0889 10112 +9143 S60529A 10111 +9144 S60569A 10000 +9145 L0889 10112 +9145 S60569A 10111 +9146 S60559A 10000 +9147 L0889 10112 +9147 S60559A 10111 +9148 S60929A 10000 +9149 L0889 10112 +9149 S60929A 10111 +9150 S60319A 10000 +9150 S60419A 10000 +9151 L0889 10112 +9151 S60319A 10111 +9151 S60419A 10111 +9152 S60329A 10000 +9152 S60429A 10000 +9153 L0889 10112 +9153 S60329A 10111 +9153 S60429A 10111 +9154 S60369A 10000 +9154 S60469A 10000 +9155 L0889 10112 +9155 S60369A 10111 +9155 S60469A 10111 +9156 S60359A 10000 +9156 S60459A 10000 +9157 L0889 10112 +9157 S60359A 10111 +9157 S60459A 10111 +9158 S60939A 10000 +9158 S60949A 10000 +9159 L0889 10112 +9159 S60939A 10111 +9159 S60949A 10111 +9160 S70219A 10000 +9160 S70319A 10000 +9160 S80819A 10000 +9160 S90519A 10000 +9161 L0889 10112 +9161 S70219A 10111 +9161 S70319A 10111 +9161 S80219A 10111 +9161 S80819A 10111 +9161 S90519A 10111 +9162 S70229A 10000 +9162 S70329A 10000 +9162 S80829A 10000 +9162 S90529A 10000 +9163 L0889 10112 +9163 S70229A 10111 +9163 S70329A 10111 +9163 S80229A 10111 +9163 S80829A 10111 +9163 S90529A 10111 +9164 S70269A 10000 +9164 S70369A 10000 +9164 S80869A 10000 +9164 S90569A 10000 +9165 L0889 10112 +9165 S70269A 10111 +9165 S70369A 10111 +9165 S80269A 10111 +9165 S80869A 10111 +9165 S90569A 10111 +9166 S70259A 10000 +9166 S70359A 10000 +9166 S80859A 10000 +9166 S90559A 10000 +9167 L0889 10112 +9167 S70259A 10111 +9167 S70359A 10111 +9167 S80259A 10111 +9167 S80859A 10111 +9167 S90559A 10111 +9168 S70919A 10000 +9168 S70929A 10000 +9168 S80929A 10000 +9168 S90919A 10000 +9169 L0889 10112 +9169 S70919A 10111 +9169 S70929A 10111 +9169 S80919A 10111 +9169 S80929A 10111 +9169 S90919A 10111 +9170 S90413A 10000 +9170 S90416A 10000 +9170 S90819A 10000 +9171 L0889 10112 +9171 S90413A 10111 +9171 S90416A 10111 +9171 S90819A 10111 +9172 S90423A 10000 +9172 S90426A 10000 +9172 S90829A 10000 +9173 L0889 10112 +9173 S90423A 10111 +9173 S90426A 10111 +9173 S90829A 10111 +9174 S90463A 10000 +9174 S90466A 10000 +9174 S90869A 10000 +9175 L0889 10112 +9175 S90463A 10111 +9175 S90466A 10111 +9175 S90869A 10111 +9176 S90453A 10000 +9176 S90456A 10000 +9176 S90859A 10000 +9177 L0889 10112 +9177 S90453A 10111 +9177 S90456A 10111 +9177 S90859A 10111 +9178 S90929A 10000 +9178 S90933A 10000 +9178 S90936A 10000 +9179 L0889 10112 +9179 S90929A 10111 +9179 S90933A 10111 +9179 S90936A 10111 +9180 S00202A 10000 +9180 S00219A 10000 +9180 S00259A 10000 +9180 S00269A 10000 +9181 S0500XA 10000 +9182 S0500XA 10000 +9189 S0590XA 10000 +9190 T07 10000 +9191 L0889 10112 +9191 T07 10111 +9192 T07 10000 +9193 L0889 10112 +9193 T07 10111 +9194 T07 10000 +9195 L0889 10112 +9195 T07 10111 +9196 T07 10000 +9197 L0889 10112 +9197 T07 10111 +9198 T07 10000 +9199 L0889 10112 +9199 T07 10111 +920 S0093XA 10000 +920 S1093XA 10000 +9210 S0010XA 10000 +9211 S0010XA 10000 +9212 S0510XA 10000 +9213 S0510XA 10000 +9219 S0590XA 10000 +9220 S2000XA 10000 +9221 S20219A 10000 +9222 S301XXA 10000 +92231 S300XXA 10000 +92232 S300XXA 10000 +92233 S20229A 10000 +9224 S30201A 10000 +9224 S30202A 10000 +9228 T148 10000 +9229 S2020XA 10000 +92300 S40019A 10000 +92301 S40019A 10000 +92302 S40019A 10000 +92303 S40029A 10000 +92309 S40019A 10000 +92310 S5010XA 10000 +92311 S5000XA 10000 +92320 S60229A 10000 +92321 S60219A 10000 +9233 S6000XA 10000 +9233 S60019A 10000 +9233 S6010XA 10000 +9238 S40019A 10000 +9239 S40019A 10000 +92400 S7010XA 10000 +92401 S7000XA 10000 +92410 S8010XA 10000 +92411 S8000XA 10000 +92420 S9030XA 10000 +92421 S9000XA 10000 +9243 S90119A 10000 +9243 S90129A 10000 +9243 S90229A 10000 +9244 S7010XA 10000 +9245 S7010XA 10000 +9248 T148 10000 +9249 T1490 10000 +9251 S070XXA 10000 +9251 S078XXA 10000 +9252 S179XXA 10000 +9260 S38001A 10000 +9260 S38002A 10000 +92611 S381XXA 10000 +92612 S381XXA 10000 +92619 S280XXA 10000 +9268 S280XXA 10000 +9269 S280XXA 10000 +92700 S479XXA 10000 +92701 S479XXA 10000 +92702 S479XXA 10000 +92703 S479XXA 10000 +92709 S479XXA 10000 +92710 S5780XA 10000 +92711 S5700XA 10000 +92720 S6720XA 10000 +92721 S6730XA 10000 +9273 S6700XA 10000 +9273 S6710XA 10000 +9278 S479XXA 10000 +9279 S479XXA 10000 +92800 S7710XA 10000 +92801 S7700XA 10000 +92810 S8780XA 10000 +92811 S8700XA 10000 +92820 S9780XA 10000 +92821 S9700XA 10000 +9283 S97109A 10000 +9288 S7720XA 10000 +9289 S7720XA 10000 +9290 S7720XA 10000 +9299 S7720XA 10000 +9300 T1500XA 10000 +9300 T1501XA 10000 +9300 T1502XA 10000 +9301 T1510XA 10000 +9301 T1511XA 10000 +9301 T1512XA 10000 +9302 T1580XA 10000 +9302 T1581XA 10000 +9302 T1582XA 10000 +9308 T1580XA 10000 +9308 T1581XA 10000 +9308 T1582XA 10000 +9309 T1590XA 10000 +9309 T1591XA 10000 +9309 T1592XA 10000 +931 T161XXA 10000 +931 T162XXA 10000 +931 T169XXA 10000 +932 T170XXA 10000 +932 T171XXA 10000 +9330 T17200A 10000 +9330 T17208A 10000 +9330 T17210A 10000 +9330 T17218A 10000 +9330 T17220A 10000 +9330 T17228A 10000 +9330 T17290A 10000 +9330 T17298A 10000 +9331 T17300A 10000 +9331 T17308A 10000 +9331 T17310A 10000 +9331 T17318A 10000 +9331 T17320A 10000 +9331 T17328A 10000 +9331 T17390A 10000 +9331 T17398A 10000 +9340 T17400A 10000 +9340 T17408A 10000 +9340 T17410A 10000 +9340 T17418A 10000 +9340 T17420A 10000 +9340 T17428A 10000 +9340 T17490A 10000 +9340 T17498A 10000 +9341 T17500A 10000 +9341 T17508A 10000 +9341 T17510A 10000 +9341 T17518A 10000 +9341 T17520A 10000 +9341 T17528A 10000 +9341 T17590A 10000 +9341 T17598A 10000 +9348 T17800A 10000 +9348 T17808A 10000 +9348 T17810A 10000 +9348 T17818A 10000 +9348 T17820A 10000 +9348 T17828A 10000 +9348 T17890A 10000 +9348 T17898A 10000 +9349 T17900A 10000 +9349 T17908A 10000 +9349 T17910A 10000 +9349 T17918A 10000 +9349 T17920A 10000 +9349 T17928A 10000 +9349 T17990A 10000 +9349 T17998A 10000 +9350 T180XXA 10000 +9351 T18100A 10000 +9351 T18108A 10000 +9351 T18110A 10000 +9351 T18118A 10000 +9351 T18120A 10000 +9351 T18128A 10000 +9351 T18190A 10000 +9351 T18198A 10000 +9352 T182XXA 10000 +936 T183XXA 10000 +936 T184XXA 10000 +937 T185XXA 10000 +938 T188XXA 10000 +938 T189XXA 10000 +9390 T190XXA 10000 +9390 T191XXA 10000 +9391 T193XXA 10000 +9392 T192XXA 10000 +9393 T194XXA 10000 +9399 T198XXA 10000 +9399 T199XXA 10000 +9400 T2650XA 10000 +9401 T2600XA 10000 +9402 T2660XA 10000 +9403 T2660XA 10000 +9404 T2610XA 10000 +9405 T2620XA 10000 +9405 T2670XA 10000 +9409 T2640XA 10000 +9409 T2690XA 10000 +94100 T2000XA 10000 +94100 T2040XA 10000 +94101 T20019A 10000 +94101 T20419A 10000 +94102 T2640XA 10000 +94102 T2641XA 10000 +94102 T2642XA 10000 +94103 T2002XA 10000 +94103 T2042XA 10000 +94104 T2003XA 10000 +94104 T2043XA 10000 +94105 T2004XA 10000 +94105 T2044XA 10000 +94106 T2005XA 10000 +94106 T2045XA 10000 +94107 T2006XA 10000 +94107 T2046XA 10000 +94108 T2007XA 10000 +94108 T2047XA 10000 +94109 T2009XA 10000 +94109 T2049XA 10000 +94110 T2010XA 10000 +94110 T2050XA 10000 +94111 T20119A 10000 +94111 T20519A 10000 +94112 T2640XA 10000 +94112 T2641XA 10000 +94112 T2642XA 10000 +94113 T2012XA 10000 +94113 T2052XA 10000 +94114 T2013XA 10000 +94114 T2053XA 10000 +94115 T2014XA 10000 +94115 T2054XA 10000 +94116 T2015XA 10000 +94116 T2055XA 10000 +94117 T2016XA 10000 +94117 T2056XA 10000 +94118 T2017XA 10000 +94118 T2057XA 10000 +94119 T2019XA 10000 +94119 T2059XA 10000 +94120 T2020XA 10000 +94120 T2060XA 10000 +94121 T20219A 10000 +94121 T20619A 10000 +94122 T2640XA 10000 +94122 T2641XA 10000 +94122 T2642XA 10000 +94123 T2022XA 10000 +94123 T2062XA 10000 +94124 T2023XA 10000 +94124 T2063XA 10000 +94125 T2024XA 10000 +94125 T2064XA 10000 +94126 T2025XA 10000 +94126 T2065XA 10000 +94127 T2026XA 10000 +94127 T2066XA 10000 +94128 T2027XA 10000 +94128 T2067XA 10000 +94129 T2029XA 10000 +94129 T2069XA 10000 +94130 T2030XA 10000 +94130 T2070XA 10000 +94131 T20319A 10000 +94131 T20719A 10000 +94132 T2640XA 10000 +94132 T2641XA 10000 +94132 T2642XA 10000 +94133 T2032XA 10000 +94133 T2072XA 10000 +94134 T2033XA 10000 +94134 T2073XA 10000 +94135 T2034XA 10000 +94135 T2074XA 10000 +94136 T2035XA 10000 +94136 T2075XA 10000 +94137 T2036XA 10000 +94137 T2076XA 10000 +94138 T2037XA 10000 +94138 T2077XA 10000 +94139 T2039XA 10000 +94139 T2079XA 10000 +94140 T2030XA 10000 +94140 T2070XA 10000 +94141 T20319A 10000 +94141 T20719A 10000 +94142 T2640XA 10000 +94142 T2641XA 10000 +94142 T2642XA 10000 +94143 T2032XA 10000 +94143 T2072XA 10000 +94144 T2033XA 10000 +94144 T2073XA 10000 +94145 T2034XA 10000 +94145 T2074XA 10000 +94146 T2035XA 10000 +94146 T2075XA 10000 +94147 T2036XA 10000 +94147 T2076XA 10000 +94148 T2037XA 10000 +94148 T2077XA 10000 +94149 T2039XA 10000 +94149 T2079XA 10000 +94150 T2030XA 10000 +94150 T2070XA 10000 +94151 T20319A 10000 +94151 T20719A 10000 +94152 T2620XA 10000 +94152 T2621XA 10000 +94152 T2622XA 10000 +94153 T2032XA 10000 +94153 T2072XA 10000 +94154 T2033XA 10000 +94154 T2073XA 10000 +94155 T2034XA 10000 +94155 T2074XA 10000 +94156 T2035XA 10000 +94156 T2075XA 10000 +94157 T2036XA 10000 +94157 T2076XA 10000 +94158 T2037XA 10000 +94158 T2077XA 10000 +94159 T2039XA 10000 +94159 T2079XA 10000 +94200 T2100XA 10000 +94200 T2140XA 10000 +94201 T2101XA 10000 +94201 T2141XA 10000 +94202 T2101XA 10000 +94202 T2141XA 10000 +94203 T2102XA 10000 +94203 T2142XA 10000 +94204 T2103XA 10000 +94204 T2143XA 10000 +94205 T2106XA 10000 +94205 T2107XA 10000 +94205 T2146XA 10000 +94205 T2147XA 10000 +94209 T2109XA 10000 +94209 T2149XA 10000 +94210 T2110XA 10000 +94210 T2150XA 10000 +94211 T2111XA 10000 +94211 T2151XA 10000 +94212 T2111XA 10000 +94212 T2151XA 10000 +94213 T2112XA 10000 +94213 T2152XA 10000 +94214 T2113XA 10000 +94214 T2153XA 10000 +94215 T2116XA 10000 +94215 T2117XA 10000 +94215 T2156XA 10000 +94215 T2157XA 10000 +94219 T2119XA 10000 +94219 T2159XA 10000 +94220 T2120XA 10000 +94220 T2160XA 10000 +94221 T2121XA 10000 +94221 T2161XA 10000 +94222 T2121XA 10000 +94222 T2161XA 10000 +94223 T2122XA 10000 +94223 T2162XA 10000 +94224 T2123XA 10000 +94224 T2163XA 10000 +94225 T2126XA 10000 +94225 T2127XA 10000 +94225 T2166XA 10000 +94225 T2167XA 10000 +94229 T2129XA 10000 +94229 T2169XA 10000 +94230 T2130XA 10000 +94230 T2170XA 10000 +94231 T2131XA 10000 +94231 T2171XA 10000 +94232 T2131XA 10000 +94232 T2171XA 10000 +94233 T2132XA 10000 +94233 T2172XA 10000 +94234 T2133XA 10000 +94234 T2173XA 10000 +94235 T2136XA 10000 +94235 T2137XA 10000 +94235 T2176XA 10000 +94235 T2177XA 10000 +94239 T2139XA 10000 +94239 T2179XA 10000 +94240 T2130XA 10000 +94240 T2170XA 10000 +94241 T2131XA 10000 +94241 T2171XA 10000 +94242 T2131XA 10000 +94242 T2171XA 10000 +94243 T2132XA 10000 +94243 T2172XA 10000 +94244 T2133XA 10000 +94244 T2173XA 10000 +94245 T2136XA 10000 +94245 T2137XA 10000 +94245 T2176XA 10000 +94245 T2177XA 10000 +94249 T2139XA 10000 +94249 T2179XA 10000 +94250 T2130XA 10000 +94250 T2170XA 10000 +94251 T2131XA 10000 +94251 T2171XA 10000 +94252 T2131XA 10000 +94252 T2171XA 10000 +94253 T2132XA 10000 +94253 T2172XA 10000 +94254 T2133XA 10000 +94254 T2173XA 10000 +94255 T2136XA 10000 +94255 T2137XA 10000 +94255 T2176XA 10000 +94255 T2177XA 10000 +94259 T2139XA 10000 +94259 T2179XA 10000 +94300 T2200XA 10000 +94300 T2240XA 10000 +94301 T22019A 10000 +94301 T22419A 10000 +94302 T22029A 10000 +94302 T22429A 10000 +94303 T22039A 10000 +94303 T22439A 10000 +94304 T22049A 10000 +94304 T22449A 10000 +94305 T22059A 10000 +94305 T22459A 10000 +94306 T22069A 10000 +94306 T22469A 10000 +94309 T22099A 10000 +94309 T22499A 10000 +94310 T2210XA 10000 +94310 T2250XA 10000 +94311 T22119A 10000 +94311 T22519A 10000 +94312 T22129A 10000 +94312 T22529A 10000 +94313 T22139A 10000 +94313 T22539A 10000 +94314 T22149A 10000 +94314 T22549A 10000 +94315 T22159A 10000 +94315 T22559A 10000 +94316 T22169A 10000 +94316 T22569A 10000 +94319 T22199A 10000 +94319 T22599A 10000 +94320 T2220XA 10000 +94320 T2260XA 10000 +94321 T22219A 10000 +94321 T22619A 10000 +94322 T22229A 10000 +94322 T22629A 10000 +94323 T22239A 10000 +94323 T22639A 10000 +94324 T22249A 10000 +94324 T22649A 10000 +94325 T22259A 10000 +94325 T22659A 10000 +94326 T22269A 10000 +94326 T22669A 10000 +94329 T22299A 10000 +94329 T22699A 10000 +94330 T2230XA 10000 +94330 T2270XA 10000 +94331 T22319A 10000 +94331 T22719A 10000 +94332 T22329A 10000 +94332 T22729A 10000 +94333 T22339A 10000 +94333 T22739A 10000 +94334 T22349A 10000 +94334 T22749A 10000 +94335 T22359A 10000 +94335 T22759A 10000 +94336 T22369A 10000 +94336 T22769A 10000 +94339 T22399A 10000 +94339 T22799A 10000 +94340 T2230XA 10000 +94340 T2270XA 10000 +94341 T22319A 10000 +94341 T22719A 10000 +94342 T22329A 10000 +94342 T22729A 10000 +94343 T22339A 10000 +94343 T22739A 10000 +94344 T22349A 10000 +94344 T22749A 10000 +94345 T22359A 10000 +94345 T22759A 10000 +94346 T22369A 10000 +94346 T22769A 10000 +94349 T22399A 10000 +94349 T22799A 10000 +94350 T2230XA 10000 +94350 T2270XA 10000 +94351 T22319A 10000 +94351 T22719A 10000 +94352 T22329A 10000 +94352 T22729A 10000 +94353 T22339A 10000 +94353 T22739A 10000 +94354 T22349A 10000 +94354 T22749A 10000 +94355 T22359A 10000 +94355 T22759A 10000 +94356 T22369A 10000 +94356 T22769A 10000 +94359 T22399A 10000 +94359 T22799A 10000 +94400 T23009A 10000 +94400 T23409A 10000 +94401 T23029A 10000 +94401 T23429A 10000 +94402 T23019A 10000 +94402 T23419A 10000 +94403 T23039A 10000 +94403 T23439A 10000 +94404 T23049A 10000 +94404 T23449A 10000 +94405 T23059A 10000 +94405 T23459A 10000 +94406 T23069A 10000 +94406 T23469A 10000 +94407 T23079A 10000 +94407 T23479A 10000 +94408 T23099A 10000 +94408 T23499A 10000 +94410 T23109A 10000 +94410 T23509A 10000 +94411 T23129A 10000 +94411 T23529A 10000 +94412 T23119A 10000 +94412 T23519A 10000 +94413 T23139A 10000 +94413 T23539A 10000 +94414 T23149A 10000 +94414 T23549A 10000 +94415 T23159A 10000 +94415 T23559A 10000 +94416 T23169A 10000 +94416 T23569A 10000 +94417 T23179A 10000 +94417 T23579A 10000 +94418 T23199A 10000 +94418 T23599A 10000 +94420 T23209A 10000 +94420 T23609A 10000 +94421 T23229A 10000 +94421 T23629A 10000 +94422 T23219A 10000 +94422 T23619A 10000 +94423 T23239A 10000 +94423 T23639A 10000 +94424 T23249A 10000 +94424 T23649A 10000 +94425 T23259A 10000 +94425 T23659A 10000 +94426 T23269A 10000 +94426 T23669A 10000 +94427 T23279A 10000 +94427 T23679A 10000 +94428 T23299A 10000 +94428 T23699A 10000 +94430 T23309A 10000 +94430 T23709A 10000 +94431 T23329A 10000 +94431 T23729A 10000 +94432 T23319A 10000 +94432 T23719A 10000 +94433 T23339A 10000 +94433 T23739A 10000 +94434 T23349A 10000 +94434 T23749A 10000 +94435 T23359A 10000 +94435 T23759A 10000 +94436 T23369A 10000 +94436 T23769A 10000 +94437 T23379A 10000 +94437 T23779A 10000 +94438 T23399A 10000 +94438 T23799A 10000 +94440 T23309A 10000 +94440 T23709A 10000 +94441 T23329A 10000 +94441 T23729A 10000 +94442 T23319A 10000 +94442 T23719A 10000 +94443 T23339A 10000 +94443 T23739A 10000 +94444 T23349A 10000 +94444 T23749A 10000 +94445 T23359A 10000 +94445 T23759A 10000 +94446 T23369A 10000 +94446 T23769A 10000 +94447 T23379A 10000 +94447 T23779A 10000 +94448 T23399A 10000 +94448 T23799A 10000 +94450 T23309A 10000 +94450 T23709A 10000 +94451 T23329A 10000 +94451 T23729A 10000 +94452 T23319A 10000 +94452 T23719A 10000 +94453 T23339A 10000 +94453 T23739A 10000 +94454 T23349A 10000 +94454 T23749A 10000 +94455 T23359A 10000 +94455 T23759A 10000 +94456 T23369A 10000 +94456 T23769A 10000 +94457 T23379A 10000 +94457 T23779A 10000 +94458 T23399A 10000 +94458 T23799A 10000 +94500 T24009A 10000 +94500 T24409A 10000 +94501 T25039A 10000 +94501 T25439A 10000 +94502 T25029A 10000 +94502 T25429A 10000 +94503 T25019A 10000 +94503 T25419A 10000 +94504 T24039A 10000 +94504 T24439A 10000 +94505 T24029A 10000 +94505 T24429A 10000 +94506 T24019A 10000 +94506 T24419A 10000 +94509 T24099A 10000 +94509 T24499A 10000 +94509 T25099A 10000 +94509 T25499A 10000 +94510 T24109A 10000 +94510 T24509A 10000 +94511 T25139A 10000 +94511 T25539A 10000 +94512 T25129A 10000 +94512 T25529A 10000 +94513 T25119A 10000 +94513 T25519A 10000 +94514 T24139A 10000 +94514 T24539A 10000 +94515 T24129A 10000 +94515 T24529A 10000 +94516 T24119A 10000 +94516 T24519A 10000 +94519 T24199A 10000 +94519 T24599A 10000 +94519 T25199A 10000 +94519 T25599A 10000 +94520 T24209A 10000 +94520 T24609A 10000 +94521 T25239A 10000 +94521 T25639A 10000 +94522 T25229A 10000 +94522 T25629A 10000 +94523 T25219A 10000 +94523 T25619A 10000 +94524 T24239A 10000 +94524 T24639A 10000 +94525 T24229A 10000 +94525 T24629A 10000 +94526 T24219A 10000 +94526 T24619A 10000 +94529 T24299A 10000 +94529 T24699A 10000 +94529 T25299A 10000 +94529 T25699A 10000 +94530 T24309A 10000 +94530 T24709A 10000 +94531 T25339A 10000 +94531 T25739A 10000 +94532 T25329A 10000 +94532 T25729A 10000 +94533 T25319A 10000 +94533 T25719A 10000 +94534 T24339A 10000 +94534 T24739A 10000 +94535 T24329A 10000 +94535 T24729A 10000 +94536 T24319A 10000 +94536 T24719A 10000 +94539 T24399A 10000 +94539 T24799A 10000 +94539 T25399A 10000 +94539 T25799A 10000 +94540 T24309A 10000 +94540 T24709A 10000 +94541 T25339A 10000 +94541 T25739A 10000 +94542 T25329A 10000 +94542 T25729A 10000 +94543 T25319A 10000 +94543 T25719A 10000 +94544 T24339A 10000 +94544 T24739A 10000 +94545 T24329A 10000 +94545 T24729A 10000 +94546 T24319A 10000 +94546 T24719A 10000 +94549 T24399A 10000 +94549 T24799A 10000 +94549 T25399A 10000 +94549 T25799A 10000 +94550 T24309A 10000 +94550 T24709A 10000 +94551 T25339A 10000 +94551 T25739A 10000 +94552 T25329A 10000 +94552 T25729A 10000 +94553 T25319A 10000 +94553 T25719A 10000 +94554 T24339A 10000 +94554 T24739A 10000 +94555 T24329A 10000 +94555 T24729A 10000 +94556 T24319A 10000 +94556 T24719A 10000 +94559 T24399A 10000 +94559 T24799A 10000 +94559 T25399A 10000 +94559 T25799A 10000 +9460 T300 10000 +9460 T304 10000 +9461 T300 10000 +9461 T304 10000 +9462 T300 10000 +9462 T304 10000 +9463 T300 10000 +9463 T304 10000 +9464 T300 10000 +9465 T300 10000 +9465 T304 10000 +9470 T280XXA 10000 +9470 T285XXA 10000 +9471 T271XXA 10000 +9471 T275XXA 10000 +9472 T281XXA 10000 +9472 T286XXA 10000 +9473 T282XXA 10000 +9473 T287XXA 10000 +9474 T283XXA 10000 +9474 T288XXA 10000 +9478 T2849XA 10000 +9478 T2899XA 10000 +9479 T2840XA 10000 +9479 T2890XA 10000 +94800 T310 10000 +94800 T320 10000 +94810 T3110 10000 +94810 T3210 10000 +94811 T3111 10000 +94811 T3211 10000 +94820 T3120 10000 +94820 T3220 10000 +94821 T3121 10000 +94821 T3221 10000 +94822 T3122 10000 +94822 T3222 10000 +94830 T3130 10000 +94830 T3230 10000 +94831 T3131 10000 +94831 T3231 10000 +94832 T3132 10000 +94832 T3232 10000 +94833 T3133 10000 +94833 T3233 10000 +94840 T3140 10000 +94840 T3240 10000 +94841 T3141 10000 +94841 T3241 10000 +94842 T3142 10000 +94842 T3242 10000 +94843 T3143 10000 +94843 T3243 10000 +94844 T3144 10000 +94844 T3244 10000 +94850 T3150 10000 +94850 T3250 10000 +94851 T3151 10000 +94851 T3251 10000 +94852 T3152 10000 +94852 T3252 10000 +94853 T3153 10000 +94853 T3253 10000 +94854 T3154 10000 +94854 T3254 10000 +94855 T3155 10000 +94855 T3255 10000 +94860 T3160 10000 +94860 T3260 10000 +94861 T3161 10000 +94861 T3261 10000 +94862 T3162 10000 +94862 T3262 10000 +94863 T3163 10000 +94863 T3263 10000 +94864 T3164 10000 +94864 T3264 10000 +94865 T3165 10000 +94865 T3265 10000 +94866 T3166 10000 +94866 T3266 10000 +94870 T3170 10000 +94870 T3270 10000 +94871 T3171 10000 +94871 T3271 10000 +94872 T3172 10000 +94872 T3272 10000 +94873 T3173 10000 +94873 T3273 10000 +94874 T3174 10000 +94874 T3274 10000 +94875 T3175 10000 +94875 T3275 10000 +94876 T3176 10000 +94876 T3276 10000 +94877 T3177 10000 +94877 T3277 10000 +94880 T3180 10000 +94880 T3280 10000 +94881 T3181 10000 +94881 T3281 10000 +94882 T3182 10000 +94882 T3282 10000 +94883 T3183 10000 +94883 T3283 10000 +94884 T3184 10000 +94884 T3284 10000 +94885 T3185 10000 +94885 T3285 10000 +94886 T3186 10000 +94886 T3286 10000 +94887 T3187 10000 +94887 T3287 10000 +94888 T3188 10000 +94888 T3288 10000 +94890 T3190 10000 +94890 T3290 10000 +94891 T3191 10000 +94891 T3291 10000 +94892 T3192 10000 +94892 T3292 10000 +94893 T3193 10000 +94893 T3293 10000 +94894 T3194 10000 +94894 T3294 10000 +94895 T3195 10000 +94895 T3295 10000 +94896 T3196 10000 +94896 T3296 10000 +94897 T3197 10000 +94897 T3297 10000 +94898 T3198 10000 +94898 T3298 10000 +94899 T3199 10000 +94899 T3299 10000 +9490 T300 10000 +9490 T304 10000 +9491 T300 10000 +9492 T300 10000 +9493 T300 10000 +9494 T300 10000 +9495 T300 10000 +9495 T304 10000 +9500 S04019A 10000 +9501 S0402XA 10000 +9502 S04039A 10000 +9503 S04049A 10000 +9509 S04019A 10000 +9510 S0410XA 10000 +9511 S0420XA 10000 +9512 S0430XA 10000 +9513 S0440XA 10000 +9514 S0450XA 10000 +9515 S0460XA 10000 +9516 S0470XA 10000 +9517 S04899A 10000 +9518 S04819A 10000 +9518 S04899A 10000 +9519 S049XXA 10000 +95200 S14101A 10000 +95200 S14102A 10000 +95200 S14103A 10000 +95200 S14104A 10000 +95201 S14111A 10000 +95201 S14112A 10000 +95201 S14113A 10000 +95201 S14114A 10000 +95202 S14131A 10000 +95202 S14132A 10000 +95202 S14133A 10000 +95202 S14134A 10000 +95203 S14121A 10000 +95203 S14122A 10000 +95203 S14123A 10000 +95203 S14124A 10000 +95204 S14151A 10000 +95204 S14152A 10000 +95204 S14153A 10000 +95204 S14154A 10000 +95205 S14105A 10000 +95205 S14106A 10000 +95205 S14107A 10000 +95205 S14108A 10000 +95206 S14115A 10000 +95206 S14116A 10000 +95206 S14117A 10000 +95206 S14118A 10000 +95207 S14135A 10000 +95207 S14136A 10000 +95207 S14137A 10000 +95207 S14138A 10000 +95208 S14125A 10000 +95208 S14126A 10000 +95208 S14127A 10000 +95208 S14128A 10000 +95209 S14155A 10000 +95209 S14156A 10000 +95209 S14157A 10000 +95209 S14158A 10000 +95210 S24101A 10000 +95210 S24102A 10000 +95211 S24111A 10000 +95211 S24112A 10000 +95212 S24131A 10000 +95212 S24132A 10000 +95213 S24151A 10000 +95213 S24152A 10000 +95214 S24151A 10000 +95214 S24152A 10000 +95215 S24103A 10000 +95215 S24104A 10000 +95216 S24113A 10000 +95216 S24114A 10000 +95217 S24133A 10000 +95217 S24134A 10000 +95218 S24153A 10000 +95218 S24154A 10000 +95219 S24153A 10000 +95219 S24154A 10000 +9522 S34109A 10000 +9523 S34139A 10000 +9524 S343XXA 10000 +9528 S34139A 10000 +9529 S14109A 10000 +9529 S24109A 10000 +9529 S34109A 10000 +9529 S34139A 10000 +9530 S142XXA 10000 +9531 S242XXA 10000 +9532 S3421XA 10000 +9533 S3422XA 10000 +9534 S143XXA 10000 +9535 S344XXA 10000 +9538 S142XXA 10000 +9538 S242XXA 10000 +9538 S3421XA 10000 +9538 S3422XA 10000 +9538 S344XXA 10000 +9539 S142XXA 10000 +9539 S242XXA 10000 +9539 S3421XA 10000 +9539 S3422XA 10000 +9539 S344XXA 10000 +9540 S145XXA 10000 +9541 S244XXA 10000 +9541 S345XXA 10000 +9548 S243XXA 10000 +9548 S248XXA 10000 +9548 S346XXA 10000 +9549 S249XXA 10000 +9549 S349XXA 10000 +9550 S4430XA 10000 +9551 S4410XA 10000 +9551 S5410XA 10000 +9551 S6410XA 10000 +9552 S4400XA 10000 +9552 S5400XA 10000 +9552 S6400XA 10000 +9553 S4420XA 10000 +9553 S5420XA 10000 +9553 S6420XA 10000 +9554 S4440XA 10000 +9555 S4450XA 10000 +9555 S5430XA 10000 +9556 S6430XA 10000 +9556 S6440XA 10000 +9557 S448X9A 10000 +9558 S448X9A 10000 +9559 S4490XA 10000 +9560 S7400XA 10000 +9561 S7410XA 10000 +9562 S8400XA 10000 +9563 S8410XA 10000 +9564 S7420XA 10000 +9564 S8420XA 10000 +9564 S9430XA 10000 +9565 S748X9A 10000 +9565 S84809A 10000 +9565 S948X9A 10000 +9568 S748X9A 10000 +9568 S84809A 10000 +9568 S948X9A 10000 +9569 S7490XA 10000 +9569 S8490XA 10000 +9569 S9490XA 10000 +9570 S144XXA 10000 +9571 S149XXA 10000 +9578 S149XXA 10000 +9579 S149XXA 10000 +9580 T790XXA 10000 +9581 T791XXA 10000 +9582 T792XXA 10000 +9583 T798XXA 10000 +9584 T794XXA 10000 +9585 T795XXA 10000 +9586 T796XXA 10000 +9587 T797XXA 10000 +9588 T798XXA 10000 +95890 T79A0XA 10000 +95891 T79A19A 10000 +95892 T79A29A 10000 +95893 T79A3XA 10000 +95899 T79A9XA 10000 +95901 S098XXA 10000 +95901 S0990XA 10000 +95909 S0993XA 10000 +95909 S199XXA 10000 +95911 S298XXA 10000 +95912 S3981XA 10000 +95913 S39840A 10000 +95914 S39848A 10000 +95919 S3982XA 10000 +9592 S4980XA 10000 +9592 S4990XA 10000 +9593 S59809A 10000 +9593 S59819A 10000 +9593 S59909A 10000 +9593 S59919A 10000 +9593 S6980XA 10000 +9593 S6990XA 10000 +9594 S6980XA 10000 +9594 S6990XA 10000 +9595 S6980XA 10000 +9595 S6990XA 10000 +9596 S79819A 10000 +9596 S79829A 10000 +9596 S79919A 10000 +9596 S79929A 10000 +9597 S8980XA 10000 +9597 S8990XA 10000 +9597 S99819A 10000 +9597 S99919A 10000 +9598 T07 10000 +9599 T1490 10000 +9600 T360X1A 10000 +9600 T360X2A 10000 +9600 T360X3A 10000 +9600 T360X4A 10000 +9601 T367X1A 10000 +9601 T367X2A 10000 +9601 T367X3A 10000 +9601 T367X4A 10000 +9602 T362X1A 10000 +9602 T362X2A 10000 +9602 T362X3A 10000 +9602 T362X4A 10000 +9603 T363X1A 10000 +9603 T363X2A 10000 +9603 T363X3A 10000 +9603 T363X4A 10000 +9604 T364X1A 10000 +9604 T364X2A 10000 +9604 T364X3A 10000 +9604 T364X4A 10000 +9605 T361X1A 10000 +9605 T361X2A 10000 +9605 T361X3A 10000 +9605 T361X4A 10000 +9606 T366X1A 10000 +9606 T366X2A 10000 +9606 T366X3A 10000 +9606 T366X4A 10000 +9607 T451X1A 10000 +9608 T365X1A 10000 +9608 T365X2A 10000 +9608 T365X3A 10000 +9608 T365X4A 10000 +9608 T368X1A 10000 +9608 T368X2A 10000 +9608 T368X3A 10000 +9608 T368X4A 10000 +9609 T3691XA 10000 +9609 T3692XA 10000 +9609 T3693XA 10000 +9609 T3694XA 10000 +9610 T370X1A 10000 +9610 T370X2A 10000 +9610 T370X3A 10000 +9610 T370X4A 10000 +9611 T378X1A 10000 +9612 T378X1A 10000 +9613 T378X1A 10000 +9614 T372X1A 10000 +9614 T372X2A 10000 +9614 T372X3A 10000 +9614 T372X4A 10000 +9615 T373X1A 10000 +9615 T373X2A 10000 +9615 T373X3A 10000 +9615 T373X4A 10000 +9616 T374X1A 10000 +9616 T374X2A 10000 +9616 T374X3A 10000 +9616 T374X4A 10000 +9617 T375X1A 10000 +9617 T375X2A 10000 +9617 T375X3A 10000 +9617 T375X4A 10000 +9618 T371X1A 10000 +9618 T371X2A 10000 +9618 T371X3A 10000 +9618 T371X4A 10000 +9619 T378X1A 10000 +9619 T378X2A 10000 +9619 T378X3A 10000 +9619 T378X4A 10000 +9619 T3791XA 10000 +9619 T3792XA 10000 +9619 T3793XA 10000 +9619 T3794XA 10000 +9620 T380X1A 10000 +9620 T380X2A 10000 +9620 T380X3A 10000 +9620 T380X4A 10000 +9620 T500X1A 10000 +9620 T500X2A 10000 +9620 T500X3A 10000 +9620 T500X4A 10000 +9621 T386X1A 10000 +9621 T386X2A 10000 +9621 T386X3A 10000 +9621 T386X4A 10000 +9621 T387X1A 10000 +9621 T387X2A 10000 +9621 T387X3A 10000 +9621 T387X4A 10000 +9622 T384X1A 10000 +9622 T384X2A 10000 +9622 T384X3A 10000 +9622 T384X4A 10000 +9622 T385X1A 10000 +9622 T385X2A 10000 +9622 T385X3A 10000 +9622 T385X4A 10000 +9623 T383X1A 10000 +9623 T383X2A 10000 +9623 T383X3A 10000 +9623 T383X4A 10000 +9624 T38811A 10000 +9624 T38812A 10000 +9624 T38813A 10000 +9624 T38814A 10000 +9625 T38891A 10000 +9626 T38891A 10000 +9627 T381X1A 10000 +9627 T381X2A 10000 +9627 T381X3A 10000 +9627 T381X4A 10000 +9628 T382X1A 10000 +9628 T382X2A 10000 +9628 T382X3A 10000 +9628 T382X4A 10000 +9629 T38801A 10000 +9629 T38802A 10000 +9629 T38803A 10000 +9629 T38804A 10000 +9629 T38891A 10000 +9629 T38892A 10000 +9629 T38893A 10000 +9629 T38894A 10000 +9629 T38901A 10000 +9629 T38902A 10000 +9629 T38903A 10000 +9629 T38904A 10000 +9629 T38991A 10000 +9629 T38992A 10000 +9629 T38993A 10000 +9629 T38994A 10000 +9630 T450X1A 10000 +9630 T450X2A 10000 +9630 T450X3A 10000 +9630 T450X4A 10000 +9631 T451X1A 10000 +9631 T451X2A 10000 +9631 T451X3A 10000 +9631 T451X4A 10000 +9632 T458X1A 10000 +9633 T458X1A 10000 +9634 T453X1A 10000 +9634 T453X2A 10000 +9634 T453X3A 10000 +9634 T453X4A 10000 +9635 T452X1A 10000 +9635 T452X2A 10000 +9635 T452X3A 10000 +9635 T452X4A 10000 +9638 T458X1A 10000 +9638 T458X2A 10000 +9638 T458X3A 10000 +9638 T458X4A 10000 +9639 T4591XA 10000 +9639 T4592XA 10000 +9639 T4593XA 10000 +9639 T4594XA 10000 +9640 T454X1A 10000 +9640 T454X2A 10000 +9640 T454X3A 10000 +9640 T454X4A 10000 +9641 T458X1A 10000 +9642 T45511A 10000 +9642 T45512A 10000 +9642 T45513A 10000 +9642 T45514A 10000 +9642 T45521A 10000 +9642 T45522A 10000 +9642 T45523A 10000 +9642 T45524A 10000 +9643 T457X1A 10000 +9643 T457X2A 10000 +9643 T457X3A 10000 +9644 T45601A 10000 +9644 T45602A 10000 +9644 T45603A 10000 +9644 T45604A 10000 +9644 T45611A 10000 +9644 T45612A 10000 +9644 T45613A 10000 +9644 T45614A 10000 +9644 T45691A 10000 +9644 T45692A 10000 +9644 T45693A 10000 +9644 T45694A 10000 +9645 T457X1A 10000 +9645 T457X2A 10000 +9645 T457X3A 10000 +9645 T457X4A 10000 +9646 T458X1A 10000 +9646 T50Z11A 10000 +9646 T50Z12A 10000 +9646 T50Z13A 10000 +9646 T50Z14A 10000 +9647 T458X1A 10000 +9648 T45621A 10000 +9648 T45622A 10000 +9648 T45623A 10000 +9648 T45624A 10000 +9648 T458X1A 10000 +9648 T458X2A 10000 +9648 T458X3A 10000 +9648 T458X4A 10000 +9649 T4591XA 10000 +9649 T4592XA 10000 +9649 T4593XA 10000 +9649 T4594XA 10000 +96500 T400X1A 10000 +96500 T400X2A 10000 +96500 T400X3A 10000 +96500 T400X4A 10000 +96501 T401X1A 10000 +96501 T401X2A 10000 +96501 T401X3A 10000 +96501 T401X4A 10000 +96502 T403X1A 10000 +96502 T403X2A 10000 +96502 T403X3A 10000 +96502 T403X4A 10000 +96509 T402X1A 10000 +96509 T402X2A 10000 +96509 T402X3A 10000 +96509 T402X4A 10000 +96509 T404X1A 10000 +96509 T404X2A 10000 +96509 T404X3A 10000 +96509 T404X4A 10000 +96509 T40601A 10000 +96509 T40602A 10000 +96509 T40603A 10000 +96509 T40604A 10000 +96509 T40691A 10000 +96509 T40692A 10000 +96509 T40693A 10000 +96509 T40694A 10000 +9651 T39011A 10000 +9651 T39012A 10000 +9651 T39013A 10000 +9651 T39014A 10000 +9651 T39091A 10000 +9651 T39092A 10000 +9651 T39093A 10000 +9651 T39094A 10000 +9651 T39314A 10000 +9654 T391X1A 10000 +9654 T391X2A 10000 +9654 T391X3A 10000 +9654 T391X4A 10000 +9655 T392X1A 10000 +9655 T392X2A 10000 +9655 T392X3A 10000 +9655 T392X4A 10000 +96561 T39311A 10000 +96561 T39312A 10000 +96561 T39313A 10000 +96561 T39391A 10000 +96561 T39392A 10000 +96561 T39393A 10000 +96561 T39394A 10000 +96569 T394X1A 10000 +96569 T394X2A 10000 +96569 T394X3A 10000 +96569 T394X4A 10000 +9657 T398X1A 10000 +9657 T398X2A 10000 +9657 T398X3A 10000 +9657 T398X4A 10000 +9658 T398X1A 10000 +9658 T398X2A 10000 +9658 T398X3A 10000 +9658 T398X4A 10000 +9659 T3991XA 10000 +9659 T3992XA 10000 +9659 T3993XA 10000 +9659 T3994XA 10000 +9660 T422X1A 10000 +9660 T422X2A 10000 +9660 T422X3A 10000 +9660 T422X4A 10000 +9661 T420X1A 10000 +9661 T420X2A 10000 +9661 T420X3A 10000 +9661 T420X4A 10000 +9662 T422X1A 10000 +9662 T422X2A 10000 +9662 T422X3A 10000 +9662 T422X4A 10000 +9663 T421X1A 10000 +9663 T421X2A 10000 +9663 T421X3A 10000 +9663 T421X4A 10000 +9663 T425X1A 10000 +9663 T425X2A 10000 +9663 T425X3A 10000 +9663 T425X4A 10000 +9663 T426X1A 10000 +9663 T426X2A 10000 +9663 T426X3A 10000 +9663 T426X4A 10000 +9663 T4271XA 10000 +9663 T4272XA 10000 +9663 T4273XA 10000 +9663 T4274XA 10000 +9664 T428X1A 10000 +9664 T428X2A 10000 +9664 T428X3A 10000 +9664 T428X4A 10000 +9670 T423X1A 10000 +9670 T423X2A 10000 +9670 T423X3A 10000 +9670 T423X4A 10000 +9671 T426X1A 10000 +9672 T426X1A 10000 +9673 T426X1A 10000 +9674 T426X1A 10000 +9675 T426X1A 10000 +9676 T426X1A 10000 +9678 T426X1A 10000 +9678 T426X2A 10000 +9678 T426X3A 10000 +9678 T426X4A 10000 +9679 T4271XA 10000 +9679 T4272XA 10000 +9679 T4273XA 10000 +9679 T4274XA 10000 +9680 T428X1A 10000 +9680 T428X2A 10000 +9680 T428X3A 10000 +9680 T428X4A 10000 +9681 T410X1A 10000 +9682 T410X1A 10000 +9682 T410X2A 10000 +9682 T410X3A 10000 +9682 T410X4A 10000 +9683 T411X1A 10000 +9683 T411X2A 10000 +9683 T411X3A 10000 +9683 T411X4A 10000 +9684 T41201A 10000 +9684 T41202A 10000 +9684 T41203A 10000 +9684 T41204A 10000 +9684 T41291A 10000 +9684 T41292A 10000 +9684 T41293A 10000 +9684 T41294A 10000 +9685 T413X1A 10000 +9686 T413X1A 10000 +9687 T413X1A 10000 +9689 T413X1A 10000 +9689 T413X2A 10000 +9689 T413X3A 10000 +9689 T413X4A 10000 +9689 T4141XA 10000 +9689 T4142XA 10000 +9689 T4143XA 10000 +9689 T4144XA 10000 +96900 T43201A 10000 +96900 T43202A 10000 +96900 T43203A 10000 +96900 T43204A 10000 +96901 T431X1A 10000 +96901 T431X2A 10000 +96901 T431X3A 10000 +96901 T431X4A 10000 +96902 T43211A 10000 +96902 T43212A 10000 +96902 T43213A 10000 +96902 T43214A 10000 +96903 T43221A 10000 +96903 T43222A 10000 +96903 T43223A 10000 +96903 T43224A 10000 +96904 T43021A 10000 +96904 T43022A 10000 +96904 T43023A 10000 +96904 T43024A 10000 +96905 T43011A 10000 +96905 T43012A 10000 +96905 T43013A 10000 +96905 T43014A 10000 +96909 T43291A 10000 +96909 T43292A 10000 +96909 T43293A 10000 +96909 T43294A 10000 +9691 T433X1A 10000 +9691 T433X2A 10000 +9691 T433X3A 10000 +9691 T433X4A 10000 +9692 T434X1A 10000 +9692 T434X2A 10000 +9692 T434X3A 10000 +9692 T434X4A 10000 +9693 T43501A 10000 +9693 T43502A 10000 +9693 T43503A 10000 +9693 T43504A 10000 +9693 T43591A 10000 +9693 T43592A 10000 +9693 T43593A 10000 +9693 T43594A 10000 +9694 T424X1A 10000 +9694 T424X2A 10000 +9694 T424X3A 10000 +9694 T424X4A 10000 +9695 T43591A 10000 +9696 T407X1A 10000 +9696 T407X2A 10000 +9696 T407X3A 10000 +9696 T407X4A 10000 +9696 T408X2A 10000 +9696 T408X3A 10000 +9696 T408X4A 10000 +9696 T40901A 10000 +9696 T40902A 10000 +9696 T40903A 10000 +9696 T40904A 10000 +9696 T40991A 10000 +9696 T40992A 10000 +9696 T40993A 10000 +9696 T40994A 10000 +96970 T43601A 10000 +96970 T43602A 10000 +96970 T43603A 10000 +96970 T43604A 10000 +96971 T43611A 10000 +96971 T43612A 10000 +96971 T43613A 10000 +96971 T43614A 10000 +96972 T43621A 10000 +96972 T43622A 10000 +96972 T43623A 10000 +96972 T43624A 10000 +96973 T43631A 10000 +96973 T43632A 10000 +96973 T43633A 10000 +96973 T43634A 10000 +96979 T43691A 10000 +96979 T43692A 10000 +96979 T43693A 10000 +96979 T43694A 10000 +9698 T438X1A 10000 +9698 T438X2A 10000 +9698 T438X3A 10000 +9698 T438X4A 10000 +9699 T4391XA 10000 +9699 T4392XA 10000 +9699 T4393XA 10000 +9699 T4394XA 10000 +9700 T507X1A 10000 +9700 T507X2A 10000 +9700 T507X3A 10000 +9700 T507X4A 10000 +9701 T507X1A 10000 +9701 T507X2A 10000 +9701 T507X3A 10000 +9701 T507X4A 10000 +97081 T405X1A 10000 +97081 T405X2A 10000 +97081 T405X3A 10000 +97081 T405X4A 10000 +97089 T50991A 10000 +9709 T50991A 10000 +9710 T440X1A 10000 +9710 T440X2A 10000 +9710 T440X3A 10000 +9710 T440X4A 10000 +9710 T441X1A 10000 +9710 T441X2A 10000 +9710 T441X3A 10000 +9710 T441X4A 10000 +9711 T443X1A 10000 +9711 T443X2A 10000 +9711 T443X3A 10000 +9711 T443X4A 10000 +9712 T444X1A 10000 +9712 T444X2A 10000 +9712 T444X3A 10000 +9712 T444X4A 10000 +9712 T445X1A 10000 +9712 T445X2A 10000 +9712 T445X3A 10000 +9712 T445X4A 10000 +9713 T446X1A 10000 +9713 T446X2A 10000 +9713 T446X3A 10000 +9713 T446X4A 10000 +9713 T447X1A 10000 +9713 T447X2A 10000 +9713 T447X3A 10000 +9713 T447X4A 10000 +9713 T448X1A 10000 +9713 T448X2A 10000 +9713 T448X3A 10000 +9713 T448X4A 10000 +9719 T44901A 10000 +9719 T44902A 10000 +9719 T44903A 10000 +9719 T44904A 10000 +9719 T44991A 10000 +9719 T44992A 10000 +9719 T44993A 10000 +9719 T44994A 10000 +9720 T462X1A 10000 +9720 T462X2A 10000 +9720 T462X3A 10000 +9720 T462X4A 10000 +9721 T460X1A 10000 +9721 T460X2A 10000 +9721 T460X3A 10000 +9721 T460X4A 10000 +9722 T466X1A 10000 +9722 T466X2A 10000 +9722 T466X3A 10000 +9722 T466X4A 10000 +9723 T442X1A 10000 +9723 T442X2A 10000 +9723 T442X3A 10000 +9723 T442X4A 10000 +9724 T463X1A 10000 +9724 T463X2A 10000 +9724 T463X3A 10000 +9724 T463X4A 10000 +9725 T467X1A 10000 +9725 T467X2A 10000 +9725 T467X3A 10000 +9725 T467X4A 10000 +9726 T464X1A 10000 +9726 T464X2A 10000 +9726 T464X3A 10000 +9726 T464X4A 10000 +9726 T465X1A 10000 +9726 T465X2A 10000 +9726 T465X3A 10000 +9726 T465X4A 10000 +9727 T468X1A 10000 +9727 T468X2A 10000 +9727 T468X3A 10000 +9727 T468X4A 10000 +9728 T46991A 10000 +9729 T461X1A 10000 +9729 T461X2A 10000 +9729 T461X3A 10000 +9729 T461X4A 10000 +9729 T46901A 10000 +9729 T46902A 10000 +9729 T46903A 10000 +9729 T46904A 10000 +9729 T46991A 10000 +9729 T46992A 10000 +9729 T46993A 10000 +9729 T46994A 10000 +9730 T470X1A 10000 +9730 T470X2A 10000 +9730 T470X3A 10000 +9730 T470X4A 10000 +9730 T471X1A 10000 +9730 T471X2A 10000 +9730 T471X3A 10000 +9730 T471X4A 10000 +9731 T472X1A 10000 +9731 T472X2A 10000 +9731 T472X3A 10000 +9731 T472X4A 10000 +9732 T473X1A 10000 +9732 T473X2A 10000 +9732 T473X3A 10000 +9732 T473X4A 10000 +9733 T474X1A 10000 +9733 T474X2A 10000 +9733 T474X3A 10000 +9733 T474X4A 10000 +9734 T475X1A 10000 +9734 T475X2A 10000 +9734 T475X3A 10000 +9734 T475X4A 10000 +9735 T476X1A 10000 +9735 T476X2A 10000 +9735 T476X3A 10000 +9735 T476X4A 10000 +9736 T477X1A 10000 +9736 T477X2A 10000 +9736 T477X3A 10000 +9736 T477X4A 10000 +9738 T478X1A 10000 +9738 T478X2A 10000 +9738 T478X3A 10000 +9738 T478X4A 10000 +9739 T4791XA 10000 +9739 T4792XA 10000 +9739 T4793XA 10000 +9739 T4794XA 10000 +9740 T502X1A 10000 +9741 T502X1A 10000 +9742 T502X1A 10000 +9742 T502X2A 10000 +9742 T502X3A 10000 +9742 T502X4A 10000 +9743 T502X1A 10000 +9744 T501X1A 10000 +9744 T501X2A 10000 +9744 T501X3A 10000 +9744 T501X4A 10000 +9744 T502X1A 10000 +9744 T502X3A 10000 +9744 T502X4A 10000 +9745 T503X1A 10000 +9745 T503X2A 10000 +9745 T503X3A 10000 +9745 T503X4A 10000 +9746 T503X1A 10000 +9747 T504X1A 10000 +9747 T504X2A 10000 +9747 T504X3A 10000 +9747 T504X4A 10000 +9750 T480X1A 10000 +9750 T480X2A 10000 +9750 T480X3A 10000 +9750 T480X4A 10000 +9751 T48201A 10000 +9751 T48291A 10000 +9751 T48294A 10000 +9752 T481X1A 10000 +9752 T481X2A 10000 +9752 T481X3A 10000 +9752 T481X4A 10000 +9753 T48201A 10000 +9753 T48202A 10000 +9753 T48203A 10000 +9753 T48204A 10000 +9753 T48291A 10000 +9753 T48292A 10000 +9753 T48293A 10000 +9753 T48294A 10000 +9754 T483X1A 10000 +9754 T483X2A 10000 +9754 T483X3A 10000 +9754 T483X4A 10000 +9755 T484X1A 10000 +9755 T484X2A 10000 +9755 T484X3A 10000 +9755 T484X4A 10000 +9756 T485X1A 10000 +9756 T485X2A 10000 +9756 T485X3A 10000 +9756 T485X4A 10000 +9757 T486X1A 10000 +9757 T486X2A 10000 +9757 T486X3A 10000 +9757 T486X4A 10000 +9758 T415X1A 10000 +9758 T415X2A 10000 +9758 T415X3A 10000 +9758 T415X4A 10000 +9758 T48901A 10000 +9758 T48902A 10000 +9758 T48903A 10000 +9758 T48904A 10000 +9758 T48991A 10000 +9758 T48992A 10000 +9758 T48993A 10000 +9758 T48994A 10000 +9760 T490X1A 10000 +9760 T490X2A 10000 +9760 T490X3A 10000 +9760 T490X4A 10000 +9761 T491X1A 10000 +9761 T491X2A 10000 +9761 T491X3A 10000 +9761 T491X4A 10000 +9762 T492X1A 10000 +9762 T492X2A 10000 +9762 T492X3A 10000 +9762 T492X4A 10000 +9763 T493X1A 10000 +9763 T493X2A 10000 +9763 T493X3A 10000 +9763 T493X4A 10000 +9764 T494X1A 10000 +9764 T494X2A 10000 +9764 T494X3A 10000 +9764 T494X4A 10000 +9765 T495X1A 10000 +9765 T495X2A 10000 +9765 T495X3A 10000 +9765 T495X4A 10000 +9766 T496X1A 10000 +9766 T496X2A 10000 +9766 T496X3A 10000 +9766 T496X4A 10000 +9767 T497X1A 10000 +9767 T497X2A 10000 +9767 T497X3A 10000 +9767 T497X4A 10000 +9768 T498X1A 10000 +9768 T498X2A 10000 +9768 T498X3A 10000 +9768 T498X4A 10000 +9769 T4991XA 10000 +9769 T4992XA 10000 +9769 T4993XA 10000 +9769 T4994XA 10000 +9770 T505X1A 10000 +9770 T505X2A 10000 +9770 T505X3A 10000 +9770 T505X4A 10000 +9771 T50991A 10000 +9772 T506X1A 10000 +9772 T506X2A 10000 +9772 T506X3A 10000 +9772 T506X4A 10000 +9773 T50991A 10000 +9774 T50991A 10000 +9778 T508X1A 10000 +9778 T508X2A 10000 +9778 T508X3A 10000 +9778 T508X4A 10000 +9779 T50901A 10000 +9779 T50902A 10000 +9779 T50903A 10000 +9779 T50904A 10000 +9780 T50A91A 10000 +9781 T50A92A 10000 +9782 T50A92A 10000 +9783 T50A92A 10000 +9784 T50A92A 10000 +9785 T50A92A 10000 +9786 T50A11A 10000 +9786 T50A12A 10000 +9786 T50A13A 10000 +9786 T50A14A 10000 +9788 T50A91A 10000 +9788 T50A92A 10000 +9788 T50A93A 10000 +9788 T50A94A 10000 +9789 T50A21A 10000 +9789 T50A22A 10000 +9789 T50A23A 10000 +9789 T50A24A 10000 +9790 T50B11A 10000 +9790 T50B12A 10000 +9790 T50B13A 10000 +9790 T50B14A 10000 +9791 T50B91A 10000 +9792 T50B91A 10000 +9793 T50B91A 10000 +9794 T50B91A 10000 +9795 T50B91A 10000 +9796 T50B91A 10000 +9796 T50B92A 10000 +9796 T50B93A 10000 +9796 T50B94A 10000 +9797 T50Z91A 10000 +9799 T50901A 10000 +9799 T50991A 10000 +9799 T50992A 10000 +9799 T50993A 10000 +9799 T50994A 10000 +9799 T50Z91A 10000 +9799 T50Z92A 10000 +9799 T50Z93A 10000 +9799 T50Z94A 10000 +9800 T510X1A 10000 +9800 T510X2A 10000 +9800 T510X3A 10000 +9800 T510X4A 10000 +9801 T511X1A 10000 +9801 T511X2A 10000 +9801 T511X3A 10000 +9801 T511X4A 10000 +9802 T512X1A 10000 +9802 T512X2A 10000 +9802 T512X3A 10000 +9802 T512X4A 10000 +9803 T513X1A 10000 +9803 T513X2A 10000 +9803 T513X3A 10000 +9803 T513X4A 10000 +9808 T518X1A 10000 +9808 T518X2A 10000 +9808 T518X3A 10000 +9808 T518X4A 10000 +9809 T5191XA 10000 +9809 T5192XA 10000 +9809 T5193XA 10000 +9809 T5194XA 10000 +981 T520X1A 10000 +981 T520X2A 10000 +981 T520X3A 10000 +981 T520X4A 10000 +9820 T521X1A 10000 +9820 T521X2A 10000 +9820 T521X3A 10000 +9820 T521X4A 10000 +9820 T522X1A 10000 +9820 T522X2A 10000 +9820 T522X3A 10000 +9820 T522X4A 10000 +9820 T653X1A 10000 +9820 T653X2A 10000 +9820 T653X3A 10000 +9820 T653X4A 10000 +9821 T530X1A 10000 +9821 T530X2A 10000 +9821 T530X3A 10000 +9821 T530X4A 10000 +9822 T654X1A 10000 +9822 T654X2A 10000 +9822 T654X3A 10000 +9822 T654X4A 10000 +9823 T531X1A 10000 +9823 T531X2A 10000 +9823 T531X3A 10000 +9823 T531X4A 10000 +9823 T532X1A 10000 +9823 T532X2A 10000 +9823 T532X3A 10000 +9823 T532X4A 10000 +9823 T533X1A 10000 +9823 T533X2A 10000 +9823 T533X3A 10000 +9823 T533X4A 10000 +9823 T534X1A 10000 +9823 T534X2A 10000 +9823 T534X3A 10000 +9823 T534X4A 10000 +9823 T536X1A 10000 +9823 T536X2A 10000 +9823 T536X3A 10000 +9823 T536X4A 10000 +9823 T537X1A 10000 +9823 T537X2A 10000 +9823 T537X3A 10000 +9823 T537X4A 10000 +9823 T5391XA 10000 +9823 T5392XA 10000 +9823 T5393XA 10000 +9823 T5394XA 10000 +9824 T523X1A 10000 +9824 T523X2A 10000 +9824 T523X3A 10000 +9824 T523X4A 10000 +9828 T524X1A 10000 +9828 T524X2A 10000 +9828 T524X3A 10000 +9828 T524X4A 10000 +9828 T528X1A 10000 +9828 T528X2A 10000 +9828 T528X3A 10000 +9828 T528X4A 10000 +9828 T5291XA 10000 +9828 T5292XA 10000 +9828 T5293XA 10000 +9828 T5294XA 10000 +9830 T540X1A 10000 +9830 T540X2A 10000 +9830 T540X3A 10000 +9830 T540X4A 10000 +9831 T542X1A 10000 +9831 T542X2A 10000 +9831 T542X3A 10000 +9831 T542X4A 10000 +9832 T543X1A 10000 +9832 T543X2A 10000 +9832 T543X3A 10000 +9832 T543X4A 10000 +9839 T541X1A 10000 +9839 T541X2A 10000 +9839 T541X3A 10000 +9839 T541X4A 10000 +9839 T5491XA 10000 +9839 T5492XA 10000 +9839 T5493XA 10000 +9839 T5494XA 10000 +9839 T571X1A 10000 +9839 T571X2A 10000 +9839 T571X3A 10000 +9839 T571X4A 10000 +9840 T560X1A 10000 +9840 T560X2A 10000 +9840 T560X3A 10000 +9840 T560X4A 10000 +9841 T560X1A 10000 +9841 T560X2A 10000 +9841 T560X3A 10000 +9841 T560X4A 10000 +9848 T560X1A 10000 +9848 T560X2A 10000 +9848 T560X3A 10000 +9848 T560X4A 10000 +9849 M1A10X1 10000 +9849 T560X1A 10000 +9849 T560X2A 10000 +9849 T560X3A 10000 +9849 T560X4A 10000 +9850 T561X1A 10000 +9850 T561X2A 10000 +9850 T561X3A 10000 +9850 T561X4A 10000 +9851 T570X1A 10000 +9851 T570X2A 10000 +9851 T570X3A 10000 +9851 T570X4A 10000 +9852 T572X1A 10000 +9852 T572X2A 10000 +9852 T572X3A 10000 +9852 T572X4A 10000 +9853 T567X1A 10000 +9853 T567X2A 10000 +9853 T567X3A 10000 +9853 T567X4A 10000 +9854 T56891A 10000 +9855 T563X1A 10000 +9855 T563X2A 10000 +9855 T563X3A 10000 +9855 T563X4A 10000 +9856 T562X1A 10000 +9856 T562X2A 10000 +9856 T562X3A 10000 +9856 T562X4A 10000 +9858 T564X1A 10000 +9858 T564X2A 10000 +9858 T564X3A 10000 +9858 T564X4A 10000 +9858 T565X1A 10000 +9858 T565X2A 10000 +9858 T565X3A 10000 +9858 T565X4A 10000 +9858 T566X1A 10000 +9858 T566X2A 10000 +9858 T566X3A 10000 +9858 T566X4A 10000 +9858 T56891A 10000 +9858 T56892A 10000 +9858 T56893A 10000 +9858 T56894A 10000 +9859 T5691XA 10000 +9859 T5692XA 10000 +9859 T5693XA 10000 +9859 T5694XA 10000 +986 T5801XA 10000 +986 T5802XA 10000 +986 T5803XA 10000 +986 T5804XA 10000 +986 T5811XA 10000 +986 T5812XA 10000 +986 T5813XA 10000 +986 T5814XA 10000 +986 T582X1A 10000 +986 T582X2A 10000 +986 T582X3A 10000 +986 T582X4A 10000 +986 T588X1A 10000 +986 T588X2A 10000 +986 T588X3A 10000 +986 T588X4A 10000 +986 T5891XA 10000 +986 T5892XA 10000 +986 T5893XA 10000 +986 T5894XA 10000 +9870 T59891A 10000 +9871 T592X1A 10000 +9871 T592X2A 10000 +9871 T592X3A 10000 +9871 T592X4A 10000 +9872 T590X1A 10000 +9872 T590X2A 10000 +9872 T590X3A 10000 +9872 T590X4A 10000 +9873 T591X1A 10000 +9873 T591X2A 10000 +9873 T591X3A 10000 +9873 T591X4A 10000 +9874 T535X1A 10000 +9874 T535X2A 10000 +9874 T535X3A 10000 +9874 T535X4A 10000 +9875 T593X1A 10000 +9875 T593X2A 10000 +9875 T593X3A 10000 +9875 T593X4A 10000 +9876 T594X1A 10000 +9876 T594X2A 10000 +9876 T594X3A 10000 +9876 T594X4A 10000 +9877 T573X1A 10000 +9877 T573X2A 10000 +9877 T573X3A 10000 +9877 T573X4A 10000 +9878 T595X1A 10000 +9878 T595X2A 10000 +9878 T595X3A 10000 +9878 T595X4A 10000 +9878 T596X1A 10000 +9878 T596X2A 10000 +9878 T596X3A 10000 +9878 T596X4A 10000 +9878 T597X1A 10000 +9878 T597X2A 10000 +9878 T597X3A 10000 +9878 T597X4A 10000 +9878 T59811A 10000 +9878 T59812A 10000 +9878 T59813A 10000 +9878 T59814A 10000 +9878 T59891A 10000 +9878 T59892A 10000 +9878 T59893A 10000 +9878 T59894A 10000 +9879 T59811A 10000 +9879 T59812A 10000 +9879 T59813A 10000 +9879 T59814A 10000 +9879 T5991XA 10000 +9879 T5992XA 10000 +9879 T5993XA 10000 +9879 T5994XA 10000 +9880 T6101XA 10000 +9880 T6102XA 10000 +9880 T6103XA 10000 +9880 T6104XA 10000 +9880 T6111XA 10000 +9880 T6112XA 10000 +9880 T6113XA 10000 +9880 T6114XA 10000 +9880 T61771A 10000 +9880 T61772A 10000 +9880 T61773A 10000 +9880 T61774A 10000 +9880 T61781A 10000 +9880 T61782A 10000 +9880 T61783A 10000 +9880 T61784A 10000 +9880 T618X1A 10000 +9880 T618X2A 10000 +9880 T618X3A 10000 +9880 T618X4A 10000 +9880 T6191XA 10000 +9880 T6192XA 10000 +9880 T6193XA 10000 +9880 T6194XA 10000 +9881 T620X1A 10000 +9881 T620X2A 10000 +9881 T620X3A 10000 +9881 T620X4A 10000 +9882 T621X1A 10000 +9882 T621X2A 10000 +9882 T621X3A 10000 +9882 T621X4A 10000 +9882 T622X1A 10000 +9882 T622X2A 10000 +9882 T622X3A 10000 +9882 T622X4A 10000 +9888 T628X1A 10000 +9888 T628X2A 10000 +9888 T628X3A 10000 +9888 T628X4A 10000 +9889 T6291XA 10000 +9889 T6292XA 10000 +9889 T6293XA 10000 +9889 T6294XA 10000 +9890 T650X1A 10000 +9890 T650X2A 10000 +9890 T650X3A 10000 +9890 T650X4A 10000 +9891 T651X1A 10000 +9891 T651X2A 10000 +9891 T651X3A 10000 +9891 T651X4A 10000 +9892 T5391XA 10000 +9893 T600X1A 10000 +9893 T600X2A 10000 +9893 T600X3A 10000 +9893 T600X4A 10000 +9894 T601X1A 10000 +9894 T601X2A 10000 +9894 T601X3A 10000 +9894 T601X4A 10000 +9894 T602X1A 10000 +9894 T602X2A 10000 +9894 T602X3A 10000 +9894 T602X4A 10000 +9894 T604X1A 10000 +9894 T604X2A 10000 +9894 T604X3A 10000 +9894 T604X4A 10000 +9894 T608X1A 10000 +9894 T608X2A 10000 +9894 T608X3A 10000 +9894 T608X4A 10000 +9894 T6091XA 10000 +9894 T6092XA 10000 +9894 T6093XA 10000 +9894 T6094XA 10000 +9895 T63001A 10000 +9895 T63002A 10000 +9895 T63003A 10000 +9895 T63004A 10000 +9895 T63011A 10000 +9895 T63012A 10000 +9895 T63013A 10000 +9895 T63014A 10000 +9895 T63021A 10000 +9895 T63022A 10000 +9895 T63023A 10000 +9895 T63024A 10000 +9895 T63031A 10000 +9895 T63032A 10000 +9895 T63033A 10000 +9895 T63034A 10000 +9895 T63041A 10000 +9895 T63042A 10000 +9895 T63043A 10000 +9895 T63044A 10000 +9895 T63061A 10000 +9895 T63062A 10000 +9895 T63063A 10000 +9895 T63064A 10000 +9895 T63071A 10000 +9895 T63072A 10000 +9895 T63073A 10000 +9895 T63074A 10000 +9895 T63081A 10000 +9895 T63082A 10000 +9895 T63083A 10000 +9895 T63084A 10000 +9895 T63091A 10000 +9895 T63092A 10000 +9895 T63093A 10000 +9895 T63094A 10000 +9895 T63111A 10000 +9895 T63112A 10000 +9895 T63113A 10000 +9895 T63114A 10000 +9895 T63121A 10000 +9895 T63122A 10000 +9895 T63123A 10000 +9895 T63124A 10000 +9895 T63191A 10000 +9895 T63192A 10000 +9895 T63193A 10000 +9895 T63194A 10000 +9895 T632X1A 10000 +9895 T632X2A 10000 +9895 T632X3A 10000 +9895 T632X4A 10000 +9895 T63301A 10000 +9895 T63302A 10000 +9895 T63303A 10000 +9895 T63304A 10000 +9895 T63311A 10000 +9895 T63312A 10000 +9895 T63313A 10000 +9895 T63314A 10000 +9895 T63321A 10000 +9895 T63322A 10000 +9895 T63323A 10000 +9895 T63324A 10000 +9895 T63331A 10000 +9895 T63332A 10000 +9895 T63333A 10000 +9895 T63334A 10000 +9895 T63391A 10000 +9895 T63392A 10000 +9895 T63393A 10000 +9895 T63394A 10000 +9895 T63411A 10000 +9895 T63412A 10000 +9895 T63413A 10000 +9895 T63414A 10000 +9895 T63421A 10000 +9895 T63422A 10000 +9895 T63423A 10000 +9895 T63424A 10000 +9895 T63431A 10000 +9895 T63432A 10000 +9895 T63433A 10000 +9895 T63434A 10000 +9895 T63441A 10000 +9895 T63442A 10000 +9895 T63443A 10000 +9895 T63444A 10000 +9895 T63451A 10000 +9895 T63452A 10000 +9895 T63453A 10000 +9895 T63454A 10000 +9895 T63461A 10000 +9895 T63462A 10000 +9895 T63463A 10000 +9895 T63464A 10000 +9895 T63481A 10000 +9895 T63482A 10000 +9895 T63483A 10000 +9895 T63484A 10000 +9895 T63511A 10000 +9895 T63512A 10000 +9895 T63513A 10000 +9895 T63514A 10000 +9895 T63591A 10000 +9895 T63592A 10000 +9895 T63593A 10000 +9895 T63594A 10000 +9895 T63611A 10000 +9895 T63612A 10000 +9895 T63613A 10000 +9895 T63614A 10000 +9895 T63621A 10000 +9895 T63622A 10000 +9895 T63623A 10000 +9895 T63624A 10000 +9895 T63631A 10000 +9895 T63632A 10000 +9895 T63633A 10000 +9895 T63634A 10000 +9895 T63691A 10000 +9895 T63692A 10000 +9895 T63693A 10000 +9895 T63694A 10000 +9895 T63711A 10000 +9895 T63712A 10000 +9895 T63713A 10000 +9895 T63714A 10000 +9895 T63791A 10000 +9895 T63792A 10000 +9895 T63793A 10000 +9895 T63794A 10000 +9895 T63811A 10000 +9895 T63812A 10000 +9895 T63813A 10000 +9895 T63814A 10000 +9895 T63821A 10000 +9895 T63822A 10000 +9895 T63823A 10000 +9895 T63824A 10000 +9895 T63831A 10000 +9895 T63832A 10000 +9895 T63833A 10000 +9895 T63834A 10000 +9895 T63891A 10000 +9895 T63892A 10000 +9895 T63893A 10000 +9895 T63894A 10000 +9895 T6391XA 10000 +9895 T6392XA 10000 +9895 T6393XA 10000 +9895 T6394XA 10000 +9896 T550X1A 10000 +9896 T550X2A 10000 +9896 T550X3A 10000 +9896 T550X4A 10000 +9896 T551X1A 10000 +9896 T551X2A 10000 +9896 T551X3A 10000 +9896 T551X4A 10000 +9897 T6401XA 10000 +9897 T6402XA 10000 +9897 T6403XA 10000 +9897 T6404XA 10000 +9897 T6481XA 10000 +9897 T6482XA 10000 +9897 T6483XA 10000 +9897 T6484XA 10000 +98981 T65894A 10000 +98982 T65811A 10000 +98982 T65812A 10000 +98982 T65813A 10000 +98982 T65814A 10000 +98983 T65894A 10000 +98984 T65211A 10000 +98984 T65212A 10000 +98984 T65213A 10000 +98984 T65214A 10000 +98984 T65221A 10000 +98984 T65222A 10000 +98984 T65223A 10000 +98984 T65224A 10000 +98984 T65291A 10000 +98984 T65292A 10000 +98984 T65293A 10000 +98984 T65294A 10000 +98989 T578X1A 10000 +98989 T578X2A 10000 +98989 T578X3A 10000 +98989 T603X1A 10000 +98989 T603X2A 10000 +98989 T603X3A 10000 +98989 T603X4A 10000 +98989 T655X1A 10000 +98989 T655X2A 10000 +98989 T655X3A 10000 +98989 T655X4A 10000 +98989 T656X1A 10000 +98989 T656X2A 10000 +98989 T656X3A 10000 +98989 T656X4A 10000 +98989 T65821A 10000 +98989 T65822A 10000 +98989 T65823A 10000 +98989 T65824A 10000 +98989 T65831A 10000 +98989 T65832A 10000 +98989 T65833A 10000 +98989 T65834A 10000 +98989 T65891A 10000 +98989 T65892A 10000 +98989 T65893A 10000 +98989 T65894A 10000 +9899 T5791XA 10000 +9899 T5792XA 10000 +9899 T5793XA 10000 +9899 T5794XA 10000 +9899 T6591XA 10000 +9899 T6592XA 10000 +9899 T6593XA 10000 +9899 T6594XA 10000 +990 T66XXXA 10000 +9910 T3309XA 10000 +9910 T3409XA 10000 +9911 T33529A 10000 +9911 T34529A 10000 +9912 T33829A 10000 +9912 T33839A 10000 +9912 T34829A 10000 +9913 T3390XA 10000 +9913 T3399XA 10000 +9913 T3490XA 10000 +9913 T3499XA 10000 +9914 T69029A 10000 +9915 T691XXA 10000 +9916 T68XXXA 10000 +9918 T698XXA 10000 +9919 T699XXA 10000 +9920 T670XXA 10000 +9921 T671XXA 10000 +9922 T672XXA 10000 +9923 T673XXA 10000 +9924 T674XXA 10000 +9925 T675XXA 10000 +9926 T676XXA 10000 +9927 T677XXA 10000 +9928 T678XXA 10000 +9929 T679XXA 10000 +9930 T700XXA 10000 +9931 T701XXA 10000 +9932 T7020XA 10000 +9932 T7029XA 10000 +9933 T703XXA 10000 +9934 T704XXA 10000 +9938 T708XXA 10000 +9939 T709XXA 10000 +9940 T7500XA 10000 +9940 T7501XA 10000 +9941 T751XXA 10000 +9942 T730XXA 10000 +9943 T731XXA 10000 +9944 T732XXA 10000 +9945 T733XXA 10000 +9946 T753XXA 10000 +9947 T71111A 10000 +9947 T71112A 10000 +9947 T71113A 10000 +9947 T71114A 10000 +9947 T71121A 10000 +9947 T71122A 10000 +9947 T71123A 10000 +9947 T71124A 10000 +9947 T71131A 10000 +9947 T71132A 10000 +9947 T71133A 10000 +9947 T71134A 10000 +9947 T71141A 10000 +9947 T71143A 10000 +9947 T71144A 10000 +9947 T71151A 10000 +9947 T71152A 10000 +9947 T71153A 10000 +9947 T71154A 10000 +9947 T71161A 10000 +9947 T71162A 10000 +9947 T71163A 10000 +9947 T71164A 10000 +9947 T71191A 10000 +9947 T71192A 10000 +9947 T71193A 10000 +9947 T71194A 10000 +9947 T7120XA 10000 +9947 T7121XA 10000 +9947 T71221A 10000 +9947 T71222A 10000 +9947 T71223A 10000 +9947 T71224A 10000 +9947 T71231A 10000 +9947 T71232A 10000 +9947 T71233A 10000 +9947 T71234A 10000 +9947 T7129XA 10000 +9947 T719XXA 10000 +9948 T754XXA 10000 +9949 T738XXA 10000 +9949 T739XXA 10000 +9949 T7589XA 10000 +9950 T782XXA 10000 +9951 T783XXA 10000 +99520 T50905A 10000 +99521 T7841XA 10000 +99522 T410X5A 10000 +99522 T411X5A 10000 +99522 T41205A 10000 +99522 T41295A 10000 +99522 T413X5A 10000 +99522 T4145XA 10000 +99522 T8859XA 10000 +99523 T383X5A 10000 +99524 T8852XA 10000 +99527 T50995A 10000 +99529 T360X5A 10000 +99529 T361X5A 10000 +99529 T362X5A 10000 +99529 T363X5A 10000 +99529 T364X5A 10000 +99529 T365X5A 10000 +99529 T366X5A 10000 +99529 T367X5A 10000 +99529 T368X5A 10000 +99529 T3695XA 10000 +99529 T370X5A 10000 +99529 T371X5A 10000 +99529 T372X5A 10000 +99529 T373X5A 10000 +99529 T374X5A 10000 +99529 T375X5A 10000 +99529 T378X5A 10000 +99529 T3795XA 10000 +99529 T380X5A 10000 +99529 T381X5A 10000 +99529 T382X5A 10000 +99529 T384X5A 10000 +99529 T385X5A 10000 +99529 T386X5A 10000 +99529 T387X5A 10000 +99529 T38805A 10000 +99529 T38815A 10000 +99529 T38895A 10000 +99529 T38905A 10000 +99529 T38995A 10000 +99529 T39015A 10000 +99529 T39095A 10000 +99529 T391X5A 10000 +99529 T392X5A 10000 +99529 T39315A 10000 +99529 T39395A 10000 +99529 T394X5A 10000 +99529 T398X5A 10000 +99529 T3995XA 10000 +99529 T400X5A 10000 +99529 T402X5A 10000 +99529 T403X5A 10000 +99529 T404X5A 10000 +99529 T405X5A 10000 +99529 T40605A 10000 +99529 T40695A 10000 +99529 T407X5A 10000 +99529 T40905A 10000 +99529 T40995A 10000 +99529 T415X5A 10000 +99529 T420X5A 10000 +99529 T421X5A 10000 +99529 T422X5A 10000 +99529 T423X5A 10000 +99529 T424X5A 10000 +99529 T425X5A 10000 +99529 T426X5A 10000 +99529 T4275XA 10000 +99529 T428X5A 10000 +99529 T43015A 10000 +99529 T43025A 10000 +99529 T431X5A 10000 +99529 T43205A 10000 +99529 T43215A 10000 +99529 T43225A 10000 +99529 T43295A 10000 +99529 T433X5A 10000 +99529 T434X5A 10000 +99529 T43505A 10000 +99529 T43595A 10000 +99529 T43605A 10000 +99529 T43615A 10000 +99529 T43625A 10000 +99529 T43635A 10000 +99529 T43695A 10000 +99529 T438X5A 10000 +99529 T4395XA 10000 +99529 T440X5A 10000 +99529 T441X5A 10000 +99529 T442X5A 10000 +99529 T443X5A 10000 +99529 T444X5A 10000 +99529 T445X5A 10000 +99529 T446X5A 10000 +99529 T447X5A 10000 +99529 T448X5A 10000 +99529 T44905A 10000 +99529 T450X5A 10000 +99529 T451X5A 10000 +99529 T452X5A 10000 +99529 T453X5A 10000 +99529 T454X5A 10000 +99529 T45515A 10000 +99529 T45525A 10000 +99529 T45605A 10000 +99529 T45615A 10000 +99529 T45625A 10000 +99529 T45695A 10000 +99529 T457X5A 10000 +99529 T458X5A 10000 +99529 T4595XA 10000 +99529 T460X5A 10000 +99529 T461X5A 10000 +99529 T462X5A 10000 +99529 T463X5A 10000 +99529 T464X5A 10000 +99529 T465X5A 10000 +99529 T466X5A 10000 +99529 T467X5A 10000 +99529 T468X5A 10000 +99529 T46905A 10000 +99529 T46995A 10000 +99529 T470X5A 10000 +99529 T471X5A 10000 +99529 T472X5A 10000 +99529 T473X5A 10000 +99529 T474X5A 10000 +99529 T475X5A 10000 +99529 T476X5A 10000 +99529 T477X5A 10000 +99529 T478X5A 10000 +99529 T4795XA 10000 +99529 T480X5A 10000 +99529 T481X5A 10000 +99529 T48205A 10000 +99529 T48295A 10000 +99529 T483X5A 10000 +99529 T484X5A 10000 +99529 T485X5A 10000 +99529 T486X5A 10000 +99529 T48905A 10000 +99529 T48995A 10000 +99529 T490X5A 10000 +99529 T491X5A 10000 +99529 T492X5A 10000 +99529 T493X5A 10000 +99529 T494X5A 10000 +99529 T495X5A 10000 +99529 T496X5A 10000 +99529 T497X5A 10000 +99529 T498X5A 10000 +99529 T4995XA 10000 +99529 T500X5A 10000 +99529 T501X5A 10000 +99529 T502X5A 10000 +99529 T503X5A 10000 +99529 T504X5A 10000 +99529 T505X5A 10000 +99529 T506X5A 10000 +99529 T507X5A 10000 +99529 T508X5A 10000 +99529 T50995A 10000 +99529 T50A15A 10000 +99529 T50A25A 10000 +99529 T50A95A 10000 +99529 T50B15A 10000 +99529 T50B95A 10000 +99529 T50Z15A 10000 +99529 T50Z95A 10000 +9953 T7840XA 10000 +9954 T882XXA 10000 +99550 T7492XA 10000 +99550 T7692XA 10000 +99551 T7432XA 10000 +99551 T7632XA 10000 +99552 T7402XA 10000 +99552 T7602XA 10000 +99553 T7422XA 10000 +99553 T7622XA 10000 +99554 T7412XA 10000 +99554 T7612XA 10000 +99555 T744XXA 10000 +99559 T7492XA 10000 +99559 T7692XA 10000 +99560 T7800XA 10000 +99561 T7801XA 10000 +99562 T7802XA 10000 +99563 T7804XA 10000 +99564 T7805XA 10000 +99565 T7803XA 10000 +99566 T7806XA 10000 +99567 T7807XA 10000 +99568 T7808XA 10000 +99569 T7809XA 10000 +9957 T781XXA 10000 +99580 T7491XA 10000 +99580 T7691XA 10000 +99581 T7411XA 10000 +99581 T7611XA 10000 +99582 T7431XA 10000 +99582 T7631XA 10000 +99583 T7421XA 10000 +99583 T7621XA 10000 +99584 T7401XA 10000 +99584 T7601XA 10000 +99585 T7491XA 10000 +99585 T7691XA 10000 +99586 T883XXA 10000 +99589 T8851XA 10000 +99590 R6510 10000 +99591 A419 10000 +99592 R6520 10000 +99593 R6510 10000 +99594 R6511 00000 +99600 T82519A 10000 +99600 T82529A 10000 +99600 T82539A 10000 +99600 T82599A 10000 +99601 T82110A 10000 +99601 T82111A 10000 +99601 T82120A 10000 +99601 T82121A 10000 +99601 T82190A 10000 +99601 T82191A 10000 +99602 T8201XA 10000 +99602 T8202XA 10000 +99602 T8203XA 10000 +99602 T8209XA 10000 +99603 T82211A 10000 +99603 T82212A 10000 +99603 T82213A 10000 +99603 T82218A 10000 +99604 T82110A 10000 +99604 T82111A 10000 +99604 T82120A 10000 +99604 T82121A 10000 +99604 T82190A 10000 +99604 T82191A 10000 +99609 T82221A 10000 +99609 T82222A 10000 +99609 T82223A 10000 +99609 T82228A 10000 +99609 T82518A 10000 +99609 T82528A 10000 +99609 T82538A 10000 +99609 T82598A 10000 +9961 T82390A 10000 +9961 T82391A 10000 +9961 T82392A 10000 +9961 T8249XA 10000 +9961 T82590A 10000 +9961 T82591A 10000 +9961 T82593A 10000 +9961 T82595A 10000 +9961 T82598A 10000 +9962 T8509XA 10000 +9962 T85190A 10000 +9962 T85192A 10000 +9962 T85193A 10000 +9962 T85199A 10000 +99630 T83498A 10000 +99631 T83091A 10000 +99632 T8339XA 10000 +99639 T83090A 10000 +99639 T83092A 10000 +99639 T83098A 10000 +99639 T83193A 10000 +99639 T83198A 10000 +99639 T8329XA 10000 +99639 T83498A 10000 +99640 T84498A 10000 +99641 T84039A 10000 +99642 T84029A 10000 +99643 T84019A 10000 +99644 M979XXA 10000 +99645 T84059A 10000 +99646 T84069A 10000 +99647 T84099A 10000 +99649 T84119A 10000 +99649 T84129A 10000 +99649 T84199A 10000 +99649 T84498A 10000 +99651 T85398A 10000 +99652 T86820 10000 +99652 T86821 10000 +99653 T8529XA 10000 +99654 T8549XA 10000 +99655 T85693A 10000 +99656 T85691A 10000 +99657 T85694A 10000 +99659 T85398A 10000 +99659 T85590A 10000 +99659 T85692A 10000 +99659 T85698A 10000 +99660 T8579XA 10000 +99661 T826XXA 10000 +99661 T827XXA 10000 +99662 T827XXA 10000 +99663 T85730A 10000 +99663 T85731A 10000 +99663 T85732A 10000 +99663 T85733A 10000 +99663 T85734A 10000 +99663 T85735A 10000 +99663 T85738A 10000 +99664 T83510A 10000 +99664 T83511A 10000 +99664 T83512A 10000 +99664 T83518A 10000 +99665 T83590A 10000 +99665 T83591A 10000 +99665 T83592A 10000 +99665 T83593A 10000 +99665 T83598A 10000 +99665 T8361XA 10000 +99665 T8362XA 10000 +99665 T8369XA 10000 +99666 T8450XA 10000 +99667 T8460XA 10000 +99667 T847XXA 10000 +99668 T8571XA 10000 +99669 T8579XA 10000 +99670 T859XXA 10000 +99671 T82817A 10000 +99671 T82827A 10000 +99671 T82837A 10000 +99671 T82847A 10000 +99671 T82857A 10000 +99671 T82867A 10000 +99671 T82897A 10000 +99671 T829XXA 10000 +99672 T82817A 10000 +99672 T82827A 10000 +99672 T82837A 10000 +99672 T82847A 10000 +99672 T82855A 10000 +99672 T82857A 10000 +99672 T82867A 10000 +99672 T82897A 10000 +99672 T829XXA 10000 +99673 T82818A 10000 +99673 T82828A 10000 +99673 T82838A 10000 +99673 T82848A 10000 +99673 T82858A 10000 +99673 T82868A 10000 +99673 T82898A 10000 +99674 T82818A 10000 +99674 T82828A 10000 +99674 T82838A 10000 +99674 T82848A 10000 +99674 T82856A 10000 +99674 T82858A 10000 +99674 T82868A 10000 +99674 T82898A 10000 +99674 T829XXA 10000 +99675 T85810A 10000 +99675 T85820A 10000 +99675 T85830A 10000 +99675 T85840A 10000 +99675 T85850A 10000 +99675 T85860A 10000 +99675 T85890A 10000 +99676 T8381XA 10000 +99676 T8382XA 10000 +99676 T8383XA 10000 +99676 T8384XA 10000 +99676 T8385XA 10000 +99676 T8386XA 10000 +99676 T8389XA 10000 +99676 T839XXA 10000 +99677 T8481XA 10000 +99677 T8482XA 10000 +99677 T8483XA 10000 +99677 T8484XA 10000 +99677 T8485XA 10000 +99677 T8486XA 10000 +99677 T8489XA 10000 +99677 T849XXA 10000 +99678 T8481XA 10000 +99678 T8482XA 10000 +99678 T8483XA 10000 +99678 T8484XA 10000 +99678 T8485XA 10000 +99678 T8486XA 10000 +99678 T8489XA 10000 +99678 T849XXA 10000 +99679 T85818A 10000 +99679 T85828A 10000 +99679 T85838A 10000 +99679 T85848A 10000 +99679 T85858A 10000 +99679 T85868A 10000 +99679 T85898A 10000 +99680 T8690 10000 +99680 T8691 10000 +99680 T8692 10000 +99680 T8699 10000 +99681 T8610 10000 +99681 T8611 10000 +99681 T8612 10000 +99682 T8640 10000 +99682 T8641 10000 +99682 T8642 10000 +99683 T8620 10000 +99683 T8621 10000 +99683 T8622 10000 +99684 T86810 10000 +99684 T86811 10000 +99684 T86819 10000 +99685 T8600 10000 +99685 T8601 10000 +99685 T8602 10000 +99685 T8609 10000 +99686 T86890 10000 +99686 T86891 10000 +99686 T86899 10000 +99687 T86850 10000 +99687 T86851 10000 +99687 T86859 10000 +99688 T865 00000 +99689 T86890 10000 +99689 T86891 10000 +99689 T86899 10000 +99690 T870X9 10000 +99690 T871X9 10000 +99691 T870X9 10000 +99692 T870X9 10000 +99693 T870X9 10000 +99694 T870X9 10000 +99695 T871X9 10000 +99696 T871X9 10000 +99699 T871X9 10000 +99699 T872 10000 +99700 G9781 10000 +99701 G9781 10000 +99701 G9782 10000 +99702 I97811 10000 +99702 I97821 10000 +99709 G038 10000 +99709 G970 10000 +99709 G9781 10000 +99709 G9782 10000 +9971 I97710 10000 +9971 I97790 10000 +9971 I9788 10000 +9971 I9789 10000 +9972 T81719A 10000 +9972 T8172XA 10000 +99731 J95851 00000 +99732 J9589 10000 +99739 J95859 10000 +99739 J9588 10000 +99739 J9589 10000 +99741 K9186 00000 +99749 K913 10000 +99749 K9181 10000 +99749 K9182 10000 +99749 K9183 10000 +99749 K9189 10000 +9975 N9989 10000 +99760 T879 10000 +99761 T8730 10000 +99762 T8740 10000 +99769 T8789 10000 +99771 T81710A 10000 +99772 T81711A 10000 +99779 T81718A 10000 +99779 T8172XA 10000 +99791 I973 00000 +99799 E8989 10000 +99799 H59099 10000 +99799 H5988 10000 +99799 H5989 10000 +99799 I9789 10000 +99799 M9689 10000 +99800 T8110XA 10000 +99801 T8111XA 10000 +99802 T8112XA 10000 +99809 T8119XA 10000 +99811 D7801 10000 +99811 D7802 10000 +99811 D7821 10000 +99811 D7822 10000 +99811 E3601 10000 +99811 E3602 10000 +99811 E89810 10000 +99811 E89811 10000 +99811 G9731 10000 +99811 G9732 10000 +99811 G9751 10000 +99811 G9752 10000 +99811 H59111 10000 +99811 H59112 10000 +99811 H59113 10000 +99811 H59119 10000 +99811 H59121 10000 +99811 H59122 10000 +99811 H59123 10000 +99811 H59129 10000 +99811 H59311 10000 +99811 H59312 10000 +99811 H59313 10000 +99811 H59319 10000 +99811 H59321 10000 +99811 H59322 10000 +99811 H59323 10000 +99811 H59329 10000 +99811 H9521 10000 +99811 H9522 10000 +99811 H9541 10000 +99811 H9542 10000 +99811 I97410 10000 +99811 I97411 10000 +99811 I97418 10000 +99811 I9742 10000 +99811 I97610 10000 +99811 I97611 10000 +99811 I97618 10000 +99811 I97620 10000 +99811 J9561 10000 +99811 J9562 10000 +99811 J95830 10000 +99811 J95831 10000 +99811 K9161 10000 +99811 K9162 10000 +99811 K91840 10000 +99811 K91841 10000 +99811 L7601 10000 +99811 L7602 10000 +99811 L7621 10000 +99811 L7622 10000 +99811 M96810 10000 +99811 M96811 10000 +99811 M96830 10000 +99811 M96831 10000 +99811 N9961 10000 +99811 N9962 10000 +99811 N99820 10000 +99811 N99821 10000 +99812 D7801 10000 +99812 D7802 10000 +99812 D7831 10000 +99812 D7832 10000 +99812 E3601 10000 +99812 E3602 10000 +99812 E89820 10000 +99812 E89821 10000 +99812 G9731 10000 +99812 G9732 10000 +99812 G9761 10000 +99812 G9762 10000 +99812 H59111 10000 +99812 H59112 10000 +99812 H59113 10000 +99812 H59119 10000 +99812 H59121 10000 +99812 H59122 10000 +99812 H59123 10000 +99812 H59129 10000 +99812 H59331 10000 +99812 H59332 10000 +99812 H59333 10000 +99812 H59339 10000 +99812 H59341 10000 +99812 H59342 10000 +99812 H59343 10000 +99812 H59349 10000 +99812 H9521 10000 +99812 H9522 10000 +99812 H9551 10000 +99812 H9552 10000 +99812 I97410 10000 +99812 I97411 10000 +99812 I97418 10000 +99812 I9742 10000 +99812 I97621 10000 +99812 I97630 10000 +99812 I97631 10000 +99812 I97638 10000 +99812 J9561 10000 +99812 J9562 10000 +99812 J95860 10000 +99812 J95861 10000 +99812 K9161 10000 +99812 K9162 10000 +99812 K91870 10000 +99812 K91871 10000 +99812 L7601 10000 +99812 L7602 10000 +99812 L7631 10000 +99812 L7632 10000 +99812 M96810 10000 +99812 M96811 10000 +99812 M96840 10000 +99812 M96841 10000 +99812 N9961 10000 +99812 N9962 10000 +99812 N99840 10000 +99812 N99841 10000 +99813 D7833 10000 +99813 D7834 10000 +99813 E89822 10000 +99813 E89823 10000 +99813 G9763 10000 +99813 G9764 10000 +99813 H59351 10000 +99813 H59352 10000 +99813 H59353 10000 +99813 H59359 10000 +99813 H59361 10000 +99813 H59362 10000 +99813 H59363 10000 +99813 H59369 10000 +99813 H9553 10000 +99813 H9554 10000 +99813 I97622 10000 +99813 I97640 10000 +99813 I97641 10000 +99813 I97648 10000 +99813 J95862 10000 +99813 J95863 10000 +99813 K91872 10000 +99813 K91873 10000 +99813 L7633 10000 +99813 L7634 10000 +99813 M96842 10000 +99813 M96843 10000 +99813 N99842 10000 +99813 N99843 10000 +99813 T888XXA 10000 +9982 D7811 10000 +9982 D7812 10000 +9982 E3611 10000 +9982 E3612 10000 +9982 G9748 10000 +9982 G9749 10000 +9982 H59219 10000 +9982 H59229 10000 +9982 H9531 10000 +9982 H9532 10000 +9982 I9751 10000 +9982 I9752 10000 +9982 J9571 10000 +9982 J9572 10000 +9982 K9171 10000 +9982 K9172 10000 +9982 L7611 10000 +9982 L7612 10000 +9982 M96820 10000 +9982 M96821 10000 +9982 N9971 10000 +9982 N9972 10000 +9982 T888XXA 10000 +99830 T8130XA 10000 +99831 T8132XA 10000 +99832 T8131XA 10000 +99833 T8133XA 10000 +9984 T81509A 10000 +9984 T81519A 10000 +9984 T81529A 10000 +9984 T81539A 10000 +99851 T814XXA 10000 +99859 K6811 10000 +99859 T814XXA 10000 +9986 T8183XA 10000 +9987 T8161XA 10000 +9987 T8169XA 10000 +99881 T8182XA 10000 +99882 H59029 10000 +99883 T8189XA 10000 +99889 T8189XA 10000 +9989 T819XXA 10000 +9990 T881XXA 10000 +9991 T800XXA 10000 +9992 T801XXA 10000 +99931 T80219A 10000 +99932 T80211A 10000 +99933 T80212A 10000 +99934 T8022XA 10000 +99939 T8029XA 10000 +99939 T880XXA 10000 +99941 T8051XA 10000 +99942 T8052XA 10000 +99949 T8059XA 10000 +99951 T8061XA 10000 +99952 T8062XA 10000 +99959 T8069XA 10000 +99960 T8030XA 10000 +99961 T80319A 10000 +99962 T80310A 10000 +99963 T80311A 10000 +99969 T8039XA 10000 +99970 T8040XA 10000 +99971 T80419A 10000 +99972 T80410A 10000 +99973 T80411A 10000 +99974 T8049XA 10000 +99975 T80A0XA 10000 +99976 T80A19A 10000 +99977 T80A10A 10000 +99978 T80A11A 10000 +99979 T80A9XA 10000 +99980 T8092XA 10000 +99981 T80810A 10000 +99982 T80818A 10000 +99983 T80919A 10000 +99984 T80910A 10000 +99985 T80911A 10000 +99988 T8089XA 10000 +99988 T8090XA 10000 +99989 T8089XA 10000 +9999 T888XXA 10000 +9999 T889XXA 10000 +E0000 Y990 00000 +E0001 Y991 00000 +E0002 Y992 00000 +E0008 Y998 00000 +E0009 Y999 00000 +E0010 Y9301 00000 +E0011 Y9302 00000 +E0020 Y9311 00000 +E0021 Y9312 00000 +E0022 Y9313 00000 +E0023 Y9314 00000 +E0024 Y9315 00000 +E0025 Y9316 00000 +E0026 Y9317 00000 +E0027 Y9318 00000 +E0028 Y9319 10000 +E0029 Y9319 10000 +E0030 Y9321 00000 +E0031 Y9322 00000 +E0032 Y9323 00000 +E0033 Y9324 00000 +E0039 Y9329 00000 +E0040 Y9331 00000 +E0041 Y9332 00000 +E0042 Y9333 00000 +E0043 Y9334 00000 +E0044 Y9335 00000 +E0049 Y9339 00000 +E0050 Y9341 00000 +E0051 Y9342 00000 +E0052 Y9343 00000 +E0053 Y9344 00000 +E0054 Y9345 00000 +E0059 Y9349 00000 +E0060 Y9351 00000 +E0061 Y9352 00000 +E0062 Y9353 00000 +E0063 Y9354 00000 +E0064 Y9355 00000 +E0065 Y9356 00000 +E0066 Y9357 00000 +E0069 Y9359 00000 +E0070 Y9361 00000 +E0071 Y9362 00000 +E0072 Y9363 00000 +E0073 Y9364 00000 +E0074 Y9365 00000 +E0075 Y9366 00000 +E0076 Y9367 00000 +E0077 Y9368 00000 +E0078 Y936A 00000 +E0079 Y9369 00000 +E0080 Y9371 00000 +E0081 Y9372 00000 +E0082 Y9373 00000 +E0083 Y9374 00000 +E0084 Y9375 00000 +E0089 Y9379 00000 +E0090 Y93A1 00000 +E0091 Y93A2 00000 +E0092 Y93A3 00000 +E0093 Y93A4 00000 +E0094 Y93A5 00000 +E0095 Y93A6 00000 +E0099 Y93A9 00000 +E0100 Y93B1 00000 +E0101 Y93B2 00000 +E0102 Y93B3 00000 +E0103 Y93B4 00000 +E0109 Y93B9 00000 +E0110 Y93C1 00000 +E0111 Y93C2 00000 +E0119 Y93C9 00000 +E0120 Y93D1 00000 +E0121 Y93D2 00000 +E0122 Y93D3 00000 +E0129 Y93D9 00000 +E0130 Y93E1 00000 +E0131 Y93E2 00000 +E0132 Y93E3 00000 +E0133 Y93E4 00000 +E0134 Y93E5 00000 +E0135 Y93E6 00000 +E0138 Y93E8 00000 +E0139 Y93E9 00000 +E0140 Y93F1 00000 +E0141 Y93F2 00000 +E0149 Y93F9 00000 +E0150 Y93G1 00000 +E0151 Y93G2 00000 +E0152 Y93G3 00000 +E0159 Y93G9 00000 +E0160 Y93H1 00000 +E0161 Y93H2 00000 +E0162 Y93H3 00000 +E0169 Y93H9 00000 +E0170 Y93I1 00000 +E0179 Y93I9 00000 +E0180 Y93J1 00000 +E0181 Y93J2 00000 +E0182 Y93J3 00000 +E0183 Y93J4 00000 +E0190 Y93K1 00000 +E0191 Y93K2 00000 +E0192 Y93K3 00000 +E0199 Y93K9 00000 +E0290 Y9381 00000 +E0291 Y9382 00000 +E0292 Y9383 00000 +E0299 Y9385 10000 +E0299 Y9389 10000 +E030 Y939 00000 +E8000 V812XXA 10000 +E8001 V812XXA 10000 +E8002 V812XXA 10000 +E8003 V152XXA 10000 +E8008 V812XXA 10000 +E8009 V812XXA 10000 +E8010 V813XXA 10000 +E8011 V813XXA 10000 +E8012 V813XXA 10000 +E8013 V152XXA 10000 +E8018 V822XXA 10000 +E8019 V822XXA 10000 +E8020 V817XXA 10000 +E8021 V817XXA 10000 +E8022 V817XXA 10000 +E8023 V152XXA 10000 +E8028 V817XXA 10000 +E8029 V817XXA 10000 +E8030 V159XXA 10000 +E8031 V8181XA 10000 +E8032 V8181XA 10000 +E8033 V152XXA 10000 +E8038 V8181XA 10000 +E8039 V8181XA 10000 +E8040 V8181XA 10000 +E8041 V815XXA 10000 +E8042 V815XXA 10000 +E8043 V152XXA 10000 +E8048 V815XXA 10000 +E8049 V815XXA 10000 +E8050 V812XXA 10000 +E8051 V812XXA 10000 +E8052 V0500XA 10000 +E8053 V152XXA 10000 +E8058 V812XXA 10000 +E8059 V812XXA 10000 +E8060 V8189XA 10000 +E8061 V8189XA 10000 +E8062 V8189XA 10000 +E8063 V152XXA 10000 +E8068 V8189XA 10000 +E8069 V8189XA 10000 +E8070 V819XXA 10000 +E8071 V819XXA 10000 +E8072 V0590XA 10000 +E8073 V152XXA 10000 +E8078 V819XXA 10000 +E8079 V819XXA 10000 +E8100 V455XXA 10000 +E8101 V456XXA 10000 +E8102 V254XXA 10000 +E8103 V255XXA 10000 +E8104 V828XXA 10000 +E8105 V8061XA 10000 +E8105 V8062XA 10000 +E8106 V159XXA 10000 +E8107 V0510XA 10000 +E8108 V457XXA 10000 +E8109 V459XXA 10000 +E8110 V4940XA 10000 +E8111 V4950XA 10000 +E8112 V2940XA 10000 +E8113 V2950XA 10000 +E8114 V821XXA 10000 +E8115 V8041XA 10000 +E8115 V8042XA 10000 +E8116 V139XXA 10000 +E8117 V0310XA 10000 +E8118 V4988XA 10000 +E8119 V4988XA 10000 +E8120 V4988XA 10000 +E8121 V4959XA 10000 +E8122 V2949XA 10000 +E8123 V2959XA 10000 +E8124 V821XXA 10000 +E8125 V8041XA 10000 +E8126 V139XXA 10000 +E8127 V0310XA 10000 +E8128 V4372XA 10000 +E8129 V877XXA 10000 +E8130 V465XXA 10000 +E8131 V466XXA 10000 +E8132 V264XXA 10000 +E8133 V215XXA 10000 +E8134 V821XXA 10000 +E8135 V8041XA 10000 +E8136 V1960XA 10000 +E8137 V0310XA 10000 +E8138 V467XXA 10000 +E8139 V879XXA 10000 +E8140 V405XXA 10000 +E8141 V406XXA 10000 +E8142 V204XXA 10000 +E8143 V205XXA 10000 +E8144 V821XXA 10000 +E8145 V8041XA 10000 +E8146 V139XXA 10000 +E8147 V0310XA 10000 +E8148 V407XXA 10000 +E8149 V409XXA 10000 +E8150 V8609XA 10000 +E8151 V8619XA 10000 +E8152 V2988XA 10000 +E8153 V275XXA 10000 +E8154 V821XXA 10000 +E8155 V8041XA 10000 +E8156 V139XXA 10000 +E8157 V0310XA 10000 +E8158 V8629XA 10000 +E8159 V8639XA 10000 +E8160 V485XXA 10000 +E8161 V486XXA 10000 +E8162 V284XXA 10000 +E8163 V285XXA 10000 +E8164 V829XXA 10000 +E8165 V80929A 10000 +E8166 V193XXA 10000 +E8167 V091XXA 10000 +E8168 V487XXA 10000 +E8169 V489XXA 10000 +E8170 V484XXA 10000 +E8171 V484XXA 10000 +E8172 V283XXA 10000 +E8173 V283XXA 10000 +E8174 V824XXA 10000 +E8175 V80918A 10000 +E8176 V183XXA 10000 +E8177 V0920XA 10000 +E8178 V484XXA 10000 +E8179 V878XXA 10000 +E8180 V485XXA 10000 +E8181 V486XXA 10000 +E8182 V284XXA 10000 +E8183 V285XXA 10000 +E8184 V828XXA 10000 +E8185 V80918A 10000 +E8186 V189XXA 10000 +E8187 V093XXA 10000 +E8188 V787XXA 10000 +E8189 V878XXA 10000 +E8190 V499XXA 10000 +E8191 V499XXA 10000 +E8191 V599XXA 10000 +E8191 V699XXA 10000 +E8192 V299XXA 10000 +E8193 V299XXA 10000 +E8194 V829XXA 10000 +E8195 V80919A 10000 +E8196 V199XXA 10000 +E8197 V093XXA 10000 +E8198 V892XXA 10000 +E8199 V892XXA 10000 +E8200 V8652XA 10000 +E8201 V8662XA 10000 +E8202 V888XXA 10000 +E8203 V888XXA 10000 +E8204 V888XXA 10000 +E8205 V888XXA 10000 +E8206 V888XXA 10000 +E8207 V888XXA 10000 +E8208 V8672XA 10000 +E8209 V8692XA 10000 +E8210 V8659XA 10000 +E8211 V8669XA 10000 +E8212 V888XXA 10000 +E8213 V888XXA 10000 +E8214 V888XXA 10000 +E8215 V888XXA 10000 +E8216 V888XXA 10000 +E8217 V888XXA 10000 +E8218 V8679XA 10000 +E8219 V8699XA 10000 +E8220 V400XXA 10000 +E8221 V401XXA 10000 +E8222 V200XXA 10000 +E8223 V201XXA 10000 +E8224 V820XXA 10000 +E8225 V80918A 10000 +E8226 V1929XA 10000 +E8227 V0300XA 10000 +E8228 V402XXA 10000 +E8229 V403XXA 10000 +E8230 V470XXA 10000 +E8231 V471XXA 10000 +E8232 V270XXA 10000 +E8233 V271XXA 10000 +E8234 V823XXA 10000 +E8235 V8081XA 10000 +E8236 V172XXA 10000 +E8237 V099XXA 10000 +E8238 V572XXA 10000 +E8239 V473XXA 10000 +E8240 V4342XA 10000 +E8241 V4342XA 10000 +E8242 V233XXA 10000 +E8243 V233XXA 10000 +E8244 V824XXA 10000 +E8245 V80918A 10000 +E8246 V183XXA 10000 +E8247 V099XXA 10000 +E8248 V4342XA 10000 +E8249 V888XXA 10000 +E8250 V580XXA 10000 +E8251 V493XXA 10000 +E8252 V293XXA 10000 +E8253 V281XXA 10000 +E8254 V828XXA 10000 +E8255 V80918A 10000 +E8256 V1988XA 10000 +E8257 V0900XA 10000 +E8258 V582XXA 10000 +E8259 V890XXA 10000 +E8260 V0100XA 10000 +E8261 V100XXA 10000 +E8262 V8021XA 10000 +E8263 V8022XA 10000 +E8264 V828XXA 10000 +E8268 V182XXA 10000 +E8269 V102XXA 10000 +E8270 V091XXA 10000 +E8272 V80710A 10000 +E8273 V8012XA 10000 +E8274 V828XXA 10000 +E8278 V889XXA 10000 +E8279 V889XXA 10000 +E8280 V091XXA 10000 +E8282 V8011XA 10000 +E8284 V828XXA 10000 +E8288 V889XXA 10000 +E8289 V889XXA 10000 +E8290 V0600XA 10000 +E8294 V829XXA 10000 +E8298 V889XXA 10000 +E8299 V891XXA 10000 +E8300 V9089XA 10000 +E8301 V9089XA 10000 +E8302 V9089XA 10000 +E8303 V9089XA 10000 +E8304 V9089XA 10000 +E8305 V9089XA 10000 +E8306 V9089XA 10000 +E8307 V9089XA 10000 +E8308 V9089XA 10000 +E8309 V9089XA 10000 +E8310 V9189XA 10000 +E8311 V9189XA 10000 +E8312 V9189XA 10000 +E8313 V9189XA 10000 +E8314 V9189XA 10000 +E8315 V9189XA 10000 +E8316 V9189XA 10000 +E8317 V9189XA 10000 +E8318 V9189XA 10000 +E8319 V9189XA 10000 +E8320 V9209XA 10000 +E8321 V9209XA 10000 +E8322 V9209XA 10000 +E8323 V9209XA 10000 +E8324 V9209XA 10000 +E8325 V9209XA 10000 +E8326 V9209XA 10000 +E8327 V9209XA 10000 +E8328 V9209XA 10000 +E8329 V9209XA 10000 +E8330 V9338XA 10000 +E8331 V9333XA 10000 +E8332 V9339XA 10000 +E8333 V9339XA 10000 +E8334 V9339XA 10000 +E8335 V9339XA 10000 +E8336 V9339XA 10000 +E8337 V9339XA 10000 +E8338 V9339XA 10000 +E8339 V9339XA 10000 +E8340 V9338XA 10000 +E8341 V9333XA 10000 +E8342 V9339XA 10000 +E8343 V9339XA 10000 +E8344 V9339XA 10000 +E8345 V9339XA 10000 +E8346 V9339XA 10000 +E8347 V9339XA 10000 +E8348 V9339XA 10000 +E8349 V9339XA 10000 +E8350 V9338XA 10000 +E8351 V9333XA 10000 +E8352 V9339XA 10000 +E8353 V9339XA 10000 +E8354 V9339XA 10000 +E8355 V9339XA 10000 +E8356 V9339XA 10000 +E8357 V9339XA 10000 +E8358 V9339XA 10000 +E8359 V9339XA 10000 +E8360 V9364XA 10000 +E8361 V9363XA 10000 +E8362 V9369XA 10000 +E8363 V9369XA 10000 +E8364 V9369XA 10000 +E8365 V9369XA 10000 +E8366 V9369XA 10000 +E8367 V9369XA 10000 +E8368 V9369XA 10000 +E8369 V9369XA 10000 +E8370 V9314XA 10000 +E8371 V9353XA 10000 +E8372 V9309XA 10000 +E8373 V9309XA 10000 +E8374 V9309XA 10000 +E8375 V9309XA 10000 +E8376 V9309XA 10000 +E8377 V9319XA 10000 +E8378 V9309XA 10000 +E8379 V9319XA 10000 +E8380 V9421XA 10000 +E8381 V9422XA 10000 +E8382 V9489XA 10000 +E8383 V9489XA 10000 +E8384 V944XXA 10000 +E8385 V9411XA 10000 +E8386 V9489XA 10000 +E8387 V9489XA 10000 +E8388 V9489XA 10000 +E8389 V9489XA 10000 +E8389 V949XXA 10000 +E8400 V9542XA 10000 +E8401 V97818A 10000 +E8402 V9532XA 10000 +E8403 V9531XA 10000 +E8404 V9531XA 10000 +E8405 V9529XA 10000 +E8406 V9519XA 10000 +E8407 V9722XA 10000 +E8408 V9739XA 10000 +E8409 V9739XA 10000 +E8410 V9543XA 10000 +E8411 V97818A 10000 +E8412 V9533XA 10000 +E8413 V958XXA 10000 +E8414 V9533XA 10000 +E8415 V9523XA 10000 +E8416 V9513XA 10000 +E8417 V9729XA 10000 +E8418 V9739XA 10000 +E8419 V9739XA 10000 +E8426 V969XXA 10000 +E8427 V9729XA 10000 +E8428 V9739XA 10000 +E8429 V9739XA 10000 +E8430 V970XXA 10000 +E8431 V97818A 10000 +E8432 V970XXA 10000 +E8433 V970XXA 10000 +E8434 V970XXA 10000 +E8435 V970XXA 10000 +E8436 V970XXA 10000 +E8437 V9729XA 10000 +E8438 V9739XA 10000 +E8439 V971XXA 10000 +E8440 V970XXA 10000 +E8441 V970XXA 10000 +E8442 V970XXA 10000 +E8443 V970XXA 10000 +E8444 V970XXA 10000 +E8445 V970XXA 10000 +E8446 V970XXA 10000 +E8447 V9729XA 10000 +E8448 V9739XA 10000 +E8449 V9789XA 10000 +E8450 V9540XA 10000 +E8458 V9739XA 10000 +E8459 V9549XA 10000 +E846 V839XXA 10000 +E847 V980XXA 10000 +E848 V988XXA 10000 +E8490 Y92099 10000 +E8491 Y9279 10000 +E8492 Y9264 10000 +E8493 Y9269 10000 +E8494 Y92838 10000 +E8495 Y92410 10000 +E8496 Y9229 10000 +E8497 Y92199 10000 +E8498 Y9289 10000 +E8499 Y929 10000 +E8500 NoDx 11000 +E8501 NoDx 11000 +E8502 NoDx 11000 +E8503 NoDx 11000 +E8504 NoDx 11000 +E8505 NoDx 11000 +E8506 NoDx 11000 +E8507 NoDx 11000 +E8508 NoDx 11000 +E8509 NoDx 11000 +E851 NoDx 11000 +E8520 NoDx 11000 +E8521 NoDx 11000 +E8522 NoDx 11000 +E8523 NoDx 11000 +E8524 NoDx 11000 +E8525 NoDx 11000 +E8528 NoDx 11000 +E8529 NoDx 11000 +E8530 NoDx 11000 +E8531 NoDx 11000 +E8532 NoDx 11000 +E8538 NoDx 11000 +E8539 NoDx 11000 +E8540 NoDx 11000 +E8541 NoDx 11000 +E8542 NoDx 11000 +E8543 NoDx 11000 +E8548 NoDx 11000 +E8550 NoDx 11000 +E8551 NoDx 11000 +E8552 NoDx 11000 +E8553 NoDx 11000 +E8554 NoDx 11000 +E8555 NoDx 11000 +E8556 NoDx 11000 +E8558 NoDx 11000 +E8559 NoDx 11000 +E856 NoDx 11000 +E857 NoDx 11000 +E8580 NoDx 11000 +E8581 NoDx 11000 +E8582 NoDx 11000 +E8583 NoDx 11000 +E8584 NoDx 11000 +E8585 NoDx 11000 +E8586 NoDx 11000 +E8587 NoDx 11000 +E8588 NoDx 11000 +E8589 NoDx 11000 +E8600 NoDx 11000 +E8601 NoDx 11000 +E8602 NoDx 11000 +E8603 NoDx 11000 +E8604 NoDx 11000 +E8608 NoDx 11000 +E8609 NoDx 11000 +E8610 NoDx 11000 +E8611 NoDx 11000 +E8612 NoDx 11000 +E8613 NoDx 11000 +E8614 NoDx 11000 +E8615 NoDx 11000 +E8616 NoDx 11000 +E8619 NoDx 11000 +E8620 NoDx 11000 +E8621 NoDx 11000 +E8622 NoDx 11000 +E8623 NoDx 11000 +E8624 NoDx 11000 +E8629 NoDx 11000 +E8630 NoDx 11000 +E8631 NoDx 11000 +E8632 NoDx 11000 +E8633 NoDx 11000 +E8634 NoDx 11000 +E8635 NoDx 11000 +E8636 NoDx 11000 +E8637 NoDx 11000 +E8638 NoDx 11000 +E8639 NoDx 11000 +E8640 NoDx 11000 +E8641 NoDx 11000 +E8642 NoDx 11000 +E8643 NoDx 11000 +E8644 NoDx 11000 +E8650 NoDx 11000 +E8651 NoDx 11000 +E8652 NoDx 11000 +E8653 NoDx 11000 +E8654 NoDx 11000 +E8655 NoDx 11000 +E8658 NoDx 11000 +E8659 NoDx 11000 +E8660 NoDx 11000 +E8661 NoDx 11000 +E8662 NoDx 11000 +E8663 NoDx 11000 +E8664 NoDx 11000 +E8665 NoDx 11000 +E8666 NoDx 11000 +E8667 NoDx 11000 +E8668 NoDx 11000 +E8669 NoDx 11000 +E867 NoDx 11000 +E8680 NoDx 11000 +E8681 NoDx 11000 +E8682 NoDx 11000 +E8683 NoDx 11000 +E8688 NoDx 11000 +E8689 NoDx 11000 +E8690 NoDx 11000 +E8691 NoDx 11000 +E8692 NoDx 11000 +E8693 NoDx 11000 +E8694 NoDx 11000 +E8698 NoDx 11000 +E8699 NoDx 11000 +E8700 NoDx 11000 +E8701 NoDx 11000 +E8702 NoDx 11000 +E8703 NoDx 11000 +E8704 NoDx 11000 +E8705 NoDx 11000 +E8706 NoDx 11000 +E8707 NoDx 11000 +E8708 NoDx 11000 +E8709 NoDx 11000 +E8710 NoDx 11000 +E8711 NoDx 11000 +E8712 NoDx 11000 +E8713 NoDx 11000 +E8714 NoDx 11000 +E8715 NoDx 11000 +E8716 NoDx 11000 +E8717 NoDx 11000 +E8718 NoDx 11000 +E8719 NoDx 11000 +E8720 Y620 00000 +E8721 Y621 00000 +E8722 Y622 00000 +E8723 Y623 00000 +E8724 Y624 00000 +E8725 Y626 00000 +E8726 Y625 00000 +E8728 Y628 00000 +E8729 Y629 00000 +E8730 Y630 00000 +E8731 Y631 00000 +E8732 Y632 00000 +E8733 Y633 00000 +E8734 Y634 00000 +E8735 Y635 00000 +E8736 Y636 10000 +E8738 Y636 10000 +E8738 Y638 10000 +E8739 Y639 00000 +E8740 NoDx 11000 +E8741 NoDx 11000 +E8742 NoDx 11000 +E8743 NoDx 11000 +E8744 NoDx 11000 +E8745 NoDx 11000 +E8748 NoDx 11000 +E8749 NoDx 11000 +E8750 Y640 00000 +E8751 Y641 00000 +E8752 Y648 10000 +E8758 Y648 10000 +E8759 Y649 00000 +E8760 Y650 00000 +E8761 Y651 00000 +E8762 Y652 00000 +E8763 Y653 00000 +E8764 Y654 00000 +E8765 Y6551 00000 +E8766 Y6552 00000 +E8767 Y6553 00000 +E8768 Y658 10000 +E8769 Y69 00000 +E8780 Y830 00000 +E8781 Y831 00000 +E8782 Y832 00000 +E8783 Y833 00000 +E8784 Y834 00000 +E8785 Y835 00000 +E8786 Y836 00000 +E8788 Y838 00000 +E8789 Y839 10000 +E8789 Y849 10000 +E8790 Y840 00000 +E8791 Y841 00000 +E8792 Y842 00000 +E8793 Y843 00000 +E8794 Y844 00000 +E8795 Y845 00000 +E8796 Y846 00000 +E8797 Y847 00000 +E8798 Y848 10000 +E8799 Y848 10000 +E8800 W100XXA 10000 +E8801 W101XXA 10000 +E8809 W108XXA 10000 +E8810 W11XXXA 10000 +E8811 W12XXXA 10000 +E882 W139XXA 10000 +E8830 W1692XA 10000 +E8831 W170XXA 10000 +E8832 W171XXA 10000 +E8839 W172XXA 10000 +E8840 W098XXA 10000 +E8841 W15XXXA 10000 +E8842 W07XXXA 10000 +E8843 W050XXA 10000 +E8843 W051XXA 10000 +E8843 W052XXA 10000 +E8844 W06XXXA 10000 +E8845 W08XXXA 10000 +E8846 W1811XA 10000 +E8849 W14XXXA 10000 +E8849 W1781XA 10000 +E8849 W1789XA 10000 +E8850 V00141A 10000 +E8851 V00111A 10000 +E8851 V00151A 10000 +E8852 V00131A 10000 +E8853 V00321A 10000 +E8854 V00312A 10000 +E8859 W1849XA 10000 +E8860 W03XXXA 10000 +E8869 V00388A 10000 +E887 W19XXXA 10000 +E8880 W01110A 10000 +E8881 W01198A 10000 +E8888 W1830XA 10000 +E8889 W19XXXA 10000 +E8900 X008XXA 10000 +E8901 X088XXA 10000 +E8902 X001XXA 10000 +E8903 X000XXA 10000 +E8908 X002XXA 10000 +E8909 X008XXA 10000 +E8910 X008XXA 10000 +E8911 X088XXA 10000 +E8912 X001XXA 10000 +E8913 X000XXA 10000 +E8918 X008XXA 10000 +E8919 X008XXA 10000 +E892 X018XXA 10000 +E8930 X05XXXA 10000 +E8931 X020XXA 10000 +E8932 X030XXA 10000 +E8938 X062XXA 10000 +E8939 X088XXA 10000 +E894 X04XXXA 10000 +E895 X028XXA 10000 +E896 X028XXA 10000 +E897 X038XXA 10000 +E8980 X0809XA 10000 +E8981 X0819XA 10000 +E899 X088XXA 10000 +E9000 X30XXXA 10000 +E9001 W92XXXA 10000 +E9009 X30XXXA 10000 +E9010 X31XXXA 10000 +E9011 W9301XA 10000 +E9018 W938XXA 10000 +E9019 X31XXXA 10000 +E9020 W9411XA 10000 +E9021 W9431XA 10000 +E9022 W9421XA 10000 +E9028 W9422XA 10000 +E9029 W99XXXA 10000 +E903 NoDx 11000 +E9040 NoDx 11000 +E9041 NoDx 11000 +E9042 NoDx 11000 +E9043 NoDx 11000 +E9049 NoDx 11000 +E9050 NoDx 11000 +E9051 NoDx 11000 +E9052 NoDx 11000 +E9053 NoDx 11000 +E9054 NoDx 11000 +E9055 NoDx 11000 +E9056 NoDx 11000 +E9057 NoDx 11000 +E9058 NoDx 11000 +E9059 NoDx 11000 +E9060 W540XXA 10000 +E9061 W5311XA 10000 +E9062 W5901XA 10000 +E9063 W5501XA 10000 +E9064 W57XXXA 10000 +E9065 W5581XA 10000 +E9068 W5589XA 10000 +E9069 W64XXXA 10000 +E907 X398XXA 10000 +E9080 X370XXA 10000 +E9081 X371XXA 10000 +E9082 X38XXXA 10000 +E9083 X372XXA 10000 +E9084 X373XXA 10000 +E9088 X378XXA 10000 +E9089 X379XXA 10000 +E9090 X34XXXA 10000 +E9091 X35XXXA 10000 +E9092 X361XXA 10000 +E9093 X360XXA 10000 +E9094 X3741XA 10000 +E9098 X398XXA 10000 +E9099 X398XXA 10000 +E9100 W69XXXA 10000 +E9101 W69XXXA 10000 +E9102 W69XXXA 10000 +E9103 W69XXXA 10000 +E9104 W65XXXA 10000 +E9108 W67XXXA 10000 +E9109 W74XXXA 10000 +E911 NoDx 11000 +E912 NoDx 11000 +E9130 NoDx 11000 +E9131 NoDx 11000 +E9132 NoDx 11000 +E9133 NoDx 11000 +E9138 NoDx 11000 +E9139 NoDx 11000 +E914 NoDx 11000 +E915 NoDx 11000 +E916 W208XXA 10000 +E9170 W2189XA 10000 +E9171 W52XXXA 10000 +E9172 W208XXA 10000 +E9173 W2203XA 10000 +E9174 W2209XA 10000 +E9175 W500XXA 10000 +E9176 W52XXXA 10000 +E9177 W1809XA 10000 +E9178 W1809XA 10000 +E9179 W51XXXA 10000 +E918 W230XXA 10000 +E9190 W309XXA 10000 +E9191 W310XXA 10000 +E9192 W240XXA 10000 +E9193 W311XXA 10000 +E9194 W312XXA 10000 +E9195 W313XXA 10000 +E9196 W241XXA 10000 +E9197 W3183XA 10000 +E9198 W3189XA 10000 +E9199 W319XXA 10000 +E9200 W28XXXA 10000 +E9201 W298XXA 10000 +E9202 W292XXA 10000 +E9203 W260XXA 10000 +E9204 W278XXA 10000 +E9205 W460XXA 10000 +E9205 W461XXA 10000 +E9208 W262XXA 10000 +E9208 W268XXA 10000 +E9208 W269XXA 10000 +E9208 W458XXA 10000 +E9209 W458XXA 10000 +E9210 W35XXXA 10000 +E9211 W368XXA 10000 +E9218 W38XXXA 10000 +E9219 W38XXXA 10000 +E9220 W320XXA 10000 +E9221 W3301XA 10000 +E9222 W3302XA 10000 +E9223 W3303XA 10000 +E9224 W34010A 10000 +E9225 W34011A 10000 +E9228 W34018A 10000 +E9228 W3409XA 10000 +E9229 W3400XA 10000 +E9230 W39XXXA 10000 +E9231 W400XXA 10000 +E9232 W401XXA 10000 +E9238 W408XXA 10000 +E9239 W409XXA 10000 +E9240 X12XXXA 10000 +E9241 NoDx 11000 +E9242 X118XXA 10000 +E9248 X19XXXA 10000 +E9249 X19XXXA 10000 +E9250 W860XXA 10000 +E9251 W85XXXA 10000 +E9252 W861XXA 10000 +E9258 W868XXA 10000 +E9259 W868XXA 10000 +E9260 W900XXA 10000 +E9261 W901XXA 10000 +E9262 W898XXA 10000 +E9263 W880XXA 10000 +E9264 W902XXA 10000 +E9265 W881XXA 10000 +E9268 W881XXA 10000 +E9269 W908XXA 10000 +E9270 X500XXA 10000 +E9270 X500XXD 10000 +E9271 X501XXA 10000 +E9271 X501XXD 10000 +E9272 NoDx 11000 +E9273 X503XXA 10000 +E9273 X503XXD 10000 +E9274 X503XXA 10000 +E9274 X503XXD 10000 +E9278 X509XXA 10000 +E9278 X509XXD 10000 +E9279 X509XXA 10000 +E9279 X509XXD 10000 +E9280 X52XXXA 10000 +E9281 W429XXA 10000 +E9282 X58XXXA 10000 +E9283 W503XXA 10000 +E9284 W4901XA 10000 +E9285 W4909XA 10000 +E9286 NoDx 11000 +E9287 X58XXXA 10000 +E9288 X58XXXA 10000 +E9289 X58XXXA 10000 +E9290 V870XXS 10000 +E9290 V871XXS 10000 +E9290 V872XXS 10000 +E9290 V873XXS 10000 +E9290 V874XXS 10000 +E9290 V875XXS 10000 +E9290 V876XXS 10000 +E9290 V877XXS 10000 +E9290 V878XXS 10000 +E9290 V879XXS 10000 +E9290 V892XXS 10000 +E9290 V893XXS 10000 +E9290 V899XXS 10000 +E9291 V889XXS 10000 +E9291 V891XXS 10000 +E9291 V9789XS 10000 +E9291 V988XXS 10000 +E9291 V99XXXS 10000 +E9292 NoDx 11000 +E9293 W1789XS 10000 +E9293 W1800XS 10000 +E9293 W1830XS 10000 +E9293 W19XXXS 10000 +E9294 NoDx 11000 +E9295 W92XXXS 10000 +E9295 W99XXXS 10000 +E9295 X398XXS 10000 +E9298 X500XXS 10000 +E9298 X501XXS 10000 +E9298 X503XXS 10000 +E9298 X509XXS 10000 +E9298 Y33XXXS 10000 +E9299 X58XXXS 10000 +E9300 NoDx 11000 +E9301 NoDx 11000 +E9302 NoDx 11000 +E9303 NoDx 11000 +E9304 NoDx 11000 +E9305 NoDx 11000 +E9306 NoDx 11000 +E9307 NoDx 11000 +E9308 NoDx 11000 +E9309 NoDx 11000 +E9310 NoDx 11000 +E9311 NoDx 11000 +E9312 NoDx 11000 +E9313 NoDx 11000 +E9314 NoDx 11000 +E9315 NoDx 11000 +E9316 NoDx 11000 +E9317 NoDx 11000 +E9318 NoDx 11000 +E9319 NoDx 11000 +E9320 NoDx 11000 +E9321 NoDx 11000 +E9322 NoDx 11000 +E9323 NoDx 11000 +E9324 NoDx 11000 +E9325 NoDx 11000 +E9326 NoDx 11000 +E9327 NoDx 11000 +E9328 NoDx 11000 +E9329 NoDx 11000 +E9330 NoDx 11000 +E9331 NoDx 11000 +E9332 NoDx 11000 +E9333 NoDx 11000 +E9334 NoDx 11000 +E9335 NoDx 11000 +E9336 NoDx 11000 +E9337 NoDx 11000 +E9338 NoDx 11000 +E9339 NoDx 11000 +E9340 NoDx 11000 +E9341 NoDx 11000 +E9342 NoDx 11000 +E9343 NoDx 11000 +E9344 NoDx 11000 +E9345 NoDx 11000 +E9346 NoDx 11000 +E9347 NoDx 11000 +E9348 NoDx 11000 +E9349 NoDx 11000 +E9350 NoDx 11000 +E9351 NoDx 11000 +E9352 NoDx 11000 +E9353 NoDx 11000 +E9354 NoDx 11000 +E9355 NoDx 11000 +E9356 NoDx 11000 +E9357 NoDx 11000 +E9358 NoDx 11000 +E9359 NoDx 11000 +E9360 NoDx 11000 +E9361 NoDx 11000 +E9362 NoDx 11000 +E9363 NoDx 11000 +E9364 NoDx 11000 +E9370 NoDx 11000 +E9371 NoDx 11000 +E9372 NoDx 11000 +E9373 NoDx 11000 +E9374 NoDx 11000 +E9375 NoDx 11000 +E9376 NoDx 11000 +E9378 NoDx 11000 +E9379 NoDx 11000 +E9380 NoDx 11000 +E9381 NoDx 11000 +E9382 NoDx 11000 +E9383 NoDx 11000 +E9384 NoDx 11000 +E9385 NoDx 11000 +E9386 NoDx 11000 +E9387 NoDx 11000 +E9389 NoDx 11000 +E9390 NoDx 11000 +E9391 NoDx 11000 +E9392 NoDx 11000 +E9393 NoDx 11000 +E9394 NoDx 11000 +E9395 NoDx 11000 +E9396 NoDx 11000 +E9397 NoDx 11000 +E9398 NoDx 11000 +E9399 NoDx 11000 +E9400 NoDx 11000 +E9401 NoDx 11000 +E9408 NoDx 11000 +E9409 NoDx 11000 +E9410 NoDx 11000 +E9411 NoDx 11000 +E9412 NoDx 11000 +E9413 NoDx 11000 +E9419 NoDx 11000 +E9420 NoDx 11000 +E9421 NoDx 11000 +E9422 NoDx 11000 +E9423 NoDx 11000 +E9424 NoDx 11000 +E9425 NoDx 11000 +E9426 NoDx 11000 +E9427 NoDx 11000 +E9428 NoDx 11000 +E9429 NoDx 11000 +E9430 NoDx 11000 +E9431 NoDx 11000 +E9432 NoDx 11000 +E9433 NoDx 11000 +E9434 NoDx 11000 +E9435 NoDx 11000 +E9436 NoDx 11000 +E9438 NoDx 11000 +E9439 NoDx 11000 +E9440 NoDx 11000 +E9441 NoDx 11000 +E9442 NoDx 11000 +E9443 NoDx 11000 +E9444 NoDx 11000 +E9445 NoDx 11000 +E9446 NoDx 11000 +E9447 NoDx 11000 +E9450 NoDx 11000 +E9451 NoDx 11000 +E9452 NoDx 11000 +E9453 NoDx 11000 +E9454 NoDx 11000 +E9455 NoDx 11000 +E9456 NoDx 11000 +E9457 NoDx 11000 +E9458 NoDx 11000 +E9460 NoDx 11000 +E9461 NoDx 11000 +E9462 NoDx 11000 +E9463 NoDx 11000 +E9464 NoDx 11000 +E9465 NoDx 11000 +E9466 NoDx 11000 +E9467 NoDx 11000 +E9468 NoDx 11000 +E9469 NoDx 11000 +E9470 NoDx 11000 +E9471 NoDx 11000 +E9472 NoDx 11000 +E9473 NoDx 11000 +E9474 NoDx 11000 +E9478 NoDx 11000 +E9479 NoDx 11000 +E9480 NoDx 11000 +E9481 NoDx 11000 +E9482 NoDx 11000 +E9483 NoDx 11000 +E9484 NoDx 11000 +E9485 NoDx 11000 +E9486 NoDx 11000 +E9488 NoDx 11000 +E9489 NoDx 11000 +E9490 NoDx 11000 +E9491 NoDx 11000 +E9492 NoDx 11000 +E9493 NoDx 11000 +E9494 NoDx 11000 +E9495 NoDx 11000 +E9496 NoDx 11000 +E9497 NoDx 11000 +E9499 NoDx 11000 +E9500 NoDx 11000 +E9501 NoDx 11000 +E9502 NoDx 11000 +E9503 NoDx 11000 +E9504 NoDx 11000 +E9505 NoDx 11000 +E9506 NoDx 11000 +E9507 NoDx 11000 +E9508 NoDx 11000 +E9509 NoDx 11000 +E9510 NoDx 11000 +E9511 NoDx 11000 +E9518 NoDx 11000 +E9520 NoDx 11000 +E9521 NoDx 11000 +E9528 NoDx 11000 +E9529 NoDx 11000 +E9530 NoDx 11000 +E9531 NoDx 11000 +E9538 NoDx 11000 +E9539 NoDx 11000 +E954 X718XXA 10000 +E954 X719XXA 10000 +E9550 X72XXXA 10000 +E9551 X730XXA 10000 +E9552 X731XXA 10000 +E9553 X732XXA 10000 +E9554 X739XXA 10000 +E9555 X75XXXA 10000 +E9556 X7401XA 10000 +E9557 X7402XA 10000 +E9559 X749XXA 10000 +E956 X789XXA 10000 +E9570 X80XXXA 10111 +E9570 Y92009 10112 +E9571 X80XXXA 10111 +E9571 Y9289 10112 +E9572 X80XXXA 10111 +E9572 Y92828 10112 +E9572 Y92838 10112 +E9579 X80XXXA 10111 +E9579 Y929 10112 +E9580 X818XXA 10000 +E9581 X76XXXA 10000 +E9582 X772XXA 10000 +E9583 X832XXA 10000 +E9584 X831XXA 10000 +E9585 X828XXA 10000 +E9586 X830XXA 10000 +E9587 X838XXA 10000 +E9588 X838XXA 10000 +E9589 X838XXA 10000 +E959 X718XXS 10000 +E959 X719XXS 10000 +E959 X72XXXS 10000 +E959 X730XXS 10000 +E959 X731XXS 10000 +E959 X732XXS 10000 +E959 X7401XS 10000 +E959 X7402XS 10000 +E959 X748XXS 10000 +E959 X749XXS 10000 +E959 X75XXXS 10000 +E959 X76XXXS 10000 +E959 X772XXS 10000 +E959 X789XXS 10000 +E959 X818XXS 10000 +E959 X828XXS 10000 +E959 X830XXS 10000 +E959 X831XXS 10000 +E959 X832XXS 10000 +E959 X838XXS 10000 +E9600 Y040XXA 10000 +E9601 Y048XXA 10000 +E961 NoDx 11000 +E9620 NoDx 11000 +E9621 NoDx 11000 +E9622 NoDx 11000 +E9629 NoDx 11000 +E963 NoDx 11000 +E964 X929XXA 10000 +E9650 X93XXXA 10000 +E9651 X940XXA 10000 +E9652 X941XXA 10000 +E9653 X942XXA 10000 +E9654 X959XXA 10000 +E9655 X960XXA 10000 +E9656 X961XXA 10000 +E9657 X962XXA 10000 +E9658 X968XXA 10000 +E9659 X969XXA 10000 +E966 X999XXA 10000 +E9670 Y0711 10000 +E9671 Y07499 10000 +E9672 Y0712 10000 +E9673 Y0701 10000 +E9674 Y0750 10000 +E9675 Y07410 10000 +E9676 Y07499 10000 +E9677 Y07499 10000 +E9678 Y0759 10000 +E9679 Y079 10000 +E9680 X97XXXA 10000 +E9681 Y01XXXA 10000 +E9682 Y00XXXA 10000 +E9683 X982XXA 10000 +E9684 Y0750 10000 +E9685 Y030XXA 10000 +E9686 X9501XA 10000 +E9687 Y041XXA 10000 +E9688 Y0889XA 10000 +E9689 Y09 00000 +E969 X929XXS 10000 +E969 X959XXS 10000 +E969 X969XXS 10000 +E969 X989XXS 10000 +E969 X999XXS 10000 +E969 Y00XXXS 10000 +E969 Y01XXXS 10000 +E969 Y030XXS 10000 +E969 Y040XXS 10000 +E969 Y041XXS 10000 +E969 Y048XXS 10000 +E969 Y0889XS 10000 +E970 Y35003A 10000 +E971 Y35103A 10000 +E972 Y35203A 10000 +E973 Y35303A 10000 +E974 Y35403A 10000 +E975 Y35893A 10000 +E976 Y3593XA 10000 +E977 Y35003S 10000 +E977 Y35103S 10000 +E977 Y35203S 10000 +E977 Y35303S 10000 +E977 Y35403S 10000 +E977 Y35893S 10000 +E977 Y3593XS 10000 +E978 NoDx 11000 +E9790 Y380X2A 10000 +E9791 Y381X2A 10000 +E9792 Y382X2A 10000 +E9793 Y383X2A 10000 +E9794 Y384X2A 10000 +E9795 Y385X2A 10000 +E9796 Y386X2A 10000 +E9797 Y387X2A 10000 +E9798 Y38892A 10000 +E9799 Y389X2A 10000 +E9800 NoDx 11000 +E9801 NoDx 11000 +E9802 NoDx 11000 +E9803 NoDx 11000 +E9804 NoDx 11000 +E9805 NoDx 11000 +E9806 NoDx 11000 +E9807 NoDx 11000 +E9808 NoDx 11000 +E9809 NoDx 11000 +E9810 NoDx 11000 +E9811 NoDx 11000 +E9818 NoDx 11000 +E9820 NoDx 11000 +E9821 NoDx 11000 +E9828 NoDx 11000 +E9829 NoDx 11000 +E9830 NoDx 11000 +E9831 NoDx 11000 +E9838 NoDx 11000 +E9839 NoDx 11000 +E984 NoDx 11000 +E9850 Y22XXXA 10000 +E9851 Y230XXA 10000 +E9852 Y231XXA 10000 +E9853 Y232XXA 10000 +E9854 Y249XXA 10000 +E9855 Y25XXXA 10000 +E9856 Y240XXA 10000 +E9857 Y248XXA 10000 +E986 Y289XXA 10000 +E9870 Y30XXXA 10000 +E9871 Y30XXXA 10000 +E9872 Y30XXXA 10000 +E9879 Y30XXXA 10000 +E9880 Y31XXXA 10000 +E9881 Y26XXXA 10000 +E9882 Y272XXA 10000 +E9883 Y33XXXA 10000 +E9884 Y33XXXA 10000 +E9885 Y32XXXA 10000 +E9886 Y33XXXA 10000 +E9887 Y33XXXA 10000 +E9888 Y33XXXA 10000 +E9889 Y33XXXA 10000 +E989 NoDx 11000 +E9900 Y36310A 10000 +E9901 Y36330A 10000 +E9902 Y36320A 10000 +E9902 Y36321A 10000 +E9903 Y36390A 10000 +E9909 Y3690XA 10000 +E9909 Y3692XA 10000 +E9910 Y36410A 10000 +E9910 Y36411A 10000 +E9911 Y36420A 10000 +E9912 Y36430A 10000 +E9913 Y36291A 10000 +E9914 Y36250A 10000 +E9915 Y36260A 10000 +E9916 Y36260A 10000 +E9917 Y36260A 10000 +E9918 Y36270A 10000 +E9919 Y36200A 10000 +E9920 Y36040A 10000 +E9921 Y36010A 10000 +E9922 Y36020A 10000 +E9923 Y36030A 10000 +E9928 Y36090A 10000 +E9929 Y36050A 10000 +E9930 Y36210A 10000 +E9931 Y36220A 10000 +E9932 Y36290A 10000 +E9933 Y36230A 10000 +E9934 Y36230A 10000 +E9935 Y36230A 10000 +E9936 Y36240A 10000 +E9937 Y36240A 10000 +E9938 Y36290A 10000 +E9939 Y36200A 10000 +E9940 Y36110A 10000 +E9941 Y36141A 10000 +E9942 Y36120A 10000 +E9943 Y36130A 10000 +E9948 Y36191A 10000 +E9949 Y36100A 10000 +E9950 Y36440A 10000 +E9951 Y36450A 10000 +E9952 Y36450A 10000 +E9953 Y36460A 10000 +E9954 Y36470A 10000 +E9958 Y36490A 10000 +E9958 Y36491A 10000 +E9959 Y36490A 10000 +E9960 Y36510A 10000 +E9960 Y36511A 10000 +E9961 Y36520A 10000 +E9962 Y36530A 10000 +E9963 Y36540A 10000 +E9963 Y36541A 10000 +E9968 Y36590A 10000 +E9969 Y36500A 10000 +E9970 Y367X0A 10000 +E9970 Y367X0D 10000 +E9971 Y366X1A 10000 +E9972 Y367X0A 10000 +E9973 Y3691XA 10000 +E9978 Y367X0A 10000 +E9979 Y367X1A 10000 +E9980 Y36810A 10000 +E9980 Y36811A 10000 +E9981 Y36820A 10000 +E9981 Y36821A 10000 +E9988 Y36880A 10000 +E9988 Y36881A 10000 +E9989 Y36890A 10000 +E9989 Y36891A 10000 +E9990 Y36010S 10000 +E9990 Y36030S 10000 +E9990 Y36050S 10000 +E9990 Y36141S 10000 +E9990 Y36191S 10000 +E9990 Y36200S 10000 +E9990 Y36210S 10000 +E9990 Y36220S 10000 +E9990 Y36230S 10000 +E9990 Y36240S 10000 +E9990 Y36250S 10000 +E9990 Y36260S 10000 +E9990 Y36270S 10000 +E9990 Y36290S 10000 +E9990 Y36321S 10000 +E9990 Y36411S 10000 +E9990 Y36491S 10000 +E9990 Y36511S 10000 +E9990 Y366X1S 10000 +E9990 Y367X0S 10000 +E9991 Y380X2S 10000 +E9991 Y381X2S 10000 +E9991 Y382X2S 10000 +E9991 Y383X2S 10000 +E9991 Y384X2S 10000 +E9991 Y385X2S 10000 +E9991 Y386X2S 10000 +E9991 Y387X2S 10000 +E9991 Y38892S 10000 +E9991 Y389X2S 10000 +V010 Z2009 10000 +V011 Z201 00000 +V012 Z2089 10000 +V013 Z2089 10000 +V014 Z204 00000 +V015 Z203 00000 +V016 Z202 00000 +V0171 Z20820 00000 +V0179 Z206 10000 +V0179 Z20828 10000 +V0181 Z20810 00000 +V0182 Z2089 10000 +V0183 Z2001 00000 +V0184 Z20811 00000 +V0189 Z2089 10000 +V019 Z209 00000 +V020 Z221 10000 +V021 Z220 00000 +V022 Z221 10000 +V023 Z221 10000 +V024 Z222 00000 +V0251 Z22330 10000 +V0252 Z22338 00000 +V0253 Z22321 00000 +V0254 Z22322 00000 +V0259 Z2231 10000 +V0259 Z2239 10000 +V0260 NoDx 11000 +V0261 NoDx 11000 +V0262 NoDx 11000 +V0269 NoDx 11000 +V027 Z224 10000 +V028 Z224 10000 +V029 Z228 10000 +V030 Z23 10000 +V031 Z23 10000 +V032 Z23 10000 +V033 Z23 10000 +V034 Z23 10000 +V035 Z23 10000 +V036 Z23 10000 +V037 Z23 10000 +V0381 Z23 10000 +V0382 Z23 10000 +V0389 Z23 10000 +V039 Z23 10000 +V040 Z23 10000 +V041 Z23 10000 +V042 Z23 10000 +V043 Z23 10000 +V044 Z23 10000 +V045 Z23 10000 +V046 Z23 10000 +V047 Z23 10000 +V0481 Z23 10000 +V0482 Z23 10000 +V0489 Z23 10000 +V050 Z23 10000 +V051 Z23 10000 +V052 Z23 10000 +V053 Z23 10000 +V054 Z23 10000 +V058 Z23 10000 +V059 Z23 10000 +V060 Z23 10000 +V061 Z23 10000 +V062 Z23 10000 +V063 Z23 10000 +V064 Z23 10000 +V065 Z23 10000 +V066 Z23 10000 +V068 Z23 10000 +V069 Z23 10000 +V070 Z5189 10000 +V071 Z516 00000 +V072 Z2911 10000 +V0731 Z293 00000 +V0739 Z298 10000 +V074 Z79890 00000 +V0751 Z79810 00000 +V0752 Z79811 00000 +V0759 Z79818 00000 +V078 Z2912 10000 +V078 Z2913 10000 +V078 Z2914 10000 +V079 Z299 10000 +V08 Z21 00000 +V090 Z1611 00000 +V091 Z1610 10000 +V091 Z1612 10000 +V091 Z1619 10000 +V092 Z1629 10000 +V093 Z1629 10000 +V094 Z1629 10000 +V0950 Z1623 10000 +V0951 Z1623 10000 +V096 Z1629 10000 +V0970 Z16341 00000 +V0971 Z16342 00000 +V0980 Z1620 10000 +V0980 Z1621 10000 +V0980 Z1622 10000 +V0980 Z1631 10000 +V0980 Z1632 10000 +V0980 Z1633 10000 +V0980 Z1639 10000 +V0981 Z1635 10000 +V0990 Z1630 10000 +V0991 Z1624 10000 +V1000 Z8500 00000 +V1001 Z85810 00000 +V1002 Z85818 10000 +V1002 Z85819 10000 +V1003 Z8501 00000 +V1004 Z85028 10000 +V1005 Z85038 10000 +V1006 Z85048 10000 +V1007 Z8505 00000 +V1009 Z85068 10000 +V1009 Z8507 10000 +V1009 Z8509 10000 +V1011 Z85118 10000 +V1012 Z8512 00000 +V1020 Z8520 00000 +V1021 Z8521 00000 +V1022 Z8522 00000 +V1029 Z85238 10000 +V1029 Z8529 10000 +V103 Z853 00000 +V1040 Z8540 00000 +V1041 Z8541 00000 +V1042 Z8542 00000 +V1043 Z8543 00000 +V1044 Z8544 00000 +V1045 Z8545 00000 +V1046 Z8546 00000 +V1047 Z8547 00000 +V1048 Z8548 00000 +V1049 Z8549 00000 +V1050 Z8550 00000 +V1051 Z8551 00000 +V1052 Z85528 10000 +V1053 Z8553 00000 +V1059 Z8554 10000 +V1059 Z8559 10000 +V1060 Z856 10000 +V1061 Z856 10000 +V1062 Z856 10000 +V1063 Z856 10000 +V1069 Z856 10000 +V1071 Z8579 10000 +V1071 Z85831 10000 +V1072 Z8571 00000 +V1079 Z8579 10000 +V1081 Z85830 00000 +V1082 Z85820 00000 +V1083 Z85828 10000 +V1084 Z85840 00000 +V1085 Z85841 00000 +V1086 Z85848 00000 +V1087 Z85850 00000 +V1088 Z85858 00000 +V1089 Z85831 10000 +V1089 Z8589 10000 +V1090 Z859 00000 +V1091 Z85020 10000 +V1091 Z85030 10000 +V1091 Z85040 10000 +V1091 Z85060 10000 +V1091 Z85110 10000 +V1091 Z85230 10000 +V1091 Z85520 10000 +V1091 Z85821 10000 +V110 Z658 10000 +V111 Z658 10000 +V112 Z658 10000 +V113 Z658 10000 +V114 Z8651 00000 +V118 Z8659 10000 +V119 Z8659 10000 +V1200 Z8619 10000 +V1201 Z8611 00000 +V1202 Z8612 00000 +V1203 Z8613 00000 +V1204 Z8614 00000 +V1209 Z8619 10000 +V121 Z8639 10000 +V1221 Z8632 00000 +V1229 Z862 10000 +V1229 Z8639 10000 +V123 Z862 10000 +V1240 Z8669 10000 +V1241 Z86011 00000 +V1242 Z8661 00000 +V1249 Z8669 10000 +V1250 Z8679 10000 +V1251 Z86718 00000 +V1252 Z8672 00000 +V1253 Z8674 00000 +V1254 Z8673 00000 +V1255 Z86711 00000 +V1259 Z8679 10000 +V1260 Z8709 10000 +V1261 Z8701 00000 +V1269 Z8709 10000 +V1270 Z8719 10000 +V1271 Z8711 00000 +V1272 Z86010 00000 +V1279 Z8719 10000 +V1300 Z87448 10000 +V1301 Z87442 00000 +V1302 Z87440 00000 +V1303 Z87441 00000 +V1309 Z87448 10000 +V131 Z8759 10000 +V1321 Z8751 00000 +V1322 Z87410 00000 +V1323 Z87411 00000 +V1324 Z87412 00000 +V1329 Z8742 10000 +V1329 Z8759 10000 +V133 Z872 00000 +V134 Z8739 10000 +V1351 Z87311 10000 +V1352 Z87312 00000 +V1359 Z8739 10000 +V1361 Z87710 00000 +V1362 Z87718 00000 +V1363 Z87728 10000 +V1364 Z87720 10000 +V1364 Z87721 10000 +V1364 Z87730 10000 +V1364 Z87790 10000 +V1365 Z8774 00000 +V1366 Z8775 00000 +V1367 Z87738 10000 +V1368 Z8776 00000 +V1369 Z87798 00000 +V137 Z87898 10000 +V1381 Z87892 00000 +V1389 Z87898 10000 +V139 Z87898 10000 +V140 Z880 00000 +V141 Z881 00000 +V142 Z882 00000 +V143 Z883 00000 +V144 Z884 00000 +V145 Z885 00000 +V146 Z886 00000 +V147 Z887 00000 +V148 Z888 00000 +V149 Z889 00000 +V1501 Z91010 00000 +V1502 Z91011 00000 +V1503 Z91012 00000 +V1504 Z91013 00000 +V1505 Z91018 10000 +V1506 Z91038 10000 +V1507 Z91040 00000 +V1508 Z91041 00000 +V1509 Z91048 10000 +V151 Z98890 10000 +V1521 Z98870 00000 +V1522 Z98871 00000 +V1529 Z98890 10000 +V153 Z923 00000 +V1541 Z91410 10000 +V1542 Z91411 10000 +V1542 Z91412 10000 +V1549 Z9149 10000 +V1551 Z8781 00000 +V1552 Z87820 00000 +V1553 Z87821 00000 +V1559 Z87828 10000 +V156 Z9189 10000 +V157 Z920 00000 +V1580 Z9283 00000 +V1581 Z9119 10000 +V1582 Z87891 10000 +V1583 Z283 00000 +V1584 Z77090 00000 +V1585 Z578 10000 +V1586 Z77011 00000 +V1587 Z9281 00000 +V1588 Z9181 00000 +V1589 Z779 10000 +V1589 Z9284 10000 +V1589 Z9289 10000 +V159 Z9189 10000 +V160 Z800 00000 +V161 Z801 00000 +V162 Z802 00000 +V163 Z803 00000 +V1640 Z8049 10000 +V1641 Z8041 00000 +V1642 Z8042 00000 +V1643 Z8043 00000 +V1649 Z8049 10000 +V1651 Z8051 00000 +V1652 Z8052 00000 +V1659 Z8059 00000 +V166 Z806 00000 +V167 Z807 00000 +V168 Z808 00000 +V169 Z809 00000 +V170 Z818 00000 +V171 Z823 00000 +V172 Z820 00000 +V173 Z8249 10000 +V1741 Z8241 00000 +V1749 Z8249 10000 +V175 Z825 10000 +V176 Z836 10000 +V177 Z8261 00000 +V1781 Z8262 00000 +V1789 Z8269 00000 +V180 Z833 00000 +V1811 Z8341 00000 +V1819 Z8342 10000 +V1819 Z8349 10000 +V182 Z832 10000 +V183 Z832 10000 +V184 Z810 00000 +V1851 Z8371 00000 +V1859 Z8379 00000 +V1861 Z8271 00000 +V1869 Z841 10000 +V187 Z842 00000 +V188 Z831 00000 +V189 Z8481 10000 +V189 Z8482 10000 +V190 Z821 00000 +V1911 Z83511 00000 +V1919 Z83518 00000 +V192 Z822 00000 +V193 Z8352 10000 +V194 Z840 10000 +V195 Z8279 00000 +V196 Z8489 10000 +V197 Z843 00000 +V198 Z8489 10000 +V200 Z761 00000 +V201 Z762 00000 +V202 Z00129 10000 +V2031 Z00110 00000 +V2032 Z00111 00000 +V210 Z002 10000 +V211 Z003 10000 +V212 Z003 10000 +V2130 P0710 10000 +V2131 P0701 10000 +V2132 P0702 10000 +V2132 P0703 10000 +V2133 P0714 10000 +V2133 P0715 10000 +V2134 P0716 10000 +V2134 P0717 10000 +V2135 P0718 10000 +V218 Z002 10000 +V218 Z003 10000 +V219 Z87898 10000 +V220 Z3400 10000 +V221 Z3480 10000 +V221 Z3490 10000 +V222 Z331 10000 +V222 Z333 10000 +V230 O0900 10000 +V231 O0910 10000 +V231 O09A0 10000 +V232 O09291 10000 +V233 O0940 10000 +V2341 O09211 10000 +V2342 O0910 10000 +V2349 O09291 10000 +V235 O09291 10000 +V237 O0930 10000 +V2381 O09511 10000 +V2382 O09521 10000 +V2383 O09611 10000 +V2384 O09621 10000 +V2385 O09819 10000 +V2386 O09821 10000 +V2386 O09822 10000 +V2386 O09823 10000 +V2386 O09829 10000 +V2387 O3680X0 10000 +V2389 O09891 10000 +V2389 O09892 10000 +V2389 O09893 10000 +V2389 O09899 10000 +V239 O0990 10000 +V239 O0991 10000 +V239 O0992 10000 +V239 O0993 10000 +V240 Z390 00000 +V241 Z391 00000 +V242 Z392 00000 +V2501 Z30011 00000 +V2502 Z30015 10000 +V2502 Z30016 10000 +V2502 Z30017 10000 +V2502 Z30018 10000 +V2503 Z30012 00000 +V2504 Z3002 00000 +V2509 Z3009 00000 +V2511 Z30430 00000 +V2512 Z30432 00000 +V2513 Z30433 00000 +V252 Z302 00000 +V253 Z308 10000 +V2540 Z3040 00000 +V2541 Z3041 00000 +V2542 Z30431 00000 +V2543 Z3046 00000 +V2549 Z3042 10000 +V2549 Z3044 10000 +V2549 Z3045 10000 +V2549 Z3049 10000 +V255 Z308 10000 +V258 Z308 10000 +V259 Z309 00000 +V260 Z310 00000 +V261 Z3189 10000 +V2621 Z3141 00000 +V2622 Z3142 00000 +V2629 Z3149 00000 +V2631 Z31430 00000 +V2632 Z31438 10000 +V2633 Z315 10000 +V2634 Z31440 00000 +V2635 Z31441 00000 +V2639 Z31448 10000 +V2641 Z3161 00000 +V2642 Z3162 00000 +V2649 Z3169 00000 +V2651 Z9851 00000 +V2652 Z9852 00000 +V2681 Z3183 00000 +V2682 Z3184 00000 +V2689 Z317 10000 +V2689 Z3189 10000 +V269 Z319 00000 +V270 Z370 00000 +V271 Z371 00000 +V272 Z372 00000 +V273 Z373 00000 +V274 Z374 00000 +V275 Z3759 10000 +V276 Z3769 10000 +V277 Z377 00000 +V279 Z379 00000 +V280 Z36 10000 +V281 Z36 10000 +V282 Z36 10000 +V283 Z36 10000 +V284 Z36 10000 +V285 Z36 10000 +V286 Z36 10000 +V2881 Z36 10000 +V2882 Z36 10000 +V2889 Z36 10000 +V289 Z36 10000 +V290 Z051 10000 +V291 Z052 10000 +V292 Z053 10000 +V293 Z0541 10000 +V293 Z0542 10000 +V298 Z050 10000 +V298 Z0543 10000 +V298 Z055 10000 +V298 Z056 10000 +V298 Z0571 10000 +V298 Z0572 10000 +V298 Z0573 10000 +V298 Z058 10000 +V299 Z059 10000 +V3000 Z3800 10000 +V3001 Z3801 10000 +V301 Z381 10000 +V302 Z381 10000 +V3100 Z3830 10000 +V3101 Z3831 10000 +V311 Z384 10000 +V312 Z384 10000 +V3200 Z3830 10000 +V3201 Z3831 10000 +V321 Z384 10000 +V322 Z384 10000 +V3300 Z3830 10000 +V3301 Z3831 10000 +V331 Z384 10000 +V332 Z384 10000 +V3400 Z3861 10000 +V3401 Z3869 10000 +V341 Z387 10000 +V342 Z387 10000 +V3500 Z3868 10000 +V3501 Z3869 10000 +V351 Z387 10000 +V352 Z387 10000 +V3600 Z3868 10000 +V3601 Z3869 10000 +V361 Z387 10000 +V362 Z387 10000 +V3700 Z3868 10000 +V3701 Z3869 10000 +V371 Z387 10000 +V372 Z387 10000 +V3900 Z3800 10000 +V3901 Z3801 10000 +V391 Z381 10000 +V392 Z381 10000 +V400 F819 10000 +V401 Z8659 10000 +V402 F489 10000 +V4031 Z9183 00000 +V4039 F69 10000 +V409 F69 10000 +V410 H547 10000 +V410 Z973 10000 +V411 H579 10000 +V412 R6889 10000 +V413 H9390 10000 +V414 R4789 10000 +V415 R439 10000 +V416 R1310 10000 +V417 F529 10000 +V418 R6889 10000 +V419 R69 10000 +V420 Z940 10000 +V421 Z941 10000 +V422 Z953 10000 +V423 Z945 00000 +V424 Z946 00000 +V425 Z947 00000 +V426 Z942 10000 +V427 Z944 10000 +V4281 Z9481 10000 +V4282 Z9484 00000 +V4283 Z9483 00000 +V4284 Z9482 00000 +V4289 Z9489 10000 +V429 Z949 10000 +V430 Z970 00000 +V431 Z961 00000 +V4321 Z95811 00000 +V4322 Z95812 00000 +V433 Z952 10000 +V434 Z95828 10000 +V435 Z960 10000 +V4360 Z9660 00000 +V4361 Z96619 10000 +V4362 Z96629 10000 +V4363 Z96639 10000 +V4364 Z96649 10000 +V4365 Z96659 10000 +V4366 Z96669 10000 +V4369 Z96698 10000 +V437 Z9710 10000 +V4381 Z963 00000 +V4382 Z9882 10000 +V4383 Z9681 00000 +V4389 Z969 10000 +V440 Z930 00000 +V441 Z931 00000 +V442 Z932 00000 +V443 Z933 00000 +V444 Z934 00000 +V4450 Z9350 00000 +V4451 Z9351 00000 +V4452 Z9352 00000 +V4459 Z9359 00000 +V446 Z936 00000 +V447 Z938 10000 +V448 Z938 10000 +V449 Z939 00000 +V4500 Z959 10000 +V4501 Z950 00000 +V4502 Z95810 00000 +V4509 Z95818 10000 +V4511 Z992 00000 +V4512 Z9115 00000 +V452 Z982 00000 +V453 Z980 00000 +V454 M960 10000 +V454 Z981 10000 +V4551 Z975 10000 +V4552 Z975 10000 +V4559 Z975 10000 +V4561 Z9849 10000 +V4569 Z9883 10000 +V4571 Z9010 10000 +V4572 Z9049 10000 +V4573 Z905 00000 +V4574 Z906 00000 +V4575 Z903 00000 +V4576 Z902 00000 +V4577 Z9079 10000 +V4578 Z9001 00000 +V4579 Z9089 10000 +V4581 Z951 00000 +V4582 Z9861 10000 +V4583 Z9886 00000 +V4584 Z98811 10000 +V4585 Z9641 00000 +V4586 Z9884 00000 +V4587 Z9885 00000 +V4588 Z9282 00000 +V4589 Z974 10000 +V4589 Z98890 10000 +V4589 Z98891 10000 +V460 Z990 00000 +V4611 Z9911 10000 +V4612 Z9912 00000 +V4613 Z9911 10000 +V4614 J95850 00000 +V462 Z9981 00000 +V463 Z993 00000 +V468 Z9989 10000 +V469 Z9989 10000 +V470 Z87898 10000 +V471 R6889 10000 +V472 R6889 10000 +V473 R6889 10000 +V474 R6889 10000 +V475 R6889 10000 +V479 R6889 10000 +V480 R6889 10000 +V481 R6889 10000 +V482 R6889 10000 +V483 R6889 10000 +V484 R6889 10000 +V485 R6889 10000 +V486 R6889 10000 +V487 R6889 10000 +V488 R6889 10000 +V489 R6889 10000 +V490 R6889 10000 +V491 R6889 10000 +V492 R6889 10000 +V493 R6889 10000 +V494 R6889 10000 +V495 R6889 10000 +V4960 Z89209 10000 +V4961 Z89019 10000 +V4962 Z89029 10000 +V4963 Z89119 10000 +V4964 Z89129 10000 +V4965 Z89219 10000 +V4966 Z89229 10000 +V4967 Z89239 10000 +V4970 Z899 10000 +V4971 Z89419 10000 +V4972 Z89429 10000 +V4973 Z89439 10000 +V4974 Z89449 10000 +V4975 Z89519 10000 +V4976 Z89619 10000 +V4977 Z89629 10000 +V4981 Z780 10000 +V4982 Z98810 00000 +V4983 Z7682 00000 +V4984 Z7401 00000 +V4985 Z7382 00000 +V4986 Z66 00000 +V4987 Z781 00000 +V4989 Z789 10000 +V499 Z87898 10000 +V500 Z411 10000 +V501 Z411 10000 +V502 Z412 00000 +V503 Z413 00000 +V5041 Z4001 00000 +V5042 Z4002 00000 +V5049 Z4000 10000 +V5049 Z4009 10000 +V508 Z418 10000 +V509 Z419 00000 +V510 Z421 00000 +V518 Z428 10000 +V520 Z44009 10000 +V521 Z44109 10000 +V522 Z4420 10000 +V523 Z463 00000 +V524 Z4430 10000 +V528 Z448 10000 +V529 Z449 00000 +V5301 Z4541 00000 +V5302 Z4542 00000 +V5309 Z4531 10000 +V5309 Z45328 10000 +V5309 Z4549 10000 +V5309 Z462 10000 +V531 Z460 00000 +V532 Z461 00000 +V5331 Z45010 10000 +V5331 Z45018 10000 +V5332 Z4502 00000 +V5339 Z4509 00000 +V534 Z464 10000 +V5350 Z4659 10000 +V5351 Z4651 00000 +V5359 Z4659 10000 +V536 Z466 00000 +V537 Z4689 10000 +V538 Z4689 10000 +V5390 Z469 10000 +V5391 Z4681 10000 +V5399 Z4689 10000 +V5401 Z472 00000 +V5402 Z5189 10000 +V5409 Z5189 10000 +V5410 S5290XD 10000 +V5410 S5290XE 10000 +V5411 S42101D 10000 +V5411 S42102D 10000 +V5411 S42109D 10000 +V5411 S42111D 10000 +V5411 S42112D 10000 +V5411 S42113D 10000 +V5411 S42114D 10000 +V5411 S42115D 10000 +V5411 S42116D 10000 +V5411 S42121D 10000 +V5411 S42122D 10000 +V5411 S42123D 10000 +V5411 S42124D 10000 +V5411 S42125D 10000 +V5411 S42126D 10000 +V5411 S42131D 10000 +V5411 S42132D 10000 +V5411 S42133D 10000 +V5411 S42134D 10000 +V5411 S42135D 10000 +V5411 S42136D 10000 +V5411 S42141D 10000 +V5411 S42142D 10000 +V5411 S42143D 10000 +V5411 S42144D 10000 +V5411 S42145D 10000 +V5411 S42146D 10000 +V5411 S42151D 10000 +V5411 S42152D 10000 +V5411 S42153D 10000 +V5411 S42154D 10000 +V5411 S42155D 10000 +V5411 S42156D 10000 +V5411 S42191D 10000 +V5411 S42192D 10000 +V5411 S42199D 10000 +V5411 S42201D 10000 +V5411 S42202D 10000 +V5411 S42209D 10000 +V5411 S42211D 10000 +V5411 S42212D 10000 +V5411 S42213D 10000 +V5411 S42214D 10000 +V5411 S42215D 10000 +V5411 S42216D 10000 +V5411 S42221D 10000 +V5411 S42222D 10000 +V5411 S42223D 10000 +V5411 S42224D 10000 +V5411 S42225D 10000 +V5411 S42226D 10000 +V5411 S42231D 10000 +V5411 S42232D 10000 +V5411 S42239D 10000 +V5411 S42241D 10000 +V5411 S42242D 10000 +V5411 S42249D 10000 +V5411 S42251D 10000 +V5411 S42252D 10000 +V5411 S42253D 10000 +V5411 S42254D 10000 +V5411 S42255D 10000 +V5411 S42256D 10000 +V5411 S42261D 10000 +V5411 S42262D 10000 +V5411 S42263D 10000 +V5411 S42264D 10000 +V5411 S42265D 10000 +V5411 S42266D 10000 +V5411 S42271D 10000 +V5411 S42272D 10000 +V5411 S42279D 10000 +V5411 S42291D 10000 +V5411 S42292D 10000 +V5411 S42293D 10000 +V5411 S42294D 10000 +V5411 S42295D 10000 +V5411 S42296D 10000 +V5411 S42301D 10000 +V5411 S42302D 10000 +V5411 S42309D 10000 +V5411 S42311D 10000 +V5411 S42312D 10000 +V5411 S42319D 10000 +V5411 S42321D 10000 +V5411 S42322D 10000 +V5411 S42323D 10000 +V5411 S42324D 10000 +V5411 S42325D 10000 +V5411 S42326D 10000 +V5411 S42331D 10000 +V5411 S42332D 10000 +V5411 S42333D 10000 +V5411 S42334D 10000 +V5411 S42335D 10000 +V5411 S42336D 10000 +V5411 S42341D 10000 +V5411 S42342D 10000 +V5411 S42343D 10000 +V5411 S42344D 10000 +V5411 S42345D 10000 +V5411 S42346D 10000 +V5411 S42351D 10000 +V5411 S42352D 10000 +V5411 S42353D 10000 +V5411 S42354D 10000 +V5411 S42355D 10000 +V5411 S42356D 10000 +V5411 S42361D 10000 +V5411 S42362D 10000 +V5411 S42363D 10000 +V5411 S42364D 10000 +V5411 S42365D 10000 +V5411 S42366D 10000 +V5411 S42391D 10000 +V5411 S42392D 10000 +V5411 S42399D 10000 +V5411 S42401D 10000 +V5411 S42402D 10000 +V5411 S42409D 10000 +V5411 S42411D 10000 +V5411 S42412D 10000 +V5411 S42413D 10000 +V5411 S42414D 10000 +V5411 S42415D 10000 +V5411 S42416D 10000 +V5411 S42421D 10000 +V5411 S42422D 10000 +V5411 S42423D 10000 +V5411 S42424D 10000 +V5411 S42425D 10000 +V5411 S42426D 10000 +V5411 S42431D 10000 +V5411 S42432D 10000 +V5411 S42433D 10000 +V5411 S42434D 10000 +V5411 S42435D 10000 +V5411 S42436D 10000 +V5411 S42441D 10000 +V5411 S42442D 10000 +V5411 S42443D 10000 +V5411 S42444D 10000 +V5411 S42445D 10000 +V5411 S42446D 10000 +V5411 S42447D 10000 +V5411 S42448D 10000 +V5411 S42449D 10000 +V5411 S42451D 10000 +V5411 S42452D 10000 +V5411 S42453D 10000 +V5411 S42454D 10000 +V5411 S42455D 10000 +V5411 S42456D 10000 +V5411 S42461D 10000 +V5411 S42462D 10000 +V5411 S42463D 10000 +V5411 S42464D 10000 +V5411 S42465D 10000 +V5411 S42466D 10000 +V5411 S42471D 10000 +V5411 S42472D 10000 +V5411 S42473D 10000 +V5411 S42474D 10000 +V5411 S42475D 10000 +V5411 S42476D 10000 +V5411 S42481D 10000 +V5411 S42482D 10000 +V5411 S42489D 10000 +V5411 S42491D 10000 +V5411 S42492D 10000 +V5411 S42493D 10000 +V5411 S42494D 10000 +V5411 S42495D 10000 +V5411 S42496D 10000 +V5411 S4290XD 10000 +V5411 S4291XD 10000 +V5411 S4292XD 10000 +V5411 S49001D 10000 +V5411 S49002D 10000 +V5411 S49009D 10000 +V5411 S49011D 10000 +V5411 S49012D 10000 +V5411 S49019D 10000 +V5411 S49021D 10000 +V5411 S49022D 10000 +V5411 S49029D 10000 +V5411 S49031D 10000 +V5411 S49032D 10000 +V5411 S49039D 10000 +V5411 S49041D 10000 +V5411 S49042D 10000 +V5411 S49049D 10000 +V5411 S49091D 10000 +V5411 S49092D 10000 +V5411 S49099D 10000 +V5411 S49101D 10000 +V5411 S49102D 10000 +V5411 S49109D 10000 +V5411 S49111D 10000 +V5411 S49112D 10000 +V5411 S49119D 10000 +V5411 S49121D 10000 +V5411 S49122D 10000 +V5411 S49129D 10000 +V5411 S49131D 10000 +V5411 S49132D 10000 +V5411 S49139D 10000 +V5411 S49141D 10000 +V5411 S49142D 10000 +V5411 S49149D 10000 +V5411 S49191D 10000 +V5411 S49192D 10000 +V5411 S49199D 10000 +V5412 S52001D 10000 +V5412 S52002D 10000 +V5412 S52009D 10000 +V5412 S52009E 10000 +V5412 S52011D 10000 +V5412 S52012D 10000 +V5412 S52019D 10000 +V5412 S52021D 10000 +V5412 S52022D 10000 +V5412 S52023D 10000 +V5412 S52023E 10000 +V5412 S52024D 10000 +V5412 S52025D 10000 +V5412 S52026D 10000 +V5412 S52026E 10000 +V5412 S52031D 10000 +V5412 S52032D 10000 +V5412 S52033D 10000 +V5412 S52033E 10000 +V5412 S52034D 10000 +V5412 S52035D 10000 +V5412 S52036D 10000 +V5412 S52036E 10000 +V5412 S52041D 10000 +V5412 S52042D 10000 +V5412 S52043D 10000 +V5412 S52043E 10000 +V5412 S52044D 10000 +V5412 S52045D 10000 +V5412 S52046D 10000 +V5412 S52046E 10000 +V5412 S52091D 10000 +V5412 S52092D 10000 +V5412 S52099D 10000 +V5412 S52099E 10000 +V5412 S52101D 10000 +V5412 S52102D 10000 +V5412 S52109D 10000 +V5412 S52109E 10000 +V5412 S52111D 10000 +V5412 S52112D 10000 +V5412 S52119D 10000 +V5412 S52121D 10000 +V5412 S52122D 10000 +V5412 S52123D 10000 +V5412 S52123E 10000 +V5412 S52124D 10000 +V5412 S52125D 10000 +V5412 S52126D 10000 +V5412 S52126E 10000 +V5412 S52131D 10000 +V5412 S52132D 10000 +V5412 S52133D 10000 +V5412 S52133E 10000 +V5412 S52134D 10000 +V5412 S52135D 10000 +V5412 S52136D 10000 +V5412 S52136E 10000 +V5412 S52181D 10000 +V5412 S52182D 10000 +V5412 S52189D 10000 +V5412 S52189E 10000 +V5412 S52189H 10000 +V5412 S52201D 10000 +V5412 S52202D 10000 +V5412 S52209D 10000 +V5412 S52209E 10000 +V5412 S52211D 10000 +V5412 S52212D 10000 +V5412 S52219D 10000 +V5412 S52221D 10000 +V5412 S52222D 10000 +V5412 S52223D 10000 +V5412 S52224D 10000 +V5412 S52225D 10000 +V5412 S52226D 10000 +V5412 S52231D 10000 +V5412 S52232D 10000 +V5412 S52233D 10000 +V5412 S52234D 10000 +V5412 S52235D 10000 +V5412 S52236D 10000 +V5412 S52241D 10000 +V5412 S52242D 10000 +V5412 S52243D 10000 +V5412 S52244D 10000 +V5412 S52245D 10000 +V5412 S52246D 10000 +V5412 S52251D 10000 +V5412 S52252D 10000 +V5412 S52253D 10000 +V5412 S52254D 10000 +V5412 S52255D 10000 +V5412 S52256D 10000 +V5412 S52261D 10000 +V5412 S52262D 10000 +V5412 S52263D 10000 +V5412 S52264D 10000 +V5412 S52265D 10000 +V5412 S52266D 10000 +V5412 S52271D 10000 +V5412 S52272D 10000 +V5412 S52279D 10000 +V5412 S52279E 10000 +V5412 S52281D 10000 +V5412 S52282D 10000 +V5412 S52283D 10000 +V5412 S52291D 10000 +V5412 S52292D 10000 +V5412 S52299D 10000 +V5412 S52301D 10000 +V5412 S52302D 10000 +V5412 S52309D 10000 +V5412 S52309E 10000 +V5412 S52311D 10000 +V5412 S52312D 10000 +V5412 S52319D 10000 +V5412 S52321D 10000 +V5412 S52322D 10000 +V5412 S52323D 10000 +V5412 S52324D 10000 +V5412 S52325D 10000 +V5412 S52326D 10000 +V5412 S52331D 10000 +V5412 S52332D 10000 +V5412 S52333D 10000 +V5412 S52334D 10000 +V5412 S52335D 10000 +V5412 S52336D 10000 +V5412 S52341D 10000 +V5412 S52342D 10000 +V5412 S52343D 10000 +V5412 S52344D 10000 +V5412 S52345D 10000 +V5412 S52346D 10000 +V5412 S52351D 10000 +V5412 S52352D 10000 +V5412 S52353D 10000 +V5412 S52354D 10000 +V5412 S52355D 10000 +V5412 S52356D 10000 +V5412 S52361D 10000 +V5412 S52362D 10000 +V5412 S52363D 10000 +V5412 S52364D 10000 +V5412 S52365D 10000 +V5412 S52366D 10000 +V5412 S52371D 10000 +V5412 S52372D 10000 +V5412 S52379D 10000 +V5412 S52381D 10000 +V5412 S52382D 10000 +V5412 S52389D 10000 +V5412 S52391D 10000 +V5412 S52392D 10000 +V5412 S52399D 10000 +V5412 S52501D 10000 +V5412 S52502D 10000 +V5412 S52509D 10000 +V5412 S52509E 10000 +V5412 S52511D 10000 +V5412 S52512D 10000 +V5412 S52513D 10000 +V5412 S52514D 10000 +V5412 S52515D 10000 +V5412 S52516D 10000 +V5412 S52521D 10000 +V5412 S52522D 10000 +V5412 S52529D 10000 +V5412 S52531D 10000 +V5412 S52532D 10000 +V5412 S52539D 10000 +V5412 S52539E 10000 +V5412 S52541D 10000 +V5412 S52542D 10000 +V5412 S52549D 10000 +V5412 S52551D 10000 +V5412 S52552D 10000 +V5412 S52559D 10000 +V5412 S52561D 10000 +V5412 S52562D 10000 +V5412 S52569D 10000 +V5412 S52571D 10000 +V5412 S52572D 10000 +V5412 S52579D 10000 +V5412 S52591D 10000 +V5412 S52592D 10000 +V5412 S52599D 10000 +V5412 S52601D 10000 +V5412 S52602D 10000 +V5412 S52609D 10000 +V5412 S52609E 10000 +V5412 S52611D 10000 +V5412 S52612D 10000 +V5412 S52613D 10000 +V5412 S52614D 10000 +V5412 S52615D 10000 +V5412 S52616D 10000 +V5412 S52621D 10000 +V5412 S52622D 10000 +V5412 S52629D 10000 +V5412 S52691D 10000 +V5412 S52692D 10000 +V5412 S52699D 10000 +V5412 S5291XD 10000 +V5412 S5292XD 10000 +V5412 S59001D 10000 +V5412 S59002D 10000 +V5412 S59009D 10000 +V5412 S59011D 10000 +V5412 S59012D 10000 +V5412 S59019D 10000 +V5412 S59021D 10000 +V5412 S59022D 10000 +V5412 S59029D 10000 +V5412 S59031D 10000 +V5412 S59032D 10000 +V5412 S59039D 10000 +V5412 S59041D 10000 +V5412 S59042D 10000 +V5412 S59049D 10000 +V5412 S59091D 10000 +V5412 S59092D 10000 +V5412 S59099D 10000 +V5412 S59101D 10000 +V5412 S59102D 10000 +V5412 S59109D 10000 +V5412 S59111D 10000 +V5412 S59112D 10000 +V5412 S59119D 10000 +V5412 S59121D 10000 +V5412 S59122D 10000 +V5412 S59129D 10000 +V5412 S59131D 10000 +V5412 S59132D 10000 +V5412 S59139D 10000 +V5412 S59141D 10000 +V5412 S59142D 10000 +V5412 S59149D 10000 +V5412 S59191D 10000 +V5412 S59192D 10000 +V5412 S59199D 10000 +V5412 S59201D 10000 +V5412 S59202D 10000 +V5412 S59209D 10000 +V5412 S59211D 10000 +V5412 S59212D 10000 +V5412 S59219D 10000 +V5412 S59221D 10000 +V5412 S59222D 10000 +V5412 S59229D 10000 +V5412 S59231D 10000 +V5412 S59232D 10000 +V5412 S59239D 10000 +V5412 S59241D 10000 +V5412 S59242D 10000 +V5412 S59249D 10000 +V5412 S59291D 10000 +V5412 S59292D 10000 +V5412 S59299D 10000 +V5412 S62001D 10000 +V5412 S62002D 10000 +V5412 S62009D 10000 +V5412 S62011D 10000 +V5412 S62012D 10000 +V5412 S62013D 10000 +V5412 S62014D 10000 +V5412 S62015D 10000 +V5412 S62016D 10000 +V5412 S62021D 10000 +V5412 S62022D 10000 +V5412 S62023D 10000 +V5412 S62024D 10000 +V5412 S62025D 10000 +V5412 S62026D 10000 +V5412 S62031D 10000 +V5412 S62032D 10000 +V5412 S62033D 10000 +V5412 S62034D 10000 +V5412 S62035D 10000 +V5412 S62036D 10000 +V5412 S62101D 10000 +V5412 S62102D 10000 +V5412 S62109D 10000 +V5412 S62111D 10000 +V5412 S62112D 10000 +V5412 S62113D 10000 +V5412 S62114D 10000 +V5412 S62115D 10000 +V5412 S62116D 10000 +V5412 S62121D 10000 +V5412 S62122D 10000 +V5412 S62123D 10000 +V5412 S62124D 10000 +V5412 S62125D 10000 +V5412 S62126D 10000 +V5412 S62131D 10000 +V5412 S62132D 10000 +V5412 S62133D 10000 +V5412 S62134D 10000 +V5412 S62135D 10000 +V5412 S62136D 10000 +V5412 S62141D 10000 +V5412 S62142D 10000 +V5412 S62143D 10000 +V5412 S62144D 10000 +V5412 S62145D 10000 +V5412 S62146D 10000 +V5412 S62151D 10000 +V5412 S62152D 10000 +V5412 S62153D 10000 +V5412 S62154D 10000 +V5412 S62155D 10000 +V5412 S62156D 10000 +V5412 S62161D 10000 +V5412 S62162D 10000 +V5412 S62163D 10000 +V5412 S62164D 10000 +V5412 S62165D 10000 +V5412 S62166D 10000 +V5412 S62171D 10000 +V5412 S62172D 10000 +V5412 S62173D 10000 +V5412 S62174D 10000 +V5412 S62175D 10000 +V5412 S62176D 10000 +V5412 S62181D 10000 +V5412 S62182D 10000 +V5412 S62183D 10000 +V5412 S62184D 10000 +V5412 S62185D 10000 +V5412 S62186D 10000 +V5412 S62201D 10000 +V5412 S62202D 10000 +V5412 S62209D 10000 +V5412 S62211D 10000 +V5412 S62212D 10000 +V5412 S62213D 10000 +V5412 S62221D 10000 +V5412 S62222D 10000 +V5412 S62223D 10000 +V5412 S62224D 10000 +V5412 S62225D 10000 +V5412 S62226D 10000 +V5412 S62231D 10000 +V5412 S62232D 10000 +V5412 S62233D 10000 +V5412 S62234D 10000 +V5412 S62235D 10000 +V5412 S62236D 10000 +V5412 S62241D 10000 +V5412 S62242D 10000 +V5412 S62243D 10000 +V5412 S62244D 10000 +V5412 S62245D 10000 +V5412 S62246D 10000 +V5412 S62251D 10000 +V5412 S62252D 10000 +V5412 S62253D 10000 +V5412 S62254D 10000 +V5412 S62255D 10000 +V5412 S62256D 10000 +V5412 S62291D 10000 +V5412 S62292D 10000 +V5412 S62299D 10000 +V5412 S62300D 10000 +V5412 S62301D 10000 +V5412 S62302D 10000 +V5412 S62303D 10000 +V5412 S62304D 10000 +V5412 S62305D 10000 +V5412 S62306D 10000 +V5412 S62307D 10000 +V5412 S62308D 10000 +V5412 S62309D 10000 +V5412 S62310D 10000 +V5412 S62311D 10000 +V5412 S62312D 10000 +V5412 S62313D 10000 +V5412 S62314D 10000 +V5412 S62315D 10000 +V5412 S62316D 10000 +V5412 S62317D 10000 +V5412 S62318D 10000 +V5412 S62319D 10000 +V5412 S62320D 10000 +V5412 S62321D 10000 +V5412 S62322D 10000 +V5412 S62323D 10000 +V5412 S62324D 10000 +V5412 S62325D 10000 +V5412 S62326D 10000 +V5412 S62327D 10000 +V5412 S62328D 10000 +V5412 S62329D 10000 +V5412 S62330D 10000 +V5412 S62331D 10000 +V5412 S62332D 10000 +V5412 S62333D 10000 +V5412 S62334D 10000 +V5412 S62335D 10000 +V5412 S62336D 10000 +V5412 S62337D 10000 +V5412 S62338D 10000 +V5412 S62339D 10000 +V5412 S62340D 10000 +V5412 S62341D 10000 +V5412 S62342D 10000 +V5412 S62343D 10000 +V5412 S62344D 10000 +V5412 S62345D 10000 +V5412 S62346D 10000 +V5412 S62347D 10000 +V5412 S62348D 10000 +V5412 S62349D 10000 +V5412 S62350D 10000 +V5412 S62351D 10000 +V5412 S62352D 10000 +V5412 S62353D 10000 +V5412 S62354D 10000 +V5412 S62355D 10000 +V5412 S62356D 10000 +V5412 S62357D 10000 +V5412 S62358D 10000 +V5412 S62359D 10000 +V5412 S62360D 10000 +V5412 S62361D 10000 +V5412 S62362D 10000 +V5412 S62363D 10000 +V5412 S62364D 10000 +V5412 S62365D 10000 +V5412 S62366D 10000 +V5412 S62367D 10000 +V5412 S62368D 10000 +V5412 S62369D 10000 +V5412 S62390D 10000 +V5412 S62391D 10000 +V5412 S62392D 10000 +V5412 S62393D 10000 +V5412 S62394D 10000 +V5412 S62395D 10000 +V5412 S62396D 10000 +V5412 S62397D 10000 +V5412 S62398D 10000 +V5412 S62399D 10000 +V5412 S62501D 10000 +V5412 S62502D 10000 +V5412 S62509D 10000 +V5412 S62511D 10000 +V5412 S62512D 10000 +V5412 S62513D 10000 +V5412 S62514D 10000 +V5412 S62515D 10000 +V5412 S62516D 10000 +V5412 S62521D 10000 +V5412 S62522D 10000 +V5412 S62523D 10000 +V5412 S62524D 10000 +V5412 S62525D 10000 +V5412 S62526D 10000 +V5412 S62600D 10000 +V5412 S62601D 10000 +V5412 S62602D 10000 +V5412 S62603D 10000 +V5412 S62604D 10000 +V5412 S62605D 10000 +V5412 S62606D 10000 +V5412 S62607D 10000 +V5412 S62608D 10000 +V5412 S62609D 10000 +V5412 S62610D 10000 +V5412 S62611D 10000 +V5412 S62612D 10000 +V5412 S62613D 10000 +V5412 S62614D 10000 +V5412 S62615D 10000 +V5412 S62616D 10000 +V5412 S62617D 10000 +V5412 S62618D 10000 +V5412 S62619D 10000 +V5412 S62620D 10000 +V5412 S62621D 10000 +V5412 S62622D 10000 +V5412 S62623D 10000 +V5412 S62624D 10000 +V5412 S62625D 10000 +V5412 S62626D 10000 +V5412 S62627D 10000 +V5412 S62628D 10000 +V5412 S62629D 10000 +V5412 S62630D 10000 +V5412 S62631D 10000 +V5412 S62632D 10000 +V5412 S62633D 10000 +V5412 S62634D 10000 +V5412 S62635D 10000 +V5412 S62636D 10000 +V5412 S62637D 10000 +V5412 S62638D 10000 +V5412 S62639D 10000 +V5412 S62640D 10000 +V5412 S62641D 10000 +V5412 S62642D 10000 +V5412 S62643D 10000 +V5412 S62644D 10000 +V5412 S62645D 10000 +V5412 S62646D 10000 +V5412 S62647D 10000 +V5412 S62648D 10000 +V5412 S62649D 10000 +V5412 S62650D 10000 +V5412 S62651D 10000 +V5412 S62652D 10000 +V5412 S62653D 10000 +V5412 S62654D 10000 +V5412 S62655D 10000 +V5412 S62656D 10000 +V5412 S62657D 10000 +V5412 S62658D 10000 +V5412 S62659D 10000 +V5412 S62660D 10000 +V5412 S62661D 10000 +V5412 S62662D 10000 +V5412 S62663D 10000 +V5412 S62664D 10000 +V5412 S62665D 10000 +V5412 S62666D 10000 +V5412 S62667D 10000 +V5412 S62668D 10000 +V5412 S62669D 10000 +V5412 S6290XD 10000 +V5412 S6291XD 10000 +V5412 S6292XD 10000 +V5413 S32301D 10000 +V5413 S32302D 10000 +V5413 S32309D 10000 +V5413 S32311D 10000 +V5413 S32312D 10000 +V5413 S32313D 10000 +V5413 S32314D 10000 +V5413 S32315D 10000 +V5413 S32316D 10000 +V5413 S32391D 10000 +V5413 S32392D 10000 +V5413 S32399D 10000 +V5413 S32401D 10000 +V5413 S32402D 10000 +V5413 S32409D 10000 +V5413 S32411D 10000 +V5413 S32412D 10000 +V5413 S32413D 10000 +V5413 S32414D 10000 +V5413 S32415D 10000 +V5413 S32416D 10000 +V5413 S32421D 10000 +V5413 S32422D 10000 +V5413 S32423D 10000 +V5413 S32424D 10000 +V5413 S32425D 10000 +V5413 S32426D 10000 +V5413 S32431D 10000 +V5413 S32432D 10000 +V5413 S32433D 10000 +V5413 S32434D 10000 +V5413 S32435D 10000 +V5413 S32436D 10000 +V5413 S32441D 10000 +V5413 S32442D 10000 +V5413 S32443D 10000 +V5413 S32444D 10000 +V5413 S32445D 10000 +V5413 S32446D 10000 +V5413 S32451D 10000 +V5413 S32452D 10000 +V5413 S32453D 10000 +V5413 S32454D 10000 +V5413 S32455D 10000 +V5413 S32456D 10000 +V5413 S32461D 10000 +V5413 S32462D 10000 +V5413 S32463D 10000 +V5413 S32464D 10000 +V5413 S32465D 10000 +V5413 S32466D 10000 +V5413 S32471D 10000 +V5413 S32472D 10000 +V5413 S32473D 10000 +V5413 S32474D 10000 +V5413 S32475D 10000 +V5413 S32476D 10000 +V5413 S32481D 10000 +V5413 S32482D 10000 +V5413 S32483D 10000 +V5413 S32484D 10000 +V5413 S32485D 10000 +V5413 S32486D 10000 +V5413 S32491D 10000 +V5413 S32492D 10000 +V5413 S32499D 10000 +V5413 S32501D 10000 +V5413 S32502D 10000 +V5413 S32509D 10000 +V5413 S32511D 10000 +V5413 S32512D 10000 +V5413 S32519D 10000 +V5413 S32591D 10000 +V5413 S32592D 10000 +V5413 S32599D 10000 +V5413 S32601D 10000 +V5413 S32602D 10000 +V5413 S32609D 10000 +V5413 S32611D 10000 +V5413 S32612D 10000 +V5413 S32613D 10000 +V5413 S32614D 10000 +V5413 S32615D 10000 +V5413 S32616D 10000 +V5413 S32691D 10000 +V5413 S32692D 10000 +V5413 S32699D 10000 +V5413 S72001D 10000 +V5413 S72002D 10000 +V5413 S72009D 10000 +V5413 S72011D 10000 +V5413 S72012D 10000 +V5413 S72019D 10000 +V5413 S72019E 10000 +V5413 S72021D 10000 +V5413 S72022D 10000 +V5413 S72023D 10000 +V5413 S72023E 10000 +V5413 S72024D 10000 +V5413 S72025D 10000 +V5413 S72026D 10000 +V5413 S72026E 10000 +V5413 S72031D 10000 +V5413 S72032D 10000 +V5413 S72033D 10000 +V5413 S72033E 10000 +V5413 S72034D 10000 +V5413 S72035D 10000 +V5413 S72036D 10000 +V5413 S72036E 10000 +V5413 S72041D 10000 +V5413 S72042D 10000 +V5413 S72043D 10000 +V5413 S72043E 10000 +V5413 S72044D 10000 +V5413 S72045D 10000 +V5413 S72046D 10000 +V5413 S72046E 10000 +V5413 S72051D 10000 +V5413 S72052D 10000 +V5413 S72059D 10000 +V5413 S72061D 10000 +V5413 S72062D 10000 +V5413 S72063D 10000 +V5413 S72064D 10000 +V5413 S72065D 10000 +V5413 S72066D 10000 +V5413 S72091D 10000 +V5413 S72092D 10000 +V5413 S72099D 10000 +V5413 S72099E 10000 +V5413 S72101D 10000 +V5413 S72102D 10000 +V5413 S72109D 10000 +V5413 S72109E 10000 +V5413 S72111D 10000 +V5413 S72112D 10000 +V5413 S72113D 10000 +V5413 S72114D 10000 +V5413 S72115D 10000 +V5413 S72116D 10000 +V5413 S72121D 10000 +V5413 S72122D 10000 +V5413 S72123D 10000 +V5413 S72124D 10000 +V5413 S72125D 10000 +V5413 S72126D 10000 +V5413 S72131D 10000 +V5413 S72132D 10000 +V5413 S72133D 10000 +V5413 S72134D 10000 +V5413 S72135D 10000 +V5413 S72136D 10000 +V5413 S72141D 10000 +V5413 S72142D 10000 +V5413 S72143D 10000 +V5413 S72144D 10000 +V5413 S72145D 10000 +V5413 S72146D 10000 +V5414 S8290XD 10000 +V5414 S8290XE 10000 +V5414 S8290XF 10000 +V5415 S7221XD 10000 +V5415 S7222XD 10000 +V5415 S7223XD 10000 +V5415 S7224XD 10000 +V5415 S7225XD 10000 +V5415 S7226XD 10000 +V5415 S72301D 10000 +V5415 S72302D 10000 +V5415 S72309D 10000 +V5415 S72309E 10000 +V5415 S72321D 10000 +V5415 S72322D 10000 +V5415 S72323D 10000 +V5415 S72324D 10000 +V5415 S72325D 10000 +V5415 S72326D 10000 +V5415 S72331D 10000 +V5415 S72332D 10000 +V5415 S72333D 10000 +V5415 S72334D 10000 +V5415 S72335D 10000 +V5415 S72336D 10000 +V5415 S72341D 10000 +V5415 S72342D 10000 +V5415 S72343D 10000 +V5415 S72344D 10000 +V5415 S72345D 10000 +V5415 S72346D 10000 +V5415 S72351D 10000 +V5415 S72352D 10000 +V5415 S72353D 10000 +V5415 S72354D 10000 +V5415 S72355D 10000 +V5415 S72356D 10000 +V5415 S72361D 10000 +V5415 S72362D 10000 +V5415 S72363D 10000 +V5415 S72364D 10000 +V5415 S72365D 10000 +V5415 S72366D 10000 +V5415 S72391D 10000 +V5415 S72392D 10000 +V5415 S72399D 10000 +V5415 S72401D 10000 +V5415 S72402D 10000 +V5415 S72409D 10000 +V5415 S72409E 10000 +V5415 S72411D 10000 +V5415 S72412D 10000 +V5415 S72413D 10000 +V5415 S72413E 10000 +V5415 S72414D 10000 +V5415 S72415D 10000 +V5415 S72416D 10000 +V5415 S72416E 10000 +V5415 S72421D 10000 +V5415 S72422D 10000 +V5415 S72423D 10000 +V5415 S72424D 10000 +V5415 S72425D 10000 +V5415 S72426D 10000 +V5415 S72431D 10000 +V5415 S72432D 10000 +V5415 S72433D 10000 +V5415 S72434D 10000 +V5415 S72435D 10000 +V5415 S72436D 10000 +V5415 S72441D 10000 +V5415 S72442D 10000 +V5415 S72443D 10000 +V5415 S72443E 10000 +V5415 S72444D 10000 +V5415 S72445D 10000 +V5415 S72446D 10000 +V5415 S72446E 10000 +V5415 S72451D 10000 +V5415 S72452D 10000 +V5415 S72453D 10000 +V5415 S72453E 10000 +V5415 S72454D 10000 +V5415 S72455D 10000 +V5415 S72456D 10000 +V5415 S72456E 10000 +V5415 S72461D 10000 +V5415 S72462D 10000 +V5415 S72463D 10000 +V5415 S72463E 10000 +V5415 S72464D 10000 +V5415 S72465D 10000 +V5415 S72466D 10000 +V5415 S72466E 10000 +V5415 S72471D 10000 +V5415 S72472D 10000 +V5415 S72479D 10000 +V5415 S72491D 10000 +V5415 S72492D 10000 +V5415 S72499D 10000 +V5415 S72499E 10000 +V5415 S728X1D 10000 +V5415 S728X2D 10000 +V5415 S728X9D 10000 +V5415 S7290XD 10000 +V5415 S7290XE 10000 +V5415 S7291XD 10000 +V5415 S7292XD 10000 +V5415 S79001D 10000 +V5415 S79002D 10000 +V5415 S79009D 10000 +V5415 S79011D 10000 +V5415 S79012D 10000 +V5415 S79019D 10000 +V5415 S79091D 10000 +V5415 S79092D 10000 +V5415 S79099D 10000 +V5415 S79101D 10000 +V5415 S79102D 10000 +V5415 S79109D 10000 +V5415 S79111D 10000 +V5415 S79112D 10000 +V5415 S79119D 10000 +V5415 S79121D 10000 +V5415 S79122D 10000 +V5415 S79129D 10000 +V5415 S79131D 10000 +V5415 S79132D 10000 +V5415 S79139D 10000 +V5415 S79141D 10000 +V5415 S79142D 10000 +V5415 S79149D 10000 +V5415 S79191D 10000 +V5415 S79192D 10000 +V5415 S79199D 10000 +V5416 S82001D 10000 +V5416 S82002D 10000 +V5416 S82009D 10000 +V5416 S82009E 10000 +V5416 S82011D 10000 +V5416 S82012D 10000 +V5416 S82013D 10000 +V5416 S82014D 10000 +V5416 S82015D 10000 +V5416 S82016D 10000 +V5416 S82021D 10000 +V5416 S82022D 10000 +V5416 S82023D 10000 +V5416 S82024D 10000 +V5416 S82025D 10000 +V5416 S82026D 10000 +V5416 S82031D 10000 +V5416 S82032D 10000 +V5416 S82033D 10000 +V5416 S82034D 10000 +V5416 S82035D 10000 +V5416 S82036D 10000 +V5416 S82041D 10000 +V5416 S82042D 10000 +V5416 S82043D 10000 +V5416 S82044D 10000 +V5416 S82045D 10000 +V5416 S82046D 10000 +V5416 S82091D 10000 +V5416 S82092D 10000 +V5416 S82099D 10000 +V5416 S82101D 10000 +V5416 S82102D 10000 +V5416 S82109D 10000 +V5416 S82109E 10000 +V5416 S82111D 10000 +V5416 S82112D 10000 +V5416 S82113D 10000 +V5416 S82114D 10000 +V5416 S82115D 10000 +V5416 S82116D 10000 +V5416 S82121D 10000 +V5416 S82122D 10000 +V5416 S82123D 10000 +V5416 S82124D 10000 +V5416 S82125D 10000 +V5416 S82126D 10000 +V5416 S82131D 10000 +V5416 S82132D 10000 +V5416 S82133D 10000 +V5416 S82134D 10000 +V5416 S82135D 10000 +V5416 S82136D 10000 +V5416 S82141D 10000 +V5416 S82142D 10000 +V5416 S82143D 10000 +V5416 S82144D 10000 +V5416 S82145D 10000 +V5416 S82146D 10000 +V5416 S82151D 10000 +V5416 S82152D 10000 +V5416 S82153D 10000 +V5416 S82154D 10000 +V5416 S82155D 10000 +V5416 S82156D 10000 +V5416 S82161D 10000 +V5416 S82162D 10000 +V5416 S82169D 10000 +V5416 S82191D 10000 +V5416 S82192D 10000 +V5416 S82199D 10000 +V5416 S82201D 10000 +V5416 S82202D 10000 +V5416 S82209D 10000 +V5416 S82209E 10000 +V5416 S82221D 10000 +V5416 S82222D 10000 +V5416 S82223D 10000 +V5416 S82224D 10000 +V5416 S82225D 10000 +V5416 S82226D 10000 +V5416 S82231D 10000 +V5416 S82232D 10000 +V5416 S82233D 10000 +V5416 S82234D 10000 +V5416 S82235D 10000 +V5416 S82236D 10000 +V5416 S82241D 10000 +V5416 S82242D 10000 +V5416 S82243D 10000 +V5416 S82244D 10000 +V5416 S82245D 10000 +V5416 S82246D 10000 +V5416 S82251D 10000 +V5416 S82252D 10000 +V5416 S82253D 10000 +V5416 S82254D 10000 +V5416 S82255D 10000 +V5416 S82256D 10000 +V5416 S82261D 10000 +V5416 S82262D 10000 +V5416 S82263D 10000 +V5416 S82264D 10000 +V5416 S82265D 10000 +V5416 S82266D 10000 +V5416 S82291D 10000 +V5416 S82292D 10000 +V5416 S82299D 10000 +V5416 S82301D 10000 +V5416 S82302D 10000 +V5416 S82309D 10000 +V5416 S82309E 10000 +V5416 S82311D 10000 +V5416 S82312D 10000 +V5416 S82319D 10000 +V5416 S82391D 10000 +V5416 S82392D 10000 +V5416 S82399D 10000 +V5416 S82401D 10000 +V5416 S82402D 10000 +V5416 S82409D 10000 +V5416 S82409E 10000 +V5416 S82421D 10000 +V5416 S82422D 10000 +V5416 S82423D 10000 +V5416 S82424D 10000 +V5416 S82425D 10000 +V5416 S82426D 10000 +V5416 S82431D 10000 +V5416 S82432D 10000 +V5416 S82433D 10000 +V5416 S82434D 10000 +V5416 S82435D 10000 +V5416 S82436D 10000 +V5416 S82441D 10000 +V5416 S82442D 10000 +V5416 S82443D 10000 +V5416 S82444D 10000 +V5416 S82445D 10000 +V5416 S82446D 10000 +V5416 S82451D 10000 +V5416 S82452D 10000 +V5416 S82453D 10000 +V5416 S82454D 10000 +V5416 S82455D 10000 +V5416 S82456D 10000 +V5416 S82461D 10000 +V5416 S82462D 10000 +V5416 S82463D 10000 +V5416 S82464D 10000 +V5416 S82465D 10000 +V5416 S82466D 10000 +V5416 S82491D 10000 +V5416 S82492D 10000 +V5416 S82499D 10000 +V5416 S8251XD 10000 +V5416 S8252XD 10000 +V5416 S8253XD 10000 +V5416 S8253XE 10000 +V5416 S8254XD 10000 +V5416 S8255XD 10000 +V5416 S8256XD 10000 +V5416 S8256XE 10000 +V5416 S8261XD 10000 +V5416 S8262XD 10000 +V5416 S8263XD 10000 +V5416 S8263XE 10000 +V5416 S8264XD 10000 +V5416 S8265XD 10000 +V5416 S8266XD 10000 +V5416 S8266XE 10000 +V5416 S82811D 10000 +V5416 S82812D 10000 +V5416 S82819D 10000 +V5416 S82821D 10000 +V5416 S82822D 10000 +V5416 S82829D 10000 +V5416 S82831D 10000 +V5416 S82832D 10000 +V5416 S82839D 10000 +V5416 S82839E 10000 +V5416 S82841D 10000 +V5416 S82842D 10000 +V5416 S82843D 10000 +V5416 S82843E 10000 +V5416 S82844D 10000 +V5416 S82845D 10000 +V5416 S82846D 10000 +V5416 S82846E 10000 +V5416 S82851D 10000 +V5416 S82852D 10000 +V5416 S82853D 10000 +V5416 S82853E 10000 +V5416 S82854D 10000 +V5416 S82855D 10000 +V5416 S82856D 10000 +V5416 S82856E 10000 +V5416 S82861D 10000 +V5416 S82862D 10000 +V5416 S82863D 10000 +V5416 S82864D 10000 +V5416 S82865D 10000 +V5416 S82866D 10000 +V5416 S82871D 10000 +V5416 S82872D 10000 +V5416 S82873D 10000 +V5416 S82874D 10000 +V5416 S82875D 10000 +V5416 S82876D 10000 +V5416 S82891D 10000 +V5416 S82892D 10000 +V5416 S82899D 10000 +V5416 S8290XD 10000 +V5416 S8290XE 10000 +V5416 S8291XD 10000 +V5416 S8292XD 10000 +V5416 S89001D 10000 +V5416 S89002D 10000 +V5416 S89009D 10000 +V5416 S89011D 10000 +V5416 S89012D 10000 +V5416 S89019D 10000 +V5416 S89021D 10000 +V5416 S89022D 10000 +V5416 S89029D 10000 +V5416 S89031D 10000 +V5416 S89032D 10000 +V5416 S89039D 10000 +V5416 S89041D 10000 +V5416 S89042D 10000 +V5416 S89049D 10000 +V5416 S89091D 10000 +V5416 S89092D 10000 +V5416 S89099D 10000 +V5416 S89101D 10000 +V5416 S89102D 10000 +V5416 S89109D 10000 +V5416 S89111D 10000 +V5416 S89112D 10000 +V5416 S89119D 10000 +V5416 S89121D 10000 +V5416 S89122D 10000 +V5416 S89129D 10000 +V5416 S89131D 10000 +V5416 S89132D 10000 +V5416 S89139D 10000 +V5416 S89141D 10000 +V5416 S89142D 10000 +V5416 S89149D 10000 +V5416 S89191D 10000 +V5416 S89192D 10000 +V5416 S89199D 10000 +V5416 S89201D 10000 +V5416 S89202D 10000 +V5416 S89209D 10000 +V5416 S89211D 10000 +V5416 S89212D 10000 +V5416 S89219D 10000 +V5416 S89221D 10000 +V5416 S89222D 10000 +V5416 S89229D 10000 +V5416 S89291D 10000 +V5416 S89292D 10000 +V5416 S89299D 10000 +V5416 S89301D 10000 +V5416 S89302D 10000 +V5416 S89309D 10000 +V5416 S89311D 10000 +V5416 S89312D 10000 +V5416 S89319D 10000 +V5416 S89321D 10000 +V5416 S89322D 10000 +V5416 S89329D 10000 +V5416 S89391D 10000 +V5416 S89392D 10000 +V5416 S89399D 10000 +V5416 S92001D 10000 +V5416 S92002D 10000 +V5416 S92009D 10000 +V5416 S92011D 10000 +V5416 S92012D 10000 +V5416 S92013D 10000 +V5416 S92014D 10000 +V5416 S92015D 10000 +V5416 S92016D 10000 +V5416 S92021D 10000 +V5416 S92022D 10000 +V5416 S92023D 10000 +V5416 S92024D 10000 +V5416 S92025D 10000 +V5416 S92026D 10000 +V5416 S92031D 10000 +V5416 S92032D 10000 +V5416 S92033D 10000 +V5416 S92034D 10000 +V5416 S92035D 10000 +V5416 S92036D 10000 +V5416 S92041D 10000 +V5416 S92042D 10000 +V5416 S92043D 10000 +V5416 S92044D 10000 +V5416 S92045D 10000 +V5416 S92046D 10000 +V5416 S92051D 10000 +V5416 S92052D 10000 +V5416 S92053D 10000 +V5416 S92054D 10000 +V5416 S92055D 10000 +V5416 S92056D 10000 +V5416 S92061D 10000 +V5416 S92062D 10000 +V5416 S92063D 10000 +V5416 S92064D 10000 +V5416 S92065D 10000 +V5416 S92066D 10000 +V5416 S92101D 10000 +V5416 S92102D 10000 +V5416 S92109D 10000 +V5416 S92111D 10000 +V5416 S92112D 10000 +V5416 S92113D 10000 +V5416 S92114D 10000 +V5416 S92115D 10000 +V5416 S92116D 10000 +V5416 S92121D 10000 +V5416 S92122D 10000 +V5416 S92123D 10000 +V5416 S92124D 10000 +V5416 S92125D 10000 +V5416 S92126D 10000 +V5416 S92131D 10000 +V5416 S92132D 10000 +V5416 S92133D 10000 +V5416 S92134D 10000 +V5416 S92135D 10000 +V5416 S92136D 10000 +V5416 S92141D 10000 +V5416 S92142D 10000 +V5416 S92143D 10000 +V5416 S92144D 10000 +V5416 S92145D 10000 +V5416 S92146D 10000 +V5416 S92151D 10000 +V5416 S92152D 10000 +V5416 S92153D 10000 +V5416 S92154D 10000 +V5416 S92155D 10000 +V5416 S92156D 10000 +V5416 S92191D 10000 +V5416 S92192D 10000 +V5416 S92199D 10000 +V5416 S92201D 10000 +V5416 S92202D 10000 +V5416 S92209D 10000 +V5416 S92211D 10000 +V5416 S92212D 10000 +V5416 S92213D 10000 +V5416 S92214D 10000 +V5416 S92215D 10000 +V5416 S92216D 10000 +V5416 S92221D 10000 +V5416 S92222D 10000 +V5416 S92223D 10000 +V5416 S92224D 10000 +V5416 S92225D 10000 +V5416 S92226D 10000 +V5416 S92231D 10000 +V5416 S92232D 10000 +V5416 S92233D 10000 +V5416 S92234D 10000 +V5416 S92235D 10000 +V5416 S92236D 10000 +V5416 S92241D 10000 +V5416 S92242D 10000 +V5416 S92243D 10000 +V5416 S92244D 10000 +V5416 S92245D 10000 +V5416 S92246D 10000 +V5416 S92251D 10000 +V5416 S92252D 10000 +V5416 S92253D 10000 +V5416 S92254D 10000 +V5416 S92255D 10000 +V5416 S92256D 10000 +V5416 S92301D 10000 +V5416 S92302D 10000 +V5416 S92309D 10000 +V5416 S92311D 10000 +V5416 S92312D 10000 +V5416 S92313D 10000 +V5416 S92314D 10000 +V5416 S92315D 10000 +V5416 S92316D 10000 +V5416 S92321D 10000 +V5416 S92322D 10000 +V5416 S92323D 10000 +V5416 S92324D 10000 +V5416 S92325D 10000 +V5416 S92326D 10000 +V5416 S92331D 10000 +V5416 S92332D 10000 +V5416 S92333D 10000 +V5416 S92334D 10000 +V5416 S92335D 10000 +V5416 S92336D 10000 +V5416 S92341D 10000 +V5416 S92342D 10000 +V5416 S92343D 10000 +V5416 S92344D 10000 +V5416 S92345D 10000 +V5416 S92346D 10000 +V5416 S92351D 10000 +V5416 S92352D 10000 +V5416 S92353D 10000 +V5416 S92354D 10000 +V5416 S92355D 10000 +V5416 S92356D 10000 +V5416 S92401D 10000 +V5416 S92402D 10000 +V5416 S92403D 10000 +V5416 S92404D 10000 +V5416 S92405D 10000 +V5416 S92406D 10000 +V5416 S92411D 10000 +V5416 S92412D 10000 +V5416 S92413D 10000 +V5416 S92414D 10000 +V5416 S92415D 10000 +V5416 S92416D 10000 +V5416 S92421D 10000 +V5416 S92422D 10000 +V5416 S92423D 10000 +V5416 S92424D 10000 +V5416 S92425D 10000 +V5416 S92426D 10000 +V5416 S92491D 10000 +V5416 S92492D 10000 +V5416 S92499D 10000 +V5416 S92501D 10000 +V5416 S92502D 10000 +V5416 S92503D 10000 +V5416 S92504D 10000 +V5416 S92505D 10000 +V5416 S92506D 10000 +V5416 S92511D 10000 +V5416 S92512D 10000 +V5416 S92513D 10000 +V5416 S92514D 10000 +V5416 S92515D 10000 +V5416 S92516D 10000 +V5416 S92521D 10000 +V5416 S92522D 10000 +V5416 S92523D 10000 +V5416 S92524D 10000 +V5416 S92525D 10000 +V5416 S92526D 10000 +V5416 S92531D 10000 +V5416 S92532D 10000 +V5416 S92533D 10000 +V5416 S92534D 10000 +V5416 S92535D 10000 +V5416 S92536D 10000 +V5416 S92591D 10000 +V5416 S92592D 10000 +V5416 S92599D 10000 +V5416 S92811D 10000 +V5416 S92812D 10000 +V5416 S92819D 10000 +V5416 S92901D 10000 +V5416 S92902D 10000 +V5416 S92909D 10000 +V5416 S92911D 10000 +V5416 S92912D 10000 +V5416 S92919D 10000 +V5416 S99001D 10000 +V5416 S99002D 10000 +V5416 S99009D 10000 +V5416 S99011D 10000 +V5416 S99012D 10000 +V5416 S99019D 10000 +V5416 S99021D 10000 +V5416 S99022D 10000 +V5416 S99029D 10000 +V5416 S99031D 10000 +V5416 S99032D 10000 +V5416 S99039D 10000 +V5416 S99041D 10000 +V5416 S99042D 10000 +V5416 S99049D 10000 +V5416 S99091D 10000 +V5416 S99092D 10000 +V5416 S99099D 10000 +V5416 S99101D 10000 +V5416 S99102D 10000 +V5416 S99109D 10000 +V5416 S99111D 10000 +V5416 S99112D 10000 +V5416 S99119D 10000 +V5416 S99121D 10000 +V5416 S99122D 10000 +V5416 S99129D 10000 +V5416 S99131D 10000 +V5416 S99132D 10000 +V5416 S99139D 10000 +V5416 S99141D 10000 +V5416 S99142D 10000 +V5416 S99149D 10000 +V5416 S99191D 10000 +V5416 S99192D 10000 +V5416 S99199D 10000 +V5416 S99201D 10000 +V5416 S99202D 10000 +V5416 S99209D 10000 +V5416 S99211D 10000 +V5416 S99212D 10000 +V5416 S99219D 10000 +V5416 S99221D 10000 +V5416 S99222D 10000 +V5416 S99229D 10000 +V5416 S99231D 10000 +V5416 S99232D 10000 +V5416 S99239D 10000 +V5416 S99241D 10000 +V5416 S99242D 10000 +V5416 S99249D 10000 +V5416 S99291D 10000 +V5416 S99292D 10000 +V5416 S99299D 10000 +V5417 S12000D 10000 +V5417 S12001D 10000 +V5417 S1201XD 10000 +V5417 S1202XD 10000 +V5417 S12030D 10000 +V5417 S12031D 10000 +V5417 S12040D 10000 +V5417 S12041D 10000 +V5417 S12090D 10000 +V5417 S12091D 10000 +V5417 S12100D 10000 +V5417 S12101D 10000 +V5417 S12110D 10000 +V5417 S12111D 10000 +V5417 S12112D 10000 +V5417 S12120D 10000 +V5417 S12121D 10000 +V5417 S12130D 10000 +V5417 S12131D 10000 +V5417 S1214XD 10000 +V5417 S12150D 10000 +V5417 S12151D 10000 +V5417 S12190D 10000 +V5417 S12191D 10000 +V5417 S12200D 10000 +V5417 S12201D 10000 +V5417 S12230D 10000 +V5417 S12231D 10000 +V5417 S1224XD 10000 +V5417 S12250D 10000 +V5417 S12251D 10000 +V5417 S12290D 10000 +V5417 S12291D 10000 +V5417 S12300D 10000 +V5417 S12301D 10000 +V5417 S12330D 10000 +V5417 S12331D 10000 +V5417 S1234XD 10000 +V5417 S12350D 10000 +V5417 S12351D 10000 +V5417 S12390D 10000 +V5417 S12391D 10000 +V5417 S12400D 10000 +V5417 S12401D 10000 +V5417 S12430D 10000 +V5417 S12431D 10000 +V5417 S1244XD 10000 +V5417 S12450D 10000 +V5417 S12451D 10000 +V5417 S12490D 10000 +V5417 S12491D 10000 +V5417 S12500D 10000 +V5417 S12501D 10000 +V5417 S12530D 10000 +V5417 S12531D 10000 +V5417 S1254XD 10000 +V5417 S12550D 10000 +V5417 S12551D 10000 +V5417 S12590D 10000 +V5417 S12591D 10000 +V5417 S12600D 10000 +V5417 S12601D 10000 +V5417 S12630D 10000 +V5417 S12631D 10000 +V5417 S1264XD 10000 +V5417 S12650D 10000 +V5417 S12651D 10000 +V5417 S12690D 10000 +V5417 S12691D 10000 +V5417 S129XXD 10000 +V5417 S22000D 10000 +V5417 S22001D 10000 +V5417 S22002D 10000 +V5417 S22008D 10000 +V5417 S22009D 10000 +V5417 S22010D 10000 +V5417 S22011D 10000 +V5417 S22012D 10000 +V5417 S22018D 10000 +V5417 S22019D 10000 +V5417 S22020D 10000 +V5417 S22021D 10000 +V5417 S22022D 10000 +V5417 S22028D 10000 +V5417 S22029D 10000 +V5417 S22030D 10000 +V5417 S22031D 10000 +V5417 S22032D 10000 +V5417 S22038D 10000 +V5417 S22039D 10000 +V5417 S22040D 10000 +V5417 S22041D 10000 +V5417 S22042D 10000 +V5417 S22048D 10000 +V5417 S22049D 10000 +V5417 S22050D 10000 +V5417 S22051D 10000 +V5417 S22052D 10000 +V5417 S22058D 10000 +V5417 S22059D 10000 +V5417 S22060D 10000 +V5417 S22061D 10000 +V5417 S22062D 10000 +V5417 S22068D 10000 +V5417 S22069D 10000 +V5417 S22070D 10000 +V5417 S22071D 10000 +V5417 S22072D 10000 +V5417 S22078D 10000 +V5417 S22079D 10000 +V5417 S22080D 10000 +V5417 S22081D 10000 +V5417 S22082D 10000 +V5417 S22088D 10000 +V5417 S22089D 10000 +V5417 S32000D 10000 +V5417 S32001D 10000 +V5417 S32002D 10000 +V5417 S32008D 10000 +V5417 S32009D 10000 +V5417 S32010D 10000 +V5417 S32011D 10000 +V5417 S32012D 10000 +V5417 S32018D 10000 +V5417 S32019D 10000 +V5417 S32020D 10000 +V5417 S32021D 10000 +V5417 S32022D 10000 +V5417 S32028D 10000 +V5417 S32029D 10000 +V5417 S32030D 10000 +V5417 S32031D 10000 +V5417 S32032D 10000 +V5417 S32038D 10000 +V5417 S32039D 10000 +V5417 S32040D 10000 +V5417 S32041D 10000 +V5417 S32042D 10000 +V5417 S32048D 10000 +V5417 S32049D 10000 +V5417 S32050D 10000 +V5417 S32051D 10000 +V5417 S32052D 10000 +V5417 S32058D 10000 +V5417 S32059D 10000 +V5419 S020XXD 10000 +V5419 S02101D 10000 +V5419 S02102D 10000 +V5419 S02109D 10000 +V5419 S02110D 10000 +V5419 S02111D 10000 +V5419 S02112D 10000 +V5419 S02113D 10000 +V5419 S02118D 10000 +V5419 S02119D 10000 +V5419 S0211AD 10000 +V5419 S0211BD 10000 +V5419 S0211CD 10000 +V5419 S0211DD 10000 +V5419 S0211ED 10000 +V5419 S0211FD 10000 +V5419 S0211GD 10000 +V5419 S0211HD 10000 +V5419 S0219XD 10000 +V5419 S022XXD 10000 +V5419 S0230XD 10000 +V5419 S0231XD 10000 +V5419 S0232XD 10000 +V5419 S02400D 10000 +V5419 S02401D 10000 +V5419 S02402D 10000 +V5419 S0240AD 10000 +V5419 S0240BD 10000 +V5419 S0240CD 10000 +V5419 S0240DD 10000 +V5419 S0240ED 10000 +V5419 S0240FD 10000 +V5419 S02411D 10000 +V5419 S02412D 10000 +V5419 S02413D 10000 +V5419 S0242XD 10000 +V5419 S025XXD 10000 +V5419 S02600D 10000 +V5419 S02601D 10000 +V5419 S02602D 10000 +V5419 S02609D 10000 +V5419 S02610D 10000 +V5419 S02611D 10000 +V5419 S02612D 10000 +V5419 S02620D 10000 +V5419 S02621D 10000 +V5419 S02622D 10000 +V5419 S02630D 10000 +V5419 S02631D 10000 +V5419 S02632D 10000 +V5419 S02640D 10000 +V5419 S02641D 10000 +V5419 S02642D 10000 +V5419 S02650D 10000 +V5419 S02651D 10000 +V5419 S02652D 10000 +V5419 S0266XD 10000 +V5419 S02670D 10000 +V5419 S02671D 10000 +V5419 S02672D 10000 +V5419 S0269XD 10000 +V5419 S0280XD 10000 +V5419 S0281XD 10000 +V5419 S0282XD 10000 +V5419 S0291XD 10000 +V5419 S0292XD 10000 +V5419 S128XXD 10000 +V5419 S2220XD 10000 +V5419 S2221XD 10000 +V5419 S2222XD 10000 +V5419 S2223XD 10000 +V5419 S2224XD 10000 +V5419 S2231XD 10000 +V5419 S2232XD 10000 +V5419 S2239XD 10000 +V5419 S2241XD 10000 +V5419 S2242XD 10000 +V5419 S2243XD 10000 +V5419 S2249XD 10000 +V5419 S225XXD 10000 +V5419 S229XXD 10000 +V5419 S3210XD 10000 +V5419 S32110D 10000 +V5419 S32111D 10000 +V5419 S32112D 10000 +V5419 S32119D 10000 +V5419 S32120D 10000 +V5419 S32121D 10000 +V5419 S32122D 10000 +V5419 S32129D 10000 +V5419 S32130D 10000 +V5419 S32131D 10000 +V5419 S32132D 10000 +V5419 S32139D 10000 +V5419 S3214XD 10000 +V5419 S3215XD 10000 +V5419 S3216XD 10000 +V5419 S3217XD 10000 +V5419 S3219XD 10000 +V5419 S322XXD 10000 +V5419 S32810D 10000 +V5419 S32811D 10000 +V5419 S3282XD 10000 +V5419 S3289XD 10000 +V5419 S329XXD 10000 +V5419 S42001D 10000 +V5419 S42002D 10000 +V5419 S42009D 10000 +V5419 S42011D 10000 +V5419 S42012D 10000 +V5419 S42013D 10000 +V5419 S42014D 10000 +V5419 S42015D 10000 +V5419 S42016D 10000 +V5419 S42017D 10000 +V5419 S42018D 10000 +V5419 S42019D 10000 +V5419 S42021D 10000 +V5419 S42022D 10000 +V5419 S42023D 10000 +V5419 S42024D 10000 +V5419 S42025D 10000 +V5419 S42026D 10000 +V5419 S42031D 10000 +V5419 S42032D 10000 +V5419 S42033D 10000 +V5419 S42034D 10000 +V5419 S42035D 10000 +V5419 S42036D 10000 +V5420 M8440XD 10000 +V5421 M84421D 10000 +V5422 M84431D 10000 +V5423 M84459D 10000 +V5424 M8440XD 10000 +V5425 M84453D 10000 +V5425 M84750D 10000 +V5426 M84469D 10000 +V5427 M8440XD 10000 +V5429 M8448XD 10000 +V5481 Z471 00000 +V5482 Z4731 10000 +V5482 Z4732 10000 +V5482 Z4733 10000 +V5489 Z4789 10000 +V549 Z5189 10000 +V550 Z430 00000 +V551 Z431 00000 +V552 Z432 00000 +V553 Z433 00000 +V554 Z434 00000 +V555 Z435 00000 +V556 Z436 00000 +V557 Z437 00000 +V558 Z438 00000 +V559 Z439 00000 +V560 Z4931 10000 +V561 Z4901 00000 +V562 Z4902 00000 +V5631 Z4931 10000 +V5632 Z4932 10000 +V568 Z4932 10000 +V570 Z5189 10000 +V571 Z5189 10000 +V5721 Z5189 10000 +V5722 Z5189 10000 +V573 Z5189 10000 +V574 Z5189 10000 +V5781 Z5189 10000 +V5789 Z5189 10000 +V579 Z5189 10000 +V580 Z510 00000 +V5811 Z5111 00000 +V5812 Z5112 00000 +V582 Z5189 10000 +V5830 Z4800 00000 +V5831 Z4801 00000 +V5832 Z4802 00000 +V5841 Z481 00000 +V5842 Z483 00000 +V5843 Z4889 10000 +V5844 Z48298 10000 +V5849 Z4803 10000 +V5849 Z4889 10000 +V585 Z464 10000 +V5861 Z7901 00000 +V5862 Z792 00000 +V5863 Z7902 00000 +V5864 Z791 00000 +V5865 Z7951 10000 +V5865 Z7952 10000 +V5866 Z7982 00000 +V5867 Z794 00000 +V5868 Z7983 00000 +V5869 Z7984 10000 +V5869 Z79891 10000 +V5869 Z79899 10000 +V5871 Z48810 00000 +V5872 Z48811 00000 +V5873 Z48812 00000 +V5874 Z48813 00000 +V5875 Z48814 10000 +V5875 Z48815 10000 +V5876 Z48816 00000 +V5877 Z48817 00000 +V5878 Z4889 10000 +V5881 Z452 00000 +V5882 Z4682 10000 +V5883 Z5181 00000 +V5889 S0303XD 10000 +V5889 T82855D 10000 +V5889 T82856D 10000 +V5889 Z5189 10000 +V589 Z5189 10000 +V5901 Z52000 10000 +V5902 Z52001 10000 +V5909 Z52008 10000 +V591 Z5210 10000 +V592 Z5220 10000 +V593 Z523 00000 +V594 Z524 00000 +V595 Z525 00000 +V596 Z526 00000 +V5970 Z52819 00000 +V5971 Z52810 00000 +V5972 Z52811 00000 +V5973 Z52812 00000 +V5974 Z52813 00000 +V598 Z5289 00000 +V599 Z529 00000 +V600 Z590 10000 +V601 Z591 00000 +V602 Z595 10000 +V603 Z602 10000 +V604 Z742 10000 +V605 Z755 00000 +V606 Z593 00000 +V6081 Z6221 10000 +V6089 Z598 10000 +V609 Z599 10000 +V6101 Z6332 10000 +V6102 Z638 10000 +V6103 Z635 10000 +V6104 Z638 10000 +V6105 Z6332 10000 +V6106 Z6332 10000 +V6107 Z634 10000 +V6108 Z6332 10000 +V6109 Z638 10000 +V6110 Z7189 10000 +V6111 Z6911 00000 +V6112 Z6912 00000 +V6120 Z7189 10000 +V6121 Z69010 10000 +V6122 Z69011 00000 +V6123 Z7189 10000 +V6124 Z7189 10000 +V6125 Z7189 10000 +V6129 Z621 10000 +V6129 Z62898 10000 +V613 Z6379 10000 +V6141 Z6372 10000 +V6142 Z6379 10000 +V6149 Z636 10000 +V615 Z641 10000 +V616 Z640 10000 +V617 Z640 10000 +V618 Z62891 10000 +V618 Z638 10000 +V619 Z639 10000 +V620 Z560 10000 +V621 Z569 10000 +V6221 Z658 10000 +V6222 Z655 10000 +V6229 Z561 10000 +V6229 Z658 10000 +V623 Z559 10000 +V624 Z603 10000 +V625 Z653 10000 +V626 Z531 10000 +V6281 Z658 10000 +V6282 Z634 10000 +V6283 Z69021 10000 +V6283 Z6982 10000 +V6284 R45851 00000 +V6285 R45850 00000 +V6289 Z658 10000 +V629 Z659 10000 +V630 Z753 10000 +V631 Z750 00000 +V632 Z751 00000 +V638 Z754 10000 +V638 Z758 10000 +V639 Z753 10000 +V6400 Z289 00000 +V6401 Z2801 00000 +V6402 Z2802 00000 +V6403 Z2803 00000 +V6404 Z2804 00000 +V6405 Z2882 00000 +V6406 Z2821 10000 +V6407 Z281 00000 +V6408 Z2881 00000 +V6409 Z2809 10000 +V6409 Z2889 10000 +V641 Z5309 10000 +V642 Z5329 10000 +V643 Z538 10000 +V6441 Z5331 00000 +V6442 Z5332 00000 +V6443 Z5333 00000 +V650 Z763 10000 +V650 Z764 10000 +V6511 Z7681 00000 +V6519 Z710 00000 +V652 Z765 00000 +V653 Z713 00000 +V6540 Z719 10000 +V6541 Z7189 10000 +V6542 Z7141 10000 +V6543 Z7189 10000 +V6544 Z717 00000 +V6545 Z7189 10000 +V6546 Z4681 10000 +V6549 Z7189 10000 +V655 Z711 00000 +V658 Z7689 10000 +V659 Z719 10000 +V660 Z5189 10000 +V661 Z5189 10000 +V662 Z5189 10000 +V663 Z5189 10000 +V664 Z5189 10000 +V665 Z5189 10000 +V666 Z5189 10000 +V667 Z515 00000 +V669 Z5189 10000 +V6700 Z09 10000 +V6701 Z08 10000 +V6709 Z09 10000 +V671 Z08 10000 +V671 Z09 10000 +V672 Z08 10000 +V672 Z09 10000 +V673 Z09 10000 +V674 Z09 10000 +V6751 Z09 10000 +V6759 Z09 10000 +V676 Z08 10000 +V676 Z09 10000 +V679 Z08 10000 +V679 Z09 10000 +V6801 Z0271 00000 +V6809 Z0279 00000 +V681 Z760 00000 +V682 Z048 10000 +V6881 Z049 10000 +V6889 Z0289 10000 +V689 Z029 10000 +V690 Z723 00000 +V691 Z724 00000 +V692 Z7251 10000 +V693 Z726 00000 +V694 Z72820 00000 +V695 Z73819 10000 +V698 Z7289 10000 +V699 Z729 10000 +V700 Z0000 10000 +V701 Z046 00000 +V702 Z008 10000 +V703 Z0289 10000 +V704 Z0281 10000 +V704 Z0283 10000 +V705 Z021 10000 +V705 Z023 10000 +V705 Z0289 10000 +V706 Z008 10000 +V707 Z006 00000 +V708 Z005 10000 +V708 Z008 10000 +V709 Z008 10000 +V7101 Z0389 10000 +V7102 Z0389 10000 +V7109 Z0389 10000 +V711 Z0389 10000 +V712 Z0389 10000 +V713 Z042 00000 +V714 Z043 10000 +V715 Z0441 10000 +V716 Z048 10000 +V717 Z0389 10000 +V7181 Z0471 10000 +V7181 Z0472 10000 +V7182 Z03810 00000 +V7183 Z03818 00000 +V7189 Z036 10000 +V7189 Z0389 10000 +V719 Z049 10000 +V720 Z0100 10000 +V720 Z0101 10000 +V7211 Z01110 00000 +V7212 Z0112 00000 +V7219 Z0110 10000 +V7219 Z01118 10000 +V722 Z0120 10000 +V722 Z0121 10000 +V7231 Z01411 10000 +V7231 Z01419 10000 +V7232 Z0142 00000 +V7240 Z3200 00000 +V7241 Z3202 00000 +V7242 Z3201 00000 +V725 Z0189 10000 +V7260 Z0000 10000 +V7261 Z0184 00000 +V7262 Z0000 10000 +V7263 Z01812 00000 +V7269 Z0189 10000 +V727 Z0189 10000 +V7281 Z01810 00000 +V7282 Z01811 00000 +V7283 Z01818 10000 +V7284 Z01812 10000 +V7284 Z01818 10000 +V7285 Z0189 10000 +V7286 Z0183 00000 +V729 Z0189 10000 +V730 Z1159 10000 +V731 Z1159 10000 +V732 Z1159 10000 +V733 Z1159 10000 +V734 Z1159 10000 +V735 Z1159 10000 +V736 Z1159 10000 +V7381 Z1151 00000 +V7388 Z118 10000 +V7389 Z1159 10000 +V7398 Z118 10000 +V7399 Z1159 10000 +V740 Z110 10000 +V741 Z111 00000 +V742 Z112 10000 +V743 Z112 10000 +V744 Z112 10000 +V745 Z113 00000 +V746 Z118 10000 +V748 Z112 10000 +V748 Z118 10000 +V749 Z112 10000 +V750 Z118 10000 +V751 Z116 10000 +V752 Z116 10000 +V753 Z116 10000 +V754 Z118 10000 +V755 Z116 10000 +V756 Z116 10000 +V757 Z116 10000 +V758 Z110 10000 +V758 Z118 10000 +V759 Z119 00000 +V760 Z122 00000 +V7610 Z1239 10000 +V7611 Z1231 10000 +V7612 Z1231 10000 +V7619 Z1239 10000 +V762 Z124 00000 +V763 Z126 00000 +V7641 Z1212 00000 +V7642 Z1281 00000 +V7643 Z1283 00000 +V7644 Z125 00000 +V7645 Z1271 00000 +V7646 Z1273 00000 +V7647 Z1272 10000 +V7649 Z1289 10000 +V7650 Z1210 00000 +V7651 Z1211 00000 +V7652 Z1213 00000 +V7681 Z1282 00000 +V7689 Z1289 10000 +V769 Z129 00000 +V770 Z1329 10000 +V771 Z131 00000 +V772 Z1321 10000 +V773 Z13228 10000 +V774 Z13228 10000 +V775 Z1389 10000 +V776 Z13228 10000 +V777 Z13228 10000 +V778 Z1389 10000 +V7791 Z13220 00000 +V7799 Z1321 10000 +V7799 Z13228 10000 +V7799 Z1329 10000 +V780 Z130 10000 +V781 Z130 10000 +V782 Z130 10000 +V783 Z130 10000 +V788 Z130 10000 +V789 Z130 10000 +V790 Z1389 10000 +V791 Z1389 10000 +V792 Z134 10000 +V793 Z134 10000 +V798 Z134 10000 +V799 Z1389 10000 +V8001 Z13850 00000 +V8009 Z13858 00000 +V801 Z135 10000 +V802 Z135 10000 +V803 Z135 10000 +V810 Z136 10000 +V811 Z136 10000 +V812 Z136 10000 +V813 Z1383 10000 +V814 Z1383 10000 +V815 Z1389 10000 +V816 Z1389 10000 +V820 Z1389 10000 +V821 Z13828 10000 +V822 Z1389 10000 +V823 Z13828 10000 +V824 Z1389 10000 +V825 Z1388 00000 +V826 Z1389 10000 +V8271 Z1371 10000 +V8279 Z1379 10000 +V8279 Z1389 10000 +V8281 Z13820 00000 +V8289 Z1389 10000 +V829 Z139 10000 +V8301 Z1401 00000 +V8302 Z1402 00000 +V8381 Z141 00000 +V8389 Z148 00000 +V8401 Z1501 00000 +V8402 Z1502 00000 +V8403 Z1503 00000 +V8404 Z1504 00000 +V8409 Z1509 00000 +V8481 Z1581 00000 +V8489 Z1589 00000 +V850 Z681 10000 +V851 Z6820 10000 +V851 Z6821 10000 +V851 Z6822 10000 +V851 Z6823 10000 +V851 Z6824 10000 +V8521 Z6825 00000 +V8522 Z6826 00000 +V8523 Z6827 00000 +V8524 Z6828 00000 +V8525 Z6829 00000 +V8530 Z6830 00000 +V8531 Z6831 00000 +V8532 Z6832 00000 +V8533 Z6833 00000 +V8534 Z6834 00000 +V8535 Z6835 00000 +V8536 Z6836 00000 +V8537 Z6837 00000 +V8538 Z6838 00000 +V8539 Z6839 00000 +V8541 Z6841 00000 +V8542 Z6842 00000 +V8543 Z6843 00000 +V8544 Z6844 00000 +V8545 Z6845 00000 +V8551 Z6851 00000 +V8552 Z6852 00000 +V8553 Z6853 00000 +V8554 Z6854 00000 +V860 Z170 10000 +V861 Z171 10000 +V8701 Z77010 00000 +V8702 Z77012 00000 +V8709 Z77018 10000 +V8711 Z77020 00000 +V8712 Z77021 00000 +V8719 Z77028 10000 +V872 Z77098 10000 +V8731 Z77120 00000 +V8732 Z77121 10000 +V8739 Z7729 10000 +V8741 Z9221 00000 +V8742 Z9222 00000 +V8743 Z9223 00000 +V8744 Z92240 00000 +V8745 Z92241 00000 +V8746 Z9225 00000 +V8749 Z9229 00000 +V8801 Z90710 00000 +V8802 Z90711 00000 +V8803 Z90712 00000 +V8811 Z90410 00000 +V8812 Z90411 00000 +V8821 Z89629 10000 +V8822 Z89529 10000 +V8829 Z899 10000 +V8901 Z0371 00000 +V8902 Z0372 00000 +V8903 Z0373 00000 +V8904 Z0374 00000 +V8905 Z0375 00000 +V8909 Z0379 00000 +V9001 Z1801 00000 +V9009 Z1809 00000 +V9010 Z1810 00000 +V9011 Z1811 00000 +V9012 Z1812 00000 +V902 Z182 00000 +V9031 Z1831 00000 +V9032 Z1832 00000 +V9033 Z1833 00000 +V9039 Z1839 00000 +V9081 Z1881 00000 +V9083 Z1883 00000 +V9089 Z1889 00000 +V909 Z189 00000 +V9100 O30009 10000 +V9101 O30019 10000 +V9102 O30039 10000 +V9103 O30049 10000 +V9109 O30099 10000 +V9110 O30109 10000 +V9111 O30119 10000 +V9112 O30129 10000 +V9119 O30199 10000 +V9120 O30209 10000 +V9121 O30219 10000 +V9122 O30229 10000 +V9129 O30299 10000 +V9190 O30809 10000 +V9191 O30819 10000 +V9192 O30829 10000 +V9199 O30899 10000 diff --git a/create_data_set/S0_connectToPostgres.R b/create_data_set/S0_connectToPostgres.R new file mode 100644 index 0000000..11b1f4e --- /dev/null +++ b/create_data_set/S0_connectToPostgres.R @@ -0,0 +1,44 @@ +library(RPostgres) +library(DBI) +## --able to run +#' Creates a connection to a postgresql database. +#' @param Name of the database database port, user name, and user password +#' +#' @return An object called con that can be used in database queries. +#' @examples \code{con = getConnection()} +#' dbname for master is postgres, for testing it is test_code_usrds +#' +#' +getConnection = function() { + con = dbConnect( + RPostgres::Postgres(), + dbname = 'my_database_name_in_postgres', + host = 'my_connection_for_postgres', + port = '5432', + user = 'my_username_for_postgres', + password = 'my_password_for_postgres' + ) + + return(con) +} + +# drop table Function definition ----------------------------------------------------- +#' Title drop_table_funcion +#' Checks to see if the table exists, if it does, it is dropped. +#' @param tablename +#' @export a dropped table from postgres database +#' +#' @examples \code{drop_table_function(con, "patients")} +#' +drop_table_function <- function(con, tablename) { + if (isTRUE(dbExistsTable(con, tablename))) { + print(str_glue("existing {tablename} table dropped")) + dbRemoveTable(con, tablename) + } + else { + print(str_glue("{tablename} table does not exist")) + } +} + +# Execute function -------------------------------------------------------- +con = getConnection() \ No newline at end of file diff --git a/create_data_set/S1a_convertSAStoCSV.R b/create_data_set/S1a_convertSAStoCSV.R new file mode 100644 index 0000000..da18246 --- /dev/null +++ b/create_data_set/S1a_convertSAStoCSV.R @@ -0,0 +1,75 @@ +library(readr) +library(haven) +library(stringr) +# Script Function definition ----------------------------------------------------- +#' Title \code{convert_to_csv} Convert and combine raw source data from sas files +#' to .csv files +#' @param source_data_dir string path to the raw data file +#' @param file_name string name of the file without the extension +#' @param output_data_dir string path to the output directory for csv files +#' @export a .csv version of the file with the same file_name +#' +#' @examples \code{convert_to_csv("/home/sas_data_usrds/, "patients", "/home/csv_data_usrds/)} +#' +#' +convert_to_csv = function(source_data_dir, file_name, output_data_dir) { + raw_file_path = haven::read_sas(str_glue("{source_data_dir}{file_name}.sas7bdat")) + csv_path = str_glue("{output_data_dir}{file_name}.csv") + write_csv(raw_file_path, csv_path) +} +# Execute function -------------------------------------------------------- +file_list = c( + "ckd_patient_master_file", + "death", + "inc2008", + "inc2009", + "inc2010", + "medevid", + "patients", + "tx", + "waitseq_ki", + "waitseq_kp", + "preesrd5y_hh_clm_inc2012", + "preesrd5y_hh_clm_inc2013", + "preesrd5y_hh_clm_inc2014", + "preesrd5y_hh_clm_inc2015", + "preesrd5y_hh_clm_inc2016", + "preesrd5y_hh_clm_inc2017", + "preesrd5y_hh_clm_inc2011", + "preesrd5y_hs_clm_inc2012", + "preesrd5y_hs_clm_inc2013", + "preesrd5y_hs_clm_inc2014", + "preesrd5y_hs_clm_inc2015", + "preesrd5y_hs_clm_inc2016", + "preesrd5y_hs_clm_inc2017", + "preesrd5y_hs_clm_inc2011", + "preesrd5y_ip_clm_inc2012", + "preesrd5y_ip_clm_inc2013", + "preesrd5y_ip_clm_inc2014", + "preesrd5y_ip_clm_inc2015", + "preesrd5y_ip_clm_inc2016", + "preesrd5y_ip_clm_inc2017", + "preesrd5y_ip_clm_inc2011", + "preesrd5y_hh_clm_inc2011", + "preesrd5y_sn_clm_inc2012", + "preesrd5y_sn_clm_inc2013", + "preesrd5y_sn_clm_inc2014", + "preesrd5y_sn_clm_inc2015", + "preesrd5y_sn_clm_inc2016", + "preesrd5y_sn_clm_inc2017", + "preesrd5y_sn_clm_inc2011", + "preesrd5y_op_clm_inc2012", + "preesrd5y_op_clm_inc2013", + "preesrd5y_op_clm_inc2014", + "preesrd5y_op_clm_inc2015", + "preesrd5y_op_clm_inc2016", + "preesrd5y_op_clm_inc2017", + "preesrd5y_op_clm_inc2011" +) + +dir_to_files = file.path("", "data_raw", "") +dir_for_csv = file.path("", "data", "") + +for (file_nm in file_list) { + convert_to_csv(dir_to_files, file_nm, dir_for_csv) +} \ No newline at end of file diff --git a/create_data_set/S1b_patients.R b/create_data_set/S1b_patients.R new file mode 100644 index 0000000..5d95792 --- /dev/null +++ b/create_data_set/S1b_patients.R @@ -0,0 +1,245 @@ +library(RPostgres) +library(DBI) +library(readr) +library(dplyr) +library(lubridate) +library(stringr) + +#' Title create_patients_table +#' Creates the table patients in the Postgres database, using the .csv files +#' created in S1a. The patients in our cohort are selected based on +#' 1. age >= 18 years +#' 2. inc_year between 2008-2017 +#' 3. first dialysis date is not missing +#' 3. death date is not prior to first dialysis date (one patient fits this condition) +#' +#' @param source_dir +#' @param table_name_pt +#' @param data_dir +#' +#' @return a dataframe of the filtered patients table according to our cohort +#' criteria and the created dependent variable. +#' @export postgres table patients +#' +#' @examples create_patients_medevid_table(my_source_dir, my_data_dir, patient_table_name="patients") +#' + +create_patients_table <- function(source_dir, + data_dir, + table_name_pt="patients" +) { + + source(file.path(source_dir, "S0-connectToPostgres.R")) + on.exit({ + dbDisconnect(con) + assign( + x = "create_patients_medevid_table", rlang::current_env(), rlang::global_env() + ) + }) + + print("import patients table from CSV into R") + patients = read_csv(file.path(data_dir, "patients.csv"), col_types = cols( + CDTYPE = "c")) + + names(patients) = tolower(names(patients)) + fields = names(patients) + drop_table_function(con, table_name_pt) + print(str_glue("create {table_name_pt} in postgres")) + dbCreateTable( + con, + name = table_name_pt, + fields = patients, + row.names = NULL + ) + dbWriteTable( + con, + name = table_name_pt, + value = patients, + row.names = FALSE, + append = TRUE + ) + + raw_total_pt = dbGetQuery( + con, + str_glue( + "SELECT COUNT(*) + FROM {table_name_pt}") + ) + if (raw_total_pt != nrow(patients)) { + print ("number of rows not equal") + } + + #Get number of rows in PATIENTS at each stage of limiting the cohort + print(str_glue("{raw_total_pt %>% format(big.mark = ",") + } patients in raw patients table")) + + ########### exclude null first dialysis date + exclude_null_firstdial = str_glue( + "DELETE FROM {table_name_pt} + WHERE masked_firstdial IS NULL" + ) + dbSendStatement(con, exclude_null_firstdial) + + n_non_null_firstdial = dbGetQuery( + con, + str_glue( + "SELECT COUNT(*) + FROM {table_name_pt}") + ) + print(str_glue("number of patients with non null First Dialysis Date { + n_non_null_firstdial %>% format(big.mark = ",") + }, should be 3096526")) + + ########### exclude patients where death is before first dialysis + exclude_death_after = str_glue( + "DELETE FROM {table_name_pt} + WHERE masked_died% format(big.mark = ",") + }")) + if (n_no_death_after != 3096515){ + print("should have 3096515 rows") + stop() + } + +##########exclude minor patients + exclude_minors = str_glue( + "DELETE FROM {table_name_pt} + WHERE inc_age < 18") + dbSendStatement(con, exclude_minors) + n_adults = dbGetQuery( + con, + str_glue( + "SELECT COUNT(*) + FROM {table_name_pt}")) + + print(str_glue("number of adult patients with valid First Dialysis Date, + {n_adults %>% format(big.mark = ",") + }")) + if (n_adults != 3065026){ + print("should have 3065026 rows") + stop() + } + + ########### filter on cohort years 2008-2017 + exclude_years = str_glue( + "DELETE FROM {table_name_pt} + WHERE incyear>2017 + OR incyear<2008" + ) + dbSendStatement(con, exclude_years) + + + + # to do this cohort creation in all one step, run the following sql query + # exclude_patients = str_glue( + # "DELETE FROM {table_name_pt} + # WHERE inc_age<18 + # OR incyear>2017 + # OR incyear<2008 + # OR masked_firstdial IS NULL + # OR masked_died% format(big.mark = ",") + } does not equal 1150195 which is what the total patients + should be for the cohort")) + stop() + } + print(str_glue("number of adult patients with valid First Dialysis Date + in our cohort of incident year between 2008-2017 (inclusive), + {cohort_total_pt %>% format(big.mark = ",") + }, should be 1150195")) + + patients_dependent_var = create_dependent_var(patients_filtered) + + print(str_glue("patients = {nrow(patients_dependent_var)} at create + dependent variable")) + if (nrow(patients_dependent_var) != 1150195){ + print("should be 1150195 rows") + stop() + } + + drop_table_function(con, table_name_pt) + dbCreateTable( + con, + name = table_name_pt, + fields = patients_dependent_var, + row.names = NULL + ) + dbWriteTable( + con, + name = table_name_pt, + value = patients_dependent_var, + row.names = FALSE, + append = TRUE + ) +} + +#' Title create_dependent_var +#' Create dependent variable died_in_90 of patients who did/not survive 90 days +#' after the first dialysis date (masked_firstdial). +#' Some features are converted to dates to calc the date math for the +#' days_on_dial feature and the dependent variable. +#' @param patients_df +#' +#' @return pat, a data frame the has the dependent variable (died_in_90) included +#' @export none +#' +#' @examples create_dependent_var(patients_data_frame) +create_dependent_var <- function(patients_df){ + pat = patients_df %>% + mutate(inc_age=ifelse(inc_age>90, 90, inc_age), + masked_firstdial = as_date(masked_firstdial, origin = "1960-01-01"), + + masked_died = as_date(masked_died, origin = "1960-01-01"), + + days_on_dial = as.double(difftime(masked_died, + masked_firstdial, + units = "days")), + + died_in_90 = ifelse(is.na(days_on_dial), 0, ifelse(days_on_dial <= 90, 1, 0)), + + # convert data vars to dates that are used to calculate waitlist and transplant status + # in S1c-txWaitlist.R + masked_first_se = as_date(masked_first_se, origin = "1960-01-01"), + + #can_first_listing_dt = First date patient is ever waitlisted + masked_can_first_listing_dt = as_date(masked_can_first_listing_dt, origin = "1960-01-01"), + + #can_rem_dt = Date patient was removed from the waitlist the first time + masked_can_rem_dt = as_date(masked_can_rem_dt, origin = "1960-01-01"), + masked_tx1date = as_date(masked_tx1date, origin = "1960-01-01"), + masked_tx1fail = as_date(masked_tx1fail, origin = "1960-01-01") +) + return(pat) +} + +# Execute functions -------------------------------------------------------- +data_dir = file.path("data", "") +source_dir = file.path("CreateDataSet") +create_patients_table( + source_dir, + data_dir, + table_name_pt = "patients") \ No newline at end of file diff --git a/create_data_set/S1c_medevid.R b/create_data_set/S1c_medevid.R new file mode 100644 index 0000000..7e0145e --- /dev/null +++ b/create_data_set/S1c_medevid.R @@ -0,0 +1,141 @@ +library(RPostgres) +library(DBI) +library(readr) +library(dplyr) +library(lubridate) +library(stringr) + +#' Title create_medevid_table +#' Create the medevid (medical evidence) table. +#' 1. keep the usrds_ids also present in the patients table +#' 2. deduplicate by only keeping the first medevid entry for each usrds_id +#' To ensure that we are including a patient’s record associated with their +#' first course of dialysis treatment. +#' WARNING! do NOT reorder the medevid table until after deduplicating as it +#' uses the order from USRDS. +#' @param source_dir +#' @param data_dir +#' @param filename +#' @param table_name_pt +#' @param medevid_table_name +#' +#' @return +#' @export postgres table medevid +#' +#' @examples +create_medevid_table <- function(source_dir, + data_dir, + filename = "medevid.csv", + table_name_pt="patients", + medevid_table_name="medevid") { + + source(file.path(source_dir, "S0-connectToPostgres.R")) + + print("import medical evidence table (medevid) from CSV into R") + # set a few column types that will try to import as non-char and throw errors + raw_medevid = read_csv(file.path(data_dir, filename), col_types = cols( + CDTYPE = "c", + masked_UREADT = "c", + ALGCON = "c", + PATNOTINFORMEDREASON = "c", + RACEC = "c", + RACE_SUB_CODE = "c")) + + names(raw_medevid) = tolower(names(raw_medevid)) + + print( + str_glue( + "{nrow(raw_medevid)} number of rows raw medevid")) + print( + str_glue( + "{length(unique(raw_medevid$usrds_id))} unique usrds_ids in raw + medevid table")) + + # read in patients table to filter IDs + patients_filtered = dbGetQuery( + con, + str_glue( + " + SELECT * + FROM {table_name_pt} + ")) + # remove unused columns + # filter on ids from the patient table + medevid_ids_filtered = raw_medevid %>% + select(-c( + "como_ihd", + "como_mi", + "como_cararr", + "como_dysrhyt", + "como_pericar", + "como_diabprim", + "como_hiv", + "como_aids")) %>% + filter(usrds_id %in% patients_filtered$usrds_id) + + if (length(unique(medevid_ids_filtered$usrds_id)) != 1150195) { + print("incorrect number of ids, should be 1150195") + stop() + } else { + print( + str_glue( + "after filtering on {table_name_pt} table + unique usrds_ids = {length(unique(medevid_ids_filtered$usrds_id))} + number of rows = {nrow(medevid_ids_filtered)} + ")) + } + + # keep first row of medevid data if a usrds_id has more than one + #per the USRDS Researcher's guide for deduplicating the medevid table + # calculate the dialysis train time in days + + medevid_filtered = medevid_ids_filtered %>% + distinct(usrds_id, .keep_all = TRUE) %>% + mutate( + masked_trnend = as_date(masked_trnend, origin = "1960-01-01"), + masked_trstdat = as_date(masked_trstdat, origin = "1960-01-01"), + + dial_train_time = as.double(difftime(masked_trnend, + masked_trstdat, + units = "days")) + ) + + if (nrow(medevid_filtered) != 1150195) { + print( + "incorrect number of ids, should be 1150195" + ) + stop() + } else { + print(str_glue("{ + nrow(medevid_filtered)} number of rows and usrds_ids after filtering + and deduplicating medevid + ")) + } + + print("save to postgres") + + drop_table_function(con, medevid_table_name) + dbCreateTable( + con, + name = medevid_table_name, + fields = medevid_filtered, + row.names = NULL + ) + dbWriteTable( + con, + name = medevid_table_name, + value = medevid_filtered, + row.names = FALSE, + append = TRUE + ) +} +# Execute function -------------------------------------------------------- + +data_dir = file.path("data", "") +source_dir = file.path("CreateDataSet") +create_medevid_table( + source_dir, + data_dir, + filename = "medevid.csv", + table_name_pt = "patients", + medevid_table_name = "medevid") \ No newline at end of file diff --git a/create_data_set/S1d_patients_medevid_join.R b/create_data_set/S1d_patients_medevid_join.R new file mode 100644 index 0000000..1d6bbd1 --- /dev/null +++ b/create_data_set/S1d_patients_medevid_join.R @@ -0,0 +1,117 @@ +library(RPostgres) +library(DBI) +library(readr) +library(dplyr) +library(lubridate) +library(stringr) + +#' Title join_patients_medevid +#' this function will join the medevid and patients tables +#' We should have 1,150,195 rows/patients in the dataframe returned, +#' the same number in filtered patients after selecting the cohort. +#' Duplicate columns are kept from patients, +#' except missing sex or pdis values in patients are replaced with medevid values +#' @param source_dir +#' @param table_name_pt +#' @param medevid_table_name +#' @param joined_table_name +#' +#' @return +#' @export patients_medevid, a dataframe of the merged patients and medevid tables +#' after they have been pre-processed +#' +#' @examples +join_patients_medevid <- function(source_dir, + table_name_pt = "patients", + medevid_table_name = "medevid", + joined_table_name = "patients_medevid") { + + source(file.path(source_dir, "S0-connectToPostgres.R")) + on.exit({ + dbDisconnect(con) + }) + + patients_filtered = dbGetQuery( + con, + str_glue( + " + SELECT * + FROM {table_name_pt} + ")) + + medevid_filtered = dbGetQuery( + con, + str_glue( + " + SELECT * + FROM {medevid_table_name} + ")) + + + + #sex and pdis from medevid, rename and recode to bring over and + # populate missing vals in patients + medevid_filtered = medevid_filtered %>% + mutate( + sex_med = ifelse( + sex == "M", 1, + ifelse(sex == "F", 2, 3)), + pdis_med = pdis + ) + + #Remove cols in medevid that are also in patients, and left join on patients + # note that we don't keep the cdtype col from patients, as it comes in with all null values + + pt_med_merge = left_join( + patients_filtered %>% select(-c( "cdtype")), + medevid_filtered %>% select(-c("randomoffsetindays", "disgrpc", "network", "inc_age", + "pdis", "sex", "race", "masked_died")), + by = "usrds_id" + ) + + pt_med_merge = pt_med_merge %>% + mutate( + sex = ifelse(is.na(sex), sex_med, sex), + pdis = ifelse(is.na(pdis), pdis_med, pdis) + ) %>% + select(-c(sex_med, pdis_med)) + + #save to postgres + drop_table_function(con, joined_table_name) + dbCreateTable( + con, + name = joined_table_name, + fields = pt_med_merge, + row.names = NULL + ) + dbWriteTable( + con, + name = joined_table_name, + value = pt_med_merge, + row.names = FALSE, + append = TRUE + ) + + if (nrow(pt_med_merge)!=1150195){ + print( + str_glue( + "WARNING! the number of patients {nrow(pt_med_merge)} + does not equal 1150195")) + stop() + } + else { + print( + str_glue( + "total patients/rows = {nrow(pt_med_merge)}")) + } +} + +# Execute functions -------------------------------------------------------- +data_dir = file.path("data", "") +source_dir = file.path("CreateDataSet") + +join_patients_medevid( + source_dir, + table_name_pt = "patients", + medevid_table_name = "medevid", + joined_table_name = "patients_medevid") \ No newline at end of file diff --git a/create_data_set/S1e_patients_medevid_waitlist.R b/create_data_set/S1e_patients_medevid_waitlist.R new file mode 100644 index 0000000..d051b6e --- /dev/null +++ b/create_data_set/S1e_patients_medevid_waitlist.R @@ -0,0 +1,478 @@ +library(readr) +library(dplyr) +library(magrittr) +library(lubridate) +library(RPostgres) +library(DBI) +library(stringr) + +#This script investigates and creates the `waitseq_ki`, `waitseq_kp`, `tx`, `tx_waitlist_vars` +#and `patients_medevid_waitlist` tables in the postgres database from the .csv +#files and the `patients_medevid` table. +#The result is the calculation of the variables added to the data to create the +#`patients_medevid_waitlist` table. +# days_on_waitlist (number of days in transplant waitlist +# waitlist_status (active, transplanted, removed, never) +# - Input: Postgresql table `patients_medevid`, tx.csv, waitseq_kp.csv, waitseq_ki.csv +#files produced in script S1a-convertSAStoCSV.R +# - Output: New postgresql tables `waitseq_ki`, `waitseq_kp`, `tx`, +# `tx_waitlist_vars` and +# `patients_medevid_waitlist` (this is the full dataset that should be used going forward). + + +data_dir = file.path("data", "") +source_dir = file.path("CreateDataSet") +source(file.path(source_dir, "S0-connectToPostgres.R")) + +#####LOAD PATIENT DATA#### +pat = dbGetQuery(con, + "SELECT * + FROM patients_medevid") +####WAITSEQ_KI PRE-PROCESSING#### +#WS_LIST_DT = New Waiting Period Starting Date +#WS_END_DT = New Waiting Period Ending Date +#PROVUSRD = USRDS Assigned Facility ID + +#Read in WAITSEQ_KI +waitseq_ki = read_csv(file.path(data_dir,"waitseq_ki.csv"), col_types = cols( + USRDS_ID = col_double(), + randomOffsetInDays = col_double(), + PROVUSRD = col_double(), + PID = col_double(), + masked_BEGIN = col_double(), + masked_ENDING = col_double() + )) + +names(waitseq_ki) = tolower(names(waitseq_ki)) + +#Only keep rows with USRDS_ID in cohort +waitseq_ki = waitseq_ki %>% + filter(usrds_id %in% pat$usrds_id) %>% + mutate(ws_list_dt = as_date(masked_begin, origin = "1960-01-01"), + ws_end_dt = as_date(masked_ending, origin = "1960-01-01"), + source = "ki") %>% + select(usrds_id, pid, provusrd, ws_list_dt, ws_end_dt, source) + +#save to postgres +fields = names(waitseq_ki) +drop_table_function(con, "waitseq_ki") +print(str_glue("create waitseq_ki in postgres")) +dbCreateTable( + con, + name = "waitseq_ki", + fields = waitseq_ki, + row.names = NULL +) +dbWriteTable( + con, + name = "waitseq_ki", + value = waitseq_ki, + row.names = FALSE, + append = TRUE +) +####WAITSEQ_KP PRE-PROCESSING#### +#WS_LIST_DT = New Waiting Period Starting Date +#WS_END_DT = New Waiting Period Ending Date +#PROVUSRD = USRDS Assigned Facility ID + +#Read in WAITSEQ_KP +waitseq_kp = read_csv(file.path(data_dir,"waitseq_kp.csv"), col_types = cols( + USRDS_ID = col_double(), + randomOffsetInDays = col_double(), + PROVUSRD = col_double(), + PID = col_double(), + masked_BEGIN = col_double(), + masked_ENDING = col_double() +)) +names(waitseq_kp) = tolower(names(waitseq_kp)) + +#Only keep rows with USRDS_ID that's in refined patients cohort +waitseq_kp = waitseq_kp %>% + filter(usrds_id %in% pat$usrds_id) %>% + mutate(ws_list_dt = as_date(masked_begin, origin = "1960-01-01"), + ws_end_dt = as_date(masked_ending, origin = "1960-01-01"), + source = "kp") %>% + select(usrds_id, pid, provusrd, ws_list_dt, ws_end_dt, source) + +#save to postgres +fields = names(waitseq_kp) +drop_table_function(con, "waitseq_kp") +print(str_glue("create waitseq_kp in postgres")) +dbCreateTable( + con, + name = "waitseq_kp", + fields = waitseq_kp, + row.names = NULL +) +dbWriteTable( + con, + name = "waitseq_kp", + value = waitseq_kp, + row.names = FALSE, + append = TRUE +) +####ROW BIND WAITSEQ_KI AND WAITSEQ_KP TOGETHER#### +waitseq = bind_rows(waitseq_ki, waitseq_kp) %>% + arrange(usrds_id, ws_list_dt) + +####LEFT JOIN PATIENTS AND WAITSEQ#### +pat_waitseq = left_join( + pat %>% select(usrds_id, masked_first_se, masked_firstdial, + masked_can_first_listing_dt, masked_can_rem_dt, + masked_tx1date, masked_died, can_rem_cd, masked_tx1fail), + waitseq, + by = "usrds_id") %>% + arrange(usrds_id, ws_list_dt) + +########################################### +#Get number of rows in pat_waitseq where can_first_listing_date is not missing +nrow(pat_waitseq %>% filter(!is.na(masked_can_first_listing_dt))) +# 243,580 + +#Get number of rows in pat_waitseq where ws_list_date is not missing +nrow(pat_waitseq %>% filter(!is.na(ws_list_dt))) +# 243,575 +### Why aren't those numbers the same?? + +#Look at the 5 rows that are different +setdiff(pat_waitseq %>% filter(!is.na(masked_can_first_listing_dt)), + pat_waitseq %>% filter(!is.na(ws_list_dt))) +# They're patients who have rem_code = "listed in error" or list_date = list_end_date +# Both are reasons they've been removed from the waitseq files + +####ACTIVE ON WAITLIST#### +#If list_date is before dial_date and end_date is on or after dial_date: +# status is ACTIVE ON FIRST DAY OF DIALYSIS + +#First, check if earliest listing date from waitseq matches first listing date from pat +first_list = pat_waitseq %>% group_by(usrds_id) %>% + arrange(usrds_id, ws_list_dt) %>% + distinct(usrds_id, .keep_all = TRUE) %>% + ungroup(usrds_id) + +#Get number of rows where patients listing date != waitseq listing date +nrow(first_list %>% filter(masked_can_first_listing_dt != ws_list_dt)) +# 20 rows, but all have rem_code = 10 --> Candidate listed in error, so we can ignore them + +#If list_date is before dial_date and end_date is on or after dial_date, +# OR if list_dt < dial_dt and end_dt == NA: +# status is ACTIVE ON FIRST DAY OF DIALYSIS +pat_waitseq = pat_waitseq %>% + mutate(active = ifelse( + (ws_list_dt < masked_firstdial & ws_end_dt >= masked_firstdial) | (ws_list_dt < masked_firstdial & is.na(ws_end_dt)), 1, 0)) + +num_active = sum(pat_waitseq$active == 1, na.rm = TRUE) + +active = pat_waitseq %>% + filter((ws_list_dt < masked_firstdial & ws_end_dt >= masked_firstdial) | (ws_list_dt < masked_firstdial & is.na(ws_end_dt))) + +if (num_active != nrow(active)) { + print("problem calc active rows, should be 49,924") +} + +### Days on waitlist for ACTIVE ppl is dial_dt - ws_list_dt ### +active = active %>% + mutate( + days_on_waitlist = as.double(difftime(masked_firstdial, + ws_list_dt, + units = "days")) + ) + +#Then sort by USRDS_ID and WS_LIST_DT and keep row w/ EARLIEST WS_LIST_DT +active = active %>% group_by(usrds_id) %>% + arrange(usrds_id, ws_list_dt) %>% + distinct(usrds_id, .keep_all = TRUE) %>% + ungroup(usrds_id) + +### REMOVE ROWS FROM PAT_WAITSEQ WHERE USRDS_ID IS IN ACTIVE ### + +#Get unique usrds_id's in active dataframe +active_id = unique(active$usrds_id) + +#Filter out rows from pat_waitseq where usrds_id is in active_id +pat_waitseq_not_act = pat_waitseq %>% + filter(!usrds_id %in% active_id) + +####TX PRE-PROCESSING#### +#T_TX_DT = transplant date, +#YEAR = year of transplant, +#T_FAIL_DT = Transplant Failure Date +#PROVUSRD = USRDS Assigned Facility ID, +#TX_SRCE = Source of Transplant Record +#TOTTX = Patient Total Number of TXs + +#Read in TX dataset +tx = read_csv(file.path(data_dir,"tx.csv"), col_types = cols( + DHISP = "c", + DSEX = "c", + RHISP = "c", + RSEX = "c" +)) + +names(tx) = tolower(names(tx)) + +tx = tx %>% + filter(usrds_id %in% pat$usrds_id) %>% + mutate(t_tx_dt = as_date(masked_tdate, origin = "1960-01-01"), + t_fail_dt = as_date(masked_faildate, origin = "1960-01-01")) %>% + select(usrds_id, provusrd, t_tx_dt, t_fail_dt, tottx, tx_srce) %>% + arrange(usrds_id, t_tx_dt) + +#save to postgres +fields = names(tx) +drop_table_function(con, "tx") +print(str_glue("create tx in postgres")) +dbCreateTable( + con, + name = "tx", + fields = tx, + row.names = NULL +) +dbWriteTable( + con, + name = "tx", + value = tx, + row.names = FALSE, + append = TRUE +) +################################ +### Subset rows where LISTING DATE and LIST END DATE are both BEFORE DIAL START DATE ### +# STEP 1. Subset rows with ws_list_dt & ws_end_date BEFORE pat first dial date +list_before_dial = pat_waitseq_not_act %>% + filter(ws_list_dt < masked_firstdial & ws_end_dt < masked_firstdial) + +# STEP 2. Group by usrds_id, sort by largest to smallest end_date, and keep max(end_date) for each usrds_id +closest_end_dt_to_dial = list_before_dial %>% group_by(usrds_id) %>% + arrange(usrds_id, desc(ws_end_dt)) %>% + distinct(usrds_id, .keep_all = TRUE) %>% + ungroup(usrds_id) + +#Left join CLOSEST_END_DT_TO_DIAL and TX on USRDS_ID +# This has effect of filtering TX dataset and keeping rows +# where USRDS_ID is in CLOSEST_END_DT_TO_DIAL +max_end_dt = left_join( + closest_end_dt_to_dial %>% select(-pid, -provusrd), + tx %>% select(usrds_id, t_tx_dt, t_fail_dt), + by = "usrds_id" +) + +max_end_dt = max_end_dt %>% + mutate(transplanted = if_else(is.na(t_tx_dt), 0, + if_else(ws_end_dt == t_tx_dt, 1, 0))) + +#Check how many rows have transplanted = 1 +transplated_rows = sum(max_end_dt$transplanted == 1, na.rm = TRUE) + +transplanted = max_end_dt %>% + filter(ws_end_dt == t_tx_dt) + +if (nrow(transplanted) != transplated_rows) { + print("transplated rows should be 1186 incorrect see 'max_end_dt'") + } + +###Days on waitlist for TRANSPLANTED ppl is t_tx_dt - ws_list_dt#### +transplanted = transplanted %>% + mutate( + days_on_waitlist = as.double(difftime(t_tx_dt, + ws_list_dt, + units = "days")) + ) + +###Remove rows from MAX_END_DT where USRDS_ID is in TRANSPLANTED#### +#Get unique usrds_id's in transplanted dataframe +transplanted_id = unique(transplanted$usrds_id) + +#Filter out rows from MAX_END_DT where USRDS_ID is in TRANSPLANTED_ID +no_act_or_trans = max_end_dt %>% + filter(!usrds_id %in% transplanted_id) + +###EVERONE LEFT IN NO_ACT_OR_TRANS SHOULD HAVE REMOVED STATUS#### +#Check that all rows meet the removed criteria +num_no_act_tx = nrow(no_act_or_trans %>% + filter(ws_end_dt != t_tx_dt | is.na(t_tx_dt))) + +## Create REMOVED col and set REMOVED = 1 if WS_END_DT != T_TX_DT or T_TX_DT = NA +no_act_or_trans = no_act_or_trans %>% + mutate(removed = if_else(ws_end_dt != t_tx_dt | is.na(t_tx_dt), 1, 0)) + +num_removed = sum(no_act_or_trans$removed == 1, na.rm = TRUE) + +if (num_no_act_tx != num_removed){ + print("number of patients in Removed col=1 does not equal number calculated + for 'no active or transplanted' status. both should equal 1490") +} + +removed = no_act_or_trans %>% + filter(ws_end_dt != t_tx_dt | is.na(t_tx_dt)) + +if (nrow(removed) != num_removed){ + print("number of patients in Removed col=1 does not equal number calculated + for 'no active or transplanted' status. both should equal 1490") +} + +### Days on waitlist for REMOVED ppl is ws_end_dt - ws_list_dt ### +removed = removed %>% + mutate( + days_on_waitlist = as.double(difftime(ws_end_dt, + ws_list_dt, + units = "days")) + ) +#REMOVED only has dupes cuz TX has multiple rows, but the waitseq start and end dates are +# the same for both rows of each USRDS_ID, so we can just keep the first +removed = removed %>% group_by(usrds_id) %>% + arrange(usrds_id, ws_list_dt) %>% + distinct(usrds_id, .keep_all = TRUE) %>% + ungroup(usrds_id) + +#Get unique usrds_ids in removed dataframe +removed_id = unique(removed$usrds_id) + +###ROW BIND DAYS_ON_WAITLIST#### +#with usrds_id from active, transplanted, and removed ### +days = bind_rows(active %>% select(usrds_id, days_on_waitlist), + transplanted %>% select(usrds_id, days_on_waitlist), + removed %>% select(usrds_id, days_on_waitlist)) +days = days %>% arrange(usrds_id) + +###ADD ACTIVE TO MAIN PAT DATASET#### +#Set all rows in pat where usrds_id is in active_id to ACTIVE = 1 +pat = pat %>% + mutate(active = if_else(usrds_id %in% active_id, 1, 0)) %>% + select(usrds_id, active, masked_first_se, masked_firstdial, masked_can_first_listing_dt, + masked_can_rem_dt, masked_tx1date, masked_died, can_rem_cd, masked_tx1fail) + +### ADD TRANSPLANTED TO MAIN PAT DATASET ### +#Set all rows in pat where USRDS_ID is in transplanted_id to TRANSPLANTED = 1 +pat = pat %>% + mutate(transplanted = if_else(usrds_id %in% transplanted_id, 1, 0)) + +n_both = nrow(pat %>% filter(active == 1 & transplanted == 1)) +if (n_both!=0){ + print("WARNING! rows exist where active and transplanted are both == 1") +} + +### ADD REMOVED TO MAIN PAT DATASET ### +#Set all rows in pat where usrds_id is in removed_id to REMOVED = 1 +pat = pat %>% + mutate(removed = if_else(usrds_id %in% removed_id, 1, 0)) + +#Check that no rows have more than one 1 across active, transplanted, and removed +pat %>% + rowwise() %>% + filter((sum(active, transplanted, removed, na.rm = TRUE) > 1)) %>% + tally() +# A tibble: 0 x 1 +# … with 1 variable: n +#Returns 0 so we have no rows marked with more than one status. Good! + +if (apply(pat %>% select(active), 2, function(x) sum(is.na(x)))!=0){ + print("WARNING! NaN present in 'active") +} +if (apply(pat %>% select(transplanted), 2, function(x) sum(is.na(x)))!=0){ + print("WARNING! NaN present in 'transplanted") +} +if (apply(pat %>% select(removed), 2, function(x) sum(is.na(x)))!=0){ + print("WARNING! NaN present in 'removed") +} + +###FINAL STATUS: NEVER ON WAITLIST#### + +#Set all rows where active, transplanted, and removed are all 0 to NEVER = 1 +pat = pat %>% + mutate(never = if_else(active == 0 & transplanted == 0 & removed == 0, 1, 0)) + +#Check that no rows have more than one 1 across active, transplanted, removed, & never +pat %>% + rowwise() %>% + filter((sum(active, transplanted, removed, never, na.rm = TRUE) > 1)) %>% + tally() +#Returns 0 so we have no rows marked with more than one status. + +if (sum(pat %>% tally(active == 1), + pat %>% tally(transplanted == 1), + pat %>% tally(removed == 1), + pat %>% tally(never == 1)) != nrow(pat)){ + + print("sum of the number of rows where each status == 1 DOES NOT sum to number of rows in patients") +} + +###TIME ON TX WAITLIST#### +#Join DAYS_ON_WAITLIST onto PAT +pat = left_join( + pat, + days, + by = "usrds_id" +) + +library(tidyr) +#When NEVER == 0, set DAYS_ON_WAITLIST = 0 +pat = pat %>% + mutate(days_on_waitlist = replace_na(days_on_waitlist, 0)) + +#Check that no rows have more than one 1 across active, transplanted, removed, & never +pat %>% + rowwise() %>% + filter((sum(active, transplanted, removed, never, na.rm = TRUE) > 1)) %>% + tally() +#Returns 0 so we have no rows marked with more than one status. + +if (nrow(pat %>% filter(days_on_waitlist != 0 & never == 1)) != 0) { + print("Warning! existing rows with non-zero days_on_waitlist but never == 1. + NOTE: THIS IS POSSIBLE IF SOMEONE WAS ONLY ON THE LIST FOR A DAY") +} + +#####Reshape####### +#into long form with one WAITLIST_STATUS variable +pat2 = pat %>% + mutate(waitlist_status = names( + pat %>% select( + active, transplanted, removed,never))[ + max.col(pat %>% select(active, transplanted, removed, never))]) + +#Check for rows where waitlist_status value doesn't match the 1's in binary status cols +nrow(pat2 %>% filter(waitlist_status == "never" & never != 1)) +#Running above line with each status all return 0 rows so we're good + +####SAVE WAITLIST VARS TO CSV AND POSTGRES#### +tx_waitlist_vars = pat2 %>% + select(usrds_id, waitlist_status, days_on_waitlist) %>% + arrange(usrds_id) + +csv_path = str_glue("{data_dir}tx_waitlist_vars.csv") +write_csv(tx_waitlist_vars,csv_path) +drop_table_function(con, "tx_waitlist_vars") +dbWriteTable( + con, + name = "tx_waitlist_vars", + value = tx_waitlist_vars, + row.names = FALSE, + append = TRUE) + + +####Merge with patients_medevid and save to postgres#### +# add the waitlist and transplant features to the table of patient and medevid features +patients_med = dbGetQuery(con, + "SELECT * + FROM patients_medevid") + +patients_med_waitlist = inner_join( + patients_med, + tx_waitlist_vars, + by="usrds_id" +) +fields = names(patients_med_waitlist) +print(str_glue("create patients_medevid_waitlist in postgres")) +drop_table_function(con, "patients_medevid_waitlist") +dbCreateTable( + con, + name = "patients_medevid_waitlist", + fields = patients_med_waitlist, + row.names = NULL +) +dbWriteTable( + con, + name = "patients_medevid_waitlist", + value = patients_med_waitlist, + row.names = FALSE, + append = TRUE +) \ No newline at end of file diff --git a/create_data_set/S2a_partitionData.R b/create_data_set/S2a_partitionData.R new file mode 100644 index 0000000..eb89ce9 --- /dev/null +++ b/create_data_set/S2a_partitionData.R @@ -0,0 +1,65 @@ +library(dplyr) +library(magrittr) +library(tidyr) +library(RPostgres) +library(DBI) +library(stringr) +source_dir = file.path("CreateDataSet") +source(file.path(source_dir, "S0-connectToPostgres.R")) + +#Partition on USRDS_ID into 10 non-intersecting subsets, +#for purposes of managing performance and reproducibility in test/train/val split + +partition_data <- function(con, + usrds_id, + num_partitions, + data_tablename, + seed_value) { + + set.seed(2539) + + randvalue = runif( + length(usrds_id), + min = 0, + max = num_partitions + ) + + universe = cbind( + usrds_id, + floor(randvalue)) %>% + + as.data.frame() + + names(universe) = c("usrds_id", "subset") + + tblname = str_glue("partition_{num_partitions}") + drop_table_function(con, tblname) + dbWriteTable( + con, + tblname, + universe, + append = FALSE, + row.names = FALSE + ) + rm(universe, randvalue) +} + +# Execute function -------------------------------------------------------- +data_tbl = "patients_medevid_waitlist" + +usrds_id = dbGetQuery( + con, + str_glue( + " + SELECT usrds_id + FROM {data_tbl} + ORDER BY usrds_id + ")) +usrds_id = usrds_id$usrds_id + +partition_data( + con, + usrds_id, + num_partitions = 10, + data_tablename = data_tbl + ) \ No newline at end of file diff --git a/create_data_set/S2b_join_to_partition_data.R b/create_data_set/S2b_join_to_partition_data.R new file mode 100644 index 0000000..ae75127 --- /dev/null +++ b/create_data_set/S2b_join_to_partition_data.R @@ -0,0 +1,40 @@ +library(tidyr) +library(RPostgres) +library(DBI) +library(stringr) +source_dir = file.path("CreateDataSet") +source(file.path(source_dir, "S0-connectToPostgres.R")) + +#Join any table (in our case we do this for both the `patients_medevid_waitlist` +# and the `preesrdfeatures`) to our partitioned IDs. +# Adds a column **subset** (the partition index) to the input dataframe. +join_data_partitions <- function(con, + data_tablename="patients_medevid_waitlist", + num_partitions=10){ + + dbSendStatement(con, str_glue( + " + ALTER TABLE {data_tablename} + ADD subset integer + "), n = -1) + + dbSendStatement( + con, + str_glue( + " + UPDATE {data_tablename} d + SET subset = p.subset + FROM partition_{num_partitions} p + WHERE d.usrds_id = p.usrds_id + "), n = -1) +} + +# execute function -------------------------------------------------------- +#data_tbl = "patients_medevid_waitlist" +data_tbl = "preesrdfeatures" + +join_data_partitions( + con, + data_tablename = data_tbl, + num_partitions = 10 +) \ No newline at end of file diff --git a/create_data_set/S2c_calculate_partition_totals.R b/create_data_set/S2c_calculate_partition_totals.R new file mode 100644 index 0000000..50e7fce --- /dev/null +++ b/create_data_set/S2c_calculate_partition_totals.R @@ -0,0 +1,110 @@ +#########Calc totals### +library(dplyr) +library(tidyr) +library(RPostgres) +library(DBI) +library(stringr) +library(readr) + +source_dir = file.path("CreateDataSet") +source(file.path(source_dir, "S0-connectToPostgres.R")) + +# calculate totals per subset for summary report + +df = dbGetQuery( + con, + " + SELECT * + FROM patients_medevid_waitlist + " +) + +subsets_totals = df %>% + select(subset) %>% + group_by(subset) %>% + count() + +subsets_totals = rename(subsets_totals, c("total_pts"=n)) + +subsets_male = df %>% + filter(sex==1) %>% + select(sex, subset) %>% + group_by(sex, subset) %>% + count() +subsets_male <- rename(subsets_male, c("total_males"=n)) + +subsets_white = df %>% + filter(race==1) %>% + select(subset, race) %>% + group_by(subset,race) %>% + count() +subsets_white <- rename(subsets_white, c("total_white"=n)) + + +subsets_heme = df %>% + filter(is.na(heglb)==TRUE) %>% + select(subset,heglb) %>% + group_by(heglb, subset) %>% + count() +subsets_heme <- rename(subsets_heme, c("total_heme_na"=n)) + + +subsets_sercr = df %>% + filter(is.na(sercr)==TRUE) %>% + select(subset,sercr) %>% + group_by(sercr, subset) %>% + count() +subsets_sercr <- rename(subsets_sercr, c("total_sercr_na"=n)) + + +subsets_album = df %>% + filter(is.na(album)==TRUE) %>% + select(subset,album) %>% + group_by(album, subset) %>% + count() +subsets_album <- rename(subsets_album, c("total_album_na"=n)) + + +subsets_outcome = df %>% + filter(died_in_90==1) %>% + select(subset,died_in_90) %>% + group_by(died_in_90,subset) %>% + count() +subsets_outcome <- rename(subsets_outcome, c("total_died"=n)) + + + +dd = + left_join( + subsets_totals, + subsets_outcome, + by='subset' +) + +dd = left_join( + dd, + subsets_male, + by='subset' +) + +dd = left_join( + dd, + subsets_white, + by='subset' +) + +dd = left_join( dd, + subsets_heme, + by='subset' +) + +dd = left_join( dd, + subsets_album, + by='subset' +) + +dd = left_join( dd, + subsets_sercr, + by='subset' +) +write_csv(dd, "partition_totals_rev_method.csv") \ No newline at end of file diff --git a/create_data_set/S3a_esrd_claims.R b/create_data_set/S3a_esrd_claims.R new file mode 100644 index 0000000..3297f34 --- /dev/null +++ b/create_data_set/S3a_esrd_claims.R @@ -0,0 +1,50 @@ +library(readr) +library(haven) +library(dplyr) +library(magrittr) +library(stringr) +library(RPostgres) +library(DBI) +source('CreateDataSet/S0-connectToPostgres.R') +source('CreateDataSet/create_claim_table.R') +data_dir = file.path("data") + +#extract, filter, and store pre ESRD Claims tables from 2011-2017 +#- Input: +#create_claim_table.R +#pre_esrd_ip_claim_variables.R +#pre_esrd_hh_claim_variables.R +#pre_esrd_hs_claim_variables.R +#pre_esrd_op_claim_variables.R +#pre_esrd_sn_claim_variables.R + +#- Output: The postgresql tables +#preesrd5y_ip_clm_inc +#preesrd5y_hh_clm_inc +#preesrd5y_hs_clm_inc +#preesrd5y_op_clm_inc +#preesrd5y_sn_clm_inc + +claim_types = c( + "ip", + "hs", + "hh", + "op", + "sn" +) +for (typ in claim_types) { + # load fieldnames specific to claim type + source(str_glue("CreateDataSet/pre_esrd_{typ}_claim_variables.R")) + + create_claim_table( + data_dir, + con, + filenames_esrd, + fieldnames_esrd, + columns_esrd, + columns_esrd_2015, + table_name_pt='patients_medevid_waitlist' + ) + + rm(filenames_esrd, fieldnames_esrd, columns_esrd, columns_esrd_2015) +} \ No newline at end of file diff --git a/create_data_set/S3b_mapDrgCdToPdgnsCd.R b/create_data_set/S3b_mapDrgCdToPdgnsCd.R new file mode 100644 index 0000000..44ddb76 --- /dev/null +++ b/create_data_set/S3b_mapDrgCdToPdgnsCd.R @@ -0,0 +1,76 @@ +library(readr) +library(dplyr) +library(lubridate) +library(haven) +library(stringr) +source('CreateDataSet/S0-connectToPostgres.R') + +#For pre-esrd claims before 2011, there is no pdgns_cd. Instead, there is a drg_cd. +#So we need to map drg_cd to pdgns_cd. + +#The script `S3a-esrd_claims.R` needs to have been run in order to generate the +#data used by this script. The in-patient claims ( preesrd5y_ip_clm_inc) have +#both ***drg_cd*** and ****pdgns_cd****. +#These are used as the source data for mapping ***drg_cd*** to ****pdgns_cd****. +#We use this to generate the joint +#distributions of drg_cd and pdgns_cd. In generating the pdgns_cd for early pre-esrd claims (i.e., those +#before 2011), we use this joint distribution. +#- Output: table drg_cd_mapping + +res = dbGetQuery( + con, + "WITH pre_drg_pdgn AS ( + SELECT drg_cd, pdgns_cd, COUNT(*) AS nmbr + FROM preesrd5y_ip_clm_inc + WHERE cdtype='I' + GROUP BY drg_cd, pdgns_cd), + drg_cd_tbl AS ( + SELECT drg_cd, pdgns_cd, nmbr, + row_number() OVER (PARTITION BY drg_cd + ORDER BY nmbr DESC) + FROM pre_drg_pdgn + ) + SELECT a.drg_cd, a.pdgns_cd, a.nmbr, a.row_number, SUM(b.nmbr) AS cum + FROM drg_cd_tbl a + INNER JOIN drg_cd_tbl b + ON a.drg_cd=b.drg_cd + AND a.row_number<=b.row_number + GROUP BY a.drg_cd, a.pdgns_cd, a.nmbr, a.row_number + ORDER BY a.drg_cd, a.row_number" +) + + +## --aggregate table by drg_cd +bydrgcd = res %>% + group_by(drg_cd) %>% + dplyr::summarise( + total = sum(as.numeric(nmbr))) +res = res %>% + inner_join( + bydrgcd, + by = "drg_cd") +res = res %>% + mutate( + cum0 = as.numeric(cum - nmbr), + cum = as.numeric(cum), + lb = cum0 / total, + ub = cum / total +) +# res=res[with(res,order(drg_cd,ub,decreasing=T))] + +drg_cd_mapping = res %>% + select( + drg_cd, + pdgns_cd, + lb, + ub) + +# df$pdgns_cd=str_pad(df$pdgns_cd,width=7,side="right",pad="0") + +drg_tblname = "drg_cd_mapping" +drop_table_function(con, drg_tblname) +dbWriteTable(con, + drg_tblname, + drg_cd_mapping, + append = F, + row.names = FALSE) \ No newline at end of file diff --git a/create_data_set/S3c_preesrdSrceDataPre2011.R b/create_data_set/S3c_preesrdSrceDataPre2011.R new file mode 100644 index 0000000..14c969e --- /dev/null +++ b/create_data_set/S3c_preesrdSrceDataPre2011.R @@ -0,0 +1,277 @@ +library(RPostgres) +library(DBI) +library(readr) +library(dplyr) +library(lubridate) +library(stringr) +source('CreateDataSet/S0-connectToPostgres.R') +source('CreateDataSet/pre_esrd_pre2011_claim_variables.R') + +#Before 2011, pre-ESRD claims are stored in the files inc2008.csv, inc2009.csv, inc2010.csv. The files are organized differently from the other pre-esrd files: the type of claim is not part of the file name (instead, it is identified in the file's contents in a field called "hcfasaf"); and the contents of the file can differ from year to year. Also, the pdgns_cd is not available prior to 2012. This script constructs a pdgns_cd from the drg_cd which is available prior to 2011. +# Step1: Import the pre-2011 claims and filter on usrds_ids in the cohort and features in the post2011 claims. +# Set cdtype = "I" to indicae icd9, +# set any missing drg_cd=000. +# +# Step 2: For each Claim type (hh, hs, ip, sn, op) +# Generate a uniform random number for each record in pre2011 claims, +# and look up pdgns_cd from drg_cd_mapping based on this random number, +# which will produce a pdgns_cd reflecting the underlying +# joint distribution of (drg_cd,pdgns_cd) in the data +# +# Step 3: Insert these rows into the main postgres table for this claim type +# +# - Input: inc2008.csv, inc2009.csv, inc2010.csv; the postgresql table `drg_cd_mapping`, pre_esrd_pre2011_claim_variables.R +# - Output: Rows of pre-2011 claims for the cohort added to the following postgresql tables +# +# preesrd5y_ip_clm_inc +# preesrd5y_hh_clm_inc +# preesrd5y_hs_clm_inc +# preesrd5y_op_clm_inc +# preesrd5y_sn_clm_inc + +data_dir = file.path("data") + +# Script Function definitions ----------------------------------------------------- +create_pre_2011 <- function( + data_dir, + filename, + tblname, + append_flag, + table_name_pt, + newIn2010, + column_types){ + + inc20xx = read_csv(file.path(data_dir, str_glue("{filename}.csv")), col_types=column_types) + incident_year = + substr(filename, str_length(filename) - 3, str_length(filename)) + names(inc20xx) = tolower(names(inc20xx)) + + patients = dbGetQuery( + con, + str_glue( + "SELECT usrds_id + FROM {table_name_pt}") + ) + + # filter on ids from the patient table + inc20xx = inc20xx %>% + filter( + usrds_id %in% patients$usrds_id) %>% + mutate( + incident_year = incident_year, + cdtype = "I", + drg_cd = ifelse( + is.na(drg_cd), "000", drg_cd), + drg_cd = ifelse( + drg_cd == "", "000", drg_cd)) %>% + mutate( + drg_cd = as.numeric(drg_cd)) + + sortednm = names(inc20xx) %>% sort() + inc20xx = inc20xx[, sortednm] + + if (append_flag==FALSE){ + inc20xx[, newIn2010] = NA + drop_table_function(con, tblname) + } + print(nrow(inc20xx)) + dbWriteTable( + con, + tblname, + inc20xx, + append = append_flag, + row.names = FALSE) +} +get_claim_type_x <- function(claim_type, table_nm) { + print(str_glue("get {claim_type}")) + df = dbGetQuery( + con, + str_glue( + " + SELECT * + FROM {table_nm} + WHERE hcfasaf='{claim_type}' + ")) + return(df) +} +get_distribution <- function(df){ + # Generate a uniform rv for each record in df, and look up pdgns_cd from drg_cd_mapping + # based on this rv, which will produce a pdgns_cd reflecting the underlying + # joint distribution of (drg_cd,pdgns_cd) in the data + + print("get distribution of drg_cd, pdgns_cd") + set.seed(597) + + df$rv = runif( + dim(df)[1] + ) + temptablename = "temp_df" + + drop_table_function(con, temptablename) + + dbWriteTable( + con, + temptablename, + df, + temporary = TRUE + ) + dg = dbGetQuery( + con, + str_glue( + " + SELECT a.*, b.pdgns_cd + FROM {temptablename} a + LEFT JOIN drg_cd_mapping b + ON a.drg_cd = b.drg_cd + AND a.rv <= b.ub + AND a.rv > b.lb + ")) + return(dg) +} +insert_claim_rows <- function(claim_type, pre2011_data) { + #Get the field names to be inserted into the pre-esrd data, + # in the correct order + print(str_glue("intert pre 2011 {claim_type} rows into table {nrow(pre2011_data)}")) + main_fieldnames = names( + dbGetQuery( + con, + str_glue( + " + SELECT * + FROM preesrd5y_{claim_type}_clm_inc + LIMIT 10 + ") + ) + ) + + #Set fields in main claims fieldnames that do not appear in the pre2011 data = nan + pre2011_data[, setdiff(main_fieldnames, names(pre2011_data))] = NA + + # Include only fields also in main_fieldnames, in the proper order + pre2011_data = pre2011_data[, main_fieldnames] + + # append pre2011 rows to the main claims table + main_tblname = str_glue("preesrd5y_{claim_type}_clm_inc") + dbWriteTable( + con, + main_tblname, + pre2011_data, + append = TRUE, + row.names = FALSE) + } +source_pre_2011 <- function(data_dir, tblname, column_types) { + + newIn2010 = c( + "dpoadmin", + "dpodose", + "hgb", + "dpocash", + "attending_phys", + "operating_phys", + "other_phys" + ) + + create_pre_2011(data_dir, + "inc2010", + tblname, + append_flag=FALSE, + table_name_pt = "patients_medevid_waitlist", + newIn2010, + column_types) + + create_pre_2011(data_dir, + "inc2009", + tblname, + append_flag=TRUE, + table_name_pt = "patients_medevid_waitlist", + newIn2010, + column_types) + + create_pre_2011(data_dir, + "inc2008", + tblname, + append_flag=TRUE, + table_name_pt = "patients_medevid_waitlist", + newIn2010, + column_types) + + ########BEGIN HOME HEALTH####### + df = get_claim_type_x("H",tblname) + dg = get_distribution(df) + insert_claim_rows("hh", dg) + rm(df,dg) + + ####BEGIN HOSPICE########## + df = get_claim_type_x("S", tblname) + dg = get_distribution(df) + insert_claim_rows("hs", dg) + rm(df,dg) + + ####BEGIN INPATIENT####### + df = get_claim_type_x("I", tblname) + dg = get_distribution(df) + insert_claim_rows("ip", dg) + rm(df,dg) + + ###BEGIN SKILLED NURSING#### + df = get_claim_type_x("N", tblname) + dg = get_distribution(df) + insert_claim_rows("sn", dg) + rm(df,dg) + + ####BEGIN OUTPATIENT#### + df = get_claim_type_x("O", tblname) + + # Step 2: Generate a uniform rv for each record in df, and look up pdgns_cd from drg_cd_mapping + # based on this rv, which will produce a pdgns_cd reflecting the underlying + # joint distribution of (drg_cd, pdgns_cd) in the data + set.seed(597) + df$rv = runif( + dim(df)[1] + ) + temptablename = "temp_df" + drop_table_function(con, temptablename) + dbWriteTable( + con, + temptablename, + df, + temporary = TRUE + ) + + make_query <- function(dg_vals, temptablename){ + dg = str_glue( + "WITH w as ( + SELECT * + FROM {temptablename} + WHERE MOD(CAST(usrds_id AS NUMERIC),10) IN ({dg_vals}) + ) + SELECT a.*, b.pdgns_cd + FROM w a + LEFT JOIN drg_cd_mapping b + ON a.drg_cd = b.drg_cd + AND a.rv <= b.ub + AND a.rv > b.lb" + ) + return(dg) + } + dg_1 = dbGetQuery(con, make_query("0,1", temptablename)) + + dg_2 = dbGetQuery(con, make_query("2,3", temptablename)) + + dg_3 = dbGetQuery(con, make_query("4,5", temptablename)) + + dg_4 = dbGetQuery(con, make_query("6,7", temptablename)) + + dg_5 = dbGetQuery(con, make_query("8,9", temptablename)) + + dg = rbind(dg_1, dg_2) + dg = dg %>% + rbind(dg_3) %>% + rbind(dg_4) %>% + rbind(dg_5) + + #step 3 append rows to main table + insert_claim_rows("op", dg) +} +# Execute function -------------------------------------------------------- +source_pre_2011(data_dir,"pre_esrd_2011", columns_esrd_2015) diff --git a/create_data_set/S3d_dxCodeGrouping.R b/create_data_set/S3d_dxCodeGrouping.R new file mode 100644 index 0000000..1f173a4 --- /dev/null +++ b/create_data_set/S3d_dxCodeGrouping.R @@ -0,0 +1,153 @@ +library(readr) +library(stringr) +library(sqldf) +library(tidyr) +library(dplyr) + +#' Maps each pdgns_cd in the pre-esrd data to one of 12 aggregated diagnosis groupings, +#' and stores the mapping in a table icd9_ccs_codes.R, icd10_ccs_codes.R (for CCS groupings); +#' icd9_dx_2014.txt, icd10_dx_codes.txt (for the icd9 and ics10 pdgsn_cd's); +#' +#' Input: ucsf_dx_mappings.csv (for UCSF-advised categorizations of diagnosis codes) +#' Output: dxmap Maps pdgns_cd to one of 12 diagnosis-code groupings. +#' Two sources of input are used for the groupings: CCS (Clinical Classification System); +#' and UCSF physician expertise +#' +source('CreateDataSet/S0-connectToPostgres.R') + +source_dir = file.path(".","CreateDataSet") + +#read in lists of codes for mapping steps +source(file.path(source_dir, "icd9_ccs_codes.R")) +source(file.path(source_dir, "icd10_ccs_codes.R")) + +read_icd9 <- function(directory, filename) { + #READ IN ICD9 SOURCE DATA + lines = readLines(file.path(directory,filename)) + lines = + iconv(lines[2:length(lines)], + from = "latin1", + to = "ASCII", + sub = "" + ) + + #Convert utf-8 to ASCII and remove special characters like umlauts and accents + pdgns_cd = substr(lines, 1, 6) %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0" + ) + description = substr(lines, 7, 130) + + df9 = as.data.frame(cbind(pdgns_cd, description)) + df9$cdtype = "I" + return(df9) +} +read_icd10 <- function(directory, filename){ + lines = readLines(file.path(directory, filename)) + lines <- + iconv(lines[2:length(lines)], + from = "latin1", + to = "ASCII", + sub = "" + ) + pdgns_cd = substr(lines, 1, 7) %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0" + ) + description = substr(lines, 11, 130) + df10 = as.data.frame(cbind(pdgns_cd, description), stringsAsFactors = F) + df10 = df10 %>% filter(pdgns_cd != '0000000') + #There may be multiple entries with the same pdgns_cd for icd10, so choose one + df10 = sqldf( + " + SELECT pdgns_cd, MAX(description) AS description + FROM df10 + GROUP BY pdgns_cd" + ) + df10$cdtype = "D" + return(df10) +} +map_pdgns = function(df9, df10){ + # join icd9 and icd10 + df <- as.data.frame(rbind(df9, df10)) %>% + mutate_at( + vars('cdtype', 'pdgns_cd', 'description'), + as.character + ) + df = df %>% + mutate( + dx_neo = as.integer( + grepl("malignant neoplasm", tolower(df$description)) & + grepl("family history", tolower(df$description)) + ), + # dx_poi=as.integer(grepl("poisoning",tolower(df$description))), + dx_smo = as.integer(( + cdtype == 'D' & pdgns_cd %in% smo_10 + ) |( + cdtype == 'I' & pdgns_cd %in% smo_9) + ), + dx_alc = as.integer(( + cdtype == 'D' & pdgns_cd %in% alc_10 + ) | ( + cdtype == 'I' & pdgns_cd %in% alc_9) + ), + dx_drg = as.integer(( + cdtype == 'D' & pdgns_cd %in% drg_10 + ) | ( + cdtype == 'I' & pdgns_cd %in% drg_9) + ), + dx_pne = as.integer(( + cdtype == 'D' & pdgns_cd %in% pne_10 + ) | ( + cdtype == 'I' & pdgns_cd %in% pne_9) + ), + dx_kid = as.integer(( + cdtype == 'D' & pdgns_cd %in% kid_10 + ) | ( + cdtype == 'I' & pdgns_cd %in% kid_9) + ) + ) + return(df) +} +getComorbids <- function(directory, filename, df, colname, prefix = 'dx_') { + ucsf_mappings = read.csv(file.path(directory, filename), stringsAsFactors = FALSE) + dg = sqldf( + "SELECT df.*, b.label + FROM df + LEFT JOIN ucsf_mappings b + ON df.pdgns_cd>=b.lb + AND df.pdgns_cd<=b.ub", + method = "raw" + ) + #df[,colname]=gsub('[ (-/)._aeiou]','',df[,colname]) %>% substr(1,strlength) + values = unique(dg[, colname]) %>% setdiff(NA) + for (v in values) { + dg[, paste0(prefix, v)] = (as.integer(dg[, colname] == v)) + dg[, paste0(prefix, v)] = replace_na(dg[, paste0(prefix, v)], 0) + } + dg$label = NULL + return(dg) +} + +# Execute Functions ------------------------------------------------------- +df9 = read_icd9(source_dir, "icd9_dx_2014.txt") +df10 = read_icd9(source_dir, "icd10_dx_codes.txt") +mapped9_10 = map_pdgns(df9, df10) +dh = getComorbids(source_dir, "dx_mappings_ucsf.csv", df=mapped9_10, colname = "label") + +#save to postgres database as dxmap +drop_table_function(con, "dxmap") +tblname = "dxmap" +dbWriteTable( + con, + tblname, + dh, + append = FALSE, + row.names = FALSE + ) \ No newline at end of file diff --git a/create_data_set/S4a_pre_esrd_full.R b/create_data_set/S4a_pre_esrd_full.R new file mode 100644 index 0000000..d27fcdd --- /dev/null +++ b/create_data_set/S4a_pre_esrd_full.R @@ -0,0 +1,397 @@ +library(readr) +library(haven) +library(dplyr) +library(magrittr) +library(stringr) + +# USRDS data have multiple pre-esrd claims per patient. This script +# 1) merges the pre-esrd claims tables +# 2) constructs counts of claims grouped by type of claim and diagnosis code +# 3) creates one record per patient, with all pre-esrd summary statistics aggregated for each patient +# - creates binary variables to indicate the presence or absence of pre-esrd claims and each type (ip, hh, hs, op, sn) +# +# +# The record includes total number of claims and total length of stay, grouped by +# 1. type of claim (in-patient,out-patient, home-health, hospice, and skilled nursing) and +# 2. by the aggregated diagnosis grouping. +# +# - Input: The postgresql tables `preesrd5y_xx_clm_inc` for xx="ip","op","hh","hs","sn"; the utility script *setfieldtypes.R* +# - Output: The postgresql table `preesrdfeatures` + +#Updated Nov 18 with changes suggested in code review +#1) Drop the detailed disaggregation of claims by dx group for home-health and hospice +#2) Include the elapsed time from the very first claim to the very last claim (Jarcy) +#3) Include binary variables for each diagnosis grouping (James) + +main_data = "patients_medevid_waitlist" +pre_esrd_tblname = "preesrdfeatures" + +source(file.path("CreateDataSet","S0-connectToPostgres.R")) +sourcedir = file.path("data") +source(file.path("CreateDataSet", "setfieldtypes.R")) + +prepareQuery = function(dxcols, tablename, qryAggType = 1, testMode = 0) { + + qry_pt1=paste0("b.", dxcols$column_name, collapse=",") + + if (qryAggType == 1) { + vec1 = paste0("SUM(stay*", dxcols$column_name, ")") + vec2 = paste0(" AS stay", substr(dxcols$column_name, 3, 6)) + qry_pt5 = paste0(vec1, vec2, collapse = ", ") + + } else if (qryAggType == 2) { + vec1 = paste0("SUM(", dxcols$column_name, ")") + vec2 = paste0(" AS clms", substr(dxcols$column_name, 3, 6)) + qry_pt5 = paste0(vec1, vec2, collapse = ", ") + + } else if (qryAggType == 3) { + vec1 = paste0("MAX(", dxcols$column_name, ")") + vec2 = paste0(" AS has", substr(dxcols$column_name, 3, 6)) + qry_pt5 = paste0(vec1, vec2, collapse = ", ") + } + + qry_main = str_glue("WITH w AS ( + SELECT a.usrds_id, + a.pdgns_cd, + a.masked_clm_thru-a.masked_clm_from AS stay, + a.cdtype, + a.hgb, + a.hcrit, + {qry_pt1} + FROM {tablename} a + LEFT JOIN dxmap b + ON a.cdtype=b.cdtype + AND a.pdgns_cd=b.pdgns_cd + ) + SELECT usrds_id, {qry_pt5} + FROM w + GROUP BY usrds_id" + ) + return(qry_main) +} +prepareAggQuery = function(clm_type) { + #Nov 16 2020: Introduce MAX(masked_clm_thru)-MIN(masked_clm_from) as the + #time range of claims, per comment by Jarcy in Nov 12 code review + #grouped by ursds_id + # calculate the number of rows(claims) for each group + qry_main = str_glue("SELECT usrds_id, + SUM(masked_clm_thru-masked_clm_from) AS stay, + MAX(masked_clm_thru)-MIN(masked_clm_from) AS range, + MIN(masked_clm_from) AS earliest_clm, + MAX(masked_clm_thru) AS latest_clm, + COUNT(*) AS claims + FROM preesrd5y_{clm_type}_clm_inc + GROUP BY usrds_id" + ) + return(qry_main) +} + + +# Execute function -------------------------------------------------------- +dxcols = names(dbGetQuery( + con, + " + SELECT * + FROM dxmap + LIMIT 5 + ")) + +dxcols = dxcols[4:length(dxcols)] %>% as.data.frame() +names(dxcols) = "column_name" +####dep#### +ip1 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_ip_clm_inc", + qryAggType = 1, + testMode = 0 + )) + +ip2 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_ip_clm_inc", + qryAggType = 2, + testMode = 0 + )) + +ip3 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_ip_clm_inc", + qryAggType = 3, + testMode = 0 + )) + +op1 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_op_clm_inc", + qryAggType = 1, + testMode = 0 + )) + +op2 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_op_clm_inc", + qryAggType = 2, + testMode = 0 + )) + +op3 = dbGetQuery(con,prepareQuery( + dxcols, + "preesrd5y_op_clm_inc", + qryAggType = 3, + testMode = 0 + )) + +sn1 = dbGetQuery(con, prepareQuery( + dxcols, + "preesrd5y_sn_clm_inc", + qryAggType = 1, + testMode = 0 + )) + +sn2 = dbGetQuery(con, prepareQuery( + dxcols, + "preesrd5y_sn_clm_inc", + qryAggType = 2, + testMode = 0 + )) + +sn3 = dbGetQuery(con, prepareQuery( + dxcols, + "preesrd5y_sn_clm_inc", + qryAggType = 3, + testMode = 0 + )) +#####AGGS##### +hha = dbGetQuery(con, prepareAggQuery("hh")) +ipa = dbGetQuery(con, prepareAggQuery("ip")) +opa = dbGetQuery(con, prepareAggQuery("op")) +sna = dbGetQuery(con, prepareAggQuery("sn")) +hsa = dbGetQuery(con, prepareAggQuery("hs")) + + +countNulls = function(listnames) { + df = NULL + for (n in listnames) { + x = get(n) + x = x[, 2:dim(x)[2]] #Omit the USRDS_ID + totalpatients = dim(x)[1] #total patients + nullpatients = totalpatients - sum(rowSums(x > 0, na.rm = TRUE)) #total patients having null or zero + df = rbind(df, t(c(n, totalpatients, nullpatients))) %>% + as.data.frame(stringsAsFactors = FALSE) + } + names(df) = c("listname", "totalpatients", "nullpatients") + return(df) +} +###dep#### +names(ip1)[2:length(names(ip1))] = paste0(names(ip1)[2:length(names(ip1))], "_ip") +names(ip2)[2:length(names(ip2))] = paste0(names(ip2)[2:length(names(ip2))], "_ip") +names(ip3)[2:length(names(ip3))] = paste0(names(ip3)[2:length(names(ip3))], "_ip") +names(op1)[2:length(names(op1))] = paste0(names(op1)[2:length(names(op1))], "_op") +names(op2)[2:length(names(op2))] = paste0(names(op2)[2:length(names(op2))], "_op") +names(op3)[2:length(names(op3))] = paste0(names(op3)[2:length(names(op3))], "_op") +names(sn1)[2:length(names(sn1))] = paste0(names(sn1)[2:length(names(sn1))], "_sn") +names(sn2)[2:length(names(sn2))] = paste0(names(sn2)[2:length(names(sn2))], "_sn") +names(sn3)[2:length(names(sn3))] = paste0(names(sn3)[2:length(names(sn3))], "_sn") +names(hha)[2:length(names(hha))] = paste0(names(hha)[2:length(names(hha))], "_hh") +names(hsa)[2:length(names(hsa))] = paste0(names(hsa)[2:length(names(hsa))], "_hs") +names(ipa)[2:length(names(ipa))] = paste0(names(ipa)[2:length(names(ipa))], "_ip") +names(opa)[2:length(names(opa))] = paste0(names(opa)[2:length(names(opa))], "_op") +names(sna)[2:length(names(sna))] = paste0(names(sna)[2:length(names(sna))], "_sn") + + +#dbGetQuery(con,"select distinct table_schema, table_name from information_schema.tables where table_schema like 'public'") +dfnames = c( + "ip1", + "ip2", + "ip3", + "op1", + "op2", + "op3", + "sn1", + "sn2", + "sn3", + "hha", + "hsa", + "ipa", + "opa", + "sna" +) +for (s in dfnames) { + tblname = str_glue("temp_{s}") + drop_table_function(con, tblname) + dbWriteTable( + con, + tblname, + get(s), + temporary = TRUE) +} + +#If you write "select a.usrds_id, ip1.*, ip2.* from patients a left join temp_ip1 as ip1, temp_ip2 as ip2... etc." +#then postgres returns an error because you are selecting usrds_id more than once. +#This has to be addressed in postgres by replacing "ip1.*", "ip2.*" with an explicit +#list of names *other than usrds_id" +#The following code creates these lists of names +#Note that the problem is easily addressed in dplyr's "left_join", but we need to worry about memory limits in R, +#so we solve the problem by creating the postgres query in code +############# BEGIN############ +ip1names = paste0("ip1.", names(ip1)[2:length(names(ip1))], collapse = ", ") +ip2names = paste0("ip2.", names(ip2)[2:length(names(ip2))], collapse = ", ") +ip3names = paste0("ip3.", names(ip3)[2:length(names(ip3))], collapse = ", ") +op1names = paste0("op1.", names(op1)[2:length(names(op1))], collapse = ", ") +op2names = paste0("op2.", names(op2)[2:length(names(op2))], collapse = ", ") +op3names = paste0("op3.", names(op3)[2:length(names(op3))], collapse = ", ") +sn1names = paste0("sn1.", names(sn1)[2:length(names(sn1))], collapse = ", ") +sn2names = paste0("sn2.", names(sn2)[2:length(names(sn2))], collapse = ", ") +sn3names = paste0("sn3.", names(sn3)[2:length(names(sn3))], collapse = ", ") +# +###### +hhanames = paste0("hha.", names(hha)[2:length(names(hha))], collapse = ", ") +ipanames = paste0("ipa.", names(ipa)[2:length(names(ipa))], collapse = ", ") +opanames = paste0("opa.", names(opa)[2:length(names(opa))], collapse = ", ") +snanames = paste0("sna.", names(sna)[2:length(names(sna))], collapse = ", ") +hsanames = paste0("hsa.", names(hsa)[2:length(names(hsa))], collapse = ", ") +# ######END################## +ip1str = paste0(ip1names, collapse = ",") %>% paste0(", ") +ip2str = paste0(ip2names, collapse = ",") %>% paste0(", ") +ip3str = paste0(ip3names, collapse = ",") %>% paste0(", ") +op1str = paste0(op1names, collapse = ",") %>% paste0(", ") +op2str = paste0(op2names, collapse = ",") %>% paste0(", ") +op3str = paste0(op3names, collapse = ",") %>% paste0(", ") +sn1str = paste0(sn1names, collapse = ",") %>% paste0(", ") +sn2str = paste0(sn2names, collapse = ",") %>% paste0(", ") +sn3str = paste0(sn3names, collapse = ",") %>% paste0(", ") +########agg######### +ipastr = paste0(ipanames, collapse = ",") %>% paste0(", ") +opastr = paste0(opanames, collapse = ",") %>% paste0(", ") +snastr = paste0(snanames, collapse = ",") %>% paste0(", ") +hhastr = paste0(hhanames, collapse = ",") %>% paste0(", ") +hsastr = paste0(hsanames, collapse = ",") %>% paste0(" ") + +# qry=paste0("create table preesrdfeatures as select a.usrds_id, ",ip1str,ip2str,ip3str, +# op1str, op2str,op3str, sn1str, sn2str, sn3str, ipastr, opastr, +# snastr, hhastr, hsastr) + +qry = paste0( + "SELECT a.usrds_id, ", + ip1str, + ip2str, + ip3str, + op1str, + op2str, + op3str, + sn1str, + sn2str, + sn3str, + ipastr, + opastr, + snastr, + hhastr, + hsastr +) +qry = str_glue( + "{qry} FROM {main_data} a + LEFT JOIN temp_ip1 AS ip1 ON a.usrds_id=ip1.usrds_id + LEFT JOIN temp_ip2 AS ip2 ON a.usrds_id=ip2.usrds_id + LEFT JOIN temp_ip3 AS ip3 ON a.usrds_id=ip3.usrds_id + LEFT JOIN temp_op1 AS op1 ON a.usrds_id=op1.usrds_id + LEFT JOIN temp_op2 AS op2 ON a.usrds_id=op2.usrds_id + LEFT JOIN temp_op3 AS op3 ON a.usrds_id=op3.usrds_id + LEFT JOIN temp_sn1 AS sn1 ON a.usrds_id=sn1.usrds_id + LEFT JOIN temp_sn2 AS sn2 ON a.usrds_id=sn2.usrds_id + LEFT JOIN temp_sn3 AS sn3 ON a.usrds_id=sn3.usrds_id + LEFT JOIN temp_ipa AS ipa ON a.usrds_id=ipa.usrds_id + LEFT JOIN temp_opa AS opa ON a.usrds_id=opa.usrds_id + LEFT JOIN temp_sna AS sna ON a.usrds_id=sna.usrds_id + LEFT JOIN temp_hha AS hha ON a.usrds_id=hha.usrds_id + LEFT JOIN temp_hsa AS hsa ON a.usrds_id=hsa.usrds_id" +) +df = dbGetQuery(con, qry) + +earliest_cols = names(df)[grepl("earliest_clm", names(df))] +latest_cols = names(df)[grepl("latest_clm", names(df))] +for (c in earliest_cols) { + df[, c] = ifelse(is.na(df[, c]), 500000, df[, c]) +} +for (c in latest_cols) { + df[, c] = ifelse(is.na(df[, c]), -500000, df[, c]) +} + +earliest_claim_date = apply(df[, earliest_cols], 1, "min") +latest_claim_date = apply(df[, latest_cols], 1, "max") +df$claims_range = latest_claim_date - earliest_claim_date + +cols_to_delete = union(earliest_cols, latest_cols) +df[, cols_to_delete] = NULL + +#Out of the individual columns named "has_dx_claimtype" (e.g., "has_neo_ip") +#create a single column "has_dx" +has_cols = names(df)[grepl("has_", names(df))] +dxs = unique( + substr( + has_cols, 5, 7)) #list of diagnosis groupings + +mymax = function(x) { + #create a binary result to yield 1 if the patients has any present, 0 if not, na if all are nans + #Example 1: has_dia_ip=NA, has_dia_op=0, has_dia_sn=1. So x=c(NA,0,1) + #Then returns 1 + #Example 2: x=c(NA,NA,NA). Then returns NA + #Example 3: x=c(NA,0,NA). Then returns 0 + p_sum = sum(x > 0, na.rm = T) #number of positive elements + z_sum = sum(x == 0, na.rm = T) #number of zero elements + return(ifelse(p_sum > 0, 1, ifelse(z_sum > 0, 0, NA))) +} + # use this so we end up with NA if a vector is all NA +safe.max = function(invector) { + na.pct = sum(is.na(invector))/length(invector) + if (na.pct == 1) { + return(NA) } + else { + return(max(invector,na.rm=TRUE)) + } +} + +for (c in dxs) { + hasdxcols = has_cols[grepl(c, has_cols)] + df[,paste0("has_",c)]=apply( + df[,hasdxcols], + 1, + function(x) safe.max(as.numeric(x)) + ) +} + +hasvars = names(df)[grepl("has_", names(df))] +hasvarsettings = hasvars[grepl("_ip$|_op$|_sn$|_hh$|_hs$", hasvars)] +df[, hasvarsettings] = NULL #remove variables like "has_neo_ip", keeping in "has_neo" +df$claims_range = ifelse(df$claims_range < 0, NA, df$claims_range) + +#Per discussion of 11-30-2020, add binary for each type +df$prior_hh_care = as.integer(df$claims_hh > 0 & + !is.na(df$claims_hh)) +df$prior_hs_care = as.integer(df$claims_hs > 0 & + !is.na(df$claims_hs)) +df$prior_ip_care = as.integer(df$claims_ip > 0 & + !is.na(df$claims_ip)) +df$prior_op_care = as.integer(df$claims_op > 0 & + !is.na(df$claims_op)) +df$prior_sn_care = as.integer(df$claims_sn > 0 & + !is.na(df$claims_sn)) +priorvars = names(df)[grepl("prior_", names(df))] + +df$has_preesrd_claim = apply( + df[, priorvars], + 1, + function(x) safe.max(as.numeric(x)) +) +#Per request by Ken Wilkins (Dec 17 2020) to include binary +#variable for existence of preesrd claims +# these are also used in the parametric models instead of claim counts + +drop_table_function(con, pre_esrd_tblname) +dbWriteTable( + con, + pre_esrd_tblname, + df, + field.types = myfieldtypes, + append = FALSE, + row.names = FALSE +) \ No newline at end of file diff --git a/create_data_set/S4b_join_to_partition_data.R b/create_data_set/S4b_join_to_partition_data.R new file mode 100644 index 0000000..70a0112 --- /dev/null +++ b/create_data_set/S4b_join_to_partition_data.R @@ -0,0 +1,39 @@ +library(tidyr) +library(RPostgres) +library(DBI) +library(stringr) +source_dir = file.path("CreateDataSet") +source(file.path(source_dir, "S0-connectToPostgres.R")) + +#Join the `preesrdfeatures` table to our partitioned IDs. +#Adds a column **subset** to the input dataframe. + +join_data_partitions <- function(con, + data_tablename="patients_medevid_waitlist", + num_partitions=10){ + + dbSendStatement(con, str_glue( + " + ALTER TABLE {data_tablename} + ADD subset integer + "), n = -1) + + dbSendStatement( + con, + str_glue( + " + UPDATE {data_tablename} d + SET subset = p.subset + FROM partition_{num_partitions} p + WHERE d.usrds_id = p.usrds_id + "), n = -1) +} + +# execute function -------------------------------------------------------- +data_tbl = "preesrdfeatures" + +join_data_partitions( + con, + data_tablename = data_tbl, + num_partitions = 10 +) \ No newline at end of file diff --git a/create_data_set/S5_pdis_mapping.R b/create_data_set/S5_pdis_mapping.R new file mode 100644 index 0000000..cfaadd3 --- /dev/null +++ b/create_data_set/S5_pdis_mapping.R @@ -0,0 +1,105 @@ +library(readr) +library(plyr) +library(dplyr) +library(tidyr) +library(sqldf) +library(RPostgres) +library(DBI) +library(stringr) + +#' Creates a postgres table pdis_recode_map, which is used in S6-PrepareDataSet.R, +#' for assigning pdis to a numeric value called pdis_recode. +#' +#' Input: The pdis column from medevid table +#' Output: pdis_recode_map +#' +source(file.path("CreateDataSet","S0-connectToPostgres.R")) +source_dir = file.path("CreateDataSet") + +df1 = dbGetQuery(con, + "SELECT * + FROM patients_medevid_waitlist") + +#We must know whether the pdis is ICD9 or ICD10, +#exclude where cdtype is unknown. +#There are 20,003 patients where cdtype is unknown + +pdis_occurrences = dbGetQuery(con, + "SELECT cdtype, pdis, COUNT(*) AS nmbr + FROM patients_medevid_waitlist + WHERE cdtype IS NOT NULL + GROUP BY pdis, cdtype" +) + + +if (sum(is.na(pdis_occurrences$cdtype))!=0){ + print("not all null cdtypes excluded") +} + +#Standardize the format so that we can match with another pdis file +pdis_occurrences$pdis = pdis_occurrences$pdis %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0" + ) + +map_icd_9_to_10 = read.table(file = file.path(source_dir, "2017_I9gem_map.txt"), + header = TRUE) %>% + select(icd9, icd10) + + +map_icd_9_to_10 = map_icd_9_to_10 %>% + mutate(icd9 = icd9 %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0" + ), + icd10 = icd10 %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0" + ) +) + +#icd-10 +#The character-level pdis_recode is same as pdis when cdtype equals "D" +pdis_occurrences_D = pdis_occurrences %>% + filter(cdtype == "D") %>% + mutate(pdis_recode_char = pdis) + +# use the crosswalk to map the icd9 codes to icd10 +pdis_occurrences_I = sqldf( + "SELECT a.*, b.icd10 AS pdis_recode_char + FROM pdis_occurrences a + LEFT JOIN map_icd_9_to_10 b + ON a.pdis=b.icd9 + WHERE a.cdtype='I'", + method = "raw" +) + +pdis_recode_map = union(pdis_occurrences_D, pdis_occurrences_I) +pdis_recode_map = pdis_recode_map %>% + mutate(pdis_recode = as.factor(pdis_recode_char) %>% as.numeric()) + +#gets sum of numbr for each recode value when recode isn't na +pdis_recode_agg = pdis_recode_map %>% + group_by(pdis_recode) %>% + dplyr::summarise(pdis_recode_nmbr = sum(nmbr)) %>% + as.data.frame() + +pdis_recode_map = pdis_recode_map %>% left_join(pdis_recode_agg, by = "pdis_recode") +# pdis_recode_map=pdis_recode_map %>% filter(pdis_recode_nmbr>=100) + +tblname = "pdis_recode_map" +drop_table_function(con, tblname) +dbWriteTable(con, + tblname, + pdis_recode_map, + append = FALSE, + row.names = FALSE) \ No newline at end of file diff --git a/create_data_set/S6_prepareDataSet.R b/create_data_set/S6_prepareDataSet.R new file mode 100644 index 0000000..0a58e36 --- /dev/null +++ b/create_data_set/S6_prepareDataSet.R @@ -0,0 +1,320 @@ +library(dplyr) +library(magrittr) +library(tidyr) +library(plyr) +library(sqldf) +library(RPostgres) +library(DBI) +library(stringr) +library(readxl) + + +# Script for creating `medxpreesrd`. Uses the full dataset `patients_medevid_waitlist` and `preesrdfeatures` to construct the table `medxpreesrd` +# +# - creates binary variables to indicate whether imputed values are missing or out of bounds for a given patient +# - encodes character values to numeric +# - count the number of value types for como_* columns +# - incorporates pdis_recode column +# - deletes features not used for modeling +# +# - Input: `patients_medevid_waitlist`, `preesrdfeatures`, `pdis_recode_map`, `dxmap`, imputation_rules.xlsx +# - Output: `medxpreesrd` + +source(file.path("CreateDataSet","S0-connectToPostgres.R")) +source_dir = file.path("CreateDataSet","") + +main_data = "patients_medevid_waitlist" +medex_tblname = "medxpreesrd" +table_preesrd = "preesrdfeatures" + +valueExceptions = function(df, vars) { + #For each variable in the list "vars", introduce a binary variable for whether the variable + #is NA (which means "missing") and a separate binary variable for whether it is out of bounds + #(that is, not missing but below the clinically plausible min or above the clinically plausible max ) + bounds = read_excel(str_glue("{source_dir}imputation_rules.xlsx"), sheet = + "Bounds") %>% as.data.frame() + isnavars = c() + for (v in vars) { + newv = str_glue("wasna_{v}") + df[, newv] = as.integer(is.na(df[, v])) + isnavars = c(isnavars, newv) + } + outofbndsvars = c() + for (v in vars) { + newv = str_glue("outofbnds_{v}") + df[, newv] = as.integer(!is.na(df[, v]) & + !(df[, v] >= bounds[1, v] & + df[, v] <= bounds[2, v])) + #sum(as.integer(!is.na(df[,v]) & !(df[,v]>=bounds[1,v] & df[,v]<=bounds[2,v]))) + #The sum checks for reasonableness of the count, to guard against typos + outofbndsvars = c(outofbndsvars, newv) + } + #returns a data frame with usrds_id (the key field) and binary values to indicate whether or not + #each column in "vars" is NA + return(df[, c("usrds_id", isnavars, outofbndsvars)]) +} +setOutOfBoundsToNA=function(df,vars) { + for (v in vars) { + df[,v]=ifelse( + df[,paste0("outofbnds_",v)] == 1, + NA, + df[,v]) + } + return(df) +} +recodePdis = function(df, con) { + #pdis must be encoded as a number prior to training by gradient-boosting + df$pdis = df$pdis %>% + trimws() %>% str_pad(., + width = 7, + side = "right", + pad = "0") #Format pdis with + #same padding as in pdis_recode_map + print("get map") + pdis_map = dbGetQuery( + con, " + SELECT pdis, cdtype, pdis_recode + FROM pdis_recode_map") + print("summary") + pdis_map = pdis_map %>% + group_by(pdis, cdtype) %>% + dplyr::summarise(pdis_recode = min(pdis_recode)) + print("join") + df = df %>% + left_join( + pdis_map, + by = c("cdtype", "pdis")) %>% + mutate( + pdis_recode = ifelse(is.na(pdis_recode), 9999, pdis_recode) + ) + + return(df) +} + +replaceCharacterVals = function(dx, + vars, + sourceValue = c("N", "Y", "M", "F", "U", "C", "X", "D", "I", "A", "R"), + sinkValue = c("2", "1", "12", "13", "9", "15", "16", "17", "18", "20", "21")) +{ + #XGBoost wants numeric values instead of characters or factors + #xgboost requires numeric columns (null values are OK, but the column must be numeric) + #The function 'replaceCharacterVals' ensures that character values are replaced with a number + for (v in vars) { + print(v) + dx[, v] = mapvalues(pull(dx, v), sourceValue, sinkValue) + dx[, v] = as.integer(pull(dx, v)) + } + return(dx) +} +getCategoryVars <- function(dataset){ + pattern1 = "^MEDCOV|^PATTXOP|^PATINFORMED$|^DIET|^NEPHCARE|^EPO" %>% tolower() + pattern2 = "^DIAL|^TYPTRN|^AVGMATURING|^AVFMATURING" %>% tolower() + pattern3 = "^ACCESSTYPE|^TRCERT|^CDTYPE" %>% tolower() + pattern4 = "^EMPCUR|^EMPPREV|^pdis$|^hispanic$|^COMO_" %>% tolower() + categoryVars = names(dataset)[grepl(pattern1, names(dataset))] + categoryVars = union(categoryVars, names(dataset)[grepl(pattern2, names(dataset))]) + categoryVars = union(categoryVars, names(dataset)[grepl(pattern3, names(dataset))]) + categoryVars = union(categoryVars, names(dataset)[grepl(pattern4, names(dataset))]) + return(categoryVars) +} +getContinuousVars <- function(dataset){ + pattern_continuous = "^GFR_EPI|^SERCR|^ALBUM|^HEGLB|^HBA1C|^BMI$|^HEIGHT|^WEIGHT" %>% tolower() + continuousVars = names(dataset)[grepl(pattern_continuous, names(dataset))] + return(continuousVars) +} +getNonNumericCols = function(dx) { + cols = c() + for (v in names(dx)) { + if (!is.numeric(dx[, v])) { + cols = c(cols, v) + } + } + return(cols) +} +comoEncode <- function(dataset){ + # count value types in como_* variables for each ID + como_names = names(dataset)[grepl("^como_", names(dataset))] + + dataset$num_como_nas = apply( + dataset[, como_names], + 1, + function(xx) + sum(is.na(xx)) + ) + dataset$num_como_Ns = apply( + dataset[, como_names], + 1, + function(xx) + sum(xx == 2, na.rm = TRUE) + ) + dataset$num_como_Ys = apply( + dataset[, como_names], + 1, + function(xx) + sum(xx == 1, na.rm = TRUE) + ) + dataset$num_como_Us = apply( + dataset[, como_names], + 1, + function(xx) + sum(xx == 9, na.rm = TRUE) + ) + return(dataset) +} +prepareDataSet <- function(con, + subsets = "0, 1", + tablename = "patients_medevid_waitlist", + table_preesrd = "preesrdfeatures", + medex_tblname = "medxpreesrd") { + + qry = str_glue( + "SELECT * + FROM {tablename} + WHERE subset IN ({subsets})" + ) + data_subset = dbGetQuery(con, qry) + + #set out of bounds lab variables to NA + labvars=c("height","weight","bmi","sercr","album","gfr_epi","heglb") + ve=valueExceptions(data_subset,labvars) + df=data_subset %>% + left_join( + ve, + by="usrds_id") + df=setOutOfBoundsToNA(df,labvars) + + #select the columns to keep + oobvars = setdiff(names(df),names(data_subset)) + categoryVars = getCategoryVars(df) + continuousVars = getContinuousVars(df) + df = df[, c("usrds_id", + "subset", + "comorbid", + "inc_age", + "race", + "sex", + "disgrpc", + "waitlist_status", + "days_on_waitlist", + "died_in_90", + oobvars, + categoryVars, + continuousVars)] + + nonNumCols = setdiff(getNonNumericCols(df), c("pdis", "comorbid", "cdtype","hispanic","waitlist_status")) + df = replaceCharacterVals(df, nonNumCols) + df = recodePdis(df, con) + df = comoEncode(df) + + print("delete unused vars") +# #########varsToDelete per discussion of Nov 30 2020##### + varsToDelete = c( + "albumlm", + "como_ihd", + "como_mi", + "como_cararr", + "como_dysrhyt", + "como_pericar", + "como_diabprim", + "como_hiv", + "como_aids", + "comorbid_count", + "comorbid_mortality", + "comorbid_se", + "comorbid", + "ethn", + "hba1c", + "incyear", + "masked_died", + "masked_tx1fail", + "masked_txactdt", + "masked_txlstdt", + "masked_txinitdt", + "masked_remdate", + "masked_unossdt", + "masked_mefdate", + "masked_ctdate", + "masked_tdate", + "masked_patsign", + "masked_trstdat", + "masked_trnend", + "pdis_count", + "pdis_mortality", + "pdis_se", + "pdis", + "recnum", + "tottx" + ) +###### + df[, varsToDelete] = NULL + + print("get subset of preesrdfeatures") + qry = str_glue( + "SELECT * + FROM {table_preesrd} + WHERE subset in ({subsets})" + ) + preesrd = dbGetQuery(con, qry) + + print("join main with preesrdfeatures") + + full_data = df %>% + left_join( + preesrd, + by = c("usrds_id","subset") + ) + return(full_data) +} + +save_data <- function(con, medex_tblname, data, appendFlag){ + if (appendFlag == FALSE) { + drop_table_function(con, medex_tblname) + } + dbWriteTable( + con, + medex_tblname, + data, + append = appendFlag, + row.names = FALSE + ) +} +# Execute function-------------------------------------------------------- +# create a full data set for each of the 10 partitions and save in one table +df = prepareDataSet(con, + subsets = "0,1", + tablename = "patients_medevid_waitlist", + table_preesrd = "preesrdfeatures" + ) +save_data( + con, + medex_tblname = "medxpreesrd", + df, + appendFlag = FALSE + ) + +#run for the rest of the subsets +sets = c( + "2,3", + "4,5", + "6,7", + "8,9" +) +rm(df) + +for (s in sets) { + print(s) + df = prepareDataSet( + con, + subsets = s, + tablename = "patients_medevid_waitlist", + table_preesrd = "preesrdfeatures", + medex_tblname = "medxpreesrd") + + save_data( + con, + medex_tblname = "medxpreesrd", + df, + appendFlag = TRUE + ) + rm(df) +} \ No newline at end of file diff --git a/create_data_set/S7_makeImputations.R b/create_data_set/S7_makeImputations.R new file mode 100644 index 0000000..580b772 --- /dev/null +++ b/create_data_set/S7_makeImputations.R @@ -0,0 +1,219 @@ +library(stringr) +library(dplyr) +library(magrittr) +library(lubridate) +library(RPostgres) +library(DBI) +library(readxl) +library(mice) + +# For each of the variables weight, height, gfr_epi, sercr, album, creates an imputation for missing values +# - Input: `medxpreesrd` +# - Output: `micecomplete_pmm` +# +# The table `micecomplete_pmm` has 5 rows per usrds_id, for each of the imputed columns. +# There is one row per imputation, hence 5 rows per usrds_id. +# A modeler who wants to use imputed values would use both `medxpreesrd` and `micecomplete_pmm`, +# replacing weight, height, bmi, sercr, etc. in `medxpreesrd` with the imputed values in `micecomplete_pmm`. + + +source(file.path("CreateDataSet","S0-connectToPostgres.R")) + +create_myEgfr <- + function(df, cols = c("race", "sex", "inc_age", "sercr")) { + + kappa = ifelse(df$sex == 2, .7, .9) + alpha = ifelse(df$sex == 2, -.329, -.411) + beta = -1.209 + mn = ifelse(df$sercr / kappa < 1, df$sercr / kappa, 1) + mx = ifelse(df$sercr / kappa > 1, df$sercr / kappa, 1) + coef1 = ifelse(df$sex == 2, 1.018, 1) + coef2 = ifelse(df$race == 2, 1.159, 1) + egfr = 141 * (mn ^ alpha) * (mx ^ beta) * (.993 ^ df$inc_age) * coef1 * + coef2 + df$myEgfr = ifelse(is.infinite(egfr), NA, egfr) + #Need this or else above equations might yield "Inf" for some values of egfr + return(df) +} +writeImputations = function(con, miceimp, varstoimpute, dh, subset) { + + #dg contains usrds_id and wasna_gfr_epi + tblname = "micecomplete_pmm" + dc = as.data.frame(NULL) + for (i in 1:5) { + dcimp = complete(miceimp, i) %>% + as.data.frame() + dcimp$impnum = i + dcimp = create_myEgfr(dcimp) + dcimp = dcimp %>% + left_join(( + dh %>% + select(usrds_id, wasna_gfr_epi)), + by = "usrds_id") + dcimp = dcimp %>% + mutate(gfr_epi = ifelse( + wasna_gfr_epi & !is.na(myEgfr), + myEgfr, + gfr_epi) + ) + dc = rbind(dc, dcimp[, c("usrds_id", varstoimpute)]) %>% + as.data.frame() + } + + dc$subset = subset + + if (subset == 0) { + drop_table_function(con, tblname) + dbWriteTable( + con, + tblname, + dc, + append = FALSE, + row.names = FALSE + ) + } else { + dbWriteTable( + con, + tblname, + dc, + append = TRUE, + row.names = FALSE + ) + } + return(0) +} +makeImputations <- + function(con, subset, bounds, impseed, data_tablename) { + df = dbGetQuery( + con, + str_glue( + "SELECT * + FROM {data_tablename} + WHERE subset={subset}" + )) + + #Set out-of-bound values to NA so that they will be imputed + varstoimpute = names(bounds)[2:length(names(bounds))] #Variables to be imputed... + + varstoimpute = c( + "height", + "weight", + "bmi", + "sercr", + "album", + "gfr_epi", + "heglb" + ) + + varstouse = c( + "inc_age", + "race", + "sex", + "hispanic", + "num_como_nas", + "num_como_Ns", + "num_como_Ys", + "num_como_Us", + "sercr", + "height", + "weight", + "album", + "heglb" + ) + + dg = df[, c("usrds_id", union(varstoimpute, varstouse))] + dh = df[, c("usrds_id", "wasna_gfr_epi")] + dg = dg %>% + mutate( + hispanic = as.factor(hispanic), + race = as.factor(race), + sex = ifelse(is.na(sex), 0, sex) %>% + as.factor() + ) + + imp <- mice(dg, seed = impseed, maxit = 0) + predictorMatrixDf = imp$predictorMatrix + #An entry of 1 means the column variable was used to impute the row variable + meth = imp$method + + #row_imputed indexes the row (variable to be imputed); + #c indexes the column (variable to use as an independent variable to impute row_imputed) + for (row_imputed in colnames(predictorMatrixDf)) { + predictorMatrixDf[,row_imputed ] = 0 + } + + for (col_imputed in varstoimpute) { + for (impute_by in varstouse) { + if (col_imputed != impute_by) + predictorMatrixDf[col_imputed, impute_by] = 1 + } + } + + # bmi is arithmetically related to weight and height + # so it needs to be handled with a separate model + predictorMatrixDf["bmi", "height"] = 1 + predictorMatrixDf["bmi", "weight"] = 1 + + for (to_use in c("usrds_id", varstouse)) { + meth[to_use] = "" + } + for (to_impute in varstoimpute) { + meth[to_impute] = "pmm" + } + meth["bmi"] = "~ I(weight/(.01*height)^2)" + #Model the arithmetic relationship among bmi, weight, and height + + miceimp <- + mice( + dg, + m = 5, + maxit = 20, + threshold = .99999, + seed = impseed, + predictorMatrix = predictorMatrixDf, + method = meth, + print = FALSE + ) + + writeImputations( + con, + miceimp, + varstoimpute, + dh, + subset + ) + return(0) + +} + +# Execute Function -------------------------------------------------------- +seeds = c(2397, 3289, 4323, 4732, 691, 2388, 2688, 176, 1521, 461) +source_dir = file.path("CreateDataSet") +bounds = read_excel(file.path(source_dir, "imputation_rules.xlsx"), sheet ="Bounds" + ) %>% as.data.frame() +starttime = proc.time()[3] +makeImputations( + con, + subset = 0, + bounds, + impseed = seeds[1], + data_tablename="medxpreesrd" + ) +durationinmins = (proc.time()[3] - starttime) / 60 +s = 0 +print(str_glue("Finished with subset {s} in {durationinmins}")) + + +starttime = proc.time()[3] +for (s in 1:9) { + makeImputations( + con, + subset = s, + bounds, + impseed = seeds[s + 1], + data_tablename="medxpreesrd" + ) + durationinmins = (proc.time()[3] - starttime) / 60 + print(str_glue("Finished with subset {s} in {durationinmins}")) +} +durationinsecs = proc.time()[3] - starttime \ No newline at end of file diff --git a/create_data_set/create_claim_table.R b/create_data_set/create_claim_table.R new file mode 100644 index 0000000..123e90b --- /dev/null +++ b/create_data_set/create_claim_table.R @@ -0,0 +1,108 @@ +#Functions used in S3a_esrd_claims.R to create the pre-esrd claims tables. +#The schema for the tables changes from year to year. For example, there is no +#cdtype field prior to 2014, since all diagnosis codes were ICD9 prior to 2014. +#The script handles these year-to-year changes in schema. + +create_claim_table <- function( + data_dir, + con, + filenames, + fieldnames, + column_type, + column_type_2015, + table_name_pt) { + # send information to insert each year of claims data into the same postgres table + + fieldnames = tolower(fieldnames) + for (filename in filenames) { + incident_year = + substr(filename, str_length(filename) - 3, str_length(filename)) + + if (incident_year < 2015) { + # claims prior to 2015 are all icd9, so we set cdtype to I for those years + csvfile = read_csv(file.path(data_dir, str_glue("{filename}.csv")), col_types = column_type_2015) + csvfile = csvfile %>% + mutate(cdtype = "I") + } + else { + csvfile = read_csv(file.path(data_dir, str_glue("{filename}.csv")), col_types = column_type) + } + + tblname = str_remove(filename, incident_year) + names(csvfile) = tolower(names(csvfile)) + fields = names(csvfile) + + patients = dbGetQuery( + con, + str_glue( + "SELECT usrds_id + FROM {table_name_pt}") + ) + + df = patients %>% + inner_join( + csvfile, + by = "usrds_id") %>% + mutate( + incident_year = incident_year) + + df$pdgns_cd = df$pdgns_cd %>% + trimws() %>% + str_pad(., + width = 7, + side = "right", + pad = "0") + + if (grepl('_ip_', tblname)){ + df = createIP_CLM(df, incident_year) + } + else { + df <- df %>% + filter(!is.na(masked_clm_from) & (masked_clm_from != "")) + } + + rm(csvfile) + + # Append every set, except '2012' which will be the first table to import. + # this is b/c 2012 has the format that we want to use to create the table + # and append the other years since the format changes between 2011 and 2012-2017 + + if (incident_year==2012){ + drop_table_function(con, tblname) + print(str_glue("creating {tblname} claims using {incident_year}={nrow(df)} + patients={nrow(df %>% distinct(usrds_id, keep_all=FALSE))}")) + + dbWriteTable( + con, + tblname, + df[, fieldnames], + append = FALSE, + row.names = FALSE) + } + else { + print(str_glue("adding {incident_year} to {tblname}={nrow(df)} + patients={nrow(df %>% distinct(usrds_id, keep_all=FALSE))}")) + dbWriteTable( + con, + tblname, + df[, fieldnames], + append = TRUE, + row.names = FALSE) + } + } +} + +createIP_CLM = function(df, incident_year) { + # filtering for table named "preesrd5y_ip_clm" + print(str_glue("filtering IP claims {incident_year}")) + + df = df %>% + filter( + !is.na(masked_clm_from) & + (masked_clm_from != "") & + !is.na(drg_cd) & + (drg_cd != "") + ) + + return(df) +} \ No newline at end of file diff --git a/create_data_set/dx_mappings_ucsf.csv b/create_data_set/dx_mappings_ucsf.csv new file mode 100644 index 0000000..6f3b21d --- /dev/null +++ b/create_data_set/dx_mappings_ucsf.csv @@ -0,0 +1,62 @@ +label,description,cdtype,lb,ub +dia,diabetes,D,E10,E10ZZZZ +dia,diabetes,D,E11,E11ZZZZ +dia,diabetes,D,E12,E12ZZZZ +dia,diabetes,D,E13,E13ZZZZ +dia,diabetes,D,E14,E14ZZZZ +cvd,cerebrovascular disease,D,G45,G45ZZZZ +cvd,cerebrovascular disease,D,G46,G46ZZZZ +cvd,cerebrovascular disease,D,H340,H340ZZZ +flr,heartfailure,D,I0981,I0981ZZ +hyp,hypertension,D,I10,I10ZZZZ +flr,heartfailure,D,I110,I110ZZZ +hyp,hypertension,D,I119,I119ZZZ +flr,heartfailure,D,I130,I130ZZZ +flr,heartfailure,D,I132,I132ZZZ +hyp,hypertension,D,I15,I159ZZZ +cad,cardiovascular arterial disease,D,I21,I21ZZZZ +cad,cardiovascular arterial disease,D,I22,I22ZZZZ +cad,cardiovascular arterial disease,D,I252,I252000 +flr,heartfailure,D,I255,I255000 +flr,heartfailure,D,I50,I50ZZZZ +cvd,cerebrovascular disease,D,I60,I69ZZZZ +pad,peripheral arterial disease,D,I701,I701ZZZ +pad,peripheral arterial disease,D,I702,I707ZZZ +pad,peripheral arterial disease,D,I7092,I7092ZZ +pad,peripheral arterial disease,D,I731,I731ZZZ +pad,peripheral arterial disease,D,I738,I738ZZZ +pad,peripheral arterial disease,D,I739,I739ZZZ +dia,diabetes,I,250,2500000 +hyp,hypertension,I,401,4010000 +hyp,hypertension,I,405,4050000 +cad,cardiovascular arterial disease,I,410,4100000 +cad,cardiovascular arterial disease,I,412,4120000 +cad,cardiovascular arterial disease,I,414,4140000 +flr,heartfailure,I,428,4280000 +cvd,cerebrovascular disease,I,430,4371000 +cvd,cerebrovascular disease,I,4373,4398800 +pad,peripheral arterial disease,I,441,4410000 +pad,peripheral arterial disease,I,443,4430000 +dia,diabetes,I,3572,3572000 +dia,diabetes,I,3620,3620000 +flr,heartfailure,I,3981,3981000 +flr,heartfailure,I,4283,4283000 +flr,heartfailure,I,4293,4293000 +hyp,hypertension,I,4372,4372000 +pad,peripheral arterial disease,I,4401,4404000 +hyp,hypertension,I,6422,6422000 +hyp,hypertension,I,36211,3621100 +dia,diabetes,I,36641,3664100 +hyp,hypertension,I,40200,4020000 +flr,heartfailure,I,40201,4020100 +hyp,hypertension,I,40210,4021000 +flr,heartfailure,I,40211,4021100 +hyp,hypertension,I,40290,4029000 +flr,heartfailure,I,40291,4029100 +flr,heartfailure,I,40401,4040100 +flr,heartfailure,I,40403,4040300 +flr,heartfailure,I,40411,4041100 +flr,heartfailure,I,40413,4041300 +flr,heartfailure,I,40491,4049100 +flr,heartfailure,I,40493,4049300 +pad,peripheral arterial disease,I,V434,V434000 diff --git a/create_data_set/icd10_ccs_codes.R b/create_data_set/icd10_ccs_codes.R new file mode 100644 index 0000000..8b565dd --- /dev/null +++ b/create_data_set/icd10_ccs_codes.R @@ -0,0 +1,310 @@ +#ICD9 codes from CCS +#Utility file: Used by the script *dxCodeGrouping.R* to produce the table `dxMap` +#Group codes related to alcohol abuse, drug abuse, pulmonary disorders, +#and renal failure based on the Clinical classification system (CCS) rules for grouping ICD10 diagnosis codes. +#https://www.hcup-us.ahrq.gov/toolssoftware/ccs/ccs.jsp#download + +#pneumonia codes +pne_10 = c( + 'J09X1', + 'J1000', + 'J1001', + 'J1008', + 'J1100', + 'J1108', + 'J168', + 'J17', + 'J180', + 'J181', + 'J188', + 'J189', + 'J851', + 'J95851' +) + + +#copd codes +pne_10 = union( + pne_10, + c( + 'J410', + 'J411', + 'J418', + 'J42', + 'J430', + 'J431', + 'J432', + 'J438', + 'J439', + 'J440', + 'J441', + 'J449', + 'J470', + 'J471', + 'J479' + ) +) + + +#smoking codes +line1 = "Z87891" +smo_10 = line1 +smo_10 = union( + smo_10, + c( + 'F17200', + 'F17203', + 'F17208', + 'F17209', + 'F17210', + 'F17213', + 'F17218', + 'F17219', + 'F17220', + 'F17223', + 'F17228', + 'F17229', + 'F17290', + 'F17293', + 'F17298', + 'F17299', + 'O99330', + 'O99331', + 'O99332', + 'O99333', + 'O99334', + 'O99335' + ) + +) + + + +#symptoms of substance use disorders +drg_10 = c( + 'R450', + 'R451', + 'R452', + 'R453', + 'R454', + 'R455', + 'R456', + 'R457', + 'R4581', + 'R4582', + 'R4583', + 'R4584', + 'R45850', + 'R4586', + 'R4587', + 'R4589', + 'R460', + 'R461', + 'R462', + 'R463', + 'R464', + 'R465', + 'R466', + 'R467', + 'R4681', + 'R4689' +) +#abnormal findings related to substance use +drg_10 = union(drg_10, c('R780', + 'R781', + 'R782', + 'R783', + 'R784', + 'R785', + 'R786')) +#cannabis-related disorders +drg_10 = union( + drg_10, + c( + 'F1210', + 'F12120', + 'F12121', + 'F12122', + 'F12129', + 'F1213', + 'F12188', + 'F1219', + 'F1220', + 'F12220', + 'F12221', + 'F12222', + 'F12229', + 'F1223', + 'F12288', + 'F1229', + 'F1290', + 'F12920', + 'F12921', + 'F12922', + 'F12929', + 'F1293', + 'F12988', + 'F1299' + ) +) +#hallucinogen-related disorders +drg_10 = union( + drg_10, + c( + 'F1610', + 'F16120', + 'F16121', + 'F16122', + 'F16129', + 'F1614', + 'F16183', + 'F16188', + 'F1619', + 'F1620', + 'F16220', + 'F16221', + 'F16229', + 'F1624', + 'F16283', + 'F16288', + 'F1629', + 'F1690', + 'F16920', + 'F16921', + 'F16929', + 'F1694', + 'F16983', + 'F16988', + 'F1699' + ) +) +#opioid-related disorders +drg_10 = union( + drg_10, + c( + 'F1110', + 'F11120', + 'F11121', + 'F11122', + 'F11129', + 'F1113', + 'F1114', + 'F11181', + 'F11182', + 'F11188', + 'F1119', + 'F1120', + 'F11220', + 'F11221', + 'F11222', + 'F11229', + 'F1123', + 'F1124', + 'F11281', + 'F11282', + 'F11288', + 'F1129', + 'F1190', + 'F11920', + 'F11921', + 'F11922', + 'F11929', + 'F1193', + 'F1194', + 'F11981', + 'F11982', + 'F11988', + 'F1199' + ) +) +#alcohol-related disorders +alc_10 = c( + 'F1010', + 'F10120', + 'F10121', + 'F10129', + 'F10130', + 'F10131', + 'F10132', + 'F10139', + 'F1014', + 'F10181', + 'F10182', + 'F10188', + 'F1019', + 'F1020', + 'F10220', + 'F10221', + 'F10229', + 'F10230', + 'F10231', + 'F10232', + 'F10239', + 'F1024', + 'F1026', + 'F1027', + 'F10281', + 'F10282', + 'F10288', + 'F1029', + 'F10920', + 'F10921', + 'F10929', + 'F10930', + 'F10931', + 'F10932', + 'F10939', + 'F1094', + 'F1096', + 'F1097', + 'F10981', + 'F10982', + 'F10988', + 'F1099', + 'G312', + 'G621', + 'O354XX0', + 'O354XX1', + 'O354XX2', + 'O354XX3', + 'O354XX4', + 'O354XX5', + 'O354XX9', + 'O99310', + 'O99311', + 'O99312', + 'O99313', + 'O99314', + 'O99315' +) + + +#renal-failure codes +line1 = "N170 N171 N172 N178 N179 N19" +kid_10 = line1 %>% strsplit(split = " ") %>% unlist() + +alc_10 = alc_10 %>% + str_pad(., + width = 7, + side = "right", + pad = "0") +drg_10 = drg_10 %>% + str_pad(., + width = 7, + side = "right", + pad = "0") +kid_10 = kid_10 %>% + str_pad(., + width = 7, + side = "right", + pad = "0") +smo_10 = smo_10 %>% + str_pad(., + width = 7, + side = "right", + pad = "0") +pne_10 = pne_10 %>% + str_pad(., + width = 7, + side = "right", + pad = "0") diff --git a/create_data_set/icd10_dx_codes.txt b/create_data_set/icd10_dx_codes.txt new file mode 100644 index 0000000..054456e --- /dev/null +++ b/create_data_set/icd10_dx_codes.txt @@ -0,0 +1,140798 @@ +CODE LONG DESCRIPTION NF EXCL +A000 Cholera due to Vibrio cholerae 01, biovar cholerae +A001 Cholera due to Vibrio cholerae 01, biovar eltor +A009 Cholera, unspecified +A0100 Typhoid fever, unspecified +A0101 Typhoid meningitis +A0102 Typhoid fever with heart involvement +A0103 Typhoid pneumonia +A0104 Typhoid arthritis +A0105 Typhoid osteomyelitis +A0109 Typhoid fever with other complications +A011 Paratyphoid fever A +A012 Paratyphoid fever B +A013 Paratyphoid fever C +A014 Paratyphoid fever, unspecified +A020 Salmonella enteritis +A021 Salmonella sepsis +A0220 Localized salmonella infection, unspecified +A0221 Salmonella meningitis +A0222 Salmonella pneumonia +A0223 Salmonella arthritis +A0224 Salmonella osteomyelitis +A0225 Salmonella pyelonephritis +A0229 Salmonella with other localized infection +A028 Other specified salmonella infections +A029 Salmonella infection, unspecified +A030 Shigellosis due to Shigella dysenteriae +A031 Shigellosis due to Shigella flexneri +A032 Shigellosis due to Shigella boydii +A033 Shigellosis due to Shigella sonnei +A038 Other shigellosis +A039 Shigellosis, unspecified +A040 Enteropathogenic Escherichia coli infection +A041 Enterotoxigenic Escherichia coli infection +A042 Enteroinvasive Escherichia coli infection +A043 Enterohemorrhagic Escherichia coli infection +A044 Other intestinal Escherichia coli infections +A045 Campylobacter enteritis +A046 Enteritis due to Yersinia enterocolitica +A047 Enterocolitis due to Clostridium difficile +A0471 Enterocolitis due to Clostridium difficile, recurrent +A0472 Enterocolitis due to Clostridium difficile, not specified as recurrent +A048 Other specified bacterial intestinal infections +A049 Bacterial intestinal infection, unspecified +A050 Foodborne staphylococcal intoxication +A051 Botulism food poisoning +A052 Foodborne Clostridium perfringens [Clostridium welchii] intoxication +A053 Foodborne Vibrio parahaemolyticus intoxication +A054 Foodborne Bacillus cereus intoxication +A055 Foodborne Vibrio vulnificus intoxication +A058 Other specified bacterial foodborne intoxications +A059 Bacterial foodborne intoxication, unspecified +A060 Acute amebic dysentery +A061 Chronic intestinal amebiasis +A062 Amebic nondysenteric colitis +A063 Ameboma of intestine +A064 Amebic liver abscess +A065 Amebic lung abscess +A066 Amebic brain abscess +A067 Cutaneous amebiasis +A0681 Amebic cystitis +A0682 Other amebic genitourinary infections +A0689 Other amebic infections +A069 Amebiasis, unspecified +A070 Balantidiasis +A071 Giardiasis [lambliasis] +A072 Cryptosporidiosis +A073 Isosporiasis +A074 Cyclosporiasis +A078 Other specified protozoal intestinal diseases +A079 Protozoal intestinal disease, unspecified +A080 Rotaviral enteritis +A0811 Acute gastroenteropathy due to Norwalk agent +A0819 Acute gastroenteropathy due to other small round viruses +A082 Adenoviral enteritis +A0831 Calicivirus enteritis +A0832 Astrovirus enteritis +A0839 Other viral enteritis +A084 Viral intestinal infection, unspecified +A088 Other specified intestinal infections +A09 Infectious gastroenteritis and colitis, unspecified +A150 Tuberculosis of lung +A154 Tuberculosis of intrathoracic lymph nodes +A155 Tuberculosis of larynx, trachea and bronchus +A156 Tuberculous pleurisy +A157 Primary respiratory tuberculosis +A158 Other respiratory tuberculosis +A159 Respiratory tuberculosis unspecified +A170 Tuberculous meningitis +A171 Meningeal tuberculoma +A1781 Tuberculoma of brain and spinal cord +A1782 Tuberculous meningoencephalitis +A1783 Tuberculous neuritis +A1789 Other tuberculosis of nervous system +A179 Tuberculosis of nervous system, unspecified +A1801 Tuberculosis of spine +A1802 Tuberculous arthritis of other joints +A1803 Tuberculosis of other bones +A1809 Other musculoskeletal tuberculosis +A1810 Tuberculosis of genitourinary system, unspecified +A1811 Tuberculosis of kidney and ureter +A1812 Tuberculosis of bladder +A1813 Tuberculosis of other urinary organs +A1814 Tuberculosis of prostate +A1815 Tuberculosis of other male genital organs +A1816 Tuberculosis of cervix +A1817 Tuberculous female pelvic inflammatory disease +A1818 Tuberculosis of other female genital organs +A182 Tuberculous peripheral lymphadenopathy +A1831 Tuberculous peritonitis +A1832 Tuberculous enteritis +A1839 Retroperitoneal tuberculosis +A184 Tuberculosis of skin and subcutaneous tissue +A1850 Tuberculosis of eye, unspecified +A1851 Tuberculous episcleritis +A1852 Tuberculous keratitis +A1853 Tuberculous chorioretinitis +A1854 Tuberculous iridocyclitis +A1859 Other tuberculosis of eye +A186 Tuberculosis of (inner) (middle) ear +A187 Tuberculosis of adrenal glands +A1881 Tuberculosis of thyroid gland +A1882 Tuberculosis of other endocrine glands +A1883 Tuberculosis of digestive tract organs, not elsewhere classified +A1884 Tuberculosis of heart +A1885 Tuberculosis of spleen +A1889 Tuberculosis of other sites +A190 Acute miliary tuberculosis of a single specified site +A191 Acute miliary tuberculosis of multiple sites +A192 Acute miliary tuberculosis, unspecified +A198 Other miliary tuberculosis +A199 Miliary tuberculosis, unspecified +A200 Bubonic plague +A201 Cellulocutaneous plague +A202 Pneumonic plague +A203 Plague meningitis +A207 Septicemic plague +A208 Other forms of plague +A209 Plague, unspecified +A210 Ulceroglandular tularemia +A211 Oculoglandular tularemia +A212 Pulmonary tularemia +A213 Gastrointestinal tularemia +A217 Generalized tularemia +A218 Other forms of tularemia +A219 Tularemia, unspecified +A220 Cutaneous anthrax +A221 Pulmonary anthrax +A222 Gastrointestinal anthrax +A227 Anthrax sepsis +A228 Other forms of anthrax +A229 Anthrax, unspecified +A230 Brucellosis due to Brucella melitensis +A231 Brucellosis due to Brucella abortus +A232 Brucellosis due to Brucella suis +A233 Brucellosis due to Brucella canis +A238 Other brucellosis +A239 Brucellosis, unspecified +A240 Glanders +A241 Acute and fulminating melioidosis +A242 Subacute and chronic melioidosis +A243 Other melioidosis +A249 Melioidosis, unspecified +A250 Spirillosis +A251 Streptobacillosis +A259 Rat-bite fever, unspecified +A260 Cutaneous erysipeloid +A267 Erysipelothrix sepsis +A268 Other forms of erysipeloid +A269 Erysipeloid, unspecified +A270 Leptospirosis icterohemorrhagica +A2781 Aseptic meningitis in leptospirosis +A2789 Other forms of leptospirosis +A279 Leptospirosis, unspecified +A280 Pasteurellosis +A281 Cat-scratch disease +A282 Extraintestinal yersiniosis +A288 Other specified zoonotic bacterial diseases, not elsewhere classified +A289 Zoonotic bacterial disease, unspecified +A300 Indeterminate leprosy +A301 Tuberculoid leprosy +A302 Borderline tuberculoid leprosy +A303 Borderline leprosy +A304 Borderline lepromatous leprosy +A305 Lepromatous leprosy +A308 Other forms of leprosy +A309 Leprosy, unspecified +A310 Pulmonary mycobacterial infection +A311 Cutaneous mycobacterial infection +A312 Disseminated mycobacterium avium-intracellulare complex (DMAC) +A318 Other mycobacterial infections +A319 Mycobacterial infection, unspecified +A320 Cutaneous listeriosis +A3211 Listerial meningitis +A3212 Listerial meningoencephalitis +A327 Listerial sepsis +A3281 Oculoglandular listeriosis +A3282 Listerial endocarditis +A3289 Other forms of listeriosis +A329 Listeriosis, unspecified +A33 Tetanus neonatorum +A34 Obstetrical tetanus +A35 Other tetanus +A360 Pharyngeal diphtheria +A361 Nasopharyngeal diphtheria +A362 Laryngeal diphtheria +A363 Cutaneous diphtheria +A3681 Diphtheritic cardiomyopathy +A3682 Diphtheritic radiculomyelitis +A3683 Diphtheritic polyneuritis +A3684 Diphtheritic tubulo-interstitial nephropathy +A3685 Diphtheritic cystitis +A3686 Diphtheritic conjunctivitis +A3689 Other diphtheritic complications +A369 Diphtheria, unspecified +A3700 Whooping cough due to Bordetella pertussis without pneumonia +A3701 Whooping cough due to Bordetella pertussis with pneumonia +A3710 Whooping cough due to Bordetella parapertussis without pneumonia +A3711 Whooping cough due to Bordetella parapertussis with pneumonia +A3780 Whooping cough due to other Bordetella species without pneumonia +A3781 Whooping cough due to other Bordetella species with pneumonia +A3790 Whooping cough, unspecified species without pneumonia +A3791 Whooping cough, unspecified species with pneumonia +A380 Scarlet fever with otitis media +A381 Scarlet fever with myocarditis +A388 Scarlet fever with other complications +A389 Scarlet fever, uncomplicated +A390 Meningococcal meningitis +A391 Waterhouse-Friderichsen syndrome +A392 Acute meningococcemia +A393 Chronic meningococcemia +A394 Meningococcemia, unspecified +A3950 Meningococcal carditis, unspecified +A3951 Meningococcal endocarditis +A3952 Meningococcal myocarditis +A3953 Meningococcal pericarditis +A3981 Meningococcal encephalitis +A3982 Meningococcal retrobulbar neuritis +A3983 Meningococcal arthritis +A3984 Postmeningococcal arthritis +A3989 Other meningococcal infections +A399 Meningococcal infection, unspecified +A400 Sepsis due to streptococcus, group A +A401 Sepsis due to streptococcus, group B +A403 Sepsis due to Streptococcus pneumoniae +A408 Other streptococcal sepsis +A409 Streptococcal sepsis, unspecified +A4101 Sepsis due to Methicillin susceptible Staphylococcus aureus +A4102 Sepsis due to Methicillin resistant Staphylococcus aureus +A411 Sepsis due to other specified staphylococcus +A412 Sepsis due to unspecified staphylococcus +A413 Sepsis due to Hemophilus influenzae +A414 Sepsis due to anaerobes +A4150 Gram-negative sepsis, unspecified +A4151 Sepsis due to Escherichia coli [E. coli] +A4152 Sepsis due to Pseudomonas +A4153 Sepsis due to Serratia +A4159 Other Gram-negative sepsis +A4181 Sepsis due to Enterococcus +A4189 Other specified sepsis +A419 Sepsis, unspecified organism +A420 Pulmonary actinomycosis +A421 Abdominal actinomycosis +A422 Cervicofacial actinomycosis +A427 Actinomycotic sepsis +A4281 Actinomycotic meningitis +A4282 Actinomycotic encephalitis +A4289 Other forms of actinomycosis +A429 Actinomycosis, unspecified +A430 Pulmonary nocardiosis +A431 Cutaneous nocardiosis +A438 Other forms of nocardiosis +A439 Nocardiosis, unspecified +A440 Systemic bartonellosis +A441 Cutaneous and mucocutaneous bartonellosis +A448 Other forms of bartonellosis +A449 Bartonellosis, unspecified +A46 Erysipelas +A480 Gas gangrene +A481 Legionnaires' disease +A482 Nonpneumonic Legionnaires' disease [Pontiac fever] +A483 Toxic shock syndrome +A484 Brazilian purpuric fever +A4851 Infant botulism +A4852 Wound botulism +A488 Other specified bacterial diseases +A4901 Methicillin susceptible Staphylococcus aureus infection, unspecified site +A4902 Methicillin resistant Staphylococcus aureus infection, unspecified site +A491 Streptococcal infection, unspecified site +A492 Hemophilus influenzae infection, unspecified site +A493 Mycoplasma infection, unspecified site +A498 Other bacterial infections of unspecified site +A499 Bacterial infection, unspecified +A5001 Early congenital syphilitic oculopathy +A5002 Early congenital syphilitic osteochondropathy +A5003 Early congenital syphilitic pharyngitis +A5004 Early congenital syphilitic pneumonia +A5005 Early congenital syphilitic rhinitis +A5006 Early cutaneous congenital syphilis +A5007 Early mucocutaneous congenital syphilis +A5008 Early visceral congenital syphilis +A5009 Other early congenital syphilis, symptomatic +A501 Early congenital syphilis, latent +A502 Early congenital syphilis, unspecified +A5030 Late congenital syphilitic oculopathy, unspecified +A5031 Late congenital syphilitic interstitial keratitis +A5032 Late congenital syphilitic chorioretinitis +A5039 Other late congenital syphilitic oculopathy +A5040 Late congenital neurosyphilis, unspecified +A5041 Late congenital syphilitic meningitis +A5042 Late congenital syphilitic encephalitis +A5043 Late congenital syphilitic polyneuropathy +A5044 Late congenital syphilitic optic nerve atrophy +A5045 Juvenile general paresis +A5049 Other late congenital neurosyphilis +A5051 Clutton's joints +A5052 Hutchinson's teeth +A5053 Hutchinson's triad +A5054 Late congenital cardiovascular syphilis +A5055 Late congenital syphilitic arthropathy +A5056 Late congenital syphilitic osteochondropathy +A5057 Syphilitic saddle nose +A5059 Other late congenital syphilis, symptomatic +A506 Late congenital syphilis, latent +A507 Late congenital syphilis, unspecified +A509 Congenital syphilis, unspecified +A510 Primary genital syphilis +A511 Primary anal syphilis +A512 Primary syphilis of other sites +A5131 Condyloma latum +A5132 Syphilitic alopecia +A5139 Other secondary syphilis of skin +A5141 Secondary syphilitic meningitis +A5142 Secondary syphilitic female pelvic disease +A5143 Secondary syphilitic oculopathy +A5144 Secondary syphilitic nephritis +A5145 Secondary syphilitic hepatitis +A5146 Secondary syphilitic osteopathy +A5149 Other secondary syphilitic conditions +A515 Early syphilis, latent +A519 Early syphilis, unspecified +A5200 Cardiovascular syphilis, unspecified +A5201 Syphilitic aneurysm of aorta +A5202 Syphilitic aortitis +A5203 Syphilitic endocarditis +A5204 Syphilitic cerebral arteritis +A5205 Other cerebrovascular syphilis +A5206 Other syphilitic heart involvement +A5209 Other cardiovascular syphilis +A5210 Symptomatic neurosyphilis, unspecified +A5211 Tabes dorsalis +A5212 Other cerebrospinal syphilis +A5213 Late syphilitic meningitis +A5214 Late syphilitic encephalitis +A5215 Late syphilitic neuropathy +A5216 Charcot's arthropathy (tabetic) +A5217 General paresis +A5219 Other symptomatic neurosyphilis +A522 Asymptomatic neurosyphilis +A523 Neurosyphilis, unspecified +A5271 Late syphilitic oculopathy +A5272 Syphilis of lung and bronchus +A5273 Symptomatic late syphilis of other respiratory organs +A5274 Syphilis of liver and other viscera +A5275 Syphilis of kidney and ureter +A5276 Other genitourinary symptomatic late syphilis +A5277 Syphilis of bone and joint +A5278 Syphilis of other musculoskeletal tissue +A5279 Other symptomatic late syphilis +A528 Late syphilis, latent +A529 Late syphilis, unspecified +A530 Latent syphilis, unspecified as early or late +A539 Syphilis, unspecified +A5400 Gonococcal infection of lower genitourinary tract, unspecified +A5401 Gonococcal cystitis and urethritis, unspecified +A5402 Gonococcal vulvovaginitis, unspecified +A5403 Gonococcal cervicitis, unspecified +A5409 Other gonococcal infection of lower genitourinary tract +A541 Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess +A5421 Gonococcal infection of kidney and ureter +A5422 Gonococcal prostatitis +A5423 Gonococcal infection of other male genital organs +A5424 Gonococcal female pelvic inflammatory disease +A5429 Other gonococcal genitourinary infections +A5430 Gonococcal infection of eye, unspecified +A5431 Gonococcal conjunctivitis +A5432 Gonococcal iridocyclitis +A5433 Gonococcal keratitis +A5439 Other gonococcal eye infection +A5440 Gonococcal infection of musculoskeletal system, unspecified +A5441 Gonococcal spondylopathy +A5442 Gonococcal arthritis +A5443 Gonococcal osteomyelitis +A5449 Gonococcal infection of other musculoskeletal tissue +A545 Gonococcal pharyngitis +A546 Gonococcal infection of anus and rectum +A5481 Gonococcal meningitis +A5482 Gonococcal brain abscess +A5483 Gonococcal heart infection +A5484 Gonococcal pneumonia +A5485 Gonococcal peritonitis +A5486 Gonococcal sepsis +A5489 Other gonococcal infections +A549 Gonococcal infection, unspecified +A55 Chlamydial lymphogranuloma (venereum) +A5600 Chlamydial infection of lower genitourinary tract, unspecified +A5601 Chlamydial cystitis and urethritis +A5602 Chlamydial vulvovaginitis +A5609 Other chlamydial infection of lower genitourinary tract +A5611 Chlamydial female pelvic inflammatory disease +A5619 Other chlamydial genitourinary infection +A562 Chlamydial infection of genitourinary tract, unspecified +A563 Chlamydial infection of anus and rectum +A564 Chlamydial infection of pharynx +A568 Sexually transmitted chlamydial infection of other sites +A57 Chancroid +A58 Granuloma inguinale +A5900 Urogenital trichomoniasis, unspecified +A5901 Trichomonal vulvovaginitis +A5902 Trichomonal prostatitis +A5903 Trichomonal cystitis and urethritis +A5909 Other urogenital trichomoniasis +A598 Trichomoniasis of other sites +A599 Trichomoniasis, unspecified +A6000 Herpesviral infection of urogenital system, unspecified +A6001 Herpesviral infection of penis +A6002 Herpesviral infection of other male genital organs +A6003 Herpesviral cervicitis +A6004 Herpesviral vulvovaginitis +A6009 Herpesviral infection of other urogenital tract +A601 Herpesviral infection of perianal skin and rectum +A609 Anogenital herpesviral infection, unspecified +A630 Anogenital (venereal) warts +A638 Other specified predominantly sexually transmitted diseases +A64 Unspecified sexually transmitted disease +A65 Nonvenereal syphilis +A660 Initial lesions of yaws +A661 Multiple papillomata and wet crab yaws +A662 Other early skin lesions of yaws +A663 Hyperkeratosis of yaws +A664 Gummata and ulcers of yaws +A665 Gangosa +A666 Bone and joint lesions of yaws +A667 Other manifestations of yaws +A668 Latent yaws +A669 Yaws, unspecified +A670 Primary lesions of pinta +A671 Intermediate lesions of pinta +A672 Late lesions of pinta +A673 Mixed lesions of pinta +A679 Pinta, unspecified +A680 Louse-borne relapsing fever +A681 Tick-borne relapsing fever +A689 Relapsing fever, unspecified +A690 Necrotizing ulcerative stomatitis +A691 Other Vincent's infections +A6920 Lyme disease, unspecified +A6921 Meningitis due to Lyme disease +A6922 Other neurologic disorders in Lyme disease +A6923 Arthritis due to Lyme disease +A6929 Other conditions associated with Lyme disease +A698 Other specified spirochetal infections +A699 Spirochetal infection, unspecified +A70 Chlamydia psittaci infections +A710 Initial stage of trachoma +A711 Active stage of trachoma +A719 Trachoma, unspecified +A740 Chlamydial conjunctivitis +A7481 Chlamydial peritonitis +A7489 Other chlamydial diseases +A749 Chlamydial infection, unspecified +A750 Epidemic louse-borne typhus fever due to Rickettsia prowazekii +A751 Recrudescent typhus [Brill's disease] +A752 Typhus fever due to Rickettsia typhi +A753 Typhus fever due to Rickettsia tsutsugamushi +A759 Typhus fever, unspecified +A770 Spotted fever due to Rickettsia rickettsii +A771 Spotted fever due to Rickettsia conorii +A772 Spotted fever due to Rickettsia siberica +A773 Spotted fever due to Rickettsia australis +A7740 Ehrlichiosis, unspecified +A7741 Ehrlichiosis chafeensis [E. chafeensis] +A7749 Other ehrlichiosis +A778 Other spotted fevers +A779 Spotted fever, unspecified +A78 Q fever +A790 Trench fever +A791 Rickettsialpox due to Rickettsia akari +A7981 Rickettsiosis due to Ehrlichia sennetsu +A7989 Other specified rickettsioses +A799 Rickettsiosis, unspecified +A800 Acute paralytic poliomyelitis, vaccine-associated +A801 Acute paralytic poliomyelitis, wild virus, imported +A802 Acute paralytic poliomyelitis, wild virus, indigenous +A8030 Acute paralytic poliomyelitis, unspecified +A8039 Other acute paralytic poliomyelitis +A804 Acute nonparalytic poliomyelitis +A809 Acute poliomyelitis, unspecified +A8100 Creutzfeldt-Jakob disease, unspecified +A8101 Variant Creutzfeldt-Jakob disease +A8109 Other Creutzfeldt-Jakob disease +A811 Subacute sclerosing panencephalitis +A812 Progressive multifocal leukoencephalopathy +A8181 Kuru +A8182 Gerstmann-Straussler-Scheinker syndrome +A8183 Fatal familial insomnia +A8189 Other atypical virus infections of central nervous system +A819 Atypical virus infection of central nervous system, unspecified +A820 Sylvatic rabies +A821 Urban rabies +A829 Rabies, unspecified +A830 Japanese encephalitis +A831 Western equine encephalitis +A832 Eastern equine encephalitis +A833 St Louis encephalitis +A834 Australian encephalitis +A835 California encephalitis +A836 Rocio virus disease +A838 Other mosquito-borne viral encephalitis +A839 Mosquito-borne viral encephalitis, unspecified +A840 Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis] +A841 Central European tick-borne encephalitis +A848 Other tick-borne viral encephalitis +A849 Tick-borne viral encephalitis, unspecified +A850 Enteroviral encephalitis +A851 Adenoviral encephalitis +A852 Arthropod-borne viral encephalitis, unspecified +A858 Other specified viral encephalitis +A86 Unspecified viral encephalitis +A870 Enteroviral meningitis +A871 Adenoviral meningitis +A872 Lymphocytic choriomeningitis +A878 Other viral meningitis +A879 Viral meningitis, unspecified +A880 Enteroviral exanthematous fever [Boston exanthem] +A881 Epidemic vertigo +A888 Other specified viral infections of central nervous system +A89 Unspecified viral infection of central nervous system +A90 Dengue fever [classical dengue] +A91 Dengue hemorrhagic fever +A920 Chikungunya virus disease +A921 O'nyong-nyong fever +A922 Venezuelan equine fever +A9230 West Nile virus infection, unspecified +A9231 West Nile virus infection with encephalitis +A9232 West Nile virus infection with other neurologic manifestation +A9239 West Nile virus infection with other complications +A924 Rift Valley fever +A925 Zika virus disease +A928 Other specified mosquito-borne viral fevers +A929 Mosquito-borne viral fever, unspecified +A930 Oropouche virus disease +A931 Sandfly fever +A932 Colorado tick fever +A938 Other specified arthropod-borne viral fevers +A94 Unspecified arthropod-borne viral fever +A950 Sylvatic yellow fever +A951 Urban yellow fever +A959 Yellow fever, unspecified +A960 Junin hemorrhagic fever +A961 Machupo hemorrhagic fever +A962 Lassa fever +A968 Other arenaviral hemorrhagic fevers +A969 Arenaviral hemorrhagic fever, unspecified +A980 Crimean-Congo hemorrhagic fever +A981 Omsk hemorrhagic fever +A982 Kyasanur Forest disease +A983 Marburg virus disease +A984 Ebola virus disease +A985 Hemorrhagic fever with renal syndrome +A988 Other specified viral hemorrhagic fevers +A99 Unspecified viral hemorrhagic fever +B000 Eczema herpeticum +B001 Herpesviral vesicular dermatitis +B002 Herpesviral gingivostomatitis and pharyngotonsillitis +B003 Herpesviral meningitis +B004 Herpesviral encephalitis +B0050 Herpesviral ocular disease, unspecified +B0051 Herpesviral iridocyclitis +B0052 Herpesviral keratitis +B0053 Herpesviral conjunctivitis +B0059 Other herpesviral disease of eye +B007 Disseminated herpesviral disease +B0081 Herpesviral hepatitis +B0082 Herpes simplex myelitis +B0089 Other herpesviral infection +B009 Herpesviral infection, unspecified +B010 Varicella meningitis +B0111 Varicella encephalitis and encephalomyelitis +B0112 Varicella myelitis +B012 Varicella pneumonia +B0181 Varicella keratitis +B0189 Other varicella complications +B019 Varicella without complication +B020 Zoster encephalitis +B021 Zoster meningitis +B0221 Postherpetic geniculate ganglionitis +B0222 Postherpetic trigeminal neuralgia +B0223 Postherpetic polyneuropathy +B0224 Postherpetic myelitis +B0229 Other postherpetic nervous system involvement +B0230 Zoster ocular disease, unspecified +B0231 Zoster conjunctivitis +B0232 Zoster iridocyclitis +B0233 Zoster keratitis +B0234 Zoster scleritis +B0239 Other herpes zoster eye disease +B027 Disseminated zoster +B028 Zoster with other complications +B029 Zoster without complications +B03 Smallpox +B04 Monkeypox +B050 Measles complicated by encephalitis +B051 Measles complicated by meningitis +B052 Measles complicated by pneumonia +B053 Measles complicated by otitis media +B054 Measles with intestinal complications +B0581 Measles keratitis and keratoconjunctivitis +B0589 Other measles complications +B059 Measles without complication +B0600 Rubella with neurological complication, unspecified +B0601 Rubella encephalitis +B0602 Rubella meningitis +B0609 Other neurological complications of rubella +B0681 Rubella pneumonia +B0682 Rubella arthritis +B0689 Other rubella complications +B069 Rubella without complication +B070 Plantar wart +B078 Other viral warts +B079 Viral wart, unspecified +B08010 Cowpox +B08011 Vaccinia not from vaccine +B0802 Orf virus disease +B0803 Pseudocowpox [milker's node] +B0804 Paravaccinia, unspecified +B0809 Other orthopoxvirus infections +B081 Molluscum contagiosum +B0820 Exanthema subitum [sixth disease], unspecified +B0821 Exanthema subitum [sixth disease] due to human herpesvirus 6 +B0822 Exanthema subitum [sixth disease] due to human herpesvirus 7 +B083 Erythema infectiosum [fifth disease] +B084 Enteroviral vesicular stomatitis with exanthem +B085 Enteroviral vesicular pharyngitis +B0860 Parapoxvirus infection, unspecified +B0861 Bovine stomatitis +B0862 Sealpox +B0869 Other parapoxvirus infections +B0870 Yatapoxvirus infection, unspecified +B0871 Tanapox virus disease +B0872 Yaba pox virus disease +B0879 Other yatapoxvirus infections +B088 Other specified viral infections characterized by skin and mucous membrane lesions +B09 Unspecified viral infection characterized by skin and mucous membrane lesions +B1001 Human herpesvirus 6 encephalitis +B1009 Other human herpesvirus encephalitis +B1081 Human herpesvirus 6 infection +B1082 Human herpesvirus 7 infection +B1089 Other human herpesvirus infection +B150 Hepatitis A with hepatic coma +B159 Hepatitis A without hepatic coma +B160 Acute hepatitis B with delta-agent with hepatic coma +B161 Acute hepatitis B with delta-agent without hepatic coma +B162 Acute hepatitis B without delta-agent with hepatic coma +B169 Acute hepatitis B without delta-agent and without hepatic coma +B170 Acute delta-(super) infection of hepatitis B carrier +B1710 Acute hepatitis C without hepatic coma +B1711 Acute hepatitis C with hepatic coma +B172 Acute hepatitis E +B178 Other specified acute viral hepatitis +B179 Acute viral hepatitis, unspecified +B180 Chronic viral hepatitis B with delta-agent +B181 Chronic viral hepatitis B without delta-agent +B182 Chronic viral hepatitis C +B188 Other chronic viral hepatitis +B189 Chronic viral hepatitis, unspecified +B190 Unspecified viral hepatitis with hepatic coma +B1910 Unspecified viral hepatitis B without hepatic coma +B1911 Unspecified viral hepatitis B with hepatic coma +B1920 Unspecified viral hepatitis C without hepatic coma +B1921 Unspecified viral hepatitis C with hepatic coma +B199 Unspecified viral hepatitis without hepatic coma +B20 Human immunodeficiency virus [HIV] disease +B250 Cytomegaloviral pneumonitis +B251 Cytomegaloviral hepatitis +B252 Cytomegaloviral pancreatitis +B258 Other cytomegaloviral diseases +B259 Cytomegaloviral disease, unspecified +B260 Mumps orchitis +B261 Mumps meningitis +B262 Mumps encephalitis +B263 Mumps pancreatitis +B2681 Mumps hepatitis +B2682 Mumps myocarditis +B2683 Mumps nephritis +B2684 Mumps polyneuropathy +B2685 Mumps arthritis +B2689 Other mumps complications +B269 Mumps without complication +B2700 Gammaherpesviral mononucleosis without complication +B2701 Gammaherpesviral mononucleosis with polyneuropathy +B2702 Gammaherpesviral mononucleosis with meningitis +B2709 Gammaherpesviral mononucleosis with other complications +B2710 Cytomegaloviral mononucleosis without complications +B2711 Cytomegaloviral mononucleosis with polyneuropathy +B2712 Cytomegaloviral mononucleosis with meningitis +B2719 Cytomegaloviral mononucleosis with other complication +B2780 Other infectious mononucleosis without complication +B2781 Other infectious mononucleosis with polyneuropathy +B2782 Other infectious mononucleosis with meningitis +B2789 Other infectious mononucleosis with other complication +B2790 Infectious mononucleosis, unspecified without complication +B2791 Infectious mononucleosis, unspecified with polyneuropathy +B2792 Infectious mononucleosis, unspecified with meningitis +B2799 Infectious mononucleosis, unspecified with other complication +B300 Keratoconjunctivitis due to adenovirus +B301 Conjunctivitis due to adenovirus +B302 Viral pharyngoconjunctivitis +B303 Acute epidemic hemorrhagic conjunctivitis (enteroviral) +B308 Other viral conjunctivitis +B309 Viral conjunctivitis, unspecified +B330 Epidemic myalgia +B331 Ross River disease +B3320 Viral carditis, unspecified +B3321 Viral endocarditis +B3322 Viral myocarditis +B3323 Viral pericarditis +B3324 Viral cardiomyopathy +B333 Retrovirus infections, not elsewhere classified +B334 Hantavirus (cardio)-pulmonary syndrome [HPS] [HCPS] +B338 Other specified viral diseases +B340 Adenovirus infection, unspecified +B341 Enterovirus infection, unspecified +B342 Coronavirus infection, unspecified +B343 Parvovirus infection, unspecified +B344 Papovavirus infection, unspecified +B348 Other viral infections of unspecified site +B349 Viral infection, unspecified +B350 Tinea barbae and tinea capitis +B351 Tinea unguium +B352 Tinea manuum +B353 Tinea pedis +B354 Tinea corporis +B355 Tinea imbricata +B356 Tinea cruris +B358 Other dermatophytoses +B359 Dermatophytosis, unspecified +B360 Pityriasis versicolor +B361 Tinea nigra +B362 White piedra +B363 Black piedra +B368 Other specified superficial mycoses +B369 Superficial mycosis, unspecified +B370 Candidal stomatitis +B371 Pulmonary candidiasis +B372 Candidiasis of skin and nail +B373 Candidiasis of vulva and vagina +B3741 Candidal cystitis and urethritis +B3742 Candidal balanitis +B3749 Other urogenital candidiasis +B375 Candidal meningitis +B376 Candidal endocarditis +B377 Candidal sepsis +B3781 Candidal esophagitis +B3782 Candidal enteritis +B3783 Candidal cheilitis +B3784 Candidal otitis externa +B3789 Other sites of candidiasis +B379 Candidiasis, unspecified +B380 Acute pulmonary coccidioidomycosis +B381 Chronic pulmonary coccidioidomycosis +B382 Pulmonary coccidioidomycosis, unspecified +B383 Cutaneous coccidioidomycosis +B384 Coccidioidomycosis meningitis +B387 Disseminated coccidioidomycosis +B3881 Prostatic coccidioidomycosis +B3889 Other forms of coccidioidomycosis +B389 Coccidioidomycosis, unspecified +B390 Acute pulmonary histoplasmosis capsulati +B391 Chronic pulmonary histoplasmosis capsulati +B392 Pulmonary histoplasmosis capsulati, unspecified +B393 Disseminated histoplasmosis capsulati +B394 Histoplasmosis capsulati, unspecified +B395 Histoplasmosis duboisii +B399 Histoplasmosis, unspecified +B400 Acute pulmonary blastomycosis +B401 Chronic pulmonary blastomycosis +B402 Pulmonary blastomycosis, unspecified +B403 Cutaneous blastomycosis +B407 Disseminated blastomycosis +B4081 Blastomycotic meningoencephalitis +B4089 Other forms of blastomycosis +B409 Blastomycosis, unspecified +B410 Pulmonary paracoccidioidomycosis +B417 Disseminated paracoccidioidomycosis +B418 Other forms of paracoccidioidomycosis +B419 Paracoccidioidomycosis, unspecified +B420 Pulmonary sporotrichosis +B421 Lymphocutaneous sporotrichosis +B427 Disseminated sporotrichosis +B4281 Cerebral sporotrichosis +B4282 Sporotrichosis arthritis +B4289 Other forms of sporotrichosis +B429 Sporotrichosis, unspecified +B430 Cutaneous chromomycosis +B431 Pheomycotic brain abscess +B432 Subcutaneous pheomycotic abscess and cyst +B438 Other forms of chromomycosis +B439 Chromomycosis, unspecified +B440 Invasive pulmonary aspergillosis +B441 Other pulmonary aspergillosis +B442 Tonsillar aspergillosis +B447 Disseminated aspergillosis +B4481 Allergic bronchopulmonary aspergillosis +B4489 Other forms of aspergillosis +B449 Aspergillosis, unspecified +B450 Pulmonary cryptococcosis +B451 Cerebral cryptococcosis +B452 Cutaneous cryptococcosis +B453 Osseous cryptococcosis +B457 Disseminated cryptococcosis +B458 Other forms of cryptococcosis +B459 Cryptococcosis, unspecified +B460 Pulmonary mucormycosis +B461 Rhinocerebral mucormycosis +B462 Gastrointestinal mucormycosis +B463 Cutaneous mucormycosis +B464 Disseminated mucormycosis +B465 Mucormycosis, unspecified +B468 Other zygomycoses +B469 Zygomycosis, unspecified +B470 Eumycetoma +B471 Actinomycetoma +B479 Mycetoma, unspecified +B480 Lobomycosis +B481 Rhinosporidiosis +B482 Allescheriasis +B483 Geotrichosis +B484 Penicillosis +B488 Other specified mycoses +B49 Unspecified mycosis +B500 Plasmodium falciparum malaria with cerebral complications +B508 Other severe and complicated Plasmodium falciparum malaria +B509 Plasmodium falciparum malaria, unspecified +B510 Plasmodium vivax malaria with rupture of spleen +B518 Plasmodium vivax malaria with other complications +B519 Plasmodium vivax malaria without complication +B520 Plasmodium malariae malaria with nephropathy +B528 Plasmodium malariae malaria with other complications +B529 Plasmodium malariae malaria without complication +B530 Plasmodium ovale malaria +B531 Malaria due to simian plasmodia +B538 Other malaria, not elsewhere classified +B54 Unspecified malaria +B550 Visceral leishmaniasis +B551 Cutaneous leishmaniasis +B552 Mucocutaneous leishmaniasis +B559 Leishmaniasis, unspecified +B560 Gambiense trypanosomiasis +B561 Rhodesiense trypanosomiasis +B569 African trypanosomiasis, unspecified +B570 Acute Chagas' disease with heart involvement +B571 Acute Chagas' disease without heart involvement +B572 Chagas' disease (chronic) with heart involvement +B5730 Chagas' disease with digestive system involvement, unspecified +B5731 Megaesophagus in Chagas' disease +B5732 Megacolon in Chagas' disease +B5739 Other digestive system involvement in Chagas' disease +B5740 Chagas' disease with nervous system involvement, unspecified +B5741 Meningitis in Chagas' disease +B5742 Meningoencephalitis in Chagas' disease +B5749 Other nervous system involvement in Chagas' disease +B575 Chagas' disease (chronic) with other organ involvement +B5800 Toxoplasma oculopathy, unspecified +B5801 Toxoplasma chorioretinitis +B5809 Other toxoplasma oculopathy +B581 Toxoplasma hepatitis +B582 Toxoplasma meningoencephalitis +B583 Pulmonary toxoplasmosis +B5881 Toxoplasma myocarditis +B5882 Toxoplasma myositis +B5883 Toxoplasma tubulo-interstitial nephropathy +B5889 Toxoplasmosis with other organ involvement +B589 Toxoplasmosis, unspecified +B59 Pneumocystosis +B600 Babesiosis +B6010 Acanthamebiasis, unspecified +B6011 Meningoencephalitis due to Acanthamoeba (culbertsoni) +B6012 Conjunctivitis due to Acanthamoeba +B6013 Keratoconjunctivitis due to Acanthamoeba +B6019 Other acanthamebic disease +B602 Naegleriasis +B608 Other specified protozoal diseases +B64 Unspecified protozoal disease +B650 Schistosomiasis due to Schistosoma haematobium [urinary schistosomiasis] +B651 Schistosomiasis due to Schistosoma mansoni [intestinal schistosomiasis] +B652 Schistosomiasis due to Schistosoma japonicum +B653 Cercarial dermatitis +B658 Other schistosomiasis +B659 Schistosomiasis, unspecified +B660 Opisthorchiasis +B661 Clonorchiasis +B662 Dicroceliasis +B663 Fascioliasis +B664 Paragonimiasis +B665 Fasciolopsiasis +B668 Other specified fluke infections +B669 Fluke infection, unspecified +B670 Echinococcus granulosus infection of liver +B671 Echinococcus granulosus infection of lung +B672 Echinococcus granulosus infection of bone +B6731 Echinococcus granulosus infection, thyroid gland +B6732 Echinococcus granulosus infection, multiple sites +B6739 Echinococcus granulosus infection, other sites +B674 Echinococcus granulosus infection, unspecified +B675 Echinococcus multilocularis infection of liver +B6761 Echinococcus multilocularis infection, multiple sites +B6769 Echinococcus multilocularis infection, other sites +B677 Echinococcus multilocularis infection, unspecified +B678 Echinococcosis, unspecified, of liver +B6790 Echinococcosis, unspecified +B6799 Other echinococcosis +B680 Taenia solium taeniasis +B681 Taenia saginata taeniasis +B689 Taeniasis, unspecified +B690 Cysticercosis of central nervous system +B691 Cysticercosis of eye +B6981 Myositis in cysticercosis +B6989 Cysticercosis of other sites +B699 Cysticercosis, unspecified +B700 Diphyllobothriasis +B701 Sparganosis +B710 Hymenolepiasis +B711 Dipylidiasis +B718 Other specified cestode infections +B719 Cestode infection, unspecified +B72 Dracunculiasis +B7300 Onchocerciasis with eye involvement, unspecified +B7301 Onchocerciasis with endophthalmitis +B7302 Onchocerciasis with glaucoma +B7309 Onchocerciasis with other eye involvement +B731 Onchocerciasis without eye disease +B740 Filariasis due to Wuchereria bancrofti +B741 Filariasis due to Brugia malayi +B742 Filariasis due to Brugia timori +B743 Loiasis +B744 Mansonelliasis +B748 Other filariases +B749 Filariasis, unspecified +B75 Trichinellosis +B760 Ancylostomiasis +B761 Necatoriasis +B768 Other hookworm diseases +B769 Hookworm disease, unspecified +B770 Ascariasis with intestinal complications +B7781 Ascariasis pneumonia +B7789 Ascariasis with other complications +B779 Ascariasis, unspecified +B780 Intestinal strongyloidiasis +B781 Cutaneous strongyloidiasis +B787 Disseminated strongyloidiasis +B789 Strongyloidiasis, unspecified +B79 Trichuriasis +B80 Enterobiasis +B810 Anisakiasis +B811 Intestinal capillariasis +B812 Trichostrongyliasis +B813 Intestinal angiostrongyliasis +B814 Mixed intestinal helminthiases +B818 Other specified intestinal helminthiases +B820 Intestinal helminthiasis, unspecified +B829 Intestinal parasitism, unspecified +B830 Visceral larva migrans +B831 Gnathostomiasis +B832 Angiostrongyliasis due to Parastrongylus cantonensis +B833 Syngamiasis +B834 Internal hirudiniasis +B838 Other specified helminthiases +B839 Helminthiasis, unspecified +B850 Pediculosis due to Pediculus humanus capitis +B851 Pediculosis due to Pediculus humanus corporis +B852 Pediculosis, unspecified +B853 Phthiriasis +B854 Mixed pediculosis and phthiriasis +B86 Scabies +B870 Cutaneous myiasis +B871 Wound myiasis +B872 Ocular myiasis +B873 Nasopharyngeal myiasis +B874 Aural myiasis +B8781 Genitourinary myiasis +B8782 Intestinal myiasis +B8789 Myiasis of other sites +B879 Myiasis, unspecified +B880 Other acariasis +B881 Tungiasis [sandflea infestation] +B882 Other arthropod infestations +B883 External hirudiniasis +B888 Other specified infestations +B889 Infestation, unspecified +B89 Unspecified parasitic disease +B900 Sequelae of central nervous system tuberculosis +B901 Sequelae of genitourinary tuberculosis +B902 Sequelae of tuberculosis of bones and joints +B908 Sequelae of tuberculosis of other organs +B909 Sequelae of respiratory and unspecified tuberculosis +B91 Sequelae of poliomyelitis +B92 Sequelae of leprosy +B940 Sequelae of trachoma +B941 Sequelae of viral encephalitis +B942 Sequelae of viral hepatitis +B948 Sequelae of other specified infectious and parasitic diseases +B949 Sequelae of unspecified infectious and parasitic disease +B950 Streptococcus, group A, as the cause of diseases classified elsewhere +B951 Streptococcus, group B, as the cause of diseases classified elsewhere +B952 Enterococcus as the cause of diseases classified elsewhere +B953 Streptococcus pneumoniae as the cause of diseases classified elsewhere +B954 Other streptococcus as the cause of diseases classified elsewhere +B955 Unspecified streptococcus as the cause of diseases classified elsewhere +B9561 Methicillin susceptible Staphylococcus aureus infection as the cause of diseases classified elsewhere +B9562 Methicillin resistant Staphylococcus aureus infection as the cause of diseases classified elsewhere +B957 Other staphylococcus as the cause of diseases classified elsewhere +B958 Unspecified staphylococcus as the cause of diseases classified elsewhere +B960 Mycoplasma pneumoniae [M. pneumoniae] as the cause of diseases classified elsewhere +B961 Klebsiella pneumoniae [K. pneumoniae] as the cause of diseases classified elsewhere +B9620 Unspecified Escherichia coli [E. coli] as the cause of diseases classified elsewhere +B9621 Shiga toxin-producing Escherichia coli [E. coli] [STEC] O157 as the cause of diseases classified elsewhere +B9622 Other specified Shiga toxin-producing Escherichia coli [E. coli] [STEC] as the cause of diseases classified elsewhere +B9623 Unspecified Shiga toxin-producing Escherichia coli [E. coli] [STEC] as the cause of diseases classified elsewhere +B9629 Other Escherichia coli [E. coli] as the cause of diseases classified elsewhere +B963 Hemophilus influenzae [H. influenzae] as the cause of diseases classified elsewhere +B964 Proteus (mirabilis) (morganii) as the cause of diseases classified elsewhere +B965 Pseudomonas (aeruginosa) (mallei) (pseudomallei) as the cause of diseases classified elsewhere +B966 Bacteroides fragilis [B. fragilis] as the cause of diseases classified elsewhere +B967 Clostridium perfringens [C. perfringens] as the cause of diseases classified elsewhere +B9681 Helicobacter pylori [H. pylori] as the cause of diseases classified elsewhere +B9682 Vibrio vulnificus as the cause of diseases classified elsewhere +B9689 Other specified bacterial agents as the cause of diseases classified elsewhere +B970 Adenovirus as the cause of diseases classified elsewhere +B9710 Unspecified enterovirus as the cause of diseases classified elsewhere +B9711 Coxsackievirus as the cause of diseases classified elsewhere +B9712 Echovirus as the cause of diseases classified elsewhere +B9719 Other enterovirus as the cause of diseases classified elsewhere +B9721 SARS-associated coronavirus as the cause of diseases classified elsewhere +B9729 Other coronavirus as the cause of diseases classified elsewhere +B9730 Unspecified retrovirus as the cause of diseases classified elsewhere +B9731 Lentivirus as the cause of diseases classified elsewhere +B9732 Oncovirus as the cause of diseases classified elsewhere +B9733 Human T-cell lymphotrophic virus, type I [HTLV-I] as the cause of diseases classified elsewhere +B9734 Human T-cell lymphotrophic virus, type II [HTLV-II] as the cause of diseases classified elsewhere +B9735 Human immunodeficiency virus, type 2 [HIV 2] as the cause of diseases classified elsewhere +B9739 Other retrovirus as the cause of diseases classified elsewhere +B974 Respiratory syncytial virus as the cause of diseases classified elsewhere +B975 Reovirus as the cause of diseases classified elsewhere +B976 Parvovirus as the cause of diseases classified elsewhere +B977 Papillomavirus as the cause of diseases classified elsewhere +B9781 Human metapneumovirus as the cause of diseases classified elsewhere +B9789 Other viral agents as the cause of diseases classified elsewhere +B998 Other infectious disease +B999 Unspecified infectious disease +C000 Malignant neoplasm of external upper lip +C001 Malignant neoplasm of external lower lip +C002 Malignant neoplasm of external lip, unspecified +C003 Malignant neoplasm of upper lip, inner aspect +C004 Malignant neoplasm of lower lip, inner aspect +C005 Malignant neoplasm of lip, unspecified, inner aspect +C006 Malignant neoplasm of commissure of lip, unspecified +C008 Malignant neoplasm of overlapping sites of lip +C009 Malignant neoplasm of lip, unspecified +C01 Malignant neoplasm of base of tongue +C020 Malignant neoplasm of dorsal surface of tongue +C021 Malignant neoplasm of border of tongue +C022 Malignant neoplasm of ventral surface of tongue +C023 Malignant neoplasm of anterior two-thirds of tongue, part unspecified +C024 Malignant neoplasm of lingual tonsil +C028 Malignant neoplasm of overlapping sites of tongue +C029 Malignant neoplasm of tongue, unspecified +C030 Malignant neoplasm of upper gum +C031 Malignant neoplasm of lower gum +C039 Malignant neoplasm of gum, unspecified +C040 Malignant neoplasm of anterior floor of mouth +C041 Malignant neoplasm of lateral floor of mouth +C048 Malignant neoplasm of overlapping sites of floor of mouth +C049 Malignant neoplasm of floor of mouth, unspecified +C050 Malignant neoplasm of hard palate +C051 Malignant neoplasm of soft palate +C052 Malignant neoplasm of uvula +C058 Malignant neoplasm of overlapping sites of palate +C059 Malignant neoplasm of palate, unspecified +C060 Malignant neoplasm of cheek mucosa +C061 Malignant neoplasm of vestibule of mouth +C062 Malignant neoplasm of retromolar area +C0680 Malignant neoplasm of overlapping sites of unspecified parts of mouth +C0689 Malignant neoplasm of overlapping sites of other parts of mouth +C069 Malignant neoplasm of mouth, unspecified +C07 Malignant neoplasm of parotid gland +C080 Malignant neoplasm of submandibular gland +C081 Malignant neoplasm of sublingual gland +C089 Malignant neoplasm of major salivary gland, unspecified +C090 Malignant neoplasm of tonsillar fossa +C091 Malignant neoplasm of tonsillar pillar (anterior) (posterior) +C098 Malignant neoplasm of overlapping sites of tonsil +C099 Malignant neoplasm of tonsil, unspecified +C100 Malignant neoplasm of vallecula +C101 Malignant neoplasm of anterior surface of epiglottis +C102 Malignant neoplasm of lateral wall of oropharynx +C103 Malignant neoplasm of posterior wall of oropharynx +C104 Malignant neoplasm of branchial cleft +C108 Malignant neoplasm of overlapping sites of oropharynx +C109 Malignant neoplasm of oropharynx, unspecified +C110 Malignant neoplasm of superior wall of nasopharynx +C111 Malignant neoplasm of posterior wall of nasopharynx +C112 Malignant neoplasm of lateral wall of nasopharynx +C113 Malignant neoplasm of anterior wall of nasopharynx +C118 Malignant neoplasm of overlapping sites of nasopharynx +C119 Malignant neoplasm of nasopharynx, unspecified +C12 Malignant neoplasm of pyriform sinus +C130 Malignant neoplasm of postcricoid region +C131 Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect +C132 Malignant neoplasm of posterior wall of hypopharynx +C138 Malignant neoplasm of overlapping sites of hypopharynx +C139 Malignant neoplasm of hypopharynx, unspecified +C140 Malignant neoplasm of pharynx, unspecified +C142 Malignant neoplasm of Waldeyer's ring +C148 Malignant neoplasm of overlapping sites of lip, oral cavity and pharynx +C153 Malignant neoplasm of upper third of esophagus +C154 Malignant neoplasm of middle third of esophagus +C155 Malignant neoplasm of lower third of esophagus +C158 Malignant neoplasm of overlapping sites of esophagus +C159 Malignant neoplasm of esophagus, unspecified +C160 Malignant neoplasm of cardia +C161 Malignant neoplasm of fundus of stomach +C162 Malignant neoplasm of body of stomach +C163 Malignant neoplasm of pyloric antrum +C164 Malignant neoplasm of pylorus +C165 Malignant neoplasm of lesser curvature of stomach, unspecified +C166 Malignant neoplasm of greater curvature of stomach, unspecified +C168 Malignant neoplasm of overlapping sites of stomach +C169 Malignant neoplasm of stomach, unspecified +C170 Malignant neoplasm of duodenum +C171 Malignant neoplasm of jejunum +C172 Malignant neoplasm of ileum +C173 Meckel's diverticulum, malignant +C178 Malignant neoplasm of overlapping sites of small intestine +C179 Malignant neoplasm of small intestine, unspecified +C180 Malignant neoplasm of cecum +C181 Malignant neoplasm of appendix +C182 Malignant neoplasm of ascending colon +C183 Malignant neoplasm of hepatic flexure +C184 Malignant neoplasm of transverse colon +C185 Malignant neoplasm of splenic flexure +C186 Malignant neoplasm of descending colon +C187 Malignant neoplasm of sigmoid colon +C188 Malignant neoplasm of overlapping sites of colon +C189 Malignant neoplasm of colon, unspecified +C19 Malignant neoplasm of rectosigmoid junction +C20 Malignant neoplasm of rectum +C210 Malignant neoplasm of anus, unspecified +C211 Malignant neoplasm of anal canal +C212 Malignant neoplasm of cloacogenic zone +C218 Malignant neoplasm of overlapping sites of rectum, anus and anal canal +C220 Liver cell carcinoma +C221 Intrahepatic bile duct carcinoma +C222 Hepatoblastoma +C223 Angiosarcoma of liver +C224 Other sarcomas of liver +C227 Other specified carcinomas of liver +C228 Malignant neoplasm of liver, primary, unspecified as to type +C229 Malignant neoplasm of liver, not specified as primary or secondary +C23 Malignant neoplasm of gallbladder +C240 Malignant neoplasm of extrahepatic bile duct +C241 Malignant neoplasm of ampulla of Vater +C248 Malignant neoplasm of overlapping sites of biliary tract +C249 Malignant neoplasm of biliary tract, unspecified +C250 Malignant neoplasm of head of pancreas +C251 Malignant neoplasm of body of pancreas +C252 Malignant neoplasm of tail of pancreas +C253 Malignant neoplasm of pancreatic duct +C254 Malignant neoplasm of endocrine pancreas +C257 Malignant neoplasm of other parts of pancreas +C258 Malignant neoplasm of overlapping sites of pancreas +C259 Malignant neoplasm of pancreas, unspecified +C260 Malignant neoplasm of intestinal tract, part unspecified +C261 Malignant neoplasm of spleen +C269 Malignant neoplasm of ill-defined sites within the digestive system +C300 Malignant neoplasm of nasal cavity +C301 Malignant neoplasm of middle ear +C310 Malignant neoplasm of maxillary sinus +C311 Malignant neoplasm of ethmoidal sinus +C312 Malignant neoplasm of frontal sinus +C313 Malignant neoplasm of sphenoid sinus +C318 Malignant neoplasm of overlapping sites of accessory sinuses +C319 Malignant neoplasm of accessory sinus, unspecified +C320 Malignant neoplasm of glottis +C321 Malignant neoplasm of supraglottis +C322 Malignant neoplasm of subglottis +C323 Malignant neoplasm of laryngeal cartilage +C328 Malignant neoplasm of overlapping sites of larynx +C329 Malignant neoplasm of larynx, unspecified +C33 Malignant neoplasm of trachea +C3400 Malignant neoplasm of unspecified main bronchus +C3401 Malignant neoplasm of right main bronchus +C3402 Malignant neoplasm of left main bronchus +C3410 Malignant neoplasm of upper lobe, unspecified bronchus or lung +C3411 Malignant neoplasm of upper lobe, right bronchus or lung +C3412 Malignant neoplasm of upper lobe, left bronchus or lung +C342 Malignant neoplasm of middle lobe, bronchus or lung +C3430 Malignant neoplasm of lower lobe, unspecified bronchus or lung +C3431 Malignant neoplasm of lower lobe, right bronchus or lung +C3432 Malignant neoplasm of lower lobe, left bronchus or lung +C3480 Malignant neoplasm of overlapping sites of unspecified bronchus and lung +C3481 Malignant neoplasm of overlapping sites of right bronchus and lung +C3482 Malignant neoplasm of overlapping sites of left bronchus and lung +C3490 Malignant neoplasm of unspecified part of unspecified bronchus or lung +C3491 Malignant neoplasm of unspecified part of right bronchus or lung +C3492 Malignant neoplasm of unspecified part of left bronchus or lung +C37 Malignant neoplasm of thymus +C380 Malignant neoplasm of heart +C381 Malignant neoplasm of anterior mediastinum +C382 Malignant neoplasm of posterior mediastinum +C383 Malignant neoplasm of mediastinum, part unspecified +C384 Malignant neoplasm of pleura +C388 Malignant neoplasm of overlapping sites of heart, mediastinum and pleura +C390 Malignant neoplasm of upper respiratory tract, part unspecified +C399 Malignant neoplasm of lower respiratory tract, part unspecified +C4000 Malignant neoplasm of scapula and long bones of unspecified upper limb +C4001 Malignant neoplasm of scapula and long bones of right upper limb +C4002 Malignant neoplasm of scapula and long bones of left upper limb +C4010 Malignant neoplasm of short bones of unspecified upper limb +C4011 Malignant neoplasm of short bones of right upper limb +C4012 Malignant neoplasm of short bones of left upper limb +C4020 Malignant neoplasm of long bones of unspecified lower limb +C4021 Malignant neoplasm of long bones of right lower limb +C4022 Malignant neoplasm of long bones of left lower limb +C4030 Malignant neoplasm of short bones of unspecified lower limb +C4031 Malignant neoplasm of short bones of right lower limb +C4032 Malignant neoplasm of short bones of left lower limb +C4080 Malignant neoplasm of overlapping sites of bone and articular cartilage of unspecified limb +C4081 Malignant neoplasm of overlapping sites of bone and articular cartilage of right limb +C4082 Malignant neoplasm of overlapping sites of bone and articular cartilage of left limb +C4090 Malignant neoplasm of unspecified bones and articular cartilage of unspecified limb +C4091 Malignant neoplasm of unspecified bones and articular cartilage of right limb +C4092 Malignant neoplasm of unspecified bones and articular cartilage of left limb +C410 Malignant neoplasm of bones of skull and face +C411 Malignant neoplasm of mandible +C412 Malignant neoplasm of vertebral column +C413 Malignant neoplasm of ribs, sternum and clavicle +C414 Malignant neoplasm of pelvic bones, sacrum and coccyx +C419 Malignant neoplasm of bone and articular cartilage, unspecified +C430 Malignant melanoma of lip +C4310 Malignant melanoma of unspecified eyelid, including canthus +C4311 Malignant melanoma of right eyelid, including canthus +C43111 Malignant melanoma of right upper eyelid, including canthus +C43112 Malignant melanoma of right lower eyelid, including canthus +C4312 Malignant melanoma of left eyelid, including canthus +C43121 Malignant melanoma of left upper eyelid, including canthus +C43122 Malignant melanoma of left lower eyelid, including canthus +C4320 Malignant melanoma of unspecified ear and external auricular canal +C4321 Malignant melanoma of right ear and external auricular canal +C4322 Malignant melanoma of left ear and external auricular canal +C4330 Malignant melanoma of unspecified part of face +C4331 Malignant melanoma of nose +C4339 Malignant melanoma of other parts of face +C434 Malignant melanoma of scalp and neck +C4351 Malignant melanoma of anal skin +C4352 Malignant melanoma of skin of breast +C4359 Malignant melanoma of other part of trunk +C4360 Malignant melanoma of unspecified upper limb, including shoulder +C4361 Malignant melanoma of right upper limb, including shoulder +C4362 Malignant melanoma of left upper limb, including shoulder +C4370 Malignant melanoma of unspecified lower limb, including hip +C4371 Malignant melanoma of right lower limb, including hip +C4372 Malignant melanoma of left lower limb, including hip +C438 Malignant melanoma of overlapping sites of skin +C439 Malignant melanoma of skin, unspecified +C4400 Unspecified malignant neoplasm of skin of lip +C4401 Basal cell carcinoma of skin of lip +C4402 Squamous cell carcinoma of skin of lip +C4409 Other specified malignant neoplasm of skin of lip +C44101 Unspecified malignant neoplasm of skin of unspecified eyelid, including canthus +C44102 Unspecified malignant neoplasm of skin of right eyelid, including canthus +C441021 Unspecified malignant neoplasm of skin of right upper eyelid, including canthus +C441022 Unspecified malignant neoplasm of skin of right lower eyelid, including canthus +C44109 Unspecified malignant neoplasm of skin of left eyelid, including canthus +C441091 Unspecified malignant neoplasm of skin of left upper eyelid, including canthus +C441092 Unspecified malignant neoplasm of skin of left lower eyelid, including canthus +C44111 Basal cell carcinoma of skin of unspecified eyelid, including canthus +C44112 Basal cell carcinoma of skin of right eyelid, including canthus +C441121 Basal cell carcinoma of skin of right upper eyelid, including canthus +C441122 Basal cell carcinoma of skin of right lower eyelid, including canthus +C44119 Basal cell carcinoma of skin of left eyelid, including canthus +C441191 Basal cell carcinoma of skin of left upper eyelid, including canthus +C441192 Basal cell carcinoma of skin of left lower eyelid, including canthus +C44121 Squamous cell carcinoma of skin of unspecified eyelid, including canthus +C44122 Squamous cell carcinoma of skin of right eyelid, including canthus +C441221 Squamous cell carcinoma of skin of right upper eyelid, including canthus +C441222 Squamous cell carcinoma of skin of right lower eyelid, including canthus +C44129 Squamous cell carcinoma of skin of left eyelid, including canthus +C441291 Squamous cell carcinoma of skin of left upper eyelid, including canthus +C441292 Squamous cell carcinoma of skin of left lower eyelid, including canthus +C44131 Sebaceous cell carcinoma of skin of unspecified eyelid, including canthus +C441321 Sebaceous cell carcinoma of skin of right upper eyelid, including canthus +C441322 Sebaceous cell carcinoma of skin of right lower eyelid, including canthus +C441391 Sebaceous cell carcinoma of skin of left upper eyelid, including canthus +C441392 Sebaceous cell carcinoma of skin of left lower eyelid, including canthus +C44191 Other specified malignant neoplasm of skin of unspecified eyelid, including canthus +C44192 Other specified malignant neoplasm of skin of right eyelid, including canthus +C441921 Other specified malignant neoplasm of skin of right upper eyelid, including canthus +C441922 Other specified malignant neoplasm of skin of right lower eyelid, including canthus +C44199 Other specified malignant neoplasm of skin of left eyelid, including canthus +C441991 Other specified malignant neoplasm of skin of left upper eyelid, including canthus +C441992 Other specified malignant neoplasm of skin of left lower eyelid, including canthus +C44201 Unspecified malignant neoplasm of skin of unspecified ear and external auricular canal +C44202 Unspecified malignant neoplasm of skin of right ear and external auricular canal +C44209 Unspecified malignant neoplasm of skin of left ear and external auricular canal +C44211 Basal cell carcinoma of skin of unspecified ear and external auricular canal +C44212 Basal cell carcinoma of skin of right ear and external auricular canal +C44219 Basal cell carcinoma of skin of left ear and external auricular canal +C44221 Squamous cell carcinoma of skin of unspecified ear and external auricular canal +C44222 Squamous cell carcinoma of skin of right ear and external auricular canal +C44229 Squamous cell carcinoma of skin of left ear and external auricular canal +C44291 Other specified malignant neoplasm of skin of unspecified ear and external auricular canal +C44292 Other specified malignant neoplasm of skin of right ear and external auricular canal +C44299 Other specified malignant neoplasm of skin of left ear and external auricular canal +C44300 Unspecified malignant neoplasm of skin of unspecified part of face +C44301 Unspecified malignant neoplasm of skin of nose +C44309 Unspecified malignant neoplasm of skin of other parts of face +C44310 Basal cell carcinoma of skin of unspecified parts of face +C44311 Basal cell carcinoma of skin of nose +C44319 Basal cell carcinoma of skin of other parts of face +C44320 Squamous cell carcinoma of skin of unspecified parts of face +C44321 Squamous cell carcinoma of skin of nose +C44329 Squamous cell carcinoma of skin of other parts of face +C44390 Other specified malignant neoplasm of skin of unspecified parts of face +C44391 Other specified malignant neoplasm of skin of nose +C44399 Other specified malignant neoplasm of skin of other parts of face +C4440 Unspecified malignant neoplasm of skin of scalp and neck +C4441 Basal cell carcinoma of skin of scalp and neck +C4442 Squamous cell carcinoma of skin of scalp and neck +C4449 Other specified malignant neoplasm of skin of scalp and neck +C44500 Unspecified malignant neoplasm of anal skin +C44501 Unspecified malignant neoplasm of skin of breast +C44509 Unspecified malignant neoplasm of skin of other part of trunk +C44510 Basal cell carcinoma of anal skin +C44511 Basal cell carcinoma of skin of breast +C44519 Basal cell carcinoma of skin of other part of trunk +C44520 Squamous cell carcinoma of anal skin +C44521 Squamous cell carcinoma of skin of breast +C44529 Squamous cell carcinoma of skin of other part of trunk +C44590 Other specified malignant neoplasm of anal skin +C44591 Other specified malignant neoplasm of skin of breast +C44599 Other specified malignant neoplasm of skin of other part of trunk +C44601 Unspecified malignant neoplasm of skin of unspecified upper limb, including shoulder +C44602 Unspecified malignant neoplasm of skin of right upper limb, including shoulder +C44609 Unspecified malignant neoplasm of skin of left upper limb, including shoulder +C44611 Basal cell carcinoma of skin of unspecified upper limb, including shoulder +C44612 Basal cell carcinoma of skin of right upper limb, including shoulder +C44619 Basal cell carcinoma of skin of left upper limb, including shoulder +C44621 Squamous cell carcinoma of skin of unspecified upper limb, including shoulder +C44622 Squamous cell carcinoma of skin of right upper limb, including shoulder +C44629 Squamous cell carcinoma of skin of left upper limb, including shoulder +C44691 Other specified malignant neoplasm of skin of unspecified upper limb, including shoulder +C44692 Other specified malignant neoplasm of skin of right upper limb, including shoulder +C44699 Other specified malignant neoplasm of skin of left upper limb, including shoulder +C44701 Unspecified malignant neoplasm of skin of unspecified lower limb, including hip +C44702 Unspecified malignant neoplasm of skin of right lower limb, including hip +C44709 Unspecified malignant neoplasm of skin of left lower limb, including hip +C44711 Basal cell carcinoma of skin of unspecified lower limb, including hip +C44712 Basal cell carcinoma of skin of right lower limb, including hip +C44719 Basal cell carcinoma of skin of left lower limb, including hip +C44721 Squamous cell carcinoma of skin of unspecified lower limb, including hip +C44722 Squamous cell carcinoma of skin of right lower limb, including hip +C44729 Squamous cell carcinoma of skin of left lower limb, including hip +C44791 Other specified malignant neoplasm of skin of unspecified lower limb, including hip +C44792 Other specified malignant neoplasm of skin of right lower limb, including hip +C44799 Other specified malignant neoplasm of skin of left lower limb, including hip +C4480 Unspecified malignant neoplasm of overlapping sites of skin +C4481 Basal cell carcinoma of overlapping sites of skin +C4482 Squamous cell carcinoma of overlapping sites of skin +C4489 Other specified malignant neoplasm of overlapping sites of skin +C4490 Unspecified malignant neoplasm of skin, unspecified +C4491 Basal cell carcinoma of skin, unspecified +C4492 Squamous cell carcinoma of skin, unspecified +C4499 Other specified malignant neoplasm of skin, unspecified +C450 Mesothelioma of pleura +C451 Mesothelioma of peritoneum +C452 Mesothelioma of pericardium +C457 Mesothelioma of other sites +C459 Mesothelioma, unspecified +C460 Kaposi's sarcoma of skin +C461 Kaposi's sarcoma of soft tissue +C462 Kaposi's sarcoma of palate +C463 Kaposi's sarcoma of lymph nodes +C464 Kaposi's sarcoma of gastrointestinal sites +C4650 Kaposi's sarcoma of unspecified lung +C4651 Kaposi's sarcoma of right lung +C4652 Kaposi's sarcoma of left lung +C467 Kaposi's sarcoma of other sites +C469 Kaposi's sarcoma, unspecified +C470 Malignant neoplasm of peripheral nerves of head, face and neck +C4710 Malignant neoplasm of peripheral nerves of unspecified upper limb, including shoulder +C4711 Malignant neoplasm of peripheral nerves of right upper limb, including shoulder +C4712 Malignant neoplasm of peripheral nerves of left upper limb, including shoulder +C4720 Malignant neoplasm of peripheral nerves of unspecified lower limb, including hip +C4721 Malignant neoplasm of peripheral nerves of right lower limb, including hip +C4722 Malignant neoplasm of peripheral nerves of left lower limb, including hip +C473 Malignant neoplasm of peripheral nerves of thorax +C474 Malignant neoplasm of peripheral nerves of abdomen +C475 Malignant neoplasm of peripheral nerves of pelvis +C476 Malignant neoplasm of peripheral nerves of trunk, unspecified +C478 Malignant neoplasm of overlapping sites of peripheral nerves and autonomic nervous system +C479 Malignant neoplasm of peripheral nerves and autonomic nervous system, unspecified +C480 Malignant neoplasm of retroperitoneum +C481 Malignant neoplasm of specified parts of peritoneum +C482 Malignant neoplasm of peritoneum, unspecified +C488 Malignant neoplasm of overlapping sites of retroperitoneum and peritoneum +C490 Malignant neoplasm of connective and soft tissue of head, face and neck +C4910 Malignant neoplasm of connective and soft tissue of unspecified upper limb, including shoulder +C4911 Malignant neoplasm of connective and soft tissue of right upper limb, including shoulder +C4912 Malignant neoplasm of connective and soft tissue of left upper limb, including shoulder +C4920 Malignant neoplasm of connective and soft tissue of unspecified lower limb, including hip +C4921 Malignant neoplasm of connective and soft tissue of right lower limb, including hip +C4922 Malignant neoplasm of connective and soft tissue of left lower limb, including hip +C493 Malignant neoplasm of connective and soft tissue of thorax +C494 Malignant neoplasm of connective and soft tissue of abdomen +C495 Malignant neoplasm of connective and soft tissue of pelvis +C496 Malignant neoplasm of connective and soft tissue of trunk, unspecified +C498 Malignant neoplasm of overlapping sites of connective and soft tissue +C499 Malignant neoplasm of connective and soft tissue, unspecified +C49A0 Gastrointestinal stromal tumor, unspecified site +C49A1 Gastrointestinal stromal tumor of esophagus +C49A2 Gastrointestinal stromal tumor of stomach +C49A3 Gastrointestinal stromal tumor of small intestine +C49A4 Gastrointestinal stromal tumor of large intestine +C49A5 Gastrointestinal stromal tumor of rectum +C49A9 Gastrointestinal stromal tumor of other sites +C4A0 Merkel cell carcinoma of lip +C4A10 Merkel cell carcinoma of unspecified eyelid, including canthus +C4A11 Merkel cell carcinoma of right eyelid, including canthus +C4A111 Merkel cell carcinoma of right upper eyelid, including canthus +C4A112 Merkel cell carcinoma of right lower eyelid, including canthus +C4A12 Merkel cell carcinoma of left eyelid, including canthus +C4A121 Merkel cell carcinoma of left upper eyelid, including canthus +C4A122 Merkel cell carcinoma of left lower eyelid, including canthus +C4A20 Merkel cell carcinoma of unspecified ear and external auricular canal +C4A21 Merkel cell carcinoma of right ear and external auricular canal +C4A22 Merkel cell carcinoma of left ear and external auricular canal +C4A30 Merkel cell carcinoma of unspecified part of face +C4A31 Merkel cell carcinoma of nose +C4A39 Merkel cell carcinoma of other parts of face +C4A4 Merkel cell carcinoma of scalp and neck +C4A51 Merkel cell carcinoma of anal skin +C4A52 Merkel cell carcinoma of skin of breast +C4A59 Merkel cell carcinoma of other part of trunk +C4A60 Merkel cell carcinoma of unspecified upper limb, including shoulder +C4A61 Merkel cell carcinoma of right upper limb, including shoulder +C4A62 Merkel cell carcinoma of left upper limb, including shoulder +C4A70 Merkel cell carcinoma of unspecified lower limb, including hip +C4A71 Merkel cell carcinoma of right lower limb, including hip +C4A72 Merkel cell carcinoma of left lower limb, including hip +C4A8 Merkel cell carcinoma of overlapping sites +C4A9 Merkel cell carcinoma, unspecified +C50011 Malignant neoplasm of nipple and areola, right female breast +C50012 Malignant neoplasm of nipple and areola, left female breast +C50019 Malignant neoplasm of nipple and areola, unspecified female breast +C50021 Malignant neoplasm of nipple and areola, right male breast +C50022 Malignant neoplasm of nipple and areola, left male breast +C50029 Malignant neoplasm of nipple and areola, unspecified male breast +C50111 Malignant neoplasm of central portion of right female breast +C50112 Malignant neoplasm of central portion of left female breast +C50119 Malignant neoplasm of central portion of unspecified female breast +C50121 Malignant neoplasm of central portion of right male breast +C50122 Malignant neoplasm of central portion of left male breast +C50129 Malignant neoplasm of central portion of unspecified male breast +C50211 Malignant neoplasm of upper-inner quadrant of right female breast +C50212 Malignant neoplasm of upper-inner quadrant of left female breast +C50219 Malignant neoplasm of upper-inner quadrant of unspecified female breast +C50221 Malignant neoplasm of upper-inner quadrant of right male breast +C50222 Malignant neoplasm of upper-inner quadrant of left male breast +C50229 Malignant neoplasm of upper-inner quadrant of unspecified male breast +C50311 Malignant neoplasm of lower-inner quadrant of right female breast +C50312 Malignant neoplasm of lower-inner quadrant of left female breast +C50319 Malignant neoplasm of lower-inner quadrant of unspecified female breast +C50321 Malignant neoplasm of lower-inner quadrant of right male breast +C50322 Malignant neoplasm of lower-inner quadrant of left male breast +C50329 Malignant neoplasm of lower-inner quadrant of unspecified male breast +C50411 Malignant neoplasm of upper-outer quadrant of right female breast +C50412 Malignant neoplasm of upper-outer quadrant of left female breast +C50419 Malignant neoplasm of upper-outer quadrant of unspecified female breast +C50421 Malignant neoplasm of upper-outer quadrant of right male breast +C50422 Malignant neoplasm of upper-outer quadrant of left male breast +C50429 Malignant neoplasm of upper-outer quadrant of unspecified male breast +C50511 Malignant neoplasm of lower-outer quadrant of right female breast +C50512 Malignant neoplasm of lower-outer quadrant of left female breast +C50519 Malignant neoplasm of lower-outer quadrant of unspecified female breast +C50521 Malignant neoplasm of lower-outer quadrant of right male breast +C50522 Malignant neoplasm of lower-outer quadrant of left male breast +C50529 Malignant neoplasm of lower-outer quadrant of unspecified male breast +C50611 Malignant neoplasm of axillary tail of right female breast +C50612 Malignant neoplasm of axillary tail of left female breast +C50619 Malignant neoplasm of axillary tail of unspecified female breast +C50621 Malignant neoplasm of axillary tail of right male breast +C50622 Malignant neoplasm of axillary tail of left male breast +C50629 Malignant neoplasm of axillary tail of unspecified male breast +C50811 Malignant neoplasm of overlapping sites of right female breast +C50812 Malignant neoplasm of overlapping sites of left female breast +C50819 Malignant neoplasm of overlapping sites of unspecified female breast +C50821 Malignant neoplasm of overlapping sites of right male breast +C50822 Malignant neoplasm of overlapping sites of left male breast +C50829 Malignant neoplasm of overlapping sites of unspecified male breast +C50911 Malignant neoplasm of unspecified site of right female breast +C50912 Malignant neoplasm of unspecified site of left female breast +C50919 Malignant neoplasm of unspecified site of unspecified female breast +C50921 Malignant neoplasm of unspecified site of right male breast +C50922 Malignant neoplasm of unspecified site of left male breast +C50929 Malignant neoplasm of unspecified site of unspecified male breast +C510 Malignant neoplasm of labium majus +C511 Malignant neoplasm of labium minus +C512 Malignant neoplasm of clitoris +C518 Malignant neoplasm of overlapping sites of vulva +C519 Malignant neoplasm of vulva, unspecified +C52 Malignant neoplasm of vagina +C530 Malignant neoplasm of endocervix +C531 Malignant neoplasm of exocervix +C538 Malignant neoplasm of overlapping sites of cervix uteri +C539 Malignant neoplasm of cervix uteri, unspecified +C540 Malignant neoplasm of isthmus uteri +C541 Malignant neoplasm of endometrium +C542 Malignant neoplasm of myometrium +C543 Malignant neoplasm of fundus uteri +C548 Malignant neoplasm of overlapping sites of corpus uteri +C549 Malignant neoplasm of corpus uteri, unspecified +C55 Malignant neoplasm of uterus, part unspecified +C561 Malignant neoplasm of right ovary +C562 Malignant neoplasm of left ovary +C569 Malignant neoplasm of unspecified ovary +C5700 Malignant neoplasm of unspecified fallopian tube +C5701 Malignant neoplasm of right fallopian tube +C5702 Malignant neoplasm of left fallopian tube +C5710 Malignant neoplasm of unspecified broad ligament +C5711 Malignant neoplasm of right broad ligament +C5712 Malignant neoplasm of left broad ligament +C5720 Malignant neoplasm of unspecified round ligament +C5721 Malignant neoplasm of right round ligament +C5722 Malignant neoplasm of left round ligament +C573 Malignant neoplasm of parametrium +C574 Malignant neoplasm of uterine adnexa, unspecified +C577 Malignant neoplasm of other specified female genital organs +C578 Malignant neoplasm of overlapping sites of female genital organs +C579 Malignant neoplasm of female genital organ, unspecified +C58 Malignant neoplasm of placenta +C600 Malignant neoplasm of prepuce +C601 Malignant neoplasm of glans penis +C602 Malignant neoplasm of body of penis +C608 Malignant neoplasm of overlapping sites of penis +C609 Malignant neoplasm of penis, unspecified +C61 Malignant neoplasm of prostate +C6200 Malignant neoplasm of unspecified undescended testis +C6201 Malignant neoplasm of undescended right testis +C6202 Malignant neoplasm of undescended left testis +C6210 Malignant neoplasm of unspecified descended testis +C6211 Malignant neoplasm of descended right testis +C6212 Malignant neoplasm of descended left testis +C6290 Malignant neoplasm of unspecified testis, unspecified whether descended or undescended +C6291 Malignant neoplasm of right testis, unspecified whether descended or undescended +C6292 Malignant neoplasm of left testis, unspecified whether descended or undescended +C6300 Malignant neoplasm of unspecified epididymis +C6301 Malignant neoplasm of right epididymis +C6302 Malignant neoplasm of left epididymis +C6310 Malignant neoplasm of unspecified spermatic cord +C6311 Malignant neoplasm of right spermatic cord +C6312 Malignant neoplasm of left spermatic cord +C632 Malignant neoplasm of scrotum +C637 Malignant neoplasm of other specified male genital organs +C638 Malignant neoplasm of overlapping sites of male genital organs +C639 Malignant neoplasm of male genital organ, unspecified +C641 Malignant neoplasm of right kidney, except renal pelvis +C642 Malignant neoplasm of left kidney, except renal pelvis +C649 Malignant neoplasm of unspecified kidney, except renal pelvis +C651 Malignant neoplasm of right renal pelvis +C652 Malignant neoplasm of left renal pelvis +C659 Malignant neoplasm of unspecified renal pelvis +C661 Malignant neoplasm of right ureter +C662 Malignant neoplasm of left ureter +C669 Malignant neoplasm of unspecified ureter +C670 Malignant neoplasm of trigone of bladder +C671 Malignant neoplasm of dome of bladder +C672 Malignant neoplasm of lateral wall of bladder +C673 Malignant neoplasm of anterior wall of bladder +C674 Malignant neoplasm of posterior wall of bladder +C675 Malignant neoplasm of bladder neck +C676 Malignant neoplasm of ureteric orifice +C677 Malignant neoplasm of urachus +C678 Malignant neoplasm of overlapping sites of bladder +C679 Malignant neoplasm of bladder, unspecified +C680 Malignant neoplasm of urethra +C681 Malignant neoplasm of paraurethral glands +C688 Malignant neoplasm of overlapping sites of urinary organs +C689 Malignant neoplasm of urinary organ, unspecified +C6900 Malignant neoplasm of unspecified conjunctiva +C6901 Malignant neoplasm of right conjunctiva +C6902 Malignant neoplasm of left conjunctiva +C6910 Malignant neoplasm of unspecified cornea +C6911 Malignant neoplasm of right cornea +C6912 Malignant neoplasm of left cornea +C6920 Malignant neoplasm of unspecified retina +C6921 Malignant neoplasm of right retina +C6922 Malignant neoplasm of left retina +C6930 Malignant neoplasm of unspecified choroid +C6931 Malignant neoplasm of right choroid +C6932 Malignant neoplasm of left choroid +C6940 Malignant neoplasm of unspecified ciliary body +C6941 Malignant neoplasm of right ciliary body +C6942 Malignant neoplasm of left ciliary body +C6950 Malignant neoplasm of unspecified lacrimal gland and duct +C6951 Malignant neoplasm of right lacrimal gland and duct +C6952 Malignant neoplasm of left lacrimal gland and duct +C6960 Malignant neoplasm of unspecified orbit +C6961 Malignant neoplasm of right orbit +C6962 Malignant neoplasm of left orbit +C6980 Malignant neoplasm of overlapping sites of unspecified eye and adnexa +C6981 Malignant neoplasm of overlapping sites of right eye and adnexa +C6982 Malignant neoplasm of overlapping sites of left eye and adnexa +C6990 Malignant neoplasm of unspecified site of unspecified eye +C6991 Malignant neoplasm of unspecified site of right eye +C6992 Malignant neoplasm of unspecified site of left eye +C700 Malignant neoplasm of cerebral meninges +C701 Malignant neoplasm of spinal meninges +C709 Malignant neoplasm of meninges, unspecified +C710 Malignant neoplasm of cerebrum, except lobes and ventricles +C711 Malignant neoplasm of frontal lobe +C712 Malignant neoplasm of temporal lobe +C713 Malignant neoplasm of parietal lobe +C714 Malignant neoplasm of occipital lobe +C715 Malignant neoplasm of cerebral ventricle +C716 Malignant neoplasm of cerebellum +C717 Malignant neoplasm of brain stem +C718 Malignant neoplasm of overlapping sites of brain +C719 Malignant neoplasm of brain, unspecified +C720 Malignant neoplasm of spinal cord +C721 Malignant neoplasm of cauda equina +C7220 Malignant neoplasm of unspecified olfactory nerve +C7221 Malignant neoplasm of right olfactory nerve +C7222 Malignant neoplasm of left olfactory nerve +C7230 Malignant neoplasm of unspecified optic nerve +C7231 Malignant neoplasm of right optic nerve +C7232 Malignant neoplasm of left optic nerve +C7240 Malignant neoplasm of unspecified acoustic nerve +C7241 Malignant neoplasm of right acoustic nerve +C7242 Malignant neoplasm of left acoustic nerve +C7250 Malignant neoplasm of unspecified cranial nerve +C7259 Malignant neoplasm of other cranial nerves +C729 Malignant neoplasm of central nervous system, unspecified +C73 Malignant neoplasm of thyroid gland +C7400 Malignant neoplasm of cortex of unspecified adrenal gland +C7401 Malignant neoplasm of cortex of right adrenal gland +C7402 Malignant neoplasm of cortex of left adrenal gland +C7410 Malignant neoplasm of medulla of unspecified adrenal gland +C7411 Malignant neoplasm of medulla of right adrenal gland +C7412 Malignant neoplasm of medulla of left adrenal gland +C7490 Malignant neoplasm of unspecified part of unspecified adrenal gland +C7491 Malignant neoplasm of unspecified part of right adrenal gland +C7492 Malignant neoplasm of unspecified part of left adrenal gland +C750 Malignant neoplasm of parathyroid gland +C751 Malignant neoplasm of pituitary gland +C752 Malignant neoplasm of craniopharyngeal duct +C753 Malignant neoplasm of pineal gland +C754 Malignant neoplasm of carotid body +C755 Malignant neoplasm of aortic body and other paraganglia +C758 Malignant neoplasm with pluriglandular involvement, unspecified +C759 Malignant neoplasm of endocrine gland, unspecified +C760 Malignant neoplasm of head, face and neck +C761 Malignant neoplasm of thorax +C762 Malignant neoplasm of abdomen +C763 Malignant neoplasm of pelvis +C7640 Malignant neoplasm of unspecified upper limb +C7641 Malignant neoplasm of right upper limb +C7642 Malignant neoplasm of left upper limb +C7650 Malignant neoplasm of unspecified lower limb +C7651 Malignant neoplasm of right lower limb +C7652 Malignant neoplasm of left lower limb +C768 Malignant neoplasm of other specified ill-defined sites +C770 Secondary and unspecified malignant neoplasm of lymph nodes of head, face and neck +C771 Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes +C772 Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes +C773 Secondary and unspecified malignant neoplasm of axilla and upper limb lymph nodes +C774 Secondary and unspecified malignant neoplasm of inguinal and lower limb lymph nodes +C775 Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes +C778 Secondary and unspecified malignant neoplasm of lymph nodes of multiple regions +C779 Secondary and unspecified malignant neoplasm of lymph node, unspecified +C7800 Secondary malignant neoplasm of unspecified lung +C7801 Secondary malignant neoplasm of right lung +C7802 Secondary malignant neoplasm of left lung +C781 Secondary malignant neoplasm of mediastinum +C782 Secondary malignant neoplasm of pleura +C7830 Secondary malignant neoplasm of unspecified respiratory organ +C7839 Secondary malignant neoplasm of other respiratory organs +C784 Secondary malignant neoplasm of small intestine +C785 Secondary malignant neoplasm of large intestine and rectum +C786 Secondary malignant neoplasm of retroperitoneum and peritoneum +C787 Secondary malignant neoplasm of liver and intrahepatic bile duct +C7880 Secondary malignant neoplasm of unspecified digestive organ +C7889 Secondary malignant neoplasm of other digestive organs +C7900 Secondary malignant neoplasm of unspecified kidney and renal pelvis +C7901 Secondary malignant neoplasm of right kidney and renal pelvis +C7902 Secondary malignant neoplasm of left kidney and renal pelvis +C7910 Secondary malignant neoplasm of unspecified urinary organs +C7911 Secondary malignant neoplasm of bladder +C7919 Secondary malignant neoplasm of other urinary organs +C792 Secondary malignant neoplasm of skin +C7931 Secondary malignant neoplasm of brain +C7932 Secondary malignant neoplasm of cerebral meninges +C7940 Secondary malignant neoplasm of unspecified part of nervous system +C7949 Secondary malignant neoplasm of other parts of nervous system +C7951 Secondary malignant neoplasm of bone +C7952 Secondary malignant neoplasm of bone marrow +C7960 Secondary malignant neoplasm of unspecified ovary +C7961 Secondary malignant neoplasm of right ovary +C7962 Secondary malignant neoplasm of left ovary +C7970 Secondary malignant neoplasm of unspecified adrenal gland +C7971 Secondary malignant neoplasm of right adrenal gland +C7972 Secondary malignant neoplasm of left adrenal gland +C7981 Secondary malignant neoplasm of breast +C7982 Secondary malignant neoplasm of genital organs +C7989 Secondary malignant neoplasm of other specified sites +C799 Secondary malignant neoplasm of unspecified site +C7A00 Malignant carcinoid tumor of unspecified site +C7A010 Malignant carcinoid tumor of the duodenum +C7A011 Malignant carcinoid tumor of the jejunum +C7A012 Malignant carcinoid tumor of the ileum +C7A019 Malignant carcinoid tumor of the small intestine, unspecified portion +C7A020 Malignant carcinoid tumor of the appendix +C7A021 Malignant carcinoid tumor of the cecum +C7A022 Malignant carcinoid tumor of the ascending colon +C7A023 Malignant carcinoid tumor of the transverse colon +C7A024 Malignant carcinoid tumor of the descending colon +C7A025 Malignant carcinoid tumor of the sigmoid colon +C7A026 Malignant carcinoid tumor of the rectum +C7A029 Malignant carcinoid tumor of the large intestine, unspecified portion +C7A090 Malignant carcinoid tumor of the bronchus and lung +C7A091 Malignant carcinoid tumor of the thymus +C7A092 Malignant carcinoid tumor of the stomach +C7A093 Malignant carcinoid tumor of the kidney +C7A094 Malignant carcinoid tumor of the foregut, unspecified +C7A095 Malignant carcinoid tumor of the midgut, unspecified +C7A096 Malignant carcinoid tumor of the hindgut, unspecified +C7A098 Malignant carcinoid tumors of other sites +C7A1 Malignant poorly differentiated neuroendocrine tumors +C7A8 Other malignant neuroendocrine tumors +C7B00 Secondary carcinoid tumors, unspecified site +C7B01 Secondary carcinoid tumors of distant lymph nodes +C7B02 Secondary carcinoid tumors of liver +C7B03 Secondary carcinoid tumors of bone +C7B04 Secondary carcinoid tumors of peritoneum +C7B09 Secondary carcinoid tumors of other sites +C7B1 Secondary Merkel cell carcinoma +C7B8 Other secondary neuroendocrine tumors +C800 Disseminated malignant neoplasm, unspecified +C801 Malignant (primary) neoplasm, unspecified +C802 Malignant neoplasm associated with transplanted organ +C8100 Nodular lymphocyte predominant Hodgkin lymphoma, unspecified site +C8101 Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of head, face, and neck +C8102 Nodular lymphocyte predominant Hodgkin lymphoma, intrathoracic lymph nodes +C8103 Nodular lymphocyte predominant Hodgkin lymphoma, intra-abdominal lymph nodes +C8104 Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of axilla and upper limb +C8105 Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C8106 Nodular lymphocyte predominant Hodgkin lymphoma, intrapelvic lymph nodes +C8107 Nodular lymphocyte predominant Hodgkin lymphoma, spleen +C8108 Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of multiple sites +C8109 Nodular lymphocyte predominant Hodgkin lymphoma, extranodal and solid organ sites +C8110 Nodular sclerosis Hodgkin lymphoma, unspecified site +C8111 Nodular sclerosis Hodgkin lymphoma, lymph nodes of head, face, and neck +C8112 Nodular sclerosis Hodgkin lymphoma, intrathoracic lymph nodes +C8113 Nodular sclerosis Hodgkin lymphoma, intra-abdominal lymph nodes +C8114 Nodular sclerosis Hodgkin lymphoma, lymph nodes of axilla and upper limb +C8115 Nodular sclerosis Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C8116 Nodular sclerosis Hodgkin lymphoma, intrapelvic lymph nodes +C8117 Nodular sclerosis Hodgkin lymphoma, spleen +C8118 Nodular sclerosis Hodgkin lymphoma, lymph nodes of multiple sites +C8119 Nodular sclerosis Hodgkin lymphoma, extranodal and solid organ sites +C8120 Mixed cellularity Hodgkin lymphoma, unspecified site +C8121 Mixed cellularity Hodgkin lymphoma, lymph nodes of head, face, and neck +C8122 Mixed cellularity Hodgkin lymphoma, intrathoracic lymph nodes +C8123 Mixed cellularity Hodgkin lymphoma, intra-abdominal lymph nodes +C8124 Mixed cellularity Hodgkin lymphoma, lymph nodes of axilla and upper limb +C8125 Mixed cellularity Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C8126 Mixed cellularity Hodgkin lymphoma, intrapelvic lymph nodes +C8127 Mixed cellularity Hodgkin lymphoma, spleen +C8128 Mixed cellularity Hodgkin lymphoma, lymph nodes of multiple sites +C8129 Mixed cellularity Hodgkin lymphoma, extranodal and solid organ sites +C8130 Lymphocyte depleted Hodgkin lymphoma, unspecified site +C8131 Lymphocyte depleted Hodgkin lymphoma, lymph nodes of head, face, and neck +C8132 Lymphocyte depleted Hodgkin lymphoma, intrathoracic lymph nodes +C8133 Lymphocyte depleted Hodgkin lymphoma, intra-abdominal lymph nodes +C8134 Lymphocyte depleted Hodgkin lymphoma, lymph nodes of axilla and upper limb +C8135 Lymphocyte depleted Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C8136 Lymphocyte depleted Hodgkin lymphoma, intrapelvic lymph nodes +C8137 Lymphocyte depleted Hodgkin lymphoma, spleen +C8138 Lymphocyte depleted Hodgkin lymphoma, lymph nodes of multiple sites +C8139 Lymphocyte depleted Hodgkin lymphoma, extranodal and solid organ sites +C8140 Lymphocyte-rich Hodgkin lymphoma, unspecified site +C8141 Lymphocyte-rich Hodgkin lymphoma, lymph nodes of head, face, and neck +C8142 Lymphocyte-rich Hodgkin lymphoma, intrathoracic lymph nodes +C8143 Lymphocyte-rich Hodgkin lymphoma, intra-abdominal lymph nodes +C8144 Lymphocyte-rich Hodgkin lymphoma, lymph nodes of axilla and upper limb +C8145 Lymphocyte-rich Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C8146 Lymphocyte-rich Hodgkin lymphoma, intrapelvic lymph nodes +C8147 Lymphocyte-rich Hodgkin lymphoma, spleen +C8148 Lymphocyte-rich Hodgkin lymphoma, lymph nodes of multiple sites +C8149 Lymphocyte-rich Hodgkin lymphoma, extranodal and solid organ sites +C8170 Other Hodgkin lymphoma, unspecified site +C8171 Other Hodgkin lymphoma, lymph nodes of head, face, and neck +C8172 Other Hodgkin lymphoma, intrathoracic lymph nodes +C8173 Other Hodgkin lymphoma, intra-abdominal lymph nodes +C8174 Other Hodgkin lymphoma, lymph nodes of axilla and upper limb +C8175 Other Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C8176 Other Hodgkin lymphoma, intrapelvic lymph nodes +C8177 Other Hodgkin lymphoma, spleen +C8178 Other Hodgkin lymphoma, lymph nodes of multiple sites +C8179 Other Hodgkin lymphoma, extranodal and solid organ sites +C8190 Hodgkin lymphoma, unspecified, unspecified site +C8191 Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck +C8192 Hodgkin lymphoma, unspecified, intrathoracic lymph nodes +C8193 Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes +C8194 Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb +C8195 Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb +C8196 Hodgkin lymphoma, unspecified, intrapelvic lymph nodes +C8197 Hodgkin lymphoma, unspecified, spleen +C8198 Hodgkin lymphoma, unspecified, lymph nodes of multiple sites +C8199 Hodgkin lymphoma, unspecified, extranodal and solid organ sites +C8200 Follicular lymphoma grade I, unspecified site +C8201 Follicular lymphoma grade I, lymph nodes of head, face, and neck +C8202 Follicular lymphoma grade I, intrathoracic lymph nodes +C8203 Follicular lymphoma grade I, intra-abdominal lymph nodes +C8204 Follicular lymphoma grade I, lymph nodes of axilla and upper limb +C8205 Follicular lymphoma grade I, lymph nodes of inguinal region and lower limb +C8206 Follicular lymphoma grade I, intrapelvic lymph nodes +C8207 Follicular lymphoma grade I, spleen +C8208 Follicular lymphoma grade I, lymph nodes of multiple sites +C8209 Follicular lymphoma grade I, extranodal and solid organ sites +C8210 Follicular lymphoma grade II, unspecified site +C8211 Follicular lymphoma grade II, lymph nodes of head, face, and neck +C8212 Follicular lymphoma grade II, intrathoracic lymph nodes +C8213 Follicular lymphoma grade II, intra-abdominal lymph nodes +C8214 Follicular lymphoma grade II, lymph nodes of axilla and upper limb +C8215 Follicular lymphoma grade II, lymph nodes of inguinal region and lower limb +C8216 Follicular lymphoma grade II, intrapelvic lymph nodes +C8217 Follicular lymphoma grade II, spleen +C8218 Follicular lymphoma grade II, lymph nodes of multiple sites +C8219 Follicular lymphoma grade II, extranodal and solid organ sites +C8220 Follicular lymphoma grade III, unspecified, unspecified site +C8221 Follicular lymphoma grade III, unspecified, lymph nodes of head, face, and neck +C8222 Follicular lymphoma grade III, unspecified, intrathoracic lymph nodes +C8223 Follicular lymphoma grade III, unspecified, intra-abdominal lymph nodes +C8224 Follicular lymphoma grade III, unspecified, lymph nodes of axilla and upper limb +C8225 Follicular lymphoma grade III, unspecified, lymph nodes of inguinal region and lower limb +C8226 Follicular lymphoma grade III, unspecified, intrapelvic lymph nodes +C8227 Follicular lymphoma grade III, unspecified, spleen +C8228 Follicular lymphoma grade III, unspecified, lymph nodes of multiple sites +C8229 Follicular lymphoma grade III, unspecified, extranodal and solid organ sites +C8230 Follicular lymphoma grade IIIa, unspecified site +C8231 Follicular lymphoma grade IIIa, lymph nodes of head, face, and neck +C8232 Follicular lymphoma grade IIIa, intrathoracic lymph nodes +C8233 Follicular lymphoma grade IIIa, intra-abdominal lymph nodes +C8234 Follicular lymphoma grade IIIa, lymph nodes of axilla and upper limb +C8235 Follicular lymphoma grade IIIa, lymph nodes of inguinal region and lower limb +C8236 Follicular lymphoma grade IIIa, intrapelvic lymph nodes +C8237 Follicular lymphoma grade IIIa, spleen +C8238 Follicular lymphoma grade IIIa, lymph nodes of multiple sites +C8239 Follicular lymphoma grade IIIa, extranodal and solid organ sites +C8240 Follicular lymphoma grade IIIb, unspecified site +C8241 Follicular lymphoma grade IIIb, lymph nodes of head, face, and neck +C8242 Follicular lymphoma grade IIIb, intrathoracic lymph nodes +C8243 Follicular lymphoma grade IIIb, intra-abdominal lymph nodes +C8244 Follicular lymphoma grade IIIb, lymph nodes of axilla and upper limb +C8245 Follicular lymphoma grade IIIb, lymph nodes of inguinal region and lower limb +C8246 Follicular lymphoma grade IIIb, intrapelvic lymph nodes +C8247 Follicular lymphoma grade IIIb, spleen +C8248 Follicular lymphoma grade IIIb, lymph nodes of multiple sites +C8249 Follicular lymphoma grade IIIb, extranodal and solid organ sites +C8250 Diffuse follicle center lymphoma, unspecified site +C8251 Diffuse follicle center lymphoma, lymph nodes of head, face, and neck +C8252 Diffuse follicle center lymphoma, intrathoracic lymph nodes +C8253 Diffuse follicle center lymphoma, intra-abdominal lymph nodes +C8254 Diffuse follicle center lymphoma, lymph nodes of axilla and upper limb +C8255 Diffuse follicle center lymphoma, lymph nodes of inguinal region and lower limb +C8256 Diffuse follicle center lymphoma, intrapelvic lymph nodes +C8257 Diffuse follicle center lymphoma, spleen +C8258 Diffuse follicle center lymphoma, lymph nodes of multiple sites +C8259 Diffuse follicle center lymphoma, extranodal and solid organ sites +C8260 Cutaneous follicle center lymphoma, unspecified site +C8261 Cutaneous follicle center lymphoma, lymph nodes of head, face, and neck +C8262 Cutaneous follicle center lymphoma, intrathoracic lymph nodes +C8263 Cutaneous follicle center lymphoma, intra-abdominal lymph nodes +C8264 Cutaneous follicle center lymphoma, lymph nodes of axilla and upper limb +C8265 Cutaneous follicle center lymphoma, lymph nodes of inguinal region and lower limb +C8266 Cutaneous follicle center lymphoma, intrapelvic lymph nodes +C8267 Cutaneous follicle center lymphoma, spleen +C8268 Cutaneous follicle center lymphoma, lymph nodes of multiple sites +C8269 Cutaneous follicle center lymphoma, extranodal and solid organ sites +C8280 Other types of follicular lymphoma, unspecified site +C8281 Other types of follicular lymphoma, lymph nodes of head, face, and neck +C8282 Other types of follicular lymphoma, intrathoracic lymph nodes +C8283 Other types of follicular lymphoma, intra-abdominal lymph nodes +C8284 Other types of follicular lymphoma, lymph nodes of axilla and upper limb +C8285 Other types of follicular lymphoma, lymph nodes of inguinal region and lower limb +C8286 Other types of follicular lymphoma, intrapelvic lymph nodes +C8287 Other types of follicular lymphoma, spleen +C8288 Other types of follicular lymphoma, lymph nodes of multiple sites +C8289 Other types of follicular lymphoma, extranodal and solid organ sites +C8290 Follicular lymphoma, unspecified, unspecified site +C8291 Follicular lymphoma, unspecified, lymph nodes of head, face, and neck +C8292 Follicular lymphoma, unspecified, intrathoracic lymph nodes +C8293 Follicular lymphoma, unspecified, intra-abdominal lymph nodes +C8294 Follicular lymphoma, unspecified, lymph nodes of axilla and upper limb +C8295 Follicular lymphoma, unspecified, lymph nodes of inguinal region and lower limb +C8296 Follicular lymphoma, unspecified, intrapelvic lymph nodes +C8297 Follicular lymphoma, unspecified, spleen +C8298 Follicular lymphoma, unspecified, lymph nodes of multiple sites +C8299 Follicular lymphoma, unspecified, extranodal and solid organ sites +C8300 Small cell B-cell lymphoma, unspecified site +C8301 Small cell B-cell lymphoma, lymph nodes of head, face, and neck +C8302 Small cell B-cell lymphoma, intrathoracic lymph nodes +C8303 Small cell B-cell lymphoma, intra-abdominal lymph nodes +C8304 Small cell B-cell lymphoma, lymph nodes of axilla and upper limb +C8305 Small cell B-cell lymphoma, lymph nodes of inguinal region and lower limb +C8306 Small cell B-cell lymphoma, intrapelvic lymph nodes +C8307 Small cell B-cell lymphoma, spleen +C8308 Small cell B-cell lymphoma, lymph nodes of multiple sites +C8309 Small cell B-cell lymphoma, extranodal and solid organ sites +C8310 Mantle cell lymphoma, unspecified site +C8311 Mantle cell lymphoma, lymph nodes of head, face, and neck +C8312 Mantle cell lymphoma, intrathoracic lymph nodes +C8313 Mantle cell lymphoma, intra-abdominal lymph nodes +C8314 Mantle cell lymphoma, lymph nodes of axilla and upper limb +C8315 Mantle cell lymphoma, lymph nodes of inguinal region and lower limb +C8316 Mantle cell lymphoma, intrapelvic lymph nodes +C8317 Mantle cell lymphoma, spleen +C8318 Mantle cell lymphoma, lymph nodes of multiple sites +C8319 Mantle cell lymphoma, extranodal and solid organ sites +C8330 Diffuse large B-cell lymphoma, unspecified site +C8331 Diffuse large B-cell lymphoma, lymph nodes of head, face, and neck +C8332 Diffuse large B-cell lymphoma, intrathoracic lymph nodes +C8333 Diffuse large B-cell lymphoma, intra-abdominal lymph nodes +C8334 Diffuse large B-cell lymphoma, lymph nodes of axilla and upper limb +C8335 Diffuse large B-cell lymphoma, lymph nodes of inguinal region and lower limb +C8336 Diffuse large B-cell lymphoma, intrapelvic lymph nodes +C8337 Diffuse large B-cell lymphoma, spleen +C8338 Diffuse large B-cell lymphoma, lymph nodes of multiple sites +C8339 Diffuse large B-cell lymphoma, extranodal and solid organ sites +C8350 Lymphoblastic (diffuse) lymphoma, unspecified site +C8351 Lymphoblastic (diffuse) lymphoma, lymph nodes of head, face, and neck +C8352 Lymphoblastic (diffuse) lymphoma, intrathoracic lymph nodes +C8353 Lymphoblastic (diffuse) lymphoma, intra-abdominal lymph nodes +C8354 Lymphoblastic (diffuse) lymphoma, lymph nodes of axilla and upper limb +C8355 Lymphoblastic (diffuse) lymphoma, lymph nodes of inguinal region and lower limb +C8356 Lymphoblastic (diffuse) lymphoma, intrapelvic lymph nodes +C8357 Lymphoblastic (diffuse) lymphoma, spleen +C8358 Lymphoblastic (diffuse) lymphoma, lymph nodes of multiple sites +C8359 Lymphoblastic (diffuse) lymphoma, extranodal and solid organ sites +C8370 Burkitt lymphoma, unspecified site +C8371 Burkitt lymphoma, lymph nodes of head, face, and neck +C8372 Burkitt lymphoma, intrathoracic lymph nodes +C8373 Burkitt lymphoma, intra-abdominal lymph nodes +C8374 Burkitt lymphoma, lymph nodes of axilla and upper limb +C8375 Burkitt lymphoma, lymph nodes of inguinal region and lower limb +C8376 Burkitt lymphoma, intrapelvic lymph nodes +C8377 Burkitt lymphoma, spleen +C8378 Burkitt lymphoma, lymph nodes of multiple sites +C8379 Burkitt lymphoma, extranodal and solid organ sites +C8380 Other non-follicular lymphoma, unspecified site +C8381 Other non-follicular lymphoma, lymph nodes of head, face, and neck +C8382 Other non-follicular lymphoma, intrathoracic lymph nodes +C8383 Other non-follicular lymphoma, intra-abdominal lymph nodes +C8384 Other non-follicular lymphoma, lymph nodes of axilla and upper limb +C8385 Other non-follicular lymphoma, lymph nodes of inguinal region and lower limb +C8386 Other non-follicular lymphoma, intrapelvic lymph nodes +C8387 Other non-follicular lymphoma, spleen +C8388 Other non-follicular lymphoma, lymph nodes of multiple sites +C8389 Other non-follicular lymphoma, extranodal and solid organ sites +C8390 Non-follicular (diffuse) lymphoma, unspecified, unspecified site +C8391 Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of head, face, and neck +C8392 Non-follicular (diffuse) lymphoma, unspecified, intrathoracic lymph nodes +C8393 Non-follicular (diffuse) lymphoma, unspecified, intra-abdominal lymph nodes +C8394 Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of axilla and upper limb +C8395 Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of inguinal region and lower limb +C8396 Non-follicular (diffuse) lymphoma, unspecified, intrapelvic lymph nodes +C8397 Non-follicular (diffuse) lymphoma, unspecified, spleen +C8398 Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of multiple sites +C8399 Non-follicular (diffuse) lymphoma, unspecified, extranodal and solid organ sites +C8400 Mycosis fungoides, unspecified site +C8401 Mycosis fungoides, lymph nodes of head, face, and neck +C8402 Mycosis fungoides, intrathoracic lymph nodes +C8403 Mycosis fungoides, intra-abdominal lymph nodes +C8404 Mycosis fungoides, lymph nodes of axilla and upper limb +C8405 Mycosis fungoides, lymph nodes of inguinal region and lower limb +C8406 Mycosis fungoides, intrapelvic lymph nodes +C8407 Mycosis fungoides, spleen +C8408 Mycosis fungoides, lymph nodes of multiple sites +C8409 Mycosis fungoides, extranodal and solid organ sites +C8410 Sezary disease, unspecified site +C8411 Sezary disease, lymph nodes of head, face, and neck +C8412 Sezary disease, intrathoracic lymph nodes +C8413 Sezary disease, intra-abdominal lymph nodes +C8414 Sezary disease, lymph nodes of axilla and upper limb +C8415 Sezary disease, lymph nodes of inguinal region and lower limb +C8416 Sezary disease, intrapelvic lymph nodes +C8417 Sezary disease, spleen +C8418 Sezary disease, lymph nodes of multiple sites +C8419 Sezary disease, extranodal and solid organ sites +C8440 Peripheral T-cell lymphoma, not classified, unspecified site +C8441 Peripheral T-cell lymphoma, not classified, lymph nodes of head, face, and neck +C8442 Peripheral T-cell lymphoma, not classified, intrathoracic lymph nodes +C8443 Peripheral T-cell lymphoma, not classified, intra-abdominal lymph nodes +C8444 Peripheral T-cell lymphoma, not classified, lymph nodes of axilla and upper limb +C8445 Peripheral T-cell lymphoma, not classified, lymph nodes of inguinal region and lower limb +C8446 Peripheral T-cell lymphoma, not classified, intrapelvic lymph nodes +C8447 Peripheral T-cell lymphoma, not classified, spleen +C8448 Peripheral T-cell lymphoma, not classified, lymph nodes of multiple sites +C8449 Peripheral T-cell lymphoma, not classified, extranodal and solid organ sites +C8460 Anaplastic large cell lymphoma, ALK-positive, unspecified site +C8461 Anaplastic large cell lymphoma, ALK-positive, lymph nodes of head, face, and neck +C8462 Anaplastic large cell lymphoma, ALK-positive, intrathoracic lymph nodes +C8463 Anaplastic large cell lymphoma, ALK-positive, intra-abdominal lymph nodes +C8464 Anaplastic large cell lymphoma, ALK-positive, lymph nodes of axilla and upper limb +C8465 Anaplastic large cell lymphoma, ALK-positive, lymph nodes of inguinal region and lower limb +C8466 Anaplastic large cell lymphoma, ALK-positive, intrapelvic lymph nodes +C8467 Anaplastic large cell lymphoma, ALK-positive, spleen +C8468 Anaplastic large cell lymphoma, ALK-positive, lymph nodes of multiple sites +C8469 Anaplastic large cell lymphoma, ALK-positive, extranodal and solid organ sites +C8470 Anaplastic large cell lymphoma, ALK-negative, unspecified site +C8471 Anaplastic large cell lymphoma, ALK-negative, lymph nodes of head, face, and neck +C8472 Anaplastic large cell lymphoma, ALK-negative, intrathoracic lymph nodes +C8473 Anaplastic large cell lymphoma, ALK-negative, intra-abdominal lymph nodes +C8474 Anaplastic large cell lymphoma, ALK-negative, lymph nodes of axilla and upper limb +C8475 Anaplastic large cell lymphoma, ALK-negative, lymph nodes of inguinal region and lower limb +C8476 Anaplastic large cell lymphoma, ALK-negative, intrapelvic lymph nodes +C8477 Anaplastic large cell lymphoma, ALK-negative, spleen +C8478 Anaplastic large cell lymphoma, ALK-negative, lymph nodes of multiple sites +C8479 Anaplastic large cell lymphoma, ALK-negative, extranodal and solid organ sites +C8490 Mature T/NK-cell lymphomas, unspecified, unspecified site +C8491 Mature T/NK-cell lymphomas, unspecified, lymph nodes of head, face, and neck +C8492 Mature T/NK-cell lymphomas, unspecified, intrathoracic lymph nodes +C8493 Mature T/NK-cell lymphomas, unspecified, intra-abdominal lymph nodes +C8494 Mature T/NK-cell lymphomas, unspecified, lymph nodes of axilla and upper limb +C8495 Mature T/NK-cell lymphomas, unspecified, lymph nodes of inguinal region and lower limb +C8496 Mature T/NK-cell lymphomas, unspecified, intrapelvic lymph nodes +C8497 Mature T/NK-cell lymphomas, unspecified, spleen +C8498 Mature T/NK-cell lymphomas, unspecified, lymph nodes of multiple sites +C8499 Mature T/NK-cell lymphomas, unspecified, extranodal and solid organ sites +C84A0 Cutaneous T-cell lymphoma, unspecified, unspecified site +C84A1 Cutaneous T-cell lymphoma, unspecified lymph nodes of head, face, and neck +C84A2 Cutaneous T-cell lymphoma, unspecified, intrathoracic lymph nodes +C84A3 Cutaneous T-cell lymphoma, unspecified, intra-abdominal lymph nodes +C84A4 Cutaneous T-cell lymphoma, unspecified, lymph nodes of axilla and upper limb +C84A5 Cutaneous T-cell lymphoma, unspecified, lymph nodes of inguinal region and lower limb +C84A6 Cutaneous T-cell lymphoma, unspecified, intrapelvic lymph nodes +C84A7 Cutaneous T-cell lymphoma, unspecified, spleen +C84A8 Cutaneous T-cell lymphoma, unspecified, lymph nodes of multiple sites +C84A9 Cutaneous T-cell lymphoma, unspecified, extranodal and solid organ sites +C84Z0 Other mature T/NK-cell lymphomas, unspecified site +C84Z1 Other mature T/NK-cell lymphomas, lymph nodes of head, face, and neck +C84Z2 Other mature T/NK-cell lymphomas, intrathoracic lymph nodes +C84Z3 Other mature T/NK-cell lymphomas, intra-abdominal lymph nodes +C84Z4 Other mature T/NK-cell lymphomas, lymph nodes of axilla and upper limb +C84Z5 Other mature T/NK-cell lymphomas, lymph nodes of inguinal region and lower limb +C84Z6 Other mature T/NK-cell lymphomas, intrapelvic lymph nodes +C84Z7 Other mature T/NK-cell lymphomas, spleen +C84Z8 Other mature T/NK-cell lymphomas, lymph nodes of multiple sites +C84Z9 Other mature T/NK-cell lymphomas, extranodal and solid organ sites +C8510 Unspecified B-cell lymphoma, unspecified site +C8511 Unspecified B-cell lymphoma, lymph nodes of head, face, and neck +C8512 Unspecified B-cell lymphoma, intrathoracic lymph nodes +C8513 Unspecified B-cell lymphoma, intra-abdominal lymph nodes +C8514 Unspecified B-cell lymphoma, lymph nodes of axilla and upper limb +C8515 Unspecified B-cell lymphoma, lymph nodes of inguinal region and lower limb +C8516 Unspecified B-cell lymphoma, intrapelvic lymph nodes +C8517 Unspecified B-cell lymphoma, spleen +C8518 Unspecified B-cell lymphoma, lymph nodes of multiple sites +C8519 Unspecified B-cell lymphoma, extranodal and solid organ sites +C8520 Mediastinal (thymic) large B-cell lymphoma, unspecified site +C8521 Mediastinal (thymic) large B-cell lymphoma, lymph nodes of head, face, and neck +C8522 Mediastinal (thymic) large B-cell lymphoma, intrathoracic lymph nodes +C8523 Mediastinal (thymic) large B-cell lymphoma, intra-abdominal lymph nodes +C8524 Mediastinal (thymic) large B-cell lymphoma, lymph nodes of axilla and upper limb +C8525 Mediastinal (thymic) large B-cell lymphoma, lymph nodes of inguinal region and lower limb +C8526 Mediastinal (thymic) large B-cell lymphoma, intrapelvic lymph nodes +C8527 Mediastinal (thymic) large B-cell lymphoma, spleen +C8528 Mediastinal (thymic) large B-cell lymphoma, lymph nodes of multiple sites +C8529 Mediastinal (thymic) large B-cell lymphoma, extranodal and solid organ sites +C8580 Other specified types of non-Hodgkin lymphoma, unspecified site +C8581 Other specified types of non-Hodgkin lymphoma, lymph nodes of head, face, and neck +C8582 Other specified types of non-Hodgkin lymphoma, intrathoracic lymph nodes +C8583 Other specified types of non-Hodgkin lymphoma, intra-abdominal lymph nodes +C8584 Other specified types of non-Hodgkin lymphoma, lymph nodes of axilla and upper limb +C8585 Other specified types of non-Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C8586 Other specified types of non-Hodgkin lymphoma, intrapelvic lymph nodes +C8587 Other specified types of non-Hodgkin lymphoma, spleen +C8588 Other specified types of non-Hodgkin lymphoma, lymph nodes of multiple sites +C8589 Other specified types of non-Hodgkin lymphoma, extranodal and solid organ sites +C8590 Non-Hodgkin lymphoma, unspecified, unspecified site +C8591 Non-Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck +C8592 Non-Hodgkin lymphoma, unspecified, intrathoracic lymph nodes +C8593 Non-Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes +C8594 Non-Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb +C8595 Non-Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb +C8596 Non-Hodgkin lymphoma, unspecified, intrapelvic lymph nodes +C8597 Non-Hodgkin lymphoma, unspecified, spleen +C8598 Non-Hodgkin lymphoma, unspecified, lymph nodes of multiple sites +C8599 Non-Hodgkin lymphoma, unspecified, extranodal and solid organ sites +C860 Extranodal NK/T-cell lymphoma, nasal type +C861 Hepatosplenic T-cell lymphoma +C862 Enteropathy-type (intestinal) T-cell lymphoma +C863 Subcutaneous panniculitis-like T-cell lymphoma +C864 Blastic NK-cell lymphoma +C865 Angioimmunoblastic T-cell lymphoma +C866 Primary cutaneous CD30-positive T-cell proliferations +C880 Waldenstrom macroglobulinemia +C882 Heavy chain disease +C883 Immunoproliferative small intestinal disease +C884 Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lymphoma] +C888 Other malignant immunoproliferative diseases +C889 Malignant immunoproliferative disease, unspecified +C9000 Multiple myeloma not having achieved remission +C9001 Multiple myeloma in remission +C9002 Multiple myeloma in relapse +C9010 Plasma cell leukemia not having achieved remission +C9011 Plasma cell leukemia in remission +C9012 Plasma cell leukemia in relapse +C9020 Extramedullary plasmacytoma not having achieved remission +C9021 Extramedullary plasmacytoma in remission +C9022 Extramedullary plasmacytoma in relapse +C9030 Solitary plasmacytoma not having achieved remission +C9031 Solitary plasmacytoma in remission +C9032 Solitary plasmacytoma in relapse +C9100 Acute lymphoblastic leukemia not having achieved remission +C9101 Acute lymphoblastic leukemia, in remission +C9102 Acute lymphoblastic leukemia, in relapse +C9110 Chronic lymphocytic leukemia of B-cell type not having achieved remission +C9111 Chronic lymphocytic leukemia of B-cell type in remission +C9112 Chronic lymphocytic leukemia of B-cell type in relapse +C9130 Prolymphocytic leukemia of B-cell type not having achieved remission +C9131 Prolymphocytic leukemia of B-cell type, in remission +C9132 Prolymphocytic leukemia of B-cell type, in relapse +C9140 Hairy cell leukemia not having achieved remission +C9141 Hairy cell leukemia, in remission +C9142 Hairy cell leukemia, in relapse +C9150 Adult T-cell lymphoma/leukemia (HTLV-1-associated) not having achieved remission +C9151 Adult T-cell lymphoma/leukemia (HTLV-1-associated), in remission +C9152 Adult T-cell lymphoma/leukemia (HTLV-1-associated), in relapse +C9160 Prolymphocytic leukemia of T-cell type not having achieved remission +C9161 Prolymphocytic leukemia of T-cell type, in remission +C9162 Prolymphocytic leukemia of T-cell type, in relapse +C9190 Lymphoid leukemia, unspecified not having achieved remission +C9191 Lymphoid leukemia, unspecified, in remission +C9192 Lymphoid leukemia, unspecified, in relapse +C91A0 Mature B-cell leukemia Burkitt-type not having achieved remission +C91A1 Mature B-cell leukemia Burkitt-type, in remission +C91A2 Mature B-cell leukemia Burkitt-type, in relapse +C91Z0 Other lymphoid leukemia not having achieved remission +C91Z1 Other lymphoid leukemia, in remission +C91Z2 Other lymphoid leukemia, in relapse +C9200 Acute myeloblastic leukemia, not having achieved remission +C9201 Acute myeloblastic leukemia, in remission +C9202 Acute myeloblastic leukemia, in relapse +C9210 Chronic myeloid leukemia, BCR/ABL-positive, not having achieved remission +C9211 Chronic myeloid leukemia, BCR/ABL-positive, in remission +C9212 Chronic myeloid leukemia, BCR/ABL-positive, in relapse +C9220 Atypical chronic myeloid leukemia, BCR/ABL-negative, not having achieved remission +C9221 Atypical chronic myeloid leukemia, BCR/ABL-negative, in remission +C9222 Atypical chronic myeloid leukemia, BCR/ABL-negative, in relapse +C9230 Myeloid sarcoma, not having achieved remission +C9231 Myeloid sarcoma, in remission +C9232 Myeloid sarcoma, in relapse +C9240 Acute promyelocytic leukemia, not having achieved remission +C9241 Acute promyelocytic leukemia, in remission +C9242 Acute promyelocytic leukemia, in relapse +C9250 Acute myelomonocytic leukemia, not having achieved remission +C9251 Acute myelomonocytic leukemia, in remission +C9252 Acute myelomonocytic leukemia, in relapse +C9260 Acute myeloid leukemia with 11q23-abnormality not having achieved remission +C9261 Acute myeloid leukemia with 11q23-abnormality in remission +C9262 Acute myeloid leukemia with 11q23-abnormality in relapse +C9290 Myeloid leukemia, unspecified, not having achieved remission +C9291 Myeloid leukemia, unspecified in remission +C9292 Myeloid leukemia, unspecified in relapse +C92A0 Acute myeloid leukemia with multilineage dysplasia, not having achieved remission +C92A1 Acute myeloid leukemia with multilineage dysplasia, in remission +C92A2 Acute myeloid leukemia with multilineage dysplasia, in relapse +C92Z0 Other myeloid leukemia not having achieved remission +C92Z1 Other myeloid leukemia, in remission +C92Z2 Other myeloid leukemia, in relapse +C9300 Acute monoblastic/monocytic leukemia, not having achieved remission +C9301 Acute monoblastic/monocytic leukemia, in remission +C9302 Acute monoblastic/monocytic leukemia, in relapse +C9310 Chronic myelomonocytic leukemia not having achieved remission +C9311 Chronic myelomonocytic leukemia, in remission +C9312 Chronic myelomonocytic leukemia, in relapse +C9330 Juvenile myelomonocytic leukemia, not having achieved remission +C9331 Juvenile myelomonocytic leukemia, in remission +C9332 Juvenile myelomonocytic leukemia, in relapse +C9390 Monocytic leukemia, unspecified, not having achieved remission +C9391 Monocytic leukemia, unspecified in remission +C9392 Monocytic leukemia, unspecified in relapse +C93Z0 Other monocytic leukemia, not having achieved remission +C93Z1 Other monocytic leukemia, in remission +C93Z2 Other monocytic leukemia, in relapse +C9400 Acute erythroid leukemia, not having achieved remission +C9401 Acute erythroid leukemia, in remission +C9402 Acute erythroid leukemia, in relapse +C9420 Acute megakaryoblastic leukemia not having achieved remission +C9421 Acute megakaryoblastic leukemia, in remission +C9422 Acute megakaryoblastic leukemia, in relapse +C9430 Mast cell leukemia not having achieved remission +C9431 Mast cell leukemia, in remission +C9432 Mast cell leukemia, in relapse +C9440 Acute panmyelosis with myelofibrosis not having achieved remission +C9441 Acute panmyelosis with myelofibrosis, in remission +C9442 Acute panmyelosis with myelofibrosis, in relapse +C946 Myelodysplastic disease, not classified +C9480 Other specified leukemias not having achieved remission +C9481 Other specified leukemias, in remission +C9482 Other specified leukemias, in relapse +C9500 Acute leukemia of unspecified cell type not having achieved remission +C9501 Acute leukemia of unspecified cell type, in remission +C9502 Acute leukemia of unspecified cell type, in relapse +C9510 Chronic leukemia of unspecified cell type not having achieved remission +C9511 Chronic leukemia of unspecified cell type, in remission +C9512 Chronic leukemia of unspecified cell type, in relapse +C9590 Leukemia, unspecified not having achieved remission +C9591 Leukemia, unspecified, in remission +C9592 Leukemia, unspecified, in relapse +C960 Multifocal and multisystemic (disseminated) Langerhans-cell histiocytosis +C962 Malignant mast cell tumor +C9620 Malignant mast cell neoplasm, unspecified +C9621 Aggressive systemic mastocytosis +C9622 Mast cell sarcoma +C9629 Other malignant mast cell neoplasm +C964 Sarcoma of dendritic cells (accessory cells) +C965 Multifocal and unisystemic Langerhans-cell histiocytosis +C966 Unifocal Langerhans-cell histiocytosis +C969 Malignant neoplasm of lymphoid, hematopoietic and related tissue, unspecified +C96A Histiocytic sarcoma +C96Z Other specified malignant neoplasms of lymphoid, hematopoietic and related tissue +D0000 Carcinoma in situ of oral cavity, unspecified site +D0001 Carcinoma in situ of labial mucosa and vermilion border +D0002 Carcinoma in situ of buccal mucosa +D0003 Carcinoma in situ of gingiva and edentulous alveolar ridge +D0004 Carcinoma in situ of soft palate +D0005 Carcinoma in situ of hard palate +D0006 Carcinoma in situ of floor of mouth +D0007 Carcinoma in situ of tongue +D0008 Carcinoma in situ of pharynx +D001 Carcinoma in situ of esophagus +D002 Carcinoma in situ of stomach +D010 Carcinoma in situ of colon +D011 Carcinoma in situ of rectosigmoid junction +D012 Carcinoma in situ of rectum +D013 Carcinoma in situ of anus and anal canal +D0140 Carcinoma in situ of unspecified part of intestine +D0149 Carcinoma in situ of other parts of intestine +D015 Carcinoma in situ of liver, gallbladder and bile ducts +D017 Carcinoma in situ of other specified digestive organs +D019 Carcinoma in situ of digestive organ, unspecified +D020 Carcinoma in situ of larynx +D021 Carcinoma in situ of trachea +D0220 Carcinoma in situ of unspecified bronchus and lung +D0221 Carcinoma in situ of right bronchus and lung +D0222 Carcinoma in situ of left bronchus and lung +D023 Carcinoma in situ of other parts of respiratory system +D024 Carcinoma in situ of respiratory system, unspecified +D030 Melanoma in situ of lip +D0310 Melanoma in situ of unspecified eyelid, including canthus +D0311 Melanoma in situ of right eyelid, including canthus +D03111 Melanoma in situ of right upper eyelid, including canthus +D03112 Melanoma in situ of right lower eyelid, including canthus +D0312 Melanoma in situ of left eyelid, including canthus +D03121 Melanoma in situ of left upper eyelid, including canthus +D03122 Melanoma in situ of left lower eyelid, including canthus +D0320 Melanoma in situ of unspecified ear and external auricular canal +D0321 Melanoma in situ of right ear and external auricular canal +D0322 Melanoma in situ of left ear and external auricular canal +D0330 Melanoma in situ of unspecified part of face +D0339 Melanoma in situ of other parts of face +D034 Melanoma in situ of scalp and neck +D0351 Melanoma in situ of anal skin +D0352 Melanoma in situ of breast (skin) (soft tissue) +D0359 Melanoma in situ of other part of trunk +D0360 Melanoma in situ of unspecified upper limb, including shoulder +D0361 Melanoma in situ of right upper limb, including shoulder +D0362 Melanoma in situ of left upper limb, including shoulder +D0370 Melanoma in situ of unspecified lower limb, including hip +D0371 Melanoma in situ of right lower limb, including hip +D0372 Melanoma in situ of left lower limb, including hip +D038 Melanoma in situ of other sites +D039 Melanoma in situ, unspecified +D040 Carcinoma in situ of skin of lip +D0410 Carcinoma in situ of skin of unspecified eyelid, including canthus +D0411 Carcinoma in situ of skin of right eyelid, including canthus +D04111 Carcinoma in situ of skin of right upper eyelid, including canthus +D04112 Carcinoma in situ of skin of right lower eyelid, including canthus +D0412 Carcinoma in situ of skin of left eyelid, including canthus +D04121 Carcinoma in situ of skin of left upper eyelid, including canthus +D04122 Carcinoma in situ of skin of left lower eyelid, including canthus +D0420 Carcinoma in situ of skin of unspecified ear and external auricular canal +D0421 Carcinoma in situ of skin of right ear and external auricular canal +D0422 Carcinoma in situ of skin of left ear and external auricular canal +D0430 Carcinoma in situ of skin of unspecified part of face +D0439 Carcinoma in situ of skin of other parts of face +D044 Carcinoma in situ of skin of scalp and neck +D045 Carcinoma in situ of skin of trunk +D0460 Carcinoma in situ of skin of unspecified upper limb, including shoulder +D0461 Carcinoma in situ of skin of right upper limb, including shoulder +D0462 Carcinoma in situ of skin of left upper limb, including shoulder +D0470 Carcinoma in situ of skin of unspecified lower limb, including hip +D0471 Carcinoma in situ of skin of right lower limb, including hip +D0472 Carcinoma in situ of skin of left lower limb, including hip +D048 Carcinoma in situ of skin of other sites +D049 Carcinoma in situ of skin, unspecified +D0500 Lobular carcinoma in situ of unspecified breast +D0501 Lobular carcinoma in situ of right breast +D0502 Lobular carcinoma in situ of left breast +D0510 Intraductal carcinoma in situ of unspecified breast +D0511 Intraductal carcinoma in situ of right breast +D0512 Intraductal carcinoma in situ of left breast +D0580 Other specified type of carcinoma in situ of unspecified breast +D0581 Other specified type of carcinoma in situ of right breast +D0582 Other specified type of carcinoma in situ of left breast +D0590 Unspecified type of carcinoma in situ of unspecified breast +D0591 Unspecified type of carcinoma in situ of right breast +D0592 Unspecified type of carcinoma in situ of left breast +D060 Carcinoma in situ of endocervix +D061 Carcinoma in situ of exocervix +D067 Carcinoma in situ of other parts of cervix +D069 Carcinoma in situ of cervix, unspecified +D070 Carcinoma in situ of endometrium +D071 Carcinoma in situ of vulva +D072 Carcinoma in situ of vagina +D0730 Carcinoma in situ of unspecified female genital organs +D0739 Carcinoma in situ of other female genital organs +D074 Carcinoma in situ of penis +D075 Carcinoma in situ of prostate +D0760 Carcinoma in situ of unspecified male genital organs +D0761 Carcinoma in situ of scrotum +D0769 Carcinoma in situ of other male genital organs +D090 Carcinoma in situ of bladder +D0910 Carcinoma in situ of unspecified urinary organ +D0919 Carcinoma in situ of other urinary organs +D0920 Carcinoma in situ of unspecified eye +D0921 Carcinoma in situ of right eye +D0922 Carcinoma in situ of left eye +D093 Carcinoma in situ of thyroid and other endocrine glands +D098 Carcinoma in situ of other specified sites +D099 Carcinoma in situ, unspecified +D100 Benign neoplasm of lip +D101 Benign neoplasm of tongue +D102 Benign neoplasm of floor of mouth +D1030 Benign neoplasm of unspecified part of mouth +D1039 Benign neoplasm of other parts of mouth +D104 Benign neoplasm of tonsil +D105 Benign neoplasm of other parts of oropharynx +D106 Benign neoplasm of nasopharynx +D107 Benign neoplasm of hypopharynx +D109 Benign neoplasm of pharynx, unspecified +D110 Benign neoplasm of parotid gland +D117 Benign neoplasm of other major salivary glands +D119 Benign neoplasm of major salivary gland, unspecified +D120 Benign neoplasm of cecum +D121 Benign neoplasm of appendix +D122 Benign neoplasm of ascending colon +D123 Benign neoplasm of transverse colon +D124 Benign neoplasm of descending colon +D125 Benign neoplasm of sigmoid colon +D126 Benign neoplasm of colon, unspecified +D127 Benign neoplasm of rectosigmoid junction +D128 Benign neoplasm of rectum +D129 Benign neoplasm of anus and anal canal +D130 Benign neoplasm of esophagus +D131 Benign neoplasm of stomach +D132 Benign neoplasm of duodenum +D1330 Benign neoplasm of unspecified part of small intestine +D1339 Benign neoplasm of other parts of small intestine +D134 Benign neoplasm of liver +D135 Benign neoplasm of extrahepatic bile ducts +D136 Benign neoplasm of pancreas +D137 Benign neoplasm of endocrine pancreas +D139 Benign neoplasm of ill-defined sites within the digestive system +D140 Benign neoplasm of middle ear, nasal cavity and accessory sinuses +D141 Benign neoplasm of larynx +D142 Benign neoplasm of trachea +D1430 Benign neoplasm of unspecified bronchus and lung +D1431 Benign neoplasm of right bronchus and lung +D1432 Benign neoplasm of left bronchus and lung +D144 Benign neoplasm of respiratory system, unspecified +D150 Benign neoplasm of thymus +D151 Benign neoplasm of heart +D152 Benign neoplasm of mediastinum +D157 Benign neoplasm of other specified intrathoracic organs +D159 Benign neoplasm of intrathoracic organ, unspecified +D1600 Benign neoplasm of scapula and long bones of unspecified upper limb +D1601 Benign neoplasm of scapula and long bones of right upper limb +D1602 Benign neoplasm of scapula and long bones of left upper limb +D1610 Benign neoplasm of short bones of unspecified upper limb +D1611 Benign neoplasm of short bones of right upper limb +D1612 Benign neoplasm of short bones of left upper limb +D1620 Benign neoplasm of long bones of unspecified lower limb +D1621 Benign neoplasm of long bones of right lower limb +D1622 Benign neoplasm of long bones of left lower limb +D1630 Benign neoplasm of short bones of unspecified lower limb +D1631 Benign neoplasm of short bones of right lower limb +D1632 Benign neoplasm of short bones of left lower limb +D164 Benign neoplasm of bones of skull and face +D165 Benign neoplasm of lower jaw bone +D166 Benign neoplasm of vertebral column +D167 Benign neoplasm of ribs, sternum and clavicle +D168 Benign neoplasm of pelvic bones, sacrum and coccyx +D169 Benign neoplasm of bone and articular cartilage, unspecified +D170 Benign lipomatous neoplasm of skin and subcutaneous tissue of head, face and neck +D171 Benign lipomatous neoplasm of skin and subcutaneous tissue of trunk +D1720 Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified limb +D1721 Benign lipomatous neoplasm of skin and subcutaneous tissue of right arm +D1722 Benign lipomatous neoplasm of skin and subcutaneous tissue of left arm +D1723 Benign lipomatous neoplasm of skin and subcutaneous tissue of right leg +D1724 Benign lipomatous neoplasm of skin and subcutaneous tissue of left leg +D1730 Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified sites +D1739 Benign lipomatous neoplasm of skin and subcutaneous tissue of other sites +D174 Benign lipomatous neoplasm of intrathoracic organs +D175 Benign lipomatous neoplasm of intra-abdominal organs +D176 Benign lipomatous neoplasm of spermatic cord +D1771 Benign lipomatous neoplasm of kidney +D1772 Benign lipomatous neoplasm of other genitourinary organ +D1779 Benign lipomatous neoplasm of other sites +D179 Benign lipomatous neoplasm, unspecified +D1800 Hemangioma unspecified site +D1801 Hemangioma of skin and subcutaneous tissue +D1802 Hemangioma of intracranial structures +D1803 Hemangioma of intra-abdominal structures +D1809 Hemangioma of other sites +D181 Lymphangioma, any site +D190 Benign neoplasm of mesothelial tissue of pleura +D191 Benign neoplasm of mesothelial tissue of peritoneum +D197 Benign neoplasm of mesothelial tissue of other sites +D199 Benign neoplasm of mesothelial tissue, unspecified +D200 Benign neoplasm of soft tissue of retroperitoneum +D201 Benign neoplasm of soft tissue of peritoneum +D210 Benign neoplasm of connective and other soft tissue of head, face and neck +D2110 Benign neoplasm of connective and other soft tissue of unspecified upper limb, including shoulder +D2111 Benign neoplasm of connective and other soft tissue of right upper limb, including shoulder +D2112 Benign neoplasm of connective and other soft tissue of left upper limb, including shoulder +D2120 Benign neoplasm of connective and other soft tissue of unspecified lower limb, including hip +D2121 Benign neoplasm of connective and other soft tissue of right lower limb, including hip +D2122 Benign neoplasm of connective and other soft tissue of left lower limb, including hip +D213 Benign neoplasm of connective and other soft tissue of thorax +D214 Benign neoplasm of connective and other soft tissue of abdomen +D215 Benign neoplasm of connective and other soft tissue of pelvis +D216 Benign neoplasm of connective and other soft tissue of trunk, unspecified +D219 Benign neoplasm of connective and other soft tissue, unspecified +D220 Melanocytic nevi of lip +D2210 Melanocytic nevi of unspecified eyelid, including canthus +D2211 Melanocytic nevi of right eyelid, including canthus +D22111 Melanocytic nevi of right upper eyelid, including canthus +D22112 Melanocytic nevi of right lower eyelid, including canthus +D2212 Melanocytic nevi of left eyelid, including canthus +D22121 Melanocytic nevi of left upper eyelid, including canthus +D22122 Melanocytic nevi of left lower eyelid, including canthus +D2220 Melanocytic nevi of unspecified ear and external auricular canal +D2221 Melanocytic nevi of right ear and external auricular canal +D2222 Melanocytic nevi of left ear and external auricular canal +D2230 Melanocytic nevi of unspecified part of face +D2239 Melanocytic nevi of other parts of face +D224 Melanocytic nevi of scalp and neck +D225 Melanocytic nevi of trunk +D2260 Melanocytic nevi of unspecified upper limb, including shoulder +D2261 Melanocytic nevi of right upper limb, including shoulder +D2262 Melanocytic nevi of left upper limb, including shoulder +D2270 Melanocytic nevi of unspecified lower limb, including hip +D2271 Melanocytic nevi of right lower limb, including hip +D2272 Melanocytic nevi of left lower limb, including hip +D229 Melanocytic nevi, unspecified +D230 Other benign neoplasm of skin of lip +D2310 Other benign neoplasm of skin of unspecified eyelid, including canthus +D2311 Other benign neoplasm of skin of right eyelid, including canthus +D23111 Other benign neoplasm of skin of right upper eyelid, including canthus +D23112 Other benign neoplasm of skin of right lower eyelid, including canthus +D2312 Other benign neoplasm of skin of left eyelid, including canthus +D23121 Other benign neoplasm of skin of left upper eyelid, including canthus +D23122 Other benign neoplasm of skin of left lower eyelid, including canthus +D2320 Other benign neoplasm of skin of unspecified ear and external auricular canal +D2321 Other benign neoplasm of skin of right ear and external auricular canal +D2322 Other benign neoplasm of skin of left ear and external auricular canal +D2330 Other benign neoplasm of skin of unspecified part of face +D2339 Other benign neoplasm of skin of other parts of face +D234 Other benign neoplasm of skin of scalp and neck +D235 Other benign neoplasm of skin of trunk +D2360 Other benign neoplasm of skin of unspecified upper limb, including shoulder +D2361 Other benign neoplasm of skin of right upper limb, including shoulder +D2362 Other benign neoplasm of skin of left upper limb, including shoulder +D2370 Other benign neoplasm of skin of unspecified lower limb, including hip +D2371 Other benign neoplasm of skin of right lower limb, including hip +D2372 Other benign neoplasm of skin of left lower limb, including hip +D239 Other benign neoplasm of skin, unspecified +D241 Benign neoplasm of right breast +D242 Benign neoplasm of left breast +D249 Benign neoplasm of unspecified breast +D250 Submucous leiomyoma of uterus +D251 Intramural leiomyoma of uterus +D252 Subserosal leiomyoma of uterus +D259 Leiomyoma of uterus, unspecified +D260 Other benign neoplasm of cervix uteri +D261 Other benign neoplasm of corpus uteri +D267 Other benign neoplasm of other parts of uterus +D269 Other benign neoplasm of uterus, unspecified +D270 Benign neoplasm of right ovary +D271 Benign neoplasm of left ovary +D279 Benign neoplasm of unspecified ovary +D280 Benign neoplasm of vulva +D281 Benign neoplasm of vagina +D282 Benign neoplasm of uterine tubes and ligaments +D287 Benign neoplasm of other specified female genital organs +D289 Benign neoplasm of female genital organ, unspecified +D290 Benign neoplasm of penis +D291 Benign neoplasm of prostate +D2920 Benign neoplasm of unspecified testis +D2921 Benign neoplasm of right testis +D2922 Benign neoplasm of left testis +D2930 Benign neoplasm of unspecified epididymis +D2931 Benign neoplasm of right epididymis +D2932 Benign neoplasm of left epididymis +D294 Benign neoplasm of scrotum +D298 Benign neoplasm of other specified male genital organs +D299 Benign neoplasm of male genital organ, unspecified +D3000 Benign neoplasm of unspecified kidney +D3001 Benign neoplasm of right kidney +D3002 Benign neoplasm of left kidney +D3010 Benign neoplasm of unspecified renal pelvis +D3011 Benign neoplasm of right renal pelvis +D3012 Benign neoplasm of left renal pelvis +D3020 Benign neoplasm of unspecified ureter +D3021 Benign neoplasm of right ureter +D3022 Benign neoplasm of left ureter +D303 Benign neoplasm of bladder +D304 Benign neoplasm of urethra +D308 Benign neoplasm of other specified urinary organs +D309 Benign neoplasm of urinary organ, unspecified +D3100 Benign neoplasm of unspecified conjunctiva +D3101 Benign neoplasm of right conjunctiva +D3102 Benign neoplasm of left conjunctiva +D3110 Benign neoplasm of unspecified cornea +D3111 Benign neoplasm of right cornea +D3112 Benign neoplasm of left cornea +D3120 Benign neoplasm of unspecified retina +D3121 Benign neoplasm of right retina +D3122 Benign neoplasm of left retina +D3130 Benign neoplasm of unspecified choroid +D3131 Benign neoplasm of right choroid +D3132 Benign neoplasm of left choroid +D3140 Benign neoplasm of unspecified ciliary body +D3141 Benign neoplasm of right ciliary body +D3142 Benign neoplasm of left ciliary body +D3150 Benign neoplasm of unspecified lacrimal gland and duct +D3151 Benign neoplasm of right lacrimal gland and duct +D3152 Benign neoplasm of left lacrimal gland and duct +D3160 Benign neoplasm of unspecified site of unspecified orbit +D3161 Benign neoplasm of unspecified site of right orbit +D3162 Benign neoplasm of unspecified site of left orbit +D3190 Benign neoplasm of unspecified part of unspecified eye +D3191 Benign neoplasm of unspecified part of right eye +D3192 Benign neoplasm of unspecified part of left eye +D320 Benign neoplasm of cerebral meninges +D321 Benign neoplasm of spinal meninges +D329 Benign neoplasm of meninges, unspecified +D330 Benign neoplasm of brain, supratentorial +D331 Benign neoplasm of brain, infratentorial +D332 Benign neoplasm of brain, unspecified +D333 Benign neoplasm of cranial nerves +D334 Benign neoplasm of spinal cord +D337 Benign neoplasm of other specified parts of central nervous system +D339 Benign neoplasm of central nervous system, unspecified +D34 Benign neoplasm of thyroid gland +D3500 Benign neoplasm of unspecified adrenal gland +D3501 Benign neoplasm of right adrenal gland +D3502 Benign neoplasm of left adrenal gland +D351 Benign neoplasm of parathyroid gland +D352 Benign neoplasm of pituitary gland +D353 Benign neoplasm of craniopharyngeal duct +D354 Benign neoplasm of pineal gland +D355 Benign neoplasm of carotid body +D356 Benign neoplasm of aortic body and other paraganglia +D357 Benign neoplasm of other specified endocrine glands +D359 Benign neoplasm of endocrine gland, unspecified +D360 Benign neoplasm of lymph nodes +D3610 Benign neoplasm of peripheral nerves and autonomic nervous system, unspecified +D3611 Benign neoplasm of peripheral nerves and autonomic nervous system of face, head, and neck +D3612 Benign neoplasm of peripheral nerves and autonomic nervous system, upper limb, including shoulder +D3613 Benign neoplasm of peripheral nerves and autonomic nervous system of lower limb, including hip +D3614 Benign neoplasm of peripheral nerves and autonomic nervous system of thorax +D3615 Benign neoplasm of peripheral nerves and autonomic nervous system of abdomen +D3616 Benign neoplasm of peripheral nerves and autonomic nervous system of pelvis +D3617 Benign neoplasm of peripheral nerves and autonomic nervous system of trunk, unspecified +D367 Benign neoplasm of other specified sites +D369 Benign neoplasm, unspecified site +D3701 Neoplasm of uncertain behavior of lip +D3702 Neoplasm of uncertain behavior of tongue +D37030 Neoplasm of uncertain behavior of the parotid salivary glands +D37031 Neoplasm of uncertain behavior of the sublingual salivary glands +D37032 Neoplasm of uncertain behavior of the submandibular salivary glands +D37039 Neoplasm of uncertain behavior of the major salivary glands, unspecified +D3704 Neoplasm of uncertain behavior of the minor salivary glands +D3705 Neoplasm of uncertain behavior of pharynx +D3709 Neoplasm of uncertain behavior of other specified sites of the oral cavity +D371 Neoplasm of uncertain behavior of stomach +D372 Neoplasm of uncertain behavior of small intestine +D373 Neoplasm of uncertain behavior of appendix +D374 Neoplasm of uncertain behavior of colon +D375 Neoplasm of uncertain behavior of rectum +D376 Neoplasm of uncertain behavior of liver, gallbladder and bile ducts +D378 Neoplasm of uncertain behavior of other specified digestive organs +D379 Neoplasm of uncertain behavior of digestive organ, unspecified +D380 Neoplasm of uncertain behavior of larynx +D381 Neoplasm of uncertain behavior of trachea, bronchus and lung +D382 Neoplasm of uncertain behavior of pleura +D383 Neoplasm of uncertain behavior of mediastinum +D384 Neoplasm of uncertain behavior of thymus +D385 Neoplasm of uncertain behavior of other respiratory organs +D386 Neoplasm of uncertain behavior of respiratory organ, unspecified +D390 Neoplasm of uncertain behavior of uterus +D3910 Neoplasm of uncertain behavior of unspecified ovary +D3911 Neoplasm of uncertain behavior of right ovary +D3912 Neoplasm of uncertain behavior of left ovary +D392 Neoplasm of uncertain behavior of placenta +D398 Neoplasm of uncertain behavior of other specified female genital organs +D399 Neoplasm of uncertain behavior of female genital organ, unspecified +D3A00 Benign carcinoid tumor of unspecified site +D3A010 Benign carcinoid tumor of the duodenum +D3A011 Benign carcinoid tumor of the jejunum +D3A012 Benign carcinoid tumor of the ileum +D3A019 Benign carcinoid tumor of the small intestine, unspecified portion +D3A020 Benign carcinoid tumor of the appendix +D3A021 Benign carcinoid tumor of the cecum +D3A022 Benign carcinoid tumor of the ascending colon +D3A023 Benign carcinoid tumor of the transverse colon +D3A024 Benign carcinoid tumor of the descending colon +D3A025 Benign carcinoid tumor of the sigmoid colon +D3A026 Benign carcinoid tumor of the rectum +D3A029 Benign carcinoid tumor of the large intestine, unspecified portion +D3A090 Benign carcinoid tumor of the bronchus and lung +D3A091 Benign carcinoid tumor of the thymus +D3A092 Benign carcinoid tumor of the stomach +D3A093 Benign carcinoid tumor of the kidney +D3A094 Benign carcinoid tumor of the foregut, unspecified +D3A095 Benign carcinoid tumor of the midgut, unspecified +D3A096 Benign carcinoid tumor of the hindgut, unspecified +D3A098 Benign carcinoid tumors of other sites +D3A8 Other benign neuroendocrine tumors +D400 Neoplasm of uncertain behavior of prostate +D4010 Neoplasm of uncertain behavior of unspecified testis +D4011 Neoplasm of uncertain behavior of right testis +D4012 Neoplasm of uncertain behavior of left testis +D408 Neoplasm of uncertain behavior of other specified male genital organs +D409 Neoplasm of uncertain behavior of male genital organ, unspecified +D4100 Neoplasm of uncertain behavior of unspecified kidney +D4101 Neoplasm of uncertain behavior of right kidney +D4102 Neoplasm of uncertain behavior of left kidney +D4110 Neoplasm of uncertain behavior of unspecified renal pelvis +D4111 Neoplasm of uncertain behavior of right renal pelvis +D4112 Neoplasm of uncertain behavior of left renal pelvis +D4120 Neoplasm of uncertain behavior of unspecified ureter +D4121 Neoplasm of uncertain behavior of right ureter +D4122 Neoplasm of uncertain behavior of left ureter +D413 Neoplasm of uncertain behavior of urethra +D414 Neoplasm of uncertain behavior of bladder +D418 Neoplasm of uncertain behavior of other specified urinary organs +D419 Neoplasm of uncertain behavior of unspecified urinary organ +D420 Neoplasm of uncertain behavior of cerebral meninges +D421 Neoplasm of uncertain behavior of spinal meninges +D429 Neoplasm of uncertain behavior of meninges, unspecified +D430 Neoplasm of uncertain behavior of brain, supratentorial +D431 Neoplasm of uncertain behavior of brain, infratentorial +D432 Neoplasm of uncertain behavior of brain, unspecified +D433 Neoplasm of uncertain behavior of cranial nerves +D434 Neoplasm of uncertain behavior of spinal cord +D438 Neoplasm of uncertain behavior of other specified parts of central nervous system +D439 Neoplasm of uncertain behavior of central nervous system, unspecified +D440 Neoplasm of uncertain behavior of thyroid gland +D4410 Neoplasm of uncertain behavior of unspecified adrenal gland +D4411 Neoplasm of uncertain behavior of right adrenal gland +D4412 Neoplasm of uncertain behavior of left adrenal gland +D442 Neoplasm of uncertain behavior of parathyroid gland +D443 Neoplasm of uncertain behavior of pituitary gland +D444 Neoplasm of uncertain behavior of craniopharyngeal duct +D445 Neoplasm of uncertain behavior of pineal gland +D446 Neoplasm of uncertain behavior of carotid body +D447 Neoplasm of uncertain behavior of aortic body and other paraganglia +D449 Neoplasm of uncertain behavior of unspecified endocrine gland +D45 Polycythemia vera +D460 Refractory anemia without ring sideroblasts, so stated +D461 Refractory anemia with ring sideroblasts +D4620 Refractory anemia with excess of blasts, unspecified +D4621 Refractory anemia with excess of blasts 1 +D4622 Refractory anemia with excess of blasts 2 +D464 Refractory anemia, unspecified +D469 Myelodysplastic syndrome, unspecified +D46A Refractory cytopenia with multilineage dysplasia +D46B Refractory cytopenia with multilineage dysplasia and ring sideroblasts +D46C Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality +D46Z Other myelodysplastic syndromes +D470 Histiocytic and mast cell tumors of uncertain behavior +D4701 Cutaneous mastocytosis +D4702 Systemic mastocytosis +D4709 Other mast cell neoplasms of uncertain behavior +D471 Chronic myeloproliferative disease +D472 Monoclonal gammopathy +D473 Essential (hemorrhagic) thrombocythemia +D474 Osteomyelofibrosis +D479 Neoplasm of uncertain behavior of lymphoid, hematopoietic and related tissue, unspecified +D47Z1 Post-transplant lymphoproliferative disorder (PTLD) +D47Z2 Castleman disease +D47Z9 Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue +D480 Neoplasm of uncertain behavior of bone and articular cartilage +D481 Neoplasm of uncertain behavior of connective and other soft tissue +D482 Neoplasm of uncertain behavior of peripheral nerves and autonomic nervous system +D483 Neoplasm of uncertain behavior of retroperitoneum +D484 Neoplasm of uncertain behavior of peritoneum +D485 Neoplasm of uncertain behavior of skin +D4860 Neoplasm of uncertain behavior of unspecified breast +D4861 Neoplasm of uncertain behavior of right breast +D4862 Neoplasm of uncertain behavior of left breast +D487 Neoplasm of uncertain behavior of other specified sites +D489 Neoplasm of uncertain behavior, unspecified +D490 Neoplasm of unspecified behavior of digestive system +D491 Neoplasm of unspecified behavior of respiratory system +D492 Neoplasm of unspecified behavior of bone, soft tissue, and skin +D493 Neoplasm of unspecified behavior of breast +D494 Neoplasm of unspecified behavior of bladder +D495 Neoplasm of unspecified behavior of other genitourinary organs +D49511 Neoplasm of unspecified behavior of right kidney +D49512 Neoplasm of unspecified behavior of left kidney +D49519 Neoplasm of unspecified behavior of unspecified kidney +D4959 Neoplasm of unspecified behavior of other genitourinary organ +D496 Neoplasm of unspecified behavior of brain +D497 Neoplasm of unspecified behavior of endocrine glands and other parts of nervous system +D4981 Neoplasm of unspecified behavior of retina and choroid +D4989 Neoplasm of unspecified behavior of other specified sites +D499 Neoplasm of unspecified behavior of unspecified site +D500 Iron deficiency anemia secondary to blood loss (chronic) +D501 Sideropenic dysphagia +D508 Other iron deficiency anemias +D509 Iron deficiency anemia, unspecified +D510 Vitamin B12 deficiency anemia due to intrinsic factor deficiency +D511 Vitamin B12 deficiency anemia due to selective vitamin B12 malabsorption with proteinuria +D512 Transcobalamin II deficiency +D513 Other dietary vitamin B12 deficiency anemia +D518 Other vitamin B12 deficiency anemias +D519 Vitamin B12 deficiency anemia, unspecified +D520 Dietary folate deficiency anemia +D521 Drug-induced folate deficiency anemia +D528 Other folate deficiency anemias +D529 Folate deficiency anemia, unspecified +D530 Protein deficiency anemia +D531 Other megaloblastic anemias, not elsewhere classified +D532 Scorbutic anemia +D538 Other specified nutritional anemias +D539 Nutritional anemia, unspecified +D550 Anemia due to glucose-6-phosphate dehydrogenase [G6PD] deficiency +D551 Anemia due to other disorders of glutathione metabolism +D552 Anemia due to disorders of glycolytic enzymes +D553 Anemia due to disorders of nucleotide metabolism +D558 Other anemias due to enzyme disorders +D559 Anemia due to enzyme disorder, unspecified +D560 Alpha thalassemia +D561 Beta thalassemia +D562 Delta-beta thalassemia +D563 Thalassemia minor +D564 Hereditary persistence of fetal hemoglobin [HPFH] +D565 Hemoglobin E-beta thalassemia +D568 Other thalassemias +D569 Thalassemia, unspecified +D5700 Hb-SS disease with crisis, unspecified +D5701 Hb-SS disease with acute chest syndrome +D5702 Hb-SS disease with splenic sequestration +D571 Sickle-cell disease without crisis +D5720 Sickle-cell/Hb-C disease without crisis +D57211 Sickle-cell/Hb-C disease with acute chest syndrome +D57212 Sickle-cell/Hb-C disease with splenic sequestration +D57219 Sickle-cell/Hb-C disease with crisis, unspecified +D573 Sickle-cell trait +D5740 Sickle-cell thalassemia without crisis +D57411 Sickle-cell thalassemia with acute chest syndrome +D57412 Sickle-cell thalassemia with splenic sequestration +D57419 Sickle-cell thalassemia with crisis, unspecified +D5780 Other sickle-cell disorders without crisis +D57811 Other sickle-cell disorders with acute chest syndrome +D57812 Other sickle-cell disorders with splenic sequestration +D57819 Other sickle-cell disorders with crisis, unspecified +D580 Hereditary spherocytosis +D581 Hereditary elliptocytosis +D582 Other hemoglobinopathies +D588 Other specified hereditary hemolytic anemias +D589 Hereditary hemolytic anemia, unspecified +D590 Drug-induced autoimmune hemolytic anemia +D591 Other autoimmune hemolytic anemias +D592 Drug-induced nonautoimmune hemolytic anemia +D593 Hemolytic-uremic syndrome +D594 Other nonautoimmune hemolytic anemias +D595 Paroxysmal nocturnal hemoglobinuria [Marchiafava-Micheli] +D596 Hemoglobinuria due to hemolysis from other external causes +D598 Other acquired hemolytic anemias +D599 Acquired hemolytic anemia, unspecified +D600 Chronic acquired pure red cell aplasia +D601 Transient acquired pure red cell aplasia +D608 Other acquired pure red cell aplasias +D609 Acquired pure red cell aplasia, unspecified +D6101 Constitutional (pure) red blood cell aplasia +D6109 Other constitutional aplastic anemia +D611 Drug-induced aplastic anemia +D612 Aplastic anemia due to other external agents +D613 Idiopathic aplastic anemia +D61810 Antineoplastic chemotherapy induced pancytopenia +D61811 Other drug-induced pancytopenia +D61818 Other pancytopenia +D6182 Myelophthisis +D6189 Other specified aplastic anemias and other bone marrow failure syndromes +D619 Aplastic anemia, unspecified +D62 Acute posthemorrhagic anemia Y +D630 Anemia in neoplastic disease Y +D631 Anemia in chronic kidney disease Y +D638 Anemia in other chronic diseases classified elsewhere Y +D640 Hereditary sideroblastic anemia Y +D641 Secondary sideroblastic anemia due to disease Y +D642 Secondary sideroblastic anemia due to drugs and toxins Y +D643 Other sideroblastic anemias Y +D644 Congenital dyserythropoietic anemia Y +D6481 Anemia due to antineoplastic chemotherapy Y +D6489 Other specified anemias Y +D649 Anemia, unspecified Y +D65 Disseminated intravascular coagulation [defibrination syndrome] +D66 Hereditary factor VIII deficiency +D67 Hereditary factor IX deficiency +D680 Von Willebrand's disease +D681 Hereditary factor XI deficiency +D682 Hereditary deficiency of other clotting factors +D68311 Acquired hemophilia +D68312 Antiphospholipid antibody with hemorrhagic disorder +D68318 Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors +D6832 Hemorrhagic disorder due to extrinsic circulating anticoagulants +D684 Acquired coagulation factor deficiency +D6851 Activated protein C resistance +D6852 Prothrombin gene mutation +D6859 Other primary thrombophilia +D6861 Antiphospholipid syndrome +D6862 Lupus anticoagulant syndrome +D6869 Other thrombophilia +D688 Other specified coagulation defects +D689 Coagulation defect, unspecified +D690 Allergic purpura +D691 Qualitative platelet defects +D692 Other nonthrombocytopenic purpura +D693 Immune thrombocytopenic purpura +D6941 Evans syndrome +D6942 Congenital and hereditary thrombocytopenia purpura +D6949 Other primary thrombocytopenia +D6951 Posttransfusion purpura +D6959 Other secondary thrombocytopenia +D696 Thrombocytopenia, unspecified +D698 Other specified hemorrhagic conditions +D699 Hemorrhagic condition, unspecified +D700 Congenital agranulocytosis +D701 Agranulocytosis secondary to cancer chemotherapy +D702 Other drug-induced agranulocytosis +D703 Neutropenia due to infection +D704 Cyclic neutropenia +D708 Other neutropenia +D709 Neutropenia, unspecified +D71 Functional disorders of polymorphonuclear neutrophils +D720 Genetic anomalies of leukocytes +D721 Eosinophilia +D72810 Lymphocytopenia +D72818 Other decreased white blood cell count +D72819 Decreased white blood cell count, unspecified +D72820 Lymphocytosis (symptomatic) +D72821 Monocytosis (symptomatic) +D72822 Plasmacytosis +D72823 Leukemoid reaction +D72824 Basophilia +D72825 Bandemia +D72828 Other elevated white blood cell count +D72829 Elevated white blood cell count, unspecified +D7289 Other specified disorders of white blood cells +D729 Disorder of white blood cells, unspecified +D730 Hyposplenism +D731 Hypersplenism +D732 Chronic congestive splenomegaly +D733 Abscess of spleen +D734 Cyst of spleen +D735 Infarction of spleen +D7381 Neutropenic splenomegaly +D7389 Other diseases of spleen +D739 Disease of spleen, unspecified +D740 Congenital methemoglobinemia +D748 Other methemoglobinemias +D749 Methemoglobinemia, unspecified +D750 Familial erythrocytosis +D751 Secondary polycythemia +D7581 Myelofibrosis +D7582 Heparin induced thrombocytopenia (HIT) +D7589 Other specified diseases of blood and blood-forming organs +D759 Disease of blood and blood-forming organs, unspecified +D75A Glucose-6-phosphate dehydrgnse (G6PD) defic without anemia +D761 Hemophagocytic lymphohistiocytosis +D762 Hemophagocytic syndrome, infection-associated +D763 Other histiocytosis syndromes +D77 Other disorders of blood and blood-forming organs in diseases classified elsewhere +D7801 Intraoperative hemorrhage and hematoma of the spleen complicating a procedure on the spleen +D7802 Intraoperative hemorrhage and hematoma of the spleen complicating other procedure +D7811 Accidental puncture and laceration of the spleen during a procedure on the spleen +D7812 Accidental puncture and laceration of the spleen during other procedure +D7821 Postprocedural hemorrhage of the spleen following a procedure on the spleen +D7822 Postprocedural hemorrhage of the spleen following other procedure +D7831 Postprocedural hematoma of the spleen following a procedure on the spleen +D7832 Postprocedural hematoma of the spleen following other procedure +D7833 Postprocedural seroma of the spleen following a procedure on the spleen +D7834 Postprocedural seroma of the spleen following other procedure +D7881 Other intraoperative complications of the spleen +D7889 Other postprocedural complications of the spleen +D800 Hereditary hypogammaglobulinemia +D801 Nonfamilial hypogammaglobulinemia +D802 Selective deficiency of immunoglobulin A [IgA] +D803 Selective deficiency of immunoglobulin G [IgG] subclasses +D804 Selective deficiency of immunoglobulin M [IgM] +D805 Immunodeficiency with increased immunoglobulin M [IgM] +D806 Antibody deficiency with near-normal immunoglobulins or with hyperimmunoglobulinemia +D807 Transient hypogammaglobulinemia of infancy +D808 Other immunodeficiencies with predominantly antibody defects +D809 Immunodeficiency with predominantly antibody defects, unspecified +D810 Severe combined immunodeficiency [SCID] with reticular dysgenesis +D811 Severe combined immunodeficiency [SCID] with low T- and B-cell numbers +D812 Severe combined immunodeficiency [SCID] with low or normal B-cell numbers +D813 Adenosine deaminase [ADA] deficiency +D814 Nezelof's syndrome +D815 Purine nucleoside phosphorylase [PNP] deficiency +D816 Major histocompatibility complex class I deficiency +D817 Major histocompatibility complex class II deficiency +D81810 Biotinidase deficiency +D81818 Other biotin-dependent carboxylase deficiency +D81819 Biotin-dependent carboxylase deficiency, unspecified +D8189 Other combined immunodeficiencies +D819 Combined immunodeficiency, unspecified +D820 Wiskott-Aldrich syndrome +D821 Di George's syndrome +D822 Immunodeficiency with short-limbed stature +D823 Immunodeficiency following hereditary defective response to Epstein-Barr virus +D824 Hyperimmunoglobulin E [IgE] syndrome +D828 Immunodeficiency associated with other specified major defects +D829 Immunodeficiency associated with major defect, unspecified +D830 Common variable immunodeficiency with predominant abnormalities of B-cell numbers and function +D831 Common variable immunodeficiency with predominant immunoregulatory T-cell disorders +D832 Common variable immunodeficiency with autoantibodies to B- or T-cells +D838 Other common variable immunodeficiencies +D839 Common variable immunodeficiency, unspecified +D840 Lymphocyte function antigen-1 [LFA-1] defect +D841 Defects in the complement system +D848 Other specified immunodeficiencies +D849 Immunodeficiency, unspecified +D860 Sarcoidosis of lung +D861 Sarcoidosis of lymph nodes +D862 Sarcoidosis of lung with sarcoidosis of lymph nodes +D863 Sarcoidosis of skin +D8681 Sarcoid meningitis +D8682 Multiple cranial nerve palsies in sarcoidosis +D8683 Sarcoid iridocyclitis +D8684 Sarcoid pyelonephritis +D8685 Sarcoid myocarditis +D8686 Sarcoid arthropathy +D8687 Sarcoid myositis +D8689 Sarcoidosis of other sites +D869 Sarcoidosis, unspecified +D890 Polyclonal hypergammaglobulinemia +D891 Cryoglobulinemia +D892 Hypergammaglobulinemia, unspecified +D893 Immune reconstitution syndrome +D8940 Mast cell activation, unspecified +D8941 Monoclonal mast cell activation syndrome +D8942 Idiopathic mast cell activation syndrome +D8943 Secondary mast cell activation +D8949 Other mast cell activation disorder +D89810 Acute graft-versus-host disease +D89811 Chronic graft-versus-host disease +D89812 Acute on chronic graft-versus-host disease +D89813 Graft-versus-host disease, unspecified +D8982 Autoimmune lymphoproliferative syndrome [ALPS] +D8989 Other specified disorders involving the immune mechanism, not elsewhere classified +D899 Disorder involving the immune mechanism, unspecified +E000 Congenital iodine-deficiency syndrome, neurological type +E001 Congenital iodine-deficiency syndrome, myxedematous type +E002 Congenital iodine-deficiency syndrome, mixed type +E009 Congenital iodine-deficiency syndrome, unspecified +E010 Iodine-deficiency related diffuse (endemic) goiter +E011 Iodine-deficiency related multinodular (endemic) goiter +E012 Iodine-deficiency related (endemic) goiter, unspecified +E018 Other iodine-deficiency related thyroid disorders and allied conditions Y +E02 Subclinical iodine-deficiency hypothyroidism Y +E030 Congenital hypothyroidism with diffuse goiter +E031 Congenital hypothyroidism without goiter +E032 Hypothyroidism due to medicaments and other exogenous substances Y +E033 Postinfectious hypothyroidism Y +E034 Atrophy of thyroid (acquired) +E035 Myxedema coma +E038 Other specified hypothyroidism Y +E039 Hypothyroidism, unspecified Y +E040 Nontoxic diffuse goiter +E041 Nontoxic single thyroid nodule +E042 Nontoxic multinodular goiter +E048 Other specified nontoxic goiter +E049 Nontoxic goiter, unspecified +E0500 Thyrotoxicosis with diffuse goiter without thyrotoxic crisis or storm +E0501 Thyrotoxicosis with diffuse goiter with thyrotoxic crisis or storm +E0510 Thyrotoxicosis with toxic single thyroid nodule without thyrotoxic crisis or storm +E0511 Thyrotoxicosis with toxic single thyroid nodule with thyrotoxic crisis or storm +E0520 Thyrotoxicosis with toxic multinodular goiter without thyrotoxic crisis or storm +E0521 Thyrotoxicosis with toxic multinodular goiter with thyrotoxic crisis or storm +E0530 Thyrotoxicosis from ectopic thyroid tissue without thyrotoxic crisis or storm +E0531 Thyrotoxicosis from ectopic thyroid tissue with thyrotoxic crisis or storm +E0540 Thyrotoxicosis factitia without thyrotoxic crisis or storm +E0541 Thyrotoxicosis factitia with thyrotoxic crisis or storm +E0580 Other thyrotoxicosis without thyrotoxic crisis or storm +E0581 Other thyrotoxicosis with thyrotoxic crisis or storm +E0590 Thyrotoxicosis, unspecified without thyrotoxic crisis or storm +E0591 Thyrotoxicosis, unspecified with thyrotoxic crisis or storm +E060 Acute thyroiditis +E061 Subacute thyroiditis +E062 Chronic thyroiditis with transient thyrotoxicosis +E063 Autoimmune thyroiditis +E064 Drug-induced thyroiditis +E065 Other chronic thyroiditis +E069 Thyroiditis, unspecified +E070 Hypersecretion of calcitonin +E071 Dyshormogenetic goiter +E0781 Sick-euthyroid syndrome +E0789 Other specified disorders of thyroid +E079 Disorder of thyroid, unspecified +E0800 Diabetes mellitus due to underlying condition with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC) +E0801 Diabetes mellitus due to underlying condition with hyperosmolarity with coma +E0810 Diabetes mellitus due to underlying condition with ketoacidosis without coma +E0811 Diabetes mellitus due to underlying condition with ketoacidosis with coma +E0821 Diabetes mellitus due to underlying condition with diabetic nephropathy +E0822 Diabetes mellitus due to underlying condition with diabetic chronic kidney disease +E0829 Diabetes mellitus due to underlying condition with other diabetic kidney complication +E08311 Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy with macular edema +E08319 Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy without macular edema +E08321 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema +E083211 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, right eye +E083212 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, left eye +E083213 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, bilateral +E083219 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye +E08329 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema +E083291 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, right eye +E083292 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, left eye +E083293 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, bilateral +E083299 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye +E08331 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema +E083311 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, right eye +E083312 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, left eye +E083313 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, bilateral +E083319 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye +E08339 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema +E083391 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, right eye +E083392 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, left eye +E083393 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, bilateral +E083399 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye +E08341 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema +E083411 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, right eye +E083412 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, left eye +E083413 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, bilateral +E083419 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye +E08349 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema +E083491 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, right eye +E083492 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, left eye +E083493 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, bilateral +E083499 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye +E08351 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema +E083511 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, right eye +E083512 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, left eye +E083513 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, bilateral +E083519 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, unspecified eye +E08352 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula +E083521 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye +E083522 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye +E083523 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral +E083529 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye +E08353 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula +E083531 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye +E083532 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye +E083533 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral +E083539 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye +E08354 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment +E083541 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye +E083542 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye +E083543 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral +E083549 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye +E08355 Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy +E083551 Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, right eye +E083552 Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, left eye +E083553 Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, bilateral +E083559 Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, unspecified eye +E08359 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema +E083591 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, right eye +E083592 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, left eye +E083593 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, bilateral +E083599 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, unspecified eye +E0836 Diabetes mellitus due to underlying condition with diabetic cataract +E0837 Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment +E0837X1 Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, right eye +E0837X2 Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, left eye +E0837X3 Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, bilateral +E0837X9 Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, unspecified eye +E0839 Diabetes mellitus due to underlying condition with other diabetic ophthalmic complication +E0840 Diabetes mellitus due to underlying condition with diabetic neuropathy, unspecified +E0841 Diabetes mellitus due to underlying condition with diabetic mononeuropathy +E0842 Diabetes mellitus due to underlying condition with diabetic polyneuropathy +E0843 Diabetes mellitus due to underlying condition with diabetic autonomic (poly)neuropathy +E0844 Diabetes mellitus due to underlying condition with diabetic amyotrophy +E0849 Diabetes mellitus due to underlying condition with other diabetic neurological complication +E0851 Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy without gangrene +E0852 Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy with gangrene +E0859 Diabetes mellitus due to underlying condition with other circulatory complications +E08610 Diabetes mellitus due to underlying condition with diabetic neuropathic arthropathy +E08618 Diabetes mellitus due to underlying condition with other diabetic arthropathy +E08620 Diabetes mellitus due to underlying condition with diabetic dermatitis +E08621 Diabetes mellitus due to underlying condition with foot ulcer +E08622 Diabetes mellitus due to underlying condition with other skin ulcer +E08628 Diabetes mellitus due to underlying condition with other skin complications +E08630 Diabetes mellitus due to underlying condition with periodontal disease +E08638 Diabetes mellitus due to underlying condition with other oral complications +E08641 Diabetes mellitus due to underlying condition with hypoglycemia with coma +E08649 Diabetes mellitus due to underlying condition with hypoglycemia without coma +E0865 Diabetes mellitus due to underlying condition with hyperglycemia +E0869 Diabetes mellitus due to underlying condition with other specified complication +E088 Diabetes mellitus due to underlying condition with unspecified complications +E089 Diabetes mellitus due to underlying condition without complications +E0900 Drug or chemical induced diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC) +E0901 Drug or chemical induced diabetes mellitus with hyperosmolarity with coma +E0910 Drug or chemical induced diabetes mellitus with ketoacidosis without coma +E0911 Drug or chemical induced diabetes mellitus with ketoacidosis with coma +E0921 Drug or chemical induced diabetes mellitus with diabetic nephropathy +E0922 Drug or chemical induced diabetes mellitus with diabetic chronic kidney disease +E0929 Drug or chemical induced diabetes mellitus with other diabetic kidney complication +E09311 Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy with macular edema +E09319 Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy without macular edema +E09321 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema +E093211 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye +E093212 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye +E093213 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral +E093219 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye +E09329 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema +E093291 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye +E093292 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye +E093293 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral +E093299 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye +E09331 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema +E093311 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye +E093312 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye +E093313 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral +E093319 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye +E09339 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema +E093391 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye +E093392 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye +E093393 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral +E093399 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye +E09341 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema +E093411 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye +E093412 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye +E093413 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral +E093419 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye +E09349 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema +E093491 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye +E093492 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye +E093493 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral +E093499 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye +E09351 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema +E093511 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye +E093512 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye +E093513 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral +E093519 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye +E09359 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema +E093591 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye +E093592 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye +E093593 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral +E093599 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye +E0936 Drug or chemical induced diabetes mellitus with diabetic cataract +E0937X1 Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, right eye +E0937X2 Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, left eye +E0937X3 Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral +E0937X9 Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye +E0939 Drug or chemical induced diabetes mellitus with other diabetic ophthalmic complication +E0940 Drug or chemical induced diabetes mellitus with neurological complications with diabetic neuropathy, unspecified +E0941 Drug or chemical induced diabetes mellitus with neurological complications with diabetic mononeuropathy +E0942 Drug or chemical induced diabetes mellitus with neurological complications with diabetic polyneuropathy +E0943 Drug or chemical induced diabetes mellitus with neurological complications with diabetic autonomic (poly)neuropathy +E0944 Drug or chemical induced diabetes mellitus with neurological complications with diabetic amyotrophy +E0949 Drug or chemical induced diabetes mellitus with neurological complications with other diabetic neurological complication +E0951 Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy without gangrene +E0952 Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy with gangrene +E0959 Drug or chemical induced diabetes mellitus with other circulatory complications +E09610 Drug or chemical induced diabetes mellitus with diabetic neuropathic arthropathy +E09618 Drug or chemical induced diabetes mellitus with other diabetic arthropathy +E09620 Drug or chemical induced diabetes mellitus with diabetic dermatitis +E09621 Drug or chemical induced diabetes mellitus with foot ulcer +E09622 Drug or chemical induced diabetes mellitus with other skin ulcer +E09628 Drug or chemical induced diabetes mellitus with other skin complications +E09630 Drug or chemical induced diabetes mellitus with periodontal disease +E09638 Drug or chemical induced diabetes mellitus with other oral complications +E09641 Drug or chemical induced diabetes mellitus with hypoglycemia with coma +E09649 Drug or chemical induced diabetes mellitus with hypoglycemia without coma +E0965 Drug or chemical induced diabetes mellitus with hyperglycemia +E0969 Drug or chemical induced diabetes mellitus with other specified complication +E098 Drug or chemical induced diabetes mellitus with unspecified complications +E099 Drug or chemical induced diabetes mellitus without complications +E1010 Type 1 diabetes mellitus with ketoacidosis without coma Y +E1011 Type 1 diabetes mellitus with ketoacidosis with coma Y +E1021 Type 1 diabetes mellitus with diabetic nephropathy Y +E1022 Type 1 diabetes mellitus with diabetic chronic kidney disease Y +E1029 Type 1 diabetes mellitus with other diabetic kidney complication Y +E10311 Type 1 diabetes mellitus with unspecified diabetic retinopathy with macular edema Y +E10319 Type 1 diabetes mellitus with unspecified diabetic retinopathy without macular edema Y +E10321 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema Y +E103211 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye Y +E103212 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye Y +E103213 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral Y +E103219 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye Y +E10329 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema Y +E103291 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye Y +E103292 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye Y +E103293 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral Y +E103299 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye Y +E10331 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema Y +E103311 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye Y +E103312 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye Y +E103313 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral Y +E103319 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye Y +E10339 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema Y +E103391 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye Y +E103392 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye Y +E103393 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral Y +E103399 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye Y +E10341 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema Y +E103411 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye Y +E103412 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye Y +E103413 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral Y +E103419 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye Y +E10349 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema Y +E103491 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye Y +E103492 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye Y +E103493 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral Y +E103499 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye Y +E10351 Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema Y +E103511 Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye Y +E103512 Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye Y +E103513 Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral Y +E103519 Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye Y +E10352 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula Y +E103521 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye Y +E103522 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye Y +E103523 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral Y +E103529 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye Y +E10353 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula Y +E103531 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye Y +E103532 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye Y +E103533 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral Y +E103539 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye Y +E10354 Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment Y +E103541 Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye Y +E103542 Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye Y +E103543 Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral Y +E103549 Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye Y +E10355 Type 1 diabetes mellitus with stable proliferative diabetic retinopathy Y +E103551 Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, right eye Y +E103552 Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, left eye Y +E103553 Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral Y +E103559 Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye Y +E10359 Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema Y +E103591 Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye Y +E103592 Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye Y +E103593 Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral Y +E103599 Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye Y +E1036 Type 1 diabetes mellitus with diabetic cataract Y +E1037 Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment Y +E1037X1 Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye Y +E1037X2 Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye Y +E1037X3 Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral Y +E1037X9 Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye Y +E1039 Type 1 diabetes mellitus with other diabetic ophthalmic complication Y +E1040 Type 1 diabetes mellitus with diabetic neuropathy, unspecified Y +E1041 Type 1 diabetes mellitus with diabetic mononeuropathy Y +E1042 Type 1 diabetes mellitus with diabetic polyneuropathy Y +E1043 Type 1 diabetes mellitus with diabetic autonomic (poly)neuropathy Y +E1044 Type 1 diabetes mellitus with diabetic amyotrophy Y +E1049 Type 1 diabetes mellitus with other diabetic neurological complication Y +E1051 Type 1 diabetes mellitus with diabetic peripheral angiopathy without gangrene Y +E1052 Type 1 diabetes mellitus with diabetic peripheral angiopathy with gangrene Y +E1059 Type 1 diabetes mellitus with other circulatory complications Y +E10610 Type 1 diabetes mellitus with diabetic neuropathic arthropathy Y +E10618 Type 1 diabetes mellitus with other diabetic arthropathy Y +E10620 Type 1 diabetes mellitus with diabetic dermatitis Y +E10621 Type 1 diabetes mellitus with foot ulcer Y +E10622 Type 1 diabetes mellitus with other skin ulcer Y +E10628 Type 1 diabetes mellitus with other skin complications Y +E10630 Type 1 diabetes mellitus with periodontal disease Y +E10638 Type 1 diabetes mellitus with other oral complications Y +E10641 Type 1 diabetes mellitus with hypoglycemia with coma Y +E10649 Type 1 diabetes mellitus with hypoglycemia without coma Y +E1065 Type 1 diabetes mellitus with hyperglycemia Y +E1069 Type 1 diabetes mellitus with other specified complication Y +E108 Type 1 diabetes mellitus with unspecified complications Y +E109 Type 1 diabetes mellitus without complications Y +E1100 Type 2 diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC) Y +E1101 Type 2 diabetes mellitus with hyperosmolarity with coma Y +E1110 Type 2 diabetes mellitus with ketoacidosis without coma Y +E1111 Type 2 diabetes mellitus with ketoacidosis with coma Y +E1121 Type 2 diabetes mellitus with diabetic nephropathy Y +E1122 Type 2 diabetes mellitus with diabetic chronic kidney disease Y +E1129 Type 2 diabetes mellitus with other diabetic kidney complication Y +E11311 Type 2 diabetes mellitus with unspecified diabetic retinopathy with macular edema Y +E11319 Type 2 diabetes mellitus with unspecified diabetic retinopathy without macular edema Y +E11321 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema Y +E113211 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye Y +E113212 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye Y +E113213 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral Y +E113219 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye Y +E11329 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema Y +E113291 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye Y +E113292 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye Y +E113293 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral Y +E113299 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye Y +E11331 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema Y +E113311 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye Y +E113312 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye Y +E113313 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral Y +E113319 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye Y +E11339 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema Y +E113391 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye Y +E113392 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye Y +E113393 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral Y +E113399 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye Y +E11341 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema Y +E113411 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye Y +E113412 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye Y +E113413 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral Y +E113419 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye Y +E11349 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema Y +E113491 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye Y +E113492 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye Y +E113493 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral Y +E113499 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye Y +E11351 Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema Y +E113511 Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye Y +E113512 Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye Y +E113513 Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral Y +E113519 Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye Y +E113521 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye Y +E113522 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye Y +E113523 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral Y +E113529 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye Y +E113531 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye Y +E113532 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye Y +E113533 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral Y +E113539 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye Y +E113541 Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye Y +E113542 Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye Y +E113543 Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral Y +E113549 Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye Y +E113551 Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, right eye Y +E113552 Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, left eye Y +E113553 Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral Y +E113559 Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye Y +E11359 Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema Y +E113591 Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye Y +E113592 Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye Y +E113593 Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral Y +E113599 Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye Y +E1136 Type 2 diabetes mellitus with diabetic cataract Y +E1137X1 Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye Y +E1137X2 Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye Y +E1137X3 Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral Y +E1137X9 Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye Y +E1139 Type 2 diabetes mellitus with other diabetic ophthalmic complication Y +E1140 Type 2 diabetes mellitus with diabetic neuropathy, unspecified Y +E1141 Type 2 diabetes mellitus with diabetic mononeuropathy Y +E1142 Type 2 diabetes mellitus with diabetic polyneuropathy Y +E1143 Type 2 diabetes mellitus with diabetic autonomic (poly)neuropathy Y +E1144 Type 2 diabetes mellitus with diabetic amyotrophy Y +E1149 Type 2 diabetes mellitus with other diabetic neurological complication Y +E1151 Type 2 diabetes mellitus with diabetic peripheral angiopathy without gangrene Y +E1152 Type 2 diabetes mellitus with diabetic peripheral angiopathy with gangrene Y +E1159 Type 2 diabetes mellitus with other circulatory complications Y +E11610 Type 2 diabetes mellitus with diabetic neuropathic arthropathy Y +E11618 Type 2 diabetes mellitus with other diabetic arthropathy Y +E11620 Type 2 diabetes mellitus with diabetic dermatitis Y +E11621 Type 2 diabetes mellitus with foot ulcer Y +E11622 Type 2 diabetes mellitus with other skin ulcer Y +E11628 Type 2 diabetes mellitus with other skin complications Y +E11630 Type 2 diabetes mellitus with periodontal disease Y +E11638 Type 2 diabetes mellitus with other oral complications Y +E11641 Type 2 diabetes mellitus with hypoglycemia with coma Y +E11649 Type 2 diabetes mellitus with hypoglycemia without coma Y +E1165 Type 2 diabetes mellitus with hyperglycemia Y +E1169 Type 2 diabetes mellitus with other specified complication Y +E118 Type 2 diabetes mellitus with unspecified complications Y +E119 Type 2 diabetes mellitus without complications Y +E1300 Other specified diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC) Y +E1301 Other specified diabetes mellitus with hyperosmolarity with coma Y +E1310 Other specified diabetes mellitus with ketoacidosis without coma Y +E1311 Other specified diabetes mellitus with ketoacidosis with coma Y +E1321 Other specified diabetes mellitus with diabetic nephropathy Y +E1322 Other specified diabetes mellitus with diabetic chronic kidney disease Y +E1329 Other specified diabetes mellitus with other diabetic kidney complication Y +E13311 Other specified diabetes mellitus with unspecified diabetic retinopathy with macular edema Y +E13319 Other specified diabetes mellitus with unspecified diabetic retinopathy without macular edema Y +E13321 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema Y +E133211 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye Y +E133212 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye Y +E133213 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral Y +E133219 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye Y +E13329 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema Y +E133291 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye Y +E133292 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye Y +E133293 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral Y +E133299 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye Y +E13331 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema Y +E133311 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye Y +E133312 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye Y +E133313 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral Y +E133319 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye Y +E13339 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema Y +E133391 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye Y +E133392 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye Y +E133393 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral Y +E133399 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye Y +E13341 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema Y +E133411 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye Y +E133412 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye Y +E133413 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral Y +E133419 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye Y +E13349 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema Y +E133491 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye Y +E133492 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye Y +E133493 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral Y +E133499 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye Y +E13351 Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema Y +E133511 Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye Y +E133512 Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye Y +E133513 Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral Y +E133519 Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye Y +E133521 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye Y +E133522 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye Y +E133523 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral Y +E133529 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye Y +E133531 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye Y +E133532 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye Y +E133533 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral Y +E133539 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye Y +E133541 Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye Y +E133542 Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye Y +E133543 Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral Y +E133549 Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye Y +E133551 Other specified diabetes mellitus with stable proliferative diabetic retinopathy, right eye Y +E133552 Other specified diabetes mellitus with stable proliferative diabetic retinopathy, left eye Y +E133553 Other specified diabetes mellitus with stable proliferative diabetic retinopathy, bilateral Y +E133559 Other specified diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye Y +E13359 Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema Y +E133591 Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye Y +E133592 Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye Y +E133593 Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral Y +E133599 Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye Y +E1336 Other specified diabetes mellitus with diabetic cataract Y +E1337X1 Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, right eye Y +E1337X2 Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, left eye Y +E1337X3 Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral Y +E1337X9 Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye Y +E1339 Other specified diabetes mellitus with other diabetic ophthalmic complication Y +E1340 Other specified diabetes mellitus with diabetic neuropathy, unspecified Y +E1341 Other specified diabetes mellitus with diabetic mononeuropathy Y +E1342 Other specified diabetes mellitus with diabetic polyneuropathy Y +E1343 Other specified diabetes mellitus with diabetic autonomic (poly)neuropathy Y +E1344 Other specified diabetes mellitus with diabetic amyotrophy Y +E1349 Other specified diabetes mellitus with other diabetic neurological complication Y +E1351 Other specified diabetes mellitus with diabetic peripheral angiopathy without gangrene Y +E1352 Other specified diabetes mellitus with diabetic peripheral angiopathy with gangrene Y +E1359 Other specified diabetes mellitus with other circulatory complications Y +E13610 Other specified diabetes mellitus with diabetic neuropathic arthropathy Y +E13618 Other specified diabetes mellitus with other diabetic arthropathy Y +E13620 Other specified diabetes mellitus with diabetic dermatitis Y +E13621 Other specified diabetes mellitus with foot ulcer Y +E13622 Other specified diabetes mellitus with other skin ulcer Y +E13628 Other specified diabetes mellitus with other skin complications Y +E13630 Other specified diabetes mellitus with periodontal disease Y +E13638 Other specified diabetes mellitus with other oral complications Y +E13641 Other specified diabetes mellitus with hypoglycemia with coma Y +E13649 Other specified diabetes mellitus with hypoglycemia without coma Y +E1365 Other specified diabetes mellitus with hyperglycemia Y +E1369 Other specified diabetes mellitus with other specified complication Y +E138 Other specified diabetes mellitus with unspecified complications Y +E139 Other specified diabetes mellitus without complications Y +E15 Nondiabetic hypoglycemic coma +E160 Drug-induced hypoglycemia without coma +E161 Other hypoglycemia +E162 Hypoglycemia, unspecified +E163 Increased secretion of glucagon +E164 Increased secretion of gastrin +E168 Other specified disorders of pancreatic internal secretion +E169 Disorder of pancreatic internal secretion, unspecified +E200 Idiopathic hypoparathyroidism +E201 Pseudohypoparathyroidism +E208 Other hypoparathyroidism +E209 Hypoparathyroidism, unspecified +E210 Primary hyperparathyroidism +E211 Secondary hyperparathyroidism, not elsewhere classified +E212 Other hyperparathyroidism +E213 Hyperparathyroidism, unspecified +E214 Other specified disorders of parathyroid gland +E215 Disorder of parathyroid gland, unspecified +E220 Acromegaly and pituitary gigantism +E221 Hyperprolactinemia +E222 Syndrome of inappropriate secretion of antidiuretic hormone +E228 Other hyperfunction of pituitary gland +E229 Hyperfunction of pituitary gland, unspecified +E230 Hypopituitarism +E231 Drug-induced hypopituitarism +E232 Diabetes insipidus +E233 Hypothalamic dysfunction, not elsewhere classified +E236 Other disorders of pituitary gland +E237 Disorder of pituitary gland, unspecified +E240 Pituitary-dependent Cushing's disease +E241 Nelson's syndrome +E242 Drug-induced Cushing's syndrome +E243 Ectopic ACTH syndrome +E244 Alcohol-induced pseudo-Cushing's syndrome +E248 Other Cushing's syndrome +E249 Cushing's syndrome, unspecified +E250 Congenital adrenogenital disorders associated with enzyme deficiency +E258 Other adrenogenital disorders +E259 Adrenogenital disorder, unspecified +E2601 Conn's syndrome +E2602 Glucocorticoid-remediable aldosteronism +E2609 Other primary hyperaldosteronism +E261 Secondary hyperaldosteronism +E2681 Bartter's syndrome +E2689 Other hyperaldosteronism +E269 Hyperaldosteronism, unspecified +E270 Other adrenocortical overactivity +E271 Primary adrenocortical insufficiency +E272 Addisonian crisis +E273 Drug-induced adrenocortical insufficiency +E2740 Unspecified adrenocortical insufficiency +E2749 Other adrenocortical insufficiency +E275 Adrenomedullary hyperfunction +E278 Other specified disorders of adrenal gland +E279 Disorder of adrenal gland, unspecified +E280 Estrogen excess +E281 Androgen excess +E282 Polycystic ovarian syndrome +E28310 Symptomatic premature menopause +E28319 Asymptomatic premature menopause +E2839 Other primary ovarian failure +E288 Other ovarian dysfunction +E289 Ovarian dysfunction, unspecified +E290 Testicular hyperfunction +E291 Testicular hypofunction +E298 Other testicular dysfunction +E299 Testicular dysfunction, unspecified +E300 Delayed puberty +E301 Precocious puberty +E308 Other disorders of puberty +E309 Disorder of puberty, unspecified +E310 Autoimmune polyglandular failure +E311 Polyglandular hyperfunction +E3120 Multiple endocrine neoplasia [MEN] syndrome, unspecified +E3121 Multiple endocrine neoplasia [MEN] type I +E3122 Multiple endocrine neoplasia [MEN] type IIA +E3123 Multiple endocrine neoplasia [MEN] type IIB +E318 Other polyglandular dysfunction +E319 Polyglandular dysfunction, unspecified +E320 Persistent hyperplasia of thymus +E321 Abscess of thymus +E328 Other diseases of thymus +E329 Disease of thymus, unspecified +E340 Carcinoid syndrome +E341 Other hypersecretion of intestinal hormones +E342 Ectopic hormone secretion, not elsewhere classified +E343 Short stature due to endocrine disorder +E344 Constitutional tall stature +E3450 Androgen insensitivity syndrome, unspecified +E3451 Complete androgen insensitivity syndrome +E3452 Partial androgen insensitivity syndrome +E348 Other specified endocrine disorders +E349 Endocrine disorder, unspecified +E35 Disorders of endocrine glands in diseases classified elsewhere +E3601 Intraoperative hemorrhage and hematoma of an endocrine system organ or structure complicating an endocrine system procedure +E3602 Intraoperative hemorrhage and hematoma of an endocrine system organ or structure complicating other procedure +E3611 Accidental puncture and laceration of an endocrine system organ or structure during an endocrine system procedure +E3612 Accidental puncture and laceration of an endocrine system organ or structure during other procedure +E368 Other intraoperative complications of endocrine system +E40 Kwashiorkor +E41 Nutritional marasmus +E42 Marasmic kwashiorkor +E43 Unspecified severe protein-calorie malnutrition +E440 Moderate protein-calorie malnutrition +E441 Mild protein-calorie malnutrition +E45 Retarded development following protein-calorie malnutrition +E46 Unspecified protein-calorie malnutrition +E500 Vitamin A deficiency with conjunctival xerosis +E501 Vitamin A deficiency with Bitot's spot and conjunctival xerosis +E502 Vitamin A deficiency with corneal xerosis +E503 Vitamin A deficiency with corneal ulceration and xerosis +E504 Vitamin A deficiency with keratomalacia +E505 Vitamin A deficiency with night blindness +E506 Vitamin A deficiency with xerophthalmic scars of cornea +E507 Other ocular manifestations of vitamin A deficiency +E508 Other manifestations of vitamin A deficiency +E509 Vitamin A deficiency, unspecified +E5111 Dry beriberi +E5112 Wet beriberi +E512 Wernicke's encephalopathy +E518 Other manifestations of thiamine deficiency +E519 Thiamine deficiency, unspecified +E52 Niacin deficiency [pellagra] +E530 Riboflavin deficiency +E531 Pyridoxine deficiency +E538 Deficiency of other specified B group vitamins +E539 Vitamin B deficiency, unspecified +E54 Ascorbic acid deficiency +E550 Rickets, active +E559 Vitamin D deficiency, unspecified +E560 Deficiency of vitamin E +E561 Deficiency of vitamin K +E568 Deficiency of other vitamins +E569 Vitamin deficiency, unspecified +E58 Dietary calcium deficiency +E59 Dietary selenium deficiency +E60 Dietary zinc deficiency +E610 Copper deficiency +E611 Iron deficiency +E612 Magnesium deficiency +E613 Manganese deficiency +E614 Chromium deficiency +E615 Molybdenum deficiency +E616 Vanadium deficiency +E617 Deficiency of multiple nutrient elements +E618 Deficiency of other specified nutrient elements +E619 Deficiency of nutrient element, unspecified +E630 Essential fatty acid [EFA] deficiency +E631 Imbalance of constituents of food intake +E638 Other specified nutritional deficiencies +E639 Nutritional deficiency, unspecified +E640 Sequelae of protein-calorie malnutrition +E641 Sequelae of vitamin A deficiency +E642 Sequelae of vitamin C deficiency +E643 Sequelae of rickets +E648 Sequelae of other nutritional deficiencies +E649 Sequelae of unspecified nutritional deficiency +E65 Localized adiposity +E6601 Morbid (severe) obesity due to excess calories +E6609 Other obesity due to excess calories +E661 Drug-induced obesity +E662 Morbid (severe) obesity with alveolar hypoventilation +E663 Overweight +E668 Other obesity +E669 Obesity, unspecified +E670 Hypervitaminosis A +E671 Hypercarotenemia +E672 Megavitamin-B6 syndrome +E673 Hypervitaminosis D +E678 Other specified hyperalimentation +E68 Sequelae of hyperalimentation +E700 Classical phenylketonuria +E701 Other hyperphenylalaninemias +E7020 Disorder of tyrosine metabolism, unspecified +E7021 Tyrosinemia +E7029 Other disorders of tyrosine metabolism +E7030 Albinism, unspecified +E70310 X-linked ocular albinism +E70311 Autosomal recessive ocular albinism +E70318 Other ocular albinism +E70319 Ocular albinism, unspecified +E70320 Tyrosinase negative oculocutaneous albinism +E70321 Tyrosinase positive oculocutaneous albinism +E70328 Other oculocutaneous albinism +E70329 Oculocutaneous albinism, unspecified +E70330 Chediak-Higashi syndrome +E70331 Hermansky-Pudlak syndrome +E70338 Other albinism with hematologic abnormality +E70339 Albinism with hematologic abnormality, unspecified +E7039 Other specified albinism +E7040 Disorders of histidine metabolism, unspecified +E7041 Histidinemia +E7049 Other disorders of histidine metabolism +E705 Disorders of tryptophan metabolism +E708 Other disorders of aromatic amino-acid metabolism +E709 Disorder of aromatic amino-acid metabolism, unspecified +E710 Maple-syrup-urine disease +E71110 Isovaleric acidemia +E71111 3-methylglutaconic aciduria +E71118 Other branched-chain organic acidurias +E71120 Methylmalonic acidemia +E71121 Propionic acidemia +E71128 Other disorders of propionate metabolism +E7119 Other disorders of branched-chain amino-acid metabolism +E712 Disorder of branched-chain amino-acid metabolism, unspecified +E7130 Disorder of fatty-acid metabolism, unspecified Y +E71310 Long chain/very long chain acyl CoA dehydrogenase deficiency +E71311 Medium chain acyl CoA dehydrogenase deficiency +E71312 Short chain acyl CoA dehydrogenase deficiency +E71313 Glutaric aciduria type II +E71314 Muscle carnitine palmitoyltransferase deficiency +E71318 Other disorders of fatty-acid oxidation +E7132 Disorders of ketone metabolism +E7139 Other disorders of fatty-acid metabolism +E7140 Disorder of carnitine metabolism, unspecified +E7141 Primary carnitine deficiency +E7142 Carnitine deficiency due to inborn errors of metabolism +E7143 Iatrogenic carnitine deficiency +E71440 Ruvalcaba-Myhre-Smith syndrome +E71448 Other secondary carnitine deficiency +E7150 Peroxisomal disorder, unspecified +E71510 Zellweger syndrome +E71511 Neonatal adrenoleukodystrophy +E71518 Other disorders of peroxisome biogenesis +E71520 Childhood cerebral X-linked adrenoleukodystrophy +E71521 Adolescent X-linked adrenoleukodystrophy +E71522 Adrenomyeloneuropathy +E71528 Other X-linked adrenoleukodystrophy +E71529 X-linked adrenoleukodystrophy, unspecified type +E7153 Other group 2 peroxisomal disorders +E71540 Rhizomelic chondrodysplasia punctata +E71541 Zellweger-like syndrome +E71542 Other group 3 peroxisomal disorders +E71548 Other peroxisomal disorders +E7200 Disorders of amino-acid transport, unspecified +E7201 Cystinuria +E7202 Hartnup's disease +E7203 Lowe's syndrome +E7204 Cystinosis +E7209 Other disorders of amino-acid transport +E7210 Disorders of sulfur-bearing amino-acid metabolism, unspecified +E7211 Homocystinuria +E7212 Methylenetetrahydrofolate reductase deficiency +E7219 Other disorders of sulfur-bearing amino-acid metabolism +E7220 Disorder of urea cycle metabolism, unspecified +E7221 Argininemia +E7222 Arginosuccinic aciduria +E7223 Citrullinemia +E7229 Other disorders of urea cycle metabolism +E723 Disorders of lysine and hydroxylysine metabolism +E724 Disorders of ornithine metabolism +E7250 Disorder of glycine metabolism, unspecified +E7251 Non-ketotic hyperglycinemia +E7252 Trimethylaminuria +E7253 Primary hyperoxaluria +E7259 Other disorders of glycine metabolism +E728 Other specified disorders of amino-acid metabolism +E7281 Disorders of gamma aminobutyric acid metabolism +E7289 Other specified disorders of amino-acid metabolism +E729 Disorder of amino-acid metabolism, unspecified +E730 Congenital lactase deficiency +E731 Secondary lactase deficiency +E738 Other lactose intolerance +E739 Lactose intolerance, unspecified +E7400 Glycogen storage disease, unspecified +E7401 von Gierke disease +E7402 Pompe disease +E7403 Cori disease +E7404 McArdle disease +E7409 Other glycogen storage disease +E7410 Disorder of fructose metabolism, unspecified +E7411 Essential fructosuria +E7412 Hereditary fructose intolerance +E7419 Other disorders of fructose metabolism +E7420 Disorders of galactose metabolism, unspecified +E7421 Galactosemia +E7429 Other disorders of galactose metabolism +E7431 Sucrase-isomaltase deficiency +E7439 Other disorders of intestinal carbohydrate absorption +E744 Disorders of pyruvate metabolism and gluconeogenesis +E748 Other specified disorders of carbohydrate metabolism +E749 Disorder of carbohydrate metabolism, unspecified +E7500 GM2 gangliosidosis, unspecified +E7501 Sandhoff disease +E7502 Tay-Sachs disease +E7509 Other GM2 gangliosidosis +E7510 Unspecified gangliosidosis +E7511 Mucolipidosis IV +E7519 Other gangliosidosis +E7521 Fabry (-Anderson) disease Y +E7522 Gaucher disease Y +E7523 Krabbe disease +E75240 Niemann-Pick disease type A Y +E75241 Niemann-Pick disease type B Y +E75242 Niemann-Pick disease type C Y +E75243 Niemann-Pick disease type D Y +E75248 Other Niemann-Pick disease Y +E75249 Niemann-Pick disease, unspecified Y +E7525 Metachromatic leukodystrophy +E7526 Sulfatase deficiency +E7529 Other sphingolipidosis +E753 Sphingolipidosis, unspecified Y +E754 Neuronal ceroid lipofuscinosis +E755 Other lipid storage disorders Y +E756 Lipid storage disorder, unspecified Y +E7601 Hurler's syndrome +E7602 Hurler-Scheie syndrome +E7603 Scheie's syndrome +E761 Mucopolysaccharidosis, type II +E76210 Morquio A mucopolysaccharidoses +E76211 Morquio B mucopolysaccharidoses +E76219 Morquio mucopolysaccharidoses, unspecified +E7622 Sanfilippo mucopolysaccharidoses +E7629 Other mucopolysaccharidoses +E763 Mucopolysaccharidosis, unspecified +E768 Other disorders of glucosaminoglycan metabolism +E769 Glucosaminoglycan metabolism disorder, unspecified +E770 Defects in post-translational modification of lysosomal enzymes Y +E771 Defects in glycoprotein degradation Y +E778 Other disorders of glycoprotein metabolism Y +E779 Disorder of glycoprotein metabolism, unspecified Y +E780 Pure hypercholesterolemia Y +E7800 Pure hypercholesterolemia, unspecified +E7801 Familial hypercholesterolemia +E781 Pure hyperglyceridemia Y +E782 Mixed hyperlipidemia Y +E783 Hyperchylomicronemia Y +E784 Other hyperlipidemia Y +E7841 Elevated Lipoprotein(a) Y +E7849 Other hyperlipidemia Y +E785 Hyperlipidemia, unspecified Y +E786 Lipoprotein deficiency Y +E7870 Disorder of bile acid and cholesterol metabolism, unspecified Y +E7871 Barth syndrome +E7872 Smith-Lemli-Opitz syndrome +E7879 Other disorders of bile acid and cholesterol metabolism Y +E7881 Lipoid dermatoarthritis Y +E7889 Other lipoprotein metabolism disorders Y +E789 Disorder of lipoprotein metabolism, unspecified Y +E790 Hyperuricemia without signs of inflammatory arthritis and tophaceous disease +E791 Lesch-Nyhan syndrome +E792 Myoadenylate deaminase deficiency +E798 Other disorders of purine and pyrimidine metabolism +E799 Disorder of purine and pyrimidine metabolism, unspecified +E800 Hereditary erythropoietic porphyria +E801 Porphyria cutanea tarda +E8020 Unspecified porphyria +E8021 Acute intermittent (hepatic) porphyria +E8029 Other porphyria +E803 Defects of catalase and peroxidase +E804 Gilbert syndrome +E805 Crigler-Najjar syndrome +E806 Other disorders of bilirubin metabolism +E807 Disorder of bilirubin metabolism, unspecified +E8300 Disorder of copper metabolism, unspecified +E8301 Wilson's disease +E8309 Other disorders of copper metabolism +E8310 Disorder of iron metabolism, unspecified +E83110 Hereditary hemochromatosis +E83111 Hemochromatosis due to repeated red blood cell transfusions +E83118 Other hemochromatosis +E83119 Hemochromatosis, unspecified +E8319 Other disorders of iron metabolism +E832 Disorders of zinc metabolism +E8330 Disorder of phosphorus metabolism, unspecified +E8331 Familial hypophosphatemia +E8332 Hereditary vitamin D-dependent rickets (type 1) (type 2) +E8339 Other disorders of phosphorus metabolism +E8340 Disorders of magnesium metabolism, unspecified +E8341 Hypermagnesemia +E8342 Hypomagnesemia +E8349 Other disorders of magnesium metabolism +E8350 Unspecified disorder of calcium metabolism +E8351 Hypocalcemia +E8352 Hypercalcemia +E8359 Other disorders of calcium metabolism +E8381 Hungry bone syndrome +E8389 Other disorders of mineral metabolism +E839 Disorder of mineral metabolism, unspecified +E840 Cystic fibrosis with pulmonary manifestations +E8411 Meconium ileus in cystic fibrosis +E8419 Cystic fibrosis with other intestinal manifestations +E848 Cystic fibrosis with other manifestations +E849 Cystic fibrosis, unspecified +E850 Non-neuropathic heredofamilial amyloidosis +E851 Neuropathic heredofamilial amyloidosis +E852 Heredofamilial amyloidosis, unspecified +E853 Secondary systemic amyloidosis +E854 Organ-limited amyloidosis +E858 Other amyloidosis +E8581 Light chain (AL) amyloidosis +E8582 Wild-type transthyretin-related (ATTR) amyloidosis +E8589 Other amyloidosis +E859 Amyloidosis, unspecified +E860 Dehydration +E861 Hypovolemia +E869 Volume depletion, unspecified +E870 Hyperosmolality and hypernatremia +E871 Hypo-osmolality and hyponatremia +E872 Acidosis +E873 Alkalosis +E874 Mixed disorder of acid-base balance +E875 Hyperkalemia +E876 Hypokalemia +E8770 Fluid overload, unspecified +E8771 Transfusion associated circulatory overload +E8779 Other fluid overload +E878 Other disorders of electrolyte and fluid balance, not elsewhere classified +E8801 Alpha-1-antitrypsin deficiency +E8802 Plasminogen deficiency +E8809 Other disorders of plasma-protein metabolism, not elsewhere classified +E881 Lipodystrophy, not elsewhere classified Y +E882 Lipomatosis, not elsewhere classified Y +E883 Tumor lysis syndrome +E8840 Mitochondrial metabolism disorder, unspecified +E8841 MELAS syndrome +E8842 MERRF syndrome +E8849 Other mitochondrial metabolism disorders +E8881 Metabolic syndrome +E8889 Other specified metabolic disorders Y +E889 Metabolic disorder, unspecified +E890 Postprocedural hypothyroidism Y +E891 Postprocedural hypoinsulinemia +E892 Postprocedural hypoparathyroidism +E893 Postprocedural hypopituitarism +E8940 Asymptomatic postprocedural ovarian failure +E8941 Symptomatic postprocedural ovarian failure +E895 Postprocedural testicular hypofunction +E896 Postprocedural adrenocortical (-medullary) hypofunction +E89810 Postprocedural hemorrhage of an endocrine system organ or structure following an endocrine system procedure +E89811 Postprocedural hemorrhage of an endocrine system organ or structure following other procedure +E89820 Postprocedural hematoma of an endocrine system organ or structure following an endocrine system procedure +E89821 Postprocedural hematoma of an endocrine system organ or structure following other procedure +E89822 Postprocedural seroma of an endocrine system organ or structure following an endocrine system procedure +E89823 Postprocedural seroma of an endocrine system organ or structure following other procedure +E8989 Other postprocedural endocrine and metabolic complications and disorders +F0150 Vascular dementia without behavioral disturbance +F0151 Vascular dementia with behavioral disturbance +F0280 Dementia in other diseases classified elsewhere without behavioral disturbance +F0281 Dementia in other diseases classified elsewhere with behavioral disturbance +F0390 Unspecified dementia without behavioral disturbance +F0391 Unspecified dementia with behavioral disturbance +F04 Amnestic disorder due to known physiological condition +F05 Delirium due to known physiological condition +F060 Psychotic disorder with hallucinations due to known physiological condition +F061 Catatonic disorder due to known physiological condition +F062 Psychotic disorder with delusions due to known physiological condition +F0630 Mood disorder due to known physiological condition, unspecified +F0631 Mood disorder due to known physiological condition with depressive features +F0632 Mood disorder due to known physiological condition with major depressive-like episode +F0633 Mood disorder due to known physiological condition with manic features +F0634 Mood disorder due to known physiological condition with mixed features +F064 Anxiety disorder due to known physiological condition +F068 Other specified mental disorders due to known physiological condition +F070 Personality change due to known physiological condition +F0781 Postconcussional syndrome +F0789 Other personality and behavioral disorders due to known physiological condition +F079 Unspecified personality and behavioral disorder due to known physiological condition +F09 Unspecified mental disorder due to known physiological condition +F1010 Alcohol abuse, uncomplicated +F1011 Alcohol abuse, in remission +F10120 Alcohol abuse with intoxication, uncomplicated +F10121 Alcohol abuse with intoxication delirium +F10129 Alcohol abuse with intoxication, unspecified +F1014 Alcohol abuse with alcohol-induced mood disorder +F10150 Alcohol abuse with alcohol-induced psychotic disorder with delusions +F10151 Alcohol abuse with alcohol-induced psychotic disorder with hallucinations +F10159 Alcohol abuse with alcohol-induced psychotic disorder, unspecified +F10180 Alcohol abuse with alcohol-induced anxiety disorder +F10181 Alcohol abuse with alcohol-induced sexual dysfunction +F10182 Alcohol abuse with alcohol-induced sleep disorder +F10188 Alcohol abuse with other alcohol-induced disorder +F1019 Alcohol abuse with unspecified alcohol-induced disorder +F1020 Alcohol dependence, uncomplicated +F1021 Alcohol dependence, in remission +F10220 Alcohol dependence with intoxication, uncomplicated +F10221 Alcohol dependence with intoxication delirium +F10229 Alcohol dependence with intoxication, unspecified +F10230 Alcohol dependence with withdrawal, uncomplicated +F10231 Alcohol dependence with withdrawal delirium +F10232 Alcohol dependence with withdrawal with perceptual disturbance +F10239 Alcohol dependence with withdrawal, unspecified +F1024 Alcohol dependence with alcohol-induced mood disorder +F10250 Alcohol dependence with alcohol-induced psychotic disorder with delusions +F10251 Alcohol dependence with alcohol-induced psychotic disorder with hallucinations +F10259 Alcohol dependence with alcohol-induced psychotic disorder, unspecified +F1026 Alcohol dependence with alcohol-induced persisting amnestic disorder +F1027 Alcohol dependence with alcohol-induced persisting dementia +F10280 Alcohol dependence with alcohol-induced anxiety disorder +F10281 Alcohol dependence with alcohol-induced sexual dysfunction +F10282 Alcohol dependence with alcohol-induced sleep disorder +F10288 Alcohol dependence with other alcohol-induced disorder +F1029 Alcohol dependence with unspecified alcohol-induced disorder +F10920 Alcohol use, unspecified with intoxication, uncomplicated +F10921 Alcohol use, unspecified with intoxication delirium +F10929 Alcohol use, unspecified with intoxication, unspecified +F1094 Alcohol use, unspecified with alcohol-induced mood disorder +F10950 Alcohol use, unspecified with alcohol-induced psychotic disorder with delusions +F10951 Alcohol use, unspecified with alcohol-induced psychotic disorder with hallucinations +F10959 Alcohol use, unspecified with alcohol-induced psychotic disorder, unspecified +F1096 Alcohol use, unspecified with alcohol-induced persisting amnestic disorder +F1097 Alcohol use, unspecified with alcohol-induced persisting dementia +F10980 Alcohol use, unspecified with alcohol-induced anxiety disorder +F10981 Alcohol use, unspecified with alcohol-induced sexual dysfunction +F10982 Alcohol use, unspecified with alcohol-induced sleep disorder +F10988 Alcohol use, unspecified with other alcohol-induced disorder +F1099 Alcohol use, unspecified with unspecified alcohol-induced disorder +F1110 Opioid abuse, uncomplicated +F1111 Opioid abuse, in remission +F11120 Opioid abuse with intoxication, uncomplicated +F11121 Opioid abuse with intoxication delirium +F11122 Opioid abuse with intoxication with perceptual disturbance +F11129 Opioid abuse with intoxication, unspecified +F1114 Opioid abuse with opioid-induced mood disorder +F11150 Opioid abuse with opioid-induced psychotic disorder with delusions +F11151 Opioid abuse with opioid-induced psychotic disorder with hallucinations +F11159 Opioid abuse with opioid-induced psychotic disorder, unspecified +F11181 Opioid abuse with opioid-induced sexual dysfunction +F11182 Opioid abuse with opioid-induced sleep disorder +F11188 Opioid abuse with other opioid-induced disorder +F1119 Opioid abuse with unspecified opioid-induced disorder +F1120 Opioid dependence, uncomplicated +F1121 Opioid dependence, in remission +F11220 Opioid dependence with intoxication, uncomplicated +F11221 Opioid dependence with intoxication delirium +F11222 Opioid dependence with intoxication with perceptual disturbance +F11229 Opioid dependence with intoxication, unspecified +F1123 Opioid dependence with withdrawal +F1124 Opioid dependence with opioid-induced mood disorder +F11250 Opioid dependence with opioid-induced psychotic disorder with delusions +F11251 Opioid dependence with opioid-induced psychotic disorder with hallucinations +F11259 Opioid dependence with opioid-induced psychotic disorder, unspecified +F11281 Opioid dependence with opioid-induced sexual dysfunction +F11282 Opioid dependence with opioid-induced sleep disorder +F11288 Opioid dependence with other opioid-induced disorder +F1129 Opioid dependence with unspecified opioid-induced disorder +F1190 Opioid use, unspecified, uncomplicated +F11920 Opioid use, unspecified with intoxication, uncomplicated +F11921 Opioid use, unspecified with intoxication delirium +F11922 Opioid use, unspecified with intoxication with perceptual disturbance +F11929 Opioid use, unspecified with intoxication, unspecified +F1193 Opioid use, unspecified with withdrawal +F1194 Opioid use, unspecified with opioid-induced mood disorder +F11950 Opioid use, unspecified with opioid-induced psychotic disorder with delusions +F11951 Opioid use, unspecified with opioid-induced psychotic disorder with hallucinations +F11959 Opioid use, unspecified with opioid-induced psychotic disorder, unspecified +F11981 Opioid use, unspecified with opioid-induced sexual dysfunction +F11982 Opioid use, unspecified with opioid-induced sleep disorder +F11988 Opioid use, unspecified with other opioid-induced disorder +F1199 Opioid use, unspecified with unspecified opioid-induced disorder +F1210 Cannabis abuse, uncomplicated +F1211 Cannabis abuse, in remission +F12120 Cannabis abuse with intoxication, uncomplicated +F12121 Cannabis abuse with intoxication delirium +F12122 Cannabis abuse with intoxication with perceptual disturbance +F12129 Cannabis abuse with intoxication, unspecified +F12150 Cannabis abuse with psychotic disorder with delusions +F12151 Cannabis abuse with psychotic disorder with hallucinations +F12159 Cannabis abuse with psychotic disorder, unspecified +F12180 Cannabis abuse with cannabis-induced anxiety disorder +F12188 Cannabis abuse with other cannabis-induced disorder +F1219 Cannabis abuse with unspecified cannabis-induced disorder +F1220 Cannabis dependence, uncomplicated +F1221 Cannabis dependence, in remission +F12220 Cannabis dependence with intoxication, uncomplicated +F12221 Cannabis dependence with intoxication delirium +F12222 Cannabis dependence with intoxication with perceptual disturbance +F12229 Cannabis dependence with intoxication, unspecified +F1223 Cannabis dependence with withdrawal +F12250 Cannabis dependence with psychotic disorder with delusions +F12251 Cannabis dependence with psychotic disorder with hallucinations +F12259 Cannabis dependence with psychotic disorder, unspecified +F12280 Cannabis dependence with cannabis-induced anxiety disorder +F12288 Cannabis dependence with other cannabis-induced disorder +F1229 Cannabis dependence with unspecified cannabis-induced disorder +F1290 Cannabis use, unspecified, uncomplicated +F12920 Cannabis use, unspecified with intoxication, uncomplicated +F12921 Cannabis use, unspecified with intoxication delirium +F12922 Cannabis use, unspecified with intoxication with perceptual disturbance +F12929 Cannabis use, unspecified with intoxication, unspecified +F1293 Cannabis use, unspecified with withdrawal +F12950 Cannabis use, unspecified with psychotic disorder with delusions +F12951 Cannabis use, unspecified with psychotic disorder with hallucinations +F12959 Cannabis use, unspecified with psychotic disorder, unspecified +F12980 Cannabis use, unspecified with anxiety disorder +F12988 Cannabis use, unspecified with other cannabis-induced disorder +F1299 Cannabis use, unspecified with unspecified cannabis-induced disorder +F1310 Sedative, hypnotic or anxiolytic abuse, uncomplicated +F1311 Sedative, hypnotic or anxiolytic abuse, in remission +F13120 Sedative, hypnotic or anxiolytic abuse with intoxication, uncomplicated +F13121 Sedative, hypnotic or anxiolytic abuse with intoxication delirium +F13129 Sedative, hypnotic or anxiolytic abuse with intoxication, unspecified +F1314 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced mood disorder +F13150 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions +F13151 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations +F13159 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified +F13180 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced anxiety disorder +F13181 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced sexual dysfunction +F13182 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced sleep disorder +F13188 Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorder +F1319 Sedative, hypnotic or anxiolytic abuse with unspecified sedative, hypnotic or anxiolytic-induced disorder +F1320 Sedative, hypnotic or anxiolytic dependence, uncomplicated +F1321 Sedative, hypnotic or anxiolytic dependence, in remission +F13220 Sedative, hypnotic or anxiolytic dependence with intoxication, uncomplicated +F13221 Sedative, hypnotic or anxiolytic dependence with intoxication delirium +F13229 Sedative, hypnotic or anxiolytic dependence with intoxication, unspecified +F13230 Sedative, hypnotic or anxiolytic dependence with withdrawal, uncomplicated +F13231 Sedative, hypnotic or anxiolytic dependence with withdrawal delirium +F13232 Sedative, hypnotic or anxiolytic dependence with withdrawal with perceptual disturbance +F13239 Sedative, hypnotic or anxiolytic dependence with withdrawal, unspecified +F1324 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced mood disorder +F13250 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions +F13251 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations +F13259 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified +F1326 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced persisting amnestic disorder +F1327 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced persisting dementia +F13280 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced anxiety disorder +F13281 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced sexual dysfunction +F13282 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced sleep disorder +F13288 Sedative, hypnotic or anxiolytic dependence with other sedative, hypnotic or anxiolytic-induced disorder +F1329 Sedative, hypnotic or anxiolytic dependence with unspecified sedative, hypnotic or anxiolytic-induced disorder +F1390 Sedative, hypnotic, or anxiolytic use, unspecified, uncomplicated +F13920 Sedative, hypnotic or anxiolytic use, unspecified with intoxication, uncomplicated +F13921 Sedative, hypnotic or anxiolytic use, unspecified with intoxication delirium +F13929 Sedative, hypnotic or anxiolytic use, unspecified with intoxication, unspecified +F13930 Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, uncomplicated +F13931 Sedative, hypnotic or anxiolytic use, unspecified with withdrawal delirium +F13932 Sedative, hypnotic or anxiolytic use, unspecified with withdrawal with perceptual disturbances +F13939 Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, unspecified +F1394 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced mood disorder +F13950 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions +F13951 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations +F13959 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified +F1396 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced persisting amnestic disorder +F1397 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced persisting dementia +F13980 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced anxiety disorder +F13981 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced sexual dysfunction +F13982 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced sleep disorder +F13988 Sedative, hypnotic or anxiolytic use, unspecified with other sedative, hypnotic or anxiolytic-induced disorder +F1399 Sedative, hypnotic or anxiolytic use, unspecified with unspecified sedative, hypnotic or anxiolytic-induced disorder +F1410 Cocaine abuse, uncomplicated +F1411 Cocaine abuse, in remission +F14120 Cocaine abuse with intoxication, uncomplicated +F14121 Cocaine abuse with intoxication with delirium +F14122 Cocaine abuse with intoxication with perceptual disturbance +F14129 Cocaine abuse with intoxication, unspecified +F1414 Cocaine abuse with cocaine-induced mood disorder +F14150 Cocaine abuse with cocaine-induced psychotic disorder with delusions +F14151 Cocaine abuse with cocaine-induced psychotic disorder with hallucinations +F14159 Cocaine abuse with cocaine-induced psychotic disorder, unspecified +F14180 Cocaine abuse with cocaine-induced anxiety disorder +F14181 Cocaine abuse with cocaine-induced sexual dysfunction +F14182 Cocaine abuse with cocaine-induced sleep disorder +F14188 Cocaine abuse with other cocaine-induced disorder +F1419 Cocaine abuse with unspecified cocaine-induced disorder +F1420 Cocaine dependence, uncomplicated +F1421 Cocaine dependence, in remission +F14220 Cocaine dependence with intoxication, uncomplicated +F14221 Cocaine dependence with intoxication delirium +F14222 Cocaine dependence with intoxication with perceptual disturbance +F14229 Cocaine dependence with intoxication, unspecified +F1423 Cocaine dependence with withdrawal +F1424 Cocaine dependence with cocaine-induced mood disorder +F14250 Cocaine dependence with cocaine-induced psychotic disorder with delusions +F14251 Cocaine dependence with cocaine-induced psychotic disorder with hallucinations +F14259 Cocaine dependence with cocaine-induced psychotic disorder, unspecified +F14280 Cocaine dependence with cocaine-induced anxiety disorder +F14281 Cocaine dependence with cocaine-induced sexual dysfunction +F14282 Cocaine dependence with cocaine-induced sleep disorder +F14288 Cocaine dependence with other cocaine-induced disorder +F1429 Cocaine dependence with unspecified cocaine-induced disorder +F1490 Cocaine use, unspecified, uncomplicated +F14920 Cocaine use, unspecified with intoxication, uncomplicated +F14921 Cocaine use, unspecified with intoxication delirium +F14922 Cocaine use, unspecified with intoxication with perceptual disturbance +F14929 Cocaine use, unspecified with intoxication, unspecified +F1494 Cocaine use, unspecified with cocaine-induced mood disorder +F14950 Cocaine use, unspecified with cocaine-induced psychotic disorder with delusions +F14951 Cocaine use, unspecified with cocaine-induced psychotic disorder with hallucinations +F14959 Cocaine use, unspecified with cocaine-induced psychotic disorder, unspecified +F14980 Cocaine use, unspecified with cocaine-induced anxiety disorder +F14981 Cocaine use, unspecified with cocaine-induced sexual dysfunction +F14982 Cocaine use, unspecified with cocaine-induced sleep disorder +F14988 Cocaine use, unspecified with other cocaine-induced disorder +F1499 Cocaine use, unspecified with unspecified cocaine-induced disorder +F1510 Other stimulant abuse, uncomplicated +F1511 Other stimulant abuse, in remission +F15120 Other stimulant abuse with intoxication, uncomplicated +F15121 Other stimulant abuse with intoxication delirium +F15122 Other stimulant abuse with intoxication with perceptual disturbance +F15129 Other stimulant abuse with intoxication, unspecified +F1514 Other stimulant abuse with stimulant-induced mood disorder +F15150 Other stimulant abuse with stimulant-induced psychotic disorder with delusions +F15151 Other stimulant abuse with stimulant-induced psychotic disorder with hallucinations +F15159 Other stimulant abuse with stimulant-induced psychotic disorder, unspecified +F15180 Other stimulant abuse with stimulant-induced anxiety disorder +F15181 Other stimulant abuse with stimulant-induced sexual dysfunction +F15182 Other stimulant abuse with stimulant-induced sleep disorder +F15188 Other stimulant abuse with other stimulant-induced disorder +F1519 Other stimulant abuse with unspecified stimulant-induced disorder +F1520 Other stimulant dependence, uncomplicated +F1521 Other stimulant dependence, in remission +F15220 Other stimulant dependence with intoxication, uncomplicated +F15221 Other stimulant dependence with intoxication delirium +F15222 Other stimulant dependence with intoxication with perceptual disturbance +F15229 Other stimulant dependence with intoxication, unspecified +F1523 Other stimulant dependence with withdrawal +F1524 Other stimulant dependence with stimulant-induced mood disorder +F15250 Other stimulant dependence with stimulant-induced psychotic disorder with delusions +F15251 Other stimulant dependence with stimulant-induced psychotic disorder with hallucinations +F15259 Other stimulant dependence with stimulant-induced psychotic disorder, unspecified +F15280 Other stimulant dependence with stimulant-induced anxiety disorder +F15281 Other stimulant dependence with stimulant-induced sexual dysfunction +F15282 Other stimulant dependence with stimulant-induced sleep disorder +F15288 Other stimulant dependence with other stimulant-induced disorder +F1529 Other stimulant dependence with unspecified stimulant-induced disorder +F1590 Other stimulant use, unspecified, uncomplicated +F15920 Other stimulant use, unspecified with intoxication, uncomplicated +F15921 Other stimulant use, unspecified with intoxication delirium +F15922 Other stimulant use, unspecified with intoxication with perceptual disturbance +F15929 Other stimulant use, unspecified with intoxication, unspecified +F1593 Other stimulant use, unspecified with withdrawal +F1594 Other stimulant use, unspecified with stimulant-induced mood disorder +F15950 Other stimulant use, unspecified with stimulant-induced psychotic disorder with delusions +F15951 Other stimulant use, unspecified with stimulant-induced psychotic disorder with hallucinations +F15959 Other stimulant use, unspecified with stimulant-induced psychotic disorder, unspecified +F15980 Other stimulant use, unspecified with stimulant-induced anxiety disorder +F15981 Other stimulant use, unspecified with stimulant-induced sexual dysfunction +F15982 Other stimulant use, unspecified with stimulant-induced sleep disorder +F15988 Other stimulant use, unspecified with other stimulant-induced disorder +F1599 Other stimulant use, unspecified with unspecified stimulant-induced disorder +F1610 Hallucinogen abuse, uncomplicated +F1611 Hallucinogen abuse, in remission +F16120 Hallucinogen abuse with intoxication, uncomplicated +F16121 Hallucinogen abuse with intoxication with delirium +F16122 Hallucinogen abuse with intoxication with perceptual disturbance +F16129 Hallucinogen abuse with intoxication, unspecified +F1614 Hallucinogen abuse with hallucinogen-induced mood disorder +F16150 Hallucinogen abuse with hallucinogen-induced psychotic disorder with delusions +F16151 Hallucinogen abuse with hallucinogen-induced psychotic disorder with hallucinations +F16159 Hallucinogen abuse with hallucinogen-induced psychotic disorder, unspecified +F16180 Hallucinogen abuse with hallucinogen-induced anxiety disorder +F16183 Hallucinogen abuse with hallucinogen persisting perception disorder (flashbacks) +F16188 Hallucinogen abuse with other hallucinogen-induced disorder +F1619 Hallucinogen abuse with unspecified hallucinogen-induced disorder +F1620 Hallucinogen dependence, uncomplicated +F1621 Hallucinogen dependence, in remission +F16220 Hallucinogen dependence with intoxication, uncomplicated +F16221 Hallucinogen dependence with intoxication with delirium +F16229 Hallucinogen dependence with intoxication, unspecified +F1624 Hallucinogen dependence with hallucinogen-induced mood disorder +F16250 Hallucinogen dependence with hallucinogen-induced psychotic disorder with delusions +F16251 Hallucinogen dependence with hallucinogen-induced psychotic disorder with hallucinations +F16259 Hallucinogen dependence with hallucinogen-induced psychotic disorder, unspecified +F16280 Hallucinogen dependence with hallucinogen-induced anxiety disorder +F16283 Hallucinogen dependence with hallucinogen persisting perception disorder (flashbacks) +F16288 Hallucinogen dependence with other hallucinogen-induced disorder +F1629 Hallucinogen dependence with unspecified hallucinogen-induced disorder +F1690 Hallucinogen use, unspecified, uncomplicated +F16920 Hallucinogen use, unspecified with intoxication, uncomplicated +F16921 Hallucinogen use, unspecified with intoxication with delirium +F16929 Hallucinogen use, unspecified with intoxication, unspecified +F1694 Hallucinogen use, unspecified with hallucinogen-induced mood disorder +F16950 Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with delusions +F16951 Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with hallucinations +F16959 Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder, unspecified +F16980 Hallucinogen use, unspecified with hallucinogen-induced anxiety disorder +F16983 Hallucinogen use, unspecified with hallucinogen persisting perception disorder (flashbacks) +F16988 Hallucinogen use, unspecified with other hallucinogen-induced disorder +F1699 Hallucinogen use, unspecified with unspecified hallucinogen-induced disorder +F17200 Nicotine dependence, unspecified, uncomplicated Y +F17201 Nicotine dependence, unspecified, in remission Y +F17203 Nicotine dependence unspecified, with withdrawal Y +F17208 Nicotine dependence, unspecified, with other nicotine-induced disorders Y +F17209 Nicotine dependence, unspecified, with unspecified nicotine-induced disorders Y +F17210 Nicotine dependence, cigarettes, uncomplicated Y +F17211 Nicotine dependence, cigarettes, in remission Y +F17213 Nicotine dependence, cigarettes, with withdrawal Y +F17218 Nicotine dependence, cigarettes, with other nicotine-induced disorders Y +F17219 Nicotine dependence, cigarettes, with unspecified nicotine-induced disorders Y +F17220 Nicotine dependence, chewing tobacco, uncomplicated Y +F17221 Nicotine dependence, chewing tobacco, in remission Y +F17223 Nicotine dependence, chewing tobacco, with withdrawal Y +F17228 Nicotine dependence, chewing tobacco, with other nicotine-induced disorders Y +F17229 Nicotine dependence, chewing tobacco, with unspecified nicotine-induced disorders Y +F17290 Nicotine dependence, other tobacco product, uncomplicated Y +F17291 Nicotine dependence, other tobacco product, in remission Y +F17293 Nicotine dependence, other tobacco product, with withdrawal Y +F17298 Nicotine dependence, other tobacco product, with other nicotine-induced disorders Y +F17299 Nicotine dependence, other tobacco product, with unspecified nicotine-induced disorders Y +F1810 Inhalant abuse, uncomplicated +F1811 Inhalant abuse, in remission +F18120 Inhalant abuse with intoxication, uncomplicated +F18121 Inhalant abuse with intoxication delirium +F18129 Inhalant abuse with intoxication, unspecified +F1814 Inhalant abuse with inhalant-induced mood disorder +F18150 Inhalant abuse with inhalant-induced psychotic disorder with delusions +F18151 Inhalant abuse with inhalant-induced psychotic disorder with hallucinations +F18159 Inhalant abuse with inhalant-induced psychotic disorder, unspecified +F1817 Inhalant abuse with inhalant-induced dementia +F18180 Inhalant abuse with inhalant-induced anxiety disorder +F18188 Inhalant abuse with other inhalant-induced disorder +F1819 Inhalant abuse with unspecified inhalant-induced disorder +F1820 Inhalant dependence, uncomplicated +F1821 Inhalant dependence, in remission +F18220 Inhalant dependence with intoxication, uncomplicated +F18221 Inhalant dependence with intoxication delirium +F18229 Inhalant dependence with intoxication, unspecified +F1824 Inhalant dependence with inhalant-induced mood disorder +F18250 Inhalant dependence with inhalant-induced psychotic disorder with delusions +F18251 Inhalant dependence with inhalant-induced psychotic disorder with hallucinations +F18259 Inhalant dependence with inhalant-induced psychotic disorder, unspecified +F1827 Inhalant dependence with inhalant-induced dementia +F18280 Inhalant dependence with inhalant-induced anxiety disorder +F18288 Inhalant dependence with other inhalant-induced disorder +F1829 Inhalant dependence with unspecified inhalant-induced disorder +F1890 Inhalant use, unspecified, uncomplicated +F18920 Inhalant use, unspecified with intoxication, uncomplicated +F18921 Inhalant use, unspecified with intoxication with delirium +F18929 Inhalant use, unspecified with intoxication, unspecified +F1894 Inhalant use, unspecified with inhalant-induced mood disorder +F18950 Inhalant use, unspecified with inhalant-induced psychotic disorder with delusions +F18951 Inhalant use, unspecified with inhalant-induced psychotic disorder with hallucinations +F18959 Inhalant use, unspecified with inhalant-induced psychotic disorder, unspecified +F1897 Inhalant use, unspecified with inhalant-induced persisting dementia +F18980 Inhalant use, unspecified with inhalant-induced anxiety disorder +F18988 Inhalant use, unspecified with other inhalant-induced disorder +F1899 Inhalant use, unspecified with unspecified inhalant-induced disorder +F1910 Other psychoactive substance abuse, uncomplicated +F1911 Other psychoactive substance abuse, in remission +F19120 Other psychoactive substance abuse with intoxication, uncomplicated +F19121 Other psychoactive substance abuse with intoxication delirium +F19122 Other psychoactive substance abuse with intoxication with perceptual disturbances +F19129 Other psychoactive substance abuse with intoxication, unspecified +F1914 Other psychoactive substance abuse with psychoactive substance-induced mood disorder +F19150 Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with delusions +F19151 Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with hallucinations +F19159 Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder, unspecified +F1916 Other psychoactive substance abuse with psychoactive substance-induced persisting amnestic disorder +F1917 Other psychoactive substance abuse with psychoactive substance-induced persisting dementia +F19180 Other psychoactive substance abuse with psychoactive substance-induced anxiety disorder +F19181 Other psychoactive substance abuse with psychoactive substance-induced sexual dysfunction +F19182 Other psychoactive substance abuse with psychoactive substance-induced sleep disorder +F19188 Other psychoactive substance abuse with other psychoactive substance-induced disorder +F1919 Other psychoactive substance abuse with unspecified psychoactive substance-induced disorder +F1920 Other psychoactive substance dependence, uncomplicated +F1921 Other psychoactive substance dependence, in remission +F19220 Other psychoactive substance dependence with intoxication, uncomplicated +F19221 Other psychoactive substance dependence with intoxication delirium +F19222 Other psychoactive substance dependence with intoxication with perceptual disturbance +F19229 Other psychoactive substance dependence with intoxication, unspecified +F19230 Other psychoactive substance dependence with withdrawal, uncomplicated +F19231 Other psychoactive substance dependence with withdrawal delirium +F19232 Other psychoactive substance dependence with withdrawal with perceptual disturbance +F19239 Other psychoactive substance dependence with withdrawal, unspecified +F1924 Other psychoactive substance dependence with psychoactive substance-induced mood disorder +F19250 Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with delusions +F19251 Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with hallucinations +F19259 Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder, unspecified +F1926 Other psychoactive substance dependence with psychoactive substance-induced persisting amnestic disorder +F1927 Other psychoactive substance dependence with psychoactive substance-induced persisting dementia +F19280 Other psychoactive substance dependence with psychoactive substance-induced anxiety disorder +F19281 Other psychoactive substance dependence with psychoactive substance-induced sexual dysfunction +F19282 Other psychoactive substance dependence with psychoactive substance-induced sleep disorder +F19288 Other psychoactive substance dependence with other psychoactive substance-induced disorder +F1929 Other psychoactive substance dependence with unspecified psychoactive substance-induced disorder +F1990 Other psychoactive substance use, unspecified, uncomplicated +F19920 Other psychoactive substance use, unspecified with intoxication, uncomplicated +F19921 Other psychoactive substance use, unspecified with intoxication with delirium +F19922 Other psychoactive substance use, unspecified with intoxication with perceptual disturbance +F19929 Other psychoactive substance use, unspecified with intoxication, unspecified +F19930 Other psychoactive substance use, unspecified with withdrawal, uncomplicated +F19931 Other psychoactive substance use, unspecified with withdrawal delirium +F19932 Other psychoactive substance use, unspecified with withdrawal with perceptual disturbance +F19939 Other psychoactive substance use, unspecified with withdrawal, unspecified +F1994 Other psychoactive substance use, unspecified with psychoactive substance-induced mood disorder +F19950 Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder with delusions +F19951 Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder with hallucinations +F19959 Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder, unspecified +F1996 Other psychoactive substance use, unspecified with psychoactive substance-induced persisting amnestic disorder +F1997 Other psychoactive substance use, unspecified with psychoactive substance-induced persisting dementia +F19980 Other psychoactive substance use, unspecified with psychoactive substance-induced anxiety disorder +F19981 Other psychoactive substance use, unspecified with psychoactive substance-induced sexual dysfunction +F19982 Other psychoactive substance use, unspecified with psychoactive substance-induced sleep disorder +F19988 Other psychoactive substance use, unspecified with other psychoactive substance-induced disorder +F1999 Other psychoactive substance use, unspecified with unspecified psychoactive substance-induced disorder +F200 Paranoid schizophrenia +F201 Disorganized schizophrenia +F202 Catatonic schizophrenia +F203 Undifferentiated schizophrenia +F205 Residual schizophrenia +F2081 Schizophreniform disorder +F2089 Other schizophrenia +F209 Schizophrenia, unspecified +F21 Schizotypal disorder +F22 Delusional disorders +F23 Brief psychotic disorder +F24 Shared psychotic disorder +F250 Schizoaffective disorder, bipolar type +F251 Schizoaffective disorder, depressive type +F258 Other schizoaffective disorders +F259 Schizoaffective disorder, unspecified +F28 Other psychotic disorder not due to a substance or known physiological condition +F29 Unspecified psychosis not due to a substance or known physiological condition +F3010 Manic episode without psychotic symptoms, unspecified +F3011 Manic episode without psychotic symptoms, mild +F3012 Manic episode without psychotic symptoms, moderate +F3013 Manic episode, severe, without psychotic symptoms +F302 Manic episode, severe with psychotic symptoms +F303 Manic episode in partial remission +F304 Manic episode in full remission +F308 Other manic episodes +F309 Manic episode, unspecified +F310 Bipolar disorder, current episode hypomanic +F3110 Bipolar disorder, current episode manic without psychotic features, unspecified +F3111 Bipolar disorder, current episode manic without psychotic features, mild +F3112 Bipolar disorder, current episode manic without psychotic features, moderate +F3113 Bipolar disorder, current episode manic without psychotic features, severe +F312 Bipolar disorder, current episode manic severe with psychotic features +F3130 Bipolar disorder, current episode depressed, mild or moderate severity, unspecified +F3131 Bipolar disorder, current episode depressed, mild +F3132 Bipolar disorder, current episode depressed, moderate +F314 Bipolar disorder, current episode depressed, severe, without psychotic features +F315 Bipolar disorder, current episode depressed, severe, with psychotic features +F3160 Bipolar disorder, current episode mixed, unspecified +F3161 Bipolar disorder, current episode mixed, mild +F3162 Bipolar disorder, current episode mixed, moderate +F3163 Bipolar disorder, current episode mixed, severe, without psychotic features +F3164 Bipolar disorder, current episode mixed, severe, with psychotic features +F3170 Bipolar disorder, currently in remission, most recent episode unspecified +F3171 Bipolar disorder, in partial remission, most recent episode hypomanic +F3172 Bipolar disorder, in full remission, most recent episode hypomanic +F3173 Bipolar disorder, in partial remission, most recent episode manic +F3174 Bipolar disorder, in full remission, most recent episode manic +F3175 Bipolar disorder, in partial remission, most recent episode depressed +F3176 Bipolar disorder, in full remission, most recent episode depressed +F3177 Bipolar disorder, in partial remission, most recent episode mixed +F3178 Bipolar disorder, in full remission, most recent episode mixed +F3181 Bipolar II disorder +F3189 Other bipolar disorder +F319 Bipolar disorder, unspecified +F320 Major depressive disorder, single episode, mild +F321 Major depressive disorder, single episode, moderate +F322 Major depressive disorder, single episode, severe without psychotic features +F323 Major depressive disorder, single episode, severe with psychotic features +F324 Major depressive disorder, single episode, in partial remission +F325 Major depressive disorder, single episode, in full remission +F328 Other depressive episodes +F3281 Premenstrual dysphoric disorder +F3289 Other specified depressive episodes +F329 Major depressive disorder, single episode, unspecified +F330 Major depressive disorder, recurrent, mild +F331 Major depressive disorder, recurrent, moderate +F332 Major depressive disorder, recurrent severe without psychotic features +F333 Major depressive disorder, recurrent, severe with psychotic symptoms +F3340 Major depressive disorder, recurrent, in remission, unspecified +F3341 Major depressive disorder, recurrent, in partial remission +F3342 Major depressive disorder, recurrent, in full remission +F338 Other recurrent depressive disorders +F339 Major depressive disorder, recurrent, unspecified +F340 Cyclothymic disorder +F341 Dysthymic disorder Y +F348 Other persistent mood [affective] disorders +F3481 Disruptive mood dysregulation disorder +F3489 Other specified persistent mood disorders +F349 Persistent mood [affective] disorder, unspecified +F39 Unspecified mood [affective] disorder +F4000 Agoraphobia, unspecified Y +F4001 Agoraphobia with panic disorder Y +F4002 Agoraphobia without panic disorder Y +F4010 Social phobia, unspecified Y +F4011 Social phobia, generalized Y +F40210 Arachnophobia Y +F40218 Other animal type phobia Y +F40220 Fear of thunderstorms Y +F40228 Other natural environment type phobia Y +F40230 Fear of blood Y +F40231 Fear of injections and transfusions Y +F40232 Fear of other medical care Y +F40233 Fear of injury Y +F40240 Claustrophobia Y +F40241 Acrophobia Y +F40242 Fear of bridges Y +F40243 Fear of flying Y +F40248 Other situational type phobia Y +F40290 Androphobia Y +F40291 Gynephobia Y +F40298 Other specified phobia Y +F408 Other phobic anxiety disorders Y +F409 Phobic anxiety disorder, unspecified Y +F410 Panic disorder [episodic paroxysmal anxiety] Y +F411 Generalized anxiety disorder Y +F413 Other mixed anxiety disorders Y +F418 Other specified anxiety disorders Y +F419 Anxiety disorder, unspecified Y +F42 Obsessive-compulsive disorder Y +F422 Mixed obsessional thoughts and acts +F423 Hoarding disorder +F424 Excoriation (skin-picking) disorder +F428 Other obsessive-compulsive disorder +F429 Obsessive-compulsive disorder, unspecified +F430 Acute stress reaction +F4310 Post-traumatic stress disorder, unspecified +F4311 Post-traumatic stress disorder, acute +F4312 Post-traumatic stress disorder, chronic +F4320 Adjustment disorder, unspecified +F4321 Adjustment disorder with depressed mood +F4322 Adjustment disorder with anxiety +F4323 Adjustment disorder with mixed anxiety and depressed mood +F4324 Adjustment disorder with disturbance of conduct +F4325 Adjustment disorder with mixed disturbance of emotions and conduct +F4329 Adjustment disorder with other symptoms +F438 Other reactions to severe stress +F439 Reaction to severe stress, unspecified +F440 Dissociative amnesia Y +F441 Dissociative fugue Y +F442 Dissociative stupor Y +F444 Conversion disorder with motor symptom or deficit Y +F445 Conversion disorder with seizures or convulsions Y +F446 Conversion disorder with sensory symptom or deficit Y +F447 Conversion disorder with mixed symptom presentation Y +F4481 Dissociative identity disorder Y +F4489 Other dissociative and conversion disorders Y +F449 Dissociative and conversion disorder, unspecified Y +F450 Somatization disorder Y +F451 Undifferentiated somatoform disorder Y +F4520 Hypochondriacal disorder, unspecified Y +F4521 Hypochondriasis Y +F4522 Body dysmorphic disorder Y +F4529 Other hypochondriacal disorders Y +F4541 Pain disorder exclusively related to psychological factors +F4542 Pain disorder with related psychological factors +F458 Other somatoform disorders Y +F459 Somatoform disorder, unspecified Y +F481 Depersonalization-derealization syndrome Y +F482 Pseudobulbar affect +F488 Other specified nonpsychotic mental disorders Y +F489 Nonpsychotic mental disorder, unspecified Y +F5000 Anorexia nervosa, unspecified +F5001 Anorexia nervosa, restricting type +F5002 Anorexia nervosa, binge eating/purging type +F502 Bulimia nervosa +F508 Other eating disorders +F5081 Binge eating disorder +F5082 Avoidant/restrictive food intake disorder +F5089 Other specified eating disorder +F509 Eating disorder, unspecified +F5101 Primary insomnia +F5102 Adjustment insomnia +F5103 Paradoxical insomnia +F5104 Psychophysiologic insomnia +F5105 Insomnia due to other mental disorder +F5109 Other insomnia not due to a substance or known physiological condition +F5111 Primary hypersomnia +F5112 Insufficient sleep syndrome +F5113 Hypersomnia due to other mental disorder +F5119 Other hypersomnia not due to a substance or known physiological condition +F513 Sleepwalking [somnambulism] +F514 Sleep terrors [night terrors] +F515 Nightmare disorder +F518 Other sleep disorders not due to a substance or known physiological condition +F519 Sleep disorder not due to a substance or known physiological condition, unspecified +F520 Hypoactive sexual desire disorder +F521 Sexual aversion disorder +F5221 Male erectile disorder +F5222 Female sexual arousal disorder +F5231 Female orgasmic disorder +F5232 Male orgasmic disorder +F524 Premature ejaculation +F525 Vaginismus not due to a substance or known physiological condition +F526 Dyspareunia not due to a substance or known physiological condition +F528 Other sexual dysfunction not due to a substance or known physiological condition +F529 Unspecified sexual dysfunction not due to a substance or known physiological condition +F53 Puerperal psychosis +F530 Postpartum depression +F531 Puerperal psychosis +F54 Psychological and behavioral factors associated with disorders or diseases classified elsewhere +F550 Abuse of antacids +F551 Abuse of herbal or folk remedies +F552 Abuse of laxatives +F553 Abuse of steroids or hormones +F554 Abuse of vitamins +F558 Abuse of other non-psychoactive substances +F59 Unspecified behavioral syndromes associated with physiological disturbances and physical factors +F600 Paranoid personality disorder +F601 Schizoid personality disorder +F602 Antisocial personality disorder +F603 Borderline personality disorder +F604 Histrionic personality disorder +F605 Obsessive-compulsive personality disorder +F606 Avoidant personality disorder +F607 Dependent personality disorder +F6081 Narcissistic personality disorder +F6089 Other specific personality disorders +F609 Personality disorder, unspecified +F630 Pathological gambling +F631 Pyromania +F632 Kleptomania +F633 Trichotillomania +F6381 Intermittent explosive disorder +F6389 Other impulse disorders +F639 Impulse disorder, unspecified +F640 Transsexualism +F641 Dual role transvestism +F642 Gender identity disorder of childhood +F648 Other gender identity disorders +F649 Gender identity disorder, unspecified +F650 Fetishism +F651 Transvestic fetishism +F652 Exhibitionism +F653 Voyeurism +F654 Pedophilia +F6550 Sadomasochism, unspecified +F6551 Sexual masochism +F6552 Sexual sadism +F6581 Frotteurism +F6589 Other paraphilias +F659 Paraphilia, unspecified +F66 Other sexual disorders +F6810 Factitious disorder imposed on self, unspecified +F6811 Factitious disorder imposed on self, with predominantly psychological signs and symptoms Y +F6812 Factitious disorder imposed on self, with predominantly physical signs and symptoms Y +F6813 Factitious disorder imposed on self, with combined psychological and physical signs and symptoms Y +F688 Other specified disorders of adult personality and behavior Y +F68A Factitious disorder imposed on another +F69 Unspecified disorder of adult personality and behavior +F70 Mild intellectual disabilities +F71 Moderate intellectual disabilities +F72 Severe intellectual disabilities +F73 Profound intellectual disabilities +F78 Other intellectual disabilities +F79 Unspecified intellectual disabilities +F800 Phonological disorder +F801 Expressive language disorder +F802 Mixed receptive-expressive language disorder +F804 Speech and language development delay due to hearing loss +F8081 Childhood onset fluency disorder +F8082 Social pragmatic communication disorder +F8089 Other developmental disorders of speech and language +F809 Developmental disorder of speech and language, unspecified +F810 Specific reading disorder +F812 Mathematics disorder +F8181 Disorder of written expression +F8189 Other developmental disorders of scholastic skills +F819 Developmental disorder of scholastic skills, unspecified +F82 Specific developmental disorder of motor function +F840 Autistic disorder +F842 Rett's syndrome +F843 Other childhood disintegrative disorder +F845 Asperger's syndrome +F848 Other pervasive developmental disorders +F849 Pervasive developmental disorder, unspecified +F88 Other disorders of psychological development +F89 Unspecified disorder of psychological development +F900 Attention-deficit hyperactivity disorder, predominantly inattentive type +F901 Attention-deficit hyperactivity disorder, predominantly hyperactive type +F902 Attention-deficit hyperactivity disorder, combined type +F908 Attention-deficit hyperactivity disorder, other type +F909 Attention-deficit hyperactivity disorder, unspecified type +F910 Conduct disorder confined to family context +F911 Conduct disorder, childhood-onset type +F912 Conduct disorder, adolescent-onset type +F913 Oppositional defiant disorder +F918 Other conduct disorders +F919 Conduct disorder, unspecified +F930 Separation anxiety disorder of childhood +F938 Other childhood emotional disorders +F939 Childhood emotional disorder, unspecified +F940 Selective mutism +F941 Reactive attachment disorder of childhood +F942 Disinhibited attachment disorder of childhood +F948 Other childhood disorders of social functioning +F949 Childhood disorder of social functioning, unspecified +F950 Transient tic disorder +F951 Chronic motor or vocal tic disorder +F952 Tourette's disorder +F958 Other tic disorders +F959 Tic disorder, unspecified +F980 Enuresis not due to a substance or known physiological condition +F981 Encopresis not due to a substance or known physiological condition +F9821 Rumination disorder of infancy +F9829 Other feeding disorders of infancy and early childhood +F983 Pica of infancy and childhood +F984 Stereotyped movement disorders +F985 Adult onset fluency disorder +F988 Other specified behavioral and emotional disorders with onset usually occurring in childhood and adolescence +F989 Unspecified behavioral and emotional disorders with onset usually occurring in childhood and adolescence +F99 Mental disorder, not otherwise specified Y +G000 Hemophilus meningitis +G001 Pneumococcal meningitis +G002 Streptococcal meningitis +G003 Staphylococcal meningitis +G008 Other bacterial meningitis +G009 Bacterial meningitis, unspecified +G01 Meningitis in bacterial diseases classified elsewhere +G02 Meningitis in other infectious and parasitic diseases classified elsewhere +G030 Nonpyogenic meningitis +G031 Chronic meningitis +G032 Benign recurrent meningitis [Mollaret] +G038 Meningitis due to other specified causes +G039 Meningitis, unspecified +G0400 Acute disseminated encephalitis and encephalomyelitis, unspecified +G0401 Postinfectious acute disseminated encephalitis and encephalomyelitis (postinfectious ADEM) +G0402 Postimmunization acute disseminated encephalitis, myelitis and encephalomyelitis +G041 Tropical spastic paraplegia +G042 Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified +G0430 Acute necrotizing hemorrhagic encephalopathy, unspecified +G0431 Postinfectious acute necrotizing hemorrhagic encephalopathy +G0432 Postimmunization acute necrotizing hemorrhagic encephalopathy +G0439 Other acute necrotizing hemorrhagic encephalopathy +G0481 Other encephalitis and encephalomyelitis +G0489 Other myelitis +G0490 Encephalitis and encephalomyelitis, unspecified +G0491 Myelitis, unspecified +G053 Encephalitis and encephalomyelitis in diseases classified elsewhere +G054 Myelitis in diseases classified elsewhere +G060 Intracranial abscess and granuloma +G061 Intraspinal abscess and granuloma +G062 Extradural and subdural abscess, unspecified +G07 Intracranial and intraspinal abscess and granuloma in diseases classified elsewhere +G08 Intracranial and intraspinal phlebitis and thrombophlebitis +G09 Sequelae of inflammatory diseases of central nervous system +G10 Huntington's disease +G110 Congenital nonprogressive ataxia +G111 Early-onset cerebellar ataxia +G112 Late-onset cerebellar ataxia +G113 Cerebellar ataxia with defective DNA repair +G114 Hereditary spastic paraplegia +G118 Other hereditary ataxias +G119 Hereditary ataxia, unspecified +G120 Infantile spinal muscular atrophy, type I [Werdnig-Hoffman] +G121 Other inherited spinal muscular atrophy +G1220 Motor neuron disease, unspecified +G1221 Amyotrophic lateral sclerosis +G1222 Progressive bulbar palsy +G1223 Primary lateral sclerosis +G1224 Familial motor neuron disease +G1225 Progressive spinal muscle atrophy +G1229 Other motor neuron disease +G128 Other spinal muscular atrophies and related syndromes +G129 Spinal muscular atrophy, unspecified +G130 Paraneoplastic neuromyopathy and neuropathy +G131 Other systemic atrophy primarily affecting central nervous system in neoplastic disease +G132 Systemic atrophy primarily affecting the central nervous system in myxedema +G138 Systemic atrophy primarily affecting central nervous system in other diseases classified elsewhere +G14 Postpolio syndrome +G20 Parkinson's disease +G210 Malignant neuroleptic syndrome +G2111 Neuroleptic induced parkinsonism +G2119 Other drug induced secondary parkinsonism +G212 Secondary parkinsonism due to other external agents +G213 Postencephalitic parkinsonism +G214 Vascular parkinsonism +G218 Other secondary parkinsonism +G219 Secondary parkinsonism, unspecified +G230 Hallervorden-Spatz disease +G231 Progressive supranuclear ophthalmoplegia [Steele-Richardson-Olszewski] +G232 Striatonigral degeneration +G238 Other specified degenerative diseases of basal ganglia +G239 Degenerative disease of basal ganglia, unspecified +G2401 Drug induced subacute dyskinesia +G2402 Drug induced acute dystonia +G2409 Other drug induced dystonia +G241 Genetic torsion dystonia +G242 Idiopathic nonfamilial dystonia +G243 Spasmodic torticollis +G244 Idiopathic orofacial dystonia +G245 Blepharospasm +G248 Other dystonia +G249 Dystonia, unspecified +G250 Essential tremor +G251 Drug-induced tremor +G252 Other specified forms of tremor +G253 Myoclonus +G254 Drug-induced chorea +G255 Other chorea +G2561 Drug induced tics +G2569 Other tics of organic origin +G2570 Drug induced movement disorder, unspecified +G2571 Drug induced akathisia +G2579 Other drug induced movement disorders +G2581 Restless legs syndrome +G2582 Stiff-man syndrome +G2583 Benign shuddering attacks +G2589 Other specified extrapyramidal and movement disorders +G259 Extrapyramidal and movement disorder, unspecified +G26 Extrapyramidal and movement disorders in diseases classified elsewhere +G300 Alzheimer's disease with early onset +G301 Alzheimer's disease with late onset +G308 Other Alzheimer's disease +G309 Alzheimer's disease, unspecified +G3101 Pick's disease +G3109 Other frontotemporal dementia +G311 Senile degeneration of brain, not elsewhere classified +G312 Degeneration of nervous system due to alcohol +G3181 Alpers disease +G3182 Leigh's disease +G3183 Dementia with Lewy bodies +G3184 Mild cognitive impairment, so stated +G3185 Corticobasal degeneration +G3189 Other specified degenerative diseases of nervous system +G319 Degenerative disease of nervous system, unspecified +G320 Subacute combined degeneration of spinal cord in diseases classified elsewhere +G3281 Cerebellar ataxia in diseases classified elsewhere +G3289 Other specified degenerative disorders of nervous system in diseases classified elsewhere +G35 Multiple sclerosis +G360 Neuromyelitis optica [Devic] +G361 Acute and subacute hemorrhagic leukoencephalitis [Hurst] +G368 Other specified acute disseminated demyelination +G369 Acute disseminated demyelination, unspecified +G370 Diffuse sclerosis of central nervous system +G371 Central demyelination of corpus callosum +G372 Central pontine myelinolysis +G373 Acute transverse myelitis in demyelinating disease of central nervous system +G374 Subacute necrotizing myelitis of central nervous system +G375 Concentric sclerosis [Balo] of central nervous system +G378 Other specified demyelinating diseases of central nervous system +G379 Demyelinating disease of central nervous system, unspecified +G40001 Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, not intractable, with status epilepticus +G40009 Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, not intractable, without status epilepticus +G40011 Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, intractable, with status epilepticus +G40019 Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, intractable, without status epilepticus +G40101 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, not intractable, with status epilepticus +G40109 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, not intractable, without status epilepticus +G40111 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, intractable, with status epilepticus +G40119 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, intractable, without status epilepticus +G40201 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, not intractable, with status epilepticus +G40209 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, not intractable, without status epilepticus +G40211 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, intractable, with status epilepticus +G40219 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, intractable, without status epilepticus +G40301 Generalized idiopathic epilepsy and epileptic syndromes, not intractable, with status epilepticus +G40309 Generalized idiopathic epilepsy and epileptic syndromes, not intractable, without status epilepticus +G40311 Generalized idiopathic epilepsy and epileptic syndromes, intractable, with status epilepticus +G40319 Generalized idiopathic epilepsy and epileptic syndromes, intractable, without status epilepticus +G40401 Other generalized epilepsy and epileptic syndromes, not intractable, with status epilepticus +G40409 Other generalized epilepsy and epileptic syndromes, not intractable, without status epilepticus +G40411 Other generalized epilepsy and epileptic syndromes, intractable, with status epilepticus +G40419 Other generalized epilepsy and epileptic syndromes, intractable, without status epilepticus +G40501 Epileptic seizures related to external causes, not intractable, with status epilepticus +G40509 Epileptic seizures related to external causes, not intractable, without status epilepticus +G40801 Other epilepsy, not intractable, with status epilepticus +G40802 Other epilepsy, not intractable, without status epilepticus +G40803 Other epilepsy, intractable, with status epilepticus +G40804 Other epilepsy, intractable, without status epilepticus +G40811 Lennox-Gastaut syndrome, not intractable, with status epilepticus +G40812 Lennox-Gastaut syndrome, not intractable, without status epilepticus +G40813 Lennox-Gastaut syndrome, intractable, with status epilepticus +G40814 Lennox-Gastaut syndrome, intractable, without status epilepticus +G40821 Epileptic spasms, not intractable, with status epilepticus +G40822 Epileptic spasms, not intractable, without status epilepticus +G40823 Epileptic spasms, intractable, with status epilepticus +G40824 Epileptic spasms, intractable, without status epilepticus +G4089 Other seizures +G40901 Epilepsy, unspecified, not intractable, with status epilepticus +G40909 Epilepsy, unspecified, not intractable, without status epilepticus +G40911 Epilepsy, unspecified, intractable, with status epilepticus +G40919 Epilepsy, unspecified, intractable, without status epilepticus +G40A01 Absence epileptic syndrome, not intractable, with status epilepticus +G40A09 Absence epileptic syndrome, not intractable, without status epilepticus +G40A11 Absence epileptic syndrome, intractable, with status epilepticus +G40A19 Absence epileptic syndrome, intractable, without status epilepticus +G40B01 Juvenile myoclonic epilepsy, not intractable, with status epilepticus +G40B09 Juvenile myoclonic epilepsy, not intractable, without status epilepticus +G40B11 Juvenile myoclonic epilepsy, intractable, with status epilepticus +G40B19 Juvenile myoclonic epilepsy, intractable, without status epilepticus +G43001 Migraine without aura, not intractable, with status migrainosus +G43009 Migraine without aura, not intractable, without status migrainosus +G43011 Migraine without aura, intractable, with status migrainosus +G43019 Migraine without aura, intractable, without status migrainosus +G43101 Migraine with aura, not intractable, with status migrainosus +G43109 Migraine with aura, not intractable, without status migrainosus +G43111 Migraine with aura, intractable, with status migrainosus +G43119 Migraine with aura, intractable, without status migrainosus +G43401 Hemiplegic migraine, not intractable, with status migrainosus +G43409 Hemiplegic migraine, not intractable, without status migrainosus +G43411 Hemiplegic migraine, intractable, with status migrainosus +G43419 Hemiplegic migraine, intractable, without status migrainosus +G43501 Persistent migraine aura without cerebral infarction, not intractable, with status migrainosus +G43509 Persistent migraine aura without cerebral infarction, not intractable, without status migrainosus +G43511 Persistent migraine aura without cerebral infarction, intractable, with status migrainosus +G43519 Persistent migraine aura without cerebral infarction, intractable, without status migrainosus +G43601 Persistent migraine aura with cerebral infarction, not intractable, with status migrainosus +G43609 Persistent migraine aura with cerebral infarction, not intractable, without status migrainosus +G43611 Persistent migraine aura with cerebral infarction, intractable, with status migrainosus +G43619 Persistent migraine aura with cerebral infarction, intractable, without status migrainosus +G43701 Chronic migraine without aura, not intractable, with status migrainosus +G43709 Chronic migraine without aura, not intractable, without status migrainosus +G43711 Chronic migraine without aura, intractable, with status migrainosus +G43719 Chronic migraine without aura, intractable, without status migrainosus +G43801 Other migraine, not intractable, with status migrainosus +G43809 Other migraine, not intractable, without status migrainosus +G43811 Other migraine, intractable, with status migrainosus +G43819 Other migraine, intractable, without status migrainosus +G43821 Menstrual migraine, not intractable, with status migrainosus +G43829 Menstrual migraine, not intractable, without status migrainosus +G43831 Menstrual migraine, intractable, with status migrainosus +G43839 Menstrual migraine, intractable, without status migrainosus +G43901 Migraine, unspecified, not intractable, with status migrainosus +G43909 Migraine, unspecified, not intractable, without status migrainosus +G43911 Migraine, unspecified, intractable, with status migrainosus +G43919 Migraine, unspecified, intractable, without status migrainosus +G43A0 Cyclical vomiting, in migraine, not intractable +G43A1 Cyclical vomiting, in migraine, intractable +G43B0 Ophthalmoplegic migraine, not intractable +G43B1 Ophthalmoplegic migraine, intractable +G43C0 Periodic headache syndromes in child or adult, not intractable +G43C1 Periodic headache syndromes in child or adult, intractable +G43D0 Abdominal migraine, not intractable +G43D1 Abdominal migraine, intractable +G44001 Cluster headache syndrome, unspecified, intractable +G44009 Cluster headache syndrome, unspecified, not intractable +G44011 Episodic cluster headache, intractable +G44019 Episodic cluster headache, not intractable +G44021 Chronic cluster headache, intractable +G44029 Chronic cluster headache, not intractable +G44031 Episodic paroxysmal hemicrania, intractable +G44039 Episodic paroxysmal hemicrania, not intractable +G44041 Chronic paroxysmal hemicrania, intractable +G44049 Chronic paroxysmal hemicrania, not intractable +G44051 Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT), intractable +G44059 Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT), not intractable +G44091 Other trigeminal autonomic cephalgias (TAC), intractable +G44099 Other trigeminal autonomic cephalgias (TAC), not intractable +G441 Vascular headache, not elsewhere classified Y +G44201 Tension-type headache, unspecified, intractable +G44209 Tension-type headache, unspecified, not intractable +G44211 Episodic tension-type headache, intractable +G44219 Episodic tension-type headache, not intractable +G44221 Chronic tension-type headache, intractable +G44229 Chronic tension-type headache, not intractable +G44301 Post-traumatic headache, unspecified, intractable +G44309 Post-traumatic headache, unspecified, not intractable +G44311 Acute post-traumatic headache, intractable +G44319 Acute post-traumatic headache, not intractable +G44321 Chronic post-traumatic headache, intractable +G44329 Chronic post-traumatic headache, not intractable +G4440 Drug-induced headache, not elsewhere classified, not intractable +G4441 Drug-induced headache, not elsewhere classified, intractable +G4451 Hemicrania continua +G4452 New daily persistent headache (NDPH) +G4453 Primary thunderclap headache +G4459 Other complicated headache syndrome +G4481 Hypnic headache +G4482 Headache associated with sexual activity +G4483 Primary cough headache +G4484 Primary exertional headache +G4485 Primary stabbing headache +G4489 Other headache syndrome +G450 Vertebro-basilar artery syndrome +G451 Carotid artery syndrome (hemispheric) +G452 Multiple and bilateral precerebral artery syndromes +G453 Amaurosis fugax +G454 Transient global amnesia +G458 Other transient cerebral ischemic attacks and related syndromes +G459 Transient cerebral ischemic attack, unspecified +G460 Middle cerebral artery syndrome +G461 Anterior cerebral artery syndrome +G462 Posterior cerebral artery syndrome +G463 Brain stem stroke syndrome +G464 Cerebellar stroke syndrome +G465 Pure motor lacunar syndrome +G466 Pure sensory lacunar syndrome +G467 Other lacunar syndromes +G468 Other vascular syndromes of brain in cerebrovascular diseases +G4700 Insomnia, unspecified +G4701 Insomnia due to medical condition +G4709 Other insomnia +G4710 Hypersomnia, unspecified +G4711 Idiopathic hypersomnia with long sleep time +G4712 Idiopathic hypersomnia without long sleep time +G4713 Recurrent hypersomnia +G4714 Hypersomnia due to medical condition +G4719 Other hypersomnia +G4720 Circadian rhythm sleep disorder, unspecified type +G4721 Circadian rhythm sleep disorder, delayed sleep phase type +G4722 Circadian rhythm sleep disorder, advanced sleep phase type +G4723 Circadian rhythm sleep disorder, irregular sleep wake type +G4724 Circadian rhythm sleep disorder, free running type +G4725 Circadian rhythm sleep disorder, jet lag type +G4726 Circadian rhythm sleep disorder, shift work type +G4727 Circadian rhythm sleep disorder in conditions classified elsewhere +G4729 Other circadian rhythm sleep disorder +G4730 Sleep apnea, unspecified +G4731 Primary central sleep apnea +G4732 High altitude periodic breathing +G4733 Obstructive sleep apnea (adult) (pediatric) +G4734 Idiopathic sleep related nonobstructive alveolar hypoventilation +G4735 Congenital central alveolar hypoventilation syndrome +G4736 Sleep related hypoventilation in conditions classified elsewhere +G4737 Central sleep apnea in conditions classified elsewhere +G4739 Other sleep apnea +G47411 Narcolepsy with cataplexy +G47419 Narcolepsy without cataplexy +G47421 Narcolepsy in conditions classified elsewhere with cataplexy +G47429 Narcolepsy in conditions classified elsewhere without cataplexy +G4750 Parasomnia, unspecified +G4751 Confusional arousals +G4752 REM sleep behavior disorder +G4753 Recurrent isolated sleep paralysis +G4754 Parasomnia in conditions classified elsewhere +G4759 Other parasomnia +G4761 Periodic limb movement disorder +G4762 Sleep related leg cramps +G4763 Sleep related bruxism +G4769 Other sleep related movement disorders +G478 Other sleep disorders +G479 Sleep disorder, unspecified +G500 Trigeminal neuralgia +G501 Atypical facial pain +G508 Other disorders of trigeminal nerve +G509 Disorder of trigeminal nerve, unspecified +G510 Bell's palsy +G511 Geniculate ganglionitis +G512 Melkersson's syndrome +G513 Clonic hemifacial spasm +G5131 Clonic hemifacial spasm, right +G5132 Clonic hemifacial spasm, left +G5133 Clonic hemifacial spasm, bilateral +G5139 Clonic hemifacial spasm, unspecified +G514 Facial myokymia +G518 Other disorders of facial nerve +G519 Disorder of facial nerve, unspecified +G520 Disorders of olfactory nerve +G521 Disorders of glossopharyngeal nerve +G522 Disorders of vagus nerve +G523 Disorders of hypoglossal nerve +G527 Disorders of multiple cranial nerves +G528 Disorders of other specified cranial nerves +G529 Cranial nerve disorder, unspecified +G53 Cranial nerve disorders in diseases classified elsewhere +G540 Brachial plexus disorders +G541 Lumbosacral plexus disorders +G542 Cervical root disorders, not elsewhere classified +G543 Thoracic root disorders, not elsewhere classified +G544 Lumbosacral root disorders, not elsewhere classified +G545 Neuralgic amyotrophy +G546 Phantom limb syndrome with pain +G547 Phantom limb syndrome without pain +G548 Other nerve root and plexus disorders +G549 Nerve root and plexus disorder, unspecified +G55 Nerve root and plexus compressions in diseases classified elsewhere +G5600 Carpal tunnel syndrome, unspecified upper limb +G5601 Carpal tunnel syndrome, right upper limb +G5602 Carpal tunnel syndrome, left upper limb +G5603 Carpal tunnel syndrome, bilateral upper limbs +G5610 Other lesions of median nerve, unspecified upper limb +G5611 Other lesions of median nerve, right upper limb +G5612 Other lesions of median nerve, left upper limb +G5613 Other lesions of median nerve, bilateral upper limbs +G5620 Lesion of ulnar nerve, unspecified upper limb +G5621 Lesion of ulnar nerve, right upper limb +G5622 Lesion of ulnar nerve, left upper limb +G5623 Lesion of ulnar nerve, bilateral upper limbs +G5630 Lesion of radial nerve, unspecified upper limb +G5631 Lesion of radial nerve, right upper limb +G5632 Lesion of radial nerve, left upper limb +G5633 Lesion of radial nerve, bilateral upper limbs +G5640 Causalgia of unspecified upper limb +G5641 Causalgia of right upper limb +G5642 Causalgia of left upper limb +G5643 Causalgia of bilateral upper limbs +G5680 Other specified mononeuropathies of unspecified upper limb +G5681 Other specified mononeuropathies of right upper limb +G5682 Other specified mononeuropathies of left upper limb +G5683 Other specified mononeuropathies of bilateral upper limbs +G5690 Unspecified mononeuropathy of unspecified upper limb +G5691 Unspecified mononeuropathy of right upper limb +G5692 Unspecified mononeuropathy of left upper limb +G5693 Unspecified mononeuropathy of bilateral upper limbs +G5700 Lesion of sciatic nerve, unspecified lower limb +G5701 Lesion of sciatic nerve, right lower limb +G5702 Lesion of sciatic nerve, left lower limb +G5703 Lesion of sciatic nerve, bilateral lower limbs +G5710 Meralgia paresthetica, unspecified lower limb +G5711 Meralgia paresthetica, right lower limb +G5712 Meralgia paresthetica, left lower limb +G5713 Meralgia paresthetica, bilateral lower limbs +G5720 Lesion of femoral nerve, unspecified lower limb +G5721 Lesion of femoral nerve, right lower limb +G5722 Lesion of femoral nerve, left lower limb +G5723 Lesion of femoral nerve, bilateral lower limbs +G5730 Lesion of lateral popliteal nerve, unspecified lower limb +G5731 Lesion of lateral popliteal nerve, right lower limb +G5732 Lesion of lateral popliteal nerve, left lower limb +G5733 Lesion of lateral popliteal nerve, bilateral lower limbs +G5740 Lesion of medial popliteal nerve, unspecified lower limb +G5741 Lesion of medial popliteal nerve, right lower limb +G5742 Lesion of medial popliteal nerve, left lower limb +G5743 Lesion of medial popliteal nerve, bilateral lower limbs +G5750 Tarsal tunnel syndrome, unspecified lower limb +G5751 Tarsal tunnel syndrome, right lower limb +G5752 Tarsal tunnel syndrome, left lower limb +G5753 Tarsal tunnel syndrome, bilateral lower limbs +G5760 Lesion of plantar nerve, unspecified lower limb +G5761 Lesion of plantar nerve, right lower limb +G5762 Lesion of plantar nerve, left lower limb +G5763 Lesion of plantar nerve, bilateral lower limbs +G5770 Causalgia of unspecified lower limb +G5771 Causalgia of right lower limb +G5772 Causalgia of left lower limb +G5773 Causalgia of bilateral lower limbs +G5780 Other specified mononeuropathies of unspecified lower limb +G5781 Other specified mononeuropathies of right lower limb +G5782 Other specified mononeuropathies of left lower limb +G5783 Other specified mononeuropathies of bilateral lower limbs +G5790 Unspecified mononeuropathy of unspecified lower limb +G5791 Unspecified mononeuropathy of right lower limb +G5792 Unspecified mononeuropathy of left lower limb +G5793 Unspecified mononeuropathy of bilateral lower limbs +G580 Intercostal neuropathy +G587 Mononeuritis multiplex +G588 Other specified mononeuropathies +G589 Mononeuropathy, unspecified +G59 Mononeuropathy in diseases classified elsewhere +G600 Hereditary motor and sensory neuropathy +G601 Refsum's disease +G602 Neuropathy in association with hereditary ataxia +G603 Idiopathic progressive neuropathy +G608 Other hereditary and idiopathic neuropathies +G609 Hereditary and idiopathic neuropathy, unspecified +G610 Guillain-Barre syndrome +G611 Serum neuropathy +G6181 Chronic inflammatory demyelinating polyneuritis +G6182 Multifocal motor neuropathy +G6189 Other inflammatory polyneuropathies +G619 Inflammatory polyneuropathy, unspecified +G620 Drug-induced polyneuropathy +G621 Alcoholic polyneuropathy +G622 Polyneuropathy due to other toxic agents +G6281 Critical illness polyneuropathy +G6282 Radiation-induced polyneuropathy +G6289 Other specified polyneuropathies +G629 Polyneuropathy, unspecified +G63 Polyneuropathy in diseases classified elsewhere +G64 Other disorders of peripheral nervous system +G650 Sequelae of Guillain-Barre syndrome +G651 Sequelae of other inflammatory polyneuropathy +G652 Sequelae of toxic polyneuropathy +G7000 Myasthenia gravis without (acute) exacerbation +G7001 Myasthenia gravis with (acute) exacerbation +G701 Toxic myoneural disorders +G702 Congenital and developmental myasthenia +G7080 Lambert-Eaton syndrome, unspecified +G7081 Lambert-Eaton syndrome in disease classified elsewhere +G7089 Other specified myoneural disorders +G709 Myoneural disorder, unspecified +G710 Muscular dystrophy +G7100 Muscular dystrophy, unspecified +G7101 Duchenne or Becker muscular dystrophy +G7102 Facioscapulohumeral muscular dystrophy +G7109 Other specified muscular dystrophies +G7111 Myotonic muscular dystrophy +G7112 Myotonia congenita +G7113 Myotonic chondrodystrophy +G7114 Drug induced myotonia +G7119 Other specified myotonic disorders +G712 Congenital myopathies +G713 Mitochondrial myopathy, not elsewhere classified +G718 Other primary disorders of muscles +G719 Primary disorder of muscle, unspecified +G720 Drug-induced myopathy +G721 Alcoholic myopathy +G722 Myopathy due to other toxic agents +G723 Periodic paralysis +G7241 Inclusion body myositis [IBM] +G7249 Other inflammatory and immune myopathies, not elsewhere classified +G7281 Critical illness myopathy +G7289 Other specified myopathies +G729 Myopathy, unspecified +G731 Lambert-Eaton syndrome in neoplastic disease +G733 Myasthenic syndromes in other diseases classified elsewhere +G737 Myopathy in diseases classified elsewhere +G800 Spastic quadriplegic cerebral palsy +G801 Spastic diplegic cerebral palsy +G802 Spastic hemiplegic cerebral palsy +G803 Athetoid cerebral palsy +G804 Ataxic cerebral palsy +G808 Other cerebral palsy +G809 Cerebral palsy, unspecified +G8100 Flaccid hemiplegia affecting unspecified side +G8101 Flaccid hemiplegia affecting right dominant side +G8102 Flaccid hemiplegia affecting left dominant side +G8103 Flaccid hemiplegia affecting right nondominant side +G8104 Flaccid hemiplegia affecting left nondominant side +G8110 Spastic hemiplegia affecting unspecified side +G8111 Spastic hemiplegia affecting right dominant side +G8112 Spastic hemiplegia affecting left dominant side +G8113 Spastic hemiplegia affecting right nondominant side +G8114 Spastic hemiplegia affecting left nondominant side +G8190 Hemiplegia, unspecified affecting unspecified side +G8191 Hemiplegia, unspecified affecting right dominant side +G8192 Hemiplegia, unspecified affecting left dominant side +G8193 Hemiplegia, unspecified affecting right nondominant side +G8194 Hemiplegia, unspecified affecting left nondominant side +G8220 Paraplegia, unspecified +G8221 Paraplegia, complete +G8222 Paraplegia, incomplete +G8250 Quadriplegia, unspecified +G8251 Quadriplegia, C1-C4 complete +G8252 Quadriplegia, C1-C4 incomplete +G8253 Quadriplegia, C5-C7 complete +G8254 Quadriplegia, C5-C7 incomplete +G830 Diplegia of upper limbs +G8310 Monoplegia of lower limb affecting unspecified side +G8311 Monoplegia of lower limb affecting right dominant side +G8312 Monoplegia of lower limb affecting left dominant side +G8313 Monoplegia of lower limb affecting right nondominant side +G8314 Monoplegia of lower limb affecting left nondominant side +G8320 Monoplegia of upper limb affecting unspecified side +G8321 Monoplegia of upper limb affecting right dominant side +G8322 Monoplegia of upper limb affecting left dominant side +G8323 Monoplegia of upper limb affecting right nondominant side +G8324 Monoplegia of upper limb affecting left nondominant side +G8330 Monoplegia, unspecified affecting unspecified side +G8331 Monoplegia, unspecified affecting right dominant side +G8332 Monoplegia, unspecified affecting left dominant side +G8333 Monoplegia, unspecified affecting right nondominant side +G8334 Monoplegia, unspecified affecting left nondominant side +G834 Cauda equina syndrome +G835 Locked-in state +G8381 Brown-Sequard syndrome +G8382 Anterior cord syndrome +G8383 Posterior cord syndrome +G8384 Todd's paralysis (postepileptic) +G8389 Other specified paralytic syndromes +G839 Paralytic syndrome, unspecified +G890 Central pain syndrome +G8911 Acute pain due to trauma +G8912 Acute post-thoracotomy pain +G8918 Other acute postprocedural pain +G8921 Chronic pain due to trauma +G8922 Chronic post-thoracotomy pain +G8928 Other chronic postprocedural pain +G8929 Other chronic pain +G893 Neoplasm related pain (acute) (chronic) +G894 Chronic pain syndrome +G9001 Carotid sinus syncope +G9009 Other idiopathic peripheral autonomic neuropathy +G901 Familial dysautonomia [Riley-Day] +G902 Horner's syndrome +G903 Multi-system degeneration of the autonomic nervous system +G904 Autonomic dysreflexia +G9050 Complex regional pain syndrome I, unspecified +G90511 Complex regional pain syndrome I of right upper limb +G90512 Complex regional pain syndrome I of left upper limb +G90513 Complex regional pain syndrome I of upper limb, bilateral +G90519 Complex regional pain syndrome I of unspecified upper limb +G90521 Complex regional pain syndrome I of right lower limb +G90522 Complex regional pain syndrome I of left lower limb +G90523 Complex regional pain syndrome I of lower limb, bilateral +G90529 Complex regional pain syndrome I of unspecified lower limb +G9059 Complex regional pain syndrome I of other specified site +G908 Other disorders of autonomic nervous system +G909 Disorder of the autonomic nervous system, unspecified +G910 Communicating hydrocephalus +G911 Obstructive hydrocephalus +G912 (Idiopathic) normal pressure hydrocephalus +G913 Post-traumatic hydrocephalus, unspecified +G914 Hydrocephalus in diseases classified elsewhere +G918 Other hydrocephalus +G919 Hydrocephalus, unspecified +G92 Toxic encephalopathy +G930 Cerebral cysts +G931 Anoxic brain damage, not elsewhere classified +G932 Benign intracranial hypertension +G933 Postviral fatigue syndrome +G9340 Encephalopathy, unspecified +G9341 Metabolic encephalopathy +G9349 Other encephalopathy +G935 Compression of brain +G936 Cerebral edema +G937 Reye's syndrome +G9381 Temporal sclerosis +G9382 Brain death +G9389 Other specified disorders of brain +G939 Disorder of brain, unspecified +G94 Other disorders of brain in diseases classified elsewhere +G950 Syringomyelia and syringobulbia +G9511 Acute infarction of spinal cord (embolic) (nonembolic) +G9519 Other vascular myelopathies +G9520 Unspecified cord compression +G9529 Other cord compression +G9581 Conus medullaris syndrome +G9589 Other specified diseases of spinal cord +G959 Disease of spinal cord, unspecified +G960 Cerebrospinal fluid leak +G9611 Dural tear +G9612 Meningeal adhesions (cerebral) (spinal) +G9619 Other disorders of meninges, not elsewhere classified +G968 Other specified disorders of central nervous system +G969 Disorder of central nervous system, unspecified +G970 Cerebrospinal fluid leak from spinal puncture +G971 Other reaction to spinal and lumbar puncture +G972 Intracranial hypotension following ventricular shunting +G9731 Intraoperative hemorrhage and hematoma of a nervous system organ or structure complicating a nervous system procedure +G9732 Intraoperative hemorrhage and hematoma of a nervous system organ or structure complicating other procedure +G9741 Accidental puncture or laceration of dura during a procedure +G9748 Accidental puncture and laceration of other nervous system organ or structure during a nervous system procedure +G9749 Accidental puncture and laceration of other nervous system organ or structure during other procedure +G9751 Postprocedural hemorrhage of a nervous system organ or structure following a nervous system procedure +G9752 Postprocedural hemorrhage of a nervous system organ or structure following other procedure +G9761 Postprocedural hematoma of a nervous system organ or structure following a nervous system procedure +G9762 Postprocedural hematoma of a nervous system organ or structure following other procedure +G9763 Postprocedural seroma of a nervous system organ or structure following a nervous system procedure +G9764 Postprocedural seroma of a nervous system organ or structure following other procedure +G9781 Other intraoperative complications of nervous system +G9782 Other postprocedural complications and disorders of nervous system +G980 Neurogenic arthritis, not elsewhere classified +G988 Other disorders of nervous system +G990 Autonomic neuropathy in diseases classified elsewhere +G992 Myelopathy in diseases classified elsewhere +G998 Other specified disorders of nervous system in diseases classified elsewhere +H00011 Hordeolum externum right upper eyelid +H00012 Hordeolum externum right lower eyelid +H00013 Hordeolum externum right eye, unspecified eyelid +H00014 Hordeolum externum left upper eyelid +H00015 Hordeolum externum left lower eyelid +H00016 Hordeolum externum left eye, unspecified eyelid +H00019 Hordeolum externum unspecified eye, unspecified eyelid +H00021 Hordeolum internum right upper eyelid +H00022 Hordeolum internum right lower eyelid +H00023 Hordeolum internum right eye, unspecified eyelid +H00024 Hordeolum internum left upper eyelid +H00025 Hordeolum internum left lower eyelid +H00026 Hordeolum internum left eye, unspecified eyelid +H00029 Hordeolum internum unspecified eye, unspecified eyelid +H00031 Abscess of right upper eyelid +H00032 Abscess of right lower eyelid +H00033 Abscess of eyelid right eye, unspecified eyelid +H00034 Abscess of left upper eyelid +H00035 Abscess of left lower eyelid +H00036 Abscess of eyelid left eye, unspecified eyelid +H00039 Abscess of eyelid unspecified eye, unspecified eyelid +H0011 Chalazion right upper eyelid +H0012 Chalazion right lower eyelid +H0013 Chalazion right eye, unspecified eyelid +H0014 Chalazion left upper eyelid +H0015 Chalazion left lower eyelid +H0016 Chalazion left eye, unspecified eyelid +H0019 Chalazion unspecified eye, unspecified eyelid +H01001 Unspecified blepharitis right upper eyelid +H01002 Unspecified blepharitis right lower eyelid +H01003 Unspecified blepharitis right eye, unspecified eyelid +H01004 Unspecified blepharitis left upper eyelid +H01005 Unspecified blepharitis left lower eyelid +H01006 Unspecified blepharitis left eye, unspecified eyelid +H01009 Unspecified blepharitis unspecified eye, unspecified eyelid +H0100A Unspecified blepharitis right eye, upper and lower eyelids +H0100B Unspecified blepharitis left eye, upper and lower eyelids +H01011 Ulcerative blepharitis right upper eyelid +H01012 Ulcerative blepharitis right lower eyelid +H01013 Ulcerative blepharitis right eye, unspecified eyelid +H01014 Ulcerative blepharitis left upper eyelid +H01015 Ulcerative blepharitis left lower eyelid +H01016 Ulcerative blepharitis left eye, unspecified eyelid +H01019 Ulcerative blepharitis unspecified eye, unspecified eyelid +H0101A Ulcerative blepharitis right eye, upper and lower eyelids +H0101B Ulcerative blepharitis left eye, upper and lower eyelids +H01021 Squamous blepharitis right upper eyelid +H01022 Squamous blepharitis right lower eyelid +H01023 Squamous blepharitis right eye, unspecified eyelid +H01024 Squamous blepharitis left upper eyelid +H01025 Squamous blepharitis left lower eyelid +H01026 Squamous blepharitis left eye, unspecified eyelid +H01029 Squamous blepharitis unspecified eye, unspecified eyelid +H0102A Squamous blepharitis right eye, upper and lower eyelids +H0102B Squamous blepharitis left eye, upper and lower eyelids +H01111 Allergic dermatitis of right upper eyelid +H01112 Allergic dermatitis of right lower eyelid +H01113 Allergic dermatitis of right eye, unspecified eyelid +H01114 Allergic dermatitis of left upper eyelid +H01115 Allergic dermatitis of left lower eyelid +H01116 Allergic dermatitis of left eye, unspecified eyelid +H01119 Allergic dermatitis of unspecified eye, unspecified eyelid +H01121 Discoid lupus erythematosus of right upper eyelid +H01122 Discoid lupus erythematosus of right lower eyelid +H01123 Discoid lupus erythematosus of right eye, unspecified eyelid +H01124 Discoid lupus erythematosus of left upper eyelid +H01125 Discoid lupus erythematosus of left lower eyelid +H01126 Discoid lupus erythematosus of left eye, unspecified eyelid +H01129 Discoid lupus erythematosus of unspecified eye, unspecified eyelid +H01131 Eczematous dermatitis of right upper eyelid +H01132 Eczematous dermatitis of right lower eyelid +H01133 Eczematous dermatitis of right eye, unspecified eyelid +H01134 Eczematous dermatitis of left upper eyelid +H01135 Eczematous dermatitis of left lower eyelid +H01136 Eczematous dermatitis of left eye, unspecified eyelid +H01139 Eczematous dermatitis of unspecified eye, unspecified eyelid +H01141 Xeroderma of right upper eyelid +H01142 Xeroderma of right lower eyelid +H01143 Xeroderma of right eye, unspecified eyelid +H01144 Xeroderma of left upper eyelid +H01145 Xeroderma of left lower eyelid +H01146 Xeroderma of left eye, unspecified eyelid +H01149 Xeroderma of unspecified eye, unspecified eyelid +H018 Other specified inflammations of eyelid +H019 Unspecified inflammation of eyelid +H02001 Unspecified entropion of right upper eyelid +H02002 Unspecified entropion of right lower eyelid +H02003 Unspecified entropion of right eye, unspecified eyelid +H02004 Unspecified entropion of left upper eyelid +H02005 Unspecified entropion of left lower eyelid +H02006 Unspecified entropion of left eye, unspecified eyelid +H02009 Unspecified entropion of unspecified eye, unspecified eyelid +H02011 Cicatricial entropion of right upper eyelid +H02012 Cicatricial entropion of right lower eyelid +H02013 Cicatricial entropion of right eye, unspecified eyelid +H02014 Cicatricial entropion of left upper eyelid +H02015 Cicatricial entropion of left lower eyelid +H02016 Cicatricial entropion of left eye, unspecified eyelid +H02019 Cicatricial entropion of unspecified eye, unspecified eyelid +H02021 Mechanical entropion of right upper eyelid +H02022 Mechanical entropion of right lower eyelid +H02023 Mechanical entropion of right eye, unspecified eyelid +H02024 Mechanical entropion of left upper eyelid +H02025 Mechanical entropion of left lower eyelid +H02026 Mechanical entropion of left eye, unspecified eyelid +H02029 Mechanical entropion of unspecified eye, unspecified eyelid +H02031 Senile entropion of right upper eyelid +H02032 Senile entropion of right lower eyelid +H02033 Senile entropion of right eye, unspecified eyelid +H02034 Senile entropion of left upper eyelid +H02035 Senile entropion of left lower eyelid +H02036 Senile entropion of left eye, unspecified eyelid +H02039 Senile entropion of unspecified eye, unspecified eyelid +H02041 Spastic entropion of right upper eyelid +H02042 Spastic entropion of right lower eyelid +H02043 Spastic entropion of right eye, unspecified eyelid +H02044 Spastic entropion of left upper eyelid +H02045 Spastic entropion of left lower eyelid +H02046 Spastic entropion of left eye, unspecified eyelid +H02049 Spastic entropion of unspecified eye, unspecified eyelid +H02051 Trichiasis without entropion right upper eyelid +H02052 Trichiasis without entropion right lower eyelid +H02053 Trichiasis without entropion right eye, unspecified eyelid +H02054 Trichiasis without entropion left upper eyelid +H02055 Trichiasis without entropion left lower eyelid +H02056 Trichiasis without entropion left eye, unspecified eyelid +H02059 Trichiasis without entropion unspecified eye, unspecified eyelid +H02101 Unspecified ectropion of right upper eyelid +H02102 Unspecified ectropion of right lower eyelid +H02103 Unspecified ectropion of right eye, unspecified eyelid +H02104 Unspecified ectropion of left upper eyelid +H02105 Unspecified ectropion of left lower eyelid +H02106 Unspecified ectropion of left eye, unspecified eyelid +H02109 Unspecified ectropion of unspecified eye, unspecified eyelid +H02111 Cicatricial ectropion of right upper eyelid +H02112 Cicatricial ectropion of right lower eyelid +H02113 Cicatricial ectropion of right eye, unspecified eyelid +H02114 Cicatricial ectropion of left upper eyelid +H02115 Cicatricial ectropion of left lower eyelid +H02116 Cicatricial ectropion of left eye, unspecified eyelid +H02119 Cicatricial ectropion of unspecified eye, unspecified eyelid +H02121 Mechanical ectropion of right upper eyelid +H02122 Mechanical ectropion of right lower eyelid +H02123 Mechanical ectropion of right eye, unspecified eyelid +H02124 Mechanical ectropion of left upper eyelid +H02125 Mechanical ectropion of left lower eyelid +H02126 Mechanical ectropion of left eye, unspecified eyelid +H02129 Mechanical ectropion of unspecified eye, unspecified eyelid +H02131 Senile ectropion of right upper eyelid +H02132 Senile ectropion of right lower eyelid +H02133 Senile ectropion of right eye, unspecified eyelid +H02134 Senile ectropion of left upper eyelid +H02135 Senile ectropion of left lower eyelid +H02136 Senile ectropion of left eye, unspecified eyelid +H02139 Senile ectropion of unspecified eye, unspecified eyelid +H02141 Spastic ectropion of right upper eyelid +H02142 Spastic ectropion of right lower eyelid +H02143 Spastic ectropion of right eye, unspecified eyelid +H02144 Spastic ectropion of left upper eyelid +H02145 Spastic ectropion of left lower eyelid +H02146 Spastic ectropion of left eye, unspecified eyelid +H02149 Spastic ectropion of unspecified eye, unspecified eyelid +H02151 Paralytic ectropion of right upper eyelid +H02152 Paralytic ectropion of right lower eyelid +H02153 Paralytic ectropion of right eye, unspecified eyelid +H02154 Paralytic ectropion of left upper eyelid +H02155 Paralytic ectropion of left lower eyelid +H02156 Paralytic ectropion of left eye, unspecified eyelid +H02159 Paralytic ectropion of unspecified eye, unspecified eyelid +H02201 Unspecified lagophthalmos right upper eyelid +H02202 Unspecified lagophthalmos right lower eyelid +H02203 Unspecified lagophthalmos right eye, unspecified eyelid +H02204 Unspecified lagophthalmos left upper eyelid +H02205 Unspecified lagophthalmos left lower eyelid +H02206 Unspecified lagophthalmos left eye, unspecified eyelid +H02209 Unspecified lagophthalmos unspecified eye, unspecified eyelid +H0220A Unspecified lagophthalmos right eye, upper and lower eyelids +H0220B Unspecified lagophthalmos left eye, upper and lower eyelids +H0220C Unspecified lagophthalmos, bilateral, upper and lower eyelids +H02211 Cicatricial lagophthalmos right upper eyelid +H02212 Cicatricial lagophthalmos right lower eyelid +H02213 Cicatricial lagophthalmos right eye, unspecified eyelid +H02214 Cicatricial lagophthalmos left upper eyelid +H02215 Cicatricial lagophthalmos left lower eyelid +H02216 Cicatricial lagophthalmos left eye, unspecified eyelid +H02219 Cicatricial lagophthalmos unspecified eye, unspecified eyelid +H0221A Cicatricial lagophthalmos right eye, upper and lower eyelids +H0221B Cicatricial lagophthalmos left eye, upper and lower eyelids +H0221C Cicatricial lagophthalmos, bilateral, upper and lower eyelids +H02221 Mechanical lagophthalmos right upper eyelid +H02222 Mechanical lagophthalmos right lower eyelid +H02223 Mechanical lagophthalmos right eye, unspecified eyelid +H02224 Mechanical lagophthalmos left upper eyelid +H02225 Mechanical lagophthalmos left lower eyelid +H02226 Mechanical lagophthalmos left eye, unspecified eyelid +H02229 Mechanical lagophthalmos unspecified eye, unspecified eyelid +H0222A Mechanical lagophthalmos right eye, upper and lower eyelids +H0222B Mechanical lagophthalmos left eye, upper and lower eyelids +H0222C Mechanical lagophthalmos, bilateral, upper and lower eyelids +H02231 Paralytic lagophthalmos right upper eyelid +H02232 Paralytic lagophthalmos right lower eyelid +H02233 Paralytic lagophthalmos right eye, unspecified eyelid +H02234 Paralytic lagophthalmos left upper eyelid +H02235 Paralytic lagophthalmos left lower eyelid +H02236 Paralytic lagophthalmos left eye, unspecified eyelid +H02239 Paralytic lagophthalmos unspecified eye, unspecified eyelid +H0223A Paralytic lagophthalmos right eye, upper and lower eyelids +H0223B Paralytic lagophthalmos left eye, upper and lower eyelids +H0223C Paralytic lagophthalmos, bilateral, upper and lower eyelids +H0230 Blepharochalasis unspecified eye, unspecified eyelid +H0231 Blepharochalasis right upper eyelid +H0232 Blepharochalasis right lower eyelid +H0233 Blepharochalasis right eye, unspecified eyelid +H0234 Blepharochalasis left upper eyelid +H0235 Blepharochalasis left lower eyelid +H0236 Blepharochalasis left eye, unspecified eyelid +H02401 Unspecified ptosis of right eyelid +H02402 Unspecified ptosis of left eyelid +H02403 Unspecified ptosis of bilateral eyelids +H02409 Unspecified ptosis of unspecified eyelid +H02411 Mechanical ptosis of right eyelid +H02412 Mechanical ptosis of left eyelid +H02413 Mechanical ptosis of bilateral eyelids +H02419 Mechanical ptosis of unspecified eyelid +H02421 Myogenic ptosis of right eyelid +H02422 Myogenic ptosis of left eyelid +H02423 Myogenic ptosis of bilateral eyelids +H02429 Myogenic ptosis of unspecified eyelid +H02431 Paralytic ptosis of right eyelid +H02432 Paralytic ptosis of left eyelid +H02433 Paralytic ptosis of bilateral eyelids +H02439 Paralytic ptosis unspecified eyelid +H02511 Abnormal innervation syndrome right upper eyelid +H02512 Abnormal innervation syndrome right lower eyelid +H02513 Abnormal innervation syndrome right eye, unspecified eyelid +H02514 Abnormal innervation syndrome left upper eyelid +H02515 Abnormal innervation syndrome left lower eyelid +H02516 Abnormal innervation syndrome left eye, unspecified eyelid +H02519 Abnormal innervation syndrome unspecified eye, unspecified eyelid +H02521 Blepharophimosis right upper eyelid +H02522 Blepharophimosis right lower eyelid +H02523 Blepharophimosis right eye, unspecified eyelid +H02524 Blepharophimosis left upper eyelid +H02525 Blepharophimosis left lower eyelid +H02526 Blepharophimosis left eye, unspecified eyelid +H02529 Blepharophimosis unspecified eye, unspecified lid +H02531 Eyelid retraction right upper eyelid +H02532 Eyelid retraction right lower eyelid +H02533 Eyelid retraction right eye, unspecified eyelid +H02534 Eyelid retraction left upper eyelid +H02535 Eyelid retraction left lower eyelid +H02536 Eyelid retraction left eye, unspecified eyelid +H02539 Eyelid retraction unspecified eye, unspecified lid +H0259 Other disorders affecting eyelid function +H0260 Xanthelasma of unspecified eye, unspecified eyelid +H0261 Xanthelasma of right upper eyelid +H0262 Xanthelasma of right lower eyelid +H0263 Xanthelasma of right eye, unspecified eyelid +H0264 Xanthelasma of left upper eyelid +H0265 Xanthelasma of left lower eyelid +H0266 Xanthelasma of left eye, unspecified eyelid +H0270 Unspecified degenerative disorders of eyelid and periocular area +H02711 Chloasma of right upper eyelid and periocular area +H02712 Chloasma of right lower eyelid and periocular area +H02713 Chloasma of right eye, unspecified eyelid and periocular area +H02714 Chloasma of left upper eyelid and periocular area +H02715 Chloasma of left lower eyelid and periocular area +H02716 Chloasma of left eye, unspecified eyelid and periocular area +H02719 Chloasma of unspecified eye, unspecified eyelid and periocular area +H02721 Madarosis of right upper eyelid and periocular area +H02722 Madarosis of right lower eyelid and periocular area +H02723 Madarosis of right eye, unspecified eyelid and periocular area +H02724 Madarosis of left upper eyelid and periocular area +H02725 Madarosis of left lower eyelid and periocular area +H02726 Madarosis of left eye, unspecified eyelid and periocular area +H02729 Madarosis of unspecified eye, unspecified eyelid and periocular area +H02731 Vitiligo of right upper eyelid and periocular area +H02732 Vitiligo of right lower eyelid and periocular area +H02733 Vitiligo of right eye, unspecified eyelid and periocular area +H02734 Vitiligo of left upper eyelid and periocular area +H02735 Vitiligo of left lower eyelid and periocular area +H02736 Vitiligo of left eye, unspecified eyelid and periocular area +H02739 Vitiligo of unspecified eye, unspecified eyelid and periocular area +H0279 Other degenerative disorders of eyelid and periocular area +H02811 Retained foreign body in right upper eyelid +H02812 Retained foreign body in right lower eyelid +H02813 Retained foreign body in right eye, unspecified eyelid +H02814 Retained foreign body in left upper eyelid +H02815 Retained foreign body in left lower eyelid +H02816 Retained foreign body in left eye, unspecified eyelid +H02819 Retained foreign body in unspecified eye, unspecified eyelid +H02821 Cysts of right upper eyelid +H02822 Cysts of right lower eyelid +H02823 Cysts of right eye, unspecified eyelid +H02824 Cysts of left upper eyelid +H02825 Cysts of left lower eyelid +H02826 Cysts of left eye, unspecified eyelid +H02829 Cysts of unspecified eye, unspecified eyelid +H02831 Dermatochalasis of right upper eyelid +H02832 Dermatochalasis of right lower eyelid +H02833 Dermatochalasis of right eye, unspecified eyelid +H02834 Dermatochalasis of left upper eyelid +H02835 Dermatochalasis of left lower eyelid +H02836 Dermatochalasis of left eye, unspecified eyelid +H02839 Dermatochalasis of unspecified eye, unspecified eyelid +H02841 Edema of right upper eyelid +H02842 Edema of right lower eyelid +H02843 Edema of right eye, unspecified eyelid +H02844 Edema of left upper eyelid +H02845 Edema of left lower eyelid +H02846 Edema of left eye, unspecified eyelid +H02849 Edema of unspecified eye, unspecified eyelid +H02851 Elephantiasis of right upper eyelid +H02852 Elephantiasis of right lower eyelid +H02853 Elephantiasis of right eye, unspecified eyelid +H02854 Elephantiasis of left upper eyelid +H02855 Elephantiasis of left lower eyelid +H02856 Elephantiasis of left eye, unspecified eyelid +H02859 Elephantiasis of unspecified eye, unspecified eyelid +H02861 Hypertrichosis of right upper eyelid +H02862 Hypertrichosis of right lower eyelid +H02863 Hypertrichosis of right eye, unspecified eyelid +H02864 Hypertrichosis of left upper eyelid +H02865 Hypertrichosis of left lower eyelid +H02866 Hypertrichosis of left eye, unspecified eyelid +H02869 Hypertrichosis of unspecified eye, unspecified eyelid +H02871 Vascular anomalies of right upper eyelid +H02872 Vascular anomalies of right lower eyelid +H02873 Vascular anomalies of right eye, unspecified eyelid +H02874 Vascular anomalies of left upper eyelid +H02875 Vascular anomalies of left lower eyelid +H02876 Vascular anomalies of left eye, unspecified eyelid +H02879 Vascular anomalies of unspecified eye, unspecified eyelid +H02881 Meibomian gland dysfunction right upper eyelid +H02882 Meibomian gland dysfunction right lower eyelid +H02883 Meibomian gland dysfunction of right eye, unspecified eyelid +H02884 Meibomian gland dysfunction left upper eyelid +H02885 Meibomian gland dysfunction left lower eyelid +H02886 Meibomian gland dysfunction of left eye, unspecified eyelid +H02889 Meibomian gland dysfunction of unspecified eye, unspecified eyelid +H0288A Meibomian gland dysfunction right eye, upper and lower eyelids +H0288B Meibomian gland dysfunction left eye, upper and lower eyelid +H0289 Other specified disorders of eyelid +H029 Unspecified disorder of eyelid +H04001 Unspecified dacryoadenitis, right lacrimal gland +H04002 Unspecified dacryoadenitis, left lacrimal gland +H04003 Unspecified dacryoadenitis, bilateral lacrimal glands +H04009 Unspecified dacryoadenitis, unspecified lacrimal gland +H04011 Acute dacryoadenitis, right lacrimal gland +H04012 Acute dacryoadenitis, left lacrimal gland +H04013 Acute dacryoadenitis, bilateral lacrimal glands +H04019 Acute dacryoadenitis, unspecified lacrimal gland +H04021 Chronic dacryoadenitis, right lacrimal gland +H04022 Chronic dacryoadenitis, left lacrimal gland +H04023 Chronic dacryoadenitis, bilateral lacrimal gland +H04029 Chronic dacryoadenitis, unspecified lacrimal gland +H04031 Chronic enlargement of right lacrimal gland +H04032 Chronic enlargement of left lacrimal gland +H04033 Chronic enlargement of bilateral lacrimal glands +H04039 Chronic enlargement of unspecified lacrimal gland +H04111 Dacryops of right lacrimal gland +H04112 Dacryops of left lacrimal gland +H04113 Dacryops of bilateral lacrimal glands +H04119 Dacryops of unspecified lacrimal gland +H04121 Dry eye syndrome of right lacrimal gland +H04122 Dry eye syndrome of left lacrimal gland +H04123 Dry eye syndrome of bilateral lacrimal glands +H04129 Dry eye syndrome of unspecified lacrimal gland +H04131 Lacrimal cyst, right lacrimal gland +H04132 Lacrimal cyst, left lacrimal gland +H04133 Lacrimal cyst, bilateral lacrimal glands +H04139 Lacrimal cyst, unspecified lacrimal gland +H04141 Primary lacrimal gland atrophy, right lacrimal gland +H04142 Primary lacrimal gland atrophy, left lacrimal gland +H04143 Primary lacrimal gland atrophy, bilateral lacrimal glands +H04149 Primary lacrimal gland atrophy, unspecified lacrimal gland +H04151 Secondary lacrimal gland atrophy, right lacrimal gland +H04152 Secondary lacrimal gland atrophy, left lacrimal gland +H04153 Secondary lacrimal gland atrophy, bilateral lacrimal glands +H04159 Secondary lacrimal gland atrophy, unspecified lacrimal gland +H04161 Lacrimal gland dislocation, right lacrimal gland +H04162 Lacrimal gland dislocation, left lacrimal gland +H04163 Lacrimal gland dislocation, bilateral lacrimal glands +H04169 Lacrimal gland dislocation, unspecified lacrimal gland +H0419 Other specified disorders of lacrimal gland +H04201 Unspecified epiphora, right side +H04202 Unspecified epiphora, left side +H04203 Unspecified epiphora, bilateral +H04209 Unspecified epiphora, unspecified side +H04211 Epiphora due to excess lacrimation, right lacrimal gland +H04212 Epiphora due to excess lacrimation, left lacrimal gland +H04213 Epiphora due to excess lacrimation, bilateral lacrimal glands +H04219 Epiphora due to excess lacrimation, unspecified lacrimal gland +H04221 Epiphora due to insufficient drainage, right side +H04222 Epiphora due to insufficient drainage, left side +H04223 Epiphora due to insufficient drainage, bilateral +H04229 Epiphora due to insufficient drainage, unspecified side +H04301 Unspecified dacryocystitis of right lacrimal passage +H04302 Unspecified dacryocystitis of left lacrimal passage +H04303 Unspecified dacryocystitis of bilateral lacrimal passages +H04309 Unspecified dacryocystitis of unspecified lacrimal passage +H04311 Phlegmonous dacryocystitis of right lacrimal passage +H04312 Phlegmonous dacryocystitis of left lacrimal passage +H04313 Phlegmonous dacryocystitis of bilateral lacrimal passages +H04319 Phlegmonous dacryocystitis of unspecified lacrimal passage +H04321 Acute dacryocystitis of right lacrimal passage +H04322 Acute dacryocystitis of left lacrimal passage +H04323 Acute dacryocystitis of bilateral lacrimal passages +H04329 Acute dacryocystitis of unspecified lacrimal passage +H04331 Acute lacrimal canaliculitis of right lacrimal passage +H04332 Acute lacrimal canaliculitis of left lacrimal passage +H04333 Acute lacrimal canaliculitis of bilateral lacrimal passages +H04339 Acute lacrimal canaliculitis of unspecified lacrimal passage +H04411 Chronic dacryocystitis of right lacrimal passage +H04412 Chronic dacryocystitis of left lacrimal passage +H04413 Chronic dacryocystitis of bilateral lacrimal passages +H04419 Chronic dacryocystitis of unspecified lacrimal passage +H04421 Chronic lacrimal canaliculitis of right lacrimal passage +H04422 Chronic lacrimal canaliculitis of left lacrimal passage +H04423 Chronic lacrimal canaliculitis of bilateral lacrimal passages +H04429 Chronic lacrimal canaliculitis of unspecified lacrimal passage +H04431 Chronic lacrimal mucocele of right lacrimal passage +H04432 Chronic lacrimal mucocele of left lacrimal passage +H04433 Chronic lacrimal mucocele of bilateral lacrimal passages +H04439 Chronic lacrimal mucocele of unspecified lacrimal passage +H04511 Dacryolith of right lacrimal passage +H04512 Dacryolith of left lacrimal passage +H04513 Dacryolith of bilateral lacrimal passages +H04519 Dacryolith of unspecified lacrimal passage +H04521 Eversion of right lacrimal punctum +H04522 Eversion of left lacrimal punctum +H04523 Eversion of bilateral lacrimal punctum +H04529 Eversion of unspecified lacrimal punctum +H04531 Neonatal obstruction of right nasolacrimal duct +H04532 Neonatal obstruction of left nasolacrimal duct +H04533 Neonatal obstruction of bilateral nasolacrimal duct +H04539 Neonatal obstruction of unspecified nasolacrimal duct +H04541 Stenosis of right lacrimal canaliculi +H04542 Stenosis of left lacrimal canaliculi +H04543 Stenosis of bilateral lacrimal canaliculi +H04549 Stenosis of unspecified lacrimal canaliculi +H04551 Acquired stenosis of right nasolacrimal duct +H04552 Acquired stenosis of left nasolacrimal duct +H04553 Acquired stenosis of bilateral nasolacrimal duct +H04559 Acquired stenosis of unspecified nasolacrimal duct +H04561 Stenosis of right lacrimal punctum +H04562 Stenosis of left lacrimal punctum +H04563 Stenosis of bilateral lacrimal punctum +H04569 Stenosis of unspecified lacrimal punctum +H04571 Stenosis of right lacrimal sac +H04572 Stenosis of left lacrimal sac +H04573 Stenosis of bilateral lacrimal sac +H04579 Stenosis of unspecified lacrimal sac +H04611 Lacrimal fistula right lacrimal passage +H04612 Lacrimal fistula left lacrimal passage +H04613 Lacrimal fistula bilateral lacrimal passages +H04619 Lacrimal fistula unspecified lacrimal passage +H0469 Other changes of lacrimal passages +H04811 Granuloma of right lacrimal passage +H04812 Granuloma of left lacrimal passage +H04813 Granuloma of bilateral lacrimal passages +H04819 Granuloma of unspecified lacrimal passage +H0489 Other disorders of lacrimal system +H049 Disorder of lacrimal system, unspecified +H0500 Unspecified acute inflammation of orbit +H05011 Cellulitis of right orbit +H05012 Cellulitis of left orbit +H05013 Cellulitis of bilateral orbits +H05019 Cellulitis of unspecified orbit +H05021 Osteomyelitis of right orbit +H05022 Osteomyelitis of left orbit +H05023 Osteomyelitis of bilateral orbits +H05029 Osteomyelitis of unspecified orbit +H05031 Periostitis of right orbit +H05032 Periostitis of left orbit +H05033 Periostitis of bilateral orbits +H05039 Periostitis of unspecified orbit +H05041 Tenonitis of right orbit +H05042 Tenonitis of left orbit +H05043 Tenonitis of bilateral orbits +H05049 Tenonitis of unspecified orbit +H0510 Unspecified chronic inflammatory disorders of orbit +H05111 Granuloma of right orbit +H05112 Granuloma of left orbit +H05113 Granuloma of bilateral orbits +H05119 Granuloma of unspecified orbit +H05121 Orbital myositis, right orbit +H05122 Orbital myositis, left orbit +H05123 Orbital myositis, bilateral +H05129 Orbital myositis, unspecified orbit +H0520 Unspecified exophthalmos +H05211 Displacement (lateral) of globe, right eye +H05212 Displacement (lateral) of globe, left eye +H05213 Displacement (lateral) of globe, bilateral +H05219 Displacement (lateral) of globe, unspecified eye +H05221 Edema of right orbit +H05222 Edema of left orbit +H05223 Edema of bilateral orbit +H05229 Edema of unspecified orbit +H05231 Hemorrhage of right orbit +H05232 Hemorrhage of left orbit +H05233 Hemorrhage of bilateral orbit +H05239 Hemorrhage of unspecified orbit +H05241 Constant exophthalmos, right eye +H05242 Constant exophthalmos, left eye +H05243 Constant exophthalmos, bilateral +H05249 Constant exophthalmos, unspecified eye +H05251 Intermittent exophthalmos, right eye +H05252 Intermittent exophthalmos, left eye +H05253 Intermittent exophthalmos, bilateral +H05259 Intermittent exophthalmos, unspecified eye +H05261 Pulsating exophthalmos, right eye +H05262 Pulsating exophthalmos, left eye +H05263 Pulsating exophthalmos, bilateral +H05269 Pulsating exophthalmos, unspecified eye +H0530 Unspecified deformity of orbit +H05311 Atrophy of right orbit +H05312 Atrophy of left orbit +H05313 Atrophy of bilateral orbit +H05319 Atrophy of unspecified orbit +H05321 Deformity of right orbit due to bone disease +H05322 Deformity of left orbit due to bone disease +H05323 Deformity of bilateral orbits due to bone disease +H05329 Deformity of unspecified orbit due to bone disease +H05331 Deformity of right orbit due to trauma or surgery +H05332 Deformity of left orbit due to trauma or surgery +H05333 Deformity of bilateral orbits due to trauma or surgery +H05339 Deformity of unspecified orbit due to trauma or surgery +H05341 Enlargement of right orbit +H05342 Enlargement of left orbit +H05343 Enlargement of bilateral orbits +H05349 Enlargement of unspecified orbit +H05351 Exostosis of right orbit +H05352 Exostosis of left orbit +H05353 Exostosis of bilateral orbits +H05359 Exostosis of unspecified orbit +H05401 Unspecified enophthalmos, right eye +H05402 Unspecified enophthalmos, left eye +H05403 Unspecified enophthalmos, bilateral +H05409 Unspecified enophthalmos, unspecified eye +H05411 Enophthalmos due to atrophy of orbital tissue, right eye +H05412 Enophthalmos due to atrophy of orbital tissue, left eye +H05413 Enophthalmos due to atrophy of orbital tissue, bilateral +H05419 Enophthalmos due to atrophy of orbital tissue, unspecified eye +H05421 Enophthalmos due to trauma or surgery, right eye +H05422 Enophthalmos due to trauma or surgery, left eye +H05423 Enophthalmos due to trauma or surgery, bilateral +H05429 Enophthalmos due to trauma or surgery, unspecified eye +H0550 Retained (old) foreign body following penetrating wound of unspecified orbit +H0551 Retained (old) foreign body following penetrating wound of right orbit +H0552 Retained (old) foreign body following penetrating wound of left orbit +H0553 Retained (old) foreign body following penetrating wound of bilateral orbits +H05811 Cyst of right orbit +H05812 Cyst of left orbit +H05813 Cyst of bilateral orbits +H05819 Cyst of unspecified orbit +H05821 Myopathy of extraocular muscles, right orbit +H05822 Myopathy of extraocular muscles, left orbit +H05823 Myopathy of extraocular muscles, bilateral +H05829 Myopathy of extraocular muscles, unspecified orbit +H0589 Other disorders of orbit +H059 Unspecified disorder of orbit +H10011 Acute follicular conjunctivitis, right eye +H10012 Acute follicular conjunctivitis, left eye +H10013 Acute follicular conjunctivitis, bilateral +H10019 Acute follicular conjunctivitis, unspecified eye +H10021 Other mucopurulent conjunctivitis, right eye +H10022 Other mucopurulent conjunctivitis, left eye +H10023 Other mucopurulent conjunctivitis, bilateral +H10029 Other mucopurulent conjunctivitis, unspecified eye +H1010 Acute atopic conjunctivitis, unspecified eye +H1011 Acute atopic conjunctivitis, right eye +H1012 Acute atopic conjunctivitis, left eye +H1013 Acute atopic conjunctivitis, bilateral +H10211 Acute toxic conjunctivitis, right eye +H10212 Acute toxic conjunctivitis, left eye +H10213 Acute toxic conjunctivitis, bilateral +H10219 Acute toxic conjunctivitis, unspecified eye +H10221 Pseudomembranous conjunctivitis, right eye +H10222 Pseudomembranous conjunctivitis, left eye +H10223 Pseudomembranous conjunctivitis, bilateral +H10229 Pseudomembranous conjunctivitis, unspecified eye +H10231 Serous conjunctivitis, except viral, right eye +H10232 Serous conjunctivitis, except viral, left eye +H10233 Serous conjunctivitis, except viral, bilateral +H10239 Serous conjunctivitis, except viral, unspecified eye +H1030 Unspecified acute conjunctivitis, unspecified eye +H1031 Unspecified acute conjunctivitis, right eye +H1032 Unspecified acute conjunctivitis, left eye +H1033 Unspecified acute conjunctivitis, bilateral +H10401 Unspecified chronic conjunctivitis, right eye +H10402 Unspecified chronic conjunctivitis, left eye +H10403 Unspecified chronic conjunctivitis, bilateral +H10409 Unspecified chronic conjunctivitis, unspecified eye +H10411 Chronic giant papillary conjunctivitis, right eye +H10412 Chronic giant papillary conjunctivitis, left eye +H10413 Chronic giant papillary conjunctivitis, bilateral +H10419 Chronic giant papillary conjunctivitis, unspecified eye +H10421 Simple chronic conjunctivitis, right eye +H10422 Simple chronic conjunctivitis, left eye +H10423 Simple chronic conjunctivitis, bilateral +H10429 Simple chronic conjunctivitis, unspecified eye +H10431 Chronic follicular conjunctivitis, right eye +H10432 Chronic follicular conjunctivitis, left eye +H10433 Chronic follicular conjunctivitis, bilateral +H10439 Chronic follicular conjunctivitis, unspecified eye +H1044 Vernal conjunctivitis +H1045 Other chronic allergic conjunctivitis +H10501 Unspecified blepharoconjunctivitis, right eye +H10502 Unspecified blepharoconjunctivitis, left eye +H10503 Unspecified blepharoconjunctivitis, bilateral +H10509 Unspecified blepharoconjunctivitis, unspecified eye +H10511 Ligneous conjunctivitis, right eye +H10512 Ligneous conjunctivitis, left eye +H10513 Ligneous conjunctivitis, bilateral +H10519 Ligneous conjunctivitis, unspecified eye +H10521 Angular blepharoconjunctivitis, right eye +H10522 Angular blepharoconjunctivitis, left eye +H10523 Angular blepharoconjunctivitis, bilateral +H10529 Angular blepharoconjunctivitis, unspecified eye +H10531 Contact blepharoconjunctivitis, right eye +H10532 Contact blepharoconjunctivitis, left eye +H10533 Contact blepharoconjunctivitis, bilateral +H10539 Contact blepharoconjunctivitis, unspecified eye +H10811 Pingueculitis, right eye +H10812 Pingueculitis, left eye +H10813 Pingueculitis, bilateral +H10819 Pingueculitis, unspecified eye +H10821 Rosacea conjunctivitis, right eye +H10822 Rosacea conjunctivitis, left eye +H10823 Rosacea conjunctivitis, bilateral +H10829 Rosacea conjunctivitis, unspecified eye +H1089 Other conjunctivitis +H109 Unspecified conjunctivitis +H11001 Unspecified pterygium of right eye +H11002 Unspecified pterygium of left eye +H11003 Unspecified pterygium of eye, bilateral +H11009 Unspecified pterygium of unspecified eye +H11011 Amyloid pterygium of right eye +H11012 Amyloid pterygium of left eye +H11013 Amyloid pterygium of eye, bilateral +H11019 Amyloid pterygium of unspecified eye +H11021 Central pterygium of right eye +H11022 Central pterygium of left eye +H11023 Central pterygium of eye, bilateral +H11029 Central pterygium of unspecified eye +H11031 Double pterygium of right eye +H11032 Double pterygium of left eye +H11033 Double pterygium of eye, bilateral +H11039 Double pterygium of unspecified eye +H11041 Peripheral pterygium, stationary, right eye +H11042 Peripheral pterygium, stationary, left eye +H11043 Peripheral pterygium, stationary, bilateral +H11049 Peripheral pterygium, stationary, unspecified eye +H11051 Peripheral pterygium, progressive, right eye +H11052 Peripheral pterygium, progressive, left eye +H11053 Peripheral pterygium, progressive, bilateral +H11059 Peripheral pterygium, progressive, unspecified eye +H11061 Recurrent pterygium of right eye +H11062 Recurrent pterygium of left eye +H11063 Recurrent pterygium of eye, bilateral +H11069 Recurrent pterygium of unspecified eye +H1110 Unspecified conjunctival degenerations +H11111 Conjunctival deposits, right eye +H11112 Conjunctival deposits, left eye +H11113 Conjunctival deposits, bilateral +H11119 Conjunctival deposits, unspecified eye +H11121 Conjunctival concretions, right eye +H11122 Conjunctival concretions, left eye +H11123 Conjunctival concretions, bilateral +H11129 Conjunctival concretions, unspecified eye +H11131 Conjunctival pigmentations, right eye +H11132 Conjunctival pigmentations, left eye +H11133 Conjunctival pigmentations, bilateral +H11139 Conjunctival pigmentations, unspecified eye +H11141 Conjunctival xerosis, unspecified, right eye +H11142 Conjunctival xerosis, unspecified, left eye +H11143 Conjunctival xerosis, unspecified, bilateral +H11149 Conjunctival xerosis, unspecified, unspecified eye +H11151 Pinguecula, right eye +H11152 Pinguecula, left eye +H11153 Pinguecula, bilateral +H11159 Pinguecula, unspecified eye +H11211 Conjunctival adhesions and strands (localized), right eye +H11212 Conjunctival adhesions and strands (localized), left eye +H11213 Conjunctival adhesions and strands (localized), bilateral +H11219 Conjunctival adhesions and strands (localized), unspecified eye +H11221 Conjunctival granuloma, right eye +H11222 Conjunctival granuloma, left eye +H11223 Conjunctival granuloma, bilateral +H11229 Conjunctival granuloma, unspecified +H11231 Symblepharon, right eye +H11232 Symblepharon, left eye +H11233 Symblepharon, bilateral +H11239 Symblepharon, unspecified eye +H11241 Scarring of conjunctiva, right eye +H11242 Scarring of conjunctiva, left eye +H11243 Scarring of conjunctiva, bilateral +H11249 Scarring of conjunctiva, unspecified eye +H1130 Conjunctival hemorrhage, unspecified eye +H1131 Conjunctival hemorrhage, right eye +H1132 Conjunctival hemorrhage, left eye +H1133 Conjunctival hemorrhage, bilateral +H11411 Vascular abnormalities of conjunctiva, right eye +H11412 Vascular abnormalities of conjunctiva, left eye +H11413 Vascular abnormalities of conjunctiva, bilateral +H11419 Vascular abnormalities of conjunctiva, unspecified eye +H11421 Conjunctival edema, right eye +H11422 Conjunctival edema, left eye +H11423 Conjunctival edema, bilateral +H11429 Conjunctival edema, unspecified eye +H11431 Conjunctival hyperemia, right eye +H11432 Conjunctival hyperemia, left eye +H11433 Conjunctival hyperemia, bilateral +H11439 Conjunctival hyperemia, unspecified eye +H11441 Conjunctival cysts, right eye +H11442 Conjunctival cysts, left eye +H11443 Conjunctival cysts, bilateral +H11449 Conjunctival cysts, unspecified eye +H11811 Pseudopterygium of conjunctiva, right eye +H11812 Pseudopterygium of conjunctiva, left eye +H11813 Pseudopterygium of conjunctiva, bilateral +H11819 Pseudopterygium of conjunctiva, unspecified eye +H11821 Conjunctivochalasis, right eye +H11822 Conjunctivochalasis, left eye +H11823 Conjunctivochalasis, bilateral +H11829 Conjunctivochalasis, unspecified eye +H1189 Other specified disorders of conjunctiva +H119 Unspecified disorder of conjunctiva +H15001 Unspecified scleritis, right eye +H15002 Unspecified scleritis, left eye +H15003 Unspecified scleritis, bilateral +H15009 Unspecified scleritis, unspecified eye +H15011 Anterior scleritis, right eye +H15012 Anterior scleritis, left eye +H15013 Anterior scleritis, bilateral +H15019 Anterior scleritis, unspecified eye +H15021 Brawny scleritis, right eye +H15022 Brawny scleritis, left eye +H15023 Brawny scleritis, bilateral +H15029 Brawny scleritis, unspecified eye +H15031 Posterior scleritis, right eye +H15032 Posterior scleritis, left eye +H15033 Posterior scleritis, bilateral +H15039 Posterior scleritis, unspecified eye +H15041 Scleritis with corneal involvement, right eye +H15042 Scleritis with corneal involvement, left eye +H15043 Scleritis with corneal involvement, bilateral +H15049 Scleritis with corneal involvement, unspecified eye +H15051 Scleromalacia perforans, right eye +H15052 Scleromalacia perforans, left eye +H15053 Scleromalacia perforans, bilateral +H15059 Scleromalacia perforans, unspecified eye +H15091 Other scleritis, right eye +H15092 Other scleritis, left eye +H15093 Other scleritis, bilateral +H15099 Other scleritis, unspecified eye +H15101 Unspecified episcleritis, right eye +H15102 Unspecified episcleritis, left eye +H15103 Unspecified episcleritis, bilateral +H15109 Unspecified episcleritis, unspecified eye +H15111 Episcleritis periodica fugax, right eye +H15112 Episcleritis periodica fugax, left eye +H15113 Episcleritis periodica fugax, bilateral +H15119 Episcleritis periodica fugax, unspecified eye +H15121 Nodular episcleritis, right eye +H15122 Nodular episcleritis, left eye +H15123 Nodular episcleritis, bilateral +H15129 Nodular episcleritis, unspecified eye +H15811 Equatorial staphyloma, right eye +H15812 Equatorial staphyloma, left eye +H15813 Equatorial staphyloma, bilateral +H15819 Equatorial staphyloma, unspecified eye +H15821 Localized anterior staphyloma, right eye +H15822 Localized anterior staphyloma, left eye +H15823 Localized anterior staphyloma, bilateral +H15829 Localized anterior staphyloma, unspecified eye +H15831 Staphyloma posticum, right eye +H15832 Staphyloma posticum, left eye +H15833 Staphyloma posticum, bilateral +H15839 Staphyloma posticum, unspecified eye +H15841 Scleral ectasia, right eye +H15842 Scleral ectasia, left eye +H15843 Scleral ectasia, bilateral +H15849 Scleral ectasia, unspecified eye +H15851 Ring staphyloma, right eye +H15852 Ring staphyloma, left eye +H15853 Ring staphyloma, bilateral +H15859 Ring staphyloma, unspecified eye +H1589 Other disorders of sclera +H159 Unspecified disorder of sclera +H16001 Unspecified corneal ulcer, right eye +H16002 Unspecified corneal ulcer, left eye +H16003 Unspecified corneal ulcer, bilateral +H16009 Unspecified corneal ulcer, unspecified eye +H16011 Central corneal ulcer, right eye +H16012 Central corneal ulcer, left eye +H16013 Central corneal ulcer, bilateral +H16019 Central corneal ulcer, unspecified eye +H16021 Ring corneal ulcer, right eye +H16022 Ring corneal ulcer, left eye +H16023 Ring corneal ulcer, bilateral +H16029 Ring corneal ulcer, unspecified eye +H16031 Corneal ulcer with hypopyon, right eye +H16032 Corneal ulcer with hypopyon, left eye +H16033 Corneal ulcer with hypopyon, bilateral +H16039 Corneal ulcer with hypopyon, unspecified eye +H16041 Marginal corneal ulcer, right eye +H16042 Marginal corneal ulcer, left eye +H16043 Marginal corneal ulcer, bilateral +H16049 Marginal corneal ulcer, unspecified eye +H16051 Mooren's corneal ulcer, right eye +H16052 Mooren's corneal ulcer, left eye +H16053 Mooren's corneal ulcer, bilateral +H16059 Mooren's corneal ulcer, unspecified eye +H16061 Mycotic corneal ulcer, right eye +H16062 Mycotic corneal ulcer, left eye +H16063 Mycotic corneal ulcer, bilateral +H16069 Mycotic corneal ulcer, unspecified eye +H16071 Perforated corneal ulcer, right eye +H16072 Perforated corneal ulcer, left eye +H16073 Perforated corneal ulcer, bilateral +H16079 Perforated corneal ulcer, unspecified eye +H16101 Unspecified superficial keratitis, right eye +H16102 Unspecified superficial keratitis, left eye +H16103 Unspecified superficial keratitis, bilateral +H16109 Unspecified superficial keratitis, unspecified eye +H16111 Macular keratitis, right eye +H16112 Macular keratitis, left eye +H16113 Macular keratitis, bilateral +H16119 Macular keratitis, unspecified eye +H16121 Filamentary keratitis, right eye +H16122 Filamentary keratitis, left eye +H16123 Filamentary keratitis, bilateral +H16129 Filamentary keratitis, unspecified eye +H16131 Photokeratitis, right eye +H16132 Photokeratitis, left eye +H16133 Photokeratitis, bilateral +H16139 Photokeratitis, unspecified eye +H16141 Punctate keratitis, right eye +H16142 Punctate keratitis, left eye +H16143 Punctate keratitis, bilateral +H16149 Punctate keratitis, unspecified eye +H16201 Unspecified keratoconjunctivitis, right eye +H16202 Unspecified keratoconjunctivitis, left eye +H16203 Unspecified keratoconjunctivitis, bilateral +H16209 Unspecified keratoconjunctivitis, unspecified eye +H16211 Exposure keratoconjunctivitis, right eye +H16212 Exposure keratoconjunctivitis, left eye +H16213 Exposure keratoconjunctivitis, bilateral +H16219 Exposure keratoconjunctivitis, unspecified eye +H16221 Keratoconjunctivitis sicca, not specified as Sjogren's, right eye +H16222 Keratoconjunctivitis sicca, not specified as Sjogren's, left eye +H16223 Keratoconjunctivitis sicca, not specified as Sjogren's, bilateral +H16229 Keratoconjunctivitis sicca, not specified as Sjogren's, unspecified eye +H16231 Neurotrophic keratoconjunctivitis, right eye +H16232 Neurotrophic keratoconjunctivitis, left eye +H16233 Neurotrophic keratoconjunctivitis, bilateral +H16239 Neurotrophic keratoconjunctivitis, unspecified eye +H16241 Ophthalmia nodosa, right eye +H16242 Ophthalmia nodosa, left eye +H16243 Ophthalmia nodosa, bilateral +H16249 Ophthalmia nodosa, unspecified eye +H16251 Phlyctenular keratoconjunctivitis, right eye +H16252 Phlyctenular keratoconjunctivitis, left eye +H16253 Phlyctenular keratoconjunctivitis, bilateral +H16259 Phlyctenular keratoconjunctivitis, unspecified eye +H16261 Vernal keratoconjunctivitis, with limbar and corneal involvement, right eye +H16262 Vernal keratoconjunctivitis, with limbar and corneal involvement, left eye +H16263 Vernal keratoconjunctivitis, with limbar and corneal involvement, bilateral +H16269 Vernal keratoconjunctivitis, with limbar and corneal involvement, unspecified eye +H16291 Other keratoconjunctivitis, right eye +H16292 Other keratoconjunctivitis, left eye +H16293 Other keratoconjunctivitis, bilateral +H16299 Other keratoconjunctivitis, unspecified eye +H16301 Unspecified interstitial keratitis, right eye +H16302 Unspecified interstitial keratitis, left eye +H16303 Unspecified interstitial keratitis, bilateral +H16309 Unspecified interstitial keratitis, unspecified eye +H16311 Corneal abscess, right eye +H16312 Corneal abscess, left eye +H16313 Corneal abscess, bilateral +H16319 Corneal abscess, unspecified eye +H16321 Diffuse interstitial keratitis, right eye +H16322 Diffuse interstitial keratitis, left eye +H16323 Diffuse interstitial keratitis, bilateral +H16329 Diffuse interstitial keratitis, unspecified eye +H16331 Sclerosing keratitis, right eye +H16332 Sclerosing keratitis, left eye +H16333 Sclerosing keratitis, bilateral +H16339 Sclerosing keratitis, unspecified eye +H16391 Other interstitial and deep keratitis, right eye +H16392 Other interstitial and deep keratitis, left eye +H16393 Other interstitial and deep keratitis, bilateral +H16399 Other interstitial and deep keratitis, unspecified eye +H16401 Unspecified corneal neovascularization, right eye +H16402 Unspecified corneal neovascularization, left eye +H16403 Unspecified corneal neovascularization, bilateral +H16409 Unspecified corneal neovascularization, unspecified eye +H16411 Ghost vessels (corneal), right eye +H16412 Ghost vessels (corneal), left eye +H16413 Ghost vessels (corneal), bilateral +H16419 Ghost vessels (corneal), unspecified eye +H16421 Pannus (corneal), right eye +H16422 Pannus (corneal), left eye +H16423 Pannus (corneal), bilateral +H16429 Pannus (corneal), unspecified eye +H16431 Localized vascularization of cornea, right eye +H16432 Localized vascularization of cornea, left eye +H16433 Localized vascularization of cornea, bilateral +H16439 Localized vascularization of cornea, unspecified eye +H16441 Deep vascularization of cornea, right eye +H16442 Deep vascularization of cornea, left eye +H16443 Deep vascularization of cornea, bilateral +H16449 Deep vascularization of cornea, unspecified eye +H168 Other keratitis +H169 Unspecified keratitis +H1700 Adherent leukoma, unspecified eye +H1701 Adherent leukoma, right eye +H1702 Adherent leukoma, left eye +H1703 Adherent leukoma, bilateral +H1710 Central corneal opacity, unspecified eye +H1711 Central corneal opacity, right eye +H1712 Central corneal opacity, left eye +H1713 Central corneal opacity, bilateral +H17811 Minor opacity of cornea, right eye +H17812 Minor opacity of cornea, left eye +H17813 Minor opacity of cornea, bilateral +H17819 Minor opacity of cornea, unspecified eye +H17821 Peripheral opacity of cornea, right eye +H17822 Peripheral opacity of cornea, left eye +H17823 Peripheral opacity of cornea, bilateral +H17829 Peripheral opacity of cornea, unspecified eye +H1789 Other corneal scars and opacities +H179 Unspecified corneal scar and opacity +H18001 Unspecified corneal deposit, right eye +H18002 Unspecified corneal deposit, left eye +H18003 Unspecified corneal deposit, bilateral +H18009 Unspecified corneal deposit, unspecified eye +H18011 Anterior corneal pigmentations, right eye +H18012 Anterior corneal pigmentations, left eye +H18013 Anterior corneal pigmentations, bilateral +H18019 Anterior corneal pigmentations, unspecified eye +H18021 Argentous corneal deposits, right eye +H18022 Argentous corneal deposits, left eye +H18023 Argentous corneal deposits, bilateral +H18029 Argentous corneal deposits, unspecified eye +H18031 Corneal deposits in metabolic disorders, right eye +H18032 Corneal deposits in metabolic disorders, left eye +H18033 Corneal deposits in metabolic disorders, bilateral +H18039 Corneal deposits in metabolic disorders, unspecified eye +H18041 Kayser-Fleischer ring, right eye +H18042 Kayser-Fleischer ring, left eye +H18043 Kayser-Fleischer ring, bilateral +H18049 Kayser-Fleischer ring, unspecified eye +H18051 Posterior corneal pigmentations, right eye +H18052 Posterior corneal pigmentations, left eye +H18053 Posterior corneal pigmentations, bilateral +H18059 Posterior corneal pigmentations, unspecified eye +H18061 Stromal corneal pigmentations, right eye +H18062 Stromal corneal pigmentations, left eye +H18063 Stromal corneal pigmentations, bilateral +H18069 Stromal corneal pigmentations, unspecified eye +H1810 Bullous keratopathy, unspecified eye +H1811 Bullous keratopathy, right eye +H1812 Bullous keratopathy, left eye +H1813 Bullous keratopathy, bilateral +H1820 Unspecified corneal edema +H18211 Corneal edema secondary to contact lens, right eye +H18212 Corneal edema secondary to contact lens, left eye +H18213 Corneal edema secondary to contact lens, bilateral +H18219 Corneal edema secondary to contact lens, unspecified eye +H18221 Idiopathic corneal edema, right eye +H18222 Idiopathic corneal edema, left eye +H18223 Idiopathic corneal edema, bilateral +H18229 Idiopathic corneal edema, unspecified eye +H18231 Secondary corneal edema, right eye +H18232 Secondary corneal edema, left eye +H18233 Secondary corneal edema, bilateral +H18239 Secondary corneal edema, unspecified eye +H1830 Unspecified corneal membrane change +H18311 Folds and rupture in Bowman's membrane, right eye +H18312 Folds and rupture in Bowman's membrane, left eye +H18313 Folds and rupture in Bowman's membrane, bilateral +H18319 Folds and rupture in Bowman's membrane, unspecified eye +H18321 Folds in Descemet's membrane, right eye +H18322 Folds in Descemet's membrane, left eye +H18323 Folds in Descemet's membrane, bilateral +H18329 Folds in Descemet's membrane, unspecified eye +H18331 Rupture in Descemet's membrane, right eye +H18332 Rupture in Descemet's membrane, left eye +H18333 Rupture in Descemet's membrane, bilateral +H18339 Rupture in Descemet's membrane, unspecified eye +H1840 Unspecified corneal degeneration +H18411 Arcus senilis, right eye +H18412 Arcus senilis, left eye +H18413 Arcus senilis, bilateral +H18419 Arcus senilis, unspecified eye +H18421 Band keratopathy, right eye +H18422 Band keratopathy, left eye +H18423 Band keratopathy, bilateral +H18429 Band keratopathy, unspecified eye +H1843 Other calcerous corneal degeneration +H18441 Keratomalacia, right eye +H18442 Keratomalacia, left eye +H18443 Keratomalacia, bilateral +H18449 Keratomalacia, unspecified eye +H18451 Nodular corneal degeneration, right eye +H18452 Nodular corneal degeneration, left eye +H18453 Nodular corneal degeneration, bilateral +H18459 Nodular corneal degeneration, unspecified eye +H18461 Peripheral corneal degeneration, right eye +H18462 Peripheral corneal degeneration, left eye +H18463 Peripheral corneal degeneration, bilateral +H18469 Peripheral corneal degeneration, unspecified eye +H1849 Other corneal degeneration +H1850 Unspecified hereditary corneal dystrophies +H1851 Endothelial corneal dystrophy +H1852 Epithelial (juvenile) corneal dystrophy +H1853 Granular corneal dystrophy +H1854 Lattice corneal dystrophy +H1855 Macular corneal dystrophy +H1859 Other hereditary corneal dystrophies +H18601 Keratoconus, unspecified, right eye +H18602 Keratoconus, unspecified, left eye +H18603 Keratoconus, unspecified, bilateral +H18609 Keratoconus, unspecified, unspecified eye +H18611 Keratoconus, stable, right eye +H18612 Keratoconus, stable, left eye +H18613 Keratoconus, stable, bilateral +H18619 Keratoconus, stable, unspecified eye +H18621 Keratoconus, unstable, right eye +H18622 Keratoconus, unstable, left eye +H18623 Keratoconus, unstable, bilateral +H18629 Keratoconus, unstable, unspecified eye +H1870 Unspecified corneal deformity +H18711 Corneal ectasia, right eye +H18712 Corneal ectasia, left eye +H18713 Corneal ectasia, bilateral +H18719 Corneal ectasia, unspecified eye +H18721 Corneal staphyloma, right eye +H18722 Corneal staphyloma, left eye +H18723 Corneal staphyloma, bilateral +H18729 Corneal staphyloma, unspecified eye +H18731 Descemetocele, right eye +H18732 Descemetocele, left eye +H18733 Descemetocele, bilateral +H18739 Descemetocele, unspecified eye +H18791 Other corneal deformities, right eye +H18792 Other corneal deformities, left eye +H18793 Other corneal deformities, bilateral +H18799 Other corneal deformities, unspecified eye +H18811 Anesthesia and hypoesthesia of cornea, right eye +H18812 Anesthesia and hypoesthesia of cornea, left eye +H18813 Anesthesia and hypoesthesia of cornea, bilateral +H18819 Anesthesia and hypoesthesia of cornea, unspecified eye +H18821 Corneal disorder due to contact lens, right eye +H18822 Corneal disorder due to contact lens, left eye +H18823 Corneal disorder due to contact lens, bilateral +H18829 Corneal disorder due to contact lens, unspecified eye +H18831 Recurrent erosion of cornea, right eye +H18832 Recurrent erosion of cornea, left eye +H18833 Recurrent erosion of cornea, bilateral +H18839 Recurrent erosion of cornea, unspecified eye +H18891 Other specified disorders of cornea, right eye +H18892 Other specified disorders of cornea, left eye +H18893 Other specified disorders of cornea, bilateral +H18899 Other specified disorders of cornea, unspecified eye +H189 Unspecified disorder of cornea +H2000 Unspecified acute and subacute iridocyclitis +H20011 Primary iridocyclitis, right eye +H20012 Primary iridocyclitis, left eye +H20013 Primary iridocyclitis, bilateral +H20019 Primary iridocyclitis, unspecified eye +H20021 Recurrent acute iridocyclitis, right eye +H20022 Recurrent acute iridocyclitis, left eye +H20023 Recurrent acute iridocyclitis, bilateral +H20029 Recurrent acute iridocyclitis, unspecified eye +H20031 Secondary infectious iridocyclitis, right eye +H20032 Secondary infectious iridocyclitis, left eye +H20033 Secondary infectious iridocyclitis, bilateral +H20039 Secondary infectious iridocyclitis, unspecified eye +H20041 Secondary noninfectious iridocyclitis, right eye +H20042 Secondary noninfectious iridocyclitis, left eye +H20043 Secondary noninfectious iridocyclitis, bilateral +H20049 Secondary noninfectious iridocyclitis, unspecified eye +H20051 Hypopyon, right eye +H20052 Hypopyon, left eye +H20053 Hypopyon, bilateral +H20059 Hypopyon, unspecified eye +H2010 Chronic iridocyclitis, unspecified eye +H2011 Chronic iridocyclitis, right eye +H2012 Chronic iridocyclitis, left eye +H2013 Chronic iridocyclitis, bilateral +H2020 Lens-induced iridocyclitis, unspecified eye +H2021 Lens-induced iridocyclitis, right eye +H2022 Lens-induced iridocyclitis, left eye +H2023 Lens-induced iridocyclitis, bilateral +H20811 Fuchs' heterochromic cyclitis, right eye +H20812 Fuchs' heterochromic cyclitis, left eye +H20813 Fuchs' heterochromic cyclitis, bilateral +H20819 Fuchs' heterochromic cyclitis, unspecified eye +H20821 Vogt-Koyanagi syndrome, right eye +H20822 Vogt-Koyanagi syndrome, left eye +H20823 Vogt-Koyanagi syndrome, bilateral +H20829 Vogt-Koyanagi syndrome, unspecified eye +H209 Unspecified iridocyclitis +H2100 Hyphema, unspecified eye +H2101 Hyphema, right eye +H2102 Hyphema, left eye +H2103 Hyphema, bilateral +H211X1 Other vascular disorders of iris and ciliary body, right eye +H211X2 Other vascular disorders of iris and ciliary body, left eye +H211X3 Other vascular disorders of iris and ciliary body, bilateral +H211X9 Other vascular disorders of iris and ciliary body, unspecified eye +H21211 Degeneration of chamber angle, right eye +H21212 Degeneration of chamber angle, left eye +H21213 Degeneration of chamber angle, bilateral +H21219 Degeneration of chamber angle, unspecified eye +H21221 Degeneration of ciliary body, right eye +H21222 Degeneration of ciliary body, left eye +H21223 Degeneration of ciliary body, bilateral +H21229 Degeneration of ciliary body, unspecified eye +H21231 Degeneration of iris (pigmentary), right eye +H21232 Degeneration of iris (pigmentary), left eye +H21233 Degeneration of iris (pigmentary), bilateral +H21239 Degeneration of iris (pigmentary), unspecified eye +H21241 Degeneration of pupillary margin, right eye +H21242 Degeneration of pupillary margin, left eye +H21243 Degeneration of pupillary margin, bilateral +H21249 Degeneration of pupillary margin, unspecified eye +H21251 Iridoschisis, right eye +H21252 Iridoschisis, left eye +H21253 Iridoschisis, bilateral +H21259 Iridoschisis, unspecified eye +H21261 Iris atrophy (essential) (progressive), right eye +H21262 Iris atrophy (essential) (progressive), left eye +H21263 Iris atrophy (essential) (progressive), bilateral +H21269 Iris atrophy (essential) (progressive), unspecified eye +H21271 Miotic pupillary cyst, right eye +H21272 Miotic pupillary cyst, left eye +H21273 Miotic pupillary cyst, bilateral +H21279 Miotic pupillary cyst, unspecified eye +H2129 Other iris atrophy +H21301 Idiopathic cysts of iris, ciliary body or anterior chamber, right eye +H21302 Idiopathic cysts of iris, ciliary body or anterior chamber, left eye +H21303 Idiopathic cysts of iris, ciliary body or anterior chamber, bilateral +H21309 Idiopathic cysts of iris, ciliary body or anterior chamber, unspecified eye +H21311 Exudative cysts of iris or anterior chamber, right eye +H21312 Exudative cysts of iris or anterior chamber, left eye +H21313 Exudative cysts of iris or anterior chamber, bilateral +H21319 Exudative cysts of iris or anterior chamber, unspecified eye +H21321 Implantation cysts of iris, ciliary body or anterior chamber, right eye +H21322 Implantation cysts of iris, ciliary body or anterior chamber, left eye +H21323 Implantation cysts of iris, ciliary body or anterior chamber, bilateral +H21329 Implantation cysts of iris, ciliary body or anterior chamber, unspecified eye +H21331 Parasitic cyst of iris, ciliary body or anterior chamber, right eye +H21332 Parasitic cyst of iris, ciliary body or anterior chamber, left eye +H21333 Parasitic cyst of iris, ciliary body or anterior chamber, bilateral +H21339 Parasitic cyst of iris, ciliary body or anterior chamber, unspecified eye +H21341 Primary cyst of pars plana, right eye +H21342 Primary cyst of pars plana, left eye +H21343 Primary cyst of pars plana, bilateral +H21349 Primary cyst of pars plana, unspecified eye +H21351 Exudative cyst of pars plana, right eye +H21352 Exudative cyst of pars plana, left eye +H21353 Exudative cyst of pars plana, bilateral +H21359 Exudative cyst of pars plana, unspecified eye +H2140 Pupillary membranes, unspecified eye +H2141 Pupillary membranes, right eye +H2142 Pupillary membranes, left eye +H2143 Pupillary membranes, bilateral +H21501 Unspecified adhesions of iris, right eye +H21502 Unspecified adhesions of iris, left eye +H21503 Unspecified adhesions of iris, bilateral +H21509 Unspecified adhesions of iris and ciliary body, unspecified eye +H21511 Anterior synechiae (iris), right eye +H21512 Anterior synechiae (iris), left eye +H21513 Anterior synechiae (iris), bilateral +H21519 Anterior synechiae (iris), unspecified eye +H21521 Goniosynechiae, right eye +H21522 Goniosynechiae, left eye +H21523 Goniosynechiae, bilateral +H21529 Goniosynechiae, unspecified eye +H21531 Iridodialysis, right eye +H21532 Iridodialysis, left eye +H21533 Iridodialysis, bilateral +H21539 Iridodialysis, unspecified eye +H21541 Posterior synechiae (iris), right eye +H21542 Posterior synechiae (iris), left eye +H21543 Posterior synechiae (iris), bilateral +H21549 Posterior synechiae (iris), unspecified eye +H21551 Recession of chamber angle, right eye +H21552 Recession of chamber angle, left eye +H21553 Recession of chamber angle, bilateral +H21559 Recession of chamber angle, unspecified eye +H21561 Pupillary abnormality, right eye +H21562 Pupillary abnormality, left eye +H21563 Pupillary abnormality, bilateral +H21569 Pupillary abnormality, unspecified eye +H2181 Floppy iris syndrome +H2182 Plateau iris syndrome (post-iridectomy) (postprocedural) +H2189 Other specified disorders of iris and ciliary body +H219 Unspecified disorder of iris and ciliary body +H22 Disorders of iris and ciliary body in diseases classified elsewhere +H25011 Cortical age-related cataract, right eye +H25012 Cortical age-related cataract, left eye +H25013 Cortical age-related cataract, bilateral +H25019 Cortical age-related cataract, unspecified eye +H25031 Anterior subcapsular polar age-related cataract, right eye +H25032 Anterior subcapsular polar age-related cataract, left eye +H25033 Anterior subcapsular polar age-related cataract, bilateral +H25039 Anterior subcapsular polar age-related cataract, unspecified eye +H25041 Posterior subcapsular polar age-related cataract, right eye +H25042 Posterior subcapsular polar age-related cataract, left eye +H25043 Posterior subcapsular polar age-related cataract, bilateral +H25049 Posterior subcapsular polar age-related cataract, unspecified eye +H25091 Other age-related incipient cataract, right eye +H25092 Other age-related incipient cataract, left eye +H25093 Other age-related incipient cataract, bilateral +H25099 Other age-related incipient cataract, unspecified eye +H2510 Age-related nuclear cataract, unspecified eye +H2511 Age-related nuclear cataract, right eye +H2512 Age-related nuclear cataract, left eye +H2513 Age-related nuclear cataract, bilateral +H2520 Age-related cataract, morgagnian type, unspecified eye +H2521 Age-related cataract, morgagnian type, right eye +H2522 Age-related cataract, morgagnian type, left eye +H2523 Age-related cataract, morgagnian type, bilateral +H25811 Combined forms of age-related cataract, right eye +H25812 Combined forms of age-related cataract, left eye +H25813 Combined forms of age-related cataract, bilateral +H25819 Combined forms of age-related cataract, unspecified eye +H2589 Other age-related cataract +H259 Unspecified age-related cataract +H26001 Unspecified infantile and juvenile cataract, right eye +H26002 Unspecified infantile and juvenile cataract, left eye +H26003 Unspecified infantile and juvenile cataract, bilateral +H26009 Unspecified infantile and juvenile cataract, unspecified eye +H26011 Infantile and juvenile cortical, lamellar, or zonular cataract, right eye +H26012 Infantile and juvenile cortical, lamellar, or zonular cataract, left eye +H26013 Infantile and juvenile cortical, lamellar, or zonular cataract, bilateral +H26019 Infantile and juvenile cortical, lamellar, or zonular cataract, unspecified eye +H26031 Infantile and juvenile nuclear cataract, right eye +H26032 Infantile and juvenile nuclear cataract, left eye +H26033 Infantile and juvenile nuclear cataract, bilateral +H26039 Infantile and juvenile nuclear cataract, unspecified eye +H26041 Anterior subcapsular polar infantile and juvenile cataract, right eye +H26042 Anterior subcapsular polar infantile and juvenile cataract, left eye +H26043 Anterior subcapsular polar infantile and juvenile cataract, bilateral +H26049 Anterior subcapsular polar infantile and juvenile cataract, unspecified eye +H26051 Posterior subcapsular polar infantile and juvenile cataract, right eye +H26052 Posterior subcapsular polar infantile and juvenile cataract, left eye +H26053 Posterior subcapsular polar infantile and juvenile cataract, bilateral +H26059 Posterior subcapsular polar infantile and juvenile cataract, unspecified eye +H26061 Combined forms of infantile and juvenile cataract, right eye +H26062 Combined forms of infantile and juvenile cataract, left eye +H26063 Combined forms of infantile and juvenile cataract, bilateral +H26069 Combined forms of infantile and juvenile cataract, unspecified eye +H2609 Other infantile and juvenile cataract +H26101 Unspecified traumatic cataract, right eye +H26102 Unspecified traumatic cataract, left eye +H26103 Unspecified traumatic cataract, bilateral +H26109 Unspecified traumatic cataract, unspecified eye +H26111 Localized traumatic opacities, right eye +H26112 Localized traumatic opacities, left eye +H26113 Localized traumatic opacities, bilateral +H26119 Localized traumatic opacities, unspecified eye +H26121 Partially resolved traumatic cataract, right eye +H26122 Partially resolved traumatic cataract, left eye +H26123 Partially resolved traumatic cataract, bilateral +H26129 Partially resolved traumatic cataract, unspecified eye +H26131 Total traumatic cataract, right eye +H26132 Total traumatic cataract, left eye +H26133 Total traumatic cataract, bilateral +H26139 Total traumatic cataract, unspecified eye +H2620 Unspecified complicated cataract +H26211 Cataract with neovascularization, right eye +H26212 Cataract with neovascularization, left eye +H26213 Cataract with neovascularization, bilateral +H26219 Cataract with neovascularization, unspecified eye +H26221 Cataract secondary to ocular disorders (degenerative) (inflammatory), right eye +H26222 Cataract secondary to ocular disorders (degenerative) (inflammatory), left eye +H26223 Cataract secondary to ocular disorders (degenerative) (inflammatory), bilateral +H26229 Cataract secondary to ocular disorders (degenerative) (inflammatory), unspecified eye +H26231 Glaucomatous flecks (subcapsular), right eye +H26232 Glaucomatous flecks (subcapsular), left eye +H26233 Glaucomatous flecks (subcapsular), bilateral +H26239 Glaucomatous flecks (subcapsular), unspecified eye +H2630 Drug-induced cataract, unspecified eye +H2631 Drug-induced cataract, right eye +H2632 Drug-induced cataract, left eye +H2633 Drug-induced cataract, bilateral +H2640 Unspecified secondary cataract +H26411 Soemmering's ring, right eye +H26412 Soemmering's ring, left eye +H26413 Soemmering's ring, bilateral +H26419 Soemmering's ring, unspecified eye +H26491 Other secondary cataract, right eye +H26492 Other secondary cataract, left eye +H26493 Other secondary cataract, bilateral +H26499 Other secondary cataract, unspecified eye +H268 Other specified cataract +H269 Unspecified cataract +H2700 Aphakia, unspecified eye +H2701 Aphakia, right eye +H2702 Aphakia, left eye +H2703 Aphakia, bilateral +H2710 Unspecified dislocation of lens +H27111 Subluxation of lens, right eye +H27112 Subluxation of lens, left eye +H27113 Subluxation of lens, bilateral +H27119 Subluxation of lens, unspecified eye +H27121 Anterior dislocation of lens, right eye +H27122 Anterior dislocation of lens, left eye +H27123 Anterior dislocation of lens, bilateral +H27129 Anterior dislocation of lens, unspecified eye +H27131 Posterior dislocation of lens, right eye +H27132 Posterior dislocation of lens, left eye +H27133 Posterior dislocation of lens, bilateral +H27139 Posterior dislocation of lens, unspecified eye +H278 Other specified disorders of lens +H279 Unspecified disorder of lens +H28 Cataract in diseases classified elsewhere +H30001 Unspecified focal chorioretinal inflammation, right eye +H30002 Unspecified focal chorioretinal inflammation, left eye +H30003 Unspecified focal chorioretinal inflammation, bilateral +H30009 Unspecified focal chorioretinal inflammation, unspecified eye +H30011 Focal chorioretinal inflammation, juxtapapillary, right eye +H30012 Focal chorioretinal inflammation, juxtapapillary, left eye +H30013 Focal chorioretinal inflammation, juxtapapillary, bilateral +H30019 Focal chorioretinal inflammation, juxtapapillary, unspecified eye +H30021 Focal chorioretinal inflammation of posterior pole, right eye +H30022 Focal chorioretinal inflammation of posterior pole, left eye +H30023 Focal chorioretinal inflammation of posterior pole, bilateral +H30029 Focal chorioretinal inflammation of posterior pole, unspecified eye +H30031 Focal chorioretinal inflammation, peripheral, right eye +H30032 Focal chorioretinal inflammation, peripheral, left eye +H30033 Focal chorioretinal inflammation, peripheral, bilateral +H30039 Focal chorioretinal inflammation, peripheral, unspecified eye +H30041 Focal chorioretinal inflammation, macular or paramacular, right eye +H30042 Focal chorioretinal inflammation, macular or paramacular, left eye +H30043 Focal chorioretinal inflammation, macular or paramacular, bilateral +H30049 Focal chorioretinal inflammation, macular or paramacular, unspecified eye +H30101 Unspecified disseminated chorioretinal inflammation, right eye +H30102 Unspecified disseminated chorioretinal inflammation, left eye +H30103 Unspecified disseminated chorioretinal inflammation, bilateral +H30109 Unspecified disseminated chorioretinal inflammation, unspecified eye +H30111 Disseminated chorioretinal inflammation of posterior pole, right eye +H30112 Disseminated chorioretinal inflammation of posterior pole, left eye +H30113 Disseminated chorioretinal inflammation of posterior pole, bilateral +H30119 Disseminated chorioretinal inflammation of posterior pole, unspecified eye +H30121 Disseminated chorioretinal inflammation, peripheral right eye +H30122 Disseminated chorioretinal inflammation, peripheral, left eye +H30123 Disseminated chorioretinal inflammation, peripheral, bilateral +H30129 Disseminated chorioretinal inflammation, peripheral, unspecified eye +H30131 Disseminated chorioretinal inflammation, generalized, right eye +H30132 Disseminated chorioretinal inflammation, generalized, left eye +H30133 Disseminated chorioretinal inflammation, generalized, bilateral +H30139 Disseminated chorioretinal inflammation, generalized, unspecified eye +H30141 Acute posterior multifocal placoid pigment epitheliopathy, right eye +H30142 Acute posterior multifocal placoid pigment epitheliopathy, left eye +H30143 Acute posterior multifocal placoid pigment epitheliopathy, bilateral +H30149 Acute posterior multifocal placoid pigment epitheliopathy, unspecified eye +H3020 Posterior cyclitis, unspecified eye +H3021 Posterior cyclitis, right eye +H3022 Posterior cyclitis, left eye +H3023 Posterior cyclitis, bilateral +H30811 Harada's disease, right eye +H30812 Harada's disease, left eye +H30813 Harada's disease, bilateral +H30819 Harada's disease, unspecified eye +H30891 Other chorioretinal inflammations, right eye +H30892 Other chorioretinal inflammations, left eye +H30893 Other chorioretinal inflammations, bilateral +H30899 Other chorioretinal inflammations, unspecified eye +H3090 Unspecified chorioretinal inflammation, unspecified eye +H3091 Unspecified chorioretinal inflammation, right eye +H3092 Unspecified chorioretinal inflammation, left eye +H3093 Unspecified chorioretinal inflammation, bilateral +H31001 Unspecified chorioretinal scars, right eye +H31002 Unspecified chorioretinal scars, left eye +H31003 Unspecified chorioretinal scars, bilateral +H31009 Unspecified chorioretinal scars, unspecified eye +H31011 Macula scars of posterior pole (postinflammatory) (post-traumatic), right eye +H31012 Macula scars of posterior pole (postinflammatory) (post-traumatic), left eye +H31013 Macula scars of posterior pole (postinflammatory) (post-traumatic), bilateral +H31019 Macula scars of posterior pole (postinflammatory) (post-traumatic), unspecified eye +H31021 Solar retinopathy, right eye +H31022 Solar retinopathy, left eye +H31023 Solar retinopathy, bilateral +H31029 Solar retinopathy, unspecified eye +H31091 Other chorioretinal scars, right eye +H31092 Other chorioretinal scars, left eye +H31093 Other chorioretinal scars, bilateral +H31099 Other chorioretinal scars, unspecified eye +H31101 Choroidal degeneration, unspecified, right eye +H31102 Choroidal degeneration, unspecified, left eye +H31103 Choroidal degeneration, unspecified, bilateral +H31109 Choroidal degeneration, unspecified, unspecified eye +H31111 Age-related choroidal atrophy, right eye +H31112 Age-related choroidal atrophy, left eye +H31113 Age-related choroidal atrophy, bilateral +H31119 Age-related choroidal atrophy, unspecified eye +H31121 Diffuse secondary atrophy of choroid, right eye +H31122 Diffuse secondary atrophy of choroid, left eye +H31123 Diffuse secondary atrophy of choroid, bilateral +H31129 Diffuse secondary atrophy of choroid, unspecified eye +H3120 Hereditary choroidal dystrophy, unspecified +H3121 Choroideremia +H3122 Choroidal dystrophy (central areolar) (generalized) (peripapillary) +H3123 Gyrate atrophy, choroid +H3129 Other hereditary choroidal dystrophy +H31301 Unspecified choroidal hemorrhage, right eye +H31302 Unspecified choroidal hemorrhage, left eye +H31303 Unspecified choroidal hemorrhage, bilateral +H31309 Unspecified choroidal hemorrhage, unspecified eye +H31311 Expulsive choroidal hemorrhage, right eye +H31312 Expulsive choroidal hemorrhage, left eye +H31313 Expulsive choroidal hemorrhage, bilateral +H31319 Expulsive choroidal hemorrhage, unspecified eye +H31321 Choroidal rupture, right eye +H31322 Choroidal rupture, left eye +H31323 Choroidal rupture, bilateral +H31329 Choroidal rupture, unspecified eye +H31401 Unspecified choroidal detachment, right eye +H31402 Unspecified choroidal detachment, left eye +H31403 Unspecified choroidal detachment, bilateral +H31409 Unspecified choroidal detachment, unspecified eye +H31411 Hemorrhagic choroidal detachment, right eye +H31412 Hemorrhagic choroidal detachment, left eye +H31413 Hemorrhagic choroidal detachment, bilateral +H31419 Hemorrhagic choroidal detachment, unspecified eye +H31421 Serous choroidal detachment, right eye +H31422 Serous choroidal detachment, left eye +H31423 Serous choroidal detachment, bilateral +H31429 Serous choroidal detachment, unspecified eye +H318 Other specified disorders of choroid +H319 Unspecified disorder of choroid +H32 Chorioretinal disorders in diseases classified elsewhere +H33001 Unspecified retinal detachment with retinal break, right eye +H33002 Unspecified retinal detachment with retinal break, left eye +H33003 Unspecified retinal detachment with retinal break, bilateral +H33009 Unspecified retinal detachment with retinal break, unspecified eye +H33011 Retinal detachment with single break, right eye +H33012 Retinal detachment with single break, left eye +H33013 Retinal detachment with single break, bilateral +H33019 Retinal detachment with single break, unspecified eye +H33021 Retinal detachment with multiple breaks, right eye +H33022 Retinal detachment with multiple breaks, left eye +H33023 Retinal detachment with multiple breaks, bilateral +H33029 Retinal detachment with multiple breaks, unspecified eye +H33031 Retinal detachment with giant retinal tear, right eye +H33032 Retinal detachment with giant retinal tear, left eye +H33033 Retinal detachment with giant retinal tear, bilateral +H33039 Retinal detachment with giant retinal tear, unspecified eye +H33041 Retinal detachment with retinal dialysis, right eye +H33042 Retinal detachment with retinal dialysis, left eye +H33043 Retinal detachment with retinal dialysis, bilateral +H33049 Retinal detachment with retinal dialysis, unspecified eye +H33051 Total retinal detachment, right eye +H33052 Total retinal detachment, left eye +H33053 Total retinal detachment, bilateral +H33059 Total retinal detachment, unspecified eye +H33101 Unspecified retinoschisis, right eye +H33102 Unspecified retinoschisis, left eye +H33103 Unspecified retinoschisis, bilateral +H33109 Unspecified retinoschisis, unspecified eye +H33111 Cyst of ora serrata, right eye +H33112 Cyst of ora serrata, left eye +H33113 Cyst of ora serrata, bilateral +H33119 Cyst of ora serrata, unspecified eye +H33121 Parasitic cyst of retina, right eye +H33122 Parasitic cyst of retina, left eye +H33123 Parasitic cyst of retina, bilateral +H33129 Parasitic cyst of retina, unspecified eye +H33191 Other retinoschisis and retinal cysts, right eye +H33192 Other retinoschisis and retinal cysts, left eye +H33193 Other retinoschisis and retinal cysts, bilateral +H33199 Other retinoschisis and retinal cysts, unspecified eye +H3320 Serous retinal detachment, unspecified eye +H3321 Serous retinal detachment, right eye +H3322 Serous retinal detachment, left eye +H3323 Serous retinal detachment, bilateral +H33301 Unspecified retinal break, right eye +H33302 Unspecified retinal break, left eye +H33303 Unspecified retinal break, bilateral +H33309 Unspecified retinal break, unspecified eye +H33311 Horseshoe tear of retina without detachment, right eye +H33312 Horseshoe tear of retina without detachment, left eye +H33313 Horseshoe tear of retina without detachment, bilateral +H33319 Horseshoe tear of retina without detachment, unspecified eye +H33321 Round hole, right eye +H33322 Round hole, left eye +H33323 Round hole, bilateral +H33329 Round hole, unspecified eye +H33331 Multiple defects of retina without detachment, right eye +H33332 Multiple defects of retina without detachment, left eye +H33333 Multiple defects of retina without detachment, bilateral +H33339 Multiple defects of retina without detachment, unspecified eye +H3340 Traction detachment of retina, unspecified eye +H3341 Traction detachment of retina, right eye +H3342 Traction detachment of retina, left eye +H3343 Traction detachment of retina, bilateral +H338 Other retinal detachments +H3400 Transient retinal artery occlusion, unspecified eye +H3401 Transient retinal artery occlusion, right eye +H3402 Transient retinal artery occlusion, left eye +H3403 Transient retinal artery occlusion, bilateral +H3410 Central retinal artery occlusion, unspecified eye +H3411 Central retinal artery occlusion, right eye +H3412 Central retinal artery occlusion, left eye +H3413 Central retinal artery occlusion, bilateral +H34211 Partial retinal artery occlusion, right eye +H34212 Partial retinal artery occlusion, left eye +H34213 Partial retinal artery occlusion, bilateral +H34219 Partial retinal artery occlusion, unspecified eye +H34231 Retinal artery branch occlusion, right eye +H34232 Retinal artery branch occlusion, left eye +H34233 Retinal artery branch occlusion, bilateral +H34239 Retinal artery branch occlusion, unspecified eye +H34811 Central retinal vein occlusion, right eye +H348110 Central retinal vein occlusion, right eye, with macular edema +H348111 Central retinal vein occlusion, right eye, with retinal neovascularization +H348112 Central retinal vein occlusion, right eye, stable +H34812 Central retinal vein occlusion, left eye +H348120 Central retinal vein occlusion, left eye, with macular edema +H348121 Central retinal vein occlusion, left eye, with retinal neovascularization +H348122 Central retinal vein occlusion, left eye, stable +H34813 Central retinal vein occlusion, bilateral +H348130 Central retinal vein occlusion, bilateral, with macular edema +H348131 Central retinal vein occlusion, bilateral, with retinal neovascularization +H348132 Central retinal vein occlusion, bilateral, stable +H34819 Central retinal vein occlusion, unspecified eye +H348190 Central retinal vein occlusion, unspecified eye, with macular edema +H348191 Central retinal vein occlusion, unspecified eye, with retinal neovascularization +H348192 Central retinal vein occlusion, unspecified eye, stable +H34821 Venous engorgement, right eye +H34822 Venous engorgement, left eye +H34823 Venous engorgement, bilateral +H34829 Venous engorgement, unspecified eye +H34831 Tributary (branch) retinal vein occlusion, right eye +H348310 Tributary (branch) retinal vein occlusion, right eye, with macular edema +H348311 Tributary (branch) retinal vein occlusion, right eye, with retinal neovascularization +H348312 Tributary (branch) retinal vein occlusion, right eye, stable +H34832 Tributary (branch) retinal vein occlusion, left eye +H348320 Tributary (branch) retinal vein occlusion, left eye, with macular edema +H348321 Tributary (branch) retinal vein occlusion, left eye, with retinal neovascularization +H348322 Tributary (branch) retinal vein occlusion, left eye, stable +H34833 Tributary (branch) retinal vein occlusion, bilateral +H348330 Tributary (branch) retinal vein occlusion, bilateral, with macular edema +H348331 Tributary (branch) retinal vein occlusion, bilateral, with retinal neovascularization +H348332 Tributary (branch) retinal vein occlusion, bilateral, stable +H34839 Tributary (branch) retinal vein occlusion, unspecified eye +H348390 Tributary (branch) retinal vein occlusion, unspecified eye, with macular edema +H348391 Tributary (branch) retinal vein occlusion, unspecified eye, with retinal neovascularization +H348392 Tributary (branch) retinal vein occlusion, unspecified eye, stable +H349 Unspecified retinal vascular occlusion +H3500 Unspecified background retinopathy +H35011 Changes in retinal vascular appearance, right eye +H35012 Changes in retinal vascular appearance, left eye +H35013 Changes in retinal vascular appearance, bilateral +H35019 Changes in retinal vascular appearance, unspecified eye +H35021 Exudative retinopathy, right eye +H35022 Exudative retinopathy, left eye +H35023 Exudative retinopathy, bilateral +H35029 Exudative retinopathy, unspecified eye +H35031 Hypertensive retinopathy, right eye +H35032 Hypertensive retinopathy, left eye +H35033 Hypertensive retinopathy, bilateral +H35039 Hypertensive retinopathy, unspecified eye +H35041 Retinal micro-aneurysms, unspecified, right eye +H35042 Retinal micro-aneurysms, unspecified, left eye +H35043 Retinal micro-aneurysms, unspecified, bilateral +H35049 Retinal micro-aneurysms, unspecified, unspecified eye +H35051 Retinal neovascularization, unspecified, right eye +H35052 Retinal neovascularization, unspecified, left eye +H35053 Retinal neovascularization, unspecified, bilateral +H35059 Retinal neovascularization, unspecified, unspecified eye +H35061 Retinal vasculitis, right eye +H35062 Retinal vasculitis, left eye +H35063 Retinal vasculitis, bilateral +H35069 Retinal vasculitis, unspecified eye +H35071 Retinal telangiectasis, right eye +H35072 Retinal telangiectasis, left eye +H35073 Retinal telangiectasis, bilateral +H35079 Retinal telangiectasis, unspecified eye +H3509 Other intraretinal microvascular abnormalities +H35101 Retinopathy of prematurity, unspecified, right eye +H35102 Retinopathy of prematurity, unspecified, left eye +H35103 Retinopathy of prematurity, unspecified, bilateral +H35109 Retinopathy of prematurity, unspecified, unspecified eye +H35111 Retinopathy of prematurity, stage 0, right eye +H35112 Retinopathy of prematurity, stage 0, left eye +H35113 Retinopathy of prematurity, stage 0, bilateral +H35119 Retinopathy of prematurity, stage 0, unspecified eye +H35121 Retinopathy of prematurity, stage 1, right eye +H35122 Retinopathy of prematurity, stage 1, left eye +H35123 Retinopathy of prematurity, stage 1, bilateral +H35129 Retinopathy of prematurity, stage 1, unspecified eye +H35131 Retinopathy of prematurity, stage 2, right eye +H35132 Retinopathy of prematurity, stage 2, left eye +H35133 Retinopathy of prematurity, stage 2, bilateral +H35139 Retinopathy of prematurity, stage 2, unspecified eye +H35141 Retinopathy of prematurity, stage 3, right eye +H35142 Retinopathy of prematurity, stage 3, left eye +H35143 Retinopathy of prematurity, stage 3, bilateral +H35149 Retinopathy of prematurity, stage 3, unspecified eye +H35151 Retinopathy of prematurity, stage 4, right eye +H35152 Retinopathy of prematurity, stage 4, left eye +H35153 Retinopathy of prematurity, stage 4, bilateral +H35159 Retinopathy of prematurity, stage 4, unspecified eye +H35161 Retinopathy of prematurity, stage 5, right eye +H35162 Retinopathy of prematurity, stage 5, left eye +H35163 Retinopathy of prematurity, stage 5, bilateral +H35169 Retinopathy of prematurity, stage 5, unspecified eye +H35171 Retrolental fibroplasia, right eye +H35172 Retrolental fibroplasia, left eye +H35173 Retrolental fibroplasia, bilateral +H35179 Retrolental fibroplasia, unspecified eye +H3520 Other non-diabetic proliferative retinopathy, unspecified eye +H3521 Other non-diabetic proliferative retinopathy, right eye +H3522 Other non-diabetic proliferative retinopathy, left eye +H3523 Other non-diabetic proliferative retinopathy, bilateral +H3530 Unspecified macular degeneration +H3531 Nonexudative age-related macular degeneration +H353110 Nonexudative age-related macular degeneration, right eye, stage unspecified +H353111 Nonexudative age-related macular degeneration, right eye, early dry stage +H353112 Nonexudative age-related macular degeneration, right eye, intermediate dry stage +H353113 Nonexudative age-related macular degeneration, right eye, advanced atrophic without subfoveal involvement +H353114 Nonexudative age-related macular degeneration, right eye, advanced atrophic with subfoveal involvement +H353120 Nonexudative age-related macular degeneration, left eye, stage unspecified +H353121 Nonexudative age-related macular degeneration, left eye, early dry stage +H353122 Nonexudative age-related macular degeneration, left eye, intermediate dry stage +H353123 Nonexudative age-related macular degeneration, left eye, advanced atrophic without subfoveal involvement +H353124 Nonexudative age-related macular degeneration, left eye, advanced atrophic with subfoveal involvement +H353130 Nonexudative age-related macular degeneration, bilateral, stage unspecified +H353131 Nonexudative age-related macular degeneration, bilateral, early dry stage +H353132 Nonexudative age-related macular degeneration, bilateral, intermediate dry stage +H353133 Nonexudative age-related macular degeneration, bilateral, advanced atrophic without subfoveal involvement +H353134 Nonexudative age-related macular degeneration, bilateral, advanced atrophic with subfoveal involvement +H353190 Nonexudative age-related macular degeneration, unspecified eye, stage unspecified +H353191 Nonexudative age-related macular degeneration, unspecified eye, early dry stage +H353192 Nonexudative age-related macular degeneration, unspecified eye, intermediate dry stage +H353193 Nonexudative age-related macular degeneration, unspecified eye, advanced atrophic without subfoveal involvement +H353194 Nonexudative age-related macular degeneration, unspecified eye, advanced atrophic with subfoveal involvement +H3532 Exudative age-related macular degeneration +H353210 Exudative age-related macular degeneration, right eye, stage unspecified +H353211 Exudative age-related macular degeneration, right eye, with active choroidal neovascularization +H353212 Exudative age-related macular degeneration, right eye, with inactive choroidal neovascularization +H353213 Exudative age-related macular degeneration, right eye, with inactive scar +H353220 Exudative age-related macular degeneration, left eye, stage unspecified +H353221 Exudative age-related macular degeneration, left eye, with active choroidal neovascularization +H353222 Exudative age-related macular degeneration, left eye, with inactive choroidal neovascularization +H353223 Exudative age-related macular degeneration, left eye, with inactive scar +H353230 Exudative age-related macular degeneration, bilateral, stage unspecified +H353231 Exudative age-related macular degeneration, bilateral, with active choroidal neovascularization +H353232 Exudative age-related macular degeneration, bilateral, with inactive choroidal neovascularization +H353233 Exudative age-related macular degeneration, bilateral, with inactive scar +H353290 Exudative age-related macular degeneration, unspecified eye, stage unspecified +H353291 Exudative age-related macular degeneration, unspecified eye, with active choroidal neovascularization +H353292 Exudative age-related macular degeneration, unspecified eye, with inactive choroidal neovascularization +H353293 Exudative age-related macular degeneration, unspecified eye, with inactive scar +H3533 Angioid streaks of macula +H35341 Macular cyst, hole, or pseudohole, right eye +H35342 Macular cyst, hole, or pseudohole, left eye +H35343 Macular cyst, hole, or pseudohole, bilateral +H35349 Macular cyst, hole, or pseudohole, unspecified eye +H35351 Cystoid macular degeneration, right eye +H35352 Cystoid macular degeneration, left eye +H35353 Cystoid macular degeneration, bilateral +H35359 Cystoid macular degeneration, unspecified eye +H35361 Drusen (degenerative) of macula, right eye +H35362 Drusen (degenerative) of macula, left eye +H35363 Drusen (degenerative) of macula, bilateral +H35369 Drusen (degenerative) of macula, unspecified eye +H35371 Puckering of macula, right eye +H35372 Puckering of macula, left eye +H35373 Puckering of macula, bilateral +H35379 Puckering of macula, unspecified eye +H35381 Toxic maculopathy, right eye +H35382 Toxic maculopathy, left eye +H35383 Toxic maculopathy, bilateral +H35389 Toxic maculopathy, unspecified eye +H3540 Unspecified peripheral retinal degeneration +H35411 Lattice degeneration of retina, right eye +H35412 Lattice degeneration of retina, left eye +H35413 Lattice degeneration of retina, bilateral +H35419 Lattice degeneration of retina, unspecified eye +H35421 Microcystoid degeneration of retina, right eye +H35422 Microcystoid degeneration of retina, left eye +H35423 Microcystoid degeneration of retina, bilateral +H35429 Microcystoid degeneration of retina, unspecified eye +H35431 Paving stone degeneration of retina, right eye +H35432 Paving stone degeneration of retina, left eye +H35433 Paving stone degeneration of retina, bilateral +H35439 Paving stone degeneration of retina, unspecified eye +H35441 Age-related reticular degeneration of retina, right eye +H35442 Age-related reticular degeneration of retina, left eye +H35443 Age-related reticular degeneration of retina, bilateral +H35449 Age-related reticular degeneration of retina, unspecified eye +H35451 Secondary pigmentary degeneration, right eye +H35452 Secondary pigmentary degeneration, left eye +H35453 Secondary pigmentary degeneration, bilateral +H35459 Secondary pigmentary degeneration, unspecified eye +H35461 Secondary vitreoretinal degeneration, right eye +H35462 Secondary vitreoretinal degeneration, left eye +H35463 Secondary vitreoretinal degeneration, bilateral +H35469 Secondary vitreoretinal degeneration, unspecified eye +H3550 Unspecified hereditary retinal dystrophy +H3551 Vitreoretinal dystrophy +H3552 Pigmentary retinal dystrophy +H3553 Other dystrophies primarily involving the sensory retina +H3554 Dystrophies primarily involving the retinal pigment epithelium +H3560 Retinal hemorrhage, unspecified eye +H3561 Retinal hemorrhage, right eye +H3562 Retinal hemorrhage, left eye +H3563 Retinal hemorrhage, bilateral +H3570 Unspecified separation of retinal layers +H35711 Central serous chorioretinopathy, right eye +H35712 Central serous chorioretinopathy, left eye +H35713 Central serous chorioretinopathy, bilateral +H35719 Central serous chorioretinopathy, unspecified eye +H35721 Serous detachment of retinal pigment epithelium, right eye +H35722 Serous detachment of retinal pigment epithelium, left eye +H35723 Serous detachment of retinal pigment epithelium, bilateral +H35729 Serous detachment of retinal pigment epithelium, unspecified eye +H35731 Hemorrhagic detachment of retinal pigment epithelium, right eye +H35732 Hemorrhagic detachment of retinal pigment epithelium, left eye +H35733 Hemorrhagic detachment of retinal pigment epithelium, bilateral +H35739 Hemorrhagic detachment of retinal pigment epithelium, unspecified eye +H3581 Retinal edema +H3582 Retinal ischemia +H3589 Other specified retinal disorders +H359 Unspecified retinal disorder +H36 Retinal disorders in diseases classified elsewhere +H40001 Preglaucoma, unspecified, right eye +H40002 Preglaucoma, unspecified, left eye +H40003 Preglaucoma, unspecified, bilateral +H40009 Preglaucoma, unspecified, unspecified eye +H40011 Open angle with borderline findings, low risk, right eye +H40012 Open angle with borderline findings, low risk, left eye +H40013 Open angle with borderline findings, low risk, bilateral +H40019 Open angle with borderline findings, low risk, unspecified eye +H40021 Open angle with borderline findings, high risk, right eye +H40022 Open angle with borderline findings, high risk, left eye +H40023 Open angle with borderline findings, high risk, bilateral +H40029 Open angle with borderline findings, high risk, unspecified eye +H40031 Anatomical narrow angle, right eye +H40032 Anatomical narrow angle, left eye +H40033 Anatomical narrow angle, bilateral +H40039 Anatomical narrow angle, unspecified eye +H40041 Steroid responder, right eye +H40042 Steroid responder, left eye +H40043 Steroid responder, bilateral +H40049 Steroid responder, unspecified eye +H40051 Ocular hypertension, right eye +H40052 Ocular hypertension, left eye +H40053 Ocular hypertension, bilateral +H40059 Ocular hypertension, unspecified eye +H40061 Primary angle closure without glaucoma damage, right eye +H40062 Primary angle closure without glaucoma damage, left eye +H40063 Primary angle closure without glaucoma damage, bilateral +H40069 Primary angle closure without glaucoma damage, unspecified eye +H4010X0 Unspecified open-angle glaucoma, stage unspecified +H4010X1 Unspecified open-angle glaucoma, mild stage +H4010X2 Unspecified open-angle glaucoma, moderate stage +H4010X3 Unspecified open-angle glaucoma, severe stage +H4010X4 Unspecified open-angle glaucoma, indeterminate stage +H401110 Primary open-angle glaucoma, right eye, stage unspecified +H401111 Primary open-angle glaucoma, right eye, mild stage +H401112 Primary open-angle glaucoma, right eye, moderate stage +H401113 Primary open-angle glaucoma, right eye, severe stage +H401114 Primary open-angle glaucoma, right eye, indeterminate stage +H401120 Primary open-angle glaucoma, left eye, stage unspecified +H401121 Primary open-angle glaucoma, left eye, mild stage +H401122 Primary open-angle glaucoma, left eye, moderate stage +H401123 Primary open-angle glaucoma, left eye, severe stage +H401124 Primary open-angle glaucoma, left eye, indeterminate stage +H401130 Primary open-angle glaucoma, bilateral, stage unspecified +H401131 Primary open-angle glaucoma, bilateral, mild stage +H401132 Primary open-angle glaucoma, bilateral, moderate stage +H401133 Primary open-angle glaucoma, bilateral, severe stage +H401134 Primary open-angle glaucoma, bilateral, indeterminate stage +H401190 Primary open-angle glaucoma, unspecified eye, stage unspecified +H401191 Primary open-angle glaucoma, unspecified eye, mild stage +H401192 Primary open-angle glaucoma, unspecified eye, moderate stage +H401193 Primary open-angle glaucoma, unspecified eye, severe stage +H401194 Primary open-angle glaucoma, unspecified eye, indeterminate stage +H4011X0 Primary open-angle glaucoma, stage unspecified +H4011X1 Primary open-angle glaucoma, mild stage +H4011X2 Primary open-angle glaucoma, moderate stage +H4011X3 Primary open-angle glaucoma, severe stage +H4011X4 Primary open-angle glaucoma, indeterminate stage +H401210 Low-tension glaucoma, right eye, stage unspecified +H401211 Low-tension glaucoma, right eye, mild stage +H401212 Low-tension glaucoma, right eye, moderate stage +H401213 Low-tension glaucoma, right eye, severe stage +H401214 Low-tension glaucoma, right eye, indeterminate stage +H401220 Low-tension glaucoma, left eye, stage unspecified +H401221 Low-tension glaucoma, left eye, mild stage +H401222 Low-tension glaucoma, left eye, moderate stage +H401223 Low-tension glaucoma, left eye, severe stage +H401224 Low-tension glaucoma, left eye, indeterminate stage +H401230 Low-tension glaucoma, bilateral, stage unspecified +H401231 Low-tension glaucoma, bilateral, mild stage +H401232 Low-tension glaucoma, bilateral, moderate stage +H401233 Low-tension glaucoma, bilateral, severe stage +H401234 Low-tension glaucoma, bilateral, indeterminate stage +H401290 Low-tension glaucoma, unspecified eye, stage unspecified +H401291 Low-tension glaucoma, unspecified eye, mild stage +H401292 Low-tension glaucoma, unspecified eye, moderate stage +H401293 Low-tension glaucoma, unspecified eye, severe stage +H401294 Low-tension glaucoma, unspecified eye, indeterminate stage +H401310 Pigmentary glaucoma, right eye, stage unspecified +H401311 Pigmentary glaucoma, right eye, mild stage +H401312 Pigmentary glaucoma, right eye, moderate stage +H401313 Pigmentary glaucoma, right eye, severe stage +H401314 Pigmentary glaucoma, right eye, indeterminate stage +H401320 Pigmentary glaucoma, left eye, stage unspecified +H401321 Pigmentary glaucoma, left eye, mild stage +H401322 Pigmentary glaucoma, left eye, moderate stage +H401323 Pigmentary glaucoma, left eye, severe stage +H401324 Pigmentary glaucoma, left eye, indeterminate stage +H401330 Pigmentary glaucoma, bilateral, stage unspecified +H401331 Pigmentary glaucoma, bilateral, mild stage +H401332 Pigmentary glaucoma, bilateral, moderate stage +H401333 Pigmentary glaucoma, bilateral, severe stage +H401334 Pigmentary glaucoma, bilateral, indeterminate stage +H401390 Pigmentary glaucoma, unspecified eye, stage unspecified +H401391 Pigmentary glaucoma, unspecified eye, mild stage +H401392 Pigmentary glaucoma, unspecified eye, moderate stage +H401393 Pigmentary glaucoma, unspecified eye, severe stage +H401394 Pigmentary glaucoma, unspecified eye, indeterminate stage +H401410 Capsular glaucoma with pseudoexfoliation of lens, right eye, stage unspecified +H401411 Capsular glaucoma with pseudoexfoliation of lens, right eye, mild stage +H401412 Capsular glaucoma with pseudoexfoliation of lens, right eye, moderate stage +H401413 Capsular glaucoma with pseudoexfoliation of lens, right eye, severe stage +H401414 Capsular glaucoma with pseudoexfoliation of lens, right eye, indeterminate stage +H401420 Capsular glaucoma with pseudoexfoliation of lens, left eye, stage unspecified +H401421 Capsular glaucoma with pseudoexfoliation of lens, left eye, mild stage +H401422 Capsular glaucoma with pseudoexfoliation of lens, left eye, moderate stage +H401423 Capsular glaucoma with pseudoexfoliation of lens, left eye, severe stage +H401424 Capsular glaucoma with pseudoexfoliation of lens, left eye, indeterminate stage +H401430 Capsular glaucoma with pseudoexfoliation of lens, bilateral, stage unspecified +H401431 Capsular glaucoma with pseudoexfoliation of lens, bilateral, mild stage +H401432 Capsular glaucoma with pseudoexfoliation of lens, bilateral, moderate stage +H401433 Capsular glaucoma with pseudoexfoliation of lens, bilateral, severe stage +H401434 Capsular glaucoma with pseudoexfoliation of lens, bilateral, indeterminate stage +H401490 Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, stage unspecified +H401491 Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, mild stage +H401492 Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, moderate stage +H401493 Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, severe stage +H401494 Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, indeterminate stage +H40151 Residual stage of open-angle glaucoma, right eye +H40152 Residual stage of open-angle glaucoma, left eye +H40153 Residual stage of open-angle glaucoma, bilateral +H40159 Residual stage of open-angle glaucoma, unspecified eye +H4020X0 Unspecified primary angle-closure glaucoma, stage unspecified +H4020X1 Unspecified primary angle-closure glaucoma, mild stage +H4020X2 Unspecified primary angle-closure glaucoma, moderate stage +H4020X3 Unspecified primary angle-closure glaucoma, severe stage +H4020X4 Unspecified primary angle-closure glaucoma, indeterminate stage +H40211 Acute angle-closure glaucoma, right eye +H40212 Acute angle-closure glaucoma, left eye +H40213 Acute angle-closure glaucoma, bilateral +H40219 Acute angle-closure glaucoma, unspecified eye +H402210 Chronic angle-closure glaucoma, right eye, stage unspecified +H402211 Chronic angle-closure glaucoma, right eye, mild stage +H402212 Chronic angle-closure glaucoma, right eye, moderate stage +H402213 Chronic angle-closure glaucoma, right eye, severe stage +H402214 Chronic angle-closure glaucoma, right eye, indeterminate stage +H402220 Chronic angle-closure glaucoma, left eye, stage unspecified +H402221 Chronic angle-closure glaucoma, left eye, mild stage +H402222 Chronic angle-closure glaucoma, left eye, moderate stage +H402223 Chronic angle-closure glaucoma, left eye, severe stage +H402224 Chronic angle-closure glaucoma, left eye, indeterminate stage +H402230 Chronic angle-closure glaucoma, bilateral, stage unspecified +H402231 Chronic angle-closure glaucoma, bilateral, mild stage +H402232 Chronic angle-closure glaucoma, bilateral, moderate stage +H402233 Chronic angle-closure glaucoma, bilateral, severe stage +H402234 Chronic angle-closure glaucoma, bilateral, indeterminate stage +H402290 Chronic angle-closure glaucoma, unspecified eye, stage unspecified +H402291 Chronic angle-closure glaucoma, unspecified eye, mild stage +H402292 Chronic angle-closure glaucoma, unspecified eye, moderate stage +H402293 Chronic angle-closure glaucoma, unspecified eye, severe stage +H402294 Chronic angle-closure glaucoma, unspecified eye, indeterminate stage +H40231 Intermittent angle-closure glaucoma, right eye +H40232 Intermittent angle-closure glaucoma, left eye +H40233 Intermittent angle-closure glaucoma, bilateral +H40239 Intermittent angle-closure glaucoma, unspecified eye +H40241 Residual stage of angle-closure glaucoma, right eye +H40242 Residual stage of angle-closure glaucoma, left eye +H40243 Residual stage of angle-closure glaucoma, bilateral +H40249 Residual stage of angle-closure glaucoma, unspecified eye +H4030X0 Glaucoma secondary to eye trauma, unspecified eye, stage unspecified +H4030X1 Glaucoma secondary to eye trauma, unspecified eye, mild stage +H4030X2 Glaucoma secondary to eye trauma, unspecified eye, moderate stage +H4030X3 Glaucoma secondary to eye trauma, unspecified eye, severe stage +H4030X4 Glaucoma secondary to eye trauma, unspecified eye, indeterminate stage +H4031X0 Glaucoma secondary to eye trauma, right eye, stage unspecified +H4031X1 Glaucoma secondary to eye trauma, right eye, mild stage +H4031X2 Glaucoma secondary to eye trauma, right eye, moderate stage +H4031X3 Glaucoma secondary to eye trauma, right eye, severe stage +H4031X4 Glaucoma secondary to eye trauma, right eye, indeterminate stage +H4032X0 Glaucoma secondary to eye trauma, left eye, stage unspecified +H4032X1 Glaucoma secondary to eye trauma, left eye, mild stage +H4032X2 Glaucoma secondary to eye trauma, left eye, moderate stage +H4032X3 Glaucoma secondary to eye trauma, left eye, severe stage +H4032X4 Glaucoma secondary to eye trauma, left eye, indeterminate stage +H4033X0 Glaucoma secondary to eye trauma, bilateral, stage unspecified +H4033X1 Glaucoma secondary to eye trauma, bilateral, mild stage +H4033X2 Glaucoma secondary to eye trauma, bilateral, moderate stage +H4033X3 Glaucoma secondary to eye trauma, bilateral, severe stage +H4033X4 Glaucoma secondary to eye trauma, bilateral, indeterminate stage +H4040X0 Glaucoma secondary to eye inflammation, unspecified eye, stage unspecified +H4040X1 Glaucoma secondary to eye inflammation, unspecified eye, mild stage +H4040X2 Glaucoma secondary to eye inflammation, unspecified eye, moderate stage +H4040X3 Glaucoma secondary to eye inflammation, unspecified eye, severe stage +H4040X4 Glaucoma secondary to eye inflammation, unspecified eye, indeterminate stage +H4041X0 Glaucoma secondary to eye inflammation, right eye, stage unspecified +H4041X1 Glaucoma secondary to eye inflammation, right eye, mild stage +H4041X2 Glaucoma secondary to eye inflammation, right eye, moderate stage +H4041X3 Glaucoma secondary to eye inflammation, right eye, severe stage +H4041X4 Glaucoma secondary to eye inflammation, right eye, indeterminate stage +H4042X0 Glaucoma secondary to eye inflammation, left eye, stage unspecified +H4042X1 Glaucoma secondary to eye inflammation, left eye, mild stage +H4042X2 Glaucoma secondary to eye inflammation, left eye, moderate stage +H4042X3 Glaucoma secondary to eye inflammation, left eye, severe stage +H4042X4 Glaucoma secondary to eye inflammation, left eye, indeterminate stage +H4043X0 Glaucoma secondary to eye inflammation, bilateral, stage unspecified +H4043X1 Glaucoma secondary to eye inflammation, bilateral, mild stage +H4043X2 Glaucoma secondary to eye inflammation, bilateral, moderate stage +H4043X3 Glaucoma secondary to eye inflammation, bilateral, severe stage +H4043X4 Glaucoma secondary to eye inflammation, bilateral, indeterminate stage +H4050X0 Glaucoma secondary to other eye disorders, unspecified eye, stage unspecified +H4050X1 Glaucoma secondary to other eye disorders, unspecified eye, mild stage +H4050X2 Glaucoma secondary to other eye disorders, unspecified eye, moderate stage +H4050X3 Glaucoma secondary to other eye disorders, unspecified eye, severe stage +H4050X4 Glaucoma secondary to other eye disorders, unspecified eye, indeterminate stage +H4051X0 Glaucoma secondary to other eye disorders, right eye, stage unspecified +H4051X1 Glaucoma secondary to other eye disorders, right eye, mild stage +H4051X2 Glaucoma secondary to other eye disorders, right eye, moderate stage +H4051X3 Glaucoma secondary to other eye disorders, right eye, severe stage +H4051X4 Glaucoma secondary to other eye disorders, right eye, indeterminate stage +H4052X0 Glaucoma secondary to other eye disorders, left eye, stage unspecified +H4052X1 Glaucoma secondary to other eye disorders, left eye, mild stage +H4052X2 Glaucoma secondary to other eye disorders, left eye, moderate stage +H4052X3 Glaucoma secondary to other eye disorders, left eye, severe stage +H4052X4 Glaucoma secondary to other eye disorders, left eye, indeterminate stage +H4053X0 Glaucoma secondary to other eye disorders, bilateral, stage unspecified +H4053X1 Glaucoma secondary to other eye disorders, bilateral, mild stage +H4053X2 Glaucoma secondary to other eye disorders, bilateral, moderate stage +H4053X3 Glaucoma secondary to other eye disorders, bilateral, severe stage +H4053X4 Glaucoma secondary to other eye disorders, bilateral, indeterminate stage +H4060X0 Glaucoma secondary to drugs, unspecified eye, stage unspecified +H4060X1 Glaucoma secondary to drugs, unspecified eye, mild stage +H4060X2 Glaucoma secondary to drugs, unspecified eye, moderate stage +H4060X3 Glaucoma secondary to drugs, unspecified eye, severe stage +H4060X4 Glaucoma secondary to drugs, unspecified eye, indeterminate stage +H4061X0 Glaucoma secondary to drugs, right eye, stage unspecified +H4061X1 Glaucoma secondary to drugs, right eye, mild stage +H4061X2 Glaucoma secondary to drugs, right eye, moderate stage +H4061X3 Glaucoma secondary to drugs, right eye, severe stage +H4061X4 Glaucoma secondary to drugs, right eye, indeterminate stage +H4062X0 Glaucoma secondary to drugs, left eye, stage unspecified +H4062X1 Glaucoma secondary to drugs, left eye, mild stage +H4062X2 Glaucoma secondary to drugs, left eye, moderate stage +H4062X3 Glaucoma secondary to drugs, left eye, severe stage +H4062X4 Glaucoma secondary to drugs, left eye, indeterminate stage +H4063X0 Glaucoma secondary to drugs, bilateral, stage unspecified +H4063X1 Glaucoma secondary to drugs, bilateral, mild stage +H4063X2 Glaucoma secondary to drugs, bilateral, moderate stage +H4063X3 Glaucoma secondary to drugs, bilateral, severe stage +H4063X4 Glaucoma secondary to drugs, bilateral, indeterminate stage +H40811 Glaucoma with increased episcleral venous pressure, right eye +H40812 Glaucoma with increased episcleral venous pressure, left eye +H40813 Glaucoma with increased episcleral venous pressure, bilateral +H40819 Glaucoma with increased episcleral venous pressure, unspecified eye +H40821 Hypersecretion glaucoma, right eye +H40822 Hypersecretion glaucoma, left eye +H40823 Hypersecretion glaucoma, bilateral +H40829 Hypersecretion glaucoma, unspecified eye +H40831 Aqueous misdirection, right eye +H40832 Aqueous misdirection, left eye +H40833 Aqueous misdirection, bilateral +H40839 Aqueous misdirection, unspecified eye +H4089 Other specified glaucoma +H409 Unspecified glaucoma +H42 Glaucoma in diseases classified elsewhere +H4300 Vitreous prolapse, unspecified eye +H4301 Vitreous prolapse, right eye +H4302 Vitreous prolapse, left eye +H4303 Vitreous prolapse, bilateral +H4310 Vitreous hemorrhage, unspecified eye +H4311 Vitreous hemorrhage, right eye +H4312 Vitreous hemorrhage, left eye +H4313 Vitreous hemorrhage, bilateral +H4320 Crystalline deposits in vitreous body, unspecified eye +H4321 Crystalline deposits in vitreous body, right eye +H4322 Crystalline deposits in vitreous body, left eye +H4323 Crystalline deposits in vitreous body, bilateral +H43311 Vitreous membranes and strands, right eye +H43312 Vitreous membranes and strands, left eye +H43313 Vitreous membranes and strands, bilateral +H43319 Vitreous membranes and strands, unspecified eye +H43391 Other vitreous opacities, right eye +H43392 Other vitreous opacities, left eye +H43393 Other vitreous opacities, bilateral +H43399 Other vitreous opacities, unspecified eye +H43811 Vitreous degeneration, right eye +H43812 Vitreous degeneration, left eye +H43813 Vitreous degeneration, bilateral +H43819 Vitreous degeneration, unspecified eye +H43821 Vitreomacular adhesion, right eye +H43822 Vitreomacular adhesion, left eye +H43823 Vitreomacular adhesion, bilateral +H43829 Vitreomacular adhesion, unspecified eye +H4389 Other disorders of vitreous body +H439 Unspecified disorder of vitreous body +H44001 Unspecified purulent endophthalmitis, right eye +H44002 Unspecified purulent endophthalmitis, left eye +H44003 Unspecified purulent endophthalmitis, bilateral +H44009 Unspecified purulent endophthalmitis, unspecified eye +H44011 Panophthalmitis (acute), right eye +H44012 Panophthalmitis (acute), left eye +H44013 Panophthalmitis (acute), bilateral +H44019 Panophthalmitis (acute), unspecified eye +H44021 Vitreous abscess (chronic), right eye +H44022 Vitreous abscess (chronic), left eye +H44023 Vitreous abscess (chronic), bilateral +H44029 Vitreous abscess (chronic), unspecified eye +H44111 Panuveitis, right eye +H44112 Panuveitis, left eye +H44113 Panuveitis, bilateral +H44119 Panuveitis, unspecified eye +H44121 Parasitic endophthalmitis, unspecified, right eye +H44122 Parasitic endophthalmitis, unspecified, left eye +H44123 Parasitic endophthalmitis, unspecified, bilateral +H44129 Parasitic endophthalmitis, unspecified, unspecified eye +H44131 Sympathetic uveitis, right eye +H44132 Sympathetic uveitis, left eye +H44133 Sympathetic uveitis, bilateral +H44139 Sympathetic uveitis, unspecified eye +H4419 Other endophthalmitis +H4420 Degenerative myopia, unspecified eye +H4421 Degenerative myopia, right eye +H4422 Degenerative myopia, left eye +H4423 Degenerative myopia, bilateral +H442A1 Degenerative myopia with choroidal neovascularization, right eye +H442A2 Degenerative myopia with choroidal neovascularization, left eye +H442A3 Degenerative myopia with choroidal neovascularization, bilateral eye +H442A9 Degenerative myopia with choroidal neovascularization, unspecified eye +H442B1 Degenerative myopia with macular hole, right eye +H442B2 Degenerative myopia with macular hole, left eye +H442B3 Degenerative myopia with macular hole, bilateral eye +H442B9 Degenerative myopia with macular hole, unspecified eye +H442C1 Degenerative myopia with retinal detachment, right eye +H442C2 Degenerative myopia with retinal detachment, left eye +H442C3 Degenerative myopia with retinal detachment, bilateral eye +H442C9 Degenerative myopia with retinal detachment, unspecified eye +H442D1 Degenerative myopia with foveoschisis, right eye +H442D2 Degenerative myopia with foveoschisis, left eye +H442D3 Degenerative myopia with foveoschisis, bilateral eye +H442D9 Degenerative myopia with foveoschisis, unspecified eye +H442E1 Degenerative myopia with other maculopathy, right eye +H442E2 Degenerative myopia with other maculopathy, left eye +H442E3 Degenerative myopia with other maculopathy, bilateral eye +H442E9 Degenerative myopia with other maculopathy, unspecified eye +H4430 Unspecified degenerative disorder of globe +H44311 Chalcosis, right eye +H44312 Chalcosis, left eye +H44313 Chalcosis, bilateral +H44319 Chalcosis, unspecified eye +H44321 Siderosis of eye, right eye +H44322 Siderosis of eye, left eye +H44323 Siderosis of eye, bilateral +H44329 Siderosis of eye, unspecified eye +H44391 Other degenerative disorders of globe, right eye +H44392 Other degenerative disorders of globe, left eye +H44393 Other degenerative disorders of globe, bilateral +H44399 Other degenerative disorders of globe, unspecified eye +H4440 Unspecified hypotony of eye +H44411 Flat anterior chamber hypotony of right eye +H44412 Flat anterior chamber hypotony of left eye +H44413 Flat anterior chamber hypotony of eye, bilateral +H44419 Flat anterior chamber hypotony of unspecified eye +H44421 Hypotony of right eye due to ocular fistula +H44422 Hypotony of left eye due to ocular fistula +H44423 Hypotony of eye due to ocular fistula, bilateral +H44429 Hypotony of unspecified eye due to ocular fistula +H44431 Hypotony of eye due to other ocular disorders, right eye +H44432 Hypotony of eye due to other ocular disorders, left eye +H44433 Hypotony of eye due to other ocular disorders, bilateral +H44439 Hypotony of eye due to other ocular disorders, unspecified eye +H44441 Primary hypotony of right eye +H44442 Primary hypotony of left eye +H44443 Primary hypotony of eye, bilateral +H44449 Primary hypotony of unspecified eye +H4450 Unspecified degenerated conditions of globe +H44511 Absolute glaucoma, right eye +H44512 Absolute glaucoma, left eye +H44513 Absolute glaucoma, bilateral +H44519 Absolute glaucoma, unspecified eye +H44521 Atrophy of globe, right eye +H44522 Atrophy of globe, left eye +H44523 Atrophy of globe, bilateral +H44529 Atrophy of globe, unspecified eye +H44531 Leucocoria, right eye +H44532 Leucocoria, left eye +H44533 Leucocoria, bilateral +H44539 Leucocoria, unspecified eye +H44601 Unspecified retained (old) intraocular foreign body, magnetic, right eye +H44602 Unspecified retained (old) intraocular foreign body, magnetic, left eye +H44603 Unspecified retained (old) intraocular foreign body, magnetic, bilateral +H44609 Unspecified retained (old) intraocular foreign body, magnetic, unspecified eye +H44611 Retained (old) magnetic foreign body in anterior chamber, right eye +H44612 Retained (old) magnetic foreign body in anterior chamber, left eye +H44613 Retained (old) magnetic foreign body in anterior chamber, bilateral +H44619 Retained (old) magnetic foreign body in anterior chamber, unspecified eye +H44621 Retained (old) magnetic foreign body in iris or ciliary body, right eye +H44622 Retained (old) magnetic foreign body in iris or ciliary body, left eye +H44623 Retained (old) magnetic foreign body in iris or ciliary body, bilateral +H44629 Retained (old) magnetic foreign body in iris or ciliary body, unspecified eye +H44631 Retained (old) magnetic foreign body in lens, right eye +H44632 Retained (old) magnetic foreign body in lens, left eye +H44633 Retained (old) magnetic foreign body in lens, bilateral +H44639 Retained (old) magnetic foreign body in lens, unspecified eye +H44641 Retained (old) magnetic foreign body in posterior wall of globe, right eye +H44642 Retained (old) magnetic foreign body in posterior wall of globe, left eye +H44643 Retained (old) magnetic foreign body in posterior wall of globe, bilateral +H44649 Retained (old) magnetic foreign body in posterior wall of globe, unspecified eye +H44651 Retained (old) magnetic foreign body in vitreous body, right eye +H44652 Retained (old) magnetic foreign body in vitreous body, left eye +H44653 Retained (old) magnetic foreign body in vitreous body, bilateral +H44659 Retained (old) magnetic foreign body in vitreous body, unspecified eye +H44691 Retained (old) intraocular foreign body, magnetic, in other or multiple sites, right eye +H44692 Retained (old) intraocular foreign body, magnetic, in other or multiple sites, left eye +H44693 Retained (old) intraocular foreign body, magnetic, in other or multiple sites, bilateral +H44699 Retained (old) intraocular foreign body, magnetic, in other or multiple sites, unspecified eye +H44701 Unspecified retained (old) intraocular foreign body, nonmagnetic, right eye +H44702 Unspecified retained (old) intraocular foreign body, nonmagnetic, left eye +H44703 Unspecified retained (old) intraocular foreign body, nonmagnetic, bilateral +H44709 Unspecified retained (old) intraocular foreign body, nonmagnetic, unspecified eye +H44711 Retained (nonmagnetic) (old) foreign body in anterior chamber, right eye +H44712 Retained (nonmagnetic) (old) foreign body in anterior chamber, left eye +H44713 Retained (nonmagnetic) (old) foreign body in anterior chamber, bilateral +H44719 Retained (nonmagnetic) (old) foreign body in anterior chamber, unspecified eye +H44721 Retained (nonmagnetic) (old) foreign body in iris or ciliary body, right eye +H44722 Retained (nonmagnetic) (old) foreign body in iris or ciliary body, left eye +H44723 Retained (nonmagnetic) (old) foreign body in iris or ciliary body, bilateral +H44729 Retained (nonmagnetic) (old) foreign body in iris or ciliary body, unspecified eye +H44731 Retained (nonmagnetic) (old) foreign body in lens, right eye +H44732 Retained (nonmagnetic) (old) foreign body in lens, left eye +H44733 Retained (nonmagnetic) (old) foreign body in lens, bilateral +H44739 Retained (nonmagnetic) (old) foreign body in lens, unspecified eye +H44741 Retained (nonmagnetic) (old) foreign body in posterior wall of globe, right eye +H44742 Retained (nonmagnetic) (old) foreign body in posterior wall of globe, left eye +H44743 Retained (nonmagnetic) (old) foreign body in posterior wall of globe, bilateral +H44749 Retained (nonmagnetic) (old) foreign body in posterior wall of globe, unspecified eye +H44751 Retained (nonmagnetic) (old) foreign body in vitreous body, right eye +H44752 Retained (nonmagnetic) (old) foreign body in vitreous body, left eye +H44753 Retained (nonmagnetic) (old) foreign body in vitreous body, bilateral +H44759 Retained (nonmagnetic) (old) foreign body in vitreous body, unspecified eye +H44791 Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, right eye +H44792 Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, left eye +H44793 Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, bilateral +H44799 Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, unspecified eye +H44811 Hemophthalmos, right eye +H44812 Hemophthalmos, left eye +H44813 Hemophthalmos, bilateral +H44819 Hemophthalmos, unspecified eye +H44821 Luxation of globe, right eye +H44822 Luxation of globe, left eye +H44823 Luxation of globe, bilateral +H44829 Luxation of globe, unspecified eye +H4489 Other disorders of globe +H449 Unspecified disorder of globe +H4600 Optic papillitis, unspecified eye +H4601 Optic papillitis, right eye +H4602 Optic papillitis, left eye +H4603 Optic papillitis, bilateral +H4610 Retrobulbar neuritis, unspecified eye +H4611 Retrobulbar neuritis, right eye +H4612 Retrobulbar neuritis, left eye +H4613 Retrobulbar neuritis, bilateral +H462 Nutritional optic neuropathy +H463 Toxic optic neuropathy +H468 Other optic neuritis +H469 Unspecified optic neuritis +H47011 Ischemic optic neuropathy, right eye +H47012 Ischemic optic neuropathy, left eye +H47013 Ischemic optic neuropathy, bilateral +H47019 Ischemic optic neuropathy, unspecified eye +H47021 Hemorrhage in optic nerve sheath, right eye +H47022 Hemorrhage in optic nerve sheath, left eye +H47023 Hemorrhage in optic nerve sheath, bilateral +H47029 Hemorrhage in optic nerve sheath, unspecified eye +H47031 Optic nerve hypoplasia, right eye +H47032 Optic nerve hypoplasia, left eye +H47033 Optic nerve hypoplasia, bilateral +H47039 Optic nerve hypoplasia, unspecified eye +H47091 Other disorders of optic nerve, not elsewhere classified, right eye +H47092 Other disorders of optic nerve, not elsewhere classified, left eye +H47093 Other disorders of optic nerve, not elsewhere classified, bilateral +H47099 Other disorders of optic nerve, not elsewhere classified, unspecified eye +H4710 Unspecified papilledema +H4711 Papilledema associated with increased intracranial pressure +H4712 Papilledema associated with decreased ocular pressure +H4713 Papilledema associated with retinal disorder +H47141 Foster-Kennedy syndrome, right eye +H47142 Foster-Kennedy syndrome, left eye +H47143 Foster-Kennedy syndrome, bilateral +H47149 Foster-Kennedy syndrome, unspecified eye +H4720 Unspecified optic atrophy +H47211 Primary optic atrophy, right eye +H47212 Primary optic atrophy, left eye +H47213 Primary optic atrophy, bilateral +H47219 Primary optic atrophy, unspecified eye +H4722 Hereditary optic atrophy +H47231 Glaucomatous optic atrophy, right eye +H47232 Glaucomatous optic atrophy, left eye +H47233 Glaucomatous optic atrophy, bilateral +H47239 Glaucomatous optic atrophy, unspecified eye +H47291 Other optic atrophy, right eye +H47292 Other optic atrophy, left eye +H47293 Other optic atrophy, bilateral +H47299 Other optic atrophy, unspecified eye +H47311 Coloboma of optic disc, right eye +H47312 Coloboma of optic disc, left eye +H47313 Coloboma of optic disc, bilateral +H47319 Coloboma of optic disc, unspecified eye +H47321 Drusen of optic disc, right eye +H47322 Drusen of optic disc, left eye +H47323 Drusen of optic disc, bilateral +H47329 Drusen of optic disc, unspecified eye +H47331 Pseudopapilledema of optic disc, right eye +H47332 Pseudopapilledema of optic disc, left eye +H47333 Pseudopapilledema of optic disc, bilateral +H47339 Pseudopapilledema of optic disc, unspecified eye +H47391 Other disorders of optic disc, right eye +H47392 Other disorders of optic disc, left eye +H47393 Other disorders of optic disc, bilateral +H47399 Other disorders of optic disc, unspecified eye +H4741 Disorders of optic chiasm in (due to) inflammatory disorders +H4742 Disorders of optic chiasm in (due to) neoplasm +H4743 Disorders of optic chiasm in (due to) vascular disorders +H4749 Disorders of optic chiasm in (due to) other disorders +H47511 Disorders of visual pathways in (due to) inflammatory disorders, right side +H47512 Disorders of visual pathways in (due to) inflammatory disorders, left side +H47519 Disorders of visual pathways in (due to) inflammatory disorders, unspecified side +H47521 Disorders of visual pathways in (due to) neoplasm, right side +H47522 Disorders of visual pathways in (due to) neoplasm, left side +H47529 Disorders of visual pathways in (due to) neoplasm, unspecified side +H47531 Disorders of visual pathways in (due to) vascular disorders, right side +H47532 Disorders of visual pathways in (due to) vascular disorders, left side +H47539 Disorders of visual pathways in (due to) vascular disorders, unspecified side +H47611 Cortical blindness, right side of brain +H47612 Cortical blindness, left side of brain +H47619 Cortical blindness, unspecified side of brain +H47621 Disorders of visual cortex in (due to) inflammatory disorders, right side of brain +H47622 Disorders of visual cortex in (due to) inflammatory disorders, left side of brain +H47629 Disorders of visual cortex in (due to) inflammatory disorders, unspecified side of brain +H47631 Disorders of visual cortex in (due to) neoplasm, right side of brain +H47632 Disorders of visual cortex in (due to) neoplasm, left side of brain +H47639 Disorders of visual cortex in (due to) neoplasm, unspecified side of brain +H47641 Disorders of visual cortex in (due to) vascular disorders, right side of brain +H47642 Disorders of visual cortex in (due to) vascular disorders, left side of brain +H47649 Disorders of visual cortex in (due to) vascular disorders, unspecified side of brain +H479 Unspecified disorder of visual pathways +H4900 Third [oculomotor] nerve palsy, unspecified eye +H4901 Third [oculomotor] nerve palsy, right eye +H4902 Third [oculomotor] nerve palsy, left eye +H4903 Third [oculomotor] nerve palsy, bilateral +H4910 Fourth [trochlear] nerve palsy, unspecified eye +H4911 Fourth [trochlear] nerve palsy, right eye +H4912 Fourth [trochlear] nerve palsy, left eye +H4913 Fourth [trochlear] nerve palsy, bilateral +H4920 Sixth [abducent] nerve palsy, unspecified eye +H4921 Sixth [abducent] nerve palsy, right eye +H4922 Sixth [abducent] nerve palsy, left eye +H4923 Sixth [abducent] nerve palsy, bilateral +H4930 Total (external) ophthalmoplegia, unspecified eye +H4931 Total (external) ophthalmoplegia, right eye +H4932 Total (external) ophthalmoplegia, left eye +H4933 Total (external) ophthalmoplegia, bilateral +H4940 Progressive external ophthalmoplegia, unspecified eye +H4941 Progressive external ophthalmoplegia, right eye +H4942 Progressive external ophthalmoplegia, left eye +H4943 Progressive external ophthalmoplegia, bilateral +H49811 Kearns-Sayre syndrome, right eye +H49812 Kearns-Sayre syndrome, left eye +H49813 Kearns-Sayre syndrome, bilateral +H49819 Kearns-Sayre syndrome, unspecified eye +H49881 Other paralytic strabismus, right eye +H49882 Other paralytic strabismus, left eye +H49883 Other paralytic strabismus, bilateral +H49889 Other paralytic strabismus, unspecified eye +H499 Unspecified paralytic strabismus +H5000 Unspecified esotropia +H50011 Monocular esotropia, right eye +H50012 Monocular esotropia, left eye +H50021 Monocular esotropia with A pattern, right eye +H50022 Monocular esotropia with A pattern, left eye +H50031 Monocular esotropia with V pattern, right eye +H50032 Monocular esotropia with V pattern, left eye +H50041 Monocular esotropia with other noncomitancies, right eye +H50042 Monocular esotropia with other noncomitancies, left eye +H5005 Alternating esotropia +H5006 Alternating esotropia with A pattern +H5007 Alternating esotropia with V pattern +H5008 Alternating esotropia with other noncomitancies +H5010 Unspecified exotropia +H50111 Monocular exotropia, right eye +H50112 Monocular exotropia, left eye +H50121 Monocular exotropia with A pattern, right eye +H50122 Monocular exotropia with A pattern, left eye +H50131 Monocular exotropia with V pattern, right eye +H50132 Monocular exotropia with V pattern, left eye +H50141 Monocular exotropia with other noncomitancies, right eye +H50142 Monocular exotropia with other noncomitancies, left eye +H5015 Alternating exotropia +H5016 Alternating exotropia with A pattern +H5017 Alternating exotropia with V pattern +H5018 Alternating exotropia with other noncomitancies +H5021 Vertical strabismus, right eye +H5022 Vertical strabismus, left eye +H5030 Unspecified intermittent heterotropia +H50311 Intermittent monocular esotropia, right eye +H50312 Intermittent monocular esotropia, left eye +H5032 Intermittent alternating esotropia +H50331 Intermittent monocular exotropia, right eye +H50332 Intermittent monocular exotropia, left eye +H5034 Intermittent alternating exotropia +H5040 Unspecified heterotropia +H50411 Cyclotropia, right eye +H50412 Cyclotropia, left eye +H5042 Monofixation syndrome +H5043 Accommodative component in esotropia +H5050 Unspecified heterophoria +H5051 Esophoria +H5052 Exophoria +H5053 Vertical heterophoria +H5054 Cyclophoria +H5055 Alternating heterophoria +H5060 Mechanical strabismus, unspecified +H50611 Brown's sheath syndrome, right eye +H50612 Brown's sheath syndrome, left eye +H5069 Other mechanical strabismus +H50811 Duane's syndrome, right eye +H50812 Duane's syndrome, left eye +H5089 Other specified strabismus +H509 Unspecified strabismus +H510 Palsy (spasm) of conjugate gaze +H5111 Convergence insufficiency +H5112 Convergence excess +H5120 Internuclear ophthalmoplegia, unspecified eye +H5121 Internuclear ophthalmoplegia, right eye +H5122 Internuclear ophthalmoplegia, left eye +H5123 Internuclear ophthalmoplegia, bilateral +H518 Other specified disorders of binocular movement +H519 Unspecified disorder of binocular movement +H5200 Hypermetropia, unspecified eye +H5201 Hypermetropia, right eye +H5202 Hypermetropia, left eye +H5203 Hypermetropia, bilateral +H5210 Myopia, unspecified eye +H5211 Myopia, right eye +H5212 Myopia, left eye +H5213 Myopia, bilateral +H52201 Unspecified astigmatism, right eye +H52202 Unspecified astigmatism, left eye +H52203 Unspecified astigmatism, bilateral +H52209 Unspecified astigmatism, unspecified eye +H52211 Irregular astigmatism, right eye +H52212 Irregular astigmatism, left eye +H52213 Irregular astigmatism, bilateral +H52219 Irregular astigmatism, unspecified eye +H52221 Regular astigmatism, right eye +H52222 Regular astigmatism, left eye +H52223 Regular astigmatism, bilateral +H52229 Regular astigmatism, unspecified eye +H5231 Anisometropia +H5232 Aniseikonia +H524 Presbyopia +H52511 Internal ophthalmoplegia (complete) (total), right eye +H52512 Internal ophthalmoplegia (complete) (total), left eye +H52513 Internal ophthalmoplegia (complete) (total), bilateral +H52519 Internal ophthalmoplegia (complete) (total), unspecified eye +H52521 Paresis of accommodation, right eye +H52522 Paresis of accommodation, left eye +H52523 Paresis of accommodation, bilateral +H52529 Paresis of accommodation, unspecified eye +H52531 Spasm of accommodation, right eye +H52532 Spasm of accommodation, left eye +H52533 Spasm of accommodation, bilateral +H52539 Spasm of accommodation, unspecified eye +H526 Other disorders of refraction +H527 Unspecified disorder of refraction +H53001 Unspecified amblyopia, right eye +H53002 Unspecified amblyopia, left eye +H53003 Unspecified amblyopia, bilateral +H53009 Unspecified amblyopia, unspecified eye +H53011 Deprivation amblyopia, right eye +H53012 Deprivation amblyopia, left eye +H53013 Deprivation amblyopia, bilateral +H53019 Deprivation amblyopia, unspecified eye +H53021 Refractive amblyopia, right eye +H53022 Refractive amblyopia, left eye +H53023 Refractive amblyopia, bilateral +H53029 Refractive amblyopia, unspecified eye +H53031 Strabismic amblyopia, right eye +H53032 Strabismic amblyopia, left eye +H53033 Strabismic amblyopia, bilateral +H53039 Strabismic amblyopia, unspecified eye +H53041 Amblyopia suspect, right eye +H53042 Amblyopia suspect, left eye +H53043 Amblyopia suspect, bilateral +H53049 Amblyopia suspect, unspecified eye +H5310 Unspecified subjective visual disturbances +H5311 Day blindness +H53121 Transient visual loss, right eye +H53122 Transient visual loss, left eye +H53123 Transient visual loss, bilateral +H53129 Transient visual loss, unspecified eye +H53131 Sudden visual loss, right eye +H53132 Sudden visual loss, left eye +H53133 Sudden visual loss, bilateral +H53139 Sudden visual loss, unspecified eye +H53141 Visual discomfort, right eye +H53142 Visual discomfort, left eye +H53143 Visual discomfort, bilateral +H53149 Visual discomfort, unspecified +H5315 Visual distortions of shape and size +H5316 Psychophysical visual disturbances +H5319 Other subjective visual disturbances +H532 Diplopia +H5330 Unspecified disorder of binocular vision +H5331 Abnormal retinal correspondence +H5332 Fusion with defective stereopsis +H5333 Simultaneous visual perception without fusion +H5334 Suppression of binocular vision +H5340 Unspecified visual field defects +H53411 Scotoma involving central area, right eye +H53412 Scotoma involving central area, left eye +H53413 Scotoma involving central area, bilateral +H53419 Scotoma involving central area, unspecified eye +H53421 Scotoma of blind spot area, right eye +H53422 Scotoma of blind spot area, left eye +H53423 Scotoma of blind spot area, bilateral +H53429 Scotoma of blind spot area, unspecified eye +H53431 Sector or arcuate defects, right eye +H53432 Sector or arcuate defects, left eye +H53433 Sector or arcuate defects, bilateral +H53439 Sector or arcuate defects, unspecified eye +H53451 Other localized visual field defect, right eye +H53452 Other localized visual field defect, left eye +H53453 Other localized visual field defect, bilateral +H53459 Other localized visual field defect, unspecified eye +H53461 Homonymous bilateral field defects, right side +H53462 Homonymous bilateral field defects, left side +H53469 Homonymous bilateral field defects, unspecified side +H5347 Heteronymous bilateral field defects +H53481 Generalized contraction of visual field, right eye +H53482 Generalized contraction of visual field, left eye +H53483 Generalized contraction of visual field, bilateral +H53489 Generalized contraction of visual field, unspecified eye +H5350 Unspecified color vision deficiencies +H5351 Achromatopsia +H5352 Acquired color vision deficiency +H5353 Deuteranomaly +H5354 Protanomaly +H5355 Tritanomaly +H5359 Other color vision deficiencies +H5360 Unspecified night blindness +H5361 Abnormal dark adaptation curve +H5362 Acquired night blindness +H5363 Congenital night blindness +H5369 Other night blindness +H5371 Glare sensitivity +H5372 Impaired contrast sensitivity +H538 Other visual disturbances +H539 Unspecified visual disturbance +H540 Blindness, both eyes +H540X33 Blindness right eye category 3, blindness left eye category 3 +H540X34 Blindness right eye category 3, blindness left eye category 4 +H540X35 Blindness right eye category 3, blindness left eye category 5 +H540X43 Blindness right eye category 4, blindness left eye category 3 +H540X44 Blindness right eye category 4, blindness left eye category 4 +H540X45 Blindness right eye category 4, blindness left eye category 5 +H540X53 Blindness right eye category 5, blindness left eye category 3 +H540X54 Blindness right eye category 5, blindness left eye category 4 +H540X55 Blindness right eye category 5, blindness left eye category 5 +H5410 Blindness, one eye, low vision other eye, unspecified eyes +H5411 Blindness, right eye, low vision left eye +H541131 Blindness right eye category 3, low vision left eye category 1 +H541132 Blindness right eye category 3, low vision left eye category 2 +H541141 Blindness right eye category 4, low vision left eye category 1 +H541142 Blindness right eye category 4, low vision left eye category 2 +H541151 Blindness right eye category 5, low vision left eye category 1 +H541152 Blindness right eye category 5, low vision left eye category 2 +H5412 Blindness, left eye, low vision right eye +H541213 Low vision right eye category 1, blindness left eye category 3 +H541214 Low vision right eye category 1, blindness left eye category 4 +H541215 Low vision right eye category 1, blindness left eye category 5 +H541223 Low vision right eye category 2, blindness left eye category 3 +H541224 Low vision right eye category 2, blindness left eye category 4 +H541225 Low vision right eye category 2, blindness left eye category 5 +H542 Low vision, both eyes +H542X11 Low vision right eye category 1, low vision left eye category 1 +H542X12 Low vision right eye category 1, low vision left eye category 2 +H542X21 Low vision right eye category 2, low vision left eye category 1 +H542X22 Low vision right eye category 2, low vision left eye category 2 +H543 Unqualified visual loss, both eyes +H5440 Blindness, one eye, unspecified eye +H5441 Blindness, right eye, normal vision left eye +H54413A Blindness right eye category 3, normal vision left eye +H54414A Blindness right eye category 4, normal vision left eye +H54415A Blindness right eye category 5, normal vision left eye +H5442 Blindness, left eye, normal vision right eye +H5442A3 Blindness left eye category 3, normal vision right eye +H5442A4 Blindness left eye category 4, normal vision right eye +H5442A5 Blindness left eye category 5, normal vision right eye +H5450 Low vision, one eye, unspecified eye +H5451 Low vision, right eye, normal vision left eye +H54511A Low vision right eye category 1, normal vision left eye +H54512A Low vision right eye category 2, normal vision left eye +H5452 Low vision, left eye, normal vision right eye +H5452A1 Low vision left eye category 1, normal vision right eye +H5452A2 Low vision left eye category 2, normal vision right eye +H5460 Unqualified visual loss, one eye, unspecified +H5461 Unqualified visual loss, right eye, normal vision left eye +H5462 Unqualified visual loss, left eye, normal vision right eye +H547 Unspecified visual loss +H548 Legal blindness, as defined in USA +H5500 Unspecified nystagmus +H5501 Congenital nystagmus +H5502 Latent nystagmus +H5503 Visual deprivation nystagmus +H5504 Dissociated nystagmus +H5509 Other forms of nystagmus +H5581 Saccadic eye movements +H5589 Other irregular eye movements +H5700 Unspecified anomaly of pupillary function +H5701 Argyll Robertson pupil, atypical +H5702 Anisocoria +H5703 Miosis +H5704 Mydriasis +H57051 Tonic pupil, right eye +H57052 Tonic pupil, left eye +H57053 Tonic pupil, bilateral +H57059 Tonic pupil, unspecified eye +H5709 Other anomalies of pupillary function +H5710 Ocular pain, unspecified eye +H5711 Ocular pain, right eye +H5712 Ocular pain, left eye +H5713 Ocular pain, bilateral +H578 Other specified disorders of eye and adnexa +H57811 Brow ptosis, right +H57812 Brow ptosis, left +H57813 Brow ptosis, bilateral +H57819 Brow ptosis, unspecified +H5789 Other specified disorders of eye and adnexa +H579 Unspecified disorder of eye and adnexa +H59011 Keratopathy (bullous aphakic) following cataract surgery, right eye +H59012 Keratopathy (bullous aphakic) following cataract surgery, left eye +H59013 Keratopathy (bullous aphakic) following cataract surgery, bilateral +H59019 Keratopathy (bullous aphakic) following cataract surgery, unspecified eye +H59021 Cataract (lens) fragments in eye following cataract surgery, right eye +H59022 Cataract (lens) fragments in eye following cataract surgery, left eye +H59023 Cataract (lens) fragments in eye following cataract surgery, bilateral +H59029 Cataract (lens) fragments in eye following cataract surgery, unspecified eye +H59031 Cystoid macular edema following cataract surgery, right eye +H59032 Cystoid macular edema following cataract surgery, left eye +H59033 Cystoid macular edema following cataract surgery, bilateral +H59039 Cystoid macular edema following cataract surgery, unspecified eye +H59091 Other disorders of the right eye following cataract surgery +H59092 Other disorders of the left eye following cataract surgery +H59093 Other disorders of the eye following cataract surgery, bilateral +H59099 Other disorders of unspecified eye following cataract surgery +H59111 Intraoperative hemorrhage and hematoma of right eye and adnexa complicating an ophthalmic procedure +H59112 Intraoperative hemorrhage and hematoma of left eye and adnexa complicating an ophthalmic procedure +H59113 Intraoperative hemorrhage and hematoma of eye and adnexa complicating an ophthalmic procedure, bilateral +H59119 Intraoperative hemorrhage and hematoma of unspecified eye and adnexa complicating an ophthalmic procedure +H59121 Intraoperative hemorrhage and hematoma of right eye and adnexa complicating other procedure +H59122 Intraoperative hemorrhage and hematoma of left eye and adnexa complicating other procedure +H59123 Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure, bilateral +H59129 Intraoperative hemorrhage and hematoma of unspecified eye and adnexa complicating other procedure +H59211 Accidental puncture and laceration of right eye and adnexa during an ophthalmic procedure +H59212 Accidental puncture and laceration of left eye and adnexa during an ophthalmic procedure +H59213 Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure, bilateral +H59219 Accidental puncture and laceration of unspecified eye and adnexa during an ophthalmic procedure +H59221 Accidental puncture and laceration of right eye and adnexa during other procedure +H59222 Accidental puncture and laceration of left eye and adnexa during other procedure +H59223 Accidental puncture and laceration of eye and adnexa during other procedure, bilateral +H59229 Accidental puncture and laceration of unspecified eye and adnexa during other procedure +H59311 Postprocedural hemorrhage of right eye and adnexa following an ophthalmic procedure +H59312 Postprocedural hemorrhage of left eye and adnexa following an ophthalmic procedure +H59313 Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure, bilateral +H59319 Postprocedural hemorrhage of unspecified eye and adnexa following an ophthalmic procedure +H59321 Postprocedural hemorrhage of right eye and adnexa following other procedure +H59322 Postprocedural hemorrhage of left eye and adnexa following other procedure +H59323 Postprocedural hemorrhage of eye and adnexa following other procedure, bilateral +H59329 Postprocedural hemorrhage of unspecified eye and adnexa following other procedure +H59331 Postprocedural hematoma of right eye and adnexa following an ophthalmic procedure +H59332 Postprocedural hematoma of left eye and adnexa following an ophthalmic procedure +H59333 Postprocedural hematoma of eye and adnexa following an ophthalmic procedure, bilateral +H59339 Postprocedural hematoma of unspecified eye and adnexa following an ophthalmic procedure +H59341 Postprocedural hematoma of right eye and adnexa following other procedure +H59342 Postprocedural hematoma of left eye and adnexa following other procedure +H59343 Postprocedural hematoma of eye and adnexa following other procedure, bilateral +H59349 Postprocedural hematoma of unspecified eye and adnexa following other procedure +H59351 Postprocedural seroma of right eye and adnexa following an ophthalmic procedure +H59352 Postprocedural seroma of left eye and adnexa following an ophthalmic procedure +H59353 Postprocedural seroma of eye and adnexa following an ophthalmic procedure, bilateral +H59359 Postprocedural seroma of unspecified eye and adnexa following an ophthalmic procedure +H59361 Postprocedural seroma of right eye and adnexa following other procedure +H59362 Postprocedural seroma of left eye and adnexa following other procedure +H59363 Postprocedural seroma of eye and adnexa following other procedure, bilateral +H59369 Postprocedural seroma of unspecified eye and adnexa following other procedure +H5940 Inflammation (infection) of postprocedural bleb, unspecified +H5941 Inflammation (infection) of postprocedural bleb, stage 1 +H5942 Inflammation (infection) of postprocedural bleb, stage 2 +H5943 Inflammation (infection) of postprocedural bleb, stage 3 +H59811 Chorioretinal scars after surgery for detachment, right eye +H59812 Chorioretinal scars after surgery for detachment, left eye +H59813 Chorioretinal scars after surgery for detachment, bilateral +H59819 Chorioretinal scars after surgery for detachment, unspecified eye +H5988 Other intraoperative complications of eye and adnexa, not elsewhere classified +H5989 Other postprocedural complications and disorders of eye and adnexa, not elsewhere classified +H6000 Abscess of external ear, unspecified ear +H6001 Abscess of right external ear +H6002 Abscess of left external ear +H6003 Abscess of external ear, bilateral +H6010 Cellulitis of external ear, unspecified ear +H6011 Cellulitis of right external ear +H6012 Cellulitis of left external ear +H6013 Cellulitis of external ear, bilateral +H6020 Malignant otitis externa, unspecified ear +H6021 Malignant otitis externa, right ear +H6022 Malignant otitis externa, left ear +H6023 Malignant otitis externa, bilateral +H60311 Diffuse otitis externa, right ear +H60312 Diffuse otitis externa, left ear +H60313 Diffuse otitis externa, bilateral +H60319 Diffuse otitis externa, unspecified ear +H60321 Hemorrhagic otitis externa, right ear +H60322 Hemorrhagic otitis externa, left ear +H60323 Hemorrhagic otitis externa, bilateral +H60329 Hemorrhagic otitis externa, unspecified ear +H60331 Swimmer's ear, right ear +H60332 Swimmer's ear, left ear +H60333 Swimmer's ear, bilateral +H60339 Swimmer's ear, unspecified ear +H60391 Other infective otitis externa, right ear +H60392 Other infective otitis externa, left ear +H60393 Other infective otitis externa, bilateral +H60399 Other infective otitis externa, unspecified ear +H6040 Cholesteatoma of external ear, unspecified ear +H6041 Cholesteatoma of right external ear +H6042 Cholesteatoma of left external ear +H6043 Cholesteatoma of external ear, bilateral +H60501 Unspecified acute noninfective otitis externa, right ear +H60502 Unspecified acute noninfective otitis externa, left ear +H60503 Unspecified acute noninfective otitis externa, bilateral +H60509 Unspecified acute noninfective otitis externa, unspecified ear +H60511 Acute actinic otitis externa, right ear +H60512 Acute actinic otitis externa, left ear +H60513 Acute actinic otitis externa, bilateral +H60519 Acute actinic otitis externa, unspecified ear +H60521 Acute chemical otitis externa, right ear +H60522 Acute chemical otitis externa, left ear +H60523 Acute chemical otitis externa, bilateral +H60529 Acute chemical otitis externa, unspecified ear +H60531 Acute contact otitis externa, right ear +H60532 Acute contact otitis externa, left ear +H60533 Acute contact otitis externa, bilateral +H60539 Acute contact otitis externa, unspecified ear +H60541 Acute eczematoid otitis externa, right ear +H60542 Acute eczematoid otitis externa, left ear +H60543 Acute eczematoid otitis externa, bilateral +H60549 Acute eczematoid otitis externa, unspecified ear +H60551 Acute reactive otitis externa, right ear +H60552 Acute reactive otitis externa, left ear +H60553 Acute reactive otitis externa, bilateral +H60559 Acute reactive otitis externa, unspecified ear +H60591 Other noninfective acute otitis externa, right ear +H60592 Other noninfective acute otitis externa, left ear +H60593 Other noninfective acute otitis externa, bilateral +H60599 Other noninfective acute otitis externa, unspecified ear +H6060 Unspecified chronic otitis externa, unspecified ear +H6061 Unspecified chronic otitis externa, right ear +H6062 Unspecified chronic otitis externa, left ear +H6063 Unspecified chronic otitis externa, bilateral +H608X1 Other otitis externa, right ear +H608X2 Other otitis externa, left ear +H608X3 Other otitis externa, bilateral +H608X9 Other otitis externa, unspecified ear +H6090 Unspecified otitis externa, unspecified ear +H6091 Unspecified otitis externa, right ear +H6092 Unspecified otitis externa, left ear +H6093 Unspecified otitis externa, bilateral +H61001 Unspecified perichondritis of right external ear +H61002 Unspecified perichondritis of left external ear +H61003 Unspecified perichondritis of external ear, bilateral +H61009 Unspecified perichondritis of external ear, unspecified ear +H61011 Acute perichondritis of right external ear +H61012 Acute perichondritis of left external ear +H61013 Acute perichondritis of external ear, bilateral +H61019 Acute perichondritis of external ear, unspecified ear +H61021 Chronic perichondritis of right external ear +H61022 Chronic perichondritis of left external ear +H61023 Chronic perichondritis of external ear, bilateral +H61029 Chronic perichondritis of external ear, unspecified ear +H61031 Chondritis of right external ear +H61032 Chondritis of left external ear +H61033 Chondritis of external ear, bilateral +H61039 Chondritis of external ear, unspecified ear +H61101 Unspecified noninfective disorders of pinna, right ear +H61102 Unspecified noninfective disorders of pinna, left ear +H61103 Unspecified noninfective disorders of pinna, bilateral +H61109 Unspecified noninfective disorders of pinna, unspecified ear +H61111 Acquired deformity of pinna, right ear +H61112 Acquired deformity of pinna, left ear +H61113 Acquired deformity of pinna, bilateral +H61119 Acquired deformity of pinna, unspecified ear +H61121 Hematoma of pinna, right ear +H61122 Hematoma of pinna, left ear +H61123 Hematoma of pinna, bilateral +H61129 Hematoma of pinna, unspecified ear +H61191 Noninfective disorders of pinna, right ear +H61192 Noninfective disorders of pinna, left ear +H61193 Noninfective disorders of pinna, bilateral +H61199 Noninfective disorders of pinna, unspecified ear +H6120 Impacted cerumen, unspecified ear +H6121 Impacted cerumen, right ear +H6122 Impacted cerumen, left ear +H6123 Impacted cerumen, bilateral +H61301 Acquired stenosis of right external ear canal, unspecified +H61302 Acquired stenosis of left external ear canal, unspecified +H61303 Acquired stenosis of external ear canal, unspecified, bilateral +H61309 Acquired stenosis of external ear canal, unspecified, unspecified ear +H61311 Acquired stenosis of right external ear canal secondary to trauma +H61312 Acquired stenosis of left external ear canal secondary to trauma +H61313 Acquired stenosis of external ear canal secondary to trauma, bilateral +H61319 Acquired stenosis of external ear canal secondary to trauma, unspecified ear +H61321 Acquired stenosis of right external ear canal secondary to inflammation and infection +H61322 Acquired stenosis of left external ear canal secondary to inflammation and infection +H61323 Acquired stenosis of external ear canal secondary to inflammation and infection, bilateral +H61329 Acquired stenosis of external ear canal secondary to inflammation and infection, unspecified ear +H61391 Other acquired stenosis of right external ear canal +H61392 Other acquired stenosis of left external ear canal +H61393 Other acquired stenosis of external ear canal, bilateral +H61399 Other acquired stenosis of external ear canal, unspecified ear +H61811 Exostosis of right external canal +H61812 Exostosis of left external canal +H61813 Exostosis of external canal, bilateral +H61819 Exostosis of external canal, unspecified ear +H61891 Other specified disorders of right external ear +H61892 Other specified disorders of left external ear +H61893 Other specified disorders of external ear, bilateral +H61899 Other specified disorders of external ear, unspecified ear +H6190 Disorder of external ear, unspecified, unspecified ear +H6191 Disorder of right external ear, unspecified +H6192 Disorder of left external ear, unspecified +H6193 Disorder of external ear, unspecified, bilateral +H6240 Otitis externa in other diseases classified elsewhere, unspecified ear +H6241 Otitis externa in other diseases classified elsewhere, right ear +H6242 Otitis externa in other diseases classified elsewhere, left ear +H6243 Otitis externa in other diseases classified elsewhere, bilateral +H628X1 Other disorders of right external ear in diseases classified elsewhere +H628X2 Other disorders of left external ear in diseases classified elsewhere +H628X3 Other disorders of external ear in diseases classified elsewhere, bilateral +H628X9 Other disorders of external ear in diseases classified elsewhere, unspecified ear +H6500 Acute serous otitis media, unspecified ear +H6501 Acute serous otitis media, right ear +H6502 Acute serous otitis media, left ear +H6503 Acute serous otitis media, bilateral +H6504 Acute serous otitis media, recurrent, right ear +H6505 Acute serous otitis media, recurrent, left ear +H6506 Acute serous otitis media, recurrent, bilateral +H6507 Acute serous otitis media, recurrent, unspecified ear +H65111 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), right ear +H65112 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), left ear +H65113 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), bilateral +H65114 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, right ear +H65115 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, left ear +H65116 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, bilateral +H65117 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, unspecified ear +H65119 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), unspecified ear +H65191 Other acute nonsuppurative otitis media, right ear +H65192 Other acute nonsuppurative otitis media, left ear +H65193 Other acute nonsuppurative otitis media, bilateral +H65194 Other acute nonsuppurative otitis media, recurrent, right ear +H65195 Other acute nonsuppurative otitis media, recurrent, left ear +H65196 Other acute nonsuppurative otitis media, recurrent, bilateral +H65197 Other acute nonsuppurative otitis media recurrent, unspecified ear +H65199 Other acute nonsuppurative otitis media, unspecified ear +H6520 Chronic serous otitis media, unspecified ear +H6521 Chronic serous otitis media, right ear +H6522 Chronic serous otitis media, left ear +H6523 Chronic serous otitis media, bilateral +H6530 Chronic mucoid otitis media, unspecified ear +H6531 Chronic mucoid otitis media, right ear +H6532 Chronic mucoid otitis media, left ear +H6533 Chronic mucoid otitis media, bilateral +H65411 Chronic allergic otitis media, right ear +H65412 Chronic allergic otitis media, left ear +H65413 Chronic allergic otitis media, bilateral +H65419 Chronic allergic otitis media, unspecified ear +H65491 Other chronic nonsuppurative otitis media, right ear +H65492 Other chronic nonsuppurative otitis media, left ear +H65493 Other chronic nonsuppurative otitis media, bilateral +H65499 Other chronic nonsuppurative otitis media, unspecified ear +H6590 Unspecified nonsuppurative otitis media, unspecified ear +H6591 Unspecified nonsuppurative otitis media, right ear +H6592 Unspecified nonsuppurative otitis media, left ear +H6593 Unspecified nonsuppurative otitis media, bilateral +H66001 Acute suppurative otitis media without spontaneous rupture of ear drum, right ear +H66002 Acute suppurative otitis media without spontaneous rupture of ear drum, left ear +H66003 Acute suppurative otitis media without spontaneous rupture of ear drum, bilateral +H66004 Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, right ear +H66005 Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, left ear +H66006 Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, bilateral +H66007 Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, unspecified ear +H66009 Acute suppurative otitis media without spontaneous rupture of ear drum, unspecified ear +H66011 Acute suppurative otitis media with spontaneous rupture of ear drum, right ear +H66012 Acute suppurative otitis media with spontaneous rupture of ear drum, left ear +H66013 Acute suppurative otitis media with spontaneous rupture of ear drum, bilateral +H66014 Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, right ear +H66015 Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, left ear +H66016 Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, bilateral +H66017 Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, unspecified ear +H66019 Acute suppurative otitis media with spontaneous rupture of ear drum, unspecified ear +H6610 Chronic tubotympanic suppurative otitis media, unspecified +H6611 Chronic tubotympanic suppurative otitis media, right ear +H6612 Chronic tubotympanic suppurative otitis media, left ear +H6613 Chronic tubotympanic suppurative otitis media, bilateral +H6620 Chronic atticoantral suppurative otitis media, unspecified ear +H6621 Chronic atticoantral suppurative otitis media, right ear +H6622 Chronic atticoantral suppurative otitis media, left ear +H6623 Chronic atticoantral suppurative otitis media, bilateral +H663X1 Other chronic suppurative otitis media, right ear +H663X2 Other chronic suppurative otitis media, left ear +H663X3 Other chronic suppurative otitis media, bilateral +H663X9 Other chronic suppurative otitis media, unspecified ear +H6640 Suppurative otitis media, unspecified, unspecified ear +H6641 Suppurative otitis media, unspecified, right ear +H6642 Suppurative otitis media, unspecified, left ear +H6643 Suppurative otitis media, unspecified, bilateral +H6690 Otitis media, unspecified, unspecified ear +H6691 Otitis media, unspecified, right ear +H6692 Otitis media, unspecified, left ear +H6693 Otitis media, unspecified, bilateral +H671 Otitis media in diseases classified elsewhere, right ear +H672 Otitis media in diseases classified elsewhere, left ear +H673 Otitis media in diseases classified elsewhere, bilateral +H679 Otitis media in diseases classified elsewhere, unspecified ear +H68001 Unspecified Eustachian salpingitis, right ear +H68002 Unspecified Eustachian salpingitis, left ear +H68003 Unspecified Eustachian salpingitis, bilateral +H68009 Unspecified Eustachian salpingitis, unspecified ear +H68011 Acute Eustachian salpingitis, right ear +H68012 Acute Eustachian salpingitis, left ear +H68013 Acute Eustachian salpingitis, bilateral +H68019 Acute Eustachian salpingitis, unspecified ear +H68021 Chronic Eustachian salpingitis, right ear +H68022 Chronic Eustachian salpingitis, left ear +H68023 Chronic Eustachian salpingitis, bilateral +H68029 Chronic Eustachian salpingitis, unspecified ear +H68101 Unspecified obstruction of Eustachian tube, right ear +H68102 Unspecified obstruction of Eustachian tube, left ear +H68103 Unspecified obstruction of Eustachian tube, bilateral +H68109 Unspecified obstruction of Eustachian tube, unspecified ear +H68111 Osseous obstruction of Eustachian tube, right ear +H68112 Osseous obstruction of Eustachian tube, left ear +H68113 Osseous obstruction of Eustachian tube, bilateral +H68119 Osseous obstruction of Eustachian tube, unspecified ear +H68121 Intrinsic cartilagenous obstruction of Eustachian tube, right ear +H68122 Intrinsic cartilagenous obstruction of Eustachian tube, left ear +H68123 Intrinsic cartilagenous obstruction of Eustachian tube, bilateral +H68129 Intrinsic cartilagenous obstruction of Eustachian tube, unspecified ear +H68131 Extrinsic cartilagenous obstruction of Eustachian tube, right ear +H68132 Extrinsic cartilagenous obstruction of Eustachian tube, left ear +H68133 Extrinsic cartilagenous obstruction of Eustachian tube, bilateral +H68139 Extrinsic cartilagenous obstruction of Eustachian tube, unspecified ear +H6900 Patulous Eustachian tube, unspecified ear +H6901 Patulous Eustachian tube, right ear +H6902 Patulous Eustachian tube, left ear +H6903 Patulous Eustachian tube, bilateral +H6980 Other specified disorders of Eustachian tube, unspecified ear +H6981 Other specified disorders of Eustachian tube, right ear +H6982 Other specified disorders of Eustachian tube, left ear +H6983 Other specified disorders of Eustachian tube, bilateral +H6990 Unspecified Eustachian tube disorder, unspecified ear +H6991 Unspecified Eustachian tube disorder, right ear +H6992 Unspecified Eustachian tube disorder, left ear +H6993 Unspecified Eustachian tube disorder, bilateral +H70001 Acute mastoiditis without complications, right ear +H70002 Acute mastoiditis without complications, left ear +H70003 Acute mastoiditis without complications, bilateral +H70009 Acute mastoiditis without complications, unspecified ear +H70011 Subperiosteal abscess of mastoid, right ear +H70012 Subperiosteal abscess of mastoid, left ear +H70013 Subperiosteal abscess of mastoid, bilateral +H70019 Subperiosteal abscess of mastoid, unspecified ear +H70091 Acute mastoiditis with other complications, right ear +H70092 Acute mastoiditis with other complications, left ear +H70093 Acute mastoiditis with other complications, bilateral +H70099 Acute mastoiditis with other complications, unspecified ear +H7010 Chronic mastoiditis, unspecified ear +H7011 Chronic mastoiditis, right ear +H7012 Chronic mastoiditis, left ear +H7013 Chronic mastoiditis, bilateral +H70201 Unspecified petrositis, right ear +H70202 Unspecified petrositis, left ear +H70203 Unspecified petrositis, bilateral +H70209 Unspecified petrositis, unspecified ear +H70211 Acute petrositis, right ear +H70212 Acute petrositis, left ear +H70213 Acute petrositis, bilateral +H70219 Acute petrositis, unspecified ear +H70221 Chronic petrositis, right ear +H70222 Chronic petrositis, left ear +H70223 Chronic petrositis, bilateral +H70229 Chronic petrositis, unspecified ear +H70811 Postauricular fistula, right ear +H70812 Postauricular fistula, left ear +H70813 Postauricular fistula, bilateral +H70819 Postauricular fistula, unspecified ear +H70891 Other mastoiditis and related conditions, right ear +H70892 Other mastoiditis and related conditions, left ear +H70893 Other mastoiditis and related conditions, bilateral +H70899 Other mastoiditis and related conditions, unspecified ear +H7090 Unspecified mastoiditis, unspecified ear +H7091 Unspecified mastoiditis, right ear +H7092 Unspecified mastoiditis, left ear +H7093 Unspecified mastoiditis, bilateral +H7100 Cholesteatoma of attic, unspecified ear +H7101 Cholesteatoma of attic, right ear +H7102 Cholesteatoma of attic, left ear +H7103 Cholesteatoma of attic, bilateral +H7110 Cholesteatoma of tympanum, unspecified ear +H7111 Cholesteatoma of tympanum, right ear +H7112 Cholesteatoma of tympanum, left ear +H7113 Cholesteatoma of tympanum, bilateral +H7120 Cholesteatoma of mastoid, unspecified ear +H7121 Cholesteatoma of mastoid, right ear +H7122 Cholesteatoma of mastoid, left ear +H7123 Cholesteatoma of mastoid, bilateral +H7130 Diffuse cholesteatosis, unspecified ear +H7131 Diffuse cholesteatosis, right ear +H7132 Diffuse cholesteatosis, left ear +H7133 Diffuse cholesteatosis, bilateral +H7190 Unspecified cholesteatoma, unspecified ear +H7191 Unspecified cholesteatoma, right ear +H7192 Unspecified cholesteatoma, left ear +H7193 Unspecified cholesteatoma, bilateral +H7200 Central perforation of tympanic membrane, unspecified ear +H7201 Central perforation of tympanic membrane, right ear +H7202 Central perforation of tympanic membrane, left ear +H7203 Central perforation of tympanic membrane, bilateral +H7210 Attic perforation of tympanic membrane, unspecified ear +H7211 Attic perforation of tympanic membrane, right ear +H7212 Attic perforation of tympanic membrane, left ear +H7213 Attic perforation of tympanic membrane, bilateral +H722X1 Other marginal perforations of tympanic membrane, right ear +H722X2 Other marginal perforations of tympanic membrane, left ear +H722X3 Other marginal perforations of tympanic membrane, bilateral +H722X9 Other marginal perforations of tympanic membrane, unspecified ear +H72811 Multiple perforations of tympanic membrane, right ear +H72812 Multiple perforations of tympanic membrane, left ear +H72813 Multiple perforations of tympanic membrane, bilateral +H72819 Multiple perforations of tympanic membrane, unspecified ear +H72821 Total perforations of tympanic membrane, right ear +H72822 Total perforations of tympanic membrane, left ear +H72823 Total perforations of tympanic membrane, bilateral +H72829 Total perforations of tympanic membrane, unspecified ear +H7290 Unspecified perforation of tympanic membrane, unspecified ear +H7291 Unspecified perforation of tympanic membrane, right ear +H7292 Unspecified perforation of tympanic membrane, left ear +H7293 Unspecified perforation of tympanic membrane, bilateral +H73001 Acute myringitis, right ear +H73002 Acute myringitis, left ear +H73003 Acute myringitis, bilateral +H73009 Acute myringitis, unspecified ear +H73011 Bullous myringitis, right ear +H73012 Bullous myringitis, left ear +H73013 Bullous myringitis, bilateral +H73019 Bullous myringitis, unspecified ear +H73091 Other acute myringitis, right ear +H73092 Other acute myringitis, left ear +H73093 Other acute myringitis, bilateral +H73099 Other acute myringitis, unspecified ear +H7310 Chronic myringitis, unspecified ear +H7311 Chronic myringitis, right ear +H7312 Chronic myringitis, left ear +H7313 Chronic myringitis, bilateral +H7320 Unspecified myringitis, unspecified ear +H7321 Unspecified myringitis, right ear +H7322 Unspecified myringitis, left ear +H7323 Unspecified myringitis, bilateral +H73811 Atrophic flaccid tympanic membrane, right ear +H73812 Atrophic flaccid tympanic membrane, left ear +H73813 Atrophic flaccid tympanic membrane, bilateral +H73819 Atrophic flaccid tympanic membrane, unspecified ear +H73821 Atrophic nonflaccid tympanic membrane, right ear +H73822 Atrophic nonflaccid tympanic membrane, left ear +H73823 Atrophic nonflaccid tympanic membrane, bilateral +H73829 Atrophic nonflaccid tympanic membrane, unspecified ear +H73891 Other specified disorders of tympanic membrane, right ear +H73892 Other specified disorders of tympanic membrane, left ear +H73893 Other specified disorders of tympanic membrane, bilateral +H73899 Other specified disorders of tympanic membrane, unspecified ear +H7390 Unspecified disorder of tympanic membrane, unspecified ear +H7391 Unspecified disorder of tympanic membrane, right ear +H7392 Unspecified disorder of tympanic membrane, left ear +H7393 Unspecified disorder of tympanic membrane, bilateral +H7401 Tympanosclerosis, right ear +H7402 Tympanosclerosis, left ear +H7403 Tympanosclerosis, bilateral +H7409 Tympanosclerosis, unspecified ear +H7411 Adhesive right middle ear disease +H7412 Adhesive left middle ear disease +H7413 Adhesive middle ear disease, bilateral +H7419 Adhesive middle ear disease, unspecified ear +H7420 Discontinuity and dislocation of ear ossicles, unspecified ear +H7421 Discontinuity and dislocation of right ear ossicles +H7422 Discontinuity and dislocation of left ear ossicles +H7423 Discontinuity and dislocation of ear ossicles, bilateral +H74311 Ankylosis of ear ossicles, right ear +H74312 Ankylosis of ear ossicles, left ear +H74313 Ankylosis of ear ossicles, bilateral +H74319 Ankylosis of ear ossicles, unspecified ear +H74321 Partial loss of ear ossicles, right ear +H74322 Partial loss of ear ossicles, left ear +H74323 Partial loss of ear ossicles, bilateral +H74329 Partial loss of ear ossicles, unspecified ear +H74391 Other acquired abnormalities of right ear ossicles +H74392 Other acquired abnormalities of left ear ossicles +H74393 Other acquired abnormalities of ear ossicles, bilateral +H74399 Other acquired abnormalities of ear ossicles, unspecified ear +H7440 Polyp of middle ear, unspecified ear +H7441 Polyp of right middle ear +H7442 Polyp of left middle ear +H7443 Polyp of middle ear, bilateral +H748X1 Other specified disorders of right middle ear and mastoid +H748X2 Other specified disorders of left middle ear and mastoid +H748X3 Other specified disorders of middle ear and mastoid, bilateral +H748X9 Other specified disorders of middle ear and mastoid, unspecified ear +H7490 Unspecified disorder of middle ear and mastoid, unspecified ear +H7491 Unspecified disorder of right middle ear and mastoid +H7492 Unspecified disorder of left middle ear and mastoid +H7493 Unspecified disorder of middle ear and mastoid, bilateral +H7500 Mastoiditis in infectious and parasitic diseases classified elsewhere, unspecified ear +H7501 Mastoiditis in infectious and parasitic diseases classified elsewhere, right ear +H7502 Mastoiditis in infectious and parasitic diseases classified elsewhere, left ear +H7503 Mastoiditis in infectious and parasitic diseases classified elsewhere, bilateral +H7580 Other specified disorders of middle ear and mastoid in diseases classified elsewhere, unspecified ear +H7581 Other specified disorders of right middle ear and mastoid in diseases classified elsewhere +H7582 Other specified disorders of left middle ear and mastoid in diseases classified elsewhere +H7583 Other specified disorders of middle ear and mastoid in diseases classified elsewhere, bilateral +H8000 Otosclerosis involving oval window, nonobliterative, unspecified ear +H8001 Otosclerosis involving oval window, nonobliterative, right ear +H8002 Otosclerosis involving oval window, nonobliterative, left ear +H8003 Otosclerosis involving oval window, nonobliterative, bilateral +H8010 Otosclerosis involving oval window, obliterative, unspecified ear +H8011 Otosclerosis involving oval window, obliterative, right ear +H8012 Otosclerosis involving oval window, obliterative, left ear +H8013 Otosclerosis involving oval window, obliterative, bilateral +H8020 Cochlear otosclerosis, unspecified ear +H8021 Cochlear otosclerosis, right ear +H8022 Cochlear otosclerosis, left ear +H8023 Cochlear otosclerosis, bilateral +H8080 Other otosclerosis, unspecified ear +H8081 Other otosclerosis, right ear +H8082 Other otosclerosis, left ear +H8083 Other otosclerosis, bilateral +H8090 Unspecified otosclerosis, unspecified ear +H8091 Unspecified otosclerosis, right ear +H8092 Unspecified otosclerosis, left ear +H8093 Unspecified otosclerosis, bilateral +H8101 Meniere's disease, right ear +H8102 Meniere's disease, left ear +H8103 Meniere's disease, bilateral +H8109 Meniere's disease, unspecified ear +H8110 Benign paroxysmal vertigo, unspecified ear +H8111 Benign paroxysmal vertigo, right ear +H8112 Benign paroxysmal vertigo, left ear +H8113 Benign paroxysmal vertigo, bilateral +H8120 Vestibular neuronitis, unspecified ear +H8121 Vestibular neuronitis, right ear +H8122 Vestibular neuronitis, left ear +H8123 Vestibular neuronitis, bilateral +H81311 Aural vertigo, right ear +H81312 Aural vertigo, left ear +H81313 Aural vertigo, bilateral +H81319 Aural vertigo, unspecified ear +H81391 Other peripheral vertigo, right ear +H81392 Other peripheral vertigo, left ear +H81393 Other peripheral vertigo, bilateral +H81399 Other peripheral vertigo, unspecified ear +H818X1 Other disorders of vestibular function, right ear +H818X2 Other disorders of vestibular function, left ear +H818X3 Other disorders of vestibular function, bilateral +H818X9 Other disorders of vestibular function, unspecified ear +H8190 Unspecified disorder of vestibular function, unspecified ear +H8191 Unspecified disorder of vestibular function, right ear +H8192 Unspecified disorder of vestibular function, left ear +H8193 Unspecified disorder of vestibular function, bilateral +H821 Vertiginous syndromes in diseases classified elsewhere, right ear +H822 Vertiginous syndromes in diseases classified elsewhere, left ear +H823 Vertiginous syndromes in diseases classified elsewhere, bilateral +H829 Vertiginous syndromes in diseases classified elsewhere, unspecified ear +H8301 Labyrinthitis, right ear +H8302 Labyrinthitis, left ear +H8303 Labyrinthitis, bilateral +H8309 Labyrinthitis, unspecified ear +H8311 Labyrinthine fistula, right ear +H8312 Labyrinthine fistula, left ear +H8313 Labyrinthine fistula, bilateral +H8319 Labyrinthine fistula, unspecified ear +H832X1 Labyrinthine dysfunction, right ear +H832X2 Labyrinthine dysfunction, left ear +H832X3 Labyrinthine dysfunction, bilateral +H832X9 Labyrinthine dysfunction, unspecified ear +H833X1 Noise effects on right inner ear +H833X2 Noise effects on left inner ear +H833X3 Noise effects on inner ear, bilateral +H833X9 Noise effects on inner ear, unspecified ear +H838X1 Other specified diseases of right inner ear +H838X2 Other specified diseases of left inner ear +H838X3 Other specified diseases of inner ear, bilateral +H838X9 Other specified diseases of inner ear, unspecified ear +H8390 Unspecified disease of inner ear, unspecified ear +H8391 Unspecified disease of right inner ear +H8392 Unspecified disease of left inner ear +H8393 Unspecified disease of inner ear, bilateral +H900 Conductive hearing loss, bilateral +H9011 Conductive hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side +H9012 Conductive hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side +H902 Conductive hearing loss, unspecified +H903 Sensorineural hearing loss, bilateral +H9041 Sensorineural hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side +H9042 Sensorineural hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side +H905 Unspecified sensorineural hearing loss +H906 Mixed conductive and sensorineural hearing loss, bilateral +H9071 Mixed conductive and sensorineural hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side +H9072 Mixed conductive and sensorineural hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side +H908 Mixed conductive and sensorineural hearing loss, unspecified +H90A11 Conductive hearing loss, unilateral, right ear with restricted hearing on the contralateral side +H90A12 Conductive hearing loss, unilateral, left ear with restricted hearing on the contralateral side +H90A21 Sensorineural hearing loss, unilateral, right ear, with restricted hearing on the contralateral side +H90A22 Sensorineural hearing loss, unilateral, left ear, with restricted hearing on the contralateral side +H90A31 Mixed conductive and sensorineural hearing loss, unilateral, right ear with restricted hearing on the contralateral side +H90A32 Mixed conductive and sensorineural hearing loss, unilateral, left ear with restricted hearing on the contralateral side +H9101 Ototoxic hearing loss, right ear +H9102 Ototoxic hearing loss, left ear +H9103 Ototoxic hearing loss, bilateral +H9109 Ototoxic hearing loss, unspecified ear +H9110 Presbycusis, unspecified ear +H9111 Presbycusis, right ear +H9112 Presbycusis, left ear +H9113 Presbycusis, bilateral +H9120 Sudden idiopathic hearing loss, unspecified ear +H9121 Sudden idiopathic hearing loss, right ear +H9122 Sudden idiopathic hearing loss, left ear +H9123 Sudden idiopathic hearing loss, bilateral +H913 Deaf nonspeaking, not elsewhere classified +H918X1 Other specified hearing loss, right ear +H918X2 Other specified hearing loss, left ear +H918X3 Other specified hearing loss, bilateral +H918X9 Other specified hearing loss, unspecified ear +H9190 Unspecified hearing loss, unspecified ear +H9191 Unspecified hearing loss, right ear +H9192 Unspecified hearing loss, left ear +H9193 Unspecified hearing loss, bilateral +H9201 Otalgia, right ear +H9202 Otalgia, left ear +H9203 Otalgia, bilateral +H9209 Otalgia, unspecified ear +H9210 Otorrhea, unspecified ear +H9211 Otorrhea, right ear +H9212 Otorrhea, left ear +H9213 Otorrhea, bilateral +H9220 Otorrhagia, unspecified ear +H9221 Otorrhagia, right ear +H9222 Otorrhagia, left ear +H9223 Otorrhagia, bilateral +H93011 Transient ischemic deafness, right ear +H93012 Transient ischemic deafness, left ear +H93013 Transient ischemic deafness, bilateral +H93019 Transient ischemic deafness, unspecified ear +H93091 Unspecified degenerative and vascular disorders of right ear +H93092 Unspecified degenerative and vascular disorders of left ear +H93093 Unspecified degenerative and vascular disorders of ear, bilateral +H93099 Unspecified degenerative and vascular disorders of unspecified ear +H9311 Tinnitus, right ear +H9312 Tinnitus, left ear +H9313 Tinnitus, bilateral +H9319 Tinnitus, unspecified ear +H93211 Auditory recruitment, right ear +H93212 Auditory recruitment, left ear +H93213 Auditory recruitment, bilateral +H93219 Auditory recruitment, unspecified ear +H93221 Diplacusis, right ear +H93222 Diplacusis, left ear +H93223 Diplacusis, bilateral +H93229 Diplacusis, unspecified ear +H93231 Hyperacusis, right ear +H93232 Hyperacusis, left ear +H93233 Hyperacusis, bilateral +H93239 Hyperacusis, unspecified ear +H93241 Temporary auditory threshold shift, right ear +H93242 Temporary auditory threshold shift, left ear +H93243 Temporary auditory threshold shift, bilateral +H93249 Temporary auditory threshold shift, unspecified ear +H9325 Central auditory processing disorder +H93291 Other abnormal auditory perceptions, right ear +H93292 Other abnormal auditory perceptions, left ear +H93293 Other abnormal auditory perceptions, bilateral +H93299 Other abnormal auditory perceptions, unspecified ear +H933X1 Disorders of right acoustic nerve +H933X2 Disorders of left acoustic nerve +H933X3 Disorders of bilateral acoustic nerves +H933X9 Disorders of unspecified acoustic nerve +H938X1 Other specified disorders of right ear +H938X2 Other specified disorders of left ear +H938X3 Other specified disorders of ear, bilateral +H938X9 Other specified disorders of ear, unspecified ear +H9390 Unspecified disorder of ear, unspecified ear +H9391 Unspecified disorder of right ear +H9392 Unspecified disorder of left ear +H9393 Unspecified disorder of ear, bilateral +H93A1 Pulsatile tinnitus, right ear +H93A2 Pulsatile tinnitus, left ear +H93A3 Pulsatile tinnitus, bilateral +H93A9 Pulsatile tinnitus, unspecified ear +H9400 Acoustic neuritis in infectious and parasitic diseases classified elsewhere, unspecified ear +H9401 Acoustic neuritis in infectious and parasitic diseases classified elsewhere, right ear +H9402 Acoustic neuritis in infectious and parasitic diseases classified elsewhere, left ear +H9403 Acoustic neuritis in infectious and parasitic diseases classified elsewhere, bilateral +H9480 Other specified disorders of ear in diseases classified elsewhere, unspecified ear +H9481 Other specified disorders of right ear in diseases classified elsewhere +H9482 Other specified disorders of left ear in diseases classified elsewhere +H9483 Other specified disorders of ear in diseases classified elsewhere, bilateral +H9500 Recurrent cholesteatoma of postmastoidectomy cavity, unspecified ear +H9501 Recurrent cholesteatoma of postmastoidectomy cavity, right ear +H9502 Recurrent cholesteatoma of postmastoidectomy cavity, left ear +H9503 Recurrent cholesteatoma of postmastoidectomy cavity, bilateral ears +H95111 Chronic inflammation of postmastoidectomy cavity, right ear +H95112 Chronic inflammation of postmastoidectomy cavity, left ear +H95113 Chronic inflammation of postmastoidectomy cavity, bilateral ears +H95119 Chronic inflammation of postmastoidectomy cavity, unspecified ear +H95121 Granulation of postmastoidectomy cavity, right ear +H95122 Granulation of postmastoidectomy cavity, left ear +H95123 Granulation of postmastoidectomy cavity, bilateral ears +H95129 Granulation of postmastoidectomy cavity, unspecified ear +H95131 Mucosal cyst of postmastoidectomy cavity, right ear +H95132 Mucosal cyst of postmastoidectomy cavity, left ear +H95133 Mucosal cyst of postmastoidectomy cavity, bilateral ears +H95139 Mucosal cyst of postmastoidectomy cavity, unspecified ear +H95191 Other disorders following mastoidectomy, right ear +H95192 Other disorders following mastoidectomy, left ear +H95193 Other disorders following mastoidectomy, bilateral ears +H95199 Other disorders following mastoidectomy, unspecified ear +H9521 Intraoperative hemorrhage and hematoma of ear and mastoid process complicating a procedure on the ear and mastoid process +H9522 Intraoperative hemorrhage and hematoma of ear and mastoid process complicating other procedure +H9531 Accidental puncture and laceration of the ear and mastoid process during a procedure on the ear and mastoid process +H9532 Accidental puncture and laceration of the ear and mastoid process during other procedure +H9541 Postprocedural hemorrhage of ear and mastoid process following a procedure on the ear and mastoid process +H9542 Postprocedural hemorrhage of ear and mastoid process following other procedure +H9551 Postprocedural hematoma of ear and mastoid process following a procedure on the ear and mastoid process +H9552 Postprocedural hematoma of ear and mastoid process following other procedure +H9553 Postprocedural seroma of ear and mastoid process following a procedure on the ear and mastoid process +H9554 Postprocedural seroma of ear and mastoid process following other procedure +H95811 Postprocedural stenosis of right external ear canal +H95812 Postprocedural stenosis of left external ear canal +H95813 Postprocedural stenosis of external ear canal, bilateral +H95819 Postprocedural stenosis of unspecified external ear canal +H9588 Other intraoperative complications and disorders of the ear and mastoid process, not elsewhere classified +H9589 Other postprocedural complications and disorders of the ear and mastoid process, not elsewhere classified +I00 Rheumatic fever without heart involvement +I010 Acute rheumatic pericarditis +I011 Acute rheumatic endocarditis +I012 Acute rheumatic myocarditis +I018 Other acute rheumatic heart disease +I019 Acute rheumatic heart disease, unspecified +I020 Rheumatic chorea with heart involvement +I029 Rheumatic chorea without heart involvement +I050 Rheumatic mitral stenosis +I051 Rheumatic mitral insufficiency +I052 Rheumatic mitral stenosis with insufficiency +I058 Other rheumatic mitral valve diseases +I059 Rheumatic mitral valve disease, unspecified +I060 Rheumatic aortic stenosis +I061 Rheumatic aortic insufficiency +I062 Rheumatic aortic stenosis with insufficiency +I068 Other rheumatic aortic valve diseases +I069 Rheumatic aortic valve disease, unspecified +I070 Rheumatic tricuspid stenosis +I071 Rheumatic tricuspid insufficiency +I072 Rheumatic tricuspid stenosis and insufficiency +I078 Other rheumatic tricuspid valve diseases +I079 Rheumatic tricuspid valve disease, unspecified +I080 Rheumatic disorders of both mitral and aortic valves +I081 Rheumatic disorders of both mitral and tricuspid valves +I082 Rheumatic disorders of both aortic and tricuspid valves +I083 Combined rheumatic disorders of mitral, aortic and tricuspid valves +I088 Other rheumatic multiple valve diseases +I089 Rheumatic multiple valve disease, unspecified +I090 Rheumatic myocarditis +I091 Rheumatic diseases of endocardium, valve unspecified +I092 Chronic rheumatic pericarditis +I0981 Rheumatic heart failure +I0989 Other specified rheumatic heart diseases +I099 Rheumatic heart disease, unspecified +I10 Essential (primary) hypertension Y +I110 Hypertensive heart disease with heart failure +I119 Hypertensive heart disease without heart failure +I120 Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease Y +I129 Hypertensive chronic kidney disease with stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease Y +I130 Hypertensive heart and chronic kidney disease with heart failure and stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease +I1310 Hypertensive heart and chronic kidney disease without heart failure, with stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease +I1311 Hypertensive heart and chronic kidney disease without heart failure, with stage 5 chronic kidney disease, or end stage renal disease +I132 Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease, or end stage renal disease +I150 Renovascular hypertension +I151 Hypertension secondary to other renal disorders +I152 Hypertension secondary to endocrine disorders +I158 Other secondary hypertension +I159 Secondary hypertension, unspecified +I160 Hypertensive urgency +I161 Hypertensive emergency +I169 Hypertensive crisis, unspecified +I200 Unstable angina +I201 Angina pectoris with documented spasm +I208 Other forms of angina pectoris +I209 Angina pectoris, unspecified +I2101 ST elevation (STEMI) myocardial infarction involving left main coronary artery +I2102 ST elevation (STEMI) myocardial infarction involving left anterior descending coronary artery +I2109 ST elevation (STEMI) myocardial infarction involving other coronary artery of anterior wall +I2111 ST elevation (STEMI) myocardial infarction involving right coronary artery +I2119 ST elevation (STEMI) myocardial infarction involving other coronary artery of inferior wall +I2121 ST elevation (STEMI) myocardial infarction involving left circumflex coronary artery +I2129 ST elevation (STEMI) myocardial infarction involving other sites +I213 ST elevation (STEMI) myocardial infarction of unspecified site +I214 Non-ST elevation (NSTEMI) myocardial infarction +I219 Acute myocardial infarction, unspecified +I21A1 Acute myocardial infarction type 2 +I21A9 Other myocardial infarction type +I220 Subsequent ST elevation (STEMI) myocardial infarction of anterior wall +I221 Subsequent ST elevation (STEMI) myocardial infarction of inferior wall +I222 Subsequent non-ST elevation (NSTEMI) myocardial infarction +I228 Subsequent ST elevation (STEMI) myocardial infarction of other sites +I229 Subsequent ST elevation (STEMI) myocardial infarction of unspecified site +I230 Hemopericardium as current complication following acute myocardial infarction +I231 Atrial septal defect as current complication following acute myocardial infarction +I232 Ventricular septal defect as current complication following acute myocardial infarction +I233 Rupture of cardiac wall without hemopericardium as current complication following acute myocardial infarction +I234 Rupture of chordae tendineae as current complication following acute myocardial infarction +I235 Rupture of papillary muscle as current complication following acute myocardial infarction +I236 Thrombosis of atrium, auricular appendage, and ventricle as current complications following acute myocardial infarction +I237 Postinfarction angina +I238 Other current complications following acute myocardial infarction +I240 Acute coronary thrombosis not resulting in myocardial infarction +I241 Dressler's syndrome +I248 Other forms of acute ischemic heart disease +I249 Acute ischemic heart disease, unspecified +I2510 Atherosclerotic heart disease of native coronary artery without angina pectoris Y +I25110 Atherosclerotic heart disease of native coronary artery with unstable angina pectoris Y +I25111 Atherosclerotic heart disease of native coronary artery with angina pectoris with documented spasm Y +I25118 Atherosclerotic heart disease of native coronary artery with other forms of angina pectoris Y +I25119 Atherosclerotic heart disease of native coronary artery with unspecified angina pectoris Y +I252 Old myocardial infarction Y +I253 Aneurysm of heart Y +I2541 Coronary artery aneurysm Y +I2542 Coronary artery dissection Y +I255 Ischemic cardiomyopathy Y +I256 Silent myocardial ischemia Y +I25700 Atherosclerosis of coronary artery bypass graft(s), unspecified, with unstable angina pectoris Y +I25701 Atherosclerosis of coronary artery bypass graft(s), unspecified, with angina pectoris with documented spasm Y +I25708 Atherosclerosis of coronary artery bypass graft(s), unspecified, with other forms of angina pectoris Y +I25709 Atherosclerosis of coronary artery bypass graft(s), unspecified, with unspecified angina pectoris Y +I25710 Atherosclerosis of autologous vein coronary artery bypass graft(s) with unstable angina pectoris Y +I25711 Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris with documented spasm Y +I25718 Atherosclerosis of autologous vein coronary artery bypass graft(s) with other forms of angina pectoris Y +I25719 Atherosclerosis of autologous vein coronary artery bypass graft(s) with unspecified angina pectoris Y +I25720 Atherosclerosis of autologous artery coronary artery bypass graft(s) with unstable angina pectoris Y +I25721 Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris with documented spasm Y +I25728 Atherosclerosis of autologous artery coronary artery bypass graft(s) with other forms of angina pectoris Y +I25729 Atherosclerosis of autologous artery coronary artery bypass graft(s) with unspecified angina pectoris Y +I25730 Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unstable angina pectoris Y +I25731 Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris with documented spasm Y +I25738 Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with other forms of angina pectoris Y +I25739 Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unspecified angina pectoris Y +I25750 Atherosclerosis of native coronary artery of transplanted heart with unstable angina Y +I25751 Atherosclerosis of native coronary artery of transplanted heart with angina pectoris with documented spasm Y +I25758 Atherosclerosis of native coronary artery of transplanted heart with other forms of angina pectoris Y +I25759 Atherosclerosis of native coronary artery of transplanted heart with unspecified angina pectoris Y +I25760 Atherosclerosis of bypass graft of coronary artery of transplanted heart with unstable angina Y +I25761 Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris with documented spasm Y +I25768 Atherosclerosis of bypass graft of coronary artery of transplanted heart with other forms of angina pectoris Y +I25769 Atherosclerosis of bypass graft of coronary artery of transplanted heart with unspecified angina pectoris Y +I25790 Atherosclerosis of other coronary artery bypass graft(s) with unstable angina pectoris Y +I25791 Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris with documented spasm Y +I25798 Atherosclerosis of other coronary artery bypass graft(s) with other forms of angina pectoris Y +I25799 Atherosclerosis of other coronary artery bypass graft(s) with unspecified angina pectoris Y +I25810 Atherosclerosis of coronary artery bypass graft(s) without angina pectoris Y +I25811 Atherosclerosis of native coronary artery of transplanted heart without angina pectoris Y +I25812 Atherosclerosis of bypass graft of coronary artery of transplanted heart without angina pectoris Y +I2582 Chronic total occlusion of coronary artery Y +I2583 Coronary atherosclerosis due to lipid rich plaque Y +I2584 Coronary atherosclerosis due to calcified coronary lesion Y +I2589 Other forms of chronic ischemic heart disease Y +I259 Chronic ischemic heart disease, unspecified Y +I2601 Septic pulmonary embolism with acute cor pulmonale +I2602 Saddle embolus of pulmonary artery with acute cor pulmonale +I2609 Other pulmonary embolism with acute cor pulmonale +I2690 Septic pulmonary embolism without acute cor pulmonale +I2692 Saddle embolus of pulmonary artery without acute cor pulmonale +I2693 Single subsegmental pulmonary embolism without acute cor pulmonale +I2694 Multiple subsegmental pulmonary emboli without acute cor pulmonale +I2699 Other pulmonary embolism without acute cor pulmonale +I270 Primary pulmonary hypertension +I271 Kyphoscoliotic heart disease +I272 Other secondary pulmonary hypertension +I2720 Pulmonary hypertension, unspecified +I2721 Secondary pulmonary arterial hypertension +I2722 Pulmonary hypertension due to left heart disease +I2723 Pulmonary hypertension due to lung diseases and hypoxia +I2724 Chronic thromboembolic pulmonary hypertension +I2729 Other secondary pulmonary hypertension +I2781 Cor pulmonale (chronic) +I2782 Chronic pulmonary embolism +I2783 Eisenmenger's syndrome +I2789 Other specified pulmonary heart diseases +I279 Pulmonary heart disease, unspecified +I280 Arteriovenous fistula of pulmonary vessels +I281 Aneurysm of pulmonary artery +I288 Other diseases of pulmonary vessels +I289 Disease of pulmonary vessels, unspecified +I300 Acute nonspecific idiopathic pericarditis +I301 Infective pericarditis +I308 Other forms of acute pericarditis +I309 Acute pericarditis, unspecified +I310 Chronic adhesive pericarditis +I311 Chronic constrictive pericarditis +I312 Hemopericardium, not elsewhere classified +I313 Pericardial effusion (noninflammatory) +I314 Cardiac tamponade +I318 Other specified diseases of pericardium +I319 Disease of pericardium, unspecified +I32 Pericarditis in diseases classified elsewhere +I330 Acute and subacute infective endocarditis +I339 Acute and subacute endocarditis, unspecified +I340 Nonrheumatic mitral (valve) insufficiency +I341 Nonrheumatic mitral (valve) prolapse +I342 Nonrheumatic mitral (valve) stenosis +I348 Other nonrheumatic mitral valve disorders +I349 Nonrheumatic mitral valve disorder, unspecified +I350 Nonrheumatic aortic (valve) stenosis +I351 Nonrheumatic aortic (valve) insufficiency +I352 Nonrheumatic aortic (valve) stenosis with insufficiency +I358 Other nonrheumatic aortic valve disorders +I359 Nonrheumatic aortic valve disorder, unspecified +I360 Nonrheumatic tricuspid (valve) stenosis +I361 Nonrheumatic tricuspid (valve) insufficiency +I362 Nonrheumatic tricuspid (valve) stenosis with insufficiency +I368 Other nonrheumatic tricuspid valve disorders +I369 Nonrheumatic tricuspid valve disorder, unspecified +I370 Nonrheumatic pulmonary valve stenosis +I371 Nonrheumatic pulmonary valve insufficiency +I372 Nonrheumatic pulmonary valve stenosis with insufficiency +I378 Other nonrheumatic pulmonary valve disorders +I379 Nonrheumatic pulmonary valve disorder, unspecified +I38 Endocarditis, valve unspecified +I39 Endocarditis and heart valve disorders in diseases classified elsewhere +I400 Infective myocarditis +I401 Isolated myocarditis +I408 Other acute myocarditis +I409 Acute myocarditis, unspecified +I41 Myocarditis in diseases classified elsewhere +I420 Dilated cardiomyopathy +I421 Obstructive hypertrophic cardiomyopathy +I422 Other hypertrophic cardiomyopathy +I423 Endomyocardial (eosinophilic) disease +I424 Endocardial fibroelastosis +I425 Other restrictive cardiomyopathy +I426 Alcoholic cardiomyopathy +I427 Cardiomyopathy due to drug and external agent +I428 Other cardiomyopathies +I429 Cardiomyopathy, unspecified +I43 Cardiomyopathy in diseases classified elsewhere +I440 Atrioventricular block, first degree +I441 Atrioventricular block, second degree +I442 Atrioventricular block, complete +I4430 Unspecified atrioventricular block +I4439 Other atrioventricular block +I444 Left anterior fascicular block +I445 Left posterior fascicular block +I4460 Unspecified fascicular block +I4469 Other fascicular block +I447 Left bundle-branch block, unspecified +I450 Right fascicular block +I4510 Unspecified right bundle-branch block +I4519 Other right bundle-branch block +I452 Bifascicular block +I453 Trifascicular block +I454 Nonspecific intraventricular block +I455 Other specified heart block +I456 Pre-excitation syndrome +I4581 Long QT syndrome +I4589 Other specified conduction disorders +I459 Conduction disorder, unspecified +I462 Cardiac arrest due to underlying cardiac condition +I468 Cardiac arrest due to other underlying condition +I469 Cardiac arrest, cause unspecified +I470 Re-entry ventricular arrhythmia +I471 Supraventricular tachycardia +I472 Ventricular tachycardia +I479 Paroxysmal tachycardia, unspecified +I480 Paroxysmal atrial fibrillation Y +I481 Persistent atrial fibrillation Y +I4811 Longstanding persistent atrial fibrillation Y +I4819 Other persistent atrial fibrillation Y +I482 Chronic atrial fibrillation Y +I4820 Chronic atrial fibrillation, unspecified Y +I4821 Permanent atrial fibrillation Y +I483 Typical atrial flutter Y +I484 Atypical atrial flutter Y +I4891 Unspecified atrial fibrillation Y +I4892 Unspecified atrial flutter Y +I4901 Ventricular fibrillation +I4902 Ventricular flutter +I491 Atrial premature depolarization +I492 Junctional premature depolarization +I493 Ventricular premature depolarization +I4940 Unspecified premature depolarization +I4949 Other premature depolarization +I495 Sick sinus syndrome +I498 Other specified cardiac arrhythmias +I499 Cardiac arrhythmia, unspecified +I501 Left ventricular failure, unspecified +I5020 Unspecified systolic (congestive) heart failure +I5021 Acute systolic (congestive) heart failure +I5022 Chronic systolic (congestive) heart failure +I5023 Acute on chronic systolic (congestive) heart failure +I5030 Unspecified diastolic (congestive) heart failure +I5031 Acute diastolic (congestive) heart failure +I5032 Chronic diastolic (congestive) heart failure +I5033 Acute on chronic diastolic (congestive) heart failure +I5040 Unspecified combined systolic (congestive) and diastolic (congestive) heart failure +I5041 Acute combined systolic (congestive) and diastolic (congestive) heart failure +I5042 Chronic combined systolic (congestive) and diastolic (congestive) heart failure +I5043 Acute on chronic combined systolic (congestive) and diastolic (congestive) heart failure +I50810 Right heart failure, unspecified +I50811 Acute right heart failure +I50812 Chronic right heart failure +I50813 Acute on chronic right heart failure +I50814 Right heart failure due to left heart failure +I5082 Biventricular heart failure +I5083 High output heart failure +I5084 End stage heart failure +I5089 Other heart failure +I509 Heart failure, unspecified +I510 Cardiac septal defect, acquired +I511 Rupture of chordae tendineae, not elsewhere classified +I512 Rupture of papillary muscle, not elsewhere classified +I513 Intracardiac thrombosis, not elsewhere classified +I514 Myocarditis, unspecified +I515 Myocardial degeneration +I517 Cardiomegaly +I5181 Takotsubo syndrome +I5189 Other ill-defined heart diseases +I519 Heart disease, unspecified +I52 Other heart disorders in diseases classified elsewhere +I6000 Nontraumatic subarachnoid hemorrhage from unspecified carotid siphon and bifurcation +I6001 Nontraumatic subarachnoid hemorrhage from right carotid siphon and bifurcation +I6002 Nontraumatic subarachnoid hemorrhage from left carotid siphon and bifurcation +I6010 Nontraumatic subarachnoid hemorrhage from unspecified middle cerebral artery +I6011 Nontraumatic subarachnoid hemorrhage from right middle cerebral artery +I6012 Nontraumatic subarachnoid hemorrhage from left middle cerebral artery +I602 Nontraumatic subarachnoid hemorrhage from anterior communicating artery +I6020 Nontraumatic subarachnoid hemorrhage from unspecified anterior communicating artery +I6021 Nontraumatic subarachnoid hemorrhage from right anterior communicating artery +I6022 Nontraumatic subarachnoid hemorrhage from left anterior communicating artery +I6030 Nontraumatic subarachnoid hemorrhage from unspecified posterior communicating artery +I6031 Nontraumatic subarachnoid hemorrhage from right posterior communicating artery +I6032 Nontraumatic subarachnoid hemorrhage from left posterior communicating artery +I604 Nontraumatic subarachnoid hemorrhage from basilar artery +I6050 Nontraumatic subarachnoid hemorrhage from unspecified vertebral artery +I6051 Nontraumatic subarachnoid hemorrhage from right vertebral artery +I6052 Nontraumatic subarachnoid hemorrhage from left vertebral artery +I606 Nontraumatic subarachnoid hemorrhage from other intracranial arteries +I607 Nontraumatic subarachnoid hemorrhage from unspecified intracranial artery +I608 Other nontraumatic subarachnoid hemorrhage +I609 Nontraumatic subarachnoid hemorrhage, unspecified +I610 Nontraumatic intracerebral hemorrhage in hemisphere, subcortical +I611 Nontraumatic intracerebral hemorrhage in hemisphere, cortical +I612 Nontraumatic intracerebral hemorrhage in hemisphere, unspecified +I613 Nontraumatic intracerebral hemorrhage in brain stem +I614 Nontraumatic intracerebral hemorrhage in cerebellum +I615 Nontraumatic intracerebral hemorrhage, intraventricular +I616 Nontraumatic intracerebral hemorrhage, multiple localized +I618 Other nontraumatic intracerebral hemorrhage +I619 Nontraumatic intracerebral hemorrhage, unspecified +I6200 Nontraumatic subdural hemorrhage, unspecified +I6201 Nontraumatic acute subdural hemorrhage +I6202 Nontraumatic subacute subdural hemorrhage +I6203 Nontraumatic chronic subdural hemorrhage +I621 Nontraumatic extradural hemorrhage +I629 Nontraumatic intracranial hemorrhage, unspecified +I6300 Cerebral infarction due to thrombosis of unspecified precerebral artery +I63011 Cerebral infarction due to thrombosis of right vertebral artery +I63012 Cerebral infarction due to thrombosis of left vertebral artery +I63013 Cerebral infarction due to thrombosis of bilateral vertebral arteries +I63019 Cerebral infarction due to thrombosis of unspecified vertebral artery +I6302 Cerebral infarction due to thrombosis of basilar artery +I63031 Cerebral infarction due to thrombosis of right carotid artery +I63032 Cerebral infarction due to thrombosis of left carotid artery +I63033 Cerebral infarction due to thrombosis of bilateral carotid arteries +I63039 Cerebral infarction due to thrombosis of unspecified carotid artery +I6309 Cerebral infarction due to thrombosis of other precerebral artery +I6310 Cerebral infarction due to embolism of unspecified precerebral artery +I63111 Cerebral infarction due to embolism of right vertebral artery +I63112 Cerebral infarction due to embolism of left vertebral artery +I63113 Cerebral infarction due to embolism of bilateral vertebral arteries +I63119 Cerebral infarction due to embolism of unspecified vertebral artery +I6312 Cerebral infarction due to embolism of basilar artery +I63131 Cerebral infarction due to embolism of right carotid artery +I63132 Cerebral infarction due to embolism of left carotid artery +I63133 Cerebral infarction due to embolism of bilateral carotid arteries +I63139 Cerebral infarction due to embolism of unspecified carotid artery +I6319 Cerebral infarction due to embolism of other precerebral artery +I6320 Cerebral infarction due to unspecified occlusion or stenosis of unspecified precerebral arteries +I63211 Cerebral infarction due to unspecified occlusion or stenosis of right vertebral artery +I63212 Cerebral infarction due to unspecified occlusion or stenosis of left vertebral artery +I63213 Cerebral infarction due to unspecified occlusion or stenosis of bilateral vertebral arteries +I63219 Cerebral infarction due to unspecified occlusion or stenosis of unspecified vertebral artery +I6322 Cerebral infarction due to unspecified occlusion or stenosis of basilar artery +I63231 Cerebral infarction due to unspecified occlusion or stenosis of right carotid arteries +I63232 Cerebral infarction due to unspecified occlusion or stenosis of left carotid arteries +I63233 Cerebral infarction due to unspecified occlusion or stenosis of bilateral carotid arteries +I63239 Cerebral infarction due to unspecified occlusion or stenosis of unspecified carotid artery +I6329 Cerebral infarction due to unspecified occlusion or stenosis of other precerebral arteries +I6330 Cerebral infarction due to thrombosis of unspecified cerebral artery +I63311 Cerebral infarction due to thrombosis of right middle cerebral artery +I63312 Cerebral infarction due to thrombosis of left middle cerebral artery +I63313 Cerebral infarction due to thrombosis of bilateral middle cerebral arteries +I63319 Cerebral infarction due to thrombosis of unspecified middle cerebral artery +I63321 Cerebral infarction due to thrombosis of right anterior cerebral artery +I63322 Cerebral infarction due to thrombosis of left anterior cerebral artery +I63323 Cerebral infarction due to thrombosis of bilateral anterior cerebral arteries +I63329 Cerebral infarction due to thrombosis of unspecified anterior cerebral artery +I63331 Cerebral infarction due to thrombosis of right posterior cerebral artery +I63332 Cerebral infarction due to thrombosis of left posterior cerebral artery +I63333 Cerebral infarction due to thrombosis of bilateral posterior cerebral arteries +I63339 Cerebral infarction due to thrombosis of unspecified posterior cerebral artery +I63341 Cerebral infarction due to thrombosis of right cerebellar artery +I63342 Cerebral infarction due to thrombosis of left cerebellar artery +I63343 Cerebral infarction due to thrombosis of bilateral cerebellar arteries +I63349 Cerebral infarction due to thrombosis of unspecified cerebellar artery +I6339 Cerebral infarction due to thrombosis of other cerebral artery +I6340 Cerebral infarction due to embolism of unspecified cerebral artery +I63411 Cerebral infarction due to embolism of right middle cerebral artery +I63412 Cerebral infarction due to embolism of left middle cerebral artery +I63413 Cerebral infarction due to embolism of bilateral middle cerebral arteries +I63419 Cerebral infarction due to embolism of unspecified middle cerebral artery +I63421 Cerebral infarction due to embolism of right anterior cerebral artery +I63422 Cerebral infarction due to embolism of left anterior cerebral artery +I63423 Cerebral infarction due to embolism of bilateral anterior cerebral arteries +I63429 Cerebral infarction due to embolism of unspecified anterior cerebral artery +I63431 Cerebral infarction due to embolism of right posterior cerebral artery +I63432 Cerebral infarction due to embolism of left posterior cerebral artery +I63433 Cerebral infarction due to embolism of bilateral posterior cerebral arteries +I63439 Cerebral infarction due to embolism of unspecified posterior cerebral artery +I63441 Cerebral infarction due to embolism of right cerebellar artery +I63442 Cerebral infarction due to embolism of left cerebellar artery +I63443 Cerebral infarction due to embolism of bilateral cerebellar arteries +I63449 Cerebral infarction due to embolism of unspecified cerebellar artery +I6349 Cerebral infarction due to embolism of other cerebral artery +I6350 Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebral artery +I63511 Cerebral infarction due to unspecified occlusion or stenosis of right middle cerebral artery +I63512 Cerebral infarction due to unspecified occlusion or stenosis of left middle cerebral artery +I63513 Cerebral infarction due to unspecified occlusion or stenosis of bilateral middle cerebral arteries +I63519 Cerebral infarction due to unspecified occlusion or stenosis of unspecified middle cerebral artery +I63521 Cerebral infarction due to unspecified occlusion or stenosis of right anterior cerebral artery +I63522 Cerebral infarction due to unspecified occlusion or stenosis of left anterior cerebral artery +I63523 Cerebral infarction due to unspecified occlusion or stenosis of bilateral anterior cerebral arteries +I63529 Cerebral infarction due to unspecified occlusion or stenosis of unspecified anterior cerebral artery +I63531 Cerebral infarction due to unspecified occlusion or stenosis of right posterior cerebral artery +I63532 Cerebral infarction due to unspecified occlusion or stenosis of left posterior cerebral artery +I63533 Cerebral infarction due to unspecified occlusion or stenosis of bilateral posterior cerebral arteries +I63539 Cerebral infarction due to unspecified occlusion or stenosis of unspecified posterior cerebral artery +I63541 Cerebral infarction due to unspecified occlusion or stenosis of right cerebellar artery +I63542 Cerebral infarction due to unspecified occlusion or stenosis of left cerebellar artery +I63543 Cerebral infarction due to unspecified occlusion or stenosis of bilateral cerebellar arteries +I63549 Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebellar artery +I6359 Cerebral infarction due to unspecified occlusion or stenosis of other cerebral artery +I636 Cerebral infarction due to cerebral venous thrombosis, nonpyogenic +I638 Other cerebral infarction +I6381 Other cerebral infarction due to occlusion or stenosis of small artery +I6389 Other cerebral infarction +I639 Cerebral infarction, unspecified +I6501 Occlusion and stenosis of right vertebral artery +I6502 Occlusion and stenosis of left vertebral artery +I6503 Occlusion and stenosis of bilateral vertebral arteries +I6509 Occlusion and stenosis of unspecified vertebral artery +I651 Occlusion and stenosis of basilar artery +I6521 Occlusion and stenosis of right carotid artery +I6522 Occlusion and stenosis of left carotid artery +I6523 Occlusion and stenosis of bilateral carotid arteries +I6529 Occlusion and stenosis of unspecified carotid artery +I658 Occlusion and stenosis of other precerebral arteries +I659 Occlusion and stenosis of unspecified precerebral artery +I6601 Occlusion and stenosis of right middle cerebral artery +I6602 Occlusion and stenosis of left middle cerebral artery +I6603 Occlusion and stenosis of bilateral middle cerebral arteries +I6609 Occlusion and stenosis of unspecified middle cerebral artery +I6611 Occlusion and stenosis of right anterior cerebral artery +I6612 Occlusion and stenosis of left anterior cerebral artery +I6613 Occlusion and stenosis of bilateral anterior cerebral arteries +I6619 Occlusion and stenosis of unspecified anterior cerebral artery +I6621 Occlusion and stenosis of right posterior cerebral artery +I6622 Occlusion and stenosis of left posterior cerebral artery +I6623 Occlusion and stenosis of bilateral posterior cerebral arteries +I6629 Occlusion and stenosis of unspecified posterior cerebral artery +I663 Occlusion and stenosis of cerebellar arteries +I668 Occlusion and stenosis of other cerebral arteries +I669 Occlusion and stenosis of unspecified cerebral artery +I670 Dissection of cerebral arteries, nonruptured +I671 Cerebral aneurysm, nonruptured +I672 Cerebral atherosclerosis +I673 Progressive vascular leukoencephalopathy +I674 Hypertensive encephalopathy +I675 Moyamoya disease +I676 Nonpyogenic thrombosis of intracranial venous system +I677 Cerebral arteritis, not elsewhere classified +I6781 Acute cerebrovascular insufficiency +I6782 Cerebral ischemia +I6783 Posterior reversible encephalopathy syndrome +I67841 Reversible cerebrovascular vasoconstriction syndrome +I67848 Other cerebrovascular vasospasm and vasoconstriction +I67850 Cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy +I67858 Other hereditary cerebrovascular disease +I6789 Other cerebrovascular disease +I679 Cerebrovascular disease, unspecified +I680 Cerebral amyloid angiopathy +I682 Cerebral arteritis in other diseases classified elsewhere +I688 Other cerebrovascular disorders in diseases classified elsewhere +I6900 Unspecified sequelae of nontraumatic subarachnoid hemorrhage +I6901 Cognitive deficits following nontraumatic subarachnoid hemorrhage +I69010 Attention and concentration deficit following nontraumatic subarachnoid hemorrhage +I69011 Memory deficit following nontraumatic subarachnoid hemorrhage +I69012 Visuospatial deficit and spatial neglect following nontraumatic subarachnoid hemorrhage +I69013 Psychomotor deficit following nontraumatic subarachnoid hemorrhage +I69014 Frontal lobe and executive function deficit following nontraumatic subarachnoid hemorrhage +I69015 Cognitive social or emotional deficit following nontraumatic subarachnoid hemorrhage +I69018 Other symptoms and signs involving cognitive functions following nontraumatic subarachnoid hemorrhage +I69019 Unspecified symptoms and signs involving cognitive functions following nontraumatic subarachnoid hemorrhage +I69020 Aphasia following nontraumatic subarachnoid hemorrhage +I69021 Dysphasia following nontraumatic subarachnoid hemorrhage +I69022 Dysarthria following nontraumatic subarachnoid hemorrhage +I69023 Fluency disorder following nontraumatic subarachnoid hemorrhage +I69028 Other speech and language deficits following nontraumatic subarachnoid hemorrhage +I69031 Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting right dominant side +I69032 Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting left dominant side +I69033 Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting right non-dominant side +I69034 Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting left non-dominant side +I69039 Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting unspecified side +I69041 Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting right dominant side +I69042 Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting left dominant side +I69043 Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting right non-dominant side +I69044 Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting left non-dominant side +I69049 Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting unspecified side +I69051 Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting right dominant side +I69052 Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting left dominant side +I69053 Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting right non-dominant side +I69054 Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting left non-dominant side +I69059 Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting unspecified side +I69061 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting right dominant side +I69062 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting left dominant side +I69063 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting right non-dominant side +I69064 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting left non-dominant side +I69065 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage, bilateral +I69069 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting unspecified side +I69090 Apraxia following nontraumatic subarachnoid hemorrhage +I69091 Dysphagia following nontraumatic subarachnoid hemorrhage +I69092 Facial weakness following nontraumatic subarachnoid hemorrhage +I69093 Ataxia following nontraumatic subarachnoid hemorrhage +I69098 Other sequelae following nontraumatic subarachnoid hemorrhage +I6910 Unspecified sequelae of nontraumatic intracerebral hemorrhage +I6911 Cognitive deficits following nontraumatic intracerebral hemorrhage +I69110 Attention and concentration deficit following nontraumatic intracerebral hemorrhage +I69111 Memory deficit following nontraumatic intracerebral hemorrhage +I69112 Visuospatial deficit and spatial neglect following nontraumatic intracerebral hemorrhage +I69113 Psychomotor deficit following nontraumatic intracerebral hemorrhage +I69114 Frontal lobe and executive function deficit following nontraumatic intracerebral hemorrhage +I69115 Cognitive social or emotional deficit following nontraumatic intracerebral hemorrhage +I69118 Other symptoms and signs involving cognitive functions following nontraumatic intracerebral hemorrhage +I69119 Unspecified symptoms and signs involving cognitive functions following nontraumatic intracerebral hemorrhage +I69120 Aphasia following nontraumatic intracerebral hemorrhage +I69121 Dysphasia following nontraumatic intracerebral hemorrhage +I69122 Dysarthria following nontraumatic intracerebral hemorrhage +I69123 Fluency disorder following nontraumatic intracerebral hemorrhage +I69128 Other speech and language deficits following nontraumatic intracerebral hemorrhage +I69131 Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting right dominant side +I69132 Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting left dominant side +I69133 Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting right non-dominant side +I69134 Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting left non-dominant side +I69139 Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting unspecified side +I69141 Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting right dominant side +I69142 Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting left dominant side +I69143 Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting right non-dominant side +I69144 Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting left non-dominant side +I69149 Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting unspecified side +I69151 Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting right dominant side +I69152 Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting left dominant side +I69153 Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting right non-dominant side +I69154 Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting left non-dominant side +I69159 Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting unspecified side +I69161 Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting right dominant side +I69162 Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting left dominant side +I69163 Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting right non-dominant side +I69164 Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting left non-dominant side +I69165 Other paralytic syndrome following nontraumatic intracerebral hemorrhage, bilateral +I69169 Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting unspecified side +I69190 Apraxia following nontraumatic intracerebral hemorrhage +I69191 Dysphagia following nontraumatic intracerebral hemorrhage +I69192 Facial weakness following nontraumatic intracerebral hemorrhage +I69193 Ataxia following nontraumatic intracerebral hemorrhage +I69198 Other sequelae of nontraumatic intracerebral hemorrhage +I6920 Unspecified sequelae of other nontraumatic intracranial hemorrhage +I6921 Cognitive deficits following other nontraumatic intracranial hemorrhage +I69210 Attention and concentration deficit following other nontraumatic intracranial hemorrhage +I69211 Memory deficit following other nontraumatic intracranial hemorrhage +I69212 Visuospatial deficit and spatial neglect following other nontraumatic intracranial hemorrhage +I69213 Psychomotor deficit following other nontraumatic intracranial hemorrhage +I69214 Frontal lobe and executive function deficit following other nontraumatic intracranial hemorrhage +I69215 Cognitive social or emotional deficit following other nontraumatic intracranial hemorrhage +I69218 Other symptoms and signs involving cognitive functions following other nontraumatic intracranial hemorrhage +I69219 Unspecified symptoms and signs involving cognitive functions following other nontraumatic intracranial hemorrhage +I69220 Aphasia following other nontraumatic intracranial hemorrhage +I69221 Dysphasia following other nontraumatic intracranial hemorrhage +I69222 Dysarthria following other nontraumatic intracranial hemorrhage +I69223 Fluency disorder following other nontraumatic intracranial hemorrhage +I69228 Other speech and language deficits following other nontraumatic intracranial hemorrhage +I69231 Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting right dominant side +I69232 Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting left dominant side +I69233 Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting right non-dominant side +I69234 Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting left non-dominant side +I69239 Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting unspecified side +I69241 Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting right dominant side +I69242 Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting left dominant side +I69243 Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting right non-dominant side +I69244 Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting left non-dominant side +I69249 Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting unspecified side +I69251 Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting right dominant side +I69252 Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting left dominant side +I69253 Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting right non-dominant side +I69254 Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting left non-dominant side +I69259 Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting unspecified side +I69261 Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting right dominant side +I69262 Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting left dominant side +I69263 Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting right non-dominant side +I69264 Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting left non-dominant side +I69265 Other paralytic syndrome following other nontraumatic intracranial hemorrhage, bilateral +I69269 Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting unspecified side +I69290 Apraxia following other nontraumatic intracranial hemorrhage +I69291 Dysphagia following other nontraumatic intracranial hemorrhage +I69292 Facial weakness following other nontraumatic intracranial hemorrhage +I69293 Ataxia following other nontraumatic intracranial hemorrhage +I69298 Other sequelae of other nontraumatic intracranial hemorrhage +I6930 Unspecified sequelae of cerebral infarction +I6931 Cognitive deficits following cerebral infarction +I69310 Attention and concentration deficit following cerebral infarction +I69311 Memory deficit following cerebral infarction +I69312 Visuospatial deficit and spatial neglect following cerebral infarction +I69313 Psychomotor deficit following cerebral infarction +I69314 Frontal lobe and executive function deficit following cerebral infarction +I69315 Cognitive social or emotional deficit following cerebral infarction +I69318 Other symptoms and signs involving cognitive functions following cerebral infarction +I69319 Unspecified symptoms and signs involving cognitive functions following cerebral infarction +I69320 Aphasia following cerebral infarction +I69321 Dysphasia following cerebral infarction +I69322 Dysarthria following cerebral infarction +I69323 Fluency disorder following cerebral infarction +I69328 Other speech and language deficits following cerebral infarction +I69331 Monoplegia of upper limb following cerebral infarction affecting right dominant side +I69332 Monoplegia of upper limb following cerebral infarction affecting left dominant side +I69333 Monoplegia of upper limb following cerebral infarction affecting right non-dominant side +I69334 Monoplegia of upper limb following cerebral infarction affecting left non-dominant side +I69339 Monoplegia of upper limb following cerebral infarction affecting unspecified side +I69341 Monoplegia of lower limb following cerebral infarction affecting right dominant side +I69342 Monoplegia of lower limb following cerebral infarction affecting left dominant side +I69343 Monoplegia of lower limb following cerebral infarction affecting right non-dominant side +I69344 Monoplegia of lower limb following cerebral infarction affecting left non-dominant side +I69349 Monoplegia of lower limb following cerebral infarction affecting unspecified side +I69351 Hemiplegia and hemiparesis following cerebral infarction affecting right dominant side +I69352 Hemiplegia and hemiparesis following cerebral infarction affecting left dominant side +I69353 Hemiplegia and hemiparesis following cerebral infarction affecting right non-dominant side +I69354 Hemiplegia and hemiparesis following cerebral infarction affecting left non-dominant side +I69359 Hemiplegia and hemiparesis following cerebral infarction affecting unspecified side +I69361 Other paralytic syndrome following cerebral infarction affecting right dominant side +I69362 Other paralytic syndrome following cerebral infarction affecting left dominant side +I69363 Other paralytic syndrome following cerebral infarction affecting right non-dominant side +I69364 Other paralytic syndrome following cerebral infarction affecting left non-dominant side +I69365 Other paralytic syndrome following cerebral infarction, bilateral +I69369 Other paralytic syndrome following cerebral infarction affecting unspecified side +I69390 Apraxia following cerebral infarction +I69391 Dysphagia following cerebral infarction +I69392 Facial weakness following cerebral infarction +I69393 Ataxia following cerebral infarction +I69398 Other sequelae of cerebral infarction +I6980 Unspecified sequelae of other cerebrovascular disease +I6981 Cognitive deficits following other cerebrovascular disease +I69810 Attention and concentration deficit following other cerebrovascular disease +I69811 Memory deficit following other cerebrovascular disease +I69812 Visuospatial deficit and spatial neglect following other cerebrovascular disease +I69813 Psychomotor deficit following other cerebrovascular disease +I69814 Frontal lobe and executive function deficit following other cerebrovascular disease +I69815 Cognitive social or emotional deficit following other cerebrovascular disease +I69818 Other symptoms and signs involving cognitive functions following other cerebrovascular disease +I69819 Unspecified symptoms and signs involving cognitive functions following other cerebrovascular disease +I69820 Aphasia following other cerebrovascular disease +I69821 Dysphasia following other cerebrovascular disease +I69822 Dysarthria following other cerebrovascular disease +I69823 Fluency disorder following other cerebrovascular disease +I69828 Other speech and language deficits following other cerebrovascular disease +I69831 Monoplegia of upper limb following other cerebrovascular disease affecting right dominant side +I69832 Monoplegia of upper limb following other cerebrovascular disease affecting left dominant side +I69833 Monoplegia of upper limb following other cerebrovascular disease affecting right non-dominant side +I69834 Monoplegia of upper limb following other cerebrovascular disease affecting left non-dominant side +I69839 Monoplegia of upper limb following other cerebrovascular disease affecting unspecified side +I69841 Monoplegia of lower limb following other cerebrovascular disease affecting right dominant side +I69842 Monoplegia of lower limb following other cerebrovascular disease affecting left dominant side +I69843 Monoplegia of lower limb following other cerebrovascular disease affecting right non-dominant side +I69844 Monoplegia of lower limb following other cerebrovascular disease affecting left non-dominant side +I69849 Monoplegia of lower limb following other cerebrovascular disease affecting unspecified side +I69851 Hemiplegia and hemiparesis following other cerebrovascular disease affecting right dominant side +I69852 Hemiplegia and hemiparesis following other cerebrovascular disease affecting left dominant side +I69853 Hemiplegia and hemiparesis following other cerebrovascular disease affecting right non-dominant side +I69854 Hemiplegia and hemiparesis following other cerebrovascular disease affecting left non-dominant side +I69859 Hemiplegia and hemiparesis following other cerebrovascular disease affecting unspecified side +I69861 Other paralytic syndrome following other cerebrovascular disease affecting right dominant side +I69862 Other paralytic syndrome following other cerebrovascular disease affecting left dominant side +I69863 Other paralytic syndrome following other cerebrovascular disease affecting right non-dominant side +I69864 Other paralytic syndrome following other cerebrovascular disease affecting left non-dominant side +I69865 Other paralytic syndrome following other cerebrovascular disease, bilateral +I69869 Other paralytic syndrome following other cerebrovascular disease affecting unspecified side +I69890 Apraxia following other cerebrovascular disease +I69891 Dysphagia following other cerebrovascular disease +I69892 Facial weakness following other cerebrovascular disease +I69893 Ataxia following other cerebrovascular disease +I69898 Other sequelae of other cerebrovascular disease +I6990 Unspecified sequelae of unspecified cerebrovascular disease +I6991 Cognitive deficits following unspecified cerebrovascular disease +I69910 Attention and concentration deficit following unspecified cerebrovascular disease +I69911 Memory deficit following unspecified cerebrovascular disease +I69912 Visuospatial deficit and spatial neglect following unspecified cerebrovascular disease +I69913 Psychomotor deficit following unspecified cerebrovascular disease +I69914 Frontal lobe and executive function deficit following unspecified cerebrovascular disease +I69915 Cognitive social or emotional deficit following unspecified cerebrovascular disease +I69918 Other symptoms and signs involving cognitive functions following unspecified cerebrovascular disease +I69919 Unspecified symptoms and signs involving cognitive functions following unspecified cerebrovascular disease +I69920 Aphasia following unspecified cerebrovascular disease +I69921 Dysphasia following unspecified cerebrovascular disease +I69922 Dysarthria following unspecified cerebrovascular disease +I69923 Fluency disorder following unspecified cerebrovascular disease +I69928 Other speech and language deficits following unspecified cerebrovascular disease +I69931 Monoplegia of upper limb following unspecified cerebrovascular disease affecting right dominant side +I69932 Monoplegia of upper limb following unspecified cerebrovascular disease affecting left dominant side +I69933 Monoplegia of upper limb following unspecified cerebrovascular disease affecting right non-dominant side +I69934 Monoplegia of upper limb following unspecified cerebrovascular disease affecting left non-dominant side +I69939 Monoplegia of upper limb following unspecified cerebrovascular disease affecting unspecified side +I69941 Monoplegia of lower limb following unspecified cerebrovascular disease affecting right dominant side +I69942 Monoplegia of lower limb following unspecified cerebrovascular disease affecting left dominant side +I69943 Monoplegia of lower limb following unspecified cerebrovascular disease affecting right non-dominant side +I69944 Monoplegia of lower limb following unspecified cerebrovascular disease affecting left non-dominant side +I69949 Monoplegia of lower limb following unspecified cerebrovascular disease affecting unspecified side +I69951 Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting right dominant side +I69952 Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting left dominant side +I69953 Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting right non-dominant side +I69954 Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting left non-dominant side +I69959 Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting unspecified side +I69961 Other paralytic syndrome following unspecified cerebrovascular disease affecting right dominant side +I69962 Other paralytic syndrome following unspecified cerebrovascular disease affecting left dominant side +I69963 Other paralytic syndrome following unspecified cerebrovascular disease affecting right non-dominant side +I69964 Other paralytic syndrome following unspecified cerebrovascular disease affecting left non-dominant side +I69965 Other paralytic syndrome following unspecified cerebrovascular disease, bilateral +I69969 Other paralytic syndrome following unspecified cerebrovascular disease affecting unspecified side +I69990 Apraxia following unspecified cerebrovascular disease +I69991 Dysphagia following unspecified cerebrovascular disease +I69992 Facial weakness following unspecified cerebrovascular disease +I69993 Ataxia following unspecified cerebrovascular disease +I69998 Other sequelae following unspecified cerebrovascular disease +I700 Atherosclerosis of aorta +I701 Atherosclerosis of renal artery +I70201 Unspecified atherosclerosis of native arteries of extremities, right leg +I70202 Unspecified atherosclerosis of native arteries of extremities, left leg +I70203 Unspecified atherosclerosis of native arteries of extremities, bilateral legs +I70208 Unspecified atherosclerosis of native arteries of extremities, other extremity +I70209 Unspecified atherosclerosis of native arteries of extremities, unspecified extremity +I70211 Atherosclerosis of native arteries of extremities with intermittent claudication, right leg +I70212 Atherosclerosis of native arteries of extremities with intermittent claudication, left leg +I70213 Atherosclerosis of native arteries of extremities with intermittent claudication, bilateral legs +I70218 Atherosclerosis of native arteries of extremities with intermittent claudication, other extremity +I70219 Atherosclerosis of native arteries of extremities with intermittent claudication, unspecified extremity +I70221 Atherosclerosis of native arteries of extremities with rest pain, right leg +I70222 Atherosclerosis of native arteries of extremities with rest pain, left leg +I70223 Atherosclerosis of native arteries of extremities with rest pain, bilateral legs +I70228 Atherosclerosis of native arteries of extremities with rest pain, other extremity +I70229 Atherosclerosis of native arteries of extremities with rest pain, unspecified extremity +I70231 Atherosclerosis of native arteries of right leg with ulceration of thigh +I70232 Atherosclerosis of native arteries of right leg with ulceration of calf +I70233 Atherosclerosis of native arteries of right leg with ulceration of ankle +I70234 Atherosclerosis of native arteries of right leg with ulceration of heel and midfoot +I70235 Atherosclerosis of native arteries of right leg with ulceration of other part of foot +I70238 Atherosclerosis of native arteries of right leg with ulceration of other part of lower leg +I70239 Atherosclerosis of native arteries of right leg with ulceration of unspecified site +I70241 Atherosclerosis of native arteries of left leg with ulceration of thigh +I70242 Atherosclerosis of native arteries of left leg with ulceration of calf +I70243 Atherosclerosis of native arteries of left leg with ulceration of ankle +I70244 Atherosclerosis of native arteries of left leg with ulceration of heel and midfoot +I70245 Atherosclerosis of native arteries of left leg with ulceration of other part of foot +I70248 Atherosclerosis of native arteries of left leg with ulceration of other part of lower leg +I70249 Atherosclerosis of native arteries of left leg with ulceration of unspecified site +I7025 Atherosclerosis of native arteries of other extremities with ulceration +I70261 Atherosclerosis of native arteries of extremities with gangrene, right leg +I70262 Atherosclerosis of native arteries of extremities with gangrene, left leg +I70263 Atherosclerosis of native arteries of extremities with gangrene, bilateral legs +I70268 Atherosclerosis of native arteries of extremities with gangrene, other extremity +I70269 Atherosclerosis of native arteries of extremities with gangrene, unspecified extremity +I70291 Other atherosclerosis of native arteries of extremities, right leg +I70292 Other atherosclerosis of native arteries of extremities, left leg +I70293 Other atherosclerosis of native arteries of extremities, bilateral legs +I70298 Other atherosclerosis of native arteries of extremities, other extremity +I70299 Other atherosclerosis of native arteries of extremities, unspecified extremity +I70301 Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg +I70302 Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg +I70303 Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, bilateral legs +I70308 Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, other extremity +I70309 Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, unspecified extremity +I70311 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, right leg +I70312 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, left leg +I70313 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, bilateral legs +I70318 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, other extremity +I70319 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, unspecified extremity +I70321 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, right leg +I70322 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, left leg +I70323 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, bilateral legs +I70328 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, other extremity +I70329 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, unspecified extremity +I70331 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of thigh +I70332 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of calf +I70333 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of ankle +I70334 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of heel and midfoot +I70335 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of other part of foot +I70338 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of other part of lower leg +I70339 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of unspecified site +I70341 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of thigh +I70342 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of calf +I70343 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of ankle +I70344 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of heel and midfoot +I70345 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of other part of foot +I70348 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of other part of lower leg +I70349 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of unspecified site +I7035 Atherosclerosis of unspecified type of bypass graft(s) of other extremity with ulceration +I70361 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, right leg +I70362 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, left leg +I70363 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, bilateral legs +I70368 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, other extremity +I70369 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, unspecified extremity +I70391 Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg +I70392 Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg +I70393 Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, bilateral legs +I70398 Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, other extremity +I70399 Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, unspecified extremity +I70401 Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg +I70402 Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg +I70403 Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs +I70408 Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity +I70409 Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, unspecified extremity +I70411 Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, right leg +I70412 Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, left leg +I70413 Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, bilateral legs +I70418 Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, other extremity +I70419 Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, unspecified extremity +I70421 Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, right leg +I70422 Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, left leg +I70423 Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, bilateral legs +I70428 Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, other extremity +I70429 Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, unspecified extremity +I70431 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of thigh +I70432 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of calf +I70433 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of ankle +I70434 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of heel and midfoot +I70435 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of other part of foot +I70438 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of other part of lower leg +I70439 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of unspecified site +I70441 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of thigh +I70442 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of calf +I70443 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of ankle +I70444 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of heel and midfoot +I70445 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of other part of foot +I70448 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of other part of lower leg +I70449 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of unspecified site +I7045 Atherosclerosis of autologous vein bypass graft(s) of other extremity with ulceration +I70461 Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, right leg +I70462 Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, left leg +I70463 Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, bilateral legs +I70468 Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, other extremity +I70469 Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, unspecified extremity +I70491 Other atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg +I70492 Other atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg +I70493 Other atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs +I70498 Other atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity +I70499 Other atherosclerosis of autologous vein bypass graft(s) of the extremities, unspecified extremity +I70501 Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, right leg +I70502 Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg +I70503 Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, bilateral legs +I70508 Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, other extremity +I70509 Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, unspecified extremity +I70511 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, right leg +I70512 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, left leg +I70513 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, bilateral legs +I70518 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, other extremity +I70519 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, unspecified extremity +I70521 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, right leg +I70522 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, left leg +I70523 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, bilateral legs +I70528 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, other extremity +I70529 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, unspecified extremity +I70531 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of thigh +I70532 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of calf +I70533 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of ankle +I70534 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of heel and midfoot +I70535 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of other part of foot +I70538 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of other part of lower leg +I70539 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of unspecified site +I70541 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of thigh +I70542 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of calf +I70543 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of ankle +I70544 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of heel and midfoot +I70545 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of other part of foot +I70548 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of other part of lower leg +I70549 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of unspecified site +I7055 Atherosclerosis of nonautologous biological bypass graft(s) of other extremity with ulceration +I70561 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, right leg +I70562 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, left leg +I70563 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, bilateral legs +I70568 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, other extremity +I70569 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, unspecified extremity +I70591 Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, right leg +I70592 Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg +I70593 Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, bilateral legs +I70598 Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, other extremity +I70599 Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, unspecified extremity +I70601 Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg +I70602 Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg +I70603 Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs +I70608 Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity +I70609 Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, unspecified extremity +I70611 Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, right leg +I70612 Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, left leg +I70613 Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, bilateral legs +I70618 Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, other extremity +I70619 Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, unspecified extremity +I70621 Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, right leg +I70622 Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, left leg +I70623 Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, bilateral legs +I70628 Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, other extremity +I70629 Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, unspecified extremity +I70631 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of thigh +I70632 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of calf +I70633 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of ankle +I70634 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of heel and midfoot +I70635 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of other part of foot +I70638 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of other part of lower leg +I70639 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of unspecified site +I70641 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of thigh +I70642 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of calf +I70643 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of ankle +I70644 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of heel and midfoot +I70645 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of other part of foot +I70648 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of other part of lower leg +I70649 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of unspecified site +I7065 Atherosclerosis of nonbiological bypass graft(s) of other extremity with ulceration +I70661 Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, right leg +I70662 Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, left leg +I70663 Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, bilateral legs +I70668 Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, other extremity +I70669 Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, unspecified extremity +I70691 Other atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg +I70692 Other atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg +I70693 Other atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs +I70698 Other atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity +I70699 Other atherosclerosis of nonbiological bypass graft(s) of the extremities, unspecified extremity +I70701 Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, right leg +I70702 Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, left leg +I70703 Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs +I70708 Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, other extremity +I70709 Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, unspecified extremity +I70711 Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, right leg +I70712 Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, left leg +I70713 Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, bilateral legs +I70718 Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, other extremity +I70719 Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, unspecified extremity +I70721 Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, right leg +I70722 Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, left leg +I70723 Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, bilateral legs +I70728 Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, other extremity +I70729 Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, unspecified extremity +I70731 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of thigh +I70732 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of calf +I70733 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of ankle +I70734 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of heel and midfoot +I70735 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of other part of foot +I70738 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of other part of lower leg +I70739 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of unspecified site +I70741 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of thigh +I70742 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of calf +I70743 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of ankle +I70744 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of heel and midfoot +I70745 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of other part of foot +I70748 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of other part of lower leg +I70749 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of unspecified site +I7075 Atherosclerosis of other type of bypass graft(s) of other extremity with ulceration +I70761 Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, right leg +I70762 Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, left leg +I70763 Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, bilateral legs +I70768 Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, other extremity +I70769 Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, unspecified extremity +I70791 Other atherosclerosis of other type of bypass graft(s) of the extremities, right leg +I70792 Other atherosclerosis of other type of bypass graft(s) of the extremities, left leg +I70793 Other atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs +I70798 Other atherosclerosis of other type of bypass graft(s) of the extremities, other extremity +I70799 Other atherosclerosis of other type of bypass graft(s) of the extremities, unspecified extremity +I708 Atherosclerosis of other arteries +I7090 Unspecified atherosclerosis +I7091 Generalized atherosclerosis +I7092 Chronic total occlusion of artery of the extremities +I7100 Dissection of unspecified site of aorta +I7101 Dissection of thoracic aorta +I7102 Dissection of abdominal aorta +I7103 Dissection of thoracoabdominal aorta +I711 Thoracic aortic aneurysm, ruptured +I712 Thoracic aortic aneurysm, without rupture +I713 Abdominal aortic aneurysm, ruptured +I714 Abdominal aortic aneurysm, without rupture +I715 Thoracoabdominal aortic aneurysm, ruptured +I716 Thoracoabdominal aortic aneurysm, without rupture +I718 Aortic aneurysm of unspecified site, ruptured +I719 Aortic aneurysm of unspecified site, without rupture +I720 Aneurysm of carotid artery +I721 Aneurysm of artery of upper extremity +I722 Aneurysm of renal artery +I723 Aneurysm of iliac artery +I724 Aneurysm of artery of lower extremity +I725 Aneurysm of other precerebral arteries +I726 Aneurysm of vertebral artery +I728 Aneurysm of other specified arteries +I729 Aneurysm of unspecified site +I7300 Raynaud's syndrome without gangrene +I7301 Raynaud's syndrome with gangrene +I731 Thromboangiitis obliterans [Buerger's disease] +I7381 Erythromelalgia +I7389 Other specified peripheral vascular diseases +I739 Peripheral vascular disease, unspecified +I7401 Saddle embolus of abdominal aorta +I7409 Other arterial embolism and thrombosis of abdominal aorta +I7410 Embolism and thrombosis of unspecified parts of aorta +I7411 Embolism and thrombosis of thoracic aorta +I7419 Embolism and thrombosis of other parts of aorta +I742 Embolism and thrombosis of arteries of the upper extremities +I743 Embolism and thrombosis of arteries of the lower extremities +I744 Embolism and thrombosis of arteries of extremities, unspecified +I745 Embolism and thrombosis of iliac artery +I748 Embolism and thrombosis of other arteries +I749 Embolism and thrombosis of unspecified artery +I75011 Atheroembolism of right upper extremity +I75012 Atheroembolism of left upper extremity +I75013 Atheroembolism of bilateral upper extremities +I75019 Atheroembolism of unspecified upper extremity +I75021 Atheroembolism of right lower extremity +I75022 Atheroembolism of left lower extremity +I75023 Atheroembolism of bilateral lower extremities +I75029 Atheroembolism of unspecified lower extremity +I7581 Atheroembolism of kidney +I7589 Atheroembolism of other site +I76 Septic arterial embolism +I770 Arteriovenous fistula, acquired +I771 Stricture of artery +I772 Rupture of artery +I773 Arterial fibromuscular dysplasia +I774 Celiac artery compression syndrome +I775 Necrosis of artery +I776 Arteritis, unspecified +I7770 Dissection of unspecified artery +I7771 Dissection of carotid artery +I7772 Dissection of iliac artery +I7773 Dissection of renal artery +I7774 Dissection of vertebral artery +I7775 Dissection of other precerebral arteries +I7776 Dissection of artery of upper extremity +I7777 Dissection of artery of lower extremity +I7779 Dissection of other specified artery +I77810 Thoracic aortic ectasia +I77811 Abdominal aortic ectasia +I77812 Thoracoabdominal aortic ectasia +I77819 Aortic ectasia, unspecified site +I7789 Other specified disorders of arteries and arterioles +I779 Disorder of arteries and arterioles, unspecified +I780 Hereditary hemorrhagic telangiectasia +I781 Nevus, non-neoplastic +I788 Other diseases of capillaries +I789 Disease of capillaries, unspecified +I790 Aneurysm of aorta in diseases classified elsewhere +I791 Aortitis in diseases classified elsewhere +I798 Other disorders of arteries, arterioles and capillaries in diseases classified elsewhere +I8000 Phlebitis and thrombophlebitis of superficial vessels of unspecified lower extremity +I8001 Phlebitis and thrombophlebitis of superficial vessels of right lower extremity +I8002 Phlebitis and thrombophlebitis of superficial vessels of left lower extremity +I8003 Phlebitis and thrombophlebitis of superficial vessels of lower extremities, bilateral +I8010 Phlebitis and thrombophlebitis of unspecified femoral vein +I8011 Phlebitis and thrombophlebitis of right femoral vein +I8012 Phlebitis and thrombophlebitis of left femoral vein +I8013 Phlebitis and thrombophlebitis of femoral vein, bilateral +I80201 Phlebitis and thrombophlebitis of unspecified deep vessels of right lower extremity +I80202 Phlebitis and thrombophlebitis of unspecified deep vessels of left lower extremity +I80203 Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities, bilateral +I80209 Phlebitis and thrombophlebitis of unspecified deep vessels of unspecified lower extremity +I80211 Phlebitis and thrombophlebitis of right iliac vein +I80212 Phlebitis and thrombophlebitis of left iliac vein +I80213 Phlebitis and thrombophlebitis of iliac vein, bilateral +I80219 Phlebitis and thrombophlebitis of unspecified iliac vein +I80221 Phlebitis and thrombophlebitis of right popliteal vein +I80222 Phlebitis and thrombophlebitis of left popliteal vein +I80223 Phlebitis and thrombophlebitis of popliteal vein, bilateral +I80229 Phlebitis and thrombophlebitis of unspecified popliteal vein +I80231 Phlebitis and thrombophlebitis of right tibial vein +I80232 Phlebitis and thrombophlebitis of left tibial vein +I80233 Phlebitis and thrombophlebitis of tibial vein, bilateral +I80239 Phlebitis and thrombophlebitis of unspecified tibial vein +I80241 Phlebitis and thrombophlebitis of right peroneal vein +I80242 Phlebitis and thrombophlebitis of left peroneal vein +I80243 Phlebitis and thrombophlebitis of peroneal vein, bilateral +I80249 Phlebitis and thrombophlebitis of unspecified peroneal vein +I80251 Phlebitis and thrombophlebitis of right calf muscular vein +I80252 Phlebitis and thrombophlebitis of left calf muscular vein +I80253 Phlebitis and thrombophlebitis of calf muscular vein, bilateral +I80259 Phlebitis and thrombophlebitis of unspecified calf muscular vein +I80261 Acute embolism and thrombosis of right calf muscular vein +I80262 Acute embolism and thrombosis of left calf muscular vein +I80263 Acute embolism and thombosis of calf muscular vein, bilateral +I80269 Acute embolism and thombosis unspecified calf muscular vein +I80291 Phlebitis and thrombophlebitis of other deep vessels of right lower extremity +I80292 Phlebitis and thrombophlebitis of other deep vessels of left lower extremity +I80293 Phlebitis and thrombophlebitis of other deep vessels of lower extremity, bilateral +I80299 Phlebitis and thrombophlebitis of other deep vessels of unspecified lower extremity +I803 Phlebitis and thrombophlebitis of lower extremities, unspecified +I808 Phlebitis and thrombophlebitis of other sites +I809 Phlebitis and thrombophlebitis of unspecified site +I81 Portal vein thrombosis +I820 Budd-Chiari syndrome +I821 Thrombophlebitis migrans +I82210 Acute embolism and thrombosis of superior vena cava +I82211 Chronic embolism and thrombosis of superior vena cava +I82220 Acute embolism and thrombosis of inferior vena cava +I82221 Chronic embolism and thrombosis of inferior vena cava +I82290 Acute embolism and thrombosis of other thoracic veins +I82291 Chronic embolism and thrombosis of other thoracic veins +I823 Embolism and thrombosis of renal vein +I82401 Acute embolism and thrombosis of unspecified deep veins of right lower extremity +I82402 Acute embolism and thrombosis of unspecified deep veins of left lower extremity +I82403 Acute embolism and thrombosis of unspecified deep veins of lower extremity, bilateral +I82409 Acute embolism and thrombosis of unspecified deep veins of unspecified lower extremity +I82411 Acute embolism and thrombosis of right femoral vein +I82412 Acute embolism and thrombosis of left femoral vein +I82413 Acute embolism and thrombosis of femoral vein, bilateral +I82419 Acute embolism and thrombosis of unspecified femoral vein +I82421 Acute embolism and thrombosis of right iliac vein +I82422 Acute embolism and thrombosis of left iliac vein +I82423 Acute embolism and thrombosis of iliac vein, bilateral +I82429 Acute embolism and thrombosis of unspecified iliac vein +I82431 Acute embolism and thrombosis of right popliteal vein +I82432 Acute embolism and thrombosis of left popliteal vein +I82433 Acute embolism and thrombosis of popliteal vein, bilateral +I82439 Acute embolism and thrombosis of unspecified popliteal vein +I82441 Acute embolism and thrombosis of right tibial vein +I82442 Acute embolism and thrombosis of left tibial vein +I82443 Acute embolism and thrombosis of tibial vein, bilateral +I82449 Acute embolism and thrombosis of unspecified tibial vein +I82451 Acute embolism and thrombosis of right peroneal vein +I82452 Acute embolism and thrombosis of left peroneal vein +I82453 Acute embolism and thrombosis of peroneal vein, bilateral +I82459 Acute embolism and thrombosis of unspecified peroneal vein +I82461 Acute embolism and thrombosis of right calf muscular vein +I82462 Acute embolism and thrombosis of left calf muscular vein +I82463 Acute embolism and thrombosis of calf muscular vein, bilateral +I82469 Acute embolism and thrombosis of unspecified calf muscular vein +I82491 Acute embolism and thrombosis of other specified deep vein of right lower extremity +I82492 Acute embolism and thrombosis of other specified deep vein of left lower extremity +I82493 Acute embolism and thrombosis of other specified deep vein of lower extremity, bilateral +I82499 Acute embolism and thrombosis of other specified deep vein of unspecified lower extremity +I824Y1 Acute embolism and thrombosis of unspecified deep veins of right proximal lower extremity +I824Y2 Acute embolism and thrombosis of unspecified deep veins of left proximal lower extremity +I824Y3 Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral +I824Y9 Acute embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity +I824Z1 Acute embolism and thrombosis of unspecified deep veins of right distal lower extremity +I824Z2 Acute embolism and thrombosis of unspecified deep veins of left distal lower extremity +I824Z3 Acute embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral +I824Z9 Acute embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity +I82501 Chronic embolism and thrombosis of unspecified deep veins of right lower extremity +I82502 Chronic embolism and thrombosis of unspecified deep veins of left lower extremity +I82503 Chronic embolism and thrombosis of unspecified deep veins of lower extremity, bilateral +I82509 Chronic embolism and thrombosis of unspecified deep veins of unspecified lower extremity +I82511 Chronic embolism and thrombosis of right femoral vein +I82512 Chronic embolism and thrombosis of left femoral vein +I82513 Chronic embolism and thrombosis of femoral vein, bilateral +I82519 Chronic embolism and thrombosis of unspecified femoral vein +I82521 Chronic embolism and thrombosis of right iliac vein +I82522 Chronic embolism and thrombosis of left iliac vein +I82523 Chronic embolism and thrombosis of iliac vein, bilateral +I82529 Chronic embolism and thrombosis of unspecified iliac vein +I82531 Chronic embolism and thrombosis of right popliteal vein +I82532 Chronic embolism and thrombosis of left popliteal vein +I82533 Chronic embolism and thrombosis of popliteal vein, bilateral +I82539 Chronic embolism and thrombosis of unspecified popliteal vein +I82541 Chronic embolism and thrombosis of right tibial vein +I82542 Chronic embolism and thrombosis of left tibial vein +I82543 Chronic embolism and thrombosis of tibial vein, bilateral +I82549 Chronic embolism and thrombosis of unspecified tibial vein +I82551 Chronic embolism and thrombosis of right peroneal vein +I82552 Chronic embolism and thrombosis of left peroneal vein +I82553 Chronic embolism and thrombosis of peroneal vein, bilateral +I82559 Chronic embolism and thrombosis of unspecified peroneal vein +I82561 Chronic embolism and thrombosis of right calf muscular vein +I82562 Chronic embolism and thrombosis of left calf muscular vein +I82563 Chronic embolism and thrombosis of calf muscular vein, bilateral +I82569 Chronic embolism and thrombosis of unspecified calf muscular vein +I82591 Chronic embolism and thrombosis of other specified deep vein of right lower extremity +I82592 Chronic embolism and thrombosis of other specified deep vein of left lower extremity +I82593 Chronic embolism and thrombosis of other specified deep vein of lower extremity, bilateral +I82599 Chronic embolism and thrombosis of other specified deep vein of unspecified lower extremity +I825Y1 Chronic embolism and thrombosis of unspecified deep veins of right proximal lower extremity +I825Y2 Chronic embolism and thrombosis of unspecified deep veins of left proximal lower extremity +I825Y3 Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral +I825Y9 Chronic embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity +I825Z1 Chronic embolism and thrombosis of unspecified deep veins of right distal lower extremity +I825Z2 Chronic embolism and thrombosis of unspecified deep veins of left distal lower extremity +I825Z3 Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral +I825Z9 Chronic embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity +I82601 Acute embolism and thrombosis of unspecified veins of right upper extremity +I82602 Acute embolism and thrombosis of unspecified veins of left upper extremity +I82603 Acute embolism and thrombosis of unspecified veins of upper extremity, bilateral +I82609 Acute embolism and thrombosis of unspecified veins of unspecified upper extremity +I82611 Acute embolism and thrombosis of superficial veins of right upper extremity +I82612 Acute embolism and thrombosis of superficial veins of left upper extremity +I82613 Acute embolism and thrombosis of superficial veins of upper extremity, bilateral +I82619 Acute embolism and thrombosis of superficial veins of unspecified upper extremity +I82621 Acute embolism and thrombosis of deep veins of right upper extremity +I82622 Acute embolism and thrombosis of deep veins of left upper extremity +I82623 Acute embolism and thrombosis of deep veins of upper extremity, bilateral +I82629 Acute embolism and thrombosis of deep veins of unspecified upper extremity +I82701 Chronic embolism and thrombosis of unspecified veins of right upper extremity +I82702 Chronic embolism and thrombosis of unspecified veins of left upper extremity +I82703 Chronic embolism and thrombosis of unspecified veins of upper extremity, bilateral +I82709 Chronic embolism and thrombosis of unspecified veins of unspecified upper extremity +I82711 Chronic embolism and thrombosis of superficial veins of right upper extremity +I82712 Chronic embolism and thrombosis of superficial veins of left upper extremity +I82713 Chronic embolism and thrombosis of superficial veins of upper extremity, bilateral +I82719 Chronic embolism and thrombosis of superficial veins of unspecified upper extremity +I82721 Chronic embolism and thrombosis of deep veins of right upper extremity +I82722 Chronic embolism and thrombosis of deep veins of left upper extremity +I82723 Chronic embolism and thrombosis of deep veins of upper extremity, bilateral +I82729 Chronic embolism and thrombosis of deep veins of unspecified upper extremity +I82811 Embolism and thrombosis of superficial veins of right lower extremity +I82812 Embolism and thrombosis of superficial veins of left lower extremity +I82813 Embolism and thrombosis of superficial veins of lower extremities, bilateral +I82819 Embolism and thrombosis of superficial veins of unspecified lower extremity +I82890 Acute embolism and thrombosis of other specified veins +I82891 Chronic embolism and thrombosis of other specified veins +I8290 Acute embolism and thrombosis of unspecified vein +I8291 Chronic embolism and thrombosis of unspecified vein +I82A11 Acute embolism and thrombosis of right axillary vein +I82A12 Acute embolism and thrombosis of left axillary vein +I82A13 Acute embolism and thrombosis of axillary vein, bilateral +I82A19 Acute embolism and thrombosis of unspecified axillary vein +I82A21 Chronic embolism and thrombosis of right axillary vein +I82A22 Chronic embolism and thrombosis of left axillary vein +I82A23 Chronic embolism and thrombosis of axillary vein, bilateral +I82A29 Chronic embolism and thrombosis of unspecified axillary vein +I82B11 Acute embolism and thrombosis of right subclavian vein +I82B12 Acute embolism and thrombosis of left subclavian vein +I82B13 Acute embolism and thrombosis of subclavian vein, bilateral +I82B19 Acute embolism and thrombosis of unspecified subclavian vein +I82B21 Chronic embolism and thrombosis of right subclavian vein +I82B22 Chronic embolism and thrombosis of left subclavian vein +I82B23 Chronic embolism and thrombosis of subclavian vein, bilateral +I82B29 Chronic embolism and thrombosis of unspecified subclavian vein +I82C11 Acute embolism and thrombosis of right internal jugular vein +I82C12 Acute embolism and thrombosis of left internal jugular vein +I82C13 Acute embolism and thrombosis of internal jugular vein, bilateral +I82C19 Acute embolism and thrombosis of unspecified internal jugular vein +I82C21 Chronic embolism and thrombosis of right internal jugular vein +I82C22 Chronic embolism and thrombosis of left internal jugular vein +I82C23 Chronic embolism and thrombosis of internal jugular vein, bilateral +I82C29 Chronic embolism and thrombosis of unspecified internal jugular vein +I83001 Varicose veins of unspecified lower extremity with ulcer of thigh +I83002 Varicose veins of unspecified lower extremity with ulcer of calf +I83003 Varicose veins of unspecified lower extremity with ulcer of ankle +I83004 Varicose veins of unspecified lower extremity with ulcer of heel and midfoot +I83005 Varicose veins of unspecified lower extremity with ulcer other part of foot +I83008 Varicose veins of unspecified lower extremity with ulcer other part of lower leg +I83009 Varicose veins of unspecified lower extremity with ulcer of unspecified site +I83011 Varicose veins of right lower extremity with ulcer of thigh +I83012 Varicose veins of right lower extremity with ulcer of calf +I83013 Varicose veins of right lower extremity with ulcer of ankle +I83014 Varicose veins of right lower extremity with ulcer of heel and midfoot +I83015 Varicose veins of right lower extremity with ulcer other part of foot +I83018 Varicose veins of right lower extremity with ulcer other part of lower leg +I83019 Varicose veins of right lower extremity with ulcer of unspecified site +I83021 Varicose veins of left lower extremity with ulcer of thigh +I83022 Varicose veins of left lower extremity with ulcer of calf +I83023 Varicose veins of left lower extremity with ulcer of ankle +I83024 Varicose veins of left lower extremity with ulcer of heel and midfoot +I83025 Varicose veins of left lower extremity with ulcer other part of foot +I83028 Varicose veins of left lower extremity with ulcer other part of lower leg +I83029 Varicose veins of left lower extremity with ulcer of unspecified site +I8310 Varicose veins of unspecified lower extremity with inflammation +I8311 Varicose veins of right lower extremity with inflammation +I8312 Varicose veins of left lower extremity with inflammation +I83201 Varicose veins of unspecified lower extremity with both ulcer of thigh and inflammation +I83202 Varicose veins of unspecified lower extremity with both ulcer of calf and inflammation +I83203 Varicose veins of unspecified lower extremity with both ulcer of ankle and inflammation +I83204 Varicose veins of unspecified lower extremity with both ulcer of heel and midfoot and inflammation +I83205 Varicose veins of unspecified lower extremity with both ulcer other part of foot and inflammation +I83208 Varicose veins of unspecified lower extremity with both ulcer of other part of lower extremity and inflammation +I83209 Varicose veins of unspecified lower extremity with both ulcer of unspecified site and inflammation +I83211 Varicose veins of right lower extremity with both ulcer of thigh and inflammation +I83212 Varicose veins of right lower extremity with both ulcer of calf and inflammation +I83213 Varicose veins of right lower extremity with both ulcer of ankle and inflammation +I83214 Varicose veins of right lower extremity with both ulcer of heel and midfoot and inflammation +I83215 Varicose veins of right lower extremity with both ulcer other part of foot and inflammation +I83218 Varicose veins of right lower extremity with both ulcer of other part of lower extremity and inflammation +I83219 Varicose veins of right lower extremity with both ulcer of unspecified site and inflammation +I83221 Varicose veins of left lower extremity with both ulcer of thigh and inflammation +I83222 Varicose veins of left lower extremity with both ulcer of calf and inflammation +I83223 Varicose veins of left lower extremity with both ulcer of ankle and inflammation +I83224 Varicose veins of left lower extremity with both ulcer of heel and midfoot and inflammation +I83225 Varicose veins of left lower extremity with both ulcer other part of foot and inflammation +I83228 Varicose veins of left lower extremity with both ulcer of other part of lower extremity and inflammation +I83229 Varicose veins of left lower extremity with both ulcer of unspecified site and inflammation +I83811 Varicose veins of right lower extremity with pain +I83812 Varicose veins of left lower extremity with pain +I83813 Varicose veins of bilateral lower extremities with pain +I83819 Varicose veins of unspecified lower extremity with pain +I83891 Varicose veins of right lower extremity with other complications +I83892 Varicose veins of left lower extremity with other complications +I83893 Varicose veins of bilateral lower extremities with other complications +I83899 Varicose veins of unspecified lower extremity with other complications +I8390 Asymptomatic varicose veins of unspecified lower extremity +I8391 Asymptomatic varicose veins of right lower extremity +I8392 Asymptomatic varicose veins of left lower extremity +I8393 Asymptomatic varicose veins of bilateral lower extremities +I8500 Esophageal varices without bleeding +I8501 Esophageal varices with bleeding +I8510 Secondary esophageal varices without bleeding +I8511 Secondary esophageal varices with bleeding +I860 Sublingual varices +I861 Scrotal varices +I862 Pelvic varices +I863 Vulval varices +I864 Gastric varices +I868 Varicose veins of other specified sites +I87001 Postthrombotic syndrome without complications of right lower extremity +I87002 Postthrombotic syndrome without complications of left lower extremity +I87003 Postthrombotic syndrome without complications of bilateral lower extremity +I87009 Postthrombotic syndrome without complications of unspecified extremity +I87011 Postthrombotic syndrome with ulcer of right lower extremity +I87012 Postthrombotic syndrome with ulcer of left lower extremity +I87013 Postthrombotic syndrome with ulcer of bilateral lower extremity +I87019 Postthrombotic syndrome with ulcer of unspecified lower extremity +I87021 Postthrombotic syndrome with inflammation of right lower extremity +I87022 Postthrombotic syndrome with inflammation of left lower extremity +I87023 Postthrombotic syndrome with inflammation of bilateral lower extremity +I87029 Postthrombotic syndrome with inflammation of unspecified lower extremity +I87031 Postthrombotic syndrome with ulcer and inflammation of right lower extremity +I87032 Postthrombotic syndrome with ulcer and inflammation of left lower extremity +I87033 Postthrombotic syndrome with ulcer and inflammation of bilateral lower extremity +I87039 Postthrombotic syndrome with ulcer and inflammation of unspecified lower extremity +I87091 Postthrombotic syndrome with other complications of right lower extremity +I87092 Postthrombotic syndrome with other complications of left lower extremity +I87093 Postthrombotic syndrome with other complications of bilateral lower extremity +I87099 Postthrombotic syndrome with other complications of unspecified lower extremity +I871 Compression of vein +I872 Venous insufficiency (chronic) (peripheral) +I87301 Chronic venous hypertension (idiopathic) without complications of right lower extremity +I87302 Chronic venous hypertension (idiopathic) without complications of left lower extremity +I87303 Chronic venous hypertension (idiopathic) without complications of bilateral lower extremity +I87309 Chronic venous hypertension (idiopathic) without complications of unspecified lower extremity +I87311 Chronic venous hypertension (idiopathic) with ulcer of right lower extremity +I87312 Chronic venous hypertension (idiopathic) with ulcer of left lower extremity +I87313 Chronic venous hypertension (idiopathic) with ulcer of bilateral lower extremity +I87319 Chronic venous hypertension (idiopathic) with ulcer of unspecified lower extremity +I87321 Chronic venous hypertension (idiopathic) with inflammation of right lower extremity +I87322 Chronic venous hypertension (idiopathic) with inflammation of left lower extremity +I87323 Chronic venous hypertension (idiopathic) with inflammation of bilateral lower extremity +I87329 Chronic venous hypertension (idiopathic) with inflammation of unspecified lower extremity +I87331 Chronic venous hypertension (idiopathic) with ulcer and inflammation of right lower extremity +I87332 Chronic venous hypertension (idiopathic) with ulcer and inflammation of left lower extremity +I87333 Chronic venous hypertension (idiopathic) with ulcer and inflammation of bilateral lower extremity +I87339 Chronic venous hypertension (idiopathic) with ulcer and inflammation of unspecified lower extremity +I87391 Chronic venous hypertension (idiopathic) with other complications of right lower extremity +I87392 Chronic venous hypertension (idiopathic) with other complications of left lower extremity +I87393 Chronic venous hypertension (idiopathic) with other complications of bilateral lower extremity +I87399 Chronic venous hypertension (idiopathic) with other complications of unspecified lower extremity +I878 Other specified disorders of veins +I879 Disorder of vein, unspecified +I880 Nonspecific mesenteric lymphadenitis +I881 Chronic lymphadenitis, except mesenteric +I888 Other nonspecific lymphadenitis +I889 Nonspecific lymphadenitis, unspecified +I890 Lymphedema, not elsewhere classified +I891 Lymphangitis +I898 Other specified noninfective disorders of lymphatic vessels and lymph nodes +I899 Noninfective disorder of lymphatic vessels and lymph nodes, unspecified +I950 Idiopathic hypotension +I951 Orthostatic hypotension +I952 Hypotension due to drugs +I953 Hypotension of hemodialysis +I9581 Postprocedural hypotension +I9589 Other hypotension +I959 Hypotension, unspecified +I96 Gangrene, not elsewhere classified +I970 Postcardiotomy syndrome +I97110 Postprocedural cardiac insufficiency following cardiac surgery +I97111 Postprocedural cardiac insufficiency following other surgery +I97120 Postprocedural cardiac arrest following cardiac surgery +I97121 Postprocedural cardiac arrest following other surgery +I97130 Postprocedural heart failure following cardiac surgery +I97131 Postprocedural heart failure following other surgery +I97190 Other postprocedural cardiac functional disturbances following cardiac surgery +I97191 Other postprocedural cardiac functional disturbances following other surgery +I972 Postmastectomy lymphedema syndrome +I973 Postprocedural hypertension +I97410 Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating a cardiac catheterization +I97411 Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating a cardiac bypass +I97418 Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating other circulatory system procedure +I9742 Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating other procedure +I9751 Accidental puncture and laceration of a circulatory system organ or structure during a circulatory system procedure +I9752 Accidental puncture and laceration of a circulatory system organ or structure during other procedure +I97610 Postprocedural hemorrhage of a circulatory system organ or structure following a cardiac catheterization +I97611 Postprocedural hemorrhage of a circulatory system organ or structure following cardiac bypass +I97618 Postprocedural hemorrhage of a circulatory system organ or structure following other circulatory system procedure +I9762 Postprocedural hemorrhage of a circulatory system organ or structure following other procedure +I97620 Postprocedural hemorrhage of a circulatory system organ or structure following other procedure +I97621 Postprocedural hematoma of a circulatory system organ or structure following other procedure +I97622 Postprocedural seroma of a circulatory system organ or structure following other procedure +I97630 Postprocedural hematoma of a circulatory system organ or structure following a cardiac catheterization +I97631 Postprocedural hematoma of a circulatory system organ or structure following cardiac bypass +I97638 Postprocedural hematoma of a circulatory system organ or structure following other circulatory system procedure +I97640 Postprocedural seroma of a circulatory system organ or structure following a cardiac catheterization +I97641 Postprocedural seroma of a circulatory system organ or structure following cardiac bypass +I97648 Postprocedural seroma of a circulatory system organ or structure following other circulatory system procedure +I97710 Intraoperative cardiac arrest during cardiac surgery +I97711 Intraoperative cardiac arrest during other surgery +I97790 Other intraoperative cardiac functional disturbances during cardiac surgery +I97791 Other intraoperative cardiac functional disturbances during other surgery +I97810 Intraoperative cerebrovascular infarction during cardiac surgery +I97811 Intraoperative cerebrovascular infarction during other surgery +I97820 Postprocedural cerebrovascular infarction following cardiac surgery +I97821 Postprocedural cerebrovascular infarction following other surgery +I9788 Other intraoperative complications of the circulatory system, not elsewhere classified +I9789 Other postprocedural complications and disorders of the circulatory system, not elsewhere classified +I998 Other disorder of circulatory system +I999 Unspecified disorder of circulatory system +J00 Acute nasopharyngitis [common cold] +J0100 Acute maxillary sinusitis, unspecified +J0101 Acute recurrent maxillary sinusitis +J0110 Acute frontal sinusitis, unspecified +J0111 Acute recurrent frontal sinusitis +J0120 Acute ethmoidal sinusitis, unspecified +J0121 Acute recurrent ethmoidal sinusitis +J0130 Acute sphenoidal sinusitis, unspecified +J0131 Acute recurrent sphenoidal sinusitis +J0140 Acute pansinusitis, unspecified +J0141 Acute recurrent pansinusitis +J0180 Other acute sinusitis +J0181 Other acute recurrent sinusitis +J0190 Acute sinusitis, unspecified +J0191 Acute recurrent sinusitis, unspecified +J020 Streptococcal pharyngitis +J028 Acute pharyngitis due to other specified organisms +J029 Acute pharyngitis, unspecified +J0300 Acute streptococcal tonsillitis, unspecified +J0301 Acute recurrent streptococcal tonsillitis +J0380 Acute tonsillitis due to other specified organisms +J0381 Acute recurrent tonsillitis due to other specified organisms +J0390 Acute tonsillitis, unspecified +J0391 Acute recurrent tonsillitis, unspecified +J040 Acute laryngitis +J0410 Acute tracheitis without obstruction +J0411 Acute tracheitis with obstruction +J042 Acute laryngotracheitis +J0430 Supraglottitis, unspecified, without obstruction +J0431 Supraglottitis, unspecified, with obstruction +J050 Acute obstructive laryngitis [croup] +J0510 Acute epiglottitis without obstruction +J0511 Acute epiglottitis with obstruction +J060 Acute laryngopharyngitis +J069 Acute upper respiratory infection, unspecified +J09X1 Influenza due to identified novel influenza A virus with pneumonia +J09X2 Influenza due to identified novel influenza A virus with other respiratory manifestations +J09X3 Influenza due to identified novel influenza A virus with gastrointestinal manifestations +J09X9 Influenza due to identified novel influenza A virus with other manifestations +J1000 Influenza due to other identified influenza virus with unspecified type of pneumonia +J1001 Influenza due to other identified influenza virus with the same other identified influenza virus pneumonia +J1008 Influenza due to other identified influenza virus with other specified pneumonia +J101 Influenza due to other identified influenza virus with other respiratory manifestations +J102 Influenza due to other identified influenza virus with gastrointestinal manifestations +J1081 Influenza due to other identified influenza virus with encephalopathy +J1082 Influenza due to other identified influenza virus with myocarditis +J1083 Influenza due to other identified influenza virus with otitis media +J1089 Influenza due to other identified influenza virus with other manifestations +J1100 Influenza due to unidentified influenza virus with unspecified type of pneumonia +J1108 Influenza due to unidentified influenza virus with specified pneumonia +J111 Influenza due to unidentified influenza virus with other respiratory manifestations +J112 Influenza due to unidentified influenza virus with gastrointestinal manifestations +J1181 Influenza due to unidentified influenza virus with encephalopathy +J1182 Influenza due to unidentified influenza virus with myocarditis +J1183 Influenza due to unidentified influenza virus with otitis media +J1189 Influenza due to unidentified influenza virus with other manifestations +J120 Adenoviral pneumonia +J121 Respiratory syncytial virus pneumonia +J122 Parainfluenza virus pneumonia +J123 Human metapneumovirus pneumonia +J1281 Pneumonia due to SARS-associated coronavirus +J1289 Other viral pneumonia +J129 Viral pneumonia, unspecified +J13 Pneumonia due to Streptococcus pneumoniae +J14 Pneumonia due to Hemophilus influenzae +J150 Pneumonia due to Klebsiella pneumoniae +J151 Pneumonia due to Pseudomonas +J1520 Pneumonia due to staphylococcus, unspecified +J15211 Pneumonia due to Methicillin susceptible Staphylococcus aureus +J15212 Pneumonia due to Methicillin resistant Staphylococcus aureus +J1529 Pneumonia due to other staphylococcus +J153 Pneumonia due to streptococcus, group B +J154 Pneumonia due to other streptococci +J155 Pneumonia due to Escherichia coli +J156 Pneumonia due to other Gram-negative bacteria +J157 Pneumonia due to Mycoplasma pneumoniae +J158 Pneumonia due to other specified bacteria +J159 Unspecified bacterial pneumonia +J160 Chlamydial pneumonia +J168 Pneumonia due to other specified infectious organisms +J17 Pneumonia in diseases classified elsewhere +J180 Bronchopneumonia, unspecified organism +J181 Lobar pneumonia, unspecified organism +J182 Hypostatic pneumonia, unspecified organism +J188 Other pneumonia, unspecified organism Y +J189 Pneumonia, unspecified organism Y +J200 Acute bronchitis due to Mycoplasma pneumoniae +J201 Acute bronchitis due to Hemophilus influenzae +J202 Acute bronchitis due to streptococcus +J203 Acute bronchitis due to coxsackievirus +J204 Acute bronchitis due to parainfluenza virus +J205 Acute bronchitis due to respiratory syncytial virus +J206 Acute bronchitis due to rhinovirus +J207 Acute bronchitis due to echovirus +J208 Acute bronchitis due to other specified organisms +J209 Acute bronchitis, unspecified +J210 Acute bronchiolitis due to respiratory syncytial virus +J211 Acute bronchiolitis due to human metapneumovirus +J218 Acute bronchiolitis due to other specified organisms +J219 Acute bronchiolitis, unspecified +J22 Unspecified acute lower respiratory infection +J300 Vasomotor rhinitis +J301 Allergic rhinitis due to pollen +J302 Other seasonal allergic rhinitis +J305 Allergic rhinitis due to food +J3081 Allergic rhinitis due to animal (cat) (dog) hair and dander +J3089 Other allergic rhinitis +J309 Allergic rhinitis, unspecified +J310 Chronic rhinitis +J311 Chronic nasopharyngitis +J312 Chronic pharyngitis +J320 Chronic maxillary sinusitis +J321 Chronic frontal sinusitis +J322 Chronic ethmoidal sinusitis +J323 Chronic sphenoidal sinusitis +J324 Chronic pansinusitis +J328 Other chronic sinusitis +J329 Chronic sinusitis, unspecified +J330 Polyp of nasal cavity +J331 Polypoid sinus degeneration +J338 Other polyp of sinus +J339 Nasal polyp, unspecified +J340 Abscess, furuncle and carbuncle of nose +J341 Cyst and mucocele of nose and nasal sinus +J342 Deviated nasal septum +J343 Hypertrophy of nasal turbinates +J3481 Nasal mucositis (ulcerative) +J3489 Other specified disorders of nose and nasal sinuses +J349 Unspecified disorder of nose and nasal sinuses +J3501 Chronic tonsillitis +J3502 Chronic adenoiditis +J3503 Chronic tonsillitis and adenoiditis +J351 Hypertrophy of tonsils +J352 Hypertrophy of adenoids +J353 Hypertrophy of tonsils with hypertrophy of adenoids +J358 Other chronic diseases of tonsils and adenoids +J359 Chronic disease of tonsils and adenoids, unspecified +J36 Peritonsillar abscess +J370 Chronic laryngitis +J371 Chronic laryngotracheitis +J3800 Paralysis of vocal cords and larynx, unspecified +J3801 Paralysis of vocal cords and larynx, unilateral +J3802 Paralysis of vocal cords and larynx, bilateral +J381 Polyp of vocal cord and larynx +J382 Nodules of vocal cords +J383 Other diseases of vocal cords +J384 Edema of larynx +J385 Laryngeal spasm +J386 Stenosis of larynx +J387 Other diseases of larynx +J390 Retropharyngeal and parapharyngeal abscess +J391 Other abscess of pharynx +J392 Other diseases of pharynx +J393 Upper respiratory tract hypersensitivity reaction, site unspecified +J398 Other specified diseases of upper respiratory tract +J399 Disease of upper respiratory tract, unspecified +J40 Bronchitis, not specified as acute or chronic +J410 Simple chronic bronchitis +J411 Mucopurulent chronic bronchitis +J418 Mixed simple and mucopurulent chronic bronchitis +J42 Unspecified chronic bronchitis +J430 Unilateral pulmonary emphysema [MacLeod's syndrome] +J431 Panlobular emphysema +J432 Centrilobular emphysema +J438 Other emphysema +J439 Emphysema, unspecified +J440 Chronic obstructive pulmonary disease with (acute) lower respiratory infection +J441 Chronic obstructive pulmonary disease with (acute) exacerbation +J449 Chronic obstructive pulmonary disease, unspecified +J4520 Mild intermittent asthma, uncomplicated +J4521 Mild intermittent asthma with (acute) exacerbation +J4522 Mild intermittent asthma with status asthmaticus +J4530 Mild persistent asthma, uncomplicated +J4531 Mild persistent asthma with (acute) exacerbation +J4532 Mild persistent asthma with status asthmaticus +J4540 Moderate persistent asthma, uncomplicated +J4541 Moderate persistent asthma with (acute) exacerbation +J4542 Moderate persistent asthma with status asthmaticus +J4550 Severe persistent asthma, uncomplicated +J4551 Severe persistent asthma with (acute) exacerbation +J4552 Severe persistent asthma with status asthmaticus +J45901 Unspecified asthma with (acute) exacerbation +J45902 Unspecified asthma with status asthmaticus +J45909 Unspecified asthma, uncomplicated +J45990 Exercise induced bronchospasm +J45991 Cough variant asthma +J45998 Other asthma +J470 Bronchiectasis with acute lower respiratory infection +J471 Bronchiectasis with (acute) exacerbation +J479 Bronchiectasis, uncomplicated +J60 Coalworker's pneumoconiosis +J61 Pneumoconiosis due to asbestos and other mineral fibers +J620 Pneumoconiosis due to talc dust +J628 Pneumoconiosis due to other dust containing silica +J630 Aluminosis (of lung) +J631 Bauxite fibrosis (of lung) +J632 Berylliosis +J633 Graphite fibrosis (of lung) +J634 Siderosis +J635 Stannosis +J636 Pneumoconiosis due to other specified inorganic dusts +J64 Unspecified pneumoconiosis +J65 Pneumoconiosis associated with tuberculosis +J660 Byssinosis +J661 Flax-dressers' disease +J662 Cannabinosis +J668 Airway disease due to other specific organic dusts +J670 Farmer's lung +J671 Bagassosis +J672 Bird fancier's lung +J673 Suberosis +J674 Maltworker's lung +J675 Mushroom-worker's lung +J676 Maple-bark-stripper's lung +J677 Air conditioner and humidifier lung +J678 Hypersensitivity pneumonitis due to other organic dusts +J679 Hypersensitivity pneumonitis due to unspecified organic dust +J680 Bronchitis and pneumonitis due to chemicals, gases, fumes and vapors +J681 Pulmonary edema due to chemicals, gases, fumes and vapors +J682 Upper respiratory inflammation due to chemicals, gases, fumes and vapors, not elsewhere classified +J683 Other acute and subacute respiratory conditions due to chemicals, gases, fumes and vapors +J684 Chronic respiratory conditions due to chemicals, gases, fumes and vapors +J688 Other respiratory conditions due to chemicals, gases, fumes and vapors +J689 Unspecified respiratory condition due to chemicals, gases, fumes and vapors +J690 Pneumonitis due to inhalation of food and vomit +J691 Pneumonitis due to inhalation of oils and essences +J698 Pneumonitis due to inhalation of other solids and liquids +J700 Acute pulmonary manifestations due to radiation +J701 Chronic and other pulmonary manifestations due to radiation +J702 Acute drug-induced interstitial lung disorders +J703 Chronic drug-induced interstitial lung disorders +J704 Drug-induced interstitial lung disorders, unspecified +J705 Respiratory conditions due to smoke inhalation +J708 Respiratory conditions due to other specified external agents +J709 Respiratory conditions due to unspecified external agent +J80 Acute respiratory distress syndrome +J810 Acute pulmonary edema +J811 Chronic pulmonary edema +J82 Pulmonary eosinophilia, not elsewhere classified +J8401 Alveolar proteinosis +J8402 Pulmonary alveolar microlithiasis +J8403 Idiopathic pulmonary hemosiderosis +J8409 Other alveolar and parieto-alveolar conditions +J8410 Pulmonary fibrosis, unspecified +J84111 Idiopathic interstitial pneumonia, not otherwise specified +J84112 Idiopathic pulmonary fibrosis +J84113 Idiopathic non-specific interstitial pneumonitis +J84114 Acute interstitial pneumonitis +J84115 Respiratory bronchiolitis interstitial lung disease +J84116 Cryptogenic organizing pneumonia +J84117 Desquamative interstitial pneumonia +J8417 Other interstitial pulmonary diseases with fibrosis in diseases classified elsewhere +J842 Lymphoid interstitial pneumonia +J8481 Lymphangioleiomyomatosis +J8482 Adult pulmonary Langerhans cell histiocytosis +J8483 Surfactant mutations of the lung +J84841 Neuroendocrine cell hyperplasia of infancy +J84842 Pulmonary interstitial glycogenosis +J84843 Alveolar capillary dysplasia with vein misalignment +J84848 Other interstitial lung diseases of childhood +J8489 Other specified interstitial pulmonary diseases +J849 Interstitial pulmonary disease, unspecified +J850 Gangrene and necrosis of lung +J851 Abscess of lung with pneumonia +J852 Abscess of lung without pneumonia +J853 Abscess of mediastinum +J860 Pyothorax with fistula Y +J869 Pyothorax without fistula +J90 Pleural effusion, not elsewhere classified +J910 Malignant pleural effusion +J918 Pleural effusion in other conditions classified elsewhere +J920 Pleural plaque with presence of asbestos +J929 Pleural plaque without asbestos +J930 Spontaneous tension pneumothorax +J9311 Primary spontaneous pneumothorax +J9312 Secondary spontaneous pneumothorax +J9381 Chronic pneumothorax +J9382 Other air leak +J9383 Other pneumothorax +J939 Pneumothorax, unspecified +J940 Chylous effusion +J941 Fibrothorax +J942 Hemothorax +J948 Other specified pleural conditions +J949 Pleural condition, unspecified +J9500 Unspecified tracheostomy complication +J9501 Hemorrhage from tracheostomy stoma +J9502 Infection of tracheostomy stoma +J9503 Malfunction of tracheostomy stoma +J9504 Tracheo-esophageal fistula following tracheostomy +J9509 Other tracheostomy complication +J951 Acute pulmonary insufficiency following thoracic surgery +J952 Acute pulmonary insufficiency following nonthoracic surgery +J953 Chronic pulmonary insufficiency following surgery +J954 Chemical pneumonitis due to anesthesia +J955 Postprocedural subglottic stenosis +J9561 Intraoperative hemorrhage and hematoma of a respiratory system organ or structure complicating a respiratory system procedure +J9562 Intraoperative hemorrhage and hematoma of a respiratory system organ or structure complicating other procedure +J9571 Accidental puncture and laceration of a respiratory system organ or structure during a respiratory system procedure +J9572 Accidental puncture and laceration of a respiratory system organ or structure during other procedure +J95811 Postprocedural pneumothorax +J95812 Postprocedural air leak +J95821 Acute postprocedural respiratory failure +J95822 Acute and chronic postprocedural respiratory failure +J95830 Postprocedural hemorrhage of a respiratory system organ or structure following a respiratory system procedure +J95831 Postprocedural hemorrhage of a respiratory system organ or structure following other procedure +J9584 Transfusion-related acute lung injury (TRALI) +J95850 Mechanical complication of respirator +J95851 Ventilator associated pneumonia +J95859 Other complication of respirator [ventilator] +J95860 Postprocedural hematoma of a respiratory system organ or structure following a respiratory system procedure +J95861 Postprocedural hematoma of a respiratory system organ or structure following other procedure +J95862 Postprocedural seroma of a respiratory system organ or structure following a respiratory system procedure +J95863 Postprocedural seroma of a respiratory system organ or structure following other procedure +J9588 Other intraoperative complications of respiratory system, not elsewhere classified +J9589 Other postprocedural complications and disorders of respiratory system, not elsewhere classified +J9600 Acute respiratory failure, unspecified whether with hypoxia or hypercapnia +J9601 Acute respiratory failure with hypoxia +J9602 Acute respiratory failure with hypercapnia +J9610 Chronic respiratory failure, unspecified whether with hypoxia or hypercapnia +J9611 Chronic respiratory failure with hypoxia +J9612 Chronic respiratory failure with hypercapnia +J9620 Acute and chronic respiratory failure, unspecified whether with hypoxia or hypercapnia +J9621 Acute and chronic respiratory failure with hypoxia +J9622 Acute and chronic respiratory failure with hypercapnia +J9690 Respiratory failure, unspecified, unspecified whether with hypoxia or hypercapnia +J9691 Respiratory failure, unspecified with hypoxia +J9692 Respiratory failure, unspecified with hypercapnia +J9801 Acute bronchospasm +J9809 Other diseases of bronchus, not elsewhere classified +J9811 Atelectasis +J9819 Other pulmonary collapse +J982 Interstitial emphysema +J983 Compensatory emphysema +J984 Other disorders of lung +J985 Diseases of mediastinum, not elsewhere classified +J9851 Mediastinitis +J9859 Other diseases of mediastinum, not elsewhere classified +J986 Disorders of diaphragm +J988 Other specified respiratory disorders +J989 Respiratory disorder, unspecified +J99 Respiratory disorders in diseases classified elsewhere +K000 Anodontia +K001 Supernumerary teeth +K002 Abnormalities of size and form of teeth +K003 Mottled teeth +K004 Disturbances in tooth formation +K005 Hereditary disturbances in tooth structure, not elsewhere classified +K006 Disturbances in tooth eruption +K007 Teething syndrome +K008 Other disorders of tooth development +K009 Disorder of tooth development, unspecified +K010 Embedded teeth +K011 Impacted teeth +K023 Arrested dental caries +K0251 Dental caries on pit and fissure surface limited to enamel +K0252 Dental caries on pit and fissure surface penetrating into dentin +K0253 Dental caries on pit and fissure surface penetrating into pulp +K0261 Dental caries on smooth surface limited to enamel +K0262 Dental caries on smooth surface penetrating into dentin +K0263 Dental caries on smooth surface penetrating into pulp +K027 Dental root caries +K029 Dental caries, unspecified +K030 Excessive attrition of teeth +K031 Abrasion of teeth +K032 Erosion of teeth +K033 Pathological resorption of teeth +K034 Hypercementosis +K035 Ankylosis of teeth +K036 Deposits [accretions] on teeth +K037 Posteruptive color changes of dental hard tissues +K0381 Cracked tooth +K0389 Other specified diseases of hard tissues of teeth +K039 Disease of hard tissues of teeth, unspecified +K040 Pulpitis +K0401 Reversible pulpitis +K0402 Irreversible pulpitis +K041 Necrosis of pulp +K042 Pulp degeneration +K043 Abnormal hard tissue formation in pulp +K044 Acute apical periodontitis of pulpal origin +K045 Chronic apical periodontitis +K046 Periapical abscess with sinus +K047 Periapical abscess without sinus +K048 Radicular cyst +K0490 Unspecified diseases of pulp and periapical tissues +K0499 Other diseases of pulp and periapical tissues +K0500 Acute gingivitis, plaque induced +K0501 Acute gingivitis, non-plaque induced +K0510 Chronic gingivitis, plaque induced +K0511 Chronic gingivitis, non-plaque induced +K0520 Aggressive periodontitis, unspecified +K0521 Aggressive periodontitis, localized +K05211 Aggressive periodontitis, localized, slight +K05212 Aggressive periodontitis, localized, moderate +K05213 Aggressive periodontitis, localized, severe +K05219 Aggressive periodontitis, localized, unspecified severity +K0522 Aggressive periodontitis, generalized +K05221 Aggressive periodontitis, generalized, slight +K05222 Aggressive periodontitis, generalized, moderate +K05223 Aggressive periodontitis, generalized, severe +K05229 Aggressive periodontitis, generalized, unspecified severity +K0530 Chronic periodontitis, unspecified +K0531 Chronic periodontitis, localized +K05311 Chronic periodontitis, localized, slight +K05312 Chronic periodontitis, localized, moderate +K05313 Chronic periodontitis, localized, severe +K05319 Chronic periodontitis, localized, unspecified severity +K0532 Chronic periodontitis, generalized +K05321 Chronic periodontitis, generalized, slight +K05322 Chronic periodontitis, generalized, moderate +K05323 Chronic periodontitis, generalized, severe +K05329 Chronic periodontitis, generalized, unspecified severity +K054 Periodontosis +K055 Other periodontal diseases +K056 Periodontal disease, unspecified +K060 Gingival recession +K06010 Localized gingival recession, unspecified +K06011 Localized gingival recession, minimal +K06012 Localized gingival recession, moderate +K06013 Localized gingival recession, severe +K06020 Generalized gingival recession, unspecified +K06021 Generalized gingival recession, minimal +K06022 Generalized gingival recession, moderate +K06023 Generalized gingival recession, severe +K061 Gingival enlargement +K062 Gingival and edentulous alveolar ridge lesions associated with trauma +K063 Horizontal alveolar bone loss +K068 Other specified disorders of gingiva and edentulous alveolar ridge +K069 Disorder of gingiva and edentulous alveolar ridge, unspecified +K080 Exfoliation of teeth due to systemic causes +K08101 Complete loss of teeth, unspecified cause, class I +K08102 Complete loss of teeth, unspecified cause, class II +K08103 Complete loss of teeth, unspecified cause, class III +K08104 Complete loss of teeth, unspecified cause, class IV +K08109 Complete loss of teeth, unspecified cause, unspecified class +K08111 Complete loss of teeth due to trauma, class I +K08112 Complete loss of teeth due to trauma, class II +K08113 Complete loss of teeth due to trauma, class III +K08114 Complete loss of teeth due to trauma, class IV +K08119 Complete loss of teeth due to trauma, unspecified class +K08121 Complete loss of teeth due to periodontal diseases, class I +K08122 Complete loss of teeth due to periodontal diseases, class II +K08123 Complete loss of teeth due to periodontal diseases, class III +K08124 Complete loss of teeth due to periodontal diseases, class IV +K08129 Complete loss of teeth due to periodontal diseases, unspecified class +K08131 Complete loss of teeth due to caries, class I +K08132 Complete loss of teeth due to caries, class II +K08133 Complete loss of teeth due to caries, class III +K08134 Complete loss of teeth due to caries, class IV +K08139 Complete loss of teeth due to caries, unspecified class +K08191 Complete loss of teeth due to other specified cause, class I +K08192 Complete loss of teeth due to other specified cause, class II +K08193 Complete loss of teeth due to other specified cause, class III +K08194 Complete loss of teeth due to other specified cause, class IV +K08199 Complete loss of teeth due to other specified cause, unspecified class +K0820 Unspecified atrophy of edentulous alveolar ridge +K0821 Minimal atrophy of the mandible +K0822 Moderate atrophy of the mandible +K0823 Severe atrophy of the mandible +K0824 Minimal atrophy of maxilla +K0825 Moderate atrophy of the maxilla +K0826 Severe atrophy of the maxilla +K083 Retained dental root +K08401 Partial loss of teeth, unspecified cause, class I +K08402 Partial loss of teeth, unspecified cause, class II +K08403 Partial loss of teeth, unspecified cause, class III +K08404 Partial loss of teeth, unspecified cause, class IV +K08409 Partial loss of teeth, unspecified cause, unspecified class +K08411 Partial loss of teeth due to trauma, class I +K08412 Partial loss of teeth due to trauma, class II +K08413 Partial loss of teeth due to trauma, class III +K08414 Partial loss of teeth due to trauma, class IV +K08419 Partial loss of teeth due to trauma, unspecified class +K08421 Partial loss of teeth due to periodontal diseases, class I +K08422 Partial loss of teeth due to periodontal diseases, class II +K08423 Partial loss of teeth due to periodontal diseases, class III +K08424 Partial loss of teeth due to periodontal diseases, class IV +K08429 Partial loss of teeth due to periodontal diseases, unspecified class +K08431 Partial loss of teeth due to caries, class I +K08432 Partial loss of teeth due to caries, class II +K08433 Partial loss of teeth due to caries, class III +K08434 Partial loss of teeth due to caries, class IV +K08439 Partial loss of teeth due to caries, unspecified class +K08491 Partial loss of teeth due to other specified cause, class I +K08492 Partial loss of teeth due to other specified cause, class II +K08493 Partial loss of teeth due to other specified cause, class III +K08494 Partial loss of teeth due to other specified cause, class IV +K08499 Partial loss of teeth due to other specified cause, unspecified class +K0850 Unsatisfactory restoration of tooth, unspecified +K0851 Open restoration margins of tooth +K0852 Unrepairable overhanging of dental restorative materials +K08530 Fractured dental restorative material without loss of material +K08531 Fractured dental restorative material with loss of material +K08539 Fractured dental restorative material, unspecified +K0854 Contour of existing restoration of tooth biologically incompatible with oral health +K0855 Allergy to existing dental restorative material +K0856 Poor aesthetic of existing restoration of tooth +K0859 Other unsatisfactory restoration of tooth +K088 Other specified disorders of teeth and supporting structures +K0881 Primary occlusal trauma +K0882 Secondary occlusal trauma +K0889 Other specified disorders of teeth and supporting structures +K089 Disorder of teeth and supporting structures, unspecified +K090 Developmental odontogenic cysts +K091 Developmental (nonodontogenic) cysts of oral region +K098 Other cysts of oral region, not elsewhere classified +K099 Cyst of oral region, unspecified +K110 Atrophy of salivary gland +K111 Hypertrophy of salivary gland +K1120 Sialoadenitis, unspecified +K1121 Acute sialoadenitis +K1122 Acute recurrent sialoadenitis +K1123 Chronic sialoadenitis +K113 Abscess of salivary gland +K114 Fistula of salivary gland +K115 Sialolithiasis +K116 Mucocele of salivary gland +K117 Disturbances of salivary secretion +K118 Other diseases of salivary glands +K119 Disease of salivary gland, unspecified +K120 Recurrent oral aphthae +K121 Other forms of stomatitis +K122 Cellulitis and abscess of mouth +K1230 Oral mucositis (ulcerative), unspecified +K1231 Oral mucositis (ulcerative) due to antineoplastic therapy +K1232 Oral mucositis (ulcerative) due to other drugs +K1233 Oral mucositis (ulcerative) due to radiation +K1239 Other oral mucositis (ulcerative) +K130 Diseases of lips +K131 Cheek and lip biting +K1321 Leukoplakia of oral mucosa, including tongue +K1322 Minimal keratinized residual ridge mucosa +K1323 Excessive keratinized residual ridge mucosa +K1324 Leukokeratosis nicotina palati +K1329 Other disturbances of oral epithelium, including tongue +K133 Hairy leukoplakia +K134 Granuloma and granuloma-like lesions of oral mucosa +K135 Oral submucous fibrosis +K136 Irritative hyperplasia of oral mucosa +K1370 Unspecified lesions of oral mucosa +K1379 Other lesions of oral mucosa +K140 Glossitis +K141 Geographic tongue +K142 Median rhomboid glossitis +K143 Hypertrophy of tongue papillae +K144 Atrophy of tongue papillae +K145 Plicated tongue +K146 Glossodynia +K148 Other diseases of tongue +K149 Disease of tongue, unspecified +K200 Eosinophilic esophagitis +K208 Other esophagitis +K209 Esophagitis, unspecified +K210 Gastro-esophageal reflux disease with esophagitis +K219 Gastro-esophageal reflux disease without esophagitis Y +K220 Achalasia of cardia Y +K2210 Ulcer of esophagus without bleeding Y +K2211 Ulcer of esophagus with bleeding Y +K222 Esophageal obstruction Y +K223 Perforation of esophagus +K224 Dyskinesia of esophagus Y +K225 Diverticulum of esophagus, acquired Y +K226 Gastro-esophageal laceration-hemorrhage syndrome Y +K2270 Barrett's esophagus without dysplasia Y +K22710 Barrett's esophagus with low grade dysplasia Y +K22711 Barrett's esophagus with high grade dysplasia Y +K22719 Barrett's esophagus with dysplasia, unspecified Y +K228 Other specified diseases of esophagus Y +K229 Disease of esophagus, unspecified Y +K23 Disorders of esophagus in diseases classified elsewhere Y +K250 Acute gastric ulcer with hemorrhage +K251 Acute gastric ulcer with perforation +K252 Acute gastric ulcer with both hemorrhage and perforation +K253 Acute gastric ulcer without hemorrhage or perforation +K254 Chronic or unspecified gastric ulcer with hemorrhage +K255 Chronic or unspecified gastric ulcer with perforation +K256 Chronic or unspecified gastric ulcer with both hemorrhage and perforation +K257 Chronic gastric ulcer without hemorrhage or perforation +K259 Gastric ulcer, unspecified as acute or chronic, without hemorrhage or perforation +K260 Acute duodenal ulcer with hemorrhage +K261 Acute duodenal ulcer with perforation +K262 Acute duodenal ulcer with both hemorrhage and perforation +K263 Acute duodenal ulcer without hemorrhage or perforation +K264 Chronic or unspecified duodenal ulcer with hemorrhage +K265 Chronic or unspecified duodenal ulcer with perforation +K266 Chronic or unspecified duodenal ulcer with both hemorrhage and perforation +K267 Chronic duodenal ulcer without hemorrhage or perforation +K269 Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation +K270 Acute peptic ulcer, site unspecified, with hemorrhage +K271 Acute peptic ulcer, site unspecified, with perforation +K272 Acute peptic ulcer, site unspecified, with both hemorrhage and perforation +K273 Acute peptic ulcer, site unspecified, without hemorrhage or perforation +K274 Chronic or unspecified peptic ulcer, site unspecified, with hemorrhage +K275 Chronic or unspecified peptic ulcer, site unspecified, with perforation +K276 Chronic or unspecified peptic ulcer, site unspecified, with both hemorrhage and perforation +K277 Chronic peptic ulcer, site unspecified, without hemorrhage or perforation +K279 Peptic ulcer, site unspecified, unspecified as acute or chronic, without hemorrhage or perforation +K280 Acute gastrojejunal ulcer with hemorrhage +K281 Acute gastrojejunal ulcer with perforation +K282 Acute gastrojejunal ulcer with both hemorrhage and perforation +K283 Acute gastrojejunal ulcer without hemorrhage or perforation +K284 Chronic or unspecified gastrojejunal ulcer with hemorrhage +K285 Chronic or unspecified gastrojejunal ulcer with perforation +K286 Chronic or unspecified gastrojejunal ulcer with both hemorrhage and perforation +K287 Chronic gastrojejunal ulcer without hemorrhage or perforation +K289 Gastrojejunal ulcer, unspecified as acute or chronic, without hemorrhage or perforation +K2900 Acute gastritis without bleeding +K2901 Acute gastritis with bleeding +K2920 Alcoholic gastritis without bleeding +K2921 Alcoholic gastritis with bleeding +K2930 Chronic superficial gastritis without bleeding +K2931 Chronic superficial gastritis with bleeding +K2940 Chronic atrophic gastritis without bleeding +K2941 Chronic atrophic gastritis with bleeding +K2950 Unspecified chronic gastritis without bleeding +K2951 Unspecified chronic gastritis with bleeding +K2960 Other gastritis without bleeding +K2961 Other gastritis with bleeding +K2970 Gastritis, unspecified, without bleeding +K2971 Gastritis, unspecified, with bleeding +K2980 Duodenitis without bleeding +K2981 Duodenitis with bleeding +K2990 Gastroduodenitis, unspecified, without bleeding +K2991 Gastroduodenitis, unspecified, with bleeding +K30 Functional dyspepsia +K310 Acute dilatation of stomach +K311 Adult hypertrophic pyloric stenosis +K312 Hourglass stricture and stenosis of stomach +K313 Pylorospasm, not elsewhere classified +K314 Gastric diverticulum +K315 Obstruction of duodenum +K316 Fistula of stomach and duodenum +K317 Polyp of stomach and duodenum +K31811 Angiodysplasia of stomach and duodenum with bleeding +K31819 Angiodysplasia of stomach and duodenum without bleeding +K3182 Dieulafoy lesion (hemorrhagic) of stomach and duodenum +K3183 Achlorhydria +K3184 Gastroparesis +K3189 Other diseases of stomach and duodenum +K319 Disease of stomach and duodenum, unspecified +K352 Acute appendicitis with generalized peritonitis +K3520 Acute appendicitis with generalized peritonitis, without abscess +K3521 Acute appendicitis with generalized peritonitis, with abscess +K353 Acute appendicitis with localized peritonitis +K3530 Acute appendicitis with localized peritonitis, without perforation or gangrene +K3531 Acute appendicitis with localized peritonitis and gangrene, without perforation +K3532 Acute appendicitis with perforation and localized peritonitis, without abscess +K3533 Acute appendicitis with perforation and localized peritonitis, with abscess +K3580 Unspecified acute appendicitis +K3589 Other acute appendicitis +K35890 Other acute appendicitis without perforation or gangrene +K35891 Other acute appendicitis without perforation, with gangrene +K36 Other appendicitis +K37 Unspecified appendicitis +K380 Hyperplasia of appendix +K381 Appendicular concretions +K382 Diverticulum of appendix +K383 Fistula of appendix +K388 Other specified diseases of appendix +K389 Disease of appendix, unspecified +K4000 Bilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent +K4001 Bilateral inguinal hernia, with obstruction, without gangrene, recurrent +K4010 Bilateral inguinal hernia, with gangrene, not specified as recurrent +K4011 Bilateral inguinal hernia, with gangrene, recurrent +K4020 Bilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent +K4021 Bilateral inguinal hernia, without obstruction or gangrene, recurrent +K4030 Unilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent +K4031 Unilateral inguinal hernia, with obstruction, without gangrene, recurrent +K4040 Unilateral inguinal hernia, with gangrene, not specified as recurrent +K4041 Unilateral inguinal hernia, with gangrene, recurrent +K4090 Unilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent +K4091 Unilateral inguinal hernia, without obstruction or gangrene, recurrent +K4100 Bilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent +K4101 Bilateral femoral hernia, with obstruction, without gangrene, recurrent +K4110 Bilateral femoral hernia, with gangrene, not specified as recurrent +K4111 Bilateral femoral hernia, with gangrene, recurrent +K4120 Bilateral femoral hernia, without obstruction or gangrene, not specified as recurrent +K4121 Bilateral femoral hernia, without obstruction or gangrene, recurrent +K4130 Unilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent +K4131 Unilateral femoral hernia, with obstruction, without gangrene, recurrent +K4140 Unilateral femoral hernia, with gangrene, not specified as recurrent +K4141 Unilateral femoral hernia, with gangrene, recurrent +K4190 Unilateral femoral hernia, without obstruction or gangrene, not specified as recurrent +K4191 Unilateral femoral hernia, without obstruction or gangrene, recurrent +K420 Umbilical hernia with obstruction, without gangrene +K421 Umbilical hernia with gangrene +K429 Umbilical hernia without obstruction or gangrene +K430 Incisional hernia with obstruction, without gangrene +K431 Incisional hernia with gangrene +K432 Incisional hernia without obstruction or gangrene +K433 Parastomal hernia with obstruction, without gangrene +K434 Parastomal hernia with gangrene +K435 Parastomal hernia without obstruction or gangrene +K436 Other and unspecified ventral hernia with obstruction, without gangrene +K437 Other and unspecified ventral hernia with gangrene +K439 Ventral hernia without obstruction or gangrene +K440 Diaphragmatic hernia with obstruction, without gangrene +K441 Diaphragmatic hernia with gangrene +K449 Diaphragmatic hernia without obstruction or gangrene +K450 Other specified abdominal hernia with obstruction, without gangrene +K451 Other specified abdominal hernia with gangrene +K458 Other specified abdominal hernia without obstruction or gangrene +K460 Unspecified abdominal hernia with obstruction, without gangrene +K461 Unspecified abdominal hernia with gangrene +K469 Unspecified abdominal hernia without obstruction or gangrene +K5000 Crohn's disease of small intestine without complications +K50011 Crohn's disease of small intestine with rectal bleeding +K50012 Crohn's disease of small intestine with intestinal obstruction +K50013 Crohn's disease of small intestine with fistula +K50014 Crohn's disease of small intestine with abscess +K50018 Crohn's disease of small intestine with other complication +K50019 Crohn's disease of small intestine with unspecified complications +K5010 Crohn's disease of large intestine without complications +K50111 Crohn's disease of large intestine with rectal bleeding +K50112 Crohn's disease of large intestine with intestinal obstruction +K50113 Crohn's disease of large intestine with fistula +K50114 Crohn's disease of large intestine with abscess +K50118 Crohn's disease of large intestine with other complication +K50119 Crohn's disease of large intestine with unspecified complications +K5080 Crohn's disease of both small and large intestine without complications +K50811 Crohn's disease of both small and large intestine with rectal bleeding +K50812 Crohn's disease of both small and large intestine with intestinal obstruction +K50813 Crohn's disease of both small and large intestine with fistula +K50814 Crohn's disease of both small and large intestine with abscess +K50818 Crohn's disease of both small and large intestine with other complication +K50819 Crohn's disease of both small and large intestine with unspecified complications +K5090 Crohn's disease, unspecified, without complications +K50911 Crohn's disease, unspecified, with rectal bleeding +K50912 Crohn's disease, unspecified, with intestinal obstruction +K50913 Crohn's disease, unspecified, with fistula +K50914 Crohn's disease, unspecified, with abscess +K50918 Crohn's disease, unspecified, with other complication +K50919 Crohn's disease, unspecified, with unspecified complications +K5100 Ulcerative (chronic) pancolitis without complications +K51011 Ulcerative (chronic) pancolitis with rectal bleeding +K51012 Ulcerative (chronic) pancolitis with intestinal obstruction +K51013 Ulcerative (chronic) pancolitis with fistula +K51014 Ulcerative (chronic) pancolitis with abscess +K51018 Ulcerative (chronic) pancolitis with other complication +K51019 Ulcerative (chronic) pancolitis with unspecified complications +K5120 Ulcerative (chronic) proctitis without complications +K51211 Ulcerative (chronic) proctitis with rectal bleeding +K51212 Ulcerative (chronic) proctitis with intestinal obstruction +K51213 Ulcerative (chronic) proctitis with fistula +K51214 Ulcerative (chronic) proctitis with abscess +K51218 Ulcerative (chronic) proctitis with other complication +K51219 Ulcerative (chronic) proctitis with unspecified complications +K5130 Ulcerative (chronic) rectosigmoiditis without complications +K51311 Ulcerative (chronic) rectosigmoiditis with rectal bleeding +K51312 Ulcerative (chronic) rectosigmoiditis with intestinal obstruction +K51313 Ulcerative (chronic) rectosigmoiditis with fistula +K51314 Ulcerative (chronic) rectosigmoiditis with abscess +K51318 Ulcerative (chronic) rectosigmoiditis with other complication +K51319 Ulcerative (chronic) rectosigmoiditis with unspecified complications +K5140 Inflammatory polyps of colon without complications +K51411 Inflammatory polyps of colon with rectal bleeding +K51412 Inflammatory polyps of colon with intestinal obstruction +K51413 Inflammatory polyps of colon with fistula +K51414 Inflammatory polyps of colon with abscess +K51418 Inflammatory polyps of colon with other complication +K51419 Inflammatory polyps of colon with unspecified complications +K5150 Left sided colitis without complications +K51511 Left sided colitis with rectal bleeding +K51512 Left sided colitis with intestinal obstruction +K51513 Left sided colitis with fistula +K51514 Left sided colitis with abscess +K51518 Left sided colitis with other complication +K51519 Left sided colitis with unspecified complications +K5180 Other ulcerative colitis without complications +K51811 Other ulcerative colitis with rectal bleeding +K51812 Other ulcerative colitis with intestinal obstruction +K51813 Other ulcerative colitis with fistula +K51814 Other ulcerative colitis with abscess +K51818 Other ulcerative colitis with other complication +K51819 Other ulcerative colitis with unspecified complications +K5190 Ulcerative colitis, unspecified, without complications +K51911 Ulcerative colitis, unspecified with rectal bleeding +K51912 Ulcerative colitis, unspecified with intestinal obstruction +K51913 Ulcerative colitis, unspecified with fistula +K51914 Ulcerative colitis, unspecified with abscess +K51918 Ulcerative colitis, unspecified with other complication +K51919 Ulcerative colitis, unspecified with unspecified complications +K520 Gastroenteritis and colitis due to radiation +K521 Toxic gastroenteritis and colitis +K522 Allergic and dietetic gastroenteritis and colitis +K5221 Food protein-induced enterocolitis syndrome +K5222 Food protein-induced enteropathy +K5229 Other allergic and dietetic gastroenteritis and colitis +K523 Indeterminate colitis +K5281 Eosinophilic gastritis or gastroenteritis +K5282 Eosinophilic colitis +K52831 Collagenous colitis +K52832 Lymphocytic colitis +K52838 Other microscopic colitis +K52839 Microscopic colitis, unspecified +K5289 Other specified noninfective gastroenteritis and colitis +K529 Noninfective gastroenteritis and colitis, unspecified +K550 Acute vascular disorders of intestine +K55011 Focal (segmental) acute (reversible) ischemia of small intestine +K55012 Diffuse acute (reversible) ischemia of small intestine +K55019 Acute (reversible) ischemia of small intestine, extent unspecified +K55021 Focal (segmental) acute infarction of small intestine +K55022 Diffuse acute infarction of small intestine +K55029 Acute infarction of small intestine, extent unspecified +K55031 Focal (segmental) acute (reversible) ischemia of large intestine +K55032 Diffuse acute (reversible) ischemia of large intestine +K55039 Acute (reversible) ischemia of large intestine, extent unspecified +K55041 Focal (segmental) acute infarction of large intestine +K55042 Diffuse acute infarction of large intestine +K55049 Acute infarction of large intestine, extent unspecified +K55051 Focal (segmental) acute (reversible) ischemia of intestine, part unspecified +K55052 Diffuse acute (reversible) ischemia of intestine, part unspecified +K55059 Acute (reversible) ischemia of intestine, part and extent unspecified +K55061 Focal (segmental) acute infarction of intestine, part unspecified +K55062 Diffuse acute infarction of intestine, part unspecified +K55069 Acute infarction of intestine, part and extent unspecified +K551 Chronic vascular disorders of intestine +K5520 Angiodysplasia of colon without hemorrhage +K5521 Angiodysplasia of colon with hemorrhage +K5530 Necrotizing enterocolitis, unspecified +K5531 Stage 1 necrotizing enterocolitis +K5532 Stage 2 necrotizing enterocolitis +K5533 Stage 3 necrotizing enterocolitis +K558 Other vascular disorders of intestine +K559 Vascular disorder of intestine, unspecified +K560 Paralytic ileus +K561 Intussusception +K562 Volvulus +K563 Gallstone ileus +K5641 Fecal impaction +K5649 Other impaction of intestine +K565 Intestinal adhesions [bands] with obstruction (postprocedural) (postinfection) +K5650 Intestinal adhesions [bands], unspecified as to partial versus complete obstruction +K5651 Intestinal adhesions [bands], with partial obstruction +K5652 Intestinal adhesions [bands] with complete obstruction +K5660 Unspecified intestinal obstruction +K56600 Partial intestinal obstruction, unspecified as to cause +K56601 Complete intestinal obstruction, unspecified as to cause +K56609 Unspecified intestinal obstruction, unspecified as to partial versus complete obstruction +K5669 Other intestinal obstruction +K56690 Other partial intestinal obstruction +K56691 Other complete intestinal obstruction +K56699 Other intestinal obstruction unspecified as to partial versus complete obstruction +K567 Ileus, unspecified +K5700 Diverticulitis of small intestine with perforation and abscess without bleeding +K5701 Diverticulitis of small intestine with perforation and abscess with bleeding +K5710 Diverticulosis of small intestine without perforation or abscess without bleeding +K5711 Diverticulosis of small intestine without perforation or abscess with bleeding +K5712 Diverticulitis of small intestine without perforation or abscess without bleeding +K5713 Diverticulitis of small intestine without perforation or abscess with bleeding +K5720 Diverticulitis of large intestine with perforation and abscess without bleeding +K5721 Diverticulitis of large intestine with perforation and abscess with bleeding +K5730 Diverticulosis of large intestine without perforation or abscess without bleeding +K5731 Diverticulosis of large intestine without perforation or abscess with bleeding +K5732 Diverticulitis of large intestine without perforation or abscess without bleeding +K5733 Diverticulitis of large intestine without perforation or abscess with bleeding +K5740 Diverticulitis of both small and large intestine with perforation and abscess without bleeding +K5741 Diverticulitis of both small and large intestine with perforation and abscess with bleeding +K5750 Diverticulosis of both small and large intestine without perforation or abscess without bleeding +K5751 Diverticulosis of both small and large intestine without perforation or abscess with bleeding +K5752 Diverticulitis of both small and large intestine without perforation or abscess without bleeding +K5753 Diverticulitis of both small and large intestine without perforation or abscess with bleeding +K5780 Diverticulitis of intestine, part unspecified, with perforation and abscess without bleeding +K5781 Diverticulitis of intestine, part unspecified, with perforation and abscess with bleeding +K5790 Diverticulosis of intestine, part unspecified, without perforation or abscess without bleeding +K5791 Diverticulosis of intestine, part unspecified, without perforation or abscess with bleeding +K5792 Diverticulitis of intestine, part unspecified, without perforation or abscess without bleeding +K5793 Diverticulitis of intestine, part unspecified, without perforation or abscess with bleeding +K580 Irritable bowel syndrome with diarrhea +K581 Irritable bowel syndrome with constipation +K582 Mixed irritable bowel syndrome +K588 Other irritable bowel syndrome +K589 Irritable bowel syndrome without diarrhea +K5900 Constipation, unspecified +K5901 Slow transit constipation +K5902 Outlet dysfunction constipation +K5903 Drug induced constipation +K5904 Chronic idiopathic constipation +K5909 Other constipation +K591 Functional diarrhea +K592 Neurogenic bowel, not elsewhere classified +K593 Megacolon, not elsewhere classified +K5931 Toxic megacolon +K5939 Other megacolon +K594 Anal spasm +K598 Other specified functional intestinal disorders +K599 Functional intestinal disorder, unspecified +K600 Acute anal fissure +K601 Chronic anal fissure +K602 Anal fissure, unspecified +K603 Anal fistula +K604 Rectal fistula +K605 Anorectal fistula +K610 Anal abscess +K611 Rectal abscess +K612 Anorectal abscess +K613 Ischiorectal abscess +K6131 Horseshoe abscess +K6139 Other ischiorectal abscess +K614 Intrasphincteric abscess +K615 Supralevator abscess +K620 Anal polyp +K621 Rectal polyp +K622 Anal prolapse +K623 Rectal prolapse +K624 Stenosis of anus and rectum +K625 Hemorrhage of anus and rectum +K626 Ulcer of anus and rectum +K627 Radiation proctitis +K6281 Anal sphincter tear (healed) (nontraumatic) (old) +K6282 Dysplasia of anus +K6289 Other specified diseases of anus and rectum +K629 Disease of anus and rectum, unspecified +K630 Abscess of intestine +K631 Perforation of intestine (nontraumatic) +K632 Fistula of intestine +K633 Ulcer of intestine +K634 Enteroptosis +K635 Polyp of colon +K6381 Dieulafoy lesion of intestine +K6389 Other specified diseases of intestine +K639 Disease of intestine, unspecified +K640 First degree hemorrhoids +K641 Second degree hemorrhoids +K642 Third degree hemorrhoids +K643 Fourth degree hemorrhoids +K644 Residual hemorrhoidal skin tags +K645 Perianal venous thrombosis +K648 Other hemorrhoids +K649 Unspecified hemorrhoids +K650 Generalized (acute) peritonitis +K651 Peritoneal abscess +K652 Spontaneous bacterial peritonitis +K653 Choleperitonitis +K654 Sclerosing mesenteritis +K658 Other peritonitis +K659 Peritonitis, unspecified +K660 Peritoneal adhesions (postprocedural) (postinfection) +K661 Hemoperitoneum +K668 Other specified disorders of peritoneum +K669 Disorder of peritoneum, unspecified +K67 Disorders of peritoneum in infectious diseases classified elsewhere +K6811 Postprocedural retroperitoneal abscess +K6812 Psoas muscle abscess +K6819 Other retroperitoneal abscess +K689 Other disorders of retroperitoneum +K700 Alcoholic fatty liver +K7010 Alcoholic hepatitis without ascites +K7011 Alcoholic hepatitis with ascites +K702 Alcoholic fibrosis and sclerosis of liver +K7030 Alcoholic cirrhosis of liver without ascites +K7031 Alcoholic cirrhosis of liver with ascites +K7040 Alcoholic hepatic failure without coma +K7041 Alcoholic hepatic failure with coma +K709 Alcoholic liver disease, unspecified +K710 Toxic liver disease with cholestasis +K7110 Toxic liver disease with hepatic necrosis, without coma +K7111 Toxic liver disease with hepatic necrosis, with coma +K712 Toxic liver disease with acute hepatitis +K713 Toxic liver disease with chronic persistent hepatitis +K714 Toxic liver disease with chronic lobular hepatitis +K7150 Toxic liver disease with chronic active hepatitis without ascites +K7151 Toxic liver disease with chronic active hepatitis with ascites +K716 Toxic liver disease with hepatitis, not elsewhere classified +K717 Toxic liver disease with fibrosis and cirrhosis of liver +K718 Toxic liver disease with other disorders of liver +K719 Toxic liver disease, unspecified +K7200 Acute and subacute hepatic failure without coma +K7201 Acute and subacute hepatic failure with coma +K7210 Chronic hepatic failure without coma +K7211 Chronic hepatic failure with coma +K7290 Hepatic failure, unspecified without coma +K7291 Hepatic failure, unspecified with coma +K730 Chronic persistent hepatitis, not elsewhere classified +K731 Chronic lobular hepatitis, not elsewhere classified +K732 Chronic active hepatitis, not elsewhere classified +K738 Other chronic hepatitis, not elsewhere classified +K739 Chronic hepatitis, unspecified +K740 Hepatic fibrosis +K741 Hepatic sclerosis +K742 Hepatic fibrosis with hepatic sclerosis +K743 Primary biliary cirrhosis +K744 Secondary biliary cirrhosis +K745 Biliary cirrhosis, unspecified +K7460 Unspecified cirrhosis of liver +K7469 Other cirrhosis of liver +K750 Abscess of liver +K751 Phlebitis of portal vein +K752 Nonspecific reactive hepatitis +K753 Granulomatous hepatitis, not elsewhere classified +K754 Autoimmune hepatitis +K7581 Nonalcoholic steatohepatitis (NASH) +K7589 Other specified inflammatory liver diseases +K759 Inflammatory liver disease, unspecified +K760 Fatty (change of) liver, not elsewhere classified +K761 Chronic passive congestion of liver +K762 Central hemorrhagic necrosis of liver +K763 Infarction of liver +K764 Peliosis hepatis +K765 Hepatic veno-occlusive disease +K766 Portal hypertension +K767 Hepatorenal syndrome +K7681 Hepatopulmonary syndrome +K7689 Other specified diseases of liver +K769 Liver disease, unspecified +K77 Liver disorders in diseases classified elsewhere +K8000 Calculus of gallbladder with acute cholecystitis without obstruction +K8001 Calculus of gallbladder with acute cholecystitis with obstruction +K8010 Calculus of gallbladder with chronic cholecystitis without obstruction +K8011 Calculus of gallbladder with chronic cholecystitis with obstruction +K8012 Calculus of gallbladder with acute and chronic cholecystitis without obstruction +K8013 Calculus of gallbladder with acute and chronic cholecystitis with obstruction +K8018 Calculus of gallbladder with other cholecystitis without obstruction +K8019 Calculus of gallbladder with other cholecystitis with obstruction +K8020 Calculus of gallbladder without cholecystitis without obstruction +K8021 Calculus of gallbladder without cholecystitis with obstruction +K8030 Calculus of bile duct with cholangitis, unspecified, without obstruction +K8031 Calculus of bile duct with cholangitis, unspecified, with obstruction +K8032 Calculus of bile duct with acute cholangitis without obstruction +K8033 Calculus of bile duct with acute cholangitis with obstruction +K8034 Calculus of bile duct with chronic cholangitis without obstruction +K8035 Calculus of bile duct with chronic cholangitis with obstruction +K8036 Calculus of bile duct with acute and chronic cholangitis without obstruction +K8037 Calculus of bile duct with acute and chronic cholangitis with obstruction +K8040 Calculus of bile duct with cholecystitis, unspecified, without obstruction +K8041 Calculus of bile duct with cholecystitis, unspecified, with obstruction +K8042 Calculus of bile duct with acute cholecystitis without obstruction +K8043 Calculus of bile duct with acute cholecystitis with obstruction +K8044 Calculus of bile duct with chronic cholecystitis without obstruction +K8045 Calculus of bile duct with chronic cholecystitis with obstruction +K8046 Calculus of bile duct with acute and chronic cholecystitis without obstruction +K8047 Calculus of bile duct with acute and chronic cholecystitis with obstruction +K8050 Calculus of bile duct without cholangitis or cholecystitis without obstruction +K8051 Calculus of bile duct without cholangitis or cholecystitis with obstruction +K8060 Calculus of gallbladder and bile duct with cholecystitis, unspecified, without obstruction +K8061 Calculus of gallbladder and bile duct with cholecystitis, unspecified, with obstruction +K8062 Calculus of gallbladder and bile duct with acute cholecystitis without obstruction +K8063 Calculus of gallbladder and bile duct with acute cholecystitis with obstruction +K8064 Calculus of gallbladder and bile duct with chronic cholecystitis without obstruction +K8065 Calculus of gallbladder and bile duct with chronic cholecystitis with obstruction +K8066 Calculus of gallbladder and bile duct with acute and chronic cholecystitis without obstruction +K8067 Calculus of gallbladder and bile duct with acute and chronic cholecystitis with obstruction +K8070 Calculus of gallbladder and bile duct without cholecystitis without obstruction +K8071 Calculus of gallbladder and bile duct without cholecystitis with obstruction +K8080 Other cholelithiasis without obstruction +K8081 Other cholelithiasis with obstruction +K810 Acute cholecystitis +K811 Chronic cholecystitis +K812 Acute cholecystitis with chronic cholecystitis +K819 Cholecystitis, unspecified +K820 Obstruction of gallbladder +K821 Hydrops of gallbladder +K822 Perforation of gallbladder +K823 Fistula of gallbladder +K824 Cholesterolosis of gallbladder +K828 Other specified diseases of gallbladder +K829 Disease of gallbladder, unspecified +K82A1 Gangrene of gallbladder in cholecystitis +K82A2 Perforation of gallbladder in cholecystitis +K830 Cholangitis +K8301 Primary sclerosing cholangitis +K8309 Other cholangitis +K831 Obstruction of bile duct +K832 Perforation of bile duct +K833 Fistula of bile duct +K834 Spasm of sphincter of Oddi +K835 Biliary cyst +K838 Other specified diseases of biliary tract +K839 Disease of biliary tract, unspecified +K850 Idiopathic acute pancreatitis +K8500 Idiopathic acute pancreatitis without necrosis or infection +K8501 Idiopathic acute pancreatitis with uninfected necrosis +K8502 Idiopathic acute pancreatitis with infected necrosis +K851 Biliary acute pancreatitis +K8510 Biliary acute pancreatitis without necrosis or infection +K8511 Biliary acute pancreatitis with uninfected necrosis +K8512 Biliary acute pancreatitis with infected necrosis +K852 Alcohol induced acute pancreatitis +K8520 Alcohol induced acute pancreatitis without necrosis or infection +K8521 Alcohol induced acute pancreatitis with uninfected necrosis +K8522 Alcohol induced acute pancreatitis with infected necrosis +K853 Drug induced acute pancreatitis +K8530 Drug induced acute pancreatitis without necrosis or infection +K8531 Drug induced acute pancreatitis with uninfected necrosis +K8532 Drug induced acute pancreatitis with infected necrosis +K858 Other acute pancreatitis +K8580 Other acute pancreatitis without necrosis or infection +K8581 Other acute pancreatitis with uninfected necrosis +K8582 Other acute pancreatitis with infected necrosis +K859 Acute pancreatitis, unspecified +K8590 Acute pancreatitis without necrosis or infection, unspecified +K8591 Acute pancreatitis with uninfected necrosis, unspecified +K8592 Acute pancreatitis with infected necrosis, unspecified +K860 Alcohol-induced chronic pancreatitis +K861 Other chronic pancreatitis +K862 Cyst of pancreas +K863 Pseudocyst of pancreas +K868 Other specified diseases of pancreas +K8681 Exocrine pancreatic insufficiency +K8689 Other specified diseases of pancreas +K869 Disease of pancreas, unspecified +K87 Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere +K900 Celiac disease +K901 Tropical sprue +K902 Blind loop syndrome, not elsewhere classified +K903 Pancreatic steatorrhea +K904 Malabsorption due to intolerance, not elsewhere classified +K9041 Non-celiac gluten sensitivity +K9049 Malabsorption due to intolerance, not elsewhere classified +K9081 Whipple's disease +K9089 Other intestinal malabsorption +K909 Intestinal malabsorption, unspecified +K910 Vomiting following gastrointestinal surgery +K911 Postgastric surgery syndromes +K912 Postsurgical malabsorption, not elsewhere classified +K913 Postprocedural intestinal obstruction +K9130 Postprocedural intestinal obstruction, unspecified as to partial versus complete +K9131 Postprocedural partial intestinal obstruction +K9132 Postprocedural complete intestinal obstruction +K915 Postcholecystectomy syndrome +K9161 Intraoperative hemorrhage of a digestive system organ or structure complicating a digestive sytem procedure +K9162 Intraoperative hemorrhage of a digestive system organ or structure complicating other procedure +K9171 Accidental puncture and laceration of a digestive system organ or structure during a digestive system procedure +K9172 Accidental puncture and laceration of a digestive system organ or structure during other procedure +K9181 Other intraoperative complications of digestive system +K9182 Postprocedural hepatic failure +K9183 Postprocedural hepatorenal syndrome +K91840 Postprocedural hemorrhage of a digestive system organ or structure following a digestive system procedure +K91841 Postprocedural hemorrhage of a digestive system organ or structure following other procedure +K91850 Pouchitis +K91858 Other complications of intestinal pouch +K9186 Retained cholelithiasis following cholecystectomy +K91870 Postprocedural hematoma of a digestive system organ or structure following a digestive system procedure +K91871 Postprocedural hematoma of a digestive system organ or structure following other procedure +K91872 Postprocedural seroma of a digestive system organ or structure following a digestive system procedure +K91873 Postprocedural seroma of a digestive system organ or structure following other procedure +K9189 Other postprocedural complications and disorders of digestive system +K920 Hematemesis +K921 Melena +K922 Gastrointestinal hemorrhage, unspecified +K9281 Gastrointestinal mucositis (ulcerative) +K9289 Other specified diseases of the digestive system +K929 Disease of digestive system, unspecified +K9400 Colostomy complication, unspecified +K9401 Colostomy hemorrhage +K9402 Colostomy infection +K9403 Colostomy malfunction +K9409 Other complications of colostomy +K9410 Enterostomy complication, unspecified +K9411 Enterostomy hemorrhage +K9412 Enterostomy infection +K9413 Enterostomy malfunction +K9419 Other complications of enterostomy +K9420 Gastrostomy complication, unspecified +K9421 Gastrostomy hemorrhage +K9422 Gastrostomy infection +K9423 Gastrostomy malfunction +K9429 Other complications of gastrostomy +K9430 Esophagostomy complications, unspecified Y +K9431 Esophagostomy hemorrhage Y +K9432 Esophagostomy infection Y +K9433 Esophagostomy malfunction Y +K9439 Other complications of esophagostomy Y +K9501 Infection due to gastric band procedure +K9509 Other complications of gastric band procedure +K9581 Infection due to other bariatric procedure +K9589 Other complications of other bariatric procedure +L00 Staphylococcal scalded skin syndrome +L0100 Impetigo, unspecified +L0101 Non-bullous impetigo +L0102 Bockhart's impetigo +L0103 Bullous impetigo +L0109 Other impetigo +L011 Impetiginization of other dermatoses +L0201 Cutaneous abscess of face +L0202 Furuncle of face +L0203 Carbuncle of face +L0211 Cutaneous abscess of neck +L0212 Furuncle of neck +L0213 Carbuncle of neck +L02211 Cutaneous abscess of abdominal wall +L02212 Cutaneous abscess of back [any part, except buttock] +L02213 Cutaneous abscess of chest wall +L02214 Cutaneous abscess of groin +L02215 Cutaneous abscess of perineum +L02216 Cutaneous abscess of umbilicus +L02219 Cutaneous abscess of trunk, unspecified +L02221 Furuncle of abdominal wall +L02222 Furuncle of back [any part, except buttock] +L02223 Furuncle of chest wall +L02224 Furuncle of groin +L02225 Furuncle of perineum +L02226 Furuncle of umbilicus +L02229 Furuncle of trunk, unspecified +L02231 Carbuncle of abdominal wall +L02232 Carbuncle of back [any part, except buttock] +L02233 Carbuncle of chest wall +L02234 Carbuncle of groin +L02235 Carbuncle of perineum +L02236 Carbuncle of umbilicus +L02239 Carbuncle of trunk, unspecified +L0231 Cutaneous abscess of buttock +L0232 Furuncle of buttock +L0233 Carbuncle of buttock +L02411 Cutaneous abscess of right axilla +L02412 Cutaneous abscess of left axilla +L02413 Cutaneous abscess of right upper limb +L02414 Cutaneous abscess of left upper limb +L02415 Cutaneous abscess of right lower limb +L02416 Cutaneous abscess of left lower limb +L02419 Cutaneous abscess of limb, unspecified +L02421 Furuncle of right axilla +L02422 Furuncle of left axilla +L02423 Furuncle of right upper limb +L02424 Furuncle of left upper limb +L02425 Furuncle of right lower limb +L02426 Furuncle of left lower limb +L02429 Furuncle of limb, unspecified +L02431 Carbuncle of right axilla +L02432 Carbuncle of left axilla +L02433 Carbuncle of right upper limb +L02434 Carbuncle of left upper limb +L02435 Carbuncle of right lower limb +L02436 Carbuncle of left lower limb +L02439 Carbuncle of limb, unspecified +L02511 Cutaneous abscess of right hand +L02512 Cutaneous abscess of left hand +L02519 Cutaneous abscess of unspecified hand +L02521 Furuncle right hand +L02522 Furuncle left hand +L02529 Furuncle unspecified hand +L02531 Carbuncle of right hand +L02532 Carbuncle of left hand +L02539 Carbuncle of unspecified hand +L02611 Cutaneous abscess of right foot +L02612 Cutaneous abscess of left foot +L02619 Cutaneous abscess of unspecified foot +L02621 Furuncle of right foot +L02622 Furuncle of left foot +L02629 Furuncle of unspecified foot +L02631 Carbuncle of right foot +L02632 Carbuncle of left foot +L02639 Carbuncle of unspecified foot +L02811 Cutaneous abscess of head [any part, except face] +L02818 Cutaneous abscess of other sites +L02821 Furuncle of head [any part, except face] +L02828 Furuncle of other sites +L02831 Carbuncle of head [any part, except face] +L02838 Carbuncle of other sites +L0291 Cutaneous abscess, unspecified +L0292 Furuncle, unspecified +L0293 Carbuncle, unspecified +L03011 Cellulitis of right finger +L03012 Cellulitis of left finger +L03019 Cellulitis of unspecified finger +L03021 Acute lymphangitis of right finger +L03022 Acute lymphangitis of left finger +L03029 Acute lymphangitis of unspecified finger +L03031 Cellulitis of right toe +L03032 Cellulitis of left toe +L03039 Cellulitis of unspecified toe +L03041 Acute lymphangitis of right toe +L03042 Acute lymphangitis of left toe +L03049 Acute lymphangitis of unspecified toe +L03111 Cellulitis of right axilla +L03112 Cellulitis of left axilla +L03113 Cellulitis of right upper limb +L03114 Cellulitis of left upper limb +L03115 Cellulitis of right lower limb +L03116 Cellulitis of left lower limb +L03119 Cellulitis of unspecified part of limb +L03121 Acute lymphangitis of right axilla +L03122 Acute lymphangitis of left axilla +L03123 Acute lymphangitis of right upper limb +L03124 Acute lymphangitis of left upper limb +L03125 Acute lymphangitis of right lower limb +L03126 Acute lymphangitis of left lower limb +L03129 Acute lymphangitis of unspecified part of limb +L03211 Cellulitis of face +L03212 Acute lymphangitis of face +L03213 Periorbital cellulitis +L03221 Cellulitis of neck +L03222 Acute lymphangitis of neck +L03311 Cellulitis of abdominal wall +L03312 Cellulitis of back [any part except buttock] +L03313 Cellulitis of chest wall +L03314 Cellulitis of groin +L03315 Cellulitis of perineum +L03316 Cellulitis of umbilicus +L03317 Cellulitis of buttock +L03319 Cellulitis of trunk, unspecified +L03321 Acute lymphangitis of abdominal wall +L03322 Acute lymphangitis of back [any part except buttock] +L03323 Acute lymphangitis of chest wall +L03324 Acute lymphangitis of groin +L03325 Acute lymphangitis of perineum +L03326 Acute lymphangitis of umbilicus +L03327 Acute lymphangitis of buttock +L03329 Acute lymphangitis of trunk, unspecified +L03811 Cellulitis of head [any part, except face] +L03818 Cellulitis of other sites +L03891 Acute lymphangitis of head [any part, except face] +L03898 Acute lymphangitis of other sites +L0390 Cellulitis, unspecified +L0391 Acute lymphangitis, unspecified +L040 Acute lymphadenitis of face, head and neck +L041 Acute lymphadenitis of trunk +L042 Acute lymphadenitis of upper limb +L043 Acute lymphadenitis of lower limb +L048 Acute lymphadenitis of other sites +L049 Acute lymphadenitis, unspecified +L0501 Pilonidal cyst with abscess +L0502 Pilonidal sinus with abscess +L0591 Pilonidal cyst without abscess +L0592 Pilonidal sinus without abscess +L080 Pyoderma +L081 Erythrasma +L0881 Pyoderma vegetans +L0882 Omphalitis not of newborn +L0889 Other specified local infections of the skin and subcutaneous tissue +L089 Local infection of the skin and subcutaneous tissue, unspecified +L100 Pemphigus vulgaris +L101 Pemphigus vegetans +L102 Pemphigus foliaceous +L103 Brazilian pemphigus [fogo selvagem] +L104 Pemphigus erythematosus +L105 Drug-induced pemphigus +L1081 Paraneoplastic pemphigus +L1089 Other pemphigus +L109 Pemphigus, unspecified +L110 Acquired keratosis follicularis +L111 Transient acantholytic dermatosis [Grover] +L118 Other specified acantholytic disorders +L119 Acantholytic disorder, unspecified +L120 Bullous pemphigoid +L121 Cicatricial pemphigoid +L122 Chronic bullous disease of childhood +L1230 Acquired epidermolysis bullosa, unspecified +L1231 Epidermolysis bullosa due to drug +L1235 Other acquired epidermolysis bullosa +L128 Other pemphigoid +L129 Pemphigoid, unspecified +L130 Dermatitis herpetiformis +L131 Subcorneal pustular dermatitis +L138 Other specified bullous disorders +L139 Bullous disorder, unspecified +L14 Bullous disorders in diseases classified elsewhere +L200 Besnier's prurigo +L2081 Atopic neurodermatitis +L2082 Flexural eczema +L2083 Infantile (acute) (chronic) eczema +L2084 Intrinsic (allergic) eczema +L2089 Other atopic dermatitis +L209 Atopic dermatitis, unspecified +L210 Seborrhea capitis +L211 Seborrheic infantile dermatitis +L218 Other seborrheic dermatitis +L219 Seborrheic dermatitis, unspecified +L22 Diaper dermatitis +L230 Allergic contact dermatitis due to metals +L231 Allergic contact dermatitis due to adhesives +L232 Allergic contact dermatitis due to cosmetics +L233 Allergic contact dermatitis due to drugs in contact with skin +L234 Allergic contact dermatitis due to dyes +L235 Allergic contact dermatitis due to other chemical products +L236 Allergic contact dermatitis due to food in contact with the skin +L237 Allergic contact dermatitis due to plants, except food +L2381 Allergic contact dermatitis due to animal (cat) (dog) dander +L2389 Allergic contact dermatitis due to other agents +L239 Allergic contact dermatitis, unspecified cause +L240 Irritant contact dermatitis due to detergents +L241 Irritant contact dermatitis due to oils and greases +L242 Irritant contact dermatitis due to solvents +L243 Irritant contact dermatitis due to cosmetics +L244 Irritant contact dermatitis due to drugs in contact with skin +L245 Irritant contact dermatitis due to other chemical products +L246 Irritant contact dermatitis due to food in contact with skin +L247 Irritant contact dermatitis due to plants, except food +L2481 Irritant contact dermatitis due to metals +L2489 Irritant contact dermatitis due to other agents +L249 Irritant contact dermatitis, unspecified cause +L250 Unspecified contact dermatitis due to cosmetics +L251 Unspecified contact dermatitis due to drugs in contact with skin +L252 Unspecified contact dermatitis due to dyes +L253 Unspecified contact dermatitis due to other chemical products +L254 Unspecified contact dermatitis due to food in contact with skin +L255 Unspecified contact dermatitis due to plants, except food +L258 Unspecified contact dermatitis due to other agents +L259 Unspecified contact dermatitis, unspecified cause +L26 Exfoliative dermatitis +L270 Generalized skin eruption due to drugs and medicaments taken internally +L271 Localized skin eruption due to drugs and medicaments taken internally +L272 Dermatitis due to ingested food +L278 Dermatitis due to other substances taken internally +L279 Dermatitis due to unspecified substance taken internally +L280 Lichen simplex chronicus +L281 Prurigo nodularis +L282 Other prurigo +L290 Pruritus ani +L291 Pruritus scroti +L292 Pruritus vulvae +L293 Anogenital pruritus, unspecified +L298 Other pruritus +L299 Pruritus, unspecified +L300 Nummular dermatitis +L301 Dyshidrosis [pompholyx] +L302 Cutaneous autosensitization +L303 Infective dermatitis +L304 Erythema intertrigo +L305 Pityriasis alba +L308 Other specified dermatitis +L309 Dermatitis, unspecified +L400 Psoriasis vulgaris +L401 Generalized pustular psoriasis +L402 Acrodermatitis continua +L403 Pustulosis palmaris et plantaris +L404 Guttate psoriasis +L4050 Arthropathic psoriasis, unspecified +L4051 Distal interphalangeal psoriatic arthropathy +L4052 Psoriatic arthritis mutilans +L4053 Psoriatic spondylitis +L4054 Psoriatic juvenile arthropathy +L4059 Other psoriatic arthropathy +L408 Other psoriasis +L409 Psoriasis, unspecified +L410 Pityriasis lichenoides et varioliformis acuta +L411 Pityriasis lichenoides chronica +L413 Small plaque parapsoriasis +L414 Large plaque parapsoriasis +L415 Retiform parapsoriasis +L418 Other parapsoriasis +L419 Parapsoriasis, unspecified +L42 Pityriasis rosea +L430 Hypertrophic lichen planus +L431 Bullous lichen planus +L432 Lichenoid drug reaction +L433 Subacute (active) lichen planus +L438 Other lichen planus +L439 Lichen planus, unspecified +L440 Pityriasis rubra pilaris +L441 Lichen nitidus +L442 Lichen striatus +L443 Lichen ruber moniliformis +L444 Infantile papular acrodermatitis [Gianotti-Crosti] +L448 Other specified papulosquamous disorders +L449 Papulosquamous disorder, unspecified +L45 Papulosquamous disorders in diseases classified elsewhere +L490 Exfoliation due to erythematous condition involving less than 10 percent of body surface +L491 Exfoliation due to erythematous condition involving 10-19 percent of body surface +L492 Exfoliation due to erythematous condition involving 20-29 percent of body surface +L493 Exfoliation due to erythematous condition involving 30-39 percent of body surface +L494 Exfoliation due to erythematous condition involving 40-49 percent of body surface +L495 Exfoliation due to erythematous condition involving 50-59 percent of body surface +L496 Exfoliation due to erythematous condition involving 60-69 percent of body surface +L497 Exfoliation due to erythematous condition involving 70-79 percent of body surface +L498 Exfoliation due to erythematous condition involving 80-89 percent of body surface +L499 Exfoliation due to erythematous condition involving 90 or more percent of body surface +L500 Allergic urticaria +L501 Idiopathic urticaria +L502 Urticaria due to cold and heat +L503 Dermatographic urticaria +L504 Vibratory urticaria +L505 Cholinergic urticaria +L506 Contact urticaria +L508 Other urticaria +L509 Urticaria, unspecified +L510 Nonbullous erythema multiforme +L511 Stevens-Johnson syndrome +L512 Toxic epidermal necrolysis [Lyell] +L513 Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome +L518 Other erythema multiforme +L519 Erythema multiforme, unspecified +L52 Erythema nodosum +L530 Toxic erythema +L531 Erythema annulare centrifugum +L532 Erythema marginatum +L533 Other chronic figurate erythema +L538 Other specified erythematous conditions +L539 Erythematous condition, unspecified +L54 Erythema in diseases classified elsewhere +L550 Sunburn of first degree +L551 Sunburn of second degree +L552 Sunburn of third degree +L559 Sunburn, unspecified +L560 Drug phototoxic response +L561 Drug photoallergic response +L562 Photocontact dermatitis [berloque dermatitis] +L563 Solar urticaria +L564 Polymorphous light eruption +L565 Disseminated superficial actinic porokeratosis (DSAP) +L568 Other specified acute skin changes due to ultraviolet radiation +L569 Acute skin change due to ultraviolet radiation, unspecified +L570 Actinic keratosis +L571 Actinic reticuloid +L572 Cutis rhomboidalis nuchae +L573 Poikiloderma of Civatte +L574 Cutis laxa senilis +L575 Actinic granuloma +L578 Other skin changes due to chronic exposure to nonionizing radiation +L579 Skin changes due to chronic exposure to nonionizing radiation, unspecified +L580 Acute radiodermatitis +L581 Chronic radiodermatitis +L589 Radiodermatitis, unspecified +L590 Erythema ab igne [dermatitis ab igne] +L598 Other specified disorders of the skin and subcutaneous tissue related to radiation +L599 Disorder of the skin and subcutaneous tissue related to radiation, unspecified +L600 Ingrowing nail +L601 Onycholysis +L602 Onychogryphosis +L603 Nail dystrophy +L604 Beau's lines +L605 Yellow nail syndrome +L608 Other nail disorders +L609 Nail disorder, unspecified +L62 Nail disorders in diseases classified elsewhere +L630 Alopecia (capitis) totalis +L631 Alopecia universalis +L632 Ophiasis +L638 Other alopecia areata +L639 Alopecia areata, unspecified +L640 Drug-induced androgenic alopecia +L648 Other androgenic alopecia +L649 Androgenic alopecia, unspecified +L650 Telogen effluvium +L651 Anagen effluvium +L652 Alopecia mucinosa +L658 Other specified nonscarring hair loss +L659 Nonscarring hair loss, unspecified +L660 Pseudopelade +L661 Lichen planopilaris +L662 Folliculitis decalvans +L663 Perifolliculitis capitis abscedens +L664 Folliculitis ulerythematosa reticulata +L668 Other cicatricial alopecia +L669 Cicatricial alopecia, unspecified +L670 Trichorrhexis nodosa +L671 Variations in hair color +L678 Other hair color and hair shaft abnormalities +L679 Hair color and hair shaft abnormality, unspecified +L680 Hirsutism +L681 Acquired hypertrichosis lanuginosa +L682 Localized hypertrichosis +L683 Polytrichia +L688 Other hypertrichosis +L689 Hypertrichosis, unspecified +L700 Acne vulgaris +L701 Acne conglobata +L702 Acne varioliformis +L703 Acne tropica +L704 Infantile acne +L705 Acne excoriee +L708 Other acne +L709 Acne, unspecified +L710 Perioral dermatitis +L711 Rhinophyma +L718 Other rosacea +L719 Rosacea, unspecified +L720 Epidermal cyst +L7211 Pilar cyst +L7212 Trichodermal cyst +L722 Steatocystoma multiplex +L723 Sebaceous cyst +L728 Other follicular cysts of the skin and subcutaneous tissue +L729 Follicular cyst of the skin and subcutaneous tissue, unspecified +L730 Acne keloid +L731 Pseudofolliculitis barbae +L732 Hidradenitis suppurativa +L738 Other specified follicular disorders +L739 Follicular disorder, unspecified +L740 Miliaria rubra +L741 Miliaria crystallina +L742 Miliaria profunda +L743 Miliaria, unspecified +L744 Anhidrosis +L74510 Primary focal hyperhidrosis, axilla +L74511 Primary focal hyperhidrosis, face +L74512 Primary focal hyperhidrosis, palms +L74513 Primary focal hyperhidrosis, soles +L74519 Primary focal hyperhidrosis, unspecified +L7452 Secondary focal hyperhidrosis +L748 Other eccrine sweat disorders +L749 Eccrine sweat disorder, unspecified +L750 Bromhidrosis +L751 Chromhidrosis +L752 Apocrine miliaria +L758 Other apocrine sweat disorders +L759 Apocrine sweat disorder, unspecified +L7601 Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating a dermatologic procedure +L7602 Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating other procedure +L7611 Accidental puncture and laceration of skin and subcutaneous tissue during a dermatologic procedure +L7612 Accidental puncture and laceration of skin and subcutaneous tissue during other procedure +L7621 Postprocedural hemorrhage of skin and subcutaneous tissue following a dermatologic procedure +L7622 Postprocedural hemorrhage of skin and subcutaneous tissue following other procedure +L7631 Postprocedural hematoma of skin and subcutaneous tissue following a dermatologic procedure +L7632 Postprocedural hematoma of skin and subcutaneous tissue following other procedure +L7633 Postprocedural seroma of skin and subcutaneous tissue following a dermatologic procedure +L7634 Postprocedural seroma of skin and subcutaneous tissue following other procedure +L7681 Other intraoperative complications of skin and subcutaneous tissue +L7682 Other postprocedural complications of skin and subcutaneous tissue +L80 Vitiligo +L810 Postinflammatory hyperpigmentation +L811 Chloasma +L812 Freckles +L813 Cafe au lait spots +L814 Other melanin hyperpigmentation +L815 Leukoderma, not elsewhere classified +L816 Other disorders of diminished melanin formation +L817 Pigmented purpuric dermatosis +L818 Other specified disorders of pigmentation +L819 Disorder of pigmentation, unspecified +L820 Inflamed seborrheic keratosis +L821 Other seborrheic keratosis +L83 Acanthosis nigricans +L84 Corns and callosities +L850 Acquired ichthyosis +L851 Acquired keratosis [keratoderma] palmaris et plantaris +L852 Keratosis punctata (palmaris et plantaris) +L853 Xerosis cutis +L858 Other specified epidermal thickening +L859 Epidermal thickening, unspecified +L86 Keratoderma in diseases classified elsewhere +L870 Keratosis follicularis et parafollicularis in cutem penetrans +L871 Reactive perforating collagenosis +L872 Elastosis perforans serpiginosa +L878 Other transepidermal elimination disorders +L879 Transepidermal elimination disorder, unspecified +L88 Pyoderma gangrenosum +L89000 Pressure ulcer of unspecified elbow, unstageable +L89001 Pressure ulcer of unspecified elbow, stage 1 +L89002 Pressure ulcer of unspecified elbow, stage 2 +L89003 Pressure ulcer of unspecified elbow, stage 3 +L89004 Pressure ulcer of unspecified elbow, stage 4 +L89006 Pressure-induced deep tissue damage of unspecified elbow +L89009 Pressure ulcer of unspecified elbow, unspecified stage +L89010 Pressure ulcer of right elbow, unstageable +L89011 Pressure ulcer of right elbow, stage 1 +L89012 Pressure ulcer of right elbow, stage 2 +L89013 Pressure ulcer of right elbow, stage 3 +L89014 Pressure ulcer of right elbow, stage 4 +L89016 Pressure-induced deep tissue damage of right elbow +L89019 Pressure ulcer of right elbow, unspecified stage +L89020 Pressure ulcer of left elbow, unstageable +L89021 Pressure ulcer of left elbow, stage 1 +L89022 Pressure ulcer of left elbow, stage 2 +L89023 Pressure ulcer of left elbow, stage 3 +L89024 Pressure ulcer of left elbow, stage 4 +L89026 Pressure-induced deep tissue damage of left elbow +L89029 Pressure ulcer of left elbow, unspecified stage +L89100 Pressure ulcer of unspecified part of back, unstageable +L89101 Pressure ulcer of unspecified part of back, stage 1 +L89102 Pressure ulcer of unspecified part of back, stage 2 +L89103 Pressure ulcer of unspecified part of back, stage 3 +L89104 Pressure ulcer of unspecified part of back, stage 4 +L89106 Pressure-induced deep tissue damage of unspecified part of back +L89109 Pressure ulcer of unspecified part of back, unspecified stage +L89110 Pressure ulcer of right upper back, unstageable +L89111 Pressure ulcer of right upper back, stage 1 +L89112 Pressure ulcer of right upper back, stage 2 +L89113 Pressure ulcer of right upper back, stage 3 +L89114 Pressure ulcer of right upper back, stage 4 +L89116 Pressure-induced deep tissue damage of right upper back +L89119 Pressure ulcer of right upper back, unspecified stage +L89120 Pressure ulcer of left upper back, unstageable +L89121 Pressure ulcer of left upper back, stage 1 +L89122 Pressure ulcer of left upper back, stage 2 +L89123 Pressure ulcer of left upper back, stage 3 +L89124 Pressure ulcer of left upper back, stage 4 +L89126 Pressure-induced deep tissue damage of left upper back +L89129 Pressure ulcer of left upper back, unspecified stage +L89130 Pressure ulcer of right lower back, unstageable +L89131 Pressure ulcer of right lower back, stage 1 +L89132 Pressure ulcer of right lower back, stage 2 +L89133 Pressure ulcer of right lower back, stage 3 +L89134 Pressure ulcer of right lower back, stage 4 +L89136 Pressure-induced deep tissue damage of right lower back +L89139 Pressure ulcer of right lower back, unspecified stage +L89140 Pressure ulcer of left lower back, unstageable +L89141 Pressure ulcer of left lower back, stage 1 +L89142 Pressure ulcer of left lower back, stage 2 +L89143 Pressure ulcer of left lower back, stage 3 +L89144 Pressure ulcer of left lower back, stage 4 +L89146 Pressure-induced deep tissue damage of left lower back +L89149 Pressure ulcer of left lower back, unspecified stage +L89150 Pressure ulcer of sacral region, unstageable +L89151 Pressure ulcer of sacral region, stage 1 +L89152 Pressure ulcer of sacral region, stage 2 +L89153 Pressure ulcer of sacral region, stage 3 +L89154 Pressure ulcer of sacral region, stage 4 +L89156 Pressure-induced deep tissue damage of sacral region +L89159 Pressure ulcer of sacral region, unspecified stage +L89200 Pressure ulcer of unspecified hip, unstageable +L89201 Pressure ulcer of unspecified hip, stage 1 +L89202 Pressure ulcer of unspecified hip, stage 2 +L89203 Pressure ulcer of unspecified hip, stage 3 +L89204 Pressure ulcer of unspecified hip, stage 4 +L89206 Pressure-induced deep tissue damage of unspecified hip +L89209 Pressure ulcer of unspecified hip, unspecified stage +L89210 Pressure ulcer of right hip, unstageable +L89211 Pressure ulcer of right hip, stage 1 +L89212 Pressure ulcer of right hip, stage 2 +L89213 Pressure ulcer of right hip, stage 3 +L89214 Pressure ulcer of right hip, stage 4 +L89216 Pressure-induced deep tissue damage of right hip +L89219 Pressure ulcer of right hip, unspecified stage +L89220 Pressure ulcer of left hip, unstageable +L89221 Pressure ulcer of left hip, stage 1 +L89222 Pressure ulcer of left hip, stage 2 +L89223 Pressure ulcer of left hip, stage 3 +L89224 Pressure ulcer of left hip, stage 4 +L89226 Pressure-induced deep tissue damage of left hip +L89229 Pressure ulcer of left hip, unspecified stage +L89300 Pressure ulcer of unspecified buttock, unstageable +L89301 Pressure ulcer of unspecified buttock, stage 1 +L89302 Pressure ulcer of unspecified buttock, stage 2 +L89303 Pressure ulcer of unspecified buttock, stage 3 +L89304 Pressure ulcer of unspecified buttock, stage 4 +L89306 Pressure-induced deep tissue damage of unspecified buttock +L89309 Pressure ulcer of unspecified buttock, unspecified stage +L89310 Pressure ulcer of right buttock, unstageable +L89311 Pressure ulcer of right buttock, stage 1 +L89312 Pressure ulcer of right buttock, stage 2 +L89313 Pressure ulcer of right buttock, stage 3 +L89314 Pressure ulcer of right buttock, stage 4 +L89316 Pressure-induced deep tissue damage of right buttock +L89319 Pressure ulcer of right buttock, unspecified stage +L89320 Pressure ulcer of left buttock, unstageable +L89321 Pressure ulcer of left buttock, stage 1 +L89322 Pressure ulcer of left buttock, stage 2 +L89323 Pressure ulcer of left buttock, stage 3 +L89324 Pressure ulcer of left buttock, stage 4 +L89326 Pressure-induced deep tissue damage of left buttock +L89329 Pressure ulcer of left buttock, unspecified stage +L8940 Pressure ulcer of contiguous site of back, buttock and hip, unspecified stage +L8941 Pressure ulcer of contiguous site of back, buttock and hip, stage 1 +L8942 Pressure ulcer of contiguous site of back, buttock and hip, stage 2 +L8943 Pressure ulcer of contiguous site of back, buttock and hip, stage 3 +L8944 Pressure ulcer of contiguous site of back, buttock and hip, stage 4 +L8945 Pressure ulcer of contiguous site of back, buttock and hip, unstageable +L8946 Pressure-induced deep tissue damage of contiguous site of back, buttock and hip +L89500 Pressure ulcer of unspecified ankle, unstageable +L89501 Pressure ulcer of unspecified ankle, stage 1 +L89502 Pressure ulcer of unspecified ankle, stage 2 +L89503 Pressure ulcer of unspecified ankle, stage 3 +L89504 Pressure ulcer of unspecified ankle, stage 4 +L89506 Pressure-induced deep tissue damage of unspecified ankle +L89509 Pressure ulcer of unspecified ankle, unspecified stage +L89510 Pressure ulcer of right ankle, unstageable +L89511 Pressure ulcer of right ankle, stage 1 +L89512 Pressure ulcer of right ankle, stage 2 +L89513 Pressure ulcer of right ankle, stage 3 +L89514 Pressure ulcer of right ankle, stage 4 +L89516 Pressure-induced deep tissue damage of right ankle +L89519 Pressure ulcer of right ankle, unspecified stage +L89520 Pressure ulcer of left ankle, unstageable +L89521 Pressure ulcer of left ankle, stage 1 +L89522 Pressure ulcer of left ankle, stage 2 +L89523 Pressure ulcer of left ankle, stage 3 +L89524 Pressure ulcer of left ankle, stage 4 +L89526 Pressure-induced deep tissue damage of left ankle +L89529 Pressure ulcer of left ankle, unspecified stage +L89600 Pressure ulcer of unspecified heel, unstageable +L89601 Pressure ulcer of unspecified heel, stage 1 +L89602 Pressure ulcer of unspecified heel, stage 2 +L89603 Pressure ulcer of unspecified heel, stage 3 +L89604 Pressure ulcer of unspecified heel, stage 4 +L89606 Pressure-induced deep tissue damage of unspecified heel +L89609 Pressure ulcer of unspecified heel, unspecified stage +L89610 Pressure ulcer of right heel, unstageable +L89611 Pressure ulcer of right heel, stage 1 +L89612 Pressure ulcer of right heel, stage 2 +L89613 Pressure ulcer of right heel, stage 3 +L89614 Pressure ulcer of right heel, stage 4 +L89616 Pressure-induced deep tissue damage of right heel +L89619 Pressure ulcer of right heel, unspecified stage +L89620 Pressure ulcer of left heel, unstageable +L89621 Pressure ulcer of left heel, stage 1 +L89622 Pressure ulcer of left heel, stage 2 +L89623 Pressure ulcer of left heel, stage 3 +L89624 Pressure ulcer of left heel, stage 4 +L89626 Pressure-induced deep tissue damage of left heel +L89629 Pressure ulcer of left heel, unspecified stage +L89810 Pressure ulcer of head, unstageable +L89811 Pressure ulcer of head, stage 1 +L89812 Pressure ulcer of head, stage 2 +L89813 Pressure ulcer of head, stage 3 +L89814 Pressure ulcer of head, stage 4 +L89816 Pressure-induced deep tissue damage of head +L89819 Pressure ulcer of head, unspecified stage +L89890 Pressure ulcer of other site, unstageable +L89891 Pressure ulcer of other site, stage 1 +L89892 Pressure ulcer of other site, stage 2 +L89893 Pressure ulcer of other site, stage 3 +L89894 Pressure ulcer of other site, stage 4 +L89896 Pressure-induced deep tissue damage of other site +L89899 Pressure ulcer of other site, unspecified stage +L8990 Pressure ulcer of unspecified site, unspecified stage +L8991 Pressure ulcer of unspecified site, stage 1 +L8992 Pressure ulcer of unspecified site, stage 2 +L8993 Pressure ulcer of unspecified site, stage 3 +L8994 Pressure ulcer of unspecified site, stage 4 +L8995 Pressure ulcer of unspecified site, unstageable +L8996 Pressure-induced deep tissue damage of unspecified site +L900 Lichen sclerosus et atrophicus +L901 Anetoderma of Schweninger-Buzzi +L902 Anetoderma of Jadassohn-Pellizzari +L903 Atrophoderma of Pasini and Pierini +L904 Acrodermatitis chronica atrophicans +L905 Scar conditions and fibrosis of skin +L906 Striae atrophicae +L908 Other atrophic disorders of skin +L909 Atrophic disorder of skin, unspecified +L910 Hypertrophic scar +L918 Other hypertrophic disorders of the skin +L919 Hypertrophic disorder of the skin, unspecified +L920 Granuloma annulare +L921 Necrobiosis lipoidica, not elsewhere classified +L922 Granuloma faciale [eosinophilic granuloma of skin] +L923 Foreign body granuloma of the skin and subcutaneous tissue +L928 Other granulomatous disorders of the skin and subcutaneous tissue +L929 Granulomatous disorder of the skin and subcutaneous tissue, unspecified +L930 Discoid lupus erythematosus +L931 Subacute cutaneous lupus erythematosus +L932 Other local lupus erythematosus +L940 Localized scleroderma [morphea] +L941 Linear scleroderma +L942 Calcinosis cutis +L943 Sclerodactyly +L944 Gottron's papules +L945 Poikiloderma vasculare atrophicans +L946 Ainhum +L948 Other specified localized connective tissue disorders +L949 Localized connective tissue disorder, unspecified +L950 Livedoid vasculitis +L951 Erythema elevatum diutinum +L958 Other vasculitis limited to the skin +L959 Vasculitis limited to the skin, unspecified +L97101 Non-pressure chronic ulcer of unspecified thigh limited to breakdown of skin +L97102 Non-pressure chronic ulcer of unspecified thigh with fat layer exposed +L97103 Non-pressure chronic ulcer of unspecified thigh with necrosis of muscle +L97104 Non-pressure chronic ulcer of unspecified thigh with necrosis of bone +L97105 Non-pressure chronic ulcer of unspecified thigh with muscle involvement without evidence of necrosis +L97106 Non-pressure chronic ulcer of unspecified thigh with bone involvement without evidence of necrosis +L97108 Non-pressure chronic ulcer of unspecified thigh with other specified severity +L97109 Non-pressure chronic ulcer of unspecified thigh with unspecified severity +L97111 Non-pressure chronic ulcer of right thigh limited to breakdown of skin +L97112 Non-pressure chronic ulcer of right thigh with fat layer exposed +L97113 Non-pressure chronic ulcer of right thigh with necrosis of muscle +L97114 Non-pressure chronic ulcer of right thigh with necrosis of bone +L97115 Non-pressure chronic ulcer of right thigh with muscle involvement without evidence of necrosis +L97116 Non-pressure chronic ulcer of right thigh with bone involvement without evidence of necrosis +L97118 Non-pressure chronic ulcer of right thigh with other specified severity +L97119 Non-pressure chronic ulcer of right thigh with unspecified severity +L97121 Non-pressure chronic ulcer of left thigh limited to breakdown of skin +L97122 Non-pressure chronic ulcer of left thigh with fat layer exposed +L97123 Non-pressure chronic ulcer of left thigh with necrosis of muscle +L97124 Non-pressure chronic ulcer of left thigh with necrosis of bone +L97125 Non-pressure chronic ulcer of left thigh with muscle involvement without evidence of necrosis +L97126 Non-pressure chronic ulcer of left thigh with bone involvement without evidence of necrosis +L97128 Non-pressure chronic ulcer of left thigh with other specified severity +L97129 Non-pressure chronic ulcer of left thigh with unspecified severity +L97201 Non-pressure chronic ulcer of unspecified calf limited to breakdown of skin +L97202 Non-pressure chronic ulcer of unspecified calf with fat layer exposed +L97203 Non-pressure chronic ulcer of unspecified calf with necrosis of muscle +L97204 Non-pressure chronic ulcer of unspecified calf with necrosis of bone +L97205 Non-pressure chronic ulcer of unspecified calf with muscle involvement without evidence of necrosis +L97206 Non-pressure chronic ulcer of unspecified calf with bone involvement without evidence of necrosis +L97208 Non-pressure chronic ulcer of unspecified calf with other specified severity +L97209 Non-pressure chronic ulcer of unspecified calf with unspecified severity +L97211 Non-pressure chronic ulcer of right calf limited to breakdown of skin +L97212 Non-pressure chronic ulcer of right calf with fat layer exposed +L97213 Non-pressure chronic ulcer of right calf with necrosis of muscle +L97214 Non-pressure chronic ulcer of right calf with necrosis of bone +L97215 Non-pressure chronic ulcer of right calf with muscle involvement without evidence of necrosis +L97216 Non-pressure chronic ulcer of right calf with bone involvement without evidence of necrosis +L97218 Non-pressure chronic ulcer of right calf with other specified severity +L97219 Non-pressure chronic ulcer of right calf with unspecified severity +L97221 Non-pressure chronic ulcer of left calf limited to breakdown of skin +L97222 Non-pressure chronic ulcer of left calf with fat layer exposed +L97223 Non-pressure chronic ulcer of left calf with necrosis of muscle +L97224 Non-pressure chronic ulcer of left calf with necrosis of bone +L97225 Non-pressure chronic ulcer of left calf with muscle involvement without evidence of necrosis +L97226 Non-pressure chronic ulcer of left calf with bone involvement without evidence of necrosis +L97228 Non-pressure chronic ulcer of left calf with other specified severity +L97229 Non-pressure chronic ulcer of left calf with unspecified severity +L97301 Non-pressure chronic ulcer of unspecified ankle limited to breakdown of skin +L97302 Non-pressure chronic ulcer of unspecified ankle with fat layer exposed +L97303 Non-pressure chronic ulcer of unspecified ankle with necrosis of muscle +L97304 Non-pressure chronic ulcer of unspecified ankle with necrosis of bone +L97305 Non-pressure chronic ulcer of unspecified ankle with muscle involvement without evidence of necrosis +L97306 Non-pressure chronic ulcer of unspecified ankle with bone involvement without evidence of necrosis +L97308 Non-pressure chronic ulcer of unspecified ankle with other specified severity +L97309 Non-pressure chronic ulcer of unspecified ankle with unspecified severity +L97311 Non-pressure chronic ulcer of right ankle limited to breakdown of skin +L97312 Non-pressure chronic ulcer of right ankle with fat layer exposed +L97313 Non-pressure chronic ulcer of right ankle with necrosis of muscle +L97314 Non-pressure chronic ulcer of right ankle with necrosis of bone +L97315 Non-pressure chronic ulcer of right ankle with muscle involvement without evidence of necrosis +L97316 Non-pressure chronic ulcer of right ankle with bone involvement without evidence of necrosis +L97318 Non-pressure chronic ulcer of right ankle with other specified severity +L97319 Non-pressure chronic ulcer of right ankle with unspecified severity +L97321 Non-pressure chronic ulcer of left ankle limited to breakdown of skin +L97322 Non-pressure chronic ulcer of left ankle with fat layer exposed +L97323 Non-pressure chronic ulcer of left ankle with necrosis of muscle +L97324 Non-pressure chronic ulcer of left ankle with necrosis of bone +L97325 Non-pressure chronic ulcer of left ankle with muscle involvement without evidence of necrosis +L97326 Non-pressure chronic ulcer of left ankle with bone involvement without evidence of necrosis +L97328 Non-pressure chronic ulcer of left ankle with other specified severity +L97329 Non-pressure chronic ulcer of left ankle with unspecified severity +L97401 Non-pressure chronic ulcer of unspecified heel and midfoot limited to breakdown of skin +L97402 Non-pressure chronic ulcer of unspecified heel and midfoot with fat layer exposed +L97403 Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of muscle +L97404 Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of bone +L97405 Non-pressure chronic ulcer of unspecified heel and midfoot with muscle involvement without evidence of necrosis +L97406 Non-pressure chronic ulcer of unspecified heel and midfoot with bone involvement without evidence of necrosis +L97408 Non-pressure chronic ulcer of unspecified heel and midfoot with other specified severity +L97409 Non-pressure chronic ulcer of unspecified heel and midfoot with unspecified severity +L97411 Non-pressure chronic ulcer of right heel and midfoot limited to breakdown of skin +L97412 Non-pressure chronic ulcer of right heel and midfoot with fat layer exposed +L97413 Non-pressure chronic ulcer of right heel and midfoot with necrosis of muscle +L97414 Non-pressure chronic ulcer of right heel and midfoot with necrosis of bone +L97415 Non-pressure chronic ulcer of right heel and midfoot with muscle involvement without evidence of necrosis +L97416 Non-pressure chronic ulcer of right heel and midfoot with bone involvement without evidence of necrosis +L97418 Non-pressure chronic ulcer of right heel and midfoot with other specified severity +L97419 Non-pressure chronic ulcer of right heel and midfoot with unspecified severity +L97421 Non-pressure chronic ulcer of left heel and midfoot limited to breakdown of skin +L97422 Non-pressure chronic ulcer of left heel and midfoot with fat layer exposed +L97423 Non-pressure chronic ulcer of left heel and midfoot with necrosis of muscle +L97424 Non-pressure chronic ulcer of left heel and midfoot with necrosis of bone +L97425 Non-pressure chronic ulcer of left heel and midfoot with muscle involvement without evidence of necrosis +L97426 Non-pressure chronic ulcer of left heel and midfoot with bone involvement without evidence of necrosis +L97428 Non-pressure chronic ulcer of left heel and midfoot with other specified severity +L97429 Non-pressure chronic ulcer of left heel and midfoot with unspecified severity +L97501 Non-pressure chronic ulcer of other part of unspecified foot limited to breakdown of skin +L97502 Non-pressure chronic ulcer of other part of unspecified foot with fat layer exposed +L97503 Non-pressure chronic ulcer of other part of unspecified foot with necrosis of muscle +L97504 Non-pressure chronic ulcer of other part of unspecified foot with necrosis of bone +L97505 Non-pressure chronic ulcer of other part of unspecified foot with muscle involvement without evidence of necrosis +L97506 Non-pressure chronic ulcer of other part of unspecified foot with bone involvement without evidence of necrosis +L97508 Non-pressure chronic ulcer of other part of unspecified foot with other specified severity +L97509 Non-pressure chronic ulcer of other part of unspecified foot with unspecified severity +L97511 Non-pressure chronic ulcer of other part of right foot limited to breakdown of skin +L97512 Non-pressure chronic ulcer of other part of right foot with fat layer exposed +L97513 Non-pressure chronic ulcer of other part of right foot with necrosis of muscle +L97514 Non-pressure chronic ulcer of other part of right foot with necrosis of bone +L97515 Non-pressure chronic ulcer of other part of right foot with muscle involvement without evidence of necrosis +L97516 Non-pressure chronic ulcer of other part of right foot with bone involvement without evidence of necrosis +L97518 Non-pressure chronic ulcer of other part of right foot with other specified severity +L97519 Non-pressure chronic ulcer of other part of right foot with unspecified severity +L97521 Non-pressure chronic ulcer of other part of left foot limited to breakdown of skin +L97522 Non-pressure chronic ulcer of other part of left foot with fat layer exposed +L97523 Non-pressure chronic ulcer of other part of left foot with necrosis of muscle +L97524 Non-pressure chronic ulcer of other part of left foot with necrosis of bone +L97525 Non-pressure chronic ulcer of other part of left foot with muscle involvement without evidence of necrosis +L97526 Non-pressure chronic ulcer of other part of left foot with bone involvement without evidence of necrosis +L97528 Non-pressure chronic ulcer of other part of left foot with other specified severity +L97529 Non-pressure chronic ulcer of other part of left foot with unspecified severity +L97801 Non-pressure chronic ulcer of other part of unspecified lower leg limited to breakdown of skin +L97802 Non-pressure chronic ulcer of other part of unspecified lower leg with fat layer exposed +L97803 Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of muscle +L97804 Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of bone +L97805 Non-pressure chronic ulcer of other part of unspecified lower leg with muscle involvement without evidence of necrosis +L97806 Non-pressure chronic ulcer of other part of unspecified lower leg with bone involvement without evidence of necrosis +L97808 Non-pressure chronic ulcer of other part of unspecified lower leg with other specified severity +L97809 Non-pressure chronic ulcer of other part of unspecified lower leg with unspecified severity +L97811 Non-pressure chronic ulcer of other part of right lower leg limited to breakdown of skin +L97812 Non-pressure chronic ulcer of other part of right lower leg with fat layer exposed +L97813 Non-pressure chronic ulcer of other part of right lower leg with necrosis of muscle +L97814 Non-pressure chronic ulcer of other part of right lower leg with necrosis of bone +L97815 Non-pressure chronic ulcer of other part of right lower leg with muscle involvement without evidence of necrosis +L97816 Non-pressure chronic ulcer of other part of right lower leg with bone involvement without evidence of necrosis +L97818 Non-pressure chronic ulcer of other part of right lower leg with other specified severity +L97819 Non-pressure chronic ulcer of other part of right lower leg with unspecified severity +L97821 Non-pressure chronic ulcer of other part of left lower leg limited to breakdown of skin +L97822 Non-pressure chronic ulcer of other part of left lower leg with fat layer exposed +L97823 Non-pressure chronic ulcer of other part of left lower leg with necrosis of muscle +L97824 Non-pressure chronic ulcer of other part of left lower leg with necrosis of bone +L97825 Non-pressure chronic ulcer of other part of left lower leg with muscle involvement without evidence of necrosis +L97826 Non-pressure chronic ulcer of other part of left lower leg with bone involvement without evidence of necrosis +L97828 Non-pressure chronic ulcer of other part of left lower leg with other specified severity +L97829 Non-pressure chronic ulcer of other part of left lower leg with unspecified severity +L97901 Non-pressure chronic ulcer of unspecified part of unspecified lower leg limited to breakdown of skin +L97902 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with fat layer exposed +L97903 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of muscle +L97904 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of bone +L97905 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with muscle involvement without evidence of necrosis +L97906 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with bone involvement without evidence of necrosis +L97908 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with other specified severity +L97909 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with unspecified severity +L97911 Non-pressure chronic ulcer of unspecified part of right lower leg limited to breakdown of skin +L97912 Non-pressure chronic ulcer of unspecified part of right lower leg with fat layer exposed +L97913 Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of muscle +L97914 Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of bone +L97915 Non-pressure chronic ulcer of unspecified part of right lower leg with muscle involvement without evidence of necrosis +L97916 Non-pressure chronic ulcer of unspecified part of right lower leg with bone involvement without evidence of necrosis +L97918 Non-pressure chronic ulcer of unspecified part of right lower leg with other specified severity +L97919 Non-pressure chronic ulcer of unspecified part of right lower leg with unspecified severity +L97921 Non-pressure chronic ulcer of unspecified part of left lower leg limited to breakdown of skin +L97922 Non-pressure chronic ulcer of unspecified part of left lower leg with fat layer exposed +L97923 Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of muscle +L97924 Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of bone +L97925 Non-pressure chronic ulcer of unspecified part of left lower leg with muscle involvement without evidence of necrosis +L97926 Non-pressure chronic ulcer of unspecified part of left lower leg with bone involvement without evidence of necrosis +L97928 Non-pressure chronic ulcer of unspecified part of left lower leg with other specified severity +L97929 Non-pressure chronic ulcer of unspecified part of left lower leg with unspecified severity +L980 Pyogenic granuloma +L981 Factitial dermatitis +L982 Febrile neutrophilic dermatosis [Sweet] +L983 Eosinophilic cellulitis [Wells] +L98411 Non-pressure chronic ulcer of buttock limited to breakdown of skin +L98412 Non-pressure chronic ulcer of buttock with fat layer exposed +L98413 Non-pressure chronic ulcer of buttock with necrosis of muscle +L98414 Non-pressure chronic ulcer of buttock with necrosis of bone +L98415 Non-pressure chronic ulcer of buttock with muscle involvement without evidence of necrosis +L98416 Non-pressure chronic ulcer of buttock with bone involvement without evidence of necrosis +L98418 Non-pressure chronic ulcer of buttock with other specified severity +L98419 Non-pressure chronic ulcer of buttock with unspecified severity +L98421 Non-pressure chronic ulcer of back limited to breakdown of skin +L98422 Non-pressure chronic ulcer of back with fat layer exposed +L98423 Non-pressure chronic ulcer of back with necrosis of muscle +L98424 Non-pressure chronic ulcer of back with necrosis of bone +L98425 Non-pressure chronic ulcer of back with muscle involvement without evidence of necrosis +L98426 Non-pressure chronic ulcer of back with bone involvement without evidence of necrosis +L98428 Non-pressure chronic ulcer of back with other specified severity +L98429 Non-pressure chronic ulcer of back with unspecified severity +L98491 Non-pressure chronic ulcer of skin of other sites limited to breakdown of skin +L98492 Non-pressure chronic ulcer of skin of other sites with fat layer exposed +L98493 Non-pressure chronic ulcer of skin of other sites with necrosis of muscle +L98494 Non-pressure chronic ulcer of skin of other sites with necrosis of bone +L98495 Non-pressure chronic ulcer of skin of other sites with muscle involvement without evidence of necrosis +L98496 Non-pressure chronic ulcer of skin of other sites with bone involvement without evidence of necrosis +L98498 Non-pressure chronic ulcer of skin of other sites with other specified severity +L98499 Non-pressure chronic ulcer of skin of other sites with unspecified severity +L985 Mucinosis of the skin +L986 Other infiltrative disorders of the skin and subcutaneous tissue +L987 Excessive and redundant skin and subcutaneous tissue +L988 Other specified disorders of the skin and subcutaneous tissue +L989 Disorder of the skin and subcutaneous tissue, unspecified +L99 Other disorders of skin and subcutaneous tissue in diseases classified elsewhere +M0000 Staphylococcal arthritis, unspecified joint +M00011 Staphylococcal arthritis, right shoulder +M00012 Staphylococcal arthritis, left shoulder +M00019 Staphylococcal arthritis, unspecified shoulder +M00021 Staphylococcal arthritis, right elbow +M00022 Staphylococcal arthritis, left elbow +M00029 Staphylococcal arthritis, unspecified elbow +M00031 Staphylococcal arthritis, right wrist +M00032 Staphylococcal arthritis, left wrist +M00039 Staphylococcal arthritis, unspecified wrist +M00041 Staphylococcal arthritis, right hand +M00042 Staphylococcal arthritis, left hand +M00049 Staphylococcal arthritis, unspecified hand +M00051 Staphylococcal arthritis, right hip +M00052 Staphylococcal arthritis, left hip +M00059 Staphylococcal arthritis, unspecified hip +M00061 Staphylococcal arthritis, right knee +M00062 Staphylococcal arthritis, left knee +M00069 Staphylococcal arthritis, unspecified knee +M00071 Staphylococcal arthritis, right ankle and foot +M00072 Staphylococcal arthritis, left ankle and foot +M00079 Staphylococcal arthritis, unspecified ankle and foot +M0008 Staphylococcal arthritis, vertebrae +M0009 Staphylococcal polyarthritis +M0010 Pneumococcal arthritis, unspecified joint +M00111 Pneumococcal arthritis, right shoulder +M00112 Pneumococcal arthritis, left shoulder +M00119 Pneumococcal arthritis, unspecified shoulder +M00121 Pneumococcal arthritis, right elbow +M00122 Pneumococcal arthritis, left elbow +M00129 Pneumococcal arthritis, unspecified elbow +M00131 Pneumococcal arthritis, right wrist +M00132 Pneumococcal arthritis, left wrist +M00139 Pneumococcal arthritis, unspecified wrist +M00141 Pneumococcal arthritis, right hand +M00142 Pneumococcal arthritis, left hand +M00149 Pneumococcal arthritis, unspecified hand +M00151 Pneumococcal arthritis, right hip +M00152 Pneumococcal arthritis, left hip +M00159 Pneumococcal arthritis, unspecified hip +M00161 Pneumococcal arthritis, right knee +M00162 Pneumococcal arthritis, left knee +M00169 Pneumococcal arthritis, unspecified knee +M00171 Pneumococcal arthritis, right ankle and foot +M00172 Pneumococcal arthritis, left ankle and foot +M00179 Pneumococcal arthritis, unspecified ankle and foot +M0018 Pneumococcal arthritis, vertebrae +M0019 Pneumococcal polyarthritis +M0020 Other streptococcal arthritis, unspecified joint +M00211 Other streptococcal arthritis, right shoulder +M00212 Other streptococcal arthritis, left shoulder +M00219 Other streptococcal arthritis, unspecified shoulder +M00221 Other streptococcal arthritis, right elbow +M00222 Other streptococcal arthritis, left elbow +M00229 Other streptococcal arthritis, unspecified elbow +M00231 Other streptococcal arthritis, right wrist +M00232 Other streptococcal arthritis, left wrist +M00239 Other streptococcal arthritis, unspecified wrist +M00241 Other streptococcal arthritis, right hand +M00242 Other streptococcal arthritis, left hand +M00249 Other streptococcal arthritis, unspecified hand +M00251 Other streptococcal arthritis, right hip +M00252 Other streptococcal arthritis, left hip +M00259 Other streptococcal arthritis, unspecified hip +M00261 Other streptococcal arthritis, right knee +M00262 Other streptococcal arthritis, left knee +M00269 Other streptococcal arthritis, unspecified knee +M00271 Other streptococcal arthritis, right ankle and foot +M00272 Other streptococcal arthritis, left ankle and foot +M00279 Other streptococcal arthritis, unspecified ankle and foot +M0028 Other streptococcal arthritis, vertebrae +M0029 Other streptococcal polyarthritis +M0080 Arthritis due to other bacteria, unspecified joint +M00811 Arthritis due to other bacteria, right shoulder +M00812 Arthritis due to other bacteria, left shoulder +M00819 Arthritis due to other bacteria, unspecified shoulder +M00821 Arthritis due to other bacteria, right elbow +M00822 Arthritis due to other bacteria, left elbow +M00829 Arthritis due to other bacteria, unspecified elbow +M00831 Arthritis due to other bacteria, right wrist +M00832 Arthritis due to other bacteria, left wrist +M00839 Arthritis due to other bacteria, unspecified wrist +M00841 Arthritis due to other bacteria, right hand +M00842 Arthritis due to other bacteria, left hand +M00849 Arthritis due to other bacteria, unspecified hand +M00851 Arthritis due to other bacteria, right hip +M00852 Arthritis due to other bacteria, left hip +M00859 Arthritis due to other bacteria, unspecified hip +M00861 Arthritis due to other bacteria, right knee +M00862 Arthritis due to other bacteria, left knee +M00869 Arthritis due to other bacteria, unspecified knee +M00871 Arthritis due to other bacteria, right ankle and foot +M00872 Arthritis due to other bacteria, left ankle and foot +M00879 Arthritis due to other bacteria, unspecified ankle and foot +M0088 Arthritis due to other bacteria, vertebrae +M0089 Polyarthritis due to other bacteria +M009 Pyogenic arthritis, unspecified +M01X0 Direct infection of unspecified joint in infectious and parasitic diseases classified elsewhere +M01X11 Direct infection of right shoulder in infectious and parasitic diseases classified elsewhere +M01X12 Direct infection of left shoulder in infectious and parasitic diseases classified elsewhere +M01X19 Direct infection of unspecified shoulder in infectious and parasitic diseases classified elsewhere +M01X21 Direct infection of right elbow in infectious and parasitic diseases classified elsewhere +M01X22 Direct infection of left elbow in infectious and parasitic diseases classified elsewhere +M01X29 Direct infection of unspecified elbow in infectious and parasitic diseases classified elsewhere +M01X31 Direct infection of right wrist in infectious and parasitic diseases classified elsewhere +M01X32 Direct infection of left wrist in infectious and parasitic diseases classified elsewhere +M01X39 Direct infection of unspecified wrist in infectious and parasitic diseases classified elsewhere +M01X41 Direct infection of right hand in infectious and parasitic diseases classified elsewhere +M01X42 Direct infection of left hand in infectious and parasitic diseases classified elsewhere +M01X49 Direct infection of unspecified hand in infectious and parasitic diseases classified elsewhere +M01X51 Direct infection of right hip in infectious and parasitic diseases classified elsewhere +M01X52 Direct infection of left hip in infectious and parasitic diseases classified elsewhere +M01X59 Direct infection of unspecified hip in infectious and parasitic diseases classified elsewhere +M01X61 Direct infection of right knee in infectious and parasitic diseases classified elsewhere +M01X62 Direct infection of left knee in infectious and parasitic diseases classified elsewhere +M01X69 Direct infection of unspecified knee in infectious and parasitic diseases classified elsewhere +M01X71 Direct infection of right ankle and foot in infectious and parasitic diseases classified elsewhere +M01X72 Direct infection of left ankle and foot in infectious and parasitic diseases classified elsewhere +M01X79 Direct infection of unspecified ankle and foot in infectious and parasitic diseases classified elsewhere +M01X8 Direct infection of vertebrae in infectious and parasitic diseases classified elsewhere +M01X9 Direct infection of multiple joints in infectious and parasitic diseases classified elsewhere +M0200 Arthropathy following intestinal bypass, unspecified site +M02011 Arthropathy following intestinal bypass, right shoulder +M02012 Arthropathy following intestinal bypass, left shoulder +M02019 Arthropathy following intestinal bypass, unspecified shoulder +M02021 Arthropathy following intestinal bypass, right elbow +M02022 Arthropathy following intestinal bypass, left elbow +M02029 Arthropathy following intestinal bypass, unspecified elbow +M02031 Arthropathy following intestinal bypass, right wrist +M02032 Arthropathy following intestinal bypass, left wrist +M02039 Arthropathy following intestinal bypass, unspecified wrist +M02041 Arthropathy following intestinal bypass, right hand +M02042 Arthropathy following intestinal bypass, left hand +M02049 Arthropathy following intestinal bypass, unspecified hand +M02051 Arthropathy following intestinal bypass, right hip +M02052 Arthropathy following intestinal bypass, left hip +M02059 Arthropathy following intestinal bypass, unspecified hip +M02061 Arthropathy following intestinal bypass, right knee +M02062 Arthropathy following intestinal bypass, left knee +M02069 Arthropathy following intestinal bypass, unspecified knee +M02071 Arthropathy following intestinal bypass, right ankle and foot +M02072 Arthropathy following intestinal bypass, left ankle and foot +M02079 Arthropathy following intestinal bypass, unspecified ankle and foot +M0208 Arthropathy following intestinal bypass, vertebrae +M0209 Arthropathy following intestinal bypass, multiple sites +M0210 Postdysenteric arthropathy, unspecified site +M02111 Postdysenteric arthropathy, right shoulder +M02112 Postdysenteric arthropathy, left shoulder +M02119 Postdysenteric arthropathy, unspecified shoulder +M02121 Postdysenteric arthropathy, right elbow +M02122 Postdysenteric arthropathy, left elbow +M02129 Postdysenteric arthropathy, unspecified elbow +M02131 Postdysenteric arthropathy, right wrist +M02132 Postdysenteric arthropathy, left wrist +M02139 Postdysenteric arthropathy, unspecified wrist +M02141 Postdysenteric arthropathy, right hand +M02142 Postdysenteric arthropathy, left hand +M02149 Postdysenteric arthropathy, unspecified hand +M02151 Postdysenteric arthropathy, right hip +M02152 Postdysenteric arthropathy, left hip +M02159 Postdysenteric arthropathy, unspecified hip +M02161 Postdysenteric arthropathy, right knee +M02162 Postdysenteric arthropathy, left knee +M02169 Postdysenteric arthropathy, unspecified knee +M02171 Postdysenteric arthropathy, right ankle and foot +M02172 Postdysenteric arthropathy, left ankle and foot +M02179 Postdysenteric arthropathy, unspecified ankle and foot +M0218 Postdysenteric arthropathy, vertebrae +M0219 Postdysenteric arthropathy, multiple sites +M0220 Postimmunization arthropathy, unspecified site +M02211 Postimmunization arthropathy, right shoulder +M02212 Postimmunization arthropathy, left shoulder +M02219 Postimmunization arthropathy, unspecified shoulder +M02221 Postimmunization arthropathy, right elbow +M02222 Postimmunization arthropathy, left elbow +M02229 Postimmunization arthropathy, unspecified elbow +M02231 Postimmunization arthropathy, right wrist +M02232 Postimmunization arthropathy, left wrist +M02239 Postimmunization arthropathy, unspecified wrist +M02241 Postimmunization arthropathy, right hand +M02242 Postimmunization arthropathy, left hand +M02249 Postimmunization arthropathy, unspecified hand +M02251 Postimmunization arthropathy, right hip +M02252 Postimmunization arthropathy, left hip +M02259 Postimmunization arthropathy, unspecified hip +M02261 Postimmunization arthropathy, right knee +M02262 Postimmunization arthropathy, left knee +M02269 Postimmunization arthropathy, unspecified knee +M02271 Postimmunization arthropathy, right ankle and foot +M02272 Postimmunization arthropathy, left ankle and foot +M02279 Postimmunization arthropathy, unspecified ankle and foot +M0228 Postimmunization arthropathy, vertebrae +M0229 Postimmunization arthropathy, multiple sites +M0230 Reiter's disease, unspecified site +M02311 Reiter's disease, right shoulder +M02312 Reiter's disease, left shoulder +M02319 Reiter's disease, unspecified shoulder +M02321 Reiter's disease, right elbow +M02322 Reiter's disease, left elbow +M02329 Reiter's disease, unspecified elbow +M02331 Reiter's disease, right wrist +M02332 Reiter's disease, left wrist +M02339 Reiter's disease, unspecified wrist +M02341 Reiter's disease, right hand +M02342 Reiter's disease, left hand +M02349 Reiter's disease, unspecified hand +M02351 Reiter's disease, right hip +M02352 Reiter's disease, left hip +M02359 Reiter's disease, unspecified hip +M02361 Reiter's disease, right knee +M02362 Reiter's disease, left knee +M02369 Reiter's disease, unspecified knee +M02371 Reiter's disease, right ankle and foot +M02372 Reiter's disease, left ankle and foot +M02379 Reiter's disease, unspecified ankle and foot +M0238 Reiter's disease, vertebrae +M0239 Reiter's disease, multiple sites +M0280 Other reactive arthropathies, unspecified site +M02811 Other reactive arthropathies, right shoulder +M02812 Other reactive arthropathies, left shoulder +M02819 Other reactive arthropathies, unspecified shoulder +M02821 Other reactive arthropathies, right elbow +M02822 Other reactive arthropathies, left elbow +M02829 Other reactive arthropathies, unspecified elbow +M02831 Other reactive arthropathies, right wrist +M02832 Other reactive arthropathies, left wrist +M02839 Other reactive arthropathies, unspecified wrist +M02841 Other reactive arthropathies, right hand +M02842 Other reactive arthropathies, left hand +M02849 Other reactive arthropathies, unspecified hand +M02851 Other reactive arthropathies, right hip +M02852 Other reactive arthropathies, left hip +M02859 Other reactive arthropathies, unspecified hip +M02861 Other reactive arthropathies, right knee +M02862 Other reactive arthropathies, left knee +M02869 Other reactive arthropathies, unspecified knee +M02871 Other reactive arthropathies, right ankle and foot +M02872 Other reactive arthropathies, left ankle and foot +M02879 Other reactive arthropathies, unspecified ankle and foot +M0288 Other reactive arthropathies, vertebrae +M0289 Other reactive arthropathies, multiple sites +M029 Reactive arthropathy, unspecified +M041 Periodic fever syndromes +M042 Cryopyrin-associated periodic syndromes +M048 Other autoinflammatory syndromes +M049 Autoinflammatory syndrome, unspecified +M0500 Felty's syndrome, unspecified site +M05011 Felty's syndrome, right shoulder +M05012 Felty's syndrome, left shoulder +M05019 Felty's syndrome, unspecified shoulder +M05021 Felty's syndrome, right elbow +M05022 Felty's syndrome, left elbow +M05029 Felty's syndrome, unspecified elbow +M05031 Felty's syndrome, right wrist +M05032 Felty's syndrome, left wrist +M05039 Felty's syndrome, unspecified wrist +M05041 Felty's syndrome, right hand +M05042 Felty's syndrome, left hand +M05049 Felty's syndrome, unspecified hand +M05051 Felty's syndrome, right hip +M05052 Felty's syndrome, left hip +M05059 Felty's syndrome, unspecified hip +M05061 Felty's syndrome, right knee +M05062 Felty's syndrome, left knee +M05069 Felty's syndrome, unspecified knee +M05071 Felty's syndrome, right ankle and foot +M05072 Felty's syndrome, left ankle and foot +M05079 Felty's syndrome, unspecified ankle and foot +M0509 Felty's syndrome, multiple sites +M0510 Rheumatoid lung disease with rheumatoid arthritis of unspecified site +M05111 Rheumatoid lung disease with rheumatoid arthritis of right shoulder +M05112 Rheumatoid lung disease with rheumatoid arthritis of left shoulder +M05119 Rheumatoid lung disease with rheumatoid arthritis of unspecified shoulder +M05121 Rheumatoid lung disease with rheumatoid arthritis of right elbow +M05122 Rheumatoid lung disease with rheumatoid arthritis of left elbow +M05129 Rheumatoid lung disease with rheumatoid arthritis of unspecified elbow +M05131 Rheumatoid lung disease with rheumatoid arthritis of right wrist +M05132 Rheumatoid lung disease with rheumatoid arthritis of left wrist +M05139 Rheumatoid lung disease with rheumatoid arthritis of unspecified wrist +M05141 Rheumatoid lung disease with rheumatoid arthritis of right hand +M05142 Rheumatoid lung disease with rheumatoid arthritis of left hand +M05149 Rheumatoid lung disease with rheumatoid arthritis of unspecified hand +M05151 Rheumatoid lung disease with rheumatoid arthritis of right hip +M05152 Rheumatoid lung disease with rheumatoid arthritis of left hip +M05159 Rheumatoid lung disease with rheumatoid arthritis of unspecified hip +M05161 Rheumatoid lung disease with rheumatoid arthritis of right knee +M05162 Rheumatoid lung disease with rheumatoid arthritis of left knee +M05169 Rheumatoid lung disease with rheumatoid arthritis of unspecified knee +M05171 Rheumatoid lung disease with rheumatoid arthritis of right ankle and foot +M05172 Rheumatoid lung disease with rheumatoid arthritis of left ankle and foot +M05179 Rheumatoid lung disease with rheumatoid arthritis of unspecified ankle and foot +M0519 Rheumatoid lung disease with rheumatoid arthritis of multiple sites +M0520 Rheumatoid vasculitis with rheumatoid arthritis of unspecified site +M05211 Rheumatoid vasculitis with rheumatoid arthritis of right shoulder +M05212 Rheumatoid vasculitis with rheumatoid arthritis of left shoulder +M05219 Rheumatoid vasculitis with rheumatoid arthritis of unspecified shoulder +M05221 Rheumatoid vasculitis with rheumatoid arthritis of right elbow +M05222 Rheumatoid vasculitis with rheumatoid arthritis of left elbow +M05229 Rheumatoid vasculitis with rheumatoid arthritis of unspecified elbow +M05231 Rheumatoid vasculitis with rheumatoid arthritis of right wrist +M05232 Rheumatoid vasculitis with rheumatoid arthritis of left wrist +M05239 Rheumatoid vasculitis with rheumatoid arthritis of unspecified wrist +M05241 Rheumatoid vasculitis with rheumatoid arthritis of right hand +M05242 Rheumatoid vasculitis with rheumatoid arthritis of left hand +M05249 Rheumatoid vasculitis with rheumatoid arthritis of unspecified hand +M05251 Rheumatoid vasculitis with rheumatoid arthritis of right hip +M05252 Rheumatoid vasculitis with rheumatoid arthritis of left hip +M05259 Rheumatoid vasculitis with rheumatoid arthritis of unspecified hip +M05261 Rheumatoid vasculitis with rheumatoid arthritis of right knee +M05262 Rheumatoid vasculitis with rheumatoid arthritis of left knee +M05269 Rheumatoid vasculitis with rheumatoid arthritis of unspecified knee +M05271 Rheumatoid vasculitis with rheumatoid arthritis of right ankle and foot +M05272 Rheumatoid vasculitis with rheumatoid arthritis of left ankle and foot +M05279 Rheumatoid vasculitis with rheumatoid arthritis of unspecified ankle and foot +M0529 Rheumatoid vasculitis with rheumatoid arthritis of multiple sites +M0530 Rheumatoid heart disease with rheumatoid arthritis of unspecified site +M05311 Rheumatoid heart disease with rheumatoid arthritis of right shoulder +M05312 Rheumatoid heart disease with rheumatoid arthritis of left shoulder +M05319 Rheumatoid heart disease with rheumatoid arthritis of unspecified shoulder +M05321 Rheumatoid heart disease with rheumatoid arthritis of right elbow +M05322 Rheumatoid heart disease with rheumatoid arthritis of left elbow +M05329 Rheumatoid heart disease with rheumatoid arthritis of unspecified elbow +M05331 Rheumatoid heart disease with rheumatoid arthritis of right wrist +M05332 Rheumatoid heart disease with rheumatoid arthritis of left wrist +M05339 Rheumatoid heart disease with rheumatoid arthritis of unspecified wrist +M05341 Rheumatoid heart disease with rheumatoid arthritis of right hand +M05342 Rheumatoid heart disease with rheumatoid arthritis of left hand +M05349 Rheumatoid heart disease with rheumatoid arthritis of unspecified hand +M05351 Rheumatoid heart disease with rheumatoid arthritis of right hip +M05352 Rheumatoid heart disease with rheumatoid arthritis of left hip +M05359 Rheumatoid heart disease with rheumatoid arthritis of unspecified hip +M05361 Rheumatoid heart disease with rheumatoid arthritis of right knee +M05362 Rheumatoid heart disease with rheumatoid arthritis of left knee +M05369 Rheumatoid heart disease with rheumatoid arthritis of unspecified knee +M05371 Rheumatoid heart disease with rheumatoid arthritis of right ankle and foot +M05372 Rheumatoid heart disease with rheumatoid arthritis of left ankle and foot +M05379 Rheumatoid heart disease with rheumatoid arthritis of unspecified ankle and foot +M0539 Rheumatoid heart disease with rheumatoid arthritis of multiple sites +M0540 Rheumatoid myopathy with rheumatoid arthritis of unspecified site +M05411 Rheumatoid myopathy with rheumatoid arthritis of right shoulder +M05412 Rheumatoid myopathy with rheumatoid arthritis of left shoulder +M05419 Rheumatoid myopathy with rheumatoid arthritis of unspecified shoulder +M05421 Rheumatoid myopathy with rheumatoid arthritis of right elbow +M05422 Rheumatoid myopathy with rheumatoid arthritis of left elbow +M05429 Rheumatoid myopathy with rheumatoid arthritis of unspecified elbow +M05431 Rheumatoid myopathy with rheumatoid arthritis of right wrist +M05432 Rheumatoid myopathy with rheumatoid arthritis of left wrist +M05439 Rheumatoid myopathy with rheumatoid arthritis of unspecified wrist +M05441 Rheumatoid myopathy with rheumatoid arthritis of right hand +M05442 Rheumatoid myopathy with rheumatoid arthritis of left hand +M05449 Rheumatoid myopathy with rheumatoid arthritis of unspecified hand +M05451 Rheumatoid myopathy with rheumatoid arthritis of right hip +M05452 Rheumatoid myopathy with rheumatoid arthritis of left hip +M05459 Rheumatoid myopathy with rheumatoid arthritis of unspecified hip +M05461 Rheumatoid myopathy with rheumatoid arthritis of right knee +M05462 Rheumatoid myopathy with rheumatoid arthritis of left knee +M05469 Rheumatoid myopathy with rheumatoid arthritis of unspecified knee +M05471 Rheumatoid myopathy with rheumatoid arthritis of right ankle and foot +M05472 Rheumatoid myopathy with rheumatoid arthritis of left ankle and foot +M05479 Rheumatoid myopathy with rheumatoid arthritis of unspecified ankle and foot +M0549 Rheumatoid myopathy with rheumatoid arthritis of multiple sites +M0550 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified site +M05511 Rheumatoid polyneuropathy with rheumatoid arthritis of right shoulder +M05512 Rheumatoid polyneuropathy with rheumatoid arthritis of left shoulder +M05519 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified shoulder +M05521 Rheumatoid polyneuropathy with rheumatoid arthritis of right elbow +M05522 Rheumatoid polyneuropathy with rheumatoid arthritis of left elbow +M05529 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified elbow +M05531 Rheumatoid polyneuropathy with rheumatoid arthritis of right wrist +M05532 Rheumatoid polyneuropathy with rheumatoid arthritis of left wrist +M05539 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified wrist +M05541 Rheumatoid polyneuropathy with rheumatoid arthritis of right hand +M05542 Rheumatoid polyneuropathy with rheumatoid arthritis of left hand +M05549 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hand +M05551 Rheumatoid polyneuropathy with rheumatoid arthritis of right hip +M05552 Rheumatoid polyneuropathy with rheumatoid arthritis of left hip +M05559 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hip +M05561 Rheumatoid polyneuropathy with rheumatoid arthritis of right knee +M05562 Rheumatoid polyneuropathy with rheumatoid arthritis of left knee +M05569 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified knee +M05571 Rheumatoid polyneuropathy with rheumatoid arthritis of right ankle and foot +M05572 Rheumatoid polyneuropathy with rheumatoid arthritis of left ankle and foot +M05579 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified ankle and foot +M0559 Rheumatoid polyneuropathy with rheumatoid arthritis of multiple sites +M0560 Rheumatoid arthritis of unspecified site with involvement of other organs and systems +M05611 Rheumatoid arthritis of right shoulder with involvement of other organs and systems +M05612 Rheumatoid arthritis of left shoulder with involvement of other organs and systems +M05619 Rheumatoid arthritis of unspecified shoulder with involvement of other organs and systems +M05621 Rheumatoid arthritis of right elbow with involvement of other organs and systems +M05622 Rheumatoid arthritis of left elbow with involvement of other organs and systems +M05629 Rheumatoid arthritis of unspecified elbow with involvement of other organs and systems +M05631 Rheumatoid arthritis of right wrist with involvement of other organs and systems +M05632 Rheumatoid arthritis of left wrist with involvement of other organs and systems +M05639 Rheumatoid arthritis of unspecified wrist with involvement of other organs and systems +M05641 Rheumatoid arthritis of right hand with involvement of other organs and systems +M05642 Rheumatoid arthritis of left hand with involvement of other organs and systems +M05649 Rheumatoid arthritis of unspecified hand with involvement of other organs and systems +M05651 Rheumatoid arthritis of right hip with involvement of other organs and systems +M05652 Rheumatoid arthritis of left hip with involvement of other organs and systems +M05659 Rheumatoid arthritis of unspecified hip with involvement of other organs and systems +M05661 Rheumatoid arthritis of right knee with involvement of other organs and systems +M05662 Rheumatoid arthritis of left knee with involvement of other organs and systems +M05669 Rheumatoid arthritis of unspecified knee with involvement of other organs and systems +M05671 Rheumatoid arthritis of right ankle and foot with involvement of other organs and systems +M05672 Rheumatoid arthritis of left ankle and foot with involvement of other organs and systems +M05679 Rheumatoid arthritis of unspecified ankle and foot with involvement of other organs and systems +M0569 Rheumatoid arthritis of multiple sites with involvement of other organs and systems +M0570 Rheumatoid arthritis with rheumatoid factor of unspecified site without organ or systems involvement +M05711 Rheumatoid arthritis with rheumatoid factor of right shoulder without organ or systems involvement +M05712 Rheumatoid arthritis with rheumatoid factor of left shoulder without organ or systems involvement +M05719 Rheumatoid arthritis with rheumatoid factor of unspecified shoulder without organ or systems involvement +M05721 Rheumatoid arthritis with rheumatoid factor of right elbow without organ or systems involvement +M05722 Rheumatoid arthritis with rheumatoid factor of left elbow without organ or systems involvement +M05729 Rheumatoid arthritis with rheumatoid factor of unspecified elbow without organ or systems involvement +M05731 Rheumatoid arthritis with rheumatoid factor of right wrist without organ or systems involvement +M05732 Rheumatoid arthritis with rheumatoid factor of left wrist without organ or systems involvement +M05739 Rheumatoid arthritis with rheumatoid factor of unspecified wrist without organ or systems involvement +M05741 Rheumatoid arthritis with rheumatoid factor of right hand without organ or systems involvement +M05742 Rheumatoid arthritis with rheumatoid factor of left hand without organ or systems involvement +M05749 Rheumatoid arthritis with rheumatoid factor of unspecified hand without organ or systems involvement +M05751 Rheumatoid arthritis with rheumatoid factor of right hip without organ or systems involvement +M05752 Rheumatoid arthritis with rheumatoid factor of left hip without organ or systems involvement +M05759 Rheumatoid arthritis with rheumatoid factor of unspecified hip without organ or systems involvement +M05761 Rheumatoid arthritis with rheumatoid factor of right knee without organ or systems involvement +M05762 Rheumatoid arthritis with rheumatoid factor of left knee without organ or systems involvement +M05769 Rheumatoid arthritis with rheumatoid factor of unspecified knee without organ or systems involvement +M05771 Rheumatoid arthritis with rheumatoid factor of right ankle and foot without organ or systems involvement +M05772 Rheumatoid arthritis with rheumatoid factor of left ankle and foot without organ or systems involvement +M05779 Rheumatoid arthritis with rheumatoid factor of unspecified ankle and foot without organ or systems involvement +M0579 Rheumatoid arthritis with rheumatoid factor of multiple sites without organ or systems involvement +M0580 Other rheumatoid arthritis with rheumatoid factor of unspecified site +M05811 Other rheumatoid arthritis with rheumatoid factor of right shoulder +M05812 Other rheumatoid arthritis with rheumatoid factor of left shoulder +M05819 Other rheumatoid arthritis with rheumatoid factor of unspecified shoulder +M05821 Other rheumatoid arthritis with rheumatoid factor of right elbow +M05822 Other rheumatoid arthritis with rheumatoid factor of left elbow +M05829 Other rheumatoid arthritis with rheumatoid factor of unspecified elbow +M05831 Other rheumatoid arthritis with rheumatoid factor of right wrist +M05832 Other rheumatoid arthritis with rheumatoid factor of left wrist +M05839 Other rheumatoid arthritis with rheumatoid factor of unspecified wrist +M05841 Other rheumatoid arthritis with rheumatoid factor of right hand +M05842 Other rheumatoid arthritis with rheumatoid factor of left hand +M05849 Other rheumatoid arthritis with rheumatoid factor of unspecified hand +M05851 Other rheumatoid arthritis with rheumatoid factor of right hip +M05852 Other rheumatoid arthritis with rheumatoid factor of left hip +M05859 Other rheumatoid arthritis with rheumatoid factor of unspecified hip +M05861 Other rheumatoid arthritis with rheumatoid factor of right knee +M05862 Other rheumatoid arthritis with rheumatoid factor of left knee +M05869 Other rheumatoid arthritis with rheumatoid factor of unspecified knee +M05871 Other rheumatoid arthritis with rheumatoid factor of right ankle and foot +M05872 Other rheumatoid arthritis with rheumatoid factor of left ankle and foot +M05879 Other rheumatoid arthritis with rheumatoid factor of unspecified ankle and foot +M0589 Other rheumatoid arthritis with rheumatoid factor of multiple sites +M059 Rheumatoid arthritis with rheumatoid factor, unspecified +M0600 Rheumatoid arthritis without rheumatoid factor, unspecified site +M06011 Rheumatoid arthritis without rheumatoid factor, right shoulder +M06012 Rheumatoid arthritis without rheumatoid factor, left shoulder +M06019 Rheumatoid arthritis without rheumatoid factor, unspecified shoulder +M06021 Rheumatoid arthritis without rheumatoid factor, right elbow +M06022 Rheumatoid arthritis without rheumatoid factor, left elbow +M06029 Rheumatoid arthritis without rheumatoid factor, unspecified elbow +M06031 Rheumatoid arthritis without rheumatoid factor, right wrist +M06032 Rheumatoid arthritis without rheumatoid factor, left wrist +M06039 Rheumatoid arthritis without rheumatoid factor, unspecified wrist +M06041 Rheumatoid arthritis without rheumatoid factor, right hand +M06042 Rheumatoid arthritis without rheumatoid factor, left hand +M06049 Rheumatoid arthritis without rheumatoid factor, unspecified hand +M06051 Rheumatoid arthritis without rheumatoid factor, right hip +M06052 Rheumatoid arthritis without rheumatoid factor, left hip +M06059 Rheumatoid arthritis without rheumatoid factor, unspecified hip +M06061 Rheumatoid arthritis without rheumatoid factor, right knee +M06062 Rheumatoid arthritis without rheumatoid factor, left knee +M06069 Rheumatoid arthritis without rheumatoid factor, unspecified knee +M06071 Rheumatoid arthritis without rheumatoid factor, right ankle and foot +M06072 Rheumatoid arthritis without rheumatoid factor, left ankle and foot +M06079 Rheumatoid arthritis without rheumatoid factor, unspecified ankle and foot +M0608 Rheumatoid arthritis without rheumatoid factor, vertebrae +M0609 Rheumatoid arthritis without rheumatoid factor, multiple sites +M061 Adult-onset Still's disease +M0620 Rheumatoid bursitis, unspecified site +M06211 Rheumatoid bursitis, right shoulder +M06212 Rheumatoid bursitis, left shoulder +M06219 Rheumatoid bursitis, unspecified shoulder +M06221 Rheumatoid bursitis, right elbow +M06222 Rheumatoid bursitis, left elbow +M06229 Rheumatoid bursitis, unspecified elbow +M06231 Rheumatoid bursitis, right wrist +M06232 Rheumatoid bursitis, left wrist +M06239 Rheumatoid bursitis, unspecified wrist +M06241 Rheumatoid bursitis, right hand +M06242 Rheumatoid bursitis, left hand +M06249 Rheumatoid bursitis, unspecified hand +M06251 Rheumatoid bursitis, right hip +M06252 Rheumatoid bursitis, left hip +M06259 Rheumatoid bursitis, unspecified hip +M06261 Rheumatoid bursitis, right knee +M06262 Rheumatoid bursitis, left knee +M06269 Rheumatoid bursitis, unspecified knee +M06271 Rheumatoid bursitis, right ankle and foot +M06272 Rheumatoid bursitis, left ankle and foot +M06279 Rheumatoid bursitis, unspecified ankle and foot +M0628 Rheumatoid bursitis, vertebrae +M0629 Rheumatoid bursitis, multiple sites +M0630 Rheumatoid nodule, unspecified site +M06311 Rheumatoid nodule, right shoulder +M06312 Rheumatoid nodule, left shoulder +M06319 Rheumatoid nodule, unspecified shoulder +M06321 Rheumatoid nodule, right elbow +M06322 Rheumatoid nodule, left elbow +M06329 Rheumatoid nodule, unspecified elbow +M06331 Rheumatoid nodule, right wrist +M06332 Rheumatoid nodule, left wrist +M06339 Rheumatoid nodule, unspecified wrist +M06341 Rheumatoid nodule, right hand +M06342 Rheumatoid nodule, left hand +M06349 Rheumatoid nodule, unspecified hand +M06351 Rheumatoid nodule, right hip +M06352 Rheumatoid nodule, left hip +M06359 Rheumatoid nodule, unspecified hip +M06361 Rheumatoid nodule, right knee +M06362 Rheumatoid nodule, left knee +M06369 Rheumatoid nodule, unspecified knee +M06371 Rheumatoid nodule, right ankle and foot +M06372 Rheumatoid nodule, left ankle and foot +M06379 Rheumatoid nodule, unspecified ankle and foot +M0638 Rheumatoid nodule, vertebrae +M0639 Rheumatoid nodule, multiple sites +M064 Inflammatory polyarthropathy +M0680 Other specified rheumatoid arthritis, unspecified site +M06811 Other specified rheumatoid arthritis, right shoulder +M06812 Other specified rheumatoid arthritis, left shoulder +M06819 Other specified rheumatoid arthritis, unspecified shoulder +M06821 Other specified rheumatoid arthritis, right elbow +M06822 Other specified rheumatoid arthritis, left elbow +M06829 Other specified rheumatoid arthritis, unspecified elbow +M06831 Other specified rheumatoid arthritis, right wrist +M06832 Other specified rheumatoid arthritis, left wrist +M06839 Other specified rheumatoid arthritis, unspecified wrist +M06841 Other specified rheumatoid arthritis, right hand +M06842 Other specified rheumatoid arthritis, left hand +M06849 Other specified rheumatoid arthritis, unspecified hand +M06851 Other specified rheumatoid arthritis, right hip +M06852 Other specified rheumatoid arthritis, left hip +M06859 Other specified rheumatoid arthritis, unspecified hip +M06861 Other specified rheumatoid arthritis, right knee +M06862 Other specified rheumatoid arthritis, left knee +M06869 Other specified rheumatoid arthritis, unspecified knee +M06871 Other specified rheumatoid arthritis, right ankle and foot +M06872 Other specified rheumatoid arthritis, left ankle and foot +M06879 Other specified rheumatoid arthritis, unspecified ankle and foot +M0688 Other specified rheumatoid arthritis, vertebrae +M0689 Other specified rheumatoid arthritis, multiple sites +M069 Rheumatoid arthritis, unspecified +M0760 Enteropathic arthropathies, unspecified site +M07611 Enteropathic arthropathies, right shoulder +M07612 Enteropathic arthropathies, left shoulder +M07619 Enteropathic arthropathies, unspecified shoulder +M07621 Enteropathic arthropathies, right elbow +M07622 Enteropathic arthropathies, left elbow +M07629 Enteropathic arthropathies, unspecified elbow +M07631 Enteropathic arthropathies, right wrist +M07632 Enteropathic arthropathies, left wrist +M07639 Enteropathic arthropathies, unspecified wrist +M07641 Enteropathic arthropathies, right hand +M07642 Enteropathic arthropathies, left hand +M07649 Enteropathic arthropathies, unspecified hand +M07651 Enteropathic arthropathies, right hip +M07652 Enteropathic arthropathies, left hip +M07659 Enteropathic arthropathies, unspecified hip +M07661 Enteropathic arthropathies, right knee +M07662 Enteropathic arthropathies, left knee +M07669 Enteropathic arthropathies, unspecified knee +M07671 Enteropathic arthropathies, right ankle and foot +M07672 Enteropathic arthropathies, left ankle and foot +M07679 Enteropathic arthropathies, unspecified ankle and foot +M0768 Enteropathic arthropathies, vertebrae +M0769 Enteropathic arthropathies, multiple sites +M0800 Unspecified juvenile rheumatoid arthritis of unspecified site +M08011 Unspecified juvenile rheumatoid arthritis, right shoulder +M08012 Unspecified juvenile rheumatoid arthritis, left shoulder +M08019 Unspecified juvenile rheumatoid arthritis, unspecified shoulder +M08021 Unspecified juvenile rheumatoid arthritis, right elbow +M08022 Unspecified juvenile rheumatoid arthritis, left elbow +M08029 Unspecified juvenile rheumatoid arthritis, unspecified elbow +M08031 Unspecified juvenile rheumatoid arthritis, right wrist +M08032 Unspecified juvenile rheumatoid arthritis, left wrist +M08039 Unspecified juvenile rheumatoid arthritis, unspecified wrist +M08041 Unspecified juvenile rheumatoid arthritis, right hand +M08042 Unspecified juvenile rheumatoid arthritis, left hand +M08049 Unspecified juvenile rheumatoid arthritis, unspecified hand +M08051 Unspecified juvenile rheumatoid arthritis, right hip +M08052 Unspecified juvenile rheumatoid arthritis, left hip +M08059 Unspecified juvenile rheumatoid arthritis, unspecified hip +M08061 Unspecified juvenile rheumatoid arthritis, right knee +M08062 Unspecified juvenile rheumatoid arthritis, left knee +M08069 Unspecified juvenile rheumatoid arthritis, unspecified knee +M08071 Unspecified juvenile rheumatoid arthritis, right ankle and foot +M08072 Unspecified juvenile rheumatoid arthritis, left ankle and foot +M08079 Unspecified juvenile rheumatoid arthritis, unspecified ankle and foot +M0808 Unspecified juvenile rheumatoid arthritis, vertebrae +M0809 Unspecified juvenile rheumatoid arthritis, multiple sites +M081 Juvenile ankylosing spondylitis +M0820 Juvenile rheumatoid arthritis with systemic onset, unspecified site +M08211 Juvenile rheumatoid arthritis with systemic onset, right shoulder +M08212 Juvenile rheumatoid arthritis with systemic onset, left shoulder +M08219 Juvenile rheumatoid arthritis with systemic onset, unspecified shoulder +M08221 Juvenile rheumatoid arthritis with systemic onset, right elbow +M08222 Juvenile rheumatoid arthritis with systemic onset, left elbow +M08229 Juvenile rheumatoid arthritis with systemic onset, unspecified elbow +M08231 Juvenile rheumatoid arthritis with systemic onset, right wrist +M08232 Juvenile rheumatoid arthritis with systemic onset, left wrist +M08239 Juvenile rheumatoid arthritis with systemic onset, unspecified wrist +M08241 Juvenile rheumatoid arthritis with systemic onset, right hand +M08242 Juvenile rheumatoid arthritis with systemic onset, left hand +M08249 Juvenile rheumatoid arthritis with systemic onset, unspecified hand +M08251 Juvenile rheumatoid arthritis with systemic onset, right hip +M08252 Juvenile rheumatoid arthritis with systemic onset, left hip +M08259 Juvenile rheumatoid arthritis with systemic onset, unspecified hip +M08261 Juvenile rheumatoid arthritis with systemic onset, right knee +M08262 Juvenile rheumatoid arthritis with systemic onset, left knee +M08269 Juvenile rheumatoid arthritis with systemic onset, unspecified knee +M08271 Juvenile rheumatoid arthritis with systemic onset, right ankle and foot +M08272 Juvenile rheumatoid arthritis with systemic onset, left ankle and foot +M08279 Juvenile rheumatoid arthritis with systemic onset, unspecified ankle and foot +M0828 Juvenile rheumatoid arthritis with systemic onset, vertebrae +M0829 Juvenile rheumatoid arthritis with systemic onset, multiple sites +M083 Juvenile rheumatoid polyarthritis (seronegative) +M0840 Pauciarticular juvenile rheumatoid arthritis, unspecified site +M08411 Pauciarticular juvenile rheumatoid arthritis, right shoulder +M08412 Pauciarticular juvenile rheumatoid arthritis, left shoulder +M08419 Pauciarticular juvenile rheumatoid arthritis, unspecified shoulder +M08421 Pauciarticular juvenile rheumatoid arthritis, right elbow +M08422 Pauciarticular juvenile rheumatoid arthritis, left elbow +M08429 Pauciarticular juvenile rheumatoid arthritis, unspecified elbow +M08431 Pauciarticular juvenile rheumatoid arthritis, right wrist +M08432 Pauciarticular juvenile rheumatoid arthritis, left wrist +M08439 Pauciarticular juvenile rheumatoid arthritis, unspecified wrist +M08441 Pauciarticular juvenile rheumatoid arthritis, right hand +M08442 Pauciarticular juvenile rheumatoid arthritis, left hand +M08449 Pauciarticular juvenile rheumatoid arthritis, unspecified hand +M08451 Pauciarticular juvenile rheumatoid arthritis, right hip +M08452 Pauciarticular juvenile rheumatoid arthritis, left hip +M08459 Pauciarticular juvenile rheumatoid arthritis, unspecified hip +M08461 Pauciarticular juvenile rheumatoid arthritis, right knee +M08462 Pauciarticular juvenile rheumatoid arthritis, left knee +M08469 Pauciarticular juvenile rheumatoid arthritis, unspecified knee +M08471 Pauciarticular juvenile rheumatoid arthritis, right ankle and foot +M08472 Pauciarticular juvenile rheumatoid arthritis, left ankle and foot +M08479 Pauciarticular juvenile rheumatoid arthritis, unspecified ankle and foot +M0848 Pauciarticular juvenile rheumatoid arthritis, vertebrae +M0880 Other juvenile arthritis, unspecified site +M08811 Other juvenile arthritis, right shoulder +M08812 Other juvenile arthritis, left shoulder +M08819 Other juvenile arthritis, unspecified shoulder +M08821 Other juvenile arthritis, right elbow +M08822 Other juvenile arthritis, left elbow +M08829 Other juvenile arthritis, unspecified elbow +M08831 Other juvenile arthritis, right wrist +M08832 Other juvenile arthritis, left wrist +M08839 Other juvenile arthritis, unspecified wrist +M08841 Other juvenile arthritis, right hand +M08842 Other juvenile arthritis, left hand +M08849 Other juvenile arthritis, unspecified hand +M08851 Other juvenile arthritis, right hip +M08852 Other juvenile arthritis, left hip +M08859 Other juvenile arthritis, unspecified hip +M08861 Other juvenile arthritis, right knee +M08862 Other juvenile arthritis, left knee +M08869 Other juvenile arthritis, unspecified knee +M08871 Other juvenile arthritis, right ankle and foot +M08872 Other juvenile arthritis, left ankle and foot +M08879 Other juvenile arthritis, unspecified ankle and foot +M0888 Other juvenile arthritis, vertebrae +M0889 Other juvenile arthritis, multiple sites +M0890 Juvenile arthritis, unspecified, unspecified site +M08911 Juvenile arthritis, unspecified, right shoulder +M08912 Juvenile arthritis, unspecified, left shoulder +M08919 Juvenile arthritis, unspecified, unspecified shoulder +M08921 Juvenile arthritis, unspecified, right elbow +M08922 Juvenile arthritis, unspecified, left elbow +M08929 Juvenile arthritis, unspecified, unspecified elbow +M08931 Juvenile arthritis, unspecified, right wrist +M08932 Juvenile arthritis, unspecified, left wrist +M08939 Juvenile arthritis, unspecified, unspecified wrist +M08941 Juvenile arthritis, unspecified, right hand +M08942 Juvenile arthritis, unspecified, left hand +M08949 Juvenile arthritis, unspecified, unspecified hand +M08951 Juvenile arthritis, unspecified, right hip +M08952 Juvenile arthritis, unspecified, left hip +M08959 Juvenile arthritis, unspecified, unspecified hip +M08961 Juvenile arthritis, unspecified, right knee +M08962 Juvenile arthritis, unspecified, left knee +M08969 Juvenile arthritis, unspecified, unspecified knee +M08971 Juvenile arthritis, unspecified, right ankle and foot +M08972 Juvenile arthritis, unspecified, left ankle and foot +M08979 Juvenile arthritis, unspecified, unspecified ankle and foot +M0898 Juvenile arthritis, unspecified, vertebrae +M0899 Juvenile arthritis, unspecified, multiple sites +M1000 Idiopathic gout, unspecified site +M10011 Idiopathic gout, right shoulder +M10012 Idiopathic gout, left shoulder +M10019 Idiopathic gout, unspecified shoulder +M10021 Idiopathic gout, right elbow +M10022 Idiopathic gout, left elbow +M10029 Idiopathic gout, unspecified elbow +M10031 Idiopathic gout, right wrist +M10032 Idiopathic gout, left wrist +M10039 Idiopathic gout, unspecified wrist +M10041 Idiopathic gout, right hand +M10042 Idiopathic gout, left hand +M10049 Idiopathic gout, unspecified hand +M10051 Idiopathic gout, right hip +M10052 Idiopathic gout, left hip +M10059 Idiopathic gout, unspecified hip +M10061 Idiopathic gout, right knee +M10062 Idiopathic gout, left knee +M10069 Idiopathic gout, unspecified knee +M10071 Idiopathic gout, right ankle and foot +M10072 Idiopathic gout, left ankle and foot +M10079 Idiopathic gout, unspecified ankle and foot +M1008 Idiopathic gout, vertebrae +M1009 Idiopathic gout, multiple sites +M1010 Lead-induced gout, unspecified site +M10111 Lead-induced gout, right shoulder +M10112 Lead-induced gout, left shoulder +M10119 Lead-induced gout, unspecified shoulder +M10121 Lead-induced gout, right elbow +M10122 Lead-induced gout, left elbow +M10129 Lead-induced gout, unspecified elbow +M10131 Lead-induced gout, right wrist +M10132 Lead-induced gout, left wrist +M10139 Lead-induced gout, unspecified wrist +M10141 Lead-induced gout, right hand +M10142 Lead-induced gout, left hand +M10149 Lead-induced gout, unspecified hand +M10151 Lead-induced gout, right hip +M10152 Lead-induced gout, left hip +M10159 Lead-induced gout, unspecified hip +M10161 Lead-induced gout, right knee +M10162 Lead-induced gout, left knee +M10169 Lead-induced gout, unspecified knee +M10171 Lead-induced gout, right ankle and foot +M10172 Lead-induced gout, left ankle and foot +M10179 Lead-induced gout, unspecified ankle and foot +M1018 Lead-induced gout, vertebrae +M1019 Lead-induced gout, multiple sites +M1020 Drug-induced gout, unspecified site +M10211 Drug-induced gout, right shoulder +M10212 Drug-induced gout, left shoulder +M10219 Drug-induced gout, unspecified shoulder +M10221 Drug-induced gout, right elbow +M10222 Drug-induced gout, left elbow +M10229 Drug-induced gout, unspecified elbow +M10231 Drug-induced gout, right wrist +M10232 Drug-induced gout, left wrist +M10239 Drug-induced gout, unspecified wrist +M10241 Drug-induced gout, right hand +M10242 Drug-induced gout, left hand +M10249 Drug-induced gout, unspecified hand +M10251 Drug-induced gout, right hip +M10252 Drug-induced gout, left hip +M10259 Drug-induced gout, unspecified hip +M10261 Drug-induced gout, right knee +M10262 Drug-induced gout, left knee +M10269 Drug-induced gout, unspecified knee +M10271 Drug-induced gout, right ankle and foot +M10272 Drug-induced gout, left ankle and foot +M10279 Drug-induced gout, unspecified ankle and foot +M1028 Drug-induced gout, vertebrae +M1029 Drug-induced gout, multiple sites +M1030 Gout due to renal impairment, unspecified site +M10311 Gout due to renal impairment, right shoulder +M10312 Gout due to renal impairment, left shoulder +M10319 Gout due to renal impairment, unspecified shoulder +M10321 Gout due to renal impairment, right elbow +M10322 Gout due to renal impairment, left elbow +M10329 Gout due to renal impairment, unspecified elbow +M10331 Gout due to renal impairment, right wrist +M10332 Gout due to renal impairment, left wrist +M10339 Gout due to renal impairment, unspecified wrist +M10341 Gout due to renal impairment, right hand +M10342 Gout due to renal impairment, left hand +M10349 Gout due to renal impairment, unspecified hand +M10351 Gout due to renal impairment, right hip +M10352 Gout due to renal impairment, left hip +M10359 Gout due to renal impairment, unspecified hip +M10361 Gout due to renal impairment, right knee +M10362 Gout due to renal impairment, left knee +M10369 Gout due to renal impairment, unspecified knee +M10371 Gout due to renal impairment, right ankle and foot +M10372 Gout due to renal impairment, left ankle and foot +M10379 Gout due to renal impairment, unspecified ankle and foot +M1038 Gout due to renal impairment, vertebrae +M1039 Gout due to renal impairment, multiple sites +M1040 Other secondary gout, unspecified site +M10411 Other secondary gout, right shoulder +M10412 Other secondary gout, left shoulder +M10419 Other secondary gout, unspecified shoulder +M10421 Other secondary gout, right elbow +M10422 Other secondary gout, left elbow +M10429 Other secondary gout, unspecified elbow +M10431 Other secondary gout, right wrist +M10432 Other secondary gout, left wrist +M10439 Other secondary gout, unspecified wrist +M10441 Other secondary gout, right hand +M10442 Other secondary gout, left hand +M10449 Other secondary gout, unspecified hand +M10451 Other secondary gout, right hip +M10452 Other secondary gout, left hip +M10459 Other secondary gout, unspecified hip +M10461 Other secondary gout, right knee +M10462 Other secondary gout, left knee +M10469 Other secondary gout, unspecified knee +M10471 Other secondary gout, right ankle and foot +M10472 Other secondary gout, left ankle and foot +M10479 Other secondary gout, unspecified ankle and foot +M1048 Other secondary gout, vertebrae +M1049 Other secondary gout, multiple sites +M109 Gout, unspecified +M1100 Hydroxyapatite deposition disease, unspecified site +M11011 Hydroxyapatite deposition disease, right shoulder +M11012 Hydroxyapatite deposition disease, left shoulder +M11019 Hydroxyapatite deposition disease, unspecified shoulder +M11021 Hydroxyapatite deposition disease, right elbow +M11022 Hydroxyapatite deposition disease, left elbow +M11029 Hydroxyapatite deposition disease, unspecified elbow +M11031 Hydroxyapatite deposition disease, right wrist +M11032 Hydroxyapatite deposition disease, left wrist +M11039 Hydroxyapatite deposition disease, unspecified wrist +M11041 Hydroxyapatite deposition disease, right hand +M11042 Hydroxyapatite deposition disease, left hand +M11049 Hydroxyapatite deposition disease, unspecified hand +M11051 Hydroxyapatite deposition disease, right hip +M11052 Hydroxyapatite deposition disease, left hip +M11059 Hydroxyapatite deposition disease, unspecified hip +M11061 Hydroxyapatite deposition disease, right knee +M11062 Hydroxyapatite deposition disease, left knee +M11069 Hydroxyapatite deposition disease, unspecified knee +M11071 Hydroxyapatite deposition disease, right ankle and foot +M11072 Hydroxyapatite deposition disease, left ankle and foot +M11079 Hydroxyapatite deposition disease, unspecified ankle and foot +M1108 Hydroxyapatite deposition disease, vertebrae +M1109 Hydroxyapatite deposition disease, multiple sites +M1110 Familial chondrocalcinosis, unspecified site +M11111 Familial chondrocalcinosis, right shoulder +M11112 Familial chondrocalcinosis, left shoulder +M11119 Familial chondrocalcinosis, unspecified shoulder +M11121 Familial chondrocalcinosis, right elbow +M11122 Familial chondrocalcinosis, left elbow +M11129 Familial chondrocalcinosis, unspecified elbow +M11131 Familial chondrocalcinosis, right wrist +M11132 Familial chondrocalcinosis, left wrist +M11139 Familial chondrocalcinosis, unspecified wrist +M11141 Familial chondrocalcinosis, right hand +M11142 Familial chondrocalcinosis, left hand +M11149 Familial chondrocalcinosis, unspecified hand +M11151 Familial chondrocalcinosis, right hip +M11152 Familial chondrocalcinosis, left hip +M11159 Familial chondrocalcinosis, unspecified hip +M11161 Familial chondrocalcinosis, right knee +M11162 Familial chondrocalcinosis, left knee +M11169 Familial chondrocalcinosis, unspecified knee +M11171 Familial chondrocalcinosis, right ankle and foot +M11172 Familial chondrocalcinosis, left ankle and foot +M11179 Familial chondrocalcinosis, unspecified ankle and foot +M1118 Familial chondrocalcinosis, vertebrae +M1119 Familial chondrocalcinosis, multiple sites +M1120 Other chondrocalcinosis, unspecified site +M11211 Other chondrocalcinosis, right shoulder +M11212 Other chondrocalcinosis, left shoulder +M11219 Other chondrocalcinosis, unspecified shoulder +M11221 Other chondrocalcinosis, right elbow +M11222 Other chondrocalcinosis, left elbow +M11229 Other chondrocalcinosis, unspecified elbow +M11231 Other chondrocalcinosis, right wrist +M11232 Other chondrocalcinosis, left wrist +M11239 Other chondrocalcinosis, unspecified wrist +M11241 Other chondrocalcinosis, right hand +M11242 Other chondrocalcinosis, left hand +M11249 Other chondrocalcinosis, unspecified hand +M11251 Other chondrocalcinosis, right hip +M11252 Other chondrocalcinosis, left hip +M11259 Other chondrocalcinosis, unspecified hip +M11261 Other chondrocalcinosis, right knee +M11262 Other chondrocalcinosis, left knee +M11269 Other chondrocalcinosis, unspecified knee +M11271 Other chondrocalcinosis, right ankle and foot +M11272 Other chondrocalcinosis, left ankle and foot +M11279 Other chondrocalcinosis, unspecified ankle and foot +M1128 Other chondrocalcinosis, vertebrae +M1129 Other chondrocalcinosis, multiple sites +M1180 Other specified crystal arthropathies, unspecified site +M11811 Other specified crystal arthropathies, right shoulder +M11812 Other specified crystal arthropathies, left shoulder +M11819 Other specified crystal arthropathies, unspecified shoulder +M11821 Other specified crystal arthropathies, right elbow +M11822 Other specified crystal arthropathies, left elbow +M11829 Other specified crystal arthropathies, unspecified elbow +M11831 Other specified crystal arthropathies, right wrist +M11832 Other specified crystal arthropathies, left wrist +M11839 Other specified crystal arthropathies, unspecified wrist +M11841 Other specified crystal arthropathies, right hand +M11842 Other specified crystal arthropathies, left hand +M11849 Other specified crystal arthropathies, unspecified hand +M11851 Other specified crystal arthropathies, right hip +M11852 Other specified crystal arthropathies, left hip +M11859 Other specified crystal arthropathies, unspecified hip +M11861 Other specified crystal arthropathies, right knee +M11862 Other specified crystal arthropathies, left knee +M11869 Other specified crystal arthropathies, unspecified knee +M11871 Other specified crystal arthropathies, right ankle and foot +M11872 Other specified crystal arthropathies, left ankle and foot +M11879 Other specified crystal arthropathies, unspecified ankle and foot +M1188 Other specified crystal arthropathies, vertebrae +M1189 Other specified crystal arthropathies, multiple sites +M119 Crystal arthropathy, unspecified +M1200 Chronic postrheumatic arthropathy [Jaccoud], unspecified site +M12011 Chronic postrheumatic arthropathy [Jaccoud], right shoulder +M12012 Chronic postrheumatic arthropathy [Jaccoud], left shoulder +M12019 Chronic postrheumatic arthropathy [Jaccoud], unspecified shoulder +M12021 Chronic postrheumatic arthropathy [Jaccoud], right elbow +M12022 Chronic postrheumatic arthropathy [Jaccoud], left elbow +M12029 Chronic postrheumatic arthropathy [Jaccoud], unspecified elbow +M12031 Chronic postrheumatic arthropathy [Jaccoud], right wrist +M12032 Chronic postrheumatic arthropathy [Jaccoud], left wrist +M12039 Chronic postrheumatic arthropathy [Jaccoud], unspecified wrist +M12041 Chronic postrheumatic arthropathy [Jaccoud], right hand +M12042 Chronic postrheumatic arthropathy [Jaccoud], left hand +M12049 Chronic postrheumatic arthropathy [Jaccoud], unspecified hand +M12051 Chronic postrheumatic arthropathy [Jaccoud], right hip +M12052 Chronic postrheumatic arthropathy [Jaccoud], left hip +M12059 Chronic postrheumatic arthropathy [Jaccoud], unspecified hip +M12061 Chronic postrheumatic arthropathy [Jaccoud], right knee +M12062 Chronic postrheumatic arthropathy [Jaccoud], left knee +M12069 Chronic postrheumatic arthropathy [Jaccoud], unspecified knee +M12071 Chronic postrheumatic arthropathy [Jaccoud], right ankle and foot +M12072 Chronic postrheumatic arthropathy [Jaccoud], left ankle and foot +M12079 Chronic postrheumatic arthropathy [Jaccoud], unspecified ankle and foot +M1208 Chronic postrheumatic arthropathy [Jaccoud], vertebrae +M1209 Chronic postrheumatic arthropathy [Jaccoud], multiple sites +M1210 Kaschin-Beck disease, unspecified site +M12111 Kaschin-Beck disease, right shoulder +M12112 Kaschin-Beck disease, left shoulder +M12119 Kaschin-Beck disease, unspecified shoulder +M12121 Kaschin-Beck disease, right elbow +M12122 Kaschin-Beck disease, left elbow +M12129 Kaschin-Beck disease, unspecified elbow +M12131 Kaschin-Beck disease, right wrist +M12132 Kaschin-Beck disease, left wrist +M12139 Kaschin-Beck disease, unspecified wrist +M12141 Kaschin-Beck disease, right hand +M12142 Kaschin-Beck disease, left hand +M12149 Kaschin-Beck disease, unspecified hand +M12151 Kaschin-Beck disease, right hip +M12152 Kaschin-Beck disease, left hip +M12159 Kaschin-Beck disease, unspecified hip +M12161 Kaschin-Beck disease, right knee +M12162 Kaschin-Beck disease, left knee +M12169 Kaschin-Beck disease, unspecified knee +M12171 Kaschin-Beck disease, right ankle and foot +M12172 Kaschin-Beck disease, left ankle and foot +M12179 Kaschin-Beck disease, unspecified ankle and foot +M1218 Kaschin-Beck disease, vertebrae +M1219 Kaschin-Beck disease, multiple sites +M1220 Villonodular synovitis (pigmented), unspecified site +M12211 Villonodular synovitis (pigmented), right shoulder +M12212 Villonodular synovitis (pigmented), left shoulder +M12219 Villonodular synovitis (pigmented), unspecified shoulder +M12221 Villonodular synovitis (pigmented), right elbow +M12222 Villonodular synovitis (pigmented), left elbow +M12229 Villonodular synovitis (pigmented), unspecified elbow +M12231 Villonodular synovitis (pigmented), right wrist +M12232 Villonodular synovitis (pigmented), left wrist +M12239 Villonodular synovitis (pigmented), unspecified wrist +M12241 Villonodular synovitis (pigmented), right hand +M12242 Villonodular synovitis (pigmented), left hand +M12249 Villonodular synovitis (pigmented), unspecified hand +M12251 Villonodular synovitis (pigmented), right hip +M12252 Villonodular synovitis (pigmented), left hip +M12259 Villonodular synovitis (pigmented), unspecified hip +M12261 Villonodular synovitis (pigmented), right knee +M12262 Villonodular synovitis (pigmented), left knee +M12269 Villonodular synovitis (pigmented), unspecified knee +M12271 Villonodular synovitis (pigmented), right ankle and foot +M12272 Villonodular synovitis (pigmented), left ankle and foot +M12279 Villonodular synovitis (pigmented), unspecified ankle and foot +M1228 Villonodular synovitis (pigmented), vertebrae +M1229 Villonodular synovitis (pigmented), multiple sites +M1230 Palindromic rheumatism, unspecified site +M12311 Palindromic rheumatism, right shoulder +M12312 Palindromic rheumatism, left shoulder +M12319 Palindromic rheumatism, unspecified shoulder +M12321 Palindromic rheumatism, right elbow +M12322 Palindromic rheumatism, left elbow +M12329 Palindromic rheumatism, unspecified elbow +M12331 Palindromic rheumatism, right wrist +M12332 Palindromic rheumatism, left wrist +M12339 Palindromic rheumatism, unspecified wrist +M12341 Palindromic rheumatism, right hand +M12342 Palindromic rheumatism, left hand +M12349 Palindromic rheumatism, unspecified hand +M12351 Palindromic rheumatism, right hip +M12352 Palindromic rheumatism, left hip +M12359 Palindromic rheumatism, unspecified hip +M12361 Palindromic rheumatism, right knee +M12362 Palindromic rheumatism, left knee +M12369 Palindromic rheumatism, unspecified knee +M12371 Palindromic rheumatism, right ankle and foot +M12372 Palindromic rheumatism, left ankle and foot +M12379 Palindromic rheumatism, unspecified ankle and foot +M1238 Palindromic rheumatism, vertebrae +M1239 Palindromic rheumatism, multiple sites +M1240 Intermittent hydrarthrosis, unspecified site +M12411 Intermittent hydrarthrosis, right shoulder +M12412 Intermittent hydrarthrosis, left shoulder +M12419 Intermittent hydrarthrosis, unspecified shoulder +M12421 Intermittent hydrarthrosis, right elbow +M12422 Intermittent hydrarthrosis, left elbow +M12429 Intermittent hydrarthrosis, unspecified elbow +M12431 Intermittent hydrarthrosis, right wrist +M12432 Intermittent hydrarthrosis, left wrist +M12439 Intermittent hydrarthrosis, unspecified wrist +M12441 Intermittent hydrarthrosis, right hand +M12442 Intermittent hydrarthrosis, left hand +M12449 Intermittent hydrarthrosis, unspecified hand +M12451 Intermittent hydrarthrosis, right hip +M12452 Intermittent hydrarthrosis, left hip +M12459 Intermittent hydrarthrosis, unspecified hip +M12461 Intermittent hydrarthrosis, right knee +M12462 Intermittent hydrarthrosis, left knee +M12469 Intermittent hydrarthrosis, unspecified knee +M12471 Intermittent hydrarthrosis, right ankle and foot +M12472 Intermittent hydrarthrosis, left ankle and foot +M12479 Intermittent hydrarthrosis, unspecified ankle and foot +M1248 Intermittent hydrarthrosis, other site +M1249 Intermittent hydrarthrosis, multiple sites +M1250 Traumatic arthropathy, unspecified site +M12511 Traumatic arthropathy, right shoulder +M12512 Traumatic arthropathy, left shoulder +M12519 Traumatic arthropathy, unspecified shoulder +M12521 Traumatic arthropathy, right elbow +M12522 Traumatic arthropathy, left elbow +M12529 Traumatic arthropathy, unspecified elbow +M12531 Traumatic arthropathy, right wrist +M12532 Traumatic arthropathy, left wrist +M12539 Traumatic arthropathy, unspecified wrist +M12541 Traumatic arthropathy, right hand +M12542 Traumatic arthropathy, left hand +M12549 Traumatic arthropathy, unspecified hand +M12551 Traumatic arthropathy, right hip +M12552 Traumatic arthropathy, left hip +M12559 Traumatic arthropathy, unspecified hip +M12561 Traumatic arthropathy, right knee +M12562 Traumatic arthropathy, left knee +M12569 Traumatic arthropathy, unspecified knee +M12571 Traumatic arthropathy, right ankle and foot +M12572 Traumatic arthropathy, left ankle and foot +M12579 Traumatic arthropathy, unspecified ankle and foot +M1258 Traumatic arthropathy, vertebrae +M1259 Traumatic arthropathy, multiple sites +M1280 Other specific arthropathies, not elsewhere classified, unspecified site +M12811 Other specific arthropathies, not elsewhere classified, right shoulder +M12812 Other specific arthropathies, not elsewhere classified, left shoulder +M12819 Other specific arthropathies, not elsewhere classified, unspecified shoulder +M12821 Other specific arthropathies, not elsewhere classified, right elbow +M12822 Other specific arthropathies, not elsewhere classified, left elbow +M12829 Other specific arthropathies, not elsewhere classified, unspecified elbow +M12831 Other specific arthropathies, not elsewhere classified, right wrist +M12832 Other specific arthropathies, not elsewhere classified, left wrist +M12839 Other specific arthropathies, not elsewhere classified, unspecified wrist +M12841 Other specific arthropathies, not elsewhere classified, right hand +M12842 Other specific arthropathies, not elsewhere classified, left hand +M12849 Other specific arthropathies, not elsewhere classified, unspecified hand +M12851 Other specific arthropathies, not elsewhere classified, right hip +M12852 Other specific arthropathies, not elsewhere classified, left hip +M12859 Other specific arthropathies, not elsewhere classified, unspecified hip +M12861 Other specific arthropathies, not elsewhere classified, right knee +M12862 Other specific arthropathies, not elsewhere classified, left knee +M12869 Other specific arthropathies, not elsewhere classified, unspecified knee +M12871 Other specific arthropathies, not elsewhere classified, right ankle and foot +M12872 Other specific arthropathies, not elsewhere classified, left ankle and foot +M12879 Other specific arthropathies, not elsewhere classified, unspecified ankle and foot +M1288 Other specific arthropathies, not elsewhere classified, vertebrae +M1289 Other specific arthropathies, not elsewhere classified, multiple sites +M129 Arthropathy, unspecified +M130 Polyarthritis, unspecified +M1310 Monoarthritis, not elsewhere classified, unspecified site +M13111 Monoarthritis, not elsewhere classified, right shoulder +M13112 Monoarthritis, not elsewhere classified, left shoulder +M13119 Monoarthritis, not elsewhere classified, unspecified shoulder +M13121 Monoarthritis, not elsewhere classified, right elbow +M13122 Monoarthritis, not elsewhere classified, left elbow +M13129 Monoarthritis, not elsewhere classified, unspecified elbow +M13131 Monoarthritis, not elsewhere classified, right wrist +M13132 Monoarthritis, not elsewhere classified, left wrist +M13139 Monoarthritis, not elsewhere classified, unspecified wrist +M13141 Monoarthritis, not elsewhere classified, right hand +M13142 Monoarthritis, not elsewhere classified, left hand +M13149 Monoarthritis, not elsewhere classified, unspecified hand +M13151 Monoarthritis, not elsewhere classified, right hip +M13152 Monoarthritis, not elsewhere classified, left hip +M13159 Monoarthritis, not elsewhere classified, unspecified hip +M13161 Monoarthritis, not elsewhere classified, right knee +M13162 Monoarthritis, not elsewhere classified, left knee +M13169 Monoarthritis, not elsewhere classified, unspecified knee +M13171 Monoarthritis, not elsewhere classified, right ankle and foot +M13172 Monoarthritis, not elsewhere classified, left ankle and foot +M13179 Monoarthritis, not elsewhere classified, unspecified ankle and foot +M1380 Other specified arthritis, unspecified site +M13811 Other specified arthritis, right shoulder +M13812 Other specified arthritis, left shoulder +M13819 Other specified arthritis, unspecified shoulder +M13821 Other specified arthritis, right elbow +M13822 Other specified arthritis, left elbow +M13829 Other specified arthritis, unspecified elbow +M13831 Other specified arthritis, right wrist +M13832 Other specified arthritis, left wrist +M13839 Other specified arthritis, unspecified wrist +M13841 Other specified arthritis, right hand +M13842 Other specified arthritis, left hand +M13849 Other specified arthritis, unspecified hand +M13851 Other specified arthritis, right hip +M13852 Other specified arthritis, left hip +M13859 Other specified arthritis, unspecified hip +M13861 Other specified arthritis, right knee +M13862 Other specified arthritis, left knee +M13869 Other specified arthritis, unspecified knee +M13871 Other specified arthritis, right ankle and foot +M13872 Other specified arthritis, left ankle and foot +M13879 Other specified arthritis, unspecified ankle and foot +M1388 Other specified arthritis, other site +M1389 Other specified arthritis, multiple sites +M1460 Charcot's joint, unspecified site +M14611 Charcot's joint, right shoulder +M14612 Charcot's joint, left shoulder +M14619 Charcot's joint, unspecified shoulder +M14621 Charcot's joint, right elbow +M14622 Charcot's joint, left elbow +M14629 Charcot's joint, unspecified elbow +M14631 Charcot's joint, right wrist +M14632 Charcot's joint, left wrist +M14639 Charcot's joint, unspecified wrist +M14641 Charcot's joint, right hand +M14642 Charcot's joint, left hand +M14649 Charcot's joint, unspecified hand +M14651 Charcot's joint, right hip +M14652 Charcot's joint, left hip +M14659 Charcot's joint, unspecified hip +M14661 Charcot's joint, right knee +M14662 Charcot's joint, left knee +M14669 Charcot's joint, unspecified knee +M14671 Charcot's joint, right ankle and foot +M14672 Charcot's joint, left ankle and foot +M14679 Charcot's joint, unspecified ankle and foot +M1468 Charcot's joint, vertebrae +M1469 Charcot's joint, multiple sites +M1480 Arthropathies in other specified diseases classified elsewhere, unspecified site +M14811 Arthropathies in other specified diseases classified elsewhere, right shoulder +M14812 Arthropathies in other specified diseases classified elsewhere, left shoulder +M14819 Arthropathies in other specified diseases classified elsewhere, unspecified shoulder +M14821 Arthropathies in other specified diseases classified elsewhere, right elbow +M14822 Arthropathies in other specified diseases classified elsewhere, left elbow +M14829 Arthropathies in other specified diseases classified elsewhere, unspecified elbow +M14831 Arthropathies in other specified diseases classified elsewhere, right wrist +M14832 Arthropathies in other specified diseases classified elsewhere, left wrist +M14839 Arthropathies in other specified diseases classified elsewhere, unspecified wrist +M14841 Arthropathies in other specified diseases classified elsewhere, right hand +M14842 Arthropathies in other specified diseases classified elsewhere, left hand +M14849 Arthropathies in other specified diseases classified elsewhere, unspecified hand +M14851 Arthropathies in other specified diseases classified elsewhere, right hip +M14852 Arthropathies in other specified diseases classified elsewhere, left hip +M14859 Arthropathies in other specified diseases classified elsewhere, unspecified hip +M14861 Arthropathies in other specified diseases classified elsewhere, right knee +M14862 Arthropathies in other specified diseases classified elsewhere, left knee +M14869 Arthropathies in other specified diseases classified elsewhere, unspecified knee +M14871 Arthropathies in other specified diseases classified elsewhere, right ankle and foot +M14872 Arthropathies in other specified diseases classified elsewhere, left ankle and foot +M14879 Arthropathies in other specified diseases classified elsewhere, unspecified ankle and foot +M1488 Arthropathies in other specified diseases classified elsewhere, vertebrae +M1489 Arthropathies in other specified diseases classified elsewhere, multiple sites +M150 Primary generalized (osteo)arthritis +M151 Heberden's nodes (with arthropathy) +M152 Bouchard's nodes (with arthropathy) +M153 Secondary multiple arthritis +M154 Erosive (osteo)arthritis +M158 Other polyosteoarthritis +M159 Polyosteoarthritis, unspecified +M160 Bilateral primary osteoarthritis of hip +M1610 Unilateral primary osteoarthritis, unspecified hip +M1611 Unilateral primary osteoarthritis, right hip +M1612 Unilateral primary osteoarthritis, left hip +M162 Bilateral osteoarthritis resulting from hip dysplasia +M1630 Unilateral osteoarthritis resulting from hip dysplasia, unspecified hip +M1631 Unilateral osteoarthritis resulting from hip dysplasia, right hip +M1632 Unilateral osteoarthritis resulting from hip dysplasia, left hip +M164 Bilateral post-traumatic osteoarthritis of hip +M1650 Unilateral post-traumatic osteoarthritis, unspecified hip +M1651 Unilateral post-traumatic osteoarthritis, right hip +M1652 Unilateral post-traumatic osteoarthritis, left hip +M166 Other bilateral secondary osteoarthritis of hip +M167 Other unilateral secondary osteoarthritis of hip +M169 Osteoarthritis of hip, unspecified +M170 Bilateral primary osteoarthritis of knee +M1710 Unilateral primary osteoarthritis, unspecified knee +M1711 Unilateral primary osteoarthritis, right knee +M1712 Unilateral primary osteoarthritis, left knee +M172 Bilateral post-traumatic osteoarthritis of knee +M1730 Unilateral post-traumatic osteoarthritis, unspecified knee +M1731 Unilateral post-traumatic osteoarthritis, right knee +M1732 Unilateral post-traumatic osteoarthritis, left knee +M174 Other bilateral secondary osteoarthritis of knee +M175 Other unilateral secondary osteoarthritis of knee +M179 Osteoarthritis of knee, unspecified +M180 Bilateral primary osteoarthritis of first carpometacarpal joints +M1810 Unilateral primary osteoarthritis of first carpometacarpal joint, unspecified hand +M1811 Unilateral primary osteoarthritis of first carpometacarpal joint, right hand +M1812 Unilateral primary osteoarthritis of first carpometacarpal joint, left hand +M182 Bilateral post-traumatic osteoarthritis of first carpometacarpal joints +M1830 Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, unspecified hand +M1831 Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, right hand +M1832 Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, left hand +M184 Other bilateral secondary osteoarthritis of first carpometacarpal joints +M1850 Other unilateral secondary osteoarthritis of first carpometacarpal joint, unspecified hand +M1851 Other unilateral secondary osteoarthritis of first carpometacarpal joint, right hand +M1852 Other unilateral secondary osteoarthritis of first carpometacarpal joint, left hand +M189 Osteoarthritis of first carpometacarpal joint, unspecified +M19011 Primary osteoarthritis, right shoulder +M19012 Primary osteoarthritis, left shoulder +M19019 Primary osteoarthritis, unspecified shoulder +M19021 Primary osteoarthritis, right elbow +M19022 Primary osteoarthritis, left elbow +M19029 Primary osteoarthritis, unspecified elbow +M19031 Primary osteoarthritis, right wrist +M19032 Primary osteoarthritis, left wrist +M19039 Primary osteoarthritis, unspecified wrist +M19041 Primary osteoarthritis, right hand +M19042 Primary osteoarthritis, left hand +M19049 Primary osteoarthritis, unspecified hand +M19071 Primary osteoarthritis, right ankle and foot +M19072 Primary osteoarthritis, left ankle and foot +M19079 Primary osteoarthritis, unspecified ankle and foot +M19111 Post-traumatic osteoarthritis, right shoulder +M19112 Post-traumatic osteoarthritis, left shoulder +M19119 Post-traumatic osteoarthritis, unspecified shoulder +M19121 Post-traumatic osteoarthritis, right elbow +M19122 Post-traumatic osteoarthritis, left elbow +M19129 Post-traumatic osteoarthritis, unspecified elbow +M19131 Post-traumatic osteoarthritis, right wrist +M19132 Post-traumatic osteoarthritis, left wrist +M19139 Post-traumatic osteoarthritis, unspecified wrist +M19141 Post-traumatic osteoarthritis, right hand +M19142 Post-traumatic osteoarthritis, left hand +M19149 Post-traumatic osteoarthritis, unspecified hand +M19171 Post-traumatic osteoarthritis, right ankle and foot +M19172 Post-traumatic osteoarthritis, left ankle and foot +M19179 Post-traumatic osteoarthritis, unspecified ankle and foot +M19211 Secondary osteoarthritis, right shoulder +M19212 Secondary osteoarthritis, left shoulder +M19219 Secondary osteoarthritis, unspecified shoulder +M19221 Secondary osteoarthritis, right elbow +M19222 Secondary osteoarthritis, left elbow +M19229 Secondary osteoarthritis, unspecified elbow +M19231 Secondary osteoarthritis, right wrist +M19232 Secondary osteoarthritis, left wrist +M19239 Secondary osteoarthritis, unspecified wrist +M19241 Secondary osteoarthritis, right hand +M19242 Secondary osteoarthritis, left hand +M19249 Secondary osteoarthritis, unspecified hand +M19271 Secondary osteoarthritis, right ankle and foot +M19272 Secondary osteoarthritis, left ankle and foot +M19279 Secondary osteoarthritis, unspecified ankle and foot +M1990 Unspecified osteoarthritis, unspecified site +M1991 Primary osteoarthritis, unspecified site +M1992 Post-traumatic osteoarthritis, unspecified site +M1993 Secondary osteoarthritis, unspecified site +M1A00X0 Idiopathic chronic gout, unspecified site, without tophus (tophi) +M1A00X1 Idiopathic chronic gout, unspecified site, with tophus (tophi) +M1A0110 Idiopathic chronic gout, right shoulder, without tophus (tophi) +M1A0111 Idiopathic chronic gout, right shoulder, with tophus (tophi) +M1A0120 Idiopathic chronic gout, left shoulder, without tophus (tophi) +M1A0121 Idiopathic chronic gout, left shoulder, with tophus (tophi) +M1A0190 Idiopathic chronic gout, unspecified shoulder, without tophus (tophi) +M1A0191 Idiopathic chronic gout, unspecified shoulder, with tophus (tophi) +M1A0210 Idiopathic chronic gout, right elbow, without tophus (tophi) +M1A0211 Idiopathic chronic gout, right elbow, with tophus (tophi) +M1A0220 Idiopathic chronic gout, left elbow, without tophus (tophi) +M1A0221 Idiopathic chronic gout, left elbow, with tophus (tophi) +M1A0290 Idiopathic chronic gout, unspecified elbow, without tophus (tophi) +M1A0291 Idiopathic chronic gout, unspecified elbow, with tophus (tophi) +M1A0310 Idiopathic chronic gout, right wrist, without tophus (tophi) +M1A0311 Idiopathic chronic gout, right wrist, with tophus (tophi) +M1A0320 Idiopathic chronic gout, left wrist, without tophus (tophi) +M1A0321 Idiopathic chronic gout, left wrist, with tophus (tophi) +M1A0390 Idiopathic chronic gout, unspecified wrist, without tophus (tophi) +M1A0391 Idiopathic chronic gout, unspecified wrist, with tophus (tophi) +M1A0410 Idiopathic chronic gout, right hand, without tophus (tophi) +M1A0411 Idiopathic chronic gout, right hand, with tophus (tophi) +M1A0420 Idiopathic chronic gout, left hand, without tophus (tophi) +M1A0421 Idiopathic chronic gout, left hand, with tophus (tophi) +M1A0490 Idiopathic chronic gout, unspecified hand, without tophus (tophi) +M1A0491 Idiopathic chronic gout, unspecified hand, with tophus (tophi) +M1A0510 Idiopathic chronic gout, right hip, without tophus (tophi) +M1A0511 Idiopathic chronic gout, right hip, with tophus (tophi) +M1A0520 Idiopathic chronic gout, left hip, without tophus (tophi) +M1A0521 Idiopathic chronic gout, left hip, with tophus (tophi) +M1A0590 Idiopathic chronic gout, unspecified hip, without tophus (tophi) +M1A0591 Idiopathic chronic gout, unspecified hip, with tophus (tophi) +M1A0610 Idiopathic chronic gout, right knee, without tophus (tophi) +M1A0611 Idiopathic chronic gout, right knee, with tophus (tophi) +M1A0620 Idiopathic chronic gout, left knee, without tophus (tophi) +M1A0621 Idiopathic chronic gout, left knee, with tophus (tophi) +M1A0690 Idiopathic chronic gout, unspecified knee, without tophus (tophi) +M1A0691 Idiopathic chronic gout, unspecified knee, with tophus (tophi) +M1A0710 Idiopathic chronic gout, right ankle and foot, without tophus (tophi) +M1A0711 Idiopathic chronic gout, right ankle and foot, with tophus (tophi) +M1A0720 Idiopathic chronic gout, left ankle and foot, without tophus (tophi) +M1A0721 Idiopathic chronic gout, left ankle and foot, with tophus (tophi) +M1A0790 Idiopathic chronic gout, unspecified ankle and foot, without tophus (tophi) +M1A0791 Idiopathic chronic gout, unspecified ankle and foot, with tophus (tophi) +M1A08X0 Idiopathic chronic gout, vertebrae, without tophus (tophi) +M1A08X1 Idiopathic chronic gout, vertebrae, with tophus (tophi) +M1A09X0 Idiopathic chronic gout, multiple sites, without tophus (tophi) +M1A09X1 Idiopathic chronic gout, multiple sites, with tophus (tophi) +M1A10X0 Lead-induced chronic gout, unspecified site, without tophus (tophi) +M1A10X1 Lead-induced chronic gout, unspecified site, with tophus (tophi) +M1A1110 Lead-induced chronic gout, right shoulder, without tophus (tophi) +M1A1111 Lead-induced chronic gout, right shoulder, with tophus (tophi) +M1A1120 Lead-induced chronic gout, left shoulder, without tophus (tophi) +M1A1121 Lead-induced chronic gout, left shoulder, with tophus (tophi) +M1A1190 Lead-induced chronic gout, unspecified shoulder, without tophus (tophi) +M1A1191 Lead-induced chronic gout, unspecified shoulder, with tophus (tophi) +M1A1210 Lead-induced chronic gout, right elbow, without tophus (tophi) +M1A1211 Lead-induced chronic gout, right elbow, with tophus (tophi) +M1A1220 Lead-induced chronic gout, left elbow, without tophus (tophi) +M1A1221 Lead-induced chronic gout, left elbow, with tophus (tophi) +M1A1290 Lead-induced chronic gout, unspecified elbow, without tophus (tophi) +M1A1291 Lead-induced chronic gout, unspecified elbow, with tophus (tophi) +M1A1310 Lead-induced chronic gout, right wrist, without tophus (tophi) +M1A1311 Lead-induced chronic gout, right wrist, with tophus (tophi) +M1A1320 Lead-induced chronic gout, left wrist, without tophus (tophi) +M1A1321 Lead-induced chronic gout, left wrist, with tophus (tophi) +M1A1390 Lead-induced chronic gout, unspecified wrist, without tophus (tophi) +M1A1391 Lead-induced chronic gout, unspecified wrist, with tophus (tophi) +M1A1410 Lead-induced chronic gout, right hand, without tophus (tophi) +M1A1411 Lead-induced chronic gout, right hand, with tophus (tophi) +M1A1420 Lead-induced chronic gout, left hand, without tophus (tophi) +M1A1421 Lead-induced chronic gout, left hand, with tophus (tophi) +M1A1490 Lead-induced chronic gout, unspecified hand, without tophus (tophi) +M1A1491 Lead-induced chronic gout, unspecified hand, with tophus (tophi) +M1A1510 Lead-induced chronic gout, right hip, without tophus (tophi) +M1A1511 Lead-induced chronic gout, right hip, with tophus (tophi) +M1A1520 Lead-induced chronic gout, left hip, without tophus (tophi) +M1A1521 Lead-induced chronic gout, left hip, with tophus (tophi) +M1A1590 Lead-induced chronic gout, unspecified hip, without tophus (tophi) +M1A1591 Lead-induced chronic gout, unspecified hip, with tophus (tophi) +M1A1610 Lead-induced chronic gout, right knee, without tophus (tophi) +M1A1611 Lead-induced chronic gout, right knee, with tophus (tophi) +M1A1620 Lead-induced chronic gout, left knee, without tophus (tophi) +M1A1621 Lead-induced chronic gout, left knee, with tophus (tophi) +M1A1690 Lead-induced chronic gout, unspecified knee, without tophus (tophi) +M1A1691 Lead-induced chronic gout, unspecified knee, with tophus (tophi) +M1A1710 Lead-induced chronic gout, right ankle and foot, without tophus (tophi) +M1A1711 Lead-induced chronic gout, right ankle and foot, with tophus (tophi) +M1A1720 Lead-induced chronic gout, left ankle and foot, without tophus (tophi) +M1A1721 Lead-induced chronic gout, left ankle and foot, with tophus (tophi) +M1A1790 Lead-induced chronic gout, unspecified ankle and foot, without tophus (tophi) +M1A1791 Lead-induced chronic gout, unspecified ankle and foot, with tophus (tophi) +M1A18X0 Lead-induced chronic gout, vertebrae, without tophus (tophi) +M1A18X1 Lead-induced chronic gout, vertebrae, with tophus (tophi) +M1A19X0 Lead-induced chronic gout, multiple sites, without tophus (tophi) +M1A19X1 Lead-induced chronic gout, multiple sites, with tophus (tophi) +M1A20X0 Drug-induced chronic gout, unspecified site, without tophus (tophi) +M1A20X1 Drug-induced chronic gout, unspecified site, with tophus (tophi) +M1A2110 Drug-induced chronic gout, right shoulder, without tophus (tophi) +M1A2111 Drug-induced chronic gout, right shoulder, with tophus (tophi) +M1A2120 Drug-induced chronic gout, left shoulder, without tophus (tophi) +M1A2121 Drug-induced chronic gout, left shoulder, with tophus (tophi) +M1A2190 Drug-induced chronic gout, unspecified shoulder, without tophus (tophi) +M1A2191 Drug-induced chronic gout, unspecified shoulder, with tophus (tophi) +M1A2210 Drug-induced chronic gout, right elbow, without tophus (tophi) +M1A2211 Drug-induced chronic gout, right elbow, with tophus (tophi) +M1A2220 Drug-induced chronic gout, left elbow, without tophus (tophi) +M1A2221 Drug-induced chronic gout, left elbow, with tophus (tophi) +M1A2290 Drug-induced chronic gout, unspecified elbow, without tophus (tophi) +M1A2291 Drug-induced chronic gout, unspecified elbow, with tophus (tophi) +M1A2310 Drug-induced chronic gout, right wrist, without tophus (tophi) +M1A2311 Drug-induced chronic gout, right wrist, with tophus (tophi) +M1A2320 Drug-induced chronic gout, left wrist, without tophus (tophi) +M1A2321 Drug-induced chronic gout, left wrist, with tophus (tophi) +M1A2390 Drug-induced chronic gout, unspecified wrist, without tophus (tophi) +M1A2391 Drug-induced chronic gout, unspecified wrist, with tophus (tophi) +M1A2410 Drug-induced chronic gout, right hand, without tophus (tophi) +M1A2411 Drug-induced chronic gout, right hand, with tophus (tophi) +M1A2420 Drug-induced chronic gout, left hand, without tophus (tophi) +M1A2421 Drug-induced chronic gout, left hand, with tophus (tophi) +M1A2490 Drug-induced chronic gout, unspecified hand, without tophus (tophi) +M1A2491 Drug-induced chronic gout, unspecified hand, with tophus (tophi) +M1A2510 Drug-induced chronic gout, right hip, without tophus (tophi) +M1A2511 Drug-induced chronic gout, right hip, with tophus (tophi) +M1A2520 Drug-induced chronic gout, left hip, without tophus (tophi) +M1A2521 Drug-induced chronic gout, left hip, with tophus (tophi) +M1A2590 Drug-induced chronic gout, unspecified hip, without tophus (tophi) +M1A2591 Drug-induced chronic gout, unspecified hip, with tophus (tophi) +M1A2610 Drug-induced chronic gout, right knee, without tophus (tophi) +M1A2611 Drug-induced chronic gout, right knee, with tophus (tophi) +M1A2620 Drug-induced chronic gout, left knee, without tophus (tophi) +M1A2621 Drug-induced chronic gout, left knee, with tophus (tophi) +M1A2690 Drug-induced chronic gout, unspecified knee, without tophus (tophi) +M1A2691 Drug-induced chronic gout, unspecified knee, with tophus (tophi) +M1A2710 Drug-induced chronic gout, right ankle and foot, without tophus (tophi) +M1A2711 Drug-induced chronic gout, right ankle and foot, with tophus (tophi) +M1A2720 Drug-induced chronic gout, left ankle and foot, without tophus (tophi) +M1A2721 Drug-induced chronic gout, left ankle and foot, with tophus (tophi) +M1A2790 Drug-induced chronic gout, unspecified ankle and foot, without tophus (tophi) +M1A2791 Drug-induced chronic gout, unspecified ankle and foot, with tophus (tophi) +M1A28X0 Drug-induced chronic gout, vertebrae, without tophus (tophi) +M1A28X1 Drug-induced chronic gout, vertebrae, with tophus (tophi) +M1A29X0 Drug-induced chronic gout, multiple sites, without tophus (tophi) +M1A29X1 Drug-induced chronic gout, multiple sites, with tophus (tophi) +M1A30X0 Chronic gout due to renal impairment, unspecified site, without tophus (tophi) +M1A30X1 Chronic gout due to renal impairment, unspecified site, with tophus (tophi) +M1A3110 Chronic gout due to renal impairment, right shoulder, without tophus (tophi) +M1A3111 Chronic gout due to renal impairment, right shoulder, with tophus (tophi) +M1A3120 Chronic gout due to renal impairment, left shoulder, without tophus (tophi) +M1A3121 Chronic gout due to renal impairment, left shoulder, with tophus (tophi) +M1A3190 Chronic gout due to renal impairment, unspecified shoulder, without tophus (tophi) +M1A3191 Chronic gout due to renal impairment, unspecified shoulder, with tophus (tophi) +M1A3210 Chronic gout due to renal impairment, right elbow, without tophus (tophi) +M1A3211 Chronic gout due to renal impairment, right elbow, with tophus (tophi) +M1A3220 Chronic gout due to renal impairment, left elbow, without tophus (tophi) +M1A3221 Chronic gout due to renal impairment, left elbow, with tophus (tophi) +M1A3290 Chronic gout due to renal impairment, unspecified elbow, without tophus (tophi) +M1A3291 Chronic gout due to renal impairment, unspecified elbow, with tophus (tophi) +M1A3310 Chronic gout due to renal impairment, right wrist, without tophus (tophi) +M1A3311 Chronic gout due to renal impairment, right wrist, with tophus (tophi) +M1A3320 Chronic gout due to renal impairment, left wrist, without tophus (tophi) +M1A3321 Chronic gout due to renal impairment, left wrist, with tophus (tophi) +M1A3390 Chronic gout due to renal impairment, unspecified wrist, without tophus (tophi) +M1A3391 Chronic gout due to renal impairment, unspecified wrist, with tophus (tophi) +M1A3410 Chronic gout due to renal impairment, right hand, without tophus (tophi) +M1A3411 Chronic gout due to renal impairment, right hand, with tophus (tophi) +M1A3420 Chronic gout due to renal impairment, left hand, without tophus (tophi) +M1A3421 Chronic gout due to renal impairment, left hand, with tophus (tophi) +M1A3490 Chronic gout due to renal impairment, unspecified hand, without tophus (tophi) +M1A3491 Chronic gout due to renal impairment, unspecified hand, with tophus (tophi) +M1A3510 Chronic gout due to renal impairment, right hip, without tophus (tophi) +M1A3511 Chronic gout due to renal impairment, right hip, with tophus (tophi) +M1A3520 Chronic gout due to renal impairment, left hip, without tophus (tophi) +M1A3521 Chronic gout due to renal impairment, left hip, with tophus (tophi) +M1A3590 Chronic gout due to renal impairment, unspecified hip, without tophus (tophi) +M1A3591 Chronic gout due to renal impairment, unspecified hip, with tophus (tophi) +M1A3610 Chronic gout due to renal impairment, right knee, without tophus (tophi) +M1A3611 Chronic gout due to renal impairment, right knee, with tophus (tophi) +M1A3620 Chronic gout due to renal impairment, left knee, without tophus (tophi) +M1A3621 Chronic gout due to renal impairment, left knee, with tophus (tophi) +M1A3690 Chronic gout due to renal impairment, unspecified knee, without tophus (tophi) +M1A3691 Chronic gout due to renal impairment, unspecified knee, with tophus (tophi) +M1A3710 Chronic gout due to renal impairment, right ankle and foot, without tophus (tophi) +M1A3711 Chronic gout due to renal impairment, right ankle and foot, with tophus (tophi) +M1A3720 Chronic gout due to renal impairment, left ankle and foot, without tophus (tophi) +M1A3721 Chronic gout due to renal impairment, left ankle and foot, with tophus (tophi) +M1A3790 Chronic gout due to renal impairment, unspecified ankle and foot, without tophus (tophi) +M1A3791 Chronic gout due to renal impairment, unspecified ankle and foot, with tophus (tophi) +M1A38X0 Chronic gout due to renal impairment, vertebrae, without tophus (tophi) +M1A38X1 Chronic gout due to renal impairment, vertebrae, with tophus (tophi) +M1A39X0 Chronic gout due to renal impairment, multiple sites, without tophus (tophi) +M1A39X1 Chronic gout due to renal impairment, multiple sites, with tophus (tophi) +M1A40X0 Other secondary chronic gout, unspecified site, without tophus (tophi) +M1A40X1 Other secondary chronic gout, unspecified site, with tophus (tophi) +M1A4110 Other secondary chronic gout, right shoulder, without tophus (tophi) +M1A4111 Other secondary chronic gout, right shoulder, with tophus (tophi) +M1A4120 Other secondary chronic gout, left shoulder, without tophus (tophi) +M1A4121 Other secondary chronic gout, left shoulder, with tophus (tophi) +M1A4190 Other secondary chronic gout, unspecified shoulder, without tophus (tophi) +M1A4191 Other secondary chronic gout, unspecified shoulder, with tophus (tophi) +M1A4210 Other secondary chronic gout, right elbow, without tophus (tophi) +M1A4211 Other secondary chronic gout, right elbow, with tophus (tophi) +M1A4220 Other secondary chronic gout, left elbow, without tophus (tophi) +M1A4221 Other secondary chronic gout, left elbow, with tophus (tophi) +M1A4290 Other secondary chronic gout, unspecified elbow, without tophus (tophi) +M1A4291 Other secondary chronic gout, unspecified elbow, with tophus (tophi) +M1A4310 Other secondary chronic gout, right wrist, without tophus (tophi) +M1A4311 Other secondary chronic gout, right wrist, with tophus (tophi) +M1A4320 Other secondary chronic gout, left wrist, without tophus (tophi) +M1A4321 Other secondary chronic gout, left wrist, with tophus (tophi) +M1A4390 Other secondary chronic gout, unspecified wrist, without tophus (tophi) +M1A4391 Other secondary chronic gout, unspecified wrist, with tophus (tophi) +M1A4410 Other secondary chronic gout, right hand, without tophus (tophi) +M1A4411 Other secondary chronic gout, right hand, with tophus (tophi) +M1A4420 Other secondary chronic gout, left hand, without tophus (tophi) +M1A4421 Other secondary chronic gout, left hand, with tophus (tophi) +M1A4490 Other secondary chronic gout, unspecified hand, without tophus (tophi) +M1A4491 Other secondary chronic gout, unspecified hand, with tophus (tophi) +M1A4510 Other secondary chronic gout, right hip, without tophus (tophi) +M1A4511 Other secondary chronic gout, right hip, with tophus (tophi) +M1A4520 Other secondary chronic gout, left hip, without tophus (tophi) +M1A4521 Other secondary chronic gout, left hip, with tophus (tophi) +M1A4590 Other secondary chronic gout, unspecified hip, without tophus (tophi) +M1A4591 Other secondary chronic gout, unspecified hip, with tophus (tophi) +M1A4610 Other secondary chronic gout, right knee, without tophus (tophi) +M1A4611 Other secondary chronic gout, right knee, with tophus (tophi) +M1A4620 Other secondary chronic gout, left knee, without tophus (tophi) +M1A4621 Other secondary chronic gout, left knee, with tophus (tophi) +M1A4690 Other secondary chronic gout, unspecified knee, without tophus (tophi) +M1A4691 Other secondary chronic gout, unspecified knee, with tophus (tophi) +M1A4710 Other secondary chronic gout, right ankle and foot, without tophus (tophi) +M1A4711 Other secondary chronic gout, right ankle and foot, with tophus (tophi) +M1A4720 Other secondary chronic gout, left ankle and foot, without tophus (tophi) +M1A4721 Other secondary chronic gout, left ankle and foot, with tophus (tophi) +M1A4790 Other secondary chronic gout, unspecified ankle and foot, without tophus (tophi) +M1A4791 Other secondary chronic gout, unspecified ankle and foot, with tophus (tophi) +M1A48X0 Other secondary chronic gout, vertebrae, without tophus (tophi) +M1A48X1 Other secondary chronic gout, vertebrae, with tophus (tophi) +M1A49X0 Other secondary chronic gout, multiple sites, without tophus (tophi) +M1A49X1 Other secondary chronic gout, multiple sites, with tophus (tophi) +M1A9XX0 Chronic gout, unspecified, without tophus (tophi) +M1A9XX1 Chronic gout, unspecified, with tophus (tophi) +M20001 Unspecified deformity of right finger(s) +M20002 Unspecified deformity of left finger(s) +M20009 Unspecified deformity of unspecified finger(s) +M20011 Mallet finger of right finger(s) +M20012 Mallet finger of left finger(s) +M20019 Mallet finger of unspecified finger(s) +M20021 Boutonniere deformity of right finger(s) +M20022 Boutonniere deformity of left finger(s) +M20029 Boutonniere deformity of unspecified finger(s) +M20031 Swan-neck deformity of right finger(s) +M20032 Swan-neck deformity of left finger(s) +M20039 Swan-neck deformity of unspecified finger(s) +M20091 Other deformity of right finger(s) +M20092 Other deformity of left finger(s) +M20099 Other deformity of finger(s), unspecified finger(s) +M2010 Hallux valgus (acquired), unspecified foot +M2011 Hallux valgus (acquired), right foot +M2012 Hallux valgus (acquired), left foot +M2020 Hallux rigidus, unspecified foot +M2021 Hallux rigidus, right foot +M2022 Hallux rigidus, left foot +M2030 Hallux varus (acquired), unspecified foot +M2031 Hallux varus (acquired), right foot +M2032 Hallux varus (acquired), left foot +M2040 Other hammer toe(s) (acquired), unspecified foot +M2041 Other hammer toe(s) (acquired), right foot +M2042 Other hammer toe(s) (acquired), left foot +M205X1 Other deformities of toe(s) (acquired), right foot +M205X2 Other deformities of toe(s) (acquired), left foot +M205X9 Other deformities of toe(s) (acquired), unspecified foot +M2060 Acquired deformities of toe(s), unspecified, unspecified foot +M2061 Acquired deformities of toe(s), unspecified, right foot +M2062 Acquired deformities of toe(s), unspecified, left foot +M2100 Valgus deformity, not elsewhere classified, unspecified site +M21021 Valgus deformity, not elsewhere classified, right elbow +M21022 Valgus deformity, not elsewhere classified, left elbow +M21029 Valgus deformity, not elsewhere classified, unspecified elbow +M21051 Valgus deformity, not elsewhere classified, right hip +M21052 Valgus deformity, not elsewhere classified, left hip +M21059 Valgus deformity, not elsewhere classified, unspecified hip +M21061 Valgus deformity, not elsewhere classified, right knee +M21062 Valgus deformity, not elsewhere classified, left knee +M21069 Valgus deformity, not elsewhere classified, unspecified knee +M21071 Valgus deformity, not elsewhere classified, right ankle +M21072 Valgus deformity, not elsewhere classified, left ankle +M21079 Valgus deformity, not elsewhere classified, unspecified ankle +M2110 Varus deformity, not elsewhere classified, unspecified site +M21121 Varus deformity, not elsewhere classified, right elbow +M21122 Varus deformity, not elsewhere classified, left elbow +M21129 Varus deformity, not elsewhere classified, unspecified elbow +M21151 Varus deformity, not elsewhere classified, right hip +M21152 Varus deformity, not elsewhere classified, left hip +M21159 Varus deformity, not elsewhere classified, unspecified +M21161 Varus deformity, not elsewhere classified, right knee +M21162 Varus deformity, not elsewhere classified, left knee +M21169 Varus deformity, not elsewhere classified, unspecified knee +M21171 Varus deformity, not elsewhere classified, right ankle +M21172 Varus deformity, not elsewhere classified, left ankle +M21179 Varus deformity, not elsewhere classified, unspecified ankle +M2120 Flexion deformity, unspecified site +M21211 Flexion deformity, right shoulder +M21212 Flexion deformity, left shoulder +M21219 Flexion deformity, unspecified shoulder +M21221 Flexion deformity, right elbow +M21222 Flexion deformity, left elbow +M21229 Flexion deformity, unspecified elbow +M21231 Flexion deformity, right wrist +M21232 Flexion deformity, left wrist +M21239 Flexion deformity, unspecified wrist +M21241 Flexion deformity, right finger joints +M21242 Flexion deformity, left finger joints +M21249 Flexion deformity, unspecified finger joints +M21251 Flexion deformity, right hip +M21252 Flexion deformity, left hip +M21259 Flexion deformity, unspecified hip +M21261 Flexion deformity, right knee +M21262 Flexion deformity, left knee +M21269 Flexion deformity, unspecified knee +M21271 Flexion deformity, right ankle and toes +M21272 Flexion deformity, left ankle and toes +M21279 Flexion deformity, unspecified ankle and toes +M21331 Wrist drop, right wrist +M21332 Wrist drop, left wrist +M21339 Wrist drop, unspecified wrist +M21371 Foot drop, right foot +M21372 Foot drop, left foot +M21379 Foot drop, unspecified foot +M2140 Flat foot [pes planus] (acquired), unspecified foot +M2141 Flat foot [pes planus] (acquired), right foot +M2142 Flat foot [pes planus] (acquired), left foot +M21511 Acquired clawhand, right hand +M21512 Acquired clawhand, left hand +M21519 Acquired clawhand, unspecified hand +M21521 Acquired clubhand, right hand +M21522 Acquired clubhand, left hand +M21529 Acquired clubhand, unspecified hand +M21531 Acquired clawfoot, right foot +M21532 Acquired clawfoot, left foot +M21539 Acquired clawfoot, unspecified foot +M21541 Acquired clubfoot, right foot +M21542 Acquired clubfoot, left foot +M21549 Acquired clubfoot, unspecified foot +M21611 Bunion of right foot +M21612 Bunion of left foot +M21619 Bunion of unspecified foot +M21621 Bunionette of right foot +M21622 Bunionette of left foot +M21629 Bunionette of unspecified foot +M216X1 Other acquired deformities of right foot +M216X2 Other acquired deformities of left foot +M216X9 Other acquired deformities of unspecified foot +M2170 Unequal limb length (acquired), unspecified site +M21721 Unequal limb length (acquired), right humerus +M21722 Unequal limb length (acquired), left humerus +M21729 Unequal limb length (acquired), unspecified humerus +M21731 Unequal limb length (acquired), right ulna +M21732 Unequal limb length (acquired), left ulna +M21733 Unequal limb length (acquired), right radius +M21734 Unequal limb length (acquired), left radius +M21739 Unequal limb length (acquired), unspecified ulna and radius +M21751 Unequal limb length (acquired), right femur +M21752 Unequal limb length (acquired), left femur +M21759 Unequal limb length (acquired), unspecified femur +M21761 Unequal limb length (acquired), right tibia +M21762 Unequal limb length (acquired), left tibia +M21763 Unequal limb length (acquired), right fibula +M21764 Unequal limb length (acquired), left fibula +M21769 Unequal limb length (acquired), unspecified tibia and fibula +M2180 Other specified acquired deformities of unspecified limb +M21821 Other specified acquired deformities of right upper arm +M21822 Other specified acquired deformities of left upper arm +M21829 Other specified acquired deformities of unspecified upper arm +M21831 Other specified acquired deformities of right forearm +M21832 Other specified acquired deformities of left forearm +M21839 Other specified acquired deformities of unspecified forearm +M21851 Other specified acquired deformities of right thigh +M21852 Other specified acquired deformities of left thigh +M21859 Other specified acquired deformities of unspecified thigh +M21861 Other specified acquired deformities of right lower leg +M21862 Other specified acquired deformities of left lower leg +M21869 Other specified acquired deformities of unspecified lower leg +M2190 Unspecified acquired deformity of unspecified limb +M21921 Unspecified acquired deformity of right upper arm +M21922 Unspecified acquired deformity of left upper arm +M21929 Unspecified acquired deformity of unspecified upper arm +M21931 Unspecified acquired deformity of right forearm +M21932 Unspecified acquired deformity of left forearm +M21939 Unspecified acquired deformity of unspecified forearm +M21941 Unspecified acquired deformity of hand, right hand +M21942 Unspecified acquired deformity of hand, left hand +M21949 Unspecified acquired deformity of hand, unspecified hand +M21951 Unspecified acquired deformity of right thigh +M21952 Unspecified acquired deformity of left thigh +M21959 Unspecified acquired deformity of unspecified thigh +M21961 Unspecified acquired deformity of right lower leg +M21962 Unspecified acquired deformity of left lower leg +M21969 Unspecified acquired deformity of unspecified lower leg +M2200 Recurrent dislocation of patella, unspecified knee +M2201 Recurrent dislocation of patella, right knee +M2202 Recurrent dislocation of patella, left knee +M2210 Recurrent subluxation of patella, unspecified knee +M2211 Recurrent subluxation of patella, right knee +M2212 Recurrent subluxation of patella, left knee +M222X1 Patellofemoral disorders, right knee +M222X2 Patellofemoral disorders, left knee +M222X9 Patellofemoral disorders, unspecified knee +M223X1 Other derangements of patella, right knee +M223X2 Other derangements of patella, left knee +M223X9 Other derangements of patella, unspecified knee +M2240 Chondromalacia patellae, unspecified knee +M2241 Chondromalacia patellae, right knee +M2242 Chondromalacia patellae, left knee +M228X1 Other disorders of patella, right knee +M228X2 Other disorders of patella, left knee +M228X9 Other disorders of patella, unspecified knee +M2290 Unspecified disorder of patella, unspecified knee +M2291 Unspecified disorder of patella, right knee +M2292 Unspecified disorder of patella, left knee +M23000 Cystic meniscus, unspecified lateral meniscus, right knee +M23001 Cystic meniscus, unspecified lateral meniscus, left knee +M23002 Cystic meniscus, unspecified lateral meniscus, unspecified knee +M23003 Cystic meniscus, unspecified medial meniscus, right knee +M23004 Cystic meniscus, unspecified medial meniscus, left knee +M23005 Cystic meniscus, unspecified medial meniscus, unspecified knee +M23006 Cystic meniscus, unspecified meniscus, right knee +M23007 Cystic meniscus, unspecified meniscus, left knee +M23009 Cystic meniscus, unspecified meniscus, unspecified knee +M23011 Cystic meniscus, anterior horn of medial meniscus, right knee +M23012 Cystic meniscus, anterior horn of medial meniscus, left knee +M23019 Cystic meniscus, anterior horn of medial meniscus, unspecified knee +M23021 Cystic meniscus, posterior horn of medial meniscus, right knee +M23022 Cystic meniscus, posterior horn of medial meniscus, left knee +M23029 Cystic meniscus, posterior horn of medial meniscus, unspecified knee +M23031 Cystic meniscus, other medial meniscus, right knee +M23032 Cystic meniscus, other medial meniscus, left knee +M23039 Cystic meniscus, other medial meniscus, unspecified knee +M23041 Cystic meniscus, anterior horn of lateral meniscus, right knee +M23042 Cystic meniscus, anterior horn of lateral meniscus, left knee +M23049 Cystic meniscus, anterior horn of lateral meniscus, unspecified knee +M23051 Cystic meniscus, posterior horn of lateral meniscus, right knee +M23052 Cystic meniscus, posterior horn of lateral meniscus, left knee +M23059 Cystic meniscus, posterior horn of lateral meniscus, unspecified knee +M23061 Cystic meniscus, other lateral meniscus, right knee +M23062 Cystic meniscus, other lateral meniscus, left knee +M23069 Cystic meniscus, other lateral meniscus, unspecified knee +M23200 Derangement of unspecified lateral meniscus due to old tear or injury, right knee +M23201 Derangement of unspecified lateral meniscus due to old tear or injury, left knee +M23202 Derangement of unspecified lateral meniscus due to old tear or injury, unspecified knee +M23203 Derangement of unspecified medial meniscus due to old tear or injury, right knee +M23204 Derangement of unspecified medial meniscus due to old tear or injury, left knee +M23205 Derangement of unspecified medial meniscus due to old tear or injury, unspecified knee +M23206 Derangement of unspecified meniscus due to old tear or injury, right knee +M23207 Derangement of unspecified meniscus due to old tear or injury, left knee +M23209 Derangement of unspecified meniscus due to old tear or injury, unspecified knee +M23211 Derangement of anterior horn of medial meniscus due to old tear or injury, right knee +M23212 Derangement of anterior horn of medial meniscus due to old tear or injury, left knee +M23219 Derangement of anterior horn of medial meniscus due to old tear or injury, unspecified knee +M23221 Derangement of posterior horn of medial meniscus due to old tear or injury, right knee +M23222 Derangement of posterior horn of medial meniscus due to old tear or injury, left knee +M23229 Derangement of posterior horn of medial meniscus due to old tear or injury, unspecified knee +M23231 Derangement of other medial meniscus due to old tear or injury, right knee +M23232 Derangement of other medial meniscus due to old tear or injury, left knee +M23239 Derangement of other medial meniscus due to old tear or injury, unspecified knee +M23241 Derangement of anterior horn of lateral meniscus due to old tear or injury, right knee +M23242 Derangement of anterior horn of lateral meniscus due to old tear or injury, left knee +M23249 Derangement of anterior horn of lateral meniscus due to old tear or injury, unspecified knee +M23251 Derangement of posterior horn of lateral meniscus due to old tear or injury, right knee +M23252 Derangement of posterior horn of lateral meniscus due to old tear or injury, left knee +M23259 Derangement of posterior horn of lateral meniscus due to old tear or injury, unspecified knee +M23261 Derangement of other lateral meniscus due to old tear or injury, right knee +M23262 Derangement of other lateral meniscus due to old tear or injury, left knee +M23269 Derangement of other lateral meniscus due to old tear or injury, unspecified knee +M23300 Other meniscus derangements, unspecified lateral meniscus, right knee +M23301 Other meniscus derangements, unspecified lateral meniscus, left knee +M23302 Other meniscus derangements, unspecified lateral meniscus, unspecified knee +M23303 Other meniscus derangements, unspecified medial meniscus, right knee +M23304 Other meniscus derangements, unspecified medial meniscus, left knee +M23305 Other meniscus derangements, unspecified medial meniscus, unspecified knee +M23306 Other meniscus derangements, unspecified meniscus, right knee +M23307 Other meniscus derangements, unspecified meniscus, left knee +M23309 Other meniscus derangements, unspecified meniscus, unspecified knee +M23311 Other meniscus derangements, anterior horn of medial meniscus, right knee +M23312 Other meniscus derangements, anterior horn of medial meniscus, left knee +M23319 Other meniscus derangements, anterior horn of medial meniscus, unspecified knee +M23321 Other meniscus derangements, posterior horn of medial meniscus, right knee +M23322 Other meniscus derangements, posterior horn of medial meniscus, left knee +M23329 Other meniscus derangements, posterior horn of medial meniscus, unspecified knee +M23331 Other meniscus derangements, other medial meniscus, right knee +M23332 Other meniscus derangements, other medial meniscus, left knee +M23339 Other meniscus derangements, other medial meniscus, unspecified knee +M23341 Other meniscus derangements, anterior horn of lateral meniscus, right knee +M23342 Other meniscus derangements, anterior horn of lateral meniscus, left knee +M23349 Other meniscus derangements, anterior horn of lateral meniscus, unspecified knee +M23351 Other meniscus derangements, posterior horn of lateral meniscus, right knee +M23352 Other meniscus derangements, posterior horn of lateral meniscus, left knee +M23359 Other meniscus derangements, posterior horn of lateral meniscus, unspecified knee +M23361 Other meniscus derangements, other lateral meniscus, right knee +M23362 Other meniscus derangements, other lateral meniscus, left knee +M23369 Other meniscus derangements, other lateral meniscus, unspecified knee +M2340 Loose body in knee, unspecified knee +M2341 Loose body in knee, right knee +M2342 Loose body in knee, left knee +M2350 Chronic instability of knee, unspecified knee +M2351 Chronic instability of knee, right knee +M2352 Chronic instability of knee, left knee +M23601 Other spontaneous disruption of unspecified ligament of right knee +M23602 Other spontaneous disruption of unspecified ligament of left knee +M23609 Other spontaneous disruption of unspecified ligament of unspecified knee +M23611 Other spontaneous disruption of anterior cruciate ligament of right knee +M23612 Other spontaneous disruption of anterior cruciate ligament of left knee +M23619 Other spontaneous disruption of anterior cruciate ligament of unspecified knee +M23621 Other spontaneous disruption of posterior cruciate ligament of right knee +M23622 Other spontaneous disruption of posterior cruciate ligament of left knee +M23629 Other spontaneous disruption of posterior cruciate ligament of unspecified knee +M23631 Other spontaneous disruption of medial collateral ligament of right knee +M23632 Other spontaneous disruption of medial collateral ligament of left knee +M23639 Other spontaneous disruption of medial collateral ligament of unspecified knee +M23641 Other spontaneous disruption of lateral collateral ligament of right knee +M23642 Other spontaneous disruption of lateral collateral ligament of left knee +M23649 Other spontaneous disruption of lateral collateral ligament of unspecified knee +M23671 Other spontaneous disruption of capsular ligament of right knee +M23672 Other spontaneous disruption of capsular ligament of left knee +M23679 Other spontaneous disruption of capsular ligament of unspecified knee +M238X1 Other internal derangements of right knee +M238X2 Other internal derangements of left knee +M238X9 Other internal derangements of unspecified knee +M2390 Unspecified internal derangement of unspecified knee +M2391 Unspecified internal derangement of right knee +M2392 Unspecified internal derangement of left knee +M2400 Loose body in unspecified joint +M24011 Loose body in right shoulder +M24012 Loose body in left shoulder +M24019 Loose body in unspecified shoulder +M24021 Loose body in right elbow +M24022 Loose body in left elbow +M24029 Loose body in unspecified elbow +M24031 Loose body in right wrist +M24032 Loose body in left wrist +M24039 Loose body in unspecified wrist +M24041 Loose body in right finger joint(s) +M24042 Loose body in left finger joint(s) +M24049 Loose body in unspecified finger joint(s) +M24051 Loose body in right hip +M24052 Loose body in left hip +M24059 Loose body in unspecified hip +M24071 Loose body in right ankle +M24072 Loose body in left ankle +M24073 Loose body in unspecified ankle +M24074 Loose body in right toe joint(s) +M24075 Loose body in left toe joint(s) +M24076 Loose body in unspecified toe joints +M2408 Loose body, other site +M2410 Other articular cartilage disorders, unspecified site +M24111 Other articular cartilage disorders, right shoulder +M24112 Other articular cartilage disorders, left shoulder +M24119 Other articular cartilage disorders, unspecified shoulder +M24121 Other articular cartilage disorders, right elbow +M24122 Other articular cartilage disorders, left elbow +M24129 Other articular cartilage disorders, unspecified elbow +M24131 Other articular cartilage disorders, right wrist +M24132 Other articular cartilage disorders, left wrist +M24139 Other articular cartilage disorders, unspecified wrist +M24141 Other articular cartilage disorders, right hand +M24142 Other articular cartilage disorders, left hand +M24149 Other articular cartilage disorders, unspecified hand +M24151 Other articular cartilage disorders, right hip +M24152 Other articular cartilage disorders, left hip +M24159 Other articular cartilage disorders, unspecified hip +M24171 Other articular cartilage disorders, right ankle +M24172 Other articular cartilage disorders, left ankle +M24173 Other articular cartilage disorders, unspecified ankle +M24174 Other articular cartilage disorders, right foot +M24175 Other articular cartilage disorders, left foot +M24176 Other articular cartilage disorders, unspecified foot +M2420 Disorder of ligament, unspecified site +M24211 Disorder of ligament, right shoulder +M24212 Disorder of ligament, left shoulder +M24219 Disorder of ligament, unspecified shoulder +M24221 Disorder of ligament, right elbow +M24222 Disorder of ligament, left elbow +M24229 Disorder of ligament, unspecified elbow +M24231 Disorder of ligament, right wrist +M24232 Disorder of ligament, left wrist +M24239 Disorder of ligament, unspecified wrist +M24241 Disorder of ligament, right hand +M24242 Disorder of ligament, left hand +M24249 Disorder of ligament, unspecified hand +M24251 Disorder of ligament, right hip +M24252 Disorder of ligament, left hip +M24259 Disorder of ligament, unspecified hip +M24271 Disorder of ligament, right ankle +M24272 Disorder of ligament, left ankle +M24273 Disorder of ligament, unspecified ankle +M24274 Disorder of ligament, right foot +M24275 Disorder of ligament, left foot +M24276 Disorder of ligament, unspecified foot +M2428 Disorder of ligament, vertebrae +M2430 Pathological dislocation of unspecified joint, not elsewhere classified +M24311 Pathological dislocation of right shoulder, not elsewhere classified +M24312 Pathological dislocation of left shoulder, not elsewhere classified +M24319 Pathological dislocation of unspecified shoulder, not elsewhere classified +M24321 Pathological dislocation of right elbow, not elsewhere classified +M24322 Pathological dislocation of left elbow, not elsewhere classified +M24329 Pathological dislocation of unspecified elbow, not elsewhere classified +M24331 Pathological dislocation of right wrist, not elsewhere classified +M24332 Pathological dislocation of left wrist, not elsewhere classified +M24339 Pathological dislocation of unspecified wrist, not elsewhere classified +M24341 Pathological dislocation of right hand, not elsewhere classified +M24342 Pathological dislocation of left hand, not elsewhere classified +M24349 Pathological dislocation of unspecified hand, not elsewhere classified +M24351 Pathological dislocation of right hip, not elsewhere classified +M24352 Pathological dislocation of left hip, not elsewhere classified +M24359 Pathological dislocation of unspecified hip, not elsewhere classified +M24361 Pathological dislocation of right knee, not elsewhere classified +M24362 Pathological dislocation of left knee, not elsewhere classified +M24369 Pathological dislocation of unspecified knee, not elsewhere classified +M24371 Pathological dislocation of right ankle, not elsewhere classified +M24372 Pathological dislocation of left ankle, not elsewhere classified +M24373 Pathological dislocation of unspecified ankle, not elsewhere classified +M24374 Pathological dislocation of right foot, not elsewhere classified +M24375 Pathological dislocation of left foot, not elsewhere classified +M24376 Pathological dislocation of unspecified foot, not elsewhere classified +M2440 Recurrent dislocation, unspecified joint +M24411 Recurrent dislocation, right shoulder +M24412 Recurrent dislocation, left shoulder +M24419 Recurrent dislocation, unspecified shoulder +M24421 Recurrent dislocation, right elbow +M24422 Recurrent dislocation, left elbow +M24429 Recurrent dislocation, unspecified elbow +M24431 Recurrent dislocation, right wrist +M24432 Recurrent dislocation, left wrist +M24439 Recurrent dislocation, unspecified wrist +M24441 Recurrent dislocation, right hand +M24442 Recurrent dislocation, left hand +M24443 Recurrent dislocation, unspecified hand +M24444 Recurrent dislocation, right finger +M24445 Recurrent dislocation, left finger +M24446 Recurrent dislocation, unspecified finger +M24451 Recurrent dislocation, right hip +M24452 Recurrent dislocation, left hip +M24459 Recurrent dislocation, unspecified hip +M24461 Recurrent dislocation, right knee +M24462 Recurrent dislocation, left knee +M24469 Recurrent dislocation, unspecified knee +M24471 Recurrent dislocation, right ankle +M24472 Recurrent dislocation, left ankle +M24473 Recurrent dislocation, unspecified ankle +M24474 Recurrent dislocation, right foot +M24475 Recurrent dislocation, left foot +M24476 Recurrent dislocation, unspecified foot +M24477 Recurrent dislocation, right toe(s) +M24478 Recurrent dislocation, left toe(s) +M24479 Recurrent dislocation, unspecified toe(s) +M2450 Contracture, unspecified joint +M24511 Contracture, right shoulder +M24512 Contracture, left shoulder +M24519 Contracture, unspecified shoulder +M24521 Contracture, right elbow +M24522 Contracture, left elbow +M24529 Contracture, unspecified elbow +M24531 Contracture, right wrist +M24532 Contracture, left wrist +M24539 Contracture, unspecified wrist +M24541 Contracture, right hand +M24542 Contracture, left hand +M24549 Contracture, unspecified hand +M24551 Contracture, right hip +M24552 Contracture, left hip +M24559 Contracture, unspecified hip +M24561 Contracture, right knee +M24562 Contracture, left knee +M24569 Contracture, unspecified knee +M24571 Contracture, right ankle +M24572 Contracture, left ankle +M24573 Contracture, unspecified ankle +M24574 Contracture, right foot +M24575 Contracture, left foot +M24576 Contracture, unspecified foot +M2460 Ankylosis, unspecified joint +M24611 Ankylosis, right shoulder +M24612 Ankylosis, left shoulder +M24619 Ankylosis, unspecified shoulder +M24621 Ankylosis, right elbow +M24622 Ankylosis, left elbow +M24629 Ankylosis, unspecified elbow +M24631 Ankylosis, right wrist +M24632 Ankylosis, left wrist +M24639 Ankylosis, unspecified wrist +M24641 Ankylosis, right hand +M24642 Ankylosis, left hand +M24649 Ankylosis, unspecified hand +M24651 Ankylosis, right hip +M24652 Ankylosis, left hip +M24659 Ankylosis, unspecified hip +M24661 Ankylosis, right knee +M24662 Ankylosis, left knee +M24669 Ankylosis, unspecified knee +M24671 Ankylosis, right ankle +M24672 Ankylosis, left ankle +M24673 Ankylosis, unspecified ankle +M24674 Ankylosis, right foot +M24675 Ankylosis, left foot +M24676 Ankylosis, unspecified foot +M247 Protrusio acetabuli +M2480 Other specific joint derangements of unspecified joint, not elsewhere classified +M24811 Other specific joint derangements of right shoulder, not elsewhere classified +M24812 Other specific joint derangements of left shoulder, not elsewhere classified +M24819 Other specific joint derangements of unspecified shoulder, not elsewhere classified +M24821 Other specific joint derangements of right elbow, not elsewhere classified +M24822 Other specific joint derangements of left elbow, not elsewhere classified +M24829 Other specific joint derangements of unspecified elbow, not elsewhere classified +M24831 Other specific joint derangements of right wrist, not elsewhere classified +M24832 Other specific joint derangements of left wrist, not elsewhere classified +M24839 Other specific joint derangements of unspecified wrist, not elsewhere classified +M24841 Other specific joint derangements of right hand, not elsewhere classified +M24842 Other specific joint derangements of left hand, not elsewhere classified +M24849 Other specific joint derangements of unspecified hand, not elsewhere classified +M24851 Other specific joint derangements of right hip, not elsewhere classified +M24852 Other specific joint derangements of left hip, not elsewhere classified +M24859 Other specific joint derangements of unspecified hip, not elsewhere classified +M24871 Other specific joint derangements of right ankle, not elsewhere classified +M24872 Other specific joint derangements of left ankle, not elsewhere classified +M24873 Other specific joint derangements of unspecified ankle, not elsewhere classified +M24874 Other specific joint derangements of right foot, not elsewhere classified +M24875 Other specific joint derangements left foot, not elsewhere classified +M24876 Other specific joint derangements of unspecified foot, not elsewhere classified +M249 Joint derangement, unspecified +M2500 Hemarthrosis, unspecified joint +M25011 Hemarthrosis, right shoulder +M25012 Hemarthrosis, left shoulder +M25019 Hemarthrosis, unspecified shoulder +M25021 Hemarthrosis, right elbow +M25022 Hemarthrosis, left elbow +M25029 Hemarthrosis, unspecified elbow +M25031 Hemarthrosis, right wrist +M25032 Hemarthrosis, left wrist +M25039 Hemarthrosis, unspecified wrist +M25041 Hemarthrosis, right hand +M25042 Hemarthrosis, left hand +M25049 Hemarthrosis, unspecified hand +M25051 Hemarthrosis, right hip +M25052 Hemarthrosis, left hip +M25059 Hemarthrosis, unspecified hip +M25061 Hemarthrosis, right knee +M25062 Hemarthrosis, left knee +M25069 Hemarthrosis, unspecified knee +M25071 Hemarthrosis, right ankle +M25072 Hemarthrosis, left ankle +M25073 Hemarthrosis, unspecified ankle +M25074 Hemarthrosis, right foot +M25075 Hemarthrosis, left foot +M25076 Hemarthrosis, unspecified foot +M2508 Hemarthrosis, vertebrae +M2510 Fistula, unspecified joint +M25111 Fistula, right shoulder +M25112 Fistula, left shoulder +M25119 Fistula, unspecified shoulder +M25121 Fistula, right elbow +M25122 Fistula, left elbow +M25129 Fistula, unspecified elbow +M25131 Fistula, right wrist +M25132 Fistula, left wrist +M25139 Fistula, unspecified wrist +M25141 Fistula, right hand +M25142 Fistula, left hand +M25149 Fistula, unspecified hand +M25151 Fistula, right hip +M25152 Fistula, left hip +M25159 Fistula, unspecified hip +M25161 Fistula, right knee +M25162 Fistula, left knee +M25169 Fistula, unspecified knee +M25171 Fistula, right ankle +M25172 Fistula, left ankle +M25173 Fistula, unspecified ankle +M25174 Fistula, right foot +M25175 Fistula, left foot +M25176 Fistula, unspecified foot +M2518 Fistula, vertebrae +M2520 Flail joint, unspecified joint +M25211 Flail joint, right shoulder +M25212 Flail joint, left shoulder +M25219 Flail joint, unspecified shoulder +M25221 Flail joint, right elbow +M25222 Flail joint, left elbow +M25229 Flail joint, unspecified elbow +M25231 Flail joint, right wrist +M25232 Flail joint, left wrist +M25239 Flail joint, unspecified wrist +M25241 Flail joint, right hand +M25242 Flail joint, left hand +M25249 Flail joint, unspecified hand +M25251 Flail joint, right hip +M25252 Flail joint, left hip +M25259 Flail joint, unspecified hip +M25261 Flail joint, right knee +M25262 Flail joint, left knee +M25269 Flail joint, unspecified knee +M25271 Flail joint, right ankle and foot +M25272 Flail joint, left ankle and foot +M25279 Flail joint, unspecified ankle and foot +M2528 Flail joint, other site +M2530 Other instability, unspecified joint +M25311 Other instability, right shoulder +M25312 Other instability, left shoulder +M25319 Other instability, unspecified shoulder +M25321 Other instability, right elbow +M25322 Other instability, left elbow +M25329 Other instability, unspecified elbow +M25331 Other instability, right wrist +M25332 Other instability, left wrist +M25339 Other instability, unspecified wrist +M25341 Other instability, right hand +M25342 Other instability, left hand +M25349 Other instability, unspecified hand +M25351 Other instability, right hip +M25352 Other instability, left hip +M25359 Other instability, unspecified hip +M25361 Other instability, right knee +M25362 Other instability, left knee +M25369 Other instability, unspecified knee +M25371 Other instability, right ankle +M25372 Other instability, left ankle +M25373 Other instability, unspecified ankle +M25374 Other instability, right foot +M25375 Other instability, left foot +M25376 Other instability, unspecified foot +M2540 Effusion, unspecified joint +M25411 Effusion, right shoulder +M25412 Effusion, left shoulder +M25419 Effusion, unspecified shoulder +M25421 Effusion, right elbow +M25422 Effusion, left elbow +M25429 Effusion, unspecified elbow +M25431 Effusion, right wrist +M25432 Effusion, left wrist +M25439 Effusion, unspecified wrist +M25441 Effusion, right hand +M25442 Effusion, left hand +M25449 Effusion, unspecified hand +M25451 Effusion, right hip +M25452 Effusion, left hip +M25459 Effusion, unspecified hip +M25461 Effusion, right knee +M25462 Effusion, left knee +M25469 Effusion, unspecified knee +M25471 Effusion, right ankle +M25472 Effusion, left ankle +M25473 Effusion, unspecified ankle +M25474 Effusion, right foot +M25475 Effusion, left foot +M25476 Effusion, unspecified foot +M2548 Effusion, other site +M2550 Pain in unspecified joint +M25511 Pain in right shoulder +M25512 Pain in left shoulder +M25519 Pain in unspecified shoulder +M25521 Pain in right elbow +M25522 Pain in left elbow +M25529 Pain in unspecified elbow +M25531 Pain in right wrist +M25532 Pain in left wrist +M25539 Pain in unspecified wrist +M25541 Pain in joints of right hand +M25542 Pain in joints of left hand +M25549 Pain in joints of unspecified hand +M25551 Pain in right hip +M25552 Pain in left hip +M25559 Pain in unspecified hip +M25561 Pain in right knee +M25562 Pain in left knee +M25569 Pain in unspecified knee +M25571 Pain in right ankle and joints of right foot +M25572 Pain in left ankle and joints of left foot +M25579 Pain in unspecified ankle and joints of unspecified foot +M2560 Stiffness of unspecified joint, not elsewhere classified +M25611 Stiffness of right shoulder, not elsewhere classified +M25612 Stiffness of left shoulder, not elsewhere classified +M25619 Stiffness of unspecified shoulder, not elsewhere classified +M25621 Stiffness of right elbow, not elsewhere classified +M25622 Stiffness of left elbow, not elsewhere classified +M25629 Stiffness of unspecified elbow, not elsewhere classified +M25631 Stiffness of right wrist, not elsewhere classified +M25632 Stiffness of left wrist, not elsewhere classified +M25639 Stiffness of unspecified wrist, not elsewhere classified +M25641 Stiffness of right hand, not elsewhere classified +M25642 Stiffness of left hand, not elsewhere classified +M25649 Stiffness of unspecified hand, not elsewhere classified +M25651 Stiffness of right hip, not elsewhere classified +M25652 Stiffness of left hip, not elsewhere classified +M25659 Stiffness of unspecified hip, not elsewhere classified +M25661 Stiffness of right knee, not elsewhere classified +M25662 Stiffness of left knee, not elsewhere classified +M25669 Stiffness of unspecified knee, not elsewhere classified +M25671 Stiffness of right ankle, not elsewhere classified +M25672 Stiffness of left ankle, not elsewhere classified +M25673 Stiffness of unspecified ankle, not elsewhere classified +M25674 Stiffness of right foot, not elsewhere classified +M25675 Stiffness of left foot, not elsewhere classified +M25676 Stiffness of unspecified foot, not elsewhere classified +M2570 Osteophyte, unspecified joint +M25711 Osteophyte, right shoulder +M25712 Osteophyte, left shoulder +M25719 Osteophyte, unspecified shoulder +M25721 Osteophyte, right elbow +M25722 Osteophyte, left elbow +M25729 Osteophyte, unspecified elbow +M25731 Osteophyte, right wrist +M25732 Osteophyte, left wrist +M25739 Osteophyte, unspecified wrist +M25741 Osteophyte, right hand +M25742 Osteophyte, left hand +M25749 Osteophyte, unspecified hand +M25751 Osteophyte, right hip +M25752 Osteophyte, left hip +M25759 Osteophyte, unspecified hip +M25761 Osteophyte, right knee +M25762 Osteophyte, left knee +M25769 Osteophyte, unspecified knee +M25771 Osteophyte, right ankle +M25772 Osteophyte, left ankle +M25773 Osteophyte, unspecified ankle +M25774 Osteophyte, right foot +M25775 Osteophyte, left foot +M25776 Osteophyte, unspecified foot +M2578 Osteophyte, vertebrae +M2580 Other specified joint disorders, unspecified joint +M25811 Other specified joint disorders, right shoulder +M25812 Other specified joint disorders, left shoulder +M25819 Other specified joint disorders, unspecified shoulder +M25821 Other specified joint disorders, right elbow +M25822 Other specified joint disorders, left elbow +M25829 Other specified joint disorders, unspecified elbow +M25831 Other specified joint disorders, right wrist +M25832 Other specified joint disorders, left wrist +M25839 Other specified joint disorders, unspecified wrist +M25841 Other specified joint disorders, right hand +M25842 Other specified joint disorders, left hand +M25849 Other specified joint disorders, unspecified hand +M25851 Other specified joint disorders, right hip +M25852 Other specified joint disorders, left hip +M25859 Other specified joint disorders, unspecified hip +M25861 Other specified joint disorders, right knee +M25862 Other specified joint disorders, left knee +M25869 Other specified joint disorders, unspecified knee +M25871 Other specified joint disorders, right ankle and foot +M25872 Other specified joint disorders, left ankle and foot +M25879 Other specified joint disorders, unspecified ankle and foot +M259 Joint disorder, unspecified +M2600 Unspecified anomaly of jaw size +M2601 Maxillary hyperplasia +M2602 Maxillary hypoplasia +M2603 Mandibular hyperplasia +M2604 Mandibular hypoplasia +M2605 Macrogenia +M2606 Microgenia +M2607 Excessive tuberosity of jaw +M2609 Other specified anomalies of jaw size +M2610 Unspecified anomaly of jaw-cranial base relationship +M2611 Maxillary asymmetry +M2612 Other jaw asymmetry +M2619 Other specified anomalies of jaw-cranial base relationship +M2620 Unspecified anomaly of dental arch relationship +M26211 Malocclusion, Angle's class I +M26212 Malocclusion, Angle's class II +M26213 Malocclusion, Angle's class III +M26219 Malocclusion, Angle's class, unspecified +M26220 Open anterior occlusal relationship +M26221 Open posterior occlusal relationship +M2623 Excessive horizontal overlap +M2624 Reverse articulation +M2625 Anomalies of interarch distance +M2629 Other anomalies of dental arch relationship +M2630 Unspecified anomaly of tooth position of fully erupted tooth or teeth +M2631 Crowding of fully erupted teeth +M2632 Excessive spacing of fully erupted teeth +M2633 Horizontal displacement of fully erupted tooth or teeth +M2634 Vertical displacement of fully erupted tooth or teeth +M2635 Rotation of fully erupted tooth or teeth +M2636 Insufficient interocclusal distance of fully erupted teeth (ridge) +M2637 Excessive interocclusal distance of fully erupted teeth +M2639 Other anomalies of tooth position of fully erupted tooth or teeth +M264 Malocclusion, unspecified +M2650 Dentofacial functional abnormalities, unspecified +M2651 Abnormal jaw closure +M2652 Limited mandibular range of motion +M2653 Deviation in opening and closing of the mandible +M2654 Insufficient anterior guidance +M2655 Centric occlusion maximum intercuspation discrepancy +M2656 Non-working side interference +M2657 Lack of posterior occlusal support +M2659 Other dentofacial functional abnormalities +M2660 Temporomandibular joint disorder, unspecified +M26601 Right temporomandibular joint disorder, unspecified +M26602 Left temporomandibular joint disorder, unspecified +M26603 Bilateral temporomandibular joint disorder, unspecified +M26609 Unspecified temporomandibular joint disorder, unspecified side +M2661 Adhesions and ankylosis of temporomandibular joint +M26611 Adhesions and ankylosis of right temporomandibular joint +M26612 Adhesions and ankylosis of left temporomandibular joint +M26613 Adhesions and ankylosis of bilateral temporomandibular joint +M26619 Adhesions and ankylosis of temporomandibular joint, unspecified side +M2662 Arthralgia of temporomandibular joint +M26621 Arthralgia of right temporomandibular joint +M26622 Arthralgia of left temporomandibular joint +M26623 Arthralgia of bilateral temporomandibular joint +M26629 Arthralgia of temporomandibular joint, unspecified side +M2663 Articular disc disorder of temporomandibular joint +M26631 Articular disc disorder of right temporomandibular joint +M26632 Articular disc disorder of left temporomandibular joint +M26633 Articular disc disorder of bilateral temporomandibular joint +M26639 Articular disc disorder of temporomandibular joint, unspecified side +M2669 Other specified disorders of temporomandibular joint +M2670 Unspecified alveolar anomaly +M2671 Alveolar maxillary hyperplasia +M2672 Alveolar mandibular hyperplasia +M2673 Alveolar maxillary hypoplasia +M2674 Alveolar mandibular hypoplasia +M2679 Other specified alveolar anomalies +M2681 Anterior soft tissue impingement +M2682 Posterior soft tissue impingement +M2689 Other dentofacial anomalies +M269 Dentofacial anomaly, unspecified +M270 Developmental disorders of jaws +M271 Giant cell granuloma, central +M272 Inflammatory conditions of jaws +M273 Alveolitis of jaws +M2740 Unspecified cyst of jaw +M2749 Other cysts of jaw +M2751 Perforation of root canal space due to endodontic treatment +M2752 Endodontic overfill +M2753 Endodontic underfill +M2759 Other periradicular pathology associated with previous endodontic treatment +M2761 Osseointegration failure of dental implant +M2762 Post-osseointegration biological failure of dental implant +M2763 Post-osseointegration mechanical failure of dental implant +M2769 Other endosseous dental implant failure +M278 Other specified diseases of jaws +M279 Disease of jaws, unspecified +M300 Polyarteritis nodosa +M301 Polyarteritis with lung involvement [Churg-Strauss] +M302 Juvenile polyarteritis +M303 Mucocutaneous lymph node syndrome [Kawasaki] +M308 Other conditions related to polyarteritis nodosa +M310 Hypersensitivity angiitis +M311 Thrombotic microangiopathy +M312 Lethal midline granuloma +M3130 Wegener's granulomatosis without renal involvement +M3131 Wegener's granulomatosis with renal involvement +M314 Aortic arch syndrome [Takayasu] +M315 Giant cell arteritis with polymyalgia rheumatica +M316 Other giant cell arteritis +M317 Microscopic polyangiitis +M318 Other specified necrotizing vasculopathies +M319 Necrotizing vasculopathy, unspecified +M320 Drug-induced systemic lupus erythematosus +M3210 Systemic lupus erythematosus, organ or system involvement unspecified +M3211 Endocarditis in systemic lupus erythematosus +M3212 Pericarditis in systemic lupus erythematosus +M3213 Lung involvement in systemic lupus erythematosus +M3214 Glomerular disease in systemic lupus erythematosus +M3215 Tubulo-interstitial nephropathy in systemic lupus erythematosus +M3219 Other organ or system involvement in systemic lupus erythematosus +M328 Other forms of systemic lupus erythematosus +M329 Systemic lupus erythematosus, unspecified +M3300 Juvenile dermatomyositis, organ involvement unspecified +M3301 Juvenile dermatomyositis with respiratory involvement +M3302 Juvenile dermatomyositis with myopathy +M3303 Juvenile dermatomyositis without myopathy +M3309 Juvenile dermatomyositis with other organ involvement +M3310 Other dermatomyositis, organ involvement unspecified +M3311 Other dermatomyositis with respiratory involvement +M3312 Other dermatomyositis with myopathy +M3313 Other dermatomyositis without myopathy +M3319 Other dermatomyositis with other organ involvement +M3320 Polymyositis, organ involvement unspecified +M3321 Polymyositis with respiratory involvement +M3322 Polymyositis with myopathy +M3329 Polymyositis with other organ involvement +M3390 Dermatopolymyositis, unspecified, organ involvement unspecified +M3391 Dermatopolymyositis, unspecified with respiratory involvement +M3392 Dermatopolymyositis, unspecified with myopathy +M3393 Dermatopolymyositis, unspecified without myopathy +M3399 Dermatopolymyositis, unspecified with other organ involvement +M340 Progressive systemic sclerosis +M341 CR(E)ST syndrome +M342 Systemic sclerosis induced by drug and chemical +M3481 Systemic sclerosis with lung involvement +M3482 Systemic sclerosis with myopathy +M3483 Systemic sclerosis with polyneuropathy +M3489 Other systemic sclerosis +M349 Systemic sclerosis, unspecified +M3500 Sicca syndrome, unspecified +M3501 Sicca syndrome with keratoconjunctivitis +M3502 Sicca syndrome with lung involvement +M3503 Sicca syndrome with myopathy +M3504 Sicca syndrome with tubulo-interstitial nephropathy +M3509 Sicca syndrome with other organ involvement +M351 Other overlap syndromes +M352 Behcet's disease +M353 Polymyalgia rheumatica +M354 Diffuse (eosinophilic) fasciitis +M355 Multifocal fibrosclerosis +M356 Relapsing panniculitis [Weber-Christian] +M357 Hypermobility syndrome +M358 Other specified systemic involvement of connective tissue +M359 Systemic involvement of connective tissue, unspecified +M360 Dermato(poly)myositis in neoplastic disease +M361 Arthropathy in neoplastic disease +M362 Hemophilic arthropathy +M363 Arthropathy in other blood disorders +M364 Arthropathy in hypersensitivity reactions classified elsewhere +M368 Systemic disorders of connective tissue in other diseases classified elsewhere +M4000 Postural kyphosis, site unspecified +M4003 Postural kyphosis, cervicothoracic region +M4004 Postural kyphosis, thoracic region +M4005 Postural kyphosis, thoracolumbar region +M4010 Other secondary kyphosis, site unspecified +M4012 Other secondary kyphosis, cervical region +M4013 Other secondary kyphosis, cervicothoracic region +M4014 Other secondary kyphosis, thoracic region +M4015 Other secondary kyphosis, thoracolumbar region +M40202 Unspecified kyphosis, cervical region +M40203 Unspecified kyphosis, cervicothoracic region +M40204 Unspecified kyphosis, thoracic region +M40205 Unspecified kyphosis, thoracolumbar region +M40209 Unspecified kyphosis, site unspecified +M40292 Other kyphosis, cervical region +M40293 Other kyphosis, cervicothoracic region +M40294 Other kyphosis, thoracic region +M40295 Other kyphosis, thoracolumbar region +M40299 Other kyphosis, site unspecified +M4030 Flatback syndrome, site unspecified +M4035 Flatback syndrome, thoracolumbar region +M4036 Flatback syndrome, lumbar region +M4037 Flatback syndrome, lumbosacral region +M4040 Postural lordosis, site unspecified +M4045 Postural lordosis, thoracolumbar region +M4046 Postural lordosis, lumbar region +M4047 Postural lordosis, lumbosacral region +M4050 Lordosis, unspecified, site unspecified +M4055 Lordosis, unspecified, thoracolumbar region +M4056 Lordosis, unspecified, lumbar region +M4057 Lordosis, unspecified, lumbosacral region +M4100 Infantile idiopathic scoliosis, site unspecified +M4102 Infantile idiopathic scoliosis, cervical region +M4103 Infantile idiopathic scoliosis, cervicothoracic region +M4104 Infantile idiopathic scoliosis, thoracic region +M4105 Infantile idiopathic scoliosis, thoracolumbar region +M4106 Infantile idiopathic scoliosis, lumbar region +M4107 Infantile idiopathic scoliosis, lumbosacral region +M4108 Infantile idiopathic scoliosis, sacral and sacrococcygeal region +M41112 Juvenile idiopathic scoliosis, cervical region +M41113 Juvenile idiopathic scoliosis, cervicothoracic region +M41114 Juvenile idiopathic scoliosis, thoracic region +M41115 Juvenile idiopathic scoliosis, thoracolumbar region +M41116 Juvenile idiopathic scoliosis, lumbar region +M41117 Juvenile idiopathic scoliosis, lumbosacral region +M41119 Juvenile idiopathic scoliosis, site unspecified +M41122 Adolescent idiopathic scoliosis, cervical region +M41123 Adolescent idiopathic scoliosis, cervicothoracic region +M41124 Adolescent idiopathic scoliosis, thoracic region +M41125 Adolescent idiopathic scoliosis, thoracolumbar region +M41126 Adolescent idiopathic scoliosis, lumbar region +M41127 Adolescent idiopathic scoliosis, lumbosacral region +M41129 Adolescent idiopathic scoliosis, site unspecified +M4120 Other idiopathic scoliosis, site unspecified +M4122 Other idiopathic scoliosis, cervical region +M4123 Other idiopathic scoliosis, cervicothoracic region +M4124 Other idiopathic scoliosis, thoracic region +M4125 Other idiopathic scoliosis, thoracolumbar region +M4126 Other idiopathic scoliosis, lumbar region +M4127 Other idiopathic scoliosis, lumbosacral region +M4130 Thoracogenic scoliosis, site unspecified +M4134 Thoracogenic scoliosis, thoracic region +M4135 Thoracogenic scoliosis, thoracolumbar region +M4140 Neuromuscular scoliosis, site unspecified +M4141 Neuromuscular scoliosis, occipito-atlanto-axial region +M4142 Neuromuscular scoliosis, cervical region +M4143 Neuromuscular scoliosis, cervicothoracic region +M4144 Neuromuscular scoliosis, thoracic region +M4145 Neuromuscular scoliosis, thoracolumbar region +M4146 Neuromuscular scoliosis, lumbar region +M4147 Neuromuscular scoliosis, lumbosacral region +M4150 Other secondary scoliosis, site unspecified +M4152 Other secondary scoliosis, cervical region +M4153 Other secondary scoliosis, cervicothoracic region +M4154 Other secondary scoliosis, thoracic region +M4155 Other secondary scoliosis, thoracolumbar region +M4156 Other secondary scoliosis, lumbar region +M4157 Other secondary scoliosis, lumbosacral region +M4180 Other forms of scoliosis, site unspecified +M4182 Other forms of scoliosis, cervical region +M4183 Other forms of scoliosis, cervicothoracic region +M4184 Other forms of scoliosis, thoracic region +M4185 Other forms of scoliosis, thoracolumbar region +M4186 Other forms of scoliosis, lumbar region +M4187 Other forms of scoliosis, lumbosacral region +M419 Scoliosis, unspecified +M4200 Juvenile osteochondrosis of spine, site unspecified +M4201 Juvenile osteochondrosis of spine, occipito-atlanto-axial region +M4202 Juvenile osteochondrosis of spine, cervical region +M4203 Juvenile osteochondrosis of spine, cervicothoracic region +M4204 Juvenile osteochondrosis of spine, thoracic region +M4205 Juvenile osteochondrosis of spine, thoracolumbar region +M4206 Juvenile osteochondrosis of spine, lumbar region +M4207 Juvenile osteochondrosis of spine, lumbosacral region +M4208 Juvenile osteochondrosis of spine, sacral and sacrococcygeal region +M4209 Juvenile osteochondrosis of spine, multiple sites in spine +M4210 Adult osteochondrosis of spine, site unspecified +M4211 Adult osteochondrosis of spine, occipito-atlanto-axial region +M4212 Adult osteochondrosis of spine, cervical region +M4213 Adult osteochondrosis of spine, cervicothoracic region +M4214 Adult osteochondrosis of spine, thoracic region +M4215 Adult osteochondrosis of spine, thoracolumbar region +M4216 Adult osteochondrosis of spine, lumbar region +M4217 Adult osteochondrosis of spine, lumbosacral region +M4218 Adult osteochondrosis of spine, sacral and sacrococcygeal region +M4219 Adult osteochondrosis of spine, multiple sites in spine +M429 Spinal osteochondrosis, unspecified +M4300 Spondylolysis, site unspecified +M4301 Spondylolysis, occipito-atlanto-axial region +M4302 Spondylolysis, cervical region +M4303 Spondylolysis, cervicothoracic region +M4304 Spondylolysis, thoracic region +M4305 Spondylolysis, thoracolumbar region +M4306 Spondylolysis, lumbar region +M4307 Spondylolysis, lumbosacral region +M4308 Spondylolysis, sacral and sacrococcygeal region +M4309 Spondylolysis, multiple sites in spine +M4310 Spondylolisthesis, site unspecified +M4311 Spondylolisthesis, occipito-atlanto-axial region +M4312 Spondylolisthesis, cervical region +M4313 Spondylolisthesis, cervicothoracic region +M4314 Spondylolisthesis, thoracic region +M4315 Spondylolisthesis, thoracolumbar region +M4316 Spondylolisthesis, lumbar region +M4317 Spondylolisthesis, lumbosacral region +M4318 Spondylolisthesis, sacral and sacrococcygeal region +M4319 Spondylolisthesis, multiple sites in spine +M4320 Fusion of spine, site unspecified +M4321 Fusion of spine, occipito-atlanto-axial region +M4322 Fusion of spine, cervical region +M4323 Fusion of spine, cervicothoracic region +M4324 Fusion of spine, thoracic region +M4325 Fusion of spine, thoracolumbar region +M4326 Fusion of spine, lumbar region +M4327 Fusion of spine, lumbosacral region +M4328 Fusion of spine, sacral and sacrococcygeal region +M433 Recurrent atlantoaxial dislocation with myelopathy +M434 Other recurrent atlantoaxial dislocation +M435X2 Other recurrent vertebral dislocation, cervical region +M435X3 Other recurrent vertebral dislocation, cervicothoracic region +M435X4 Other recurrent vertebral dislocation, thoracic region +M435X5 Other recurrent vertebral dislocation, thoracolumbar region +M435X6 Other recurrent vertebral dislocation, lumbar region +M435X7 Other recurrent vertebral dislocation, lumbosacral region +M435X8 Other recurrent vertebral dislocation, sacral and sacrococcygeal region +M435X9 Other recurrent vertebral dislocation, site unspecified +M436 Torticollis +M438X1 Other specified deforming dorsopathies, occipito-atlanto-axial region +M438X2 Other specified deforming dorsopathies, cervical region +M438X3 Other specified deforming dorsopathies, cervicothoracic region +M438X4 Other specified deforming dorsopathies, thoracic region +M438X5 Other specified deforming dorsopathies, thoracolumbar region +M438X6 Other specified deforming dorsopathies, lumbar region +M438X7 Other specified deforming dorsopathies, lumbosacral region +M438X8 Other specified deforming dorsopathies, sacral and sacrococcygeal region +M438X9 Other specified deforming dorsopathies, site unspecified +M439 Deforming dorsopathy, unspecified +M450 Ankylosing spondylitis of multiple sites in spine +M451 Ankylosing spondylitis of occipito-atlanto-axial region +M452 Ankylosing spondylitis of cervical region +M453 Ankylosing spondylitis of cervicothoracic region +M454 Ankylosing spondylitis of thoracic region +M455 Ankylosing spondylitis of thoracolumbar region +M456 Ankylosing spondylitis lumbar region +M457 Ankylosing spondylitis of lumbosacral region +M458 Ankylosing spondylitis sacral and sacrococcygeal region +M459 Ankylosing spondylitis of unspecified sites in spine +M4600 Spinal enthesopathy, site unspecified +M4601 Spinal enthesopathy, occipito-atlanto-axial region +M4602 Spinal enthesopathy, cervical region +M4603 Spinal enthesopathy, cervicothoracic region +M4604 Spinal enthesopathy, thoracic region +M4605 Spinal enthesopathy, thoracolumbar region +M4606 Spinal enthesopathy, lumbar region +M4607 Spinal enthesopathy, lumbosacral region +M4608 Spinal enthesopathy, sacral and sacrococcygeal region +M4609 Spinal enthesopathy, multiple sites in spine +M461 Sacroiliitis, not elsewhere classified +M4620 Osteomyelitis of vertebra, site unspecified +M4621 Osteomyelitis of vertebra, occipito-atlanto-axial region +M4622 Osteomyelitis of vertebra, cervical region +M4623 Osteomyelitis of vertebra, cervicothoracic region +M4624 Osteomyelitis of vertebra, thoracic region +M4625 Osteomyelitis of vertebra, thoracolumbar region +M4626 Osteomyelitis of vertebra, lumbar region +M4627 Osteomyelitis of vertebra, lumbosacral region +M4628 Osteomyelitis of vertebra, sacral and sacrococcygeal region +M4630 Infection of intervertebral disc (pyogenic), site unspecified +M4631 Infection of intervertebral disc (pyogenic), occipito-atlanto-axial region +M4632 Infection of intervertebral disc (pyogenic), cervical region +M4633 Infection of intervertebral disc (pyogenic), cervicothoracic region +M4634 Infection of intervertebral disc (pyogenic), thoracic region +M4635 Infection of intervertebral disc (pyogenic), thoracolumbar region +M4636 Infection of intervertebral disc (pyogenic), lumbar region +M4637 Infection of intervertebral disc (pyogenic), lumbosacral region +M4638 Infection of intervertebral disc (pyogenic), sacral and sacrococcygeal region +M4639 Infection of intervertebral disc (pyogenic), multiple sites in spine +M4640 Discitis, unspecified, site unspecified +M4641 Discitis, unspecified, occipito-atlanto-axial region +M4642 Discitis, unspecified, cervical region +M4643 Discitis, unspecified, cervicothoracic region +M4644 Discitis, unspecified, thoracic region +M4645 Discitis, unspecified, thoracolumbar region +M4646 Discitis, unspecified, lumbar region +M4647 Discitis, unspecified, lumbosacral region +M4648 Discitis, unspecified, sacral and sacrococcygeal region +M4649 Discitis, unspecified, multiple sites in spine +M4650 Other infective spondylopathies, site unspecified +M4651 Other infective spondylopathies, occipito-atlanto-axial region +M4652 Other infective spondylopathies, cervical region +M4653 Other infective spondylopathies, cervicothoracic region +M4654 Other infective spondylopathies, thoracic region +M4655 Other infective spondylopathies, thoracolumbar region +M4656 Other infective spondylopathies, lumbar region +M4657 Other infective spondylopathies, lumbosacral region +M4658 Other infective spondylopathies, sacral and sacrococcygeal region +M4659 Other infective spondylopathies, multiple sites in spine +M4680 Other specified inflammatory spondylopathies, site unspecified +M4681 Other specified inflammatory spondylopathies, occipito-atlanto-axial region +M4682 Other specified inflammatory spondylopathies, cervical region +M4683 Other specified inflammatory spondylopathies, cervicothoracic region +M4684 Other specified inflammatory spondylopathies, thoracic region +M4685 Other specified inflammatory spondylopathies, thoracolumbar region +M4686 Other specified inflammatory spondylopathies, lumbar region +M4687 Other specified inflammatory spondylopathies, lumbosacral region +M4688 Other specified inflammatory spondylopathies, sacral and sacrococcygeal region +M4689 Other specified inflammatory spondylopathies, multiple sites in spine +M4690 Unspecified inflammatory spondylopathy, site unspecified +M4691 Unspecified inflammatory spondylopathy, occipito-atlanto-axial region +M4692 Unspecified inflammatory spondylopathy, cervical region +M4693 Unspecified inflammatory spondylopathy, cervicothoracic region +M4694 Unspecified inflammatory spondylopathy, thoracic region +M4695 Unspecified inflammatory spondylopathy, thoracolumbar region +M4696 Unspecified inflammatory spondylopathy, lumbar region +M4697 Unspecified inflammatory spondylopathy, lumbosacral region +M4698 Unspecified inflammatory spondylopathy, sacral and sacrococcygeal region +M4699 Unspecified inflammatory spondylopathy, multiple sites in spine +M47011 Anterior spinal artery compression syndromes, occipito-atlanto-axial region +M47012 Anterior spinal artery compression syndromes, cervical region +M47013 Anterior spinal artery compression syndromes, cervicothoracic region +M47014 Anterior spinal artery compression syndromes, thoracic region +M47015 Anterior spinal artery compression syndromes, thoracolumbar region +M47016 Anterior spinal artery compression syndromes, lumbar region +M47019 Anterior spinal artery compression syndromes, site unspecified +M47021 Vertebral artery compression syndromes, occipito-atlanto-axial region +M47022 Vertebral artery compression syndromes, cervical region +M47029 Vertebral artery compression syndromes, site unspecified +M4710 Other spondylosis with myelopathy, site unspecified +M4711 Other spondylosis with myelopathy, occipito-atlanto-axial region +M4712 Other spondylosis with myelopathy, cervical region +M4713 Other spondylosis with myelopathy, cervicothoracic region +M4714 Other spondylosis with myelopathy, thoracic region +M4715 Other spondylosis with myelopathy, thoracolumbar region +M4716 Other spondylosis with myelopathy, lumbar region +M4717 Other spondylosis with myelopathy, lumbosacral region +M4718 Other spondylosis with myelopathy, sacral and sacrococcygeal region +M4720 Other spondylosis with radiculopathy, site unspecified +M4721 Other spondylosis with radiculopathy, occipito-atlanto-axial region +M4722 Other spondylosis with radiculopathy, cervical region +M4723 Other spondylosis with radiculopathy, cervicothoracic region +M4724 Other spondylosis with radiculopathy, thoracic region +M4725 Other spondylosis with radiculopathy, thoracolumbar region +M4726 Other spondylosis with radiculopathy, lumbar region +M4727 Other spondylosis with radiculopathy, lumbosacral region +M4728 Other spondylosis with radiculopathy, sacral and sacrococcygeal region +M47811 Spondylosis without myelopathy or radiculopathy, occipito-atlanto-axial region +M47812 Spondylosis without myelopathy or radiculopathy, cervical region +M47813 Spondylosis without myelopathy or radiculopathy, cervicothoracic region +M47814 Spondylosis without myelopathy or radiculopathy, thoracic region +M47815 Spondylosis without myelopathy or radiculopathy, thoracolumbar region +M47816 Spondylosis without myelopathy or radiculopathy, lumbar region +M47817 Spondylosis without myelopathy or radiculopathy, lumbosacral region +M47818 Spondylosis without myelopathy or radiculopathy, sacral and sacrococcygeal region +M47819 Spondylosis without myelopathy or radiculopathy, site unspecified +M47891 Other spondylosis, occipito-atlanto-axial region +M47892 Other spondylosis, cervical region +M47893 Other spondylosis, cervicothoracic region +M47894 Other spondylosis, thoracic region +M47895 Other spondylosis, thoracolumbar region +M47896 Other spondylosis, lumbar region +M47897 Other spondylosis, lumbosacral region +M47898 Other spondylosis, sacral and sacrococcygeal region +M47899 Other spondylosis, site unspecified +M479 Spondylosis, unspecified +M4800 Spinal stenosis, site unspecified +M4801 Spinal stenosis, occipito-atlanto-axial region +M4802 Spinal stenosis, cervical region +M4803 Spinal stenosis, cervicothoracic region +M4804 Spinal stenosis, thoracic region +M4805 Spinal stenosis, thoracolumbar region +M4806 Spinal stenosis, lumbar region +M48061 Spinal stenosis, lumbar region without neurogenic claudication +M48062 Spinal stenosis, lumbar region with neurogenic claudication +M4807 Spinal stenosis, lumbosacral region +M4808 Spinal stenosis, sacral and sacrococcygeal region +M4810 Ankylosing hyperostosis [Forestier], site unspecified +M4811 Ankylosing hyperostosis [Forestier], occipito-atlanto-axial region +M4812 Ankylosing hyperostosis [Forestier], cervical region +M4813 Ankylosing hyperostosis [Forestier], cervicothoracic region +M4814 Ankylosing hyperostosis [Forestier], thoracic region +M4815 Ankylosing hyperostosis [Forestier], thoracolumbar region +M4816 Ankylosing hyperostosis [Forestier], lumbar region +M4817 Ankylosing hyperostosis [Forestier], lumbosacral region +M4818 Ankylosing hyperostosis [Forestier], sacral and sacrococcygeal region +M4819 Ankylosing hyperostosis [Forestier], multiple sites in spine +M4820 Kissing spine, site unspecified +M4821 Kissing spine, occipito-atlanto-axial region +M4822 Kissing spine, cervical region +M4823 Kissing spine, cervicothoracic region +M4824 Kissing spine, thoracic region +M4825 Kissing spine, thoracolumbar region +M4826 Kissing spine, lumbar region +M4827 Kissing spine, lumbosacral region +M4830 Traumatic spondylopathy, site unspecified +M4831 Traumatic spondylopathy, occipito-atlanto-axial region +M4832 Traumatic spondylopathy, cervical region +M4833 Traumatic spondylopathy, cervicothoracic region +M4834 Traumatic spondylopathy, thoracic region +M4835 Traumatic spondylopathy, thoracolumbar region +M4836 Traumatic spondylopathy, lumbar region +M4837 Traumatic spondylopathy, lumbosacral region +M4838 Traumatic spondylopathy, sacral and sacrococcygeal region +M4840XA Fatigue fracture of vertebra, site unspecified, initial encounter for fracture +M4840XD Fatigue fracture of vertebra, site unspecified, subsequent encounter for fracture with routine healing +M4840XG Fatigue fracture of vertebra, site unspecified, subsequent encounter for fracture with delayed healing +M4840XS Fatigue fracture of vertebra, site unspecified, sequela of fracture +M4841XA Fatigue fracture of vertebra, occipito-atlanto-axial region, initial encounter for fracture +M4841XD Fatigue fracture of vertebra, occipito-atlanto-axial region, subsequent encounter for fracture with routine healing +M4841XG Fatigue fracture of vertebra, occipito-atlanto-axial region, subsequent encounter for fracture with delayed healing +M4841XS Fatigue fracture of vertebra, occipito-atlanto-axial region, sequela of fracture +M4842XA Fatigue fracture of vertebra, cervical region, initial encounter for fracture +M4842XD Fatigue fracture of vertebra, cervical region, subsequent encounter for fracture with routine healing +M4842XG Fatigue fracture of vertebra, cervical region, subsequent encounter for fracture with delayed healing +M4842XS Fatigue fracture of vertebra, cervical region, sequela of fracture +M4843XA Fatigue fracture of vertebra, cervicothoracic region, initial encounter for fracture +M4843XD Fatigue fracture of vertebra, cervicothoracic region, subsequent encounter for fracture with routine healing +M4843XG Fatigue fracture of vertebra, cervicothoracic region, subsequent encounter for fracture with delayed healing +M4843XS Fatigue fracture of vertebra, cervicothoracic region, sequela of fracture +M4844XA Fatigue fracture of vertebra, thoracic region, initial encounter for fracture +M4844XD Fatigue fracture of vertebra, thoracic region, subsequent encounter for fracture with routine healing +M4844XG Fatigue fracture of vertebra, thoracic region, subsequent encounter for fracture with delayed healing +M4844XS Fatigue fracture of vertebra, thoracic region, sequela of fracture +M4845XA Fatigue fracture of vertebra, thoracolumbar region, initial encounter for fracture +M4845XD Fatigue fracture of vertebra, thoracolumbar region, subsequent encounter for fracture with routine healing +M4845XG Fatigue fracture of vertebra, thoracolumbar region, subsequent encounter for fracture with delayed healing +M4845XS Fatigue fracture of vertebra, thoracolumbar region, sequela of fracture +M4846XA Fatigue fracture of vertebra, lumbar region, initial encounter for fracture +M4846XD Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with routine healing +M4846XG Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with delayed healing +M4846XS Fatigue fracture of vertebra, lumbar region, sequela of fracture +M4847XA Fatigue fracture of vertebra, lumbosacral region, initial encounter for fracture +M4847XD Fatigue fracture of vertebra, lumbosacral region, subsequent encounter for fracture with routine healing +M4847XG Fatigue fracture of vertebra, lumbosacral region, subsequent encounter for fracture with delayed healing +M4847XS Fatigue fracture of vertebra, lumbosacral region, sequela of fracture +M4848XA Fatigue fracture of vertebra, sacral and sacrococcygeal region, initial encounter for fracture +M4848XD Fatigue fracture of vertebra, sacral and sacrococcygeal region, subsequent encounter for fracture with routine healing +M4848XG Fatigue fracture of vertebra, sacral and sacrococcygeal region, subsequent encounter for fracture with delayed healing +M4848XS Fatigue fracture of vertebra, sacral and sacrococcygeal region, sequela of fracture +M4850XA Collapsed vertebra, not elsewhere classified, site unspecified, initial encounter for fracture +M4850XD Collapsed vertebra, not elsewhere classified, site unspecified, subsequent encounter for fracture with routine healing +M4850XG Collapsed vertebra, not elsewhere classified, site unspecified, subsequent encounter for fracture with delayed healing +M4850XS Collapsed vertebra, not elsewhere classified, site unspecified, sequela of fracture +M4851XA Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, initial encounter for fracture +M4851XD Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, subsequent encounter for fracture with routine healing +M4851XG Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, subsequent encounter for fracture with delayed healing +M4851XS Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, sequela of fracture +M4852XA Collapsed vertebra, not elsewhere classified, cervical region, initial encounter for fracture +M4852XD Collapsed vertebra, not elsewhere classified, cervical region, subsequent encounter for fracture with routine healing +M4852XG Collapsed vertebra, not elsewhere classified, cervical region, subsequent encounter for fracture with delayed healing +M4852XS Collapsed vertebra, not elsewhere classified, cervical region, sequela of fracture +M4853XA Collapsed vertebra, not elsewhere classified, cervicothoracic region, initial encounter for fracture +M4853XD Collapsed vertebra, not elsewhere classified, cervicothoracic region, subsequent encounter for fracture with routine healing +M4853XG Collapsed vertebra, not elsewhere classified, cervicothoracic region, subsequent encounter for fracture with delayed healing +M4853XS Collapsed vertebra, not elsewhere classified, cervicothoracic region, sequela of fracture +M4854XA Collapsed vertebra, not elsewhere classified, thoracic region, initial encounter for fracture +M4854XD Collapsed vertebra, not elsewhere classified, thoracic region, subsequent encounter for fracture with routine healing +M4854XG Collapsed vertebra, not elsewhere classified, thoracic region, subsequent encounter for fracture with delayed healing +M4854XS Collapsed vertebra, not elsewhere classified, thoracic region, sequela of fracture +M4855XA Collapsed vertebra, not elsewhere classified, thoracolumbar region, initial encounter for fracture +M4855XD Collapsed vertebra, not elsewhere classified, thoracolumbar region, subsequent encounter for fracture with routine healing +M4855XG Collapsed vertebra, not elsewhere classified, thoracolumbar region, subsequent encounter for fracture with delayed healing +M4855XS Collapsed vertebra, not elsewhere classified, thoracolumbar region, sequela of fracture +M4856XA Collapsed vertebra, not elsewhere classified, lumbar region, initial encounter for fracture +M4856XD Collapsed vertebra, not elsewhere classified, lumbar region, subsequent encounter for fracture with routine healing +M4856XG Collapsed vertebra, not elsewhere classified, lumbar region, subsequent encounter for fracture with delayed healing +M4856XS Collapsed vertebra, not elsewhere classified, lumbar region, sequela of fracture +M4857XA Collapsed vertebra, not elsewhere classified, lumbosacral region, initial encounter for fracture +M4857XD Collapsed vertebra, not elsewhere classified, lumbosacral region, subsequent encounter for fracture with routine healing +M4857XG Collapsed vertebra, not elsewhere classified, lumbosacral region, subsequent encounter for fracture with delayed healing +M4857XS Collapsed vertebra, not elsewhere classified, lumbosacral region, sequela of fracture +M4858XA Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, initial encounter for fracture +M4858XD Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, subsequent encounter for fracture with routine healing +M4858XG Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, subsequent encounter for fracture with delayed healing +M4858XS Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, sequela of fracture +M488X1 Other specified spondylopathies, occipito-atlanto-axial region +M488X2 Other specified spondylopathies, cervical region +M488X3 Other specified spondylopathies, cervicothoracic region +M488X4 Other specified spondylopathies, thoracic region +M488X5 Other specified spondylopathies, thoracolumbar region +M488X6 Other specified spondylopathies, lumbar region +M488X7 Other specified spondylopathies, lumbosacral region +M488X8 Other specified spondylopathies, sacral and sacrococcygeal region +M488X9 Other specified spondylopathies, site unspecified +M489 Spondylopathy, unspecified +M4980 Spondylopathy in diseases classified elsewhere, site unspecified +M4981 Spondylopathy in diseases classified elsewhere, occipito-atlanto-axial region +M4982 Spondylopathy in diseases classified elsewhere, cervical region +M4983 Spondylopathy in diseases classified elsewhere, cervicothoracic region +M4984 Spondylopathy in diseases classified elsewhere, thoracic region +M4985 Spondylopathy in diseases classified elsewhere, thoracolumbar region +M4986 Spondylopathy in diseases classified elsewhere, lumbar region +M4987 Spondylopathy in diseases classified elsewhere, lumbosacral region +M4988 Spondylopathy in diseases classified elsewhere, sacral and sacrococcygeal region +M4989 Spondylopathy in diseases classified elsewhere, multiple sites in spine +M5000 Cervical disc disorder with myelopathy, unspecified cervical region +M5001 Cervical disc disorder with myelopathy, high cervical region +M5002 Cervical disc disorder with myelopathy, mid-cervical region +M50020 Cervical disc disorder with myelopathy, mid-cervical region, unspecified level +M50021 Cervical disc disorder at C4-C5 level with myelopathy +M50022 Cervical disc disorder at C5-C6 level with myelopathy +M50023 Cervical disc disorder at C6-C7 level with myelopathy +M5003 Cervical disc disorder with myelopathy, cervicothoracic region +M5010 Cervical disc disorder with radiculopathy, unspecified cervical region +M5011 Cervical disc disorder with radiculopathy, high cervical region +M5012 Cervical disc disorder with radiculopathy, mid-cervical region +M50120 Mid-cervical disc disorder, unspecified level +M50121 Cervical disc disorder at C4-C5 level with radiculopathy +M50122 Cervical disc disorder at C5-C6 level with radiculopathy +M50123 Cervical disc disorder at C6-C7 level with radiculopathy +M5013 Cervical disc disorder with radiculopathy, cervicothoracic region +M5020 Other cervical disc displacement, unspecified cervical region +M5021 Other cervical disc displacement, high cervical region +M5022 Other cervical disc displacement, mid-cervical region +M50220 Other cervical disc displacement, mid-cervical region, unspecified level +M50221 Other cervical disc displacement at C4-C5 level +M50222 Other cervical disc displacement at C5-C6 level +M50223 Other cervical disc displacement at C6-C7 level +M5023 Other cervical disc displacement, cervicothoracic region +M5030 Other cervical disc degeneration, unspecified cervical region +M5031 Other cervical disc degeneration, high cervical region +M5032 Other cervical disc degeneration, mid-cervical region +M50320 Other cervical disc degeneration, mid-cervical region, unspecified level +M50321 Other cervical disc degeneration at C4-C5 level +M50322 Other cervical disc degeneration at C5-C6 level +M50323 Other cervical disc degeneration at C6-C7 level +M5033 Other cervical disc degeneration, cervicothoracic region +M5080 Other cervical disc disorders, unspecified cervical region +M5081 Other cervical disc disorders, high cervical region +M5082 Other cervical disc disorders, mid-cervical region +M50820 Other cervical disc disorders, mid-cervical region, unspecified level +M50821 Other cervical disc disorders at C4-C5 level +M50822 Other cervical disc disorders at C5-C6 level +M50823 Other cervical disc disorders at C6-C7 level +M5083 Other cervical disc disorders, cervicothoracic region +M5090 Cervical disc disorder, unspecified, unspecified cervical region +M5091 Cervical disc disorder, unspecified, high cervical region +M5092 Cervical disc disorder, unspecified, mid-cervical region +M50920 Unspecified cervical disc disorder, mid-cervical region, unspecified level +M50921 Unspecified cervical disc disorder at C4-C5 level +M50922 Unspecified cervical disc disorder at C5-C6 level +M50923 Unspecified cervical disc disorder at C6-C7 level +M5093 Cervical disc disorder, unspecified, cervicothoracic region +M5104 Intervertebral disc disorders with myelopathy, thoracic region +M5105 Intervertebral disc disorders with myelopathy, thoracolumbar region +M5106 Intervertebral disc disorders with myelopathy, lumbar region +M5107 Intervertebral disc disorders with myelopathy, lumbosacral region +M5114 Intervertebral disc disorders with radiculopathy, thoracic region +M5115 Intervertebral disc disorders with radiculopathy, thoracolumbar region +M5116 Intervertebral disc disorders with radiculopathy, lumbar region +M5117 Intervertebral disc disorders with radiculopathy, lumbosacral region +M5124 Other intervertebral disc displacement, thoracic region +M5125 Other intervertebral disc displacement, thoracolumbar region +M5126 Other intervertebral disc displacement, lumbar region +M5127 Other intervertebral disc displacement, lumbosacral region +M5134 Other intervertebral disc degeneration, thoracic region +M5135 Other intervertebral disc degeneration, thoracolumbar region +M5136 Other intervertebral disc degeneration, lumbar region +M5137 Other intervertebral disc degeneration, lumbosacral region +M5144 Schmorl's nodes, thoracic region +M5145 Schmorl's nodes, thoracolumbar region +M5146 Schmorl's nodes, lumbar region +M5147 Schmorl's nodes, lumbosacral region +M5184 Other intervertebral disc disorders, thoracic region +M5185 Other intervertebral disc disorders, thoracolumbar region +M5186 Other intervertebral disc disorders, lumbar region +M5187 Other intervertebral disc disorders, lumbosacral region +M519 Unspecified thoracic, thoracolumbar and lumbosacral intervertebral disc disorder +M530 Cervicocranial syndrome +M531 Cervicobrachial syndrome +M532X1 Spinal instabilities, occipito-atlanto-axial region +M532X2 Spinal instabilities, cervical region +M532X3 Spinal instabilities, cervicothoracic region +M532X4 Spinal instabilities, thoracic region +M532X5 Spinal instabilities, thoracolumbar region +M532X6 Spinal instabilities, lumbar region +M532X7 Spinal instabilities, lumbosacral region +M532X8 Spinal instabilities, sacral and sacrococcygeal region +M532X9 Spinal instabilities, site unspecified +M533 Sacrococcygeal disorders, not elsewhere classified +M5380 Other specified dorsopathies, site unspecified +M5381 Other specified dorsopathies, occipito-atlanto-axial region +M5382 Other specified dorsopathies, cervical region +M5383 Other specified dorsopathies, cervicothoracic region +M5384 Other specified dorsopathies, thoracic region +M5385 Other specified dorsopathies, thoracolumbar region +M5386 Other specified dorsopathies, lumbar region +M5387 Other specified dorsopathies, lumbosacral region +M5388 Other specified dorsopathies, sacral and sacrococcygeal region +M539 Dorsopathy, unspecified +M5400 Panniculitis affecting regions of neck and back, site unspecified +M5401 Panniculitis affecting regions of neck and back, occipito-atlanto-axial region +M5402 Panniculitis affecting regions of neck and back, cervical region +M5403 Panniculitis affecting regions of neck and back, cervicothoracic region +M5404 Panniculitis affecting regions of neck and back, thoracic region +M5405 Panniculitis affecting regions of neck and back, thoracolumbar region +M5406 Panniculitis affecting regions of neck and back, lumbar region +M5407 Panniculitis affecting regions of neck and back, lumbosacral region +M5408 Panniculitis affecting regions of neck and back, sacral and sacrococcygeal region +M5409 Panniculitis affecting regions, neck and back, multiple sites in spine +M5410 Radiculopathy, site unspecified +M5411 Radiculopathy, occipito-atlanto-axial region +M5412 Radiculopathy, cervical region +M5413 Radiculopathy, cervicothoracic region +M5414 Radiculopathy, thoracic region +M5415 Radiculopathy, thoracolumbar region +M5416 Radiculopathy, lumbar region +M5417 Radiculopathy, lumbosacral region +M5418 Radiculopathy, sacral and sacrococcygeal region +M542 Cervicalgia +M5430 Sciatica, unspecified side +M5431 Sciatica, right side +M5432 Sciatica, left side +M5440 Lumbago with sciatica, unspecified side +M5441 Lumbago with sciatica, right side +M5442 Lumbago with sciatica, left side +M545 Low back pain +M546 Pain in thoracic spine +M5481 Occipital neuralgia +M5489 Other dorsalgia +M549 Dorsalgia, unspecified +M60000 Infective myositis, unspecified right arm +M60001 Infective myositis, unspecified left arm +M60002 Infective myositis, unspecified arm +M60003 Infective myositis, unspecified right leg +M60004 Infective myositis, unspecified left leg +M60005 Infective myositis, unspecified leg +M60009 Infective myositis, unspecified site +M60011 Infective myositis, right shoulder +M60012 Infective myositis, left shoulder +M60019 Infective myositis, unspecified shoulder +M60021 Infective myositis, right upper arm +M60022 Infective myositis, left upper arm +M60029 Infective myositis, unspecified upper arm +M60031 Infective myositis, right forearm +M60032 Infective myositis, left forearm +M60039 Infective myositis, unspecified forearm +M60041 Infective myositis, right hand +M60042 Infective myositis, left hand +M60043 Infective myositis, unspecified hand +M60044 Infective myositis, right finger(s) +M60045 Infective myositis, left finger(s) +M60046 Infective myositis, unspecified finger(s) +M60051 Infective myositis, right thigh +M60052 Infective myositis, left thigh +M60059 Infective myositis, unspecified thigh +M60061 Infective myositis, right lower leg +M60062 Infective myositis, left lower leg +M60069 Infective myositis, unspecified lower leg +M60070 Infective myositis, right ankle +M60071 Infective myositis, left ankle +M60072 Infective myositis, unspecified ankle +M60073 Infective myositis, right foot +M60074 Infective myositis, left foot +M60075 Infective myositis, unspecified foot +M60076 Infective myositis, right toe(s) +M60077 Infective myositis, left toe(s) +M60078 Infective myositis, unspecified toe(s) +M6008 Infective myositis, other site +M6009 Infective myositis, multiple sites +M6010 Interstitial myositis of unspecified site +M60111 Interstitial myositis, right shoulder +M60112 Interstitial myositis, left shoulder +M60119 Interstitial myositis, unspecified shoulder +M60121 Interstitial myositis, right upper arm +M60122 Interstitial myositis, left upper arm +M60129 Interstitial myositis, unspecified upper arm +M60131 Interstitial myositis, right forearm +M60132 Interstitial myositis, left forearm +M60139 Interstitial myositis, unspecified forearm +M60141 Interstitial myositis, right hand +M60142 Interstitial myositis, left hand +M60149 Interstitial myositis, unspecified hand +M60151 Interstitial myositis, right thigh +M60152 Interstitial myositis, left thigh +M60159 Interstitial myositis, unspecified thigh +M60161 Interstitial myositis, right lower leg +M60162 Interstitial myositis, left lower leg +M60169 Interstitial myositis, unspecified lower leg +M60171 Interstitial myositis, right ankle and foot +M60172 Interstitial myositis, left ankle and foot +M60179 Interstitial myositis, unspecified ankle and foot +M6018 Interstitial myositis, other site +M6019 Interstitial myositis, multiple sites +M6020 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified site +M60211 Foreign body granuloma of soft tissue, not elsewhere classified, right shoulder +M60212 Foreign body granuloma of soft tissue, not elsewhere classified, left shoulder +M60219 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified shoulder +M60221 Foreign body granuloma of soft tissue, not elsewhere classified, right upper arm +M60222 Foreign body granuloma of soft tissue, not elsewhere classified, left upper arm +M60229 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified upper arm +M60231 Foreign body granuloma of soft tissue, not elsewhere classified, right forearm +M60232 Foreign body granuloma of soft tissue, not elsewhere classified, left forearm +M60239 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified forearm +M60241 Foreign body granuloma of soft tissue, not elsewhere classified, right hand +M60242 Foreign body granuloma of soft tissue, not elsewhere classified, left hand +M60249 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified hand +M60251 Foreign body granuloma of soft tissue, not elsewhere classified, right thigh +M60252 Foreign body granuloma of soft tissue, not elsewhere classified, left thigh +M60259 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified thigh +M60261 Foreign body granuloma of soft tissue, not elsewhere classified, right lower leg +M60262 Foreign body granuloma of soft tissue, not elsewhere classified, left lower leg +M60269 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified lower leg +M60271 Foreign body granuloma of soft tissue, not elsewhere classified, right ankle and foot +M60272 Foreign body granuloma of soft tissue, not elsewhere classified, left ankle and foot +M60279 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified ankle and foot +M6028 Foreign body granuloma of soft tissue, not elsewhere classified, other site +M6080 Other myositis, unspecified site +M60811 Other myositis, right shoulder +M60812 Other myositis, left shoulder +M60819 Other myositis, unspecified shoulder +M60821 Other myositis, right upper arm +M60822 Other myositis, left upper arm +M60829 Other myositis, unspecified upper arm +M60831 Other myositis, right forearm +M60832 Other myositis, left forearm +M60839 Other myositis, unspecified forearm +M60841 Other myositis, right hand +M60842 Other myositis, left hand +M60849 Other myositis, unspecified hand +M60851 Other myositis, right thigh +M60852 Other myositis, left thigh +M60859 Other myositis, unspecified thigh +M60861 Other myositis, right lower leg +M60862 Other myositis, left lower leg +M60869 Other myositis, unspecified lower leg +M60871 Other myositis, right ankle and foot +M60872 Other myositis, left ankle and foot +M60879 Other myositis, unspecified ankle and foot +M6088 Other myositis, other site +M6089 Other myositis, multiple sites +M609 Myositis, unspecified +M6100 Myositis ossificans traumatica, unspecified site +M61011 Myositis ossificans traumatica, right shoulder +M61012 Myositis ossificans traumatica, left shoulder +M61019 Myositis ossificans traumatica, unspecified shoulder +M61021 Myositis ossificans traumatica, right upper arm +M61022 Myositis ossificans traumatica, left upper arm +M61029 Myositis ossificans traumatica, unspecified upper arm +M61031 Myositis ossificans traumatica, right forearm +M61032 Myositis ossificans traumatica, left forearm +M61039 Myositis ossificans traumatica, unspecified forearm +M61041 Myositis ossificans traumatica, right hand +M61042 Myositis ossificans traumatica, left hand +M61049 Myositis ossificans traumatica, unspecified hand +M61051 Myositis ossificans traumatica, right thigh +M61052 Myositis ossificans traumatica, left thigh +M61059 Myositis ossificans traumatica, unspecified thigh +M61061 Myositis ossificans traumatica, right lower leg +M61062 Myositis ossificans traumatica, left lower leg +M61069 Myositis ossificans traumatica, unspecified lower leg +M61071 Myositis ossificans traumatica, right ankle and foot +M61072 Myositis ossificans traumatica, left ankle and foot +M61079 Myositis ossificans traumatica, unspecified ankle and foot +M6108 Myositis ossificans traumatica, other site +M6109 Myositis ossificans traumatica, multiple sites +M6110 Myositis ossificans progressiva, unspecified site +M61111 Myositis ossificans progressiva, right shoulder +M61112 Myositis ossificans progressiva, left shoulder +M61119 Myositis ossificans progressiva, unspecified shoulder +M61121 Myositis ossificans progressiva, right upper arm +M61122 Myositis ossificans progressiva, left upper arm +M61129 Myositis ossificans progressiva, unspecified arm +M61131 Myositis ossificans progressiva, right forearm +M61132 Myositis ossificans progressiva, left forearm +M61139 Myositis ossificans progressiva, unspecified forearm +M61141 Myositis ossificans progressiva, right hand +M61142 Myositis ossificans progressiva, left hand +M61143 Myositis ossificans progressiva, unspecified hand +M61144 Myositis ossificans progressiva, right finger(s) +M61145 Myositis ossificans progressiva, left finger(s) +M61146 Myositis ossificans progressiva, unspecified finger(s) +M61151 Myositis ossificans progressiva, right thigh +M61152 Myositis ossificans progressiva, left thigh +M61159 Myositis ossificans progressiva, unspecified thigh +M61161 Myositis ossificans progressiva, right lower leg +M61162 Myositis ossificans progressiva, left lower leg +M61169 Myositis ossificans progressiva, unspecified lower leg +M61171 Myositis ossificans progressiva, right ankle +M61172 Myositis ossificans progressiva, left ankle +M61173 Myositis ossificans progressiva, unspecified ankle +M61174 Myositis ossificans progressiva, right foot +M61175 Myositis ossificans progressiva, left foot +M61176 Myositis ossificans progressiva, unspecified foot +M61177 Myositis ossificans progressiva, right toe(s) +M61178 Myositis ossificans progressiva, left toe(s) +M61179 Myositis ossificans progressiva, unspecified toe(s) +M6118 Myositis ossificans progressiva, other site +M6119 Myositis ossificans progressiva, multiple sites +M6120 Paralytic calcification and ossification of muscle, unspecified site +M61211 Paralytic calcification and ossification of muscle, right shoulder +M61212 Paralytic calcification and ossification of muscle, left shoulder +M61219 Paralytic calcification and ossification of muscle, unspecified shoulder +M61221 Paralytic calcification and ossification of muscle, right upper arm +M61222 Paralytic calcification and ossification of muscle, left upper arm +M61229 Paralytic calcification and ossification of muscle, unspecified upper arm +M61231 Paralytic calcification and ossification of muscle, right forearm +M61232 Paralytic calcification and ossification of muscle, left forearm +M61239 Paralytic calcification and ossification of muscle, unspecified forearm +M61241 Paralytic calcification and ossification of muscle, right hand +M61242 Paralytic calcification and ossification of muscle, left hand +M61249 Paralytic calcification and ossification of muscle, unspecified hand +M61251 Paralytic calcification and ossification of muscle, right thigh +M61252 Paralytic calcification and ossification of muscle, left thigh +M61259 Paralytic calcification and ossification of muscle, unspecified thigh +M61261 Paralytic calcification and ossification of muscle, right lower leg +M61262 Paralytic calcification and ossification of muscle, left lower leg +M61269 Paralytic calcification and ossification of muscle, unspecified lower leg +M61271 Paralytic calcification and ossification of muscle, right ankle and foot +M61272 Paralytic calcification and ossification of muscle, left ankle and foot +M61279 Paralytic calcification and ossification of muscle, unspecified ankle and foot +M6128 Paralytic calcification and ossification of muscle, other site +M6129 Paralytic calcification and ossification of muscle, multiple sites +M6130 Calcification and ossification of muscles associated with burns, unspecified site +M61311 Calcification and ossification of muscles associated with burns, right shoulder +M61312 Calcification and ossification of muscles associated with burns, left shoulder +M61319 Calcification and ossification of muscles associated with burns, unspecified shoulder +M61321 Calcification and ossification of muscles associated with burns, right upper arm +M61322 Calcification and ossification of muscles associated with burns, left upper arm +M61329 Calcification and ossification of muscles associated with burns, unspecified upper arm +M61331 Calcification and ossification of muscles associated with burns, right forearm +M61332 Calcification and ossification of muscles associated with burns, left forearm +M61339 Calcification and ossification of muscles associated with burns, unspecified forearm +M61341 Calcification and ossification of muscles associated with burns, right hand +M61342 Calcification and ossification of muscles associated with burns, left hand +M61349 Calcification and ossification of muscles associated with burns, unspecified hand +M61351 Calcification and ossification of muscles associated with burns, right thigh +M61352 Calcification and ossification of muscles associated with burns, left thigh +M61359 Calcification and ossification of muscles associated with burns, unspecified thigh +M61361 Calcification and ossification of muscles associated with burns, right lower leg +M61362 Calcification and ossification of muscles associated with burns, left lower leg +M61369 Calcification and ossification of muscles associated with burns, unspecified lower leg +M61371 Calcification and ossification of muscles associated with burns, right ankle and foot +M61372 Calcification and ossification of muscles associated with burns, left ankle and foot +M61379 Calcification and ossification of muscles associated with burns, unspecified ankle and foot +M6138 Calcification and ossification of muscles associated with burns, other site +M6139 Calcification and ossification of muscles associated with burns, multiple sites +M6140 Other calcification of muscle, unspecified site +M61411 Other calcification of muscle, right shoulder +M61412 Other calcification of muscle, left shoulder +M61419 Other calcification of muscle, unspecified shoulder +M61421 Other calcification of muscle, right upper arm +M61422 Other calcification of muscle, left upper arm +M61429 Other calcification of muscle, unspecified upper arm +M61431 Other calcification of muscle, right forearm +M61432 Other calcification of muscle, left forearm +M61439 Other calcification of muscle, unspecified forearm +M61441 Other calcification of muscle, right hand +M61442 Other calcification of muscle, left hand +M61449 Other calcification of muscle, unspecified hand +M61451 Other calcification of muscle, right thigh +M61452 Other calcification of muscle, left thigh +M61459 Other calcification of muscle, unspecified thigh +M61461 Other calcification of muscle, right lower leg +M61462 Other calcification of muscle, left lower leg +M61469 Other calcification of muscle, unspecified lower leg +M61471 Other calcification of muscle, right ankle and foot +M61472 Other calcification of muscle, left ankle and foot +M61479 Other calcification of muscle, unspecified ankle and foot +M6148 Other calcification of muscle, other site +M6149 Other calcification of muscle, multiple sites +M6150 Other ossification of muscle, unspecified site +M61511 Other ossification of muscle, right shoulder +M61512 Other ossification of muscle, left shoulder +M61519 Other ossification of muscle, unspecified shoulder +M61521 Other ossification of muscle, right upper arm +M61522 Other ossification of muscle, left upper arm +M61529 Other ossification of muscle, unspecified upper arm +M61531 Other ossification of muscle, right forearm +M61532 Other ossification of muscle, left forearm +M61539 Other ossification of muscle, unspecified forearm +M61541 Other ossification of muscle, right hand +M61542 Other ossification of muscle, left hand +M61549 Other ossification of muscle, unspecified hand +M61551 Other ossification of muscle, right thigh +M61552 Other ossification of muscle, left thigh +M61559 Other ossification of muscle, unspecified thigh +M61561 Other ossification of muscle, right lower leg +M61562 Other ossification of muscle, left lower leg +M61569 Other ossification of muscle, unspecified lower leg +M61571 Other ossification of muscle, right ankle and foot +M61572 Other ossification of muscle, left ankle and foot +M61579 Other ossification of muscle, unspecified ankle and foot +M6158 Other ossification of muscle, other site +M6159 Other ossification of muscle, multiple sites +M619 Calcification and ossification of muscle, unspecified +M6200 Separation of muscle (nontraumatic), unspecified site +M62011 Separation of muscle (nontraumatic), right shoulder +M62012 Separation of muscle (nontraumatic), left shoulder +M62019 Separation of muscle (nontraumatic), unspecified shoulder +M62021 Separation of muscle (nontraumatic), right upper arm +M62022 Separation of muscle (nontraumatic), left upper arm +M62029 Separation of muscle (nontraumatic), unspecified upper arm +M62031 Separation of muscle (nontraumatic), right forearm +M62032 Separation of muscle (nontraumatic), left forearm +M62039 Separation of muscle (nontraumatic), unspecified forearm +M62041 Separation of muscle (nontraumatic), right hand +M62042 Separation of muscle (nontraumatic), left hand +M62049 Separation of muscle (nontraumatic), unspecified hand +M62051 Separation of muscle (nontraumatic), right thigh +M62052 Separation of muscle (nontraumatic), left thigh +M62059 Separation of muscle (nontraumatic), unspecified thigh +M62061 Separation of muscle (nontraumatic), right lower leg +M62062 Separation of muscle (nontraumatic), left lower leg +M62069 Separation of muscle (nontraumatic), unspecified lower leg +M62071 Separation of muscle (nontraumatic), right ankle and foot +M62072 Separation of muscle (nontraumatic), left ankle and foot +M62079 Separation of muscle (nontraumatic), unspecified ankle and foot +M6208 Separation of muscle (nontraumatic), other site +M6210 Other rupture of muscle (nontraumatic), unspecified site +M62111 Other rupture of muscle (nontraumatic), right shoulder +M62112 Other rupture of muscle (nontraumatic), left shoulder +M62119 Other rupture of muscle (nontraumatic), unspecified shoulder +M62121 Other rupture of muscle (nontraumatic), right upper arm +M62122 Other rupture of muscle (nontraumatic), left upper arm +M62129 Other rupture of muscle (nontraumatic), unspecified upper arm +M62131 Other rupture of muscle (nontraumatic), right forearm +M62132 Other rupture of muscle (nontraumatic), left forearm +M62139 Other rupture of muscle (nontraumatic), unspecified forearm +M62141 Other rupture of muscle (nontraumatic), right hand +M62142 Other rupture of muscle (nontraumatic), left hand +M62149 Other rupture of muscle (nontraumatic), unspecified hand +M62151 Other rupture of muscle (nontraumatic), right thigh +M62152 Other rupture of muscle (nontraumatic), left thigh +M62159 Other rupture of muscle (nontraumatic), unspecified thigh +M62161 Other rupture of muscle (nontraumatic), right lower leg +M62162 Other rupture of muscle (nontraumatic), left lower leg +M62169 Other rupture of muscle (nontraumatic), unspecified lower leg +M62171 Other rupture of muscle (nontraumatic), right ankle and foot +M62172 Other rupture of muscle (nontraumatic), left ankle and foot +M62179 Other rupture of muscle (nontraumatic), unspecified ankle and foot +M6218 Other rupture of muscle (nontraumatic), other site +M6220 Nontraumatic ischemic infarction of muscle, unspecified site +M62211 Nontraumatic ischemic infarction of muscle, right shoulder +M62212 Nontraumatic ischemic infarction of muscle, left shoulder +M62219 Nontraumatic ischemic infarction of muscle, unspecified shoulder +M62221 Nontraumatic ischemic infarction of muscle, right upper arm +M62222 Nontraumatic ischemic infarction of muscle, left upper arm +M62229 Nontraumatic ischemic infarction of muscle, unspecified upper arm +M62231 Nontraumatic ischemic infarction of muscle, right forearm +M62232 Nontraumatic ischemic infarction of muscle, left forearm +M62239 Nontraumatic ischemic infarction of muscle, unspecified forearm +M62241 Nontraumatic ischemic infarction of muscle, right hand +M62242 Nontraumatic ischemic infarction of muscle, left hand +M62249 Nontraumatic ischemic infarction of muscle, unspecified hand +M62251 Nontraumatic ischemic infarction of muscle, right thigh +M62252 Nontraumatic ischemic infarction of muscle, left thigh +M62259 Nontraumatic ischemic infarction of muscle, unspecified thigh +M62261 Nontraumatic ischemic infarction of muscle, right lower leg +M62262 Nontraumatic ischemic infarction of muscle, left lower leg +M62269 Nontraumatic ischemic infarction of muscle, unspecified lower leg +M62271 Nontraumatic ischemic infarction of muscle, right ankle and foot +M62272 Nontraumatic ischemic infarction of muscle, left ankle and foot +M62279 Nontraumatic ischemic infarction of muscle, unspecified ankle and foot +M6228 Nontraumatic ischemic infarction of muscle, other site +M623 Immobility syndrome (paraplegic) +M6240 Contracture of muscle, unspecified site +M62411 Contracture of muscle, right shoulder +M62412 Contracture of muscle, left shoulder +M62419 Contracture of muscle, unspecified shoulder +M62421 Contracture of muscle, right upper arm +M62422 Contracture of muscle, left upper arm +M62429 Contracture of muscle, unspecified upper arm +M62431 Contracture of muscle, right forearm +M62432 Contracture of muscle, left forearm +M62439 Contracture of muscle, unspecified forearm +M62441 Contracture of muscle, right hand +M62442 Contracture of muscle, left hand +M62449 Contracture of muscle, unspecified hand +M62451 Contracture of muscle, right thigh +M62452 Contracture of muscle, left thigh +M62459 Contracture of muscle, unspecified thigh +M62461 Contracture of muscle, right lower leg +M62462 Contracture of muscle, left lower leg +M62469 Contracture of muscle, unspecified lower leg +M62471 Contracture of muscle, right ankle and foot +M62472 Contracture of muscle, left ankle and foot +M62479 Contracture of muscle, unspecified ankle and foot +M6248 Contracture of muscle, other site +M6249 Contracture of muscle, multiple sites +M6250 Muscle wasting and atrophy, not elsewhere classified, unspecified site +M62511 Muscle wasting and atrophy, not elsewhere classified, right shoulder +M62512 Muscle wasting and atrophy, not elsewhere classified, left shoulder +M62519 Muscle wasting and atrophy, not elsewhere classified, unspecified shoulder +M62521 Muscle wasting and atrophy, not elsewhere classified, right upper arm +M62522 Muscle wasting and atrophy, not elsewhere classified, left upper arm +M62529 Muscle wasting and atrophy, not elsewhere classified, unspecified upper arm +M62531 Muscle wasting and atrophy, not elsewhere classified, right forearm +M62532 Muscle wasting and atrophy, not elsewhere classified, left forearm +M62539 Muscle wasting and atrophy, not elsewhere classified, unspecified forearm +M62541 Muscle wasting and atrophy, not elsewhere classified, right hand +M62542 Muscle wasting and atrophy, not elsewhere classified, left hand +M62549 Muscle wasting and atrophy, not elsewhere classified, unspecified hand +M62551 Muscle wasting and atrophy, not elsewhere classified, right thigh +M62552 Muscle wasting and atrophy, not elsewhere classified, left thigh +M62559 Muscle wasting and atrophy, not elsewhere classified, unspecified thigh +M62561 Muscle wasting and atrophy, not elsewhere classified, right lower leg +M62562 Muscle wasting and atrophy, not elsewhere classified, left lower leg +M62569 Muscle wasting and atrophy, not elsewhere classified, unspecified lower leg +M62571 Muscle wasting and atrophy, not elsewhere classified, right ankle and foot +M62572 Muscle wasting and atrophy, not elsewhere classified, left ankle and foot +M62579 Muscle wasting and atrophy, not elsewhere classified, unspecified ankle and foot +M6258 Muscle wasting and atrophy, not elsewhere classified, other site +M6259 Muscle wasting and atrophy, not elsewhere classified, multiple sites +M6281 Muscle weakness (generalized) +M6282 Rhabdomyolysis +M62830 Muscle spasm of back +M62831 Muscle spasm of calf +M62838 Other muscle spasm +M6284 Sarcopenia +M6289 Other specified disorders of muscle +M629 Disorder of muscle, unspecified +M6380 Disorders of muscle in diseases classified elsewhere, unspecified site +M63811 Disorders of muscle in diseases classified elsewhere, right shoulder +M63812 Disorders of muscle in diseases classified elsewhere, left shoulder +M63819 Disorders of muscle in diseases classified elsewhere, unspecified shoulder +M63821 Disorders of muscle in diseases classified elsewhere, right upper arm +M63822 Disorders of muscle in diseases classified elsewhere, left upper arm +M63829 Disorders of muscle in diseases classified elsewhere, unspecified upper arm +M63831 Disorders of muscle in diseases classified elsewhere, right forearm +M63832 Disorders of muscle in diseases classified elsewhere, left forearm +M63839 Disorders of muscle in diseases classified elsewhere, unspecified forearm +M63841 Disorders of muscle in diseases classified elsewhere, right hand +M63842 Disorders of muscle in diseases classified elsewhere, left hand +M63849 Disorders of muscle in diseases classified elsewhere, unspecified hand +M63851 Disorders of muscle in diseases classified elsewhere, right thigh +M63852 Disorders of muscle in diseases classified elsewhere, left thigh +M63859 Disorders of muscle in diseases classified elsewhere, unspecified thigh +M63861 Disorders of muscle in diseases classified elsewhere, right lower leg +M63862 Disorders of muscle in diseases classified elsewhere, left lower leg +M63869 Disorders of muscle in diseases classified elsewhere, unspecified lower leg +M63871 Disorders of muscle in diseases classified elsewhere, right ankle and foot +M63872 Disorders of muscle in diseases classified elsewhere, left ankle and foot +M63879 Disorders of muscle in diseases classified elsewhere, unspecified ankle and foot +M6388 Disorders of muscle in diseases classified elsewhere, other site +M6389 Disorders of muscle in diseases classified elsewhere, multiple sites +M6500 Abscess of tendon sheath, unspecified site +M65011 Abscess of tendon sheath, right shoulder +M65012 Abscess of tendon sheath, left shoulder +M65019 Abscess of tendon sheath, unspecified shoulder +M65021 Abscess of tendon sheath, right upper arm +M65022 Abscess of tendon sheath, left upper arm +M65029 Abscess of tendon sheath, unspecified upper arm +M65031 Abscess of tendon sheath, right forearm +M65032 Abscess of tendon sheath, left forearm +M65039 Abscess of tendon sheath, unspecified forearm +M65041 Abscess of tendon sheath, right hand +M65042 Abscess of tendon sheath, left hand +M65049 Abscess of tendon sheath, unspecified hand +M65051 Abscess of tendon sheath, right thigh +M65052 Abscess of tendon sheath, left thigh +M65059 Abscess of tendon sheath, unspecified thigh +M65061 Abscess of tendon sheath, right lower leg +M65062 Abscess of tendon sheath, left lower leg +M65069 Abscess of tendon sheath, unspecified lower leg +M65071 Abscess of tendon sheath, right ankle and foot +M65072 Abscess of tendon sheath, left ankle and foot +M65079 Abscess of tendon sheath, unspecified ankle and foot +M6508 Abscess of tendon sheath, other site +M6510 Other infective (teno)synovitis, unspecified site +M65111 Other infective (teno)synovitis, right shoulder +M65112 Other infective (teno)synovitis, left shoulder +M65119 Other infective (teno)synovitis, unspecified shoulder +M65121 Other infective (teno)synovitis, right elbow +M65122 Other infective (teno)synovitis, left elbow +M65129 Other infective (teno)synovitis, unspecified elbow +M65131 Other infective (teno)synovitis, right wrist +M65132 Other infective (teno)synovitis, left wrist +M65139 Other infective (teno)synovitis, unspecified wrist +M65141 Other infective (teno)synovitis, right hand +M65142 Other infective (teno)synovitis, left hand +M65149 Other infective (teno)synovitis, unspecified hand +M65151 Other infective (teno)synovitis, right hip +M65152 Other infective (teno)synovitis, left hip +M65159 Other infective (teno)synovitis, unspecified hip +M65161 Other infective (teno)synovitis, right knee +M65162 Other infective (teno)synovitis, left knee +M65169 Other infective (teno)synovitis, unspecified knee +M65171 Other infective (teno)synovitis, right ankle and foot +M65172 Other infective (teno)synovitis, left ankle and foot +M65179 Other infective (teno)synovitis, unspecified ankle and foot +M6518 Other infective (teno)synovitis, other site +M6519 Other infective (teno)synovitis, multiple sites +M6520 Calcific tendinitis, unspecified site +M65221 Calcific tendinitis, right upper arm +M65222 Calcific tendinitis, left upper arm +M65229 Calcific tendinitis, unspecified upper arm +M65231 Calcific tendinitis, right forearm +M65232 Calcific tendinitis, left forearm +M65239 Calcific tendinitis, unspecified forearm +M65241 Calcific tendinitis, right hand +M65242 Calcific tendinitis, left hand +M65249 Calcific tendinitis, unspecified hand +M65251 Calcific tendinitis, right thigh +M65252 Calcific tendinitis, left thigh +M65259 Calcific tendinitis, unspecified thigh +M65261 Calcific tendinitis, right lower leg +M65262 Calcific tendinitis, left lower leg +M65269 Calcific tendinitis, unspecified lower leg +M65271 Calcific tendinitis, right ankle and foot +M65272 Calcific tendinitis, left ankle and foot +M65279 Calcific tendinitis, unspecified ankle and foot +M6528 Calcific tendinitis, other site +M6529 Calcific tendinitis, multiple sites +M6530 Trigger finger, unspecified finger +M65311 Trigger thumb, right thumb +M65312 Trigger thumb, left thumb +M65319 Trigger thumb, unspecified thumb +M65321 Trigger finger, right index finger +M65322 Trigger finger, left index finger +M65329 Trigger finger, unspecified index finger +M65331 Trigger finger, right middle finger +M65332 Trigger finger, left middle finger +M65339 Trigger finger, unspecified middle finger +M65341 Trigger finger, right ring finger +M65342 Trigger finger, left ring finger +M65349 Trigger finger, unspecified ring finger +M65351 Trigger finger, right little finger +M65352 Trigger finger, left little finger +M65359 Trigger finger, unspecified little finger +M654 Radial styloid tenosynovitis [de Quervain] +M6580 Other synovitis and tenosynovitis, unspecified site +M65811 Other synovitis and tenosynovitis, right shoulder +M65812 Other synovitis and tenosynovitis, left shoulder +M65819 Other synovitis and tenosynovitis, unspecified shoulder +M65821 Other synovitis and tenosynovitis, right upper arm +M65822 Other synovitis and tenosynovitis, left upper arm +M65829 Other synovitis and tenosynovitis, unspecified upper arm +M65831 Other synovitis and tenosynovitis, right forearm +M65832 Other synovitis and tenosynovitis, left forearm +M65839 Other synovitis and tenosynovitis, unspecified forearm +M65841 Other synovitis and tenosynovitis, right hand +M65842 Other synovitis and tenosynovitis, left hand +M65849 Other synovitis and tenosynovitis, unspecified hand +M65851 Other synovitis and tenosynovitis, right thigh +M65852 Other synovitis and tenosynovitis, left thigh +M65859 Other synovitis and tenosynovitis, unspecified thigh +M65861 Other synovitis and tenosynovitis, right lower leg +M65862 Other synovitis and tenosynovitis, left lower leg +M65869 Other synovitis and tenosynovitis, unspecified lower leg +M65871 Other synovitis and tenosynovitis, right ankle and foot +M65872 Other synovitis and tenosynovitis, left ankle and foot +M65879 Other synovitis and tenosynovitis, unspecified ankle and foot +M6588 Other synovitis and tenosynovitis, other site +M6589 Other synovitis and tenosynovitis, multiple sites +M659 Synovitis and tenosynovitis, unspecified +M660 Rupture of popliteal cyst +M6610 Rupture of synovium, unspecified joint +M66111 Rupture of synovium, right shoulder +M66112 Rupture of synovium, left shoulder +M66119 Rupture of synovium, unspecified shoulder +M66121 Rupture of synovium, right elbow +M66122 Rupture of synovium, left elbow +M66129 Rupture of synovium, unspecified elbow +M66131 Rupture of synovium, right wrist +M66132 Rupture of synovium, left wrist +M66139 Rupture of synovium, unspecified wrist +M66141 Rupture of synovium, right hand +M66142 Rupture of synovium, left hand +M66143 Rupture of synovium, unspecified hand +M66144 Rupture of synovium, right finger(s) +M66145 Rupture of synovium, left finger(s) +M66146 Rupture of synovium, unspecified finger(s) +M66151 Rupture of synovium, right hip +M66152 Rupture of synovium, left hip +M66159 Rupture of synovium, unspecified hip +M66171 Rupture of synovium, right ankle +M66172 Rupture of synovium, left ankle +M66173 Rupture of synovium, unspecified ankle +M66174 Rupture of synovium, right foot +M66175 Rupture of synovium, left foot +M66176 Rupture of synovium, unspecified foot +M66177 Rupture of synovium, right toe(s) +M66178 Rupture of synovium, left toe(s) +M66179 Rupture of synovium, unspecified toe(s) +M6618 Rupture of synovium, other site +M6620 Spontaneous rupture of extensor tendons, unspecified site +M66211 Spontaneous rupture of extensor tendons, right shoulder +M66212 Spontaneous rupture of extensor tendons, left shoulder +M66219 Spontaneous rupture of extensor tendons, unspecified shoulder +M66221 Spontaneous rupture of extensor tendons, right upper arm +M66222 Spontaneous rupture of extensor tendons, left upper arm +M66229 Spontaneous rupture of extensor tendons, unspecified upper arm +M66231 Spontaneous rupture of extensor tendons, right forearm +M66232 Spontaneous rupture of extensor tendons, left forearm +M66239 Spontaneous rupture of extensor tendons, unspecified forearm +M66241 Spontaneous rupture of extensor tendons, right hand +M66242 Spontaneous rupture of extensor tendons, left hand +M66249 Spontaneous rupture of extensor tendons, unspecified hand +M66251 Spontaneous rupture of extensor tendons, right thigh +M66252 Spontaneous rupture of extensor tendons, left thigh +M66259 Spontaneous rupture of extensor tendons, unspecified thigh +M66261 Spontaneous rupture of extensor tendons, right lower leg +M66262 Spontaneous rupture of extensor tendons, left lower leg +M66269 Spontaneous rupture of extensor tendons, unspecified lower leg +M66271 Spontaneous rupture of extensor tendons, right ankle and foot +M66272 Spontaneous rupture of extensor tendons, left ankle and foot +M66279 Spontaneous rupture of extensor tendons, unspecified ankle and foot +M6628 Spontaneous rupture of extensor tendons, other site +M6629 Spontaneous rupture of extensor tendons, multiple sites +M6630 Spontaneous rupture of flexor tendons, unspecified site +M66311 Spontaneous rupture of flexor tendons, right shoulder +M66312 Spontaneous rupture of flexor tendons, left shoulder +M66319 Spontaneous rupture of flexor tendons, unspecified shoulder +M66321 Spontaneous rupture of flexor tendons, right upper arm +M66322 Spontaneous rupture of flexor tendons, left upper arm +M66329 Spontaneous rupture of flexor tendons, unspecified upper arm +M66331 Spontaneous rupture of flexor tendons, right forearm +M66332 Spontaneous rupture of flexor tendons, left forearm +M66339 Spontaneous rupture of flexor tendons, unspecified forearm +M66341 Spontaneous rupture of flexor tendons, right hand +M66342 Spontaneous rupture of flexor tendons, left hand +M66349 Spontaneous rupture of flexor tendons, unspecified hand +M66351 Spontaneous rupture of flexor tendons, right thigh +M66352 Spontaneous rupture of flexor tendons, left thigh +M66359 Spontaneous rupture of flexor tendons, unspecified thigh +M66361 Spontaneous rupture of flexor tendons, right lower leg +M66362 Spontaneous rupture of flexor tendons, left lower leg +M66369 Spontaneous rupture of flexor tendons, unspecified lower leg +M66371 Spontaneous rupture of flexor tendons, right ankle and foot +M66372 Spontaneous rupture of flexor tendons, left ankle and foot +M66379 Spontaneous rupture of flexor tendons, unspecified ankle and foot +M6638 Spontaneous rupture of flexor tendons, other site +M6639 Spontaneous rupture of flexor tendons, multiple sites +M6680 Spontaneous rupture of other tendons, unspecified site +M66811 Spontaneous rupture of other tendons, right shoulder +M66812 Spontaneous rupture of other tendons, left shoulder +M66819 Spontaneous rupture of other tendons, unspecified shoulder +M66821 Spontaneous rupture of other tendons, right upper arm +M66822 Spontaneous rupture of other tendons, left upper arm +M66829 Spontaneous rupture of other tendons, unspecified upper arm +M66831 Spontaneous rupture of other tendons, right forearm +M66832 Spontaneous rupture of other tendons, left forearm +M66839 Spontaneous rupture of other tendons, unspecified forearm +M66841 Spontaneous rupture of other tendons, right hand +M66842 Spontaneous rupture of other tendons, left hand +M66849 Spontaneous rupture of other tendons, unspecified hand +M66851 Spontaneous rupture of other tendons, right thigh +M66852 Spontaneous rupture of other tendons, left thigh +M66859 Spontaneous rupture of other tendons, unspecified thigh +M66861 Spontaneous rupture of other tendons, right lower leg +M66862 Spontaneous rupture of other tendons, left lower leg +M66869 Spontaneous rupture of other tendons, unspecified lower leg +M66871 Spontaneous rupture of other tendons, right ankle and foot +M66872 Spontaneous rupture of other tendons, left ankle and foot +M66879 Spontaneous rupture of other tendons, unspecified ankle and foot +M6688 Spontaneous rupture of other tendons, other sites +M6689 Spontaneous rupture of other tendons, multiple sites +M669 Spontaneous rupture of unspecified tendon +M6700 Short Achilles tendon (acquired), unspecified ankle +M6701 Short Achilles tendon (acquired), right ankle +M6702 Short Achilles tendon (acquired), left ankle +M6720 Synovial hypertrophy, not elsewhere classified, unspecified site +M67211 Synovial hypertrophy, not elsewhere classified, right shoulder +M67212 Synovial hypertrophy, not elsewhere classified, left shoulder +M67219 Synovial hypertrophy, not elsewhere classified, unspecified shoulder +M67221 Synovial hypertrophy, not elsewhere classified, right upper arm +M67222 Synovial hypertrophy, not elsewhere classified, left upper arm +M67229 Synovial hypertrophy, not elsewhere classified, unspecified upper arm +M67231 Synovial hypertrophy, not elsewhere classified, right forearm +M67232 Synovial hypertrophy, not elsewhere classified, left forearm +M67239 Synovial hypertrophy, not elsewhere classified, unspecified forearm +M67241 Synovial hypertrophy, not elsewhere classified, right hand +M67242 Synovial hypertrophy, not elsewhere classified, left hand +M67249 Synovial hypertrophy, not elsewhere classified, unspecified hand +M67251 Synovial hypertrophy, not elsewhere classified, right thigh +M67252 Synovial hypertrophy, not elsewhere classified, left thigh +M67259 Synovial hypertrophy, not elsewhere classified, unspecified thigh +M67261 Synovial hypertrophy, not elsewhere classified, right lower leg +M67262 Synovial hypertrophy, not elsewhere classified, left lower leg +M67269 Synovial hypertrophy, not elsewhere classified, unspecified lower leg +M67271 Synovial hypertrophy, not elsewhere classified, right ankle and foot +M67272 Synovial hypertrophy, not elsewhere classified, left ankle and foot +M67279 Synovial hypertrophy, not elsewhere classified, unspecified ankle and foot +M6728 Synovial hypertrophy, not elsewhere classified, other site +M6729 Synovial hypertrophy, not elsewhere classified, multiple sites +M6730 Transient synovitis, unspecified site +M67311 Transient synovitis, right shoulder +M67312 Transient synovitis, left shoulder +M67319 Transient synovitis, unspecified shoulder +M67321 Transient synovitis, right elbow +M67322 Transient synovitis, left elbow +M67329 Transient synovitis, unspecified elbow +M67331 Transient synovitis, right wrist +M67332 Transient synovitis, left wrist +M67339 Transient synovitis, unspecified wrist +M67341 Transient synovitis, right hand +M67342 Transient synovitis, left hand +M67349 Transient synovitis, unspecified hand +M67351 Transient synovitis, right hip +M67352 Transient synovitis, left hip +M67359 Transient synovitis, unspecified hip +M67361 Transient synovitis, right knee +M67362 Transient synovitis, left knee +M67369 Transient synovitis, unspecified knee +M67371 Transient synovitis, right ankle and foot +M67372 Transient synovitis, left ankle and foot +M67379 Transient synovitis, unspecified ankle and foot +M6738 Transient synovitis, other site +M6739 Transient synovitis, multiple sites +M6740 Ganglion, unspecified site +M67411 Ganglion, right shoulder +M67412 Ganglion, left shoulder +M67419 Ganglion, unspecified shoulder +M67421 Ganglion, right elbow +M67422 Ganglion, left elbow +M67429 Ganglion, unspecified elbow +M67431 Ganglion, right wrist +M67432 Ganglion, left wrist +M67439 Ganglion, unspecified wrist +M67441 Ganglion, right hand +M67442 Ganglion, left hand +M67449 Ganglion, unspecified hand +M67451 Ganglion, right hip +M67452 Ganglion, left hip +M67459 Ganglion, unspecified hip +M67461 Ganglion, right knee +M67462 Ganglion, left knee +M67469 Ganglion, unspecified knee +M67471 Ganglion, right ankle and foot +M67472 Ganglion, left ankle and foot +M67479 Ganglion, unspecified ankle and foot +M6748 Ganglion, other site +M6749 Ganglion, multiple sites +M6750 Plica syndrome, unspecified knee +M6751 Plica syndrome, right knee +M6752 Plica syndrome, left knee +M6780 Other specified disorders of synovium and tendon, unspecified site +M67811 Other specified disorders of synovium, right shoulder +M67812 Other specified disorders of synovium, left shoulder +M67813 Other specified disorders of tendon, right shoulder +M67814 Other specified disorders of tendon, left shoulder +M67819 Other specified disorders of synovium and tendon, unspecified shoulder +M67821 Other specified disorders of synovium, right elbow +M67822 Other specified disorders of synovium, left elbow +M67823 Other specified disorders of tendon, right elbow +M67824 Other specified disorders of tendon, left elbow +M67829 Other specified disorders of synovium and tendon, unspecified elbow +M67831 Other specified disorders of synovium, right wrist +M67832 Other specified disorders of synovium, left wrist +M67833 Other specified disorders of tendon, right wrist +M67834 Other specified disorders of tendon, left wrist +M67839 Other specified disorders of synovium and tendon, unspecified wrist +M67841 Other specified disorders of synovium, right hand +M67842 Other specified disorders of synovium, left hand +M67843 Other specified disorders of tendon, right hand +M67844 Other specified disorders of tendon, left hand +M67849 Other specified disorders of synovium and tendon, unspecified hand +M67851 Other specified disorders of synovium, right hip +M67852 Other specified disorders of synovium, left hip +M67853 Other specified disorders of tendon, right hip +M67854 Other specified disorders of tendon, left hip +M67859 Other specified disorders of synovium and tendon, unspecified hip +M67861 Other specified disorders of synovium, right knee +M67862 Other specified disorders of synovium, left knee +M67863 Other specified disorders of tendon, right knee +M67864 Other specified disorders of tendon, left knee +M67869 Other specified disorders of synovium and tendon, unspecified knee +M67871 Other specified disorders of synovium, right ankle and foot +M67872 Other specified disorders of synovium, left ankle and foot +M67873 Other specified disorders of tendon, right ankle and foot +M67874 Other specified disorders of tendon, left ankle and foot +M67879 Other specified disorders of synovium and tendon, unspecified ankle and foot +M6788 Other specified disorders of synovium and tendon, other site +M6789 Other specified disorders of synovium and tendon, multiple sites +M6790 Unspecified disorder of synovium and tendon, unspecified site +M67911 Unspecified disorder of synovium and tendon, right shoulder +M67912 Unspecified disorder of synovium and tendon, left shoulder +M67919 Unspecified disorder of synovium and tendon, unspecified shoulder +M67921 Unspecified disorder of synovium and tendon, right upper arm +M67922 Unspecified disorder of synovium and tendon, left upper arm +M67929 Unspecified disorder of synovium and tendon, unspecified upper arm +M67931 Unspecified disorder of synovium and tendon, right forearm +M67932 Unspecified disorder of synovium and tendon, left forearm +M67939 Unspecified disorder of synovium and tendon, unspecified forearm +M67941 Unspecified disorder of synovium and tendon, right hand +M67942 Unspecified disorder of synovium and tendon, left hand +M67949 Unspecified disorder of synovium and tendon, unspecified hand +M67951 Unspecified disorder of synovium and tendon, right thigh +M67952 Unspecified disorder of synovium and tendon, left thigh +M67959 Unspecified disorder of synovium and tendon, unspecified thigh +M67961 Unspecified disorder of synovium and tendon, right lower leg +M67962 Unspecified disorder of synovium and tendon, left lower leg +M67969 Unspecified disorder of synovium and tendon, unspecified lower leg +M67971 Unspecified disorder of synovium and tendon, right ankle and foot +M67972 Unspecified disorder of synovium and tendon, left ankle and foot +M67979 Unspecified disorder of synovium and tendon, unspecified ankle and foot +M6798 Unspecified disorder of synovium and tendon, other site +M6799 Unspecified disorder of synovium and tendon, multiple sites +M70031 Crepitant synovitis (acute) (chronic), right wrist +M70032 Crepitant synovitis (acute) (chronic), left wrist +M70039 Crepitant synovitis (acute) (chronic), unspecified wrist +M70041 Crepitant synovitis (acute) (chronic), right hand +M70042 Crepitant synovitis (acute) (chronic), left hand +M70049 Crepitant synovitis (acute) (chronic), unspecified hand +M7010 Bursitis, unspecified hand +M7011 Bursitis, right hand +M7012 Bursitis, left hand +M7020 Olecranon bursitis, unspecified elbow +M7021 Olecranon bursitis, right elbow +M7022 Olecranon bursitis, left elbow +M7030 Other bursitis of elbow, unspecified elbow +M7031 Other bursitis of elbow, right elbow +M7032 Other bursitis of elbow, left elbow +M7040 Prepatellar bursitis, unspecified knee +M7041 Prepatellar bursitis, right knee +M7042 Prepatellar bursitis, left knee +M7050 Other bursitis of knee, unspecified knee +M7051 Other bursitis of knee, right knee +M7052 Other bursitis of knee, left knee +M7060 Trochanteric bursitis, unspecified hip +M7061 Trochanteric bursitis, right hip +M7062 Trochanteric bursitis, left hip +M7070 Other bursitis of hip, unspecified hip +M7071 Other bursitis of hip, right hip +M7072 Other bursitis of hip, left hip +M7080 Other soft tissue disorders related to use, overuse and pressure of unspecified site +M70811 Other soft tissue disorders related to use, overuse and pressure, right shoulder +M70812 Other soft tissue disorders related to use, overuse and pressure, left shoulder +M70819 Other soft tissue disorders related to use, overuse and pressure, unspecified shoulder +M70821 Other soft tissue disorders related to use, overuse and pressure, right upper arm +M70822 Other soft tissue disorders related to use, overuse and pressure, left upper arm +M70829 Other soft tissue disorders related to use, overuse and pressure, unspecified upper arms +M70831 Other soft tissue disorders related to use, overuse and pressure, right forearm +M70832 Other soft tissue disorders related to use, overuse and pressure, left forearm +M70839 Other soft tissue disorders related to use, overuse and pressure, unspecified forearm +M70841 Other soft tissue disorders related to use, overuse and pressure, right hand +M70842 Other soft tissue disorders related to use, overuse and pressure, left hand +M70849 Other soft tissue disorders related to use, overuse and pressure, unspecified hand +M70851 Other soft tissue disorders related to use, overuse and pressure, right thigh +M70852 Other soft tissue disorders related to use, overuse and pressure, left thigh +M70859 Other soft tissue disorders related to use, overuse and pressure, unspecified thigh +M70861 Other soft tissue disorders related to use, overuse and pressure, right lower leg +M70862 Other soft tissue disorders related to use, overuse and pressure, left lower leg +M70869 Other soft tissue disorders related to use, overuse and pressure, unspecified leg +M70871 Other soft tissue disorders related to use, overuse and pressure, right ankle and foot +M70872 Other soft tissue disorders related to use, overuse and pressure, left ankle and foot +M70879 Other soft tissue disorders related to use, overuse and pressure, unspecified ankle and foot +M7088 Other soft tissue disorders related to use, overuse and pressure other site +M7089 Other soft tissue disorders related to use, overuse and pressure multiple sites +M7090 Unspecified soft tissue disorder related to use, overuse and pressure of unspecified site +M70911 Unspecified soft tissue disorder related to use, overuse and pressure, right shoulder +M70912 Unspecified soft tissue disorder related to use, overuse and pressure, left shoulder +M70919 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified shoulder +M70921 Unspecified soft tissue disorder related to use, overuse and pressure, right upper arm +M70922 Unspecified soft tissue disorder related to use, overuse and pressure, left upper arm +M70929 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified upper arm +M70931 Unspecified soft tissue disorder related to use, overuse and pressure, right forearm +M70932 Unspecified soft tissue disorder related to use, overuse and pressure, left forearm +M70939 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified forearm +M70941 Unspecified soft tissue disorder related to use, overuse and pressure, right hand +M70942 Unspecified soft tissue disorder related to use, overuse and pressure, left hand +M70949 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified hand +M70951 Unspecified soft tissue disorder related to use, overuse and pressure, right thigh +M70952 Unspecified soft tissue disorder related to use, overuse and pressure, left thigh +M70959 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified thigh +M70961 Unspecified soft tissue disorder related to use, overuse and pressure, right lower leg +M70962 Unspecified soft tissue disorder related to use, overuse and pressure, left lower leg +M70969 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified lower leg +M70971 Unspecified soft tissue disorder related to use, overuse and pressure, right ankle and foot +M70972 Unspecified soft tissue disorder related to use, overuse and pressure, left ankle and foot +M70979 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified ankle and foot +M7098 Unspecified soft tissue disorder related to use, overuse and pressure other +M7099 Unspecified soft tissue disorder related to use, overuse and pressure multiple sites +M7100 Abscess of bursa, unspecified site +M71011 Abscess of bursa, right shoulder +M71012 Abscess of bursa, left shoulder +M71019 Abscess of bursa, unspecified shoulder +M71021 Abscess of bursa, right elbow +M71022 Abscess of bursa, left elbow +M71029 Abscess of bursa, unspecified elbow +M71031 Abscess of bursa, right wrist +M71032 Abscess of bursa, left wrist +M71039 Abscess of bursa, unspecified wrist +M71041 Abscess of bursa, right hand +M71042 Abscess of bursa, left hand +M71049 Abscess of bursa, unspecified hand +M71051 Abscess of bursa, right hip +M71052 Abscess of bursa, left hip +M71059 Abscess of bursa, unspecified hip +M71061 Abscess of bursa, right knee +M71062 Abscess of bursa, left knee +M71069 Abscess of bursa, unspecified knee +M71071 Abscess of bursa, right ankle and foot +M71072 Abscess of bursa, left ankle and foot +M71079 Abscess of bursa, unspecified ankle and foot +M7108 Abscess of bursa, other site +M7109 Abscess of bursa, multiple sites +M7110 Other infective bursitis, unspecified site +M71111 Other infective bursitis, right shoulder +M71112 Other infective bursitis, left shoulder +M71119 Other infective bursitis, unspecified shoulder +M71121 Other infective bursitis, right elbow +M71122 Other infective bursitis, left elbow +M71129 Other infective bursitis, unspecified elbow +M71131 Other infective bursitis, right wrist +M71132 Other infective bursitis, left wrist +M71139 Other infective bursitis, unspecified wrist +M71141 Other infective bursitis, right hand +M71142 Other infective bursitis, left hand +M71149 Other infective bursitis, unspecified hand +M71151 Other infective bursitis, right hip +M71152 Other infective bursitis, left hip +M71159 Other infective bursitis, unspecified hip +M71161 Other infective bursitis, right knee +M71162 Other infective bursitis, left knee +M71169 Other infective bursitis, unspecified knee +M71171 Other infective bursitis, right ankle and foot +M71172 Other infective bursitis, left ankle and foot +M71179 Other infective bursitis, unspecified ankle and foot +M7118 Other infective bursitis, other site +M7119 Other infective bursitis, multiple sites +M7120 Synovial cyst of popliteal space [Baker], unspecified knee +M7121 Synovial cyst of popliteal space [Baker], right knee +M7122 Synovial cyst of popliteal space [Baker], left knee +M7130 Other bursal cyst, unspecified site +M71311 Other bursal cyst, right shoulder +M71312 Other bursal cyst, left shoulder +M71319 Other bursal cyst, unspecified shoulder +M71321 Other bursal cyst, right elbow +M71322 Other bursal cyst, left elbow +M71329 Other bursal cyst, unspecified elbow +M71331 Other bursal cyst, right wrist +M71332 Other bursal cyst, left wrist +M71339 Other bursal cyst, unspecified wrist +M71341 Other bursal cyst, right hand +M71342 Other bursal cyst, left hand +M71349 Other bursal cyst, unspecified hand +M71351 Other bursal cyst, right hip +M71352 Other bursal cyst, left hip +M71359 Other bursal cyst, unspecified hip +M71371 Other bursal cyst, right ankle and foot +M71372 Other bursal cyst, left ankle and foot +M71379 Other bursal cyst, unspecified ankle and foot +M7138 Other bursal cyst, other site +M7139 Other bursal cyst, multiple sites +M7140 Calcium deposit in bursa, unspecified site +M71421 Calcium deposit in bursa, right elbow +M71422 Calcium deposit in bursa, left elbow +M71429 Calcium deposit in bursa, unspecified elbow +M71431 Calcium deposit in bursa, right wrist +M71432 Calcium deposit in bursa, left wrist +M71439 Calcium deposit in bursa, unspecified wrist +M71441 Calcium deposit in bursa, right hand +M71442 Calcium deposit in bursa, left hand +M71449 Calcium deposit in bursa, unspecified hand +M71451 Calcium deposit in bursa, right hip +M71452 Calcium deposit in bursa, left hip +M71459 Calcium deposit in bursa, unspecified hip +M71461 Calcium deposit in bursa, right knee +M71462 Calcium deposit in bursa, left knee +M71469 Calcium deposit in bursa, unspecified knee +M71471 Calcium deposit in bursa, right ankle and foot +M71472 Calcium deposit in bursa, left ankle and foot +M71479 Calcium deposit in bursa, unspecified ankle and foot +M7148 Calcium deposit in bursa, other site +M7149 Calcium deposit in bursa, multiple sites +M7150 Other bursitis, not elsewhere classified, unspecified site +M71521 Other bursitis, not elsewhere classified, right elbow +M71522 Other bursitis, not elsewhere classified, left elbow +M71529 Other bursitis, not elsewhere classified, unspecified elbow +M71531 Other bursitis, not elsewhere classified, right wrist +M71532 Other bursitis, not elsewhere classified, left wrist +M71539 Other bursitis, not elsewhere classified, unspecified wrist +M71541 Other bursitis, not elsewhere classified, right hand +M71542 Other bursitis, not elsewhere classified, left hand +M71549 Other bursitis, not elsewhere classified, unspecified hand +M71551 Other bursitis, not elsewhere classified, right hip +M71552 Other bursitis, not elsewhere classified, left hip +M71559 Other bursitis, not elsewhere classified, unspecified hip +M71561 Other bursitis, not elsewhere classified, right knee +M71562 Other bursitis, not elsewhere classified, left knee +M71569 Other bursitis, not elsewhere classified, unspecified knee +M71571 Other bursitis, not elsewhere classified, right ankle and foot +M71572 Other bursitis, not elsewhere classified, left ankle and foot +M71579 Other bursitis, not elsewhere classified, unspecified ankle and foot +M7158 Other bursitis, not elsewhere classified, other site +M7180 Other specified bursopathies, unspecified site +M71811 Other specified bursopathies, right shoulder +M71812 Other specified bursopathies, left shoulder +M71819 Other specified bursopathies, unspecified shoulder +M71821 Other specified bursopathies, right elbow +M71822 Other specified bursopathies, left elbow +M71829 Other specified bursopathies, unspecified elbow +M71831 Other specified bursopathies, right wrist +M71832 Other specified bursopathies, left wrist +M71839 Other specified bursopathies, unspecified wrist +M71841 Other specified bursopathies, right hand +M71842 Other specified bursopathies, left hand +M71849 Other specified bursopathies, unspecified hand +M71851 Other specified bursopathies, right hip +M71852 Other specified bursopathies, left hip +M71859 Other specified bursopathies, unspecified hip +M71861 Other specified bursopathies, right knee +M71862 Other specified bursopathies, left knee +M71869 Other specified bursopathies, unspecified knee +M71871 Other specified bursopathies, right ankle and foot +M71872 Other specified bursopathies, left ankle and foot +M71879 Other specified bursopathies, unspecified ankle and foot +M7188 Other specified bursopathies, other site +M7189 Other specified bursopathies, multiple sites +M719 Bursopathy, unspecified +M720 Palmar fascial fibromatosis [Dupuytren] +M721 Knuckle pads +M722 Plantar fascial fibromatosis +M724 Pseudosarcomatous fibromatosis +M726 Necrotizing fasciitis +M728 Other fibroblastic disorders +M729 Fibroblastic disorder, unspecified +M7500 Adhesive capsulitis of unspecified shoulder +M7501 Adhesive capsulitis of right shoulder +M7502 Adhesive capsulitis of left shoulder +M75100 Unspecified rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic +M75101 Unspecified rotator cuff tear or rupture of right shoulder, not specified as traumatic +M75102 Unspecified rotator cuff tear or rupture of left shoulder, not specified as traumatic +M75110 Incomplete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic +M75111 Incomplete rotator cuff tear or rupture of right shoulder, not specified as traumatic +M75112 Incomplete rotator cuff tear or rupture of left shoulder, not specified as traumatic +M75120 Complete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic +M75121 Complete rotator cuff tear or rupture of right shoulder, not specified as traumatic +M75122 Complete rotator cuff tear or rupture of left shoulder, not specified as traumatic +M7520 Bicipital tendinitis, unspecified shoulder +M7521 Bicipital tendinitis, right shoulder +M7522 Bicipital tendinitis, left shoulder +M7530 Calcific tendinitis of unspecified shoulder +M7531 Calcific tendinitis of right shoulder +M7532 Calcific tendinitis of left shoulder +M7540 Impingement syndrome of unspecified shoulder +M7541 Impingement syndrome of right shoulder +M7542 Impingement syndrome of left shoulder +M7550 Bursitis of unspecified shoulder +M7551 Bursitis of right shoulder +M7552 Bursitis of left shoulder +M7580 Other shoulder lesions, unspecified shoulder +M7581 Other shoulder lesions, right shoulder +M7582 Other shoulder lesions, left shoulder +M7590 Shoulder lesion, unspecified, unspecified shoulder +M7591 Shoulder lesion, unspecified, right shoulder +M7592 Shoulder lesion, unspecified, left shoulder +M7600 Gluteal tendinitis, unspecified hip +M7601 Gluteal tendinitis, right hip +M7602 Gluteal tendinitis, left hip +M7610 Psoas tendinitis, unspecified hip +M7611 Psoas tendinitis, right hip +M7612 Psoas tendinitis, left hip +M7620 Iliac crest spur, unspecified hip +M7621 Iliac crest spur, right hip +M7622 Iliac crest spur, left hip +M7630 Iliotibial band syndrome, unspecified leg +M7631 Iliotibial band syndrome, right leg +M7632 Iliotibial band syndrome, left leg +M7640 Tibial collateral bursitis [Pellegrini-Stieda], unspecified leg +M7641 Tibial collateral bursitis [Pellegrini-Stieda], right leg +M7642 Tibial collateral bursitis [Pellegrini-Stieda], left leg +M7650 Patellar tendinitis, unspecified knee +M7651 Patellar tendinitis, right knee +M7652 Patellar tendinitis, left knee +M7660 Achilles tendinitis, unspecified leg +M7661 Achilles tendinitis, right leg +M7662 Achilles tendinitis, left leg +M7670 Peroneal tendinitis, unspecified leg +M7671 Peroneal tendinitis, right leg +M7672 Peroneal tendinitis, left leg +M76811 Anterior tibial syndrome, right leg +M76812 Anterior tibial syndrome, left leg +M76819 Anterior tibial syndrome, unspecified leg +M76821 Posterior tibial tendinitis, right leg +M76822 Posterior tibial tendinitis, left leg +M76829 Posterior tibial tendinitis, unspecified leg +M76891 Other specified enthesopathies of right lower limb, excluding foot +M76892 Other specified enthesopathies of left lower limb, excluding foot +M76899 Other specified enthesopathies of unspecified lower limb, excluding foot +M769 Unspecified enthesopathy, lower limb, excluding foot +M7700 Medial epicondylitis, unspecified elbow +M7701 Medial epicondylitis, right elbow +M7702 Medial epicondylitis, left elbow +M7710 Lateral epicondylitis, unspecified elbow +M7711 Lateral epicondylitis, right elbow +M7712 Lateral epicondylitis, left elbow +M7720 Periarthritis, unspecified wrist +M7721 Periarthritis, right wrist +M7722 Periarthritis, left wrist +M7730 Calcaneal spur, unspecified foot +M7731 Calcaneal spur, right foot +M7732 Calcaneal spur, left foot +M7740 Metatarsalgia, unspecified foot +M7741 Metatarsalgia, right foot +M7742 Metatarsalgia, left foot +M7750 Other enthesopathy of unspecified foot and ankle +M7751 Other enthesopathy of right foot and ankle +M7752 Other enthesopathy of left foot and ankle +M778 Other enthesopathies, not elsewhere classified +M779 Enthesopathy, unspecified +M790 Rheumatism, unspecified +M791 Myalgia +M7910 Myalgia, unspecified site +M7911 Myalgia of mastication muscle +M7912 Myalgia of auxiliary muscles, head and neck +M7918 Myalgia, other site +M792 Neuralgia and neuritis, unspecified +M793 Panniculitis, unspecified +M794 Hypertrophy of (infrapatellar) fat pad +M795 Residual foreign body in soft tissue +M79601 Pain in right arm +M79602 Pain in left arm +M79603 Pain in arm, unspecified +M79604 Pain in right leg +M79605 Pain in left leg +M79606 Pain in leg, unspecified +M79609 Pain in unspecified limb +M79621 Pain in right upper arm +M79622 Pain in left upper arm +M79629 Pain in unspecified upper arm +M79631 Pain in right forearm +M79632 Pain in left forearm +M79639 Pain in unspecified forearm +M79641 Pain in right hand +M79642 Pain in left hand +M79643 Pain in unspecified hand +M79644 Pain in right finger(s) +M79645 Pain in left finger(s) +M79646 Pain in unspecified finger(s) +M79651 Pain in right thigh +M79652 Pain in left thigh +M79659 Pain in unspecified thigh +M79661 Pain in right lower leg +M79662 Pain in left lower leg +M79669 Pain in unspecified lower leg +M79671 Pain in right foot +M79672 Pain in left foot +M79673 Pain in unspecified foot +M79674 Pain in right toe(s) +M79675 Pain in left toe(s) +M79676 Pain in unspecified toe(s) +M797 Fibromyalgia +M7981 Nontraumatic hematoma of soft tissue +M7989 Other specified soft tissue disorders +M799 Soft tissue disorder, unspecified +M79A11 Nontraumatic compartment syndrome of right upper extremity +M79A12 Nontraumatic compartment syndrome of left upper extremity +M79A19 Nontraumatic compartment syndrome of unspecified upper extremity +M79A21 Nontraumatic compartment syndrome of right lower extremity +M79A22 Nontraumatic compartment syndrome of left lower extremity +M79A29 Nontraumatic compartment syndrome of unspecified lower extremity +M79A3 Nontraumatic compartment syndrome of abdomen +M79A9 Nontraumatic compartment syndrome of other sites +M8000XA Age-related osteoporosis with current pathological fracture, unspecified site, initial encounter for fracture +M8000XD Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with routine healing +M8000XG Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing +M8000XK Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with nonunion +M8000XP Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with malunion +M8000XS Age-related osteoporosis with current pathological fracture, unspecified site, sequela +M80011A Age-related osteoporosis with current pathological fracture, right shoulder, initial encounter for fracture +M80011D Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with routine healing +M80011G Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing +M80011K Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with nonunion +M80011P Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with malunion +M80011S Age-related osteoporosis with current pathological fracture, right shoulder, sequela +M80012A Age-related osteoporosis with current pathological fracture, left shoulder, initial encounter for fracture +M80012D Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with routine healing +M80012G Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing +M80012K Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with nonunion +M80012P Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with malunion +M80012S Age-related osteoporosis with current pathological fracture, left shoulder, sequela +M80019A Age-related osteoporosis with current pathological fracture, unspecified shoulder, initial encounter for fracture +M80019D Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing +M80019G Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing +M80019K Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion +M80019P Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion +M80019S Age-related osteoporosis with current pathological fracture, unspecified shoulder, sequela +M80021A Age-related osteoporosis with current pathological fracture, right humerus, initial encounter for fracture +M80021D Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with routine healing +M80021G Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with delayed healing +M80021K Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with nonunion +M80021P Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with malunion +M80021S Age-related osteoporosis with current pathological fracture, right humerus, sequela +M80022A Age-related osteoporosis with current pathological fracture, left humerus, initial encounter for fracture +M80022D Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with routine healing +M80022G Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with delayed healing +M80022K Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with nonunion +M80022P Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with malunion +M80022S Age-related osteoporosis with current pathological fracture, left humerus, sequela +M80029A Age-related osteoporosis with current pathological fracture, unspecified humerus, initial encounter for fracture +M80029D Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing +M80029G Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing +M80029K Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion +M80029P Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion +M80029S Age-related osteoporosis with current pathological fracture, unspecified humerus, sequela +M80031A Age-related osteoporosis with current pathological fracture, right forearm, initial encounter for fracture +M80031D Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with routine healing +M80031G Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with delayed healing +M80031K Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with nonunion +M80031P Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with malunion +M80031S Age-related osteoporosis with current pathological fracture, right forearm, sequela +M80032A Age-related osteoporosis with current pathological fracture, left forearm, initial encounter for fracture +M80032D Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with routine healing +M80032G Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with delayed healing +M80032K Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with nonunion +M80032P Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with malunion +M80032S Age-related osteoporosis with current pathological fracture, left forearm, sequela +M80039A Age-related osteoporosis with current pathological fracture, unspecified forearm, initial encounter for fracture +M80039D Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with routine healing +M80039G Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with delayed healing +M80039K Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with nonunion +M80039P Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with malunion +M80039S Age-related osteoporosis with current pathological fracture, unspecified forearm, sequela +M80041A Age-related osteoporosis with current pathological fracture, right hand, initial encounter for fracture +M80041D Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with routine healing +M80041G Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with delayed healing +M80041K Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with nonunion +M80041P Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with malunion +M80041S Age-related osteoporosis with current pathological fracture, right hand, sequela +M80042A Age-related osteoporosis with current pathological fracture, left hand, initial encounter for fracture +M80042D Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with routine healing +M80042G Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with delayed healing +M80042K Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with nonunion +M80042P Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with malunion +M80042S Age-related osteoporosis with current pathological fracture, left hand, sequela +M80049A Age-related osteoporosis with current pathological fracture, unspecified hand, initial encounter for fracture +M80049D Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing +M80049G Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing +M80049K Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion +M80049P Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with malunion +M80049S Age-related osteoporosis with current pathological fracture, unspecified hand, sequela +M80051A Age-related osteoporosis with current pathological fracture, right femur, initial encounter for fracture +M80051D Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with routine healing +M80051G Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with delayed healing +M80051K Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with nonunion +M80051P Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with malunion +M80051S Age-related osteoporosis with current pathological fracture, right femur, sequela +M80052A Age-related osteoporosis with current pathological fracture, left femur, initial encounter for fracture +M80052D Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with routine healing +M80052G Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with delayed healing +M80052K Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with nonunion +M80052P Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with malunion +M80052S Age-related osteoporosis with current pathological fracture, left femur, sequela +M80059A Age-related osteoporosis with current pathological fracture, unspecified femur, initial encounter for fracture +M80059D Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing +M80059G Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing +M80059K Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion +M80059P Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with malunion +M80059S Age-related osteoporosis with current pathological fracture, unspecified femur, sequela +M80061A Age-related osteoporosis with current pathological fracture, right lower leg, initial encounter for fracture +M80061D Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with routine healing +M80061G Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with delayed healing +M80061K Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with nonunion +M80061P Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with malunion +M80061S Age-related osteoporosis with current pathological fracture, right lower leg, sequela +M80062A Age-related osteoporosis with current pathological fracture, left lower leg, initial encounter for fracture +M80062D Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with routine healing +M80062G Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with delayed healing +M80062K Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with nonunion +M80062P Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with malunion +M80062S Age-related osteoporosis with current pathological fracture, left lower leg, sequela +M80069A Age-related osteoporosis with current pathological fracture, unspecified lower leg, initial encounter for fracture +M80069D Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with routine healing +M80069G Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with delayed healing +M80069K Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with nonunion +M80069P Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with malunion +M80069S Age-related osteoporosis with current pathological fracture, unspecified lower leg, sequela +M80071A Age-related osteoporosis with current pathological fracture, right ankle and foot, initial encounter for fracture +M80071D Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with routine healing +M80071G Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with delayed healing +M80071K Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with nonunion +M80071P Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with malunion +M80071S Age-related osteoporosis with current pathological fracture, right ankle and foot, sequela +M80072A Age-related osteoporosis with current pathological fracture, left ankle and foot, initial encounter for fracture +M80072D Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with routine healing +M80072G Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with delayed healing +M80072K Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with nonunion +M80072P Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with malunion +M80072S Age-related osteoporosis with current pathological fracture, left ankle and foot, sequela +M80079A Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, initial encounter for fracture +M80079D Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with routine healing +M80079G Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with delayed healing +M80079K Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with nonunion +M80079P Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with malunion +M80079S Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, sequela +M8008XA Age-related osteoporosis with current pathological fracture, vertebra(e), initial encounter for fracture +M8008XD Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with routine healing +M8008XG Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with delayed healing +M8008XK Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with nonunion +M8008XP Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with malunion +M8008XS Age-related osteoporosis with current pathological fracture, vertebra(e), sequela +M8080XA Other osteoporosis with current pathological fracture, unspecified site, initial encounter for fracture +M8080XD Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with routine healing +M8080XG Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing +M8080XK Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with nonunion +M8080XP Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with malunion +M8080XS Other osteoporosis with current pathological fracture, unspecified site, sequela +M80811A Other osteoporosis with current pathological fracture, right shoulder, initial encounter for fracture +M80811D Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with routine healing +M80811G Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing +M80811K Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with nonunion +M80811P Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with malunion +M80811S Other osteoporosis with current pathological fracture, right shoulder, sequela +M80812A Other osteoporosis with current pathological fracture, left shoulder, initial encounter for fracture +M80812D Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with routine healing +M80812G Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing +M80812K Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with nonunion +M80812P Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with malunion +M80812S Other osteoporosis with current pathological fracture, left shoulder, sequela +M80819A Other osteoporosis with current pathological fracture, unspecified shoulder, initial encounter for fracture +M80819D Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing +M80819G Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing +M80819K Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion +M80819P Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion +M80819S Other osteoporosis with current pathological fracture, unspecified shoulder, sequela +M80821A Other osteoporosis with current pathological fracture, right humerus, initial encounter for fracture +M80821D Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with routine healing +M80821G Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with delayed healing +M80821K Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with nonunion +M80821P Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with malunion +M80821S Other osteoporosis with current pathological fracture, right humerus, sequela +M80822A Other osteoporosis with current pathological fracture, left humerus, initial encounter for fracture +M80822D Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with routine healing +M80822G Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with delayed healing +M80822K Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with nonunion +M80822P Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with malunion +M80822S Other osteoporosis with current pathological fracture, left humerus, sequela +M80829A Other osteoporosis with current pathological fracture, unspecified humerus, initial encounter for fracture +M80829D Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing +M80829G Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing +M80829K Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion +M80829P Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion +M80829S Other osteoporosis with current pathological fracture, unspecified humerus, sequela +M80831A Other osteoporosis with current pathological fracture, right forearm, initial encounter for fracture +M80831D Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with routine healing +M80831G Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with delayed healing +M80831K Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with nonunion +M80831P Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with malunion +M80831S Other osteoporosis with current pathological fracture, right forearm, sequela +M80832A Other osteoporosis with current pathological fracture, left forearm, initial encounter for fracture +M80832D Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with routine healing +M80832G Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with delayed healing +M80832K Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with nonunion +M80832P Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with malunion +M80832S Other osteoporosis with current pathological fracture, left forearm, sequela +M80839A Other osteoporosis with current pathological fracture, unspecified forearm, initial encounter for fracture +M80839D Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with routine healing +M80839G Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with delayed healing +M80839K Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with nonunion +M80839P Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with malunion +M80839S Other osteoporosis with current pathological fracture, unspecified forearm, sequela +M80841A Other osteoporosis with current pathological fracture, right hand, initial encounter for fracture +M80841D Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with routine healing +M80841G Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with delayed healing +M80841K Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with nonunion +M80841P Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with malunion +M80841S Other osteoporosis with current pathological fracture, right hand, sequela +M80842A Other osteoporosis with current pathological fracture, left hand, initial encounter for fracture +M80842D Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with routine healing +M80842G Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with delayed healing +M80842K Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with nonunion +M80842P Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with malunion +M80842S Other osteoporosis with current pathological fracture, left hand, sequela +M80849A Other osteoporosis with current pathological fracture, unspecified hand, initial encounter for fracture +M80849D Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing +M80849G Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing +M80849K Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion +M80849P Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with malunion +M80849S Other osteoporosis with current pathological fracture, unspecified hand, sequela +M80851A Other osteoporosis with current pathological fracture, right femur, initial encounter for fracture +M80851D Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with routine healing +M80851G Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with delayed healing +M80851K Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with nonunion +M80851P Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with malunion +M80851S Other osteoporosis with current pathological fracture, right femur, sequela +M80852A Other osteoporosis with current pathological fracture, left femur, initial encounter for fracture +M80852D Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with routine healing +M80852G Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with delayed healing +M80852K Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with nonunion +M80852P Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with malunion +M80852S Other osteoporosis with current pathological fracture, left femur, sequela +M80859A Other osteoporosis with current pathological fracture, unspecified femur, initial encounter for fracture +M80859D Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing +M80859G Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing +M80859K Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion +M80859P Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with malunion +M80859S Other osteoporosis with current pathological fracture, unspecified femur, sequela +M80861A Other osteoporosis with current pathological fracture, right lower leg, initial encounter for fracture +M80861D Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with routine healing +M80861G Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with delayed healing +M80861K Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with nonunion +M80861P Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with malunion +M80861S Other osteoporosis with current pathological fracture, right lower leg, sequela +M80862A Other osteoporosis with current pathological fracture, left lower leg, initial encounter for fracture +M80862D Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with routine healing +M80862G Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with delayed healing +M80862K Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with nonunion +M80862P Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with malunion +M80862S Other osteoporosis with current pathological fracture, left lower leg, sequela +M80869A Other osteoporosis with current pathological fracture, unspecified lower leg, initial encounter for fracture +M80869D Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with routine healing +M80869G Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with delayed healing +M80869K Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with nonunion +M80869P Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with malunion +M80869S Other osteoporosis with current pathological fracture, unspecified lower leg, sequela +M80871A Other osteoporosis with current pathological fracture, right ankle and foot, initial encounter for fracture +M80871D Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with routine healing +M80871G Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with delayed healing +M80871K Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with nonunion +M80871P Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with malunion +M80871S Other osteoporosis with current pathological fracture, right ankle and foot, sequela +M80872A Other osteoporosis with current pathological fracture, left ankle and foot, initial encounter for fracture +M80872D Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with routine healing +M80872G Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with delayed healing +M80872K Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with nonunion +M80872P Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with malunion +M80872S Other osteoporosis with current pathological fracture, left ankle and foot, sequela +M80879A Other osteoporosis with current pathological fracture, unspecified ankle and foot, initial encounter for fracture +M80879D Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with routine healing +M80879G Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with delayed healing +M80879K Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with nonunion +M80879P Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with malunion +M80879S Other osteoporosis with current pathological fracture, unspecified ankle and foot, sequela +M8088XA Other osteoporosis with current pathological fracture, vertebra(e), initial encounter for fracture +M8088XD Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with routine healing +M8088XG Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with delayed healing +M8088XK Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with nonunion +M8088XP Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with malunion +M8088XS Other osteoporosis with current pathological fracture, vertebra(e), sequela +M810 Age-related osteoporosis without current pathological fracture +M816 Localized osteoporosis [Lequesne] +M818 Other osteoporosis without current pathological fracture +M830 Puerperal osteomalacia +M831 Senile osteomalacia +M832 Adult osteomalacia due to malabsorption +M833 Adult osteomalacia due to malnutrition +M834 Aluminum bone disease +M835 Other drug-induced osteomalacia in adults +M838 Other adult osteomalacia +M839 Adult osteomalacia, unspecified +M8430XA Stress fracture, unspecified site, initial encounter for fracture +M8430XD Stress fracture, unspecified site, subsequent encounter for fracture with routine healing +M8430XG Stress fracture, unspecified site, subsequent encounter for fracture with delayed healing +M8430XK Stress fracture, unspecified site, subsequent encounter for fracture with nonunion +M8430XP Stress fracture, unspecified site, subsequent encounter for fracture with malunion +M8430XS Stress fracture, unspecified site, sequela +M84311A Stress fracture, right shoulder, initial encounter for fracture +M84311D Stress fracture, right shoulder, subsequent encounter for fracture with routine healing +M84311G Stress fracture, right shoulder, subsequent encounter for fracture with delayed healing +M84311K Stress fracture, right shoulder, subsequent encounter for fracture with nonunion +M84311P Stress fracture, right shoulder, subsequent encounter for fracture with malunion +M84311S Stress fracture, right shoulder, sequela +M84312A Stress fracture, left shoulder, initial encounter for fracture +M84312D Stress fracture, left shoulder, subsequent encounter for fracture with routine healing +M84312G Stress fracture, left shoulder, subsequent encounter for fracture with delayed healing +M84312K Stress fracture, left shoulder, subsequent encounter for fracture with nonunion +M84312P Stress fracture, left shoulder, subsequent encounter for fracture with malunion +M84312S Stress fracture, left shoulder, sequela +M84319A Stress fracture, unspecified shoulder, initial encounter for fracture +M84319D Stress fracture, unspecified shoulder, subsequent encounter for fracture with routine healing +M84319G Stress fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing +M84319K Stress fracture, unspecified shoulder, subsequent encounter for fracture with nonunion +M84319P Stress fracture, unspecified shoulder, subsequent encounter for fracture with malunion +M84319S Stress fracture, unspecified shoulder, sequela +M84321A Stress fracture, right humerus, initial encounter for fracture +M84321D Stress fracture, right humerus, subsequent encounter for fracture with routine healing +M84321G Stress fracture, right humerus, subsequent encounter for fracture with delayed healing +M84321K Stress fracture, right humerus, subsequent encounter for fracture with nonunion +M84321P Stress fracture, right humerus, subsequent encounter for fracture with malunion +M84321S Stress fracture, right humerus, sequela +M84322A Stress fracture, left humerus, initial encounter for fracture +M84322D Stress fracture, left humerus, subsequent encounter for fracture with routine healing +M84322G Stress fracture, left humerus, subsequent encounter for fracture with delayed healing +M84322K Stress fracture, left humerus, subsequent encounter for fracture with nonunion +M84322P Stress fracture, left humerus, subsequent encounter for fracture with malunion +M84322S Stress fracture, left humerus, sequela +M84329A Stress fracture, unspecified humerus, initial encounter for fracture +M84329D Stress fracture, unspecified humerus, subsequent encounter for fracture with routine healing +M84329G Stress fracture, unspecified humerus, subsequent encounter for fracture with delayed healing +M84329K Stress fracture, unspecified humerus, subsequent encounter for fracture with nonunion +M84329P Stress fracture, unspecified humerus, subsequent encounter for fracture with malunion +M84329S Stress fracture, unspecified humerus, sequela +M84331A Stress fracture, right ulna, initial encounter for fracture +M84331D Stress fracture, right ulna, subsequent encounter for fracture with routine healing +M84331G Stress fracture, right ulna, subsequent encounter for fracture with delayed healing +M84331K Stress fracture, right ulna, subsequent encounter for fracture with nonunion +M84331P Stress fracture, right ulna, subsequent encounter for fracture with malunion +M84331S Stress fracture, right ulna, sequela +M84332A Stress fracture, left ulna, initial encounter for fracture +M84332D Stress fracture, left ulna, subsequent encounter for fracture with routine healing +M84332G Stress fracture, left ulna, subsequent encounter for fracture with delayed healing +M84332K Stress fracture, left ulna, subsequent encounter for fracture with nonunion +M84332P Stress fracture, left ulna, subsequent encounter for fracture with malunion +M84332S Stress fracture, left ulna, sequela +M84333A Stress fracture, right radius, initial encounter for fracture +M84333D Stress fracture, right radius, subsequent encounter for fracture with routine healing +M84333G Stress fracture, right radius, subsequent encounter for fracture with delayed healing +M84333K Stress fracture, right radius, subsequent encounter for fracture with nonunion +M84333P Stress fracture, right radius, subsequent encounter for fracture with malunion +M84333S Stress fracture, right radius, sequela +M84334A Stress fracture, left radius, initial encounter for fracture +M84334D Stress fracture, left radius, subsequent encounter for fracture with routine healing +M84334G Stress fracture, left radius, subsequent encounter for fracture with delayed healing +M84334K Stress fracture, left radius, subsequent encounter for fracture with nonunion +M84334P Stress fracture, left radius, subsequent encounter for fracture with malunion +M84334S Stress fracture, left radius, sequela +M84339A Stress fracture, unspecified ulna and radius, initial encounter for fracture +M84339D Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with routine healing +M84339G Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with delayed healing +M84339K Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion +M84339P Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion +M84339S Stress fracture, unspecified ulna and radius, sequela +M84341A Stress fracture, right hand, initial encounter for fracture +M84341D Stress fracture, right hand, subsequent encounter for fracture with routine healing +M84341G Stress fracture, right hand, subsequent encounter for fracture with delayed healing +M84341K Stress fracture, right hand, subsequent encounter for fracture with nonunion +M84341P Stress fracture, right hand, subsequent encounter for fracture with malunion +M84341S Stress fracture, right hand, sequela +M84342A Stress fracture, left hand, initial encounter for fracture +M84342D Stress fracture, left hand, subsequent encounter for fracture with routine healing +M84342G Stress fracture, left hand, subsequent encounter for fracture with delayed healing +M84342K Stress fracture, left hand, subsequent encounter for fracture with nonunion +M84342P Stress fracture, left hand, subsequent encounter for fracture with malunion +M84342S Stress fracture, left hand, sequela +M84343A Stress fracture, unspecified hand, initial encounter for fracture +M84343D Stress fracture, unspecified hand, subsequent encounter for fracture with routine healing +M84343G Stress fracture, unspecified hand, subsequent encounter for fracture with delayed healing +M84343K Stress fracture, unspecified hand, subsequent encounter for fracture with nonunion +M84343P Stress fracture, unspecified hand, subsequent encounter for fracture with malunion +M84343S Stress fracture, unspecified hand, sequela +M84344A Stress fracture, right finger(s), initial encounter for fracture +M84344D Stress fracture, right finger(s), subsequent encounter for fracture with routine healing +M84344G Stress fracture, right finger(s), subsequent encounter for fracture with delayed healing +M84344K Stress fracture, right finger(s), subsequent encounter for fracture with nonunion +M84344P Stress fracture, right finger(s), subsequent encounter for fracture with malunion +M84344S Stress fracture, right finger(s), sequela +M84345A Stress fracture, left finger(s), initial encounter for fracture +M84345D Stress fracture, left finger(s), subsequent encounter for fracture with routine healing +M84345G Stress fracture, left finger(s), subsequent encounter for fracture with delayed healing +M84345K Stress fracture, left finger(s), subsequent encounter for fracture with nonunion +M84345P Stress fracture, left finger(s), subsequent encounter for fracture with malunion +M84345S Stress fracture, left finger(s), sequela +M84346A Stress fracture, unspecified finger(s), initial encounter for fracture +M84346D Stress fracture, unspecified finger(s), subsequent encounter for fracture with routine healing +M84346G Stress fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing +M84346K Stress fracture, unspecified finger(s), subsequent encounter for fracture with nonunion +M84346P Stress fracture, unspecified finger(s), subsequent encounter for fracture with malunion +M84346S Stress fracture, unspecified finger(s), sequela +M84350A Stress fracture, pelvis, initial encounter for fracture +M84350D Stress fracture, pelvis, subsequent encounter for fracture with routine healing +M84350G Stress fracture, pelvis, subsequent encounter for fracture with delayed healing +M84350K Stress fracture, pelvis, subsequent encounter for fracture with nonunion +M84350P Stress fracture, pelvis, subsequent encounter for fracture with malunion +M84350S Stress fracture, pelvis, sequela +M84351A Stress fracture, right femur, initial encounter for fracture +M84351D Stress fracture, right femur, subsequent encounter for fracture with routine healing +M84351G Stress fracture, right femur, subsequent encounter for fracture with delayed healing +M84351K Stress fracture, right femur, subsequent encounter for fracture with nonunion +M84351P Stress fracture, right femur, subsequent encounter for fracture with malunion +M84351S Stress fracture, right femur, sequela +M84352A Stress fracture, left femur, initial encounter for fracture +M84352D Stress fracture, left femur, subsequent encounter for fracture with routine healing +M84352G Stress fracture, left femur, subsequent encounter for fracture with delayed healing +M84352K Stress fracture, left femur, subsequent encounter for fracture with nonunion +M84352P Stress fracture, left femur, subsequent encounter for fracture with malunion +M84352S Stress fracture, left femur, sequela +M84353A Stress fracture, unspecified femur, initial encounter for fracture +M84353D Stress fracture, unspecified femur, subsequent encounter for fracture with routine healing +M84353G Stress fracture, unspecified femur, subsequent encounter for fracture with delayed healing +M84353K Stress fracture, unspecified femur, subsequent encounter for fracture with nonunion +M84353P Stress fracture, unspecified femur, subsequent encounter for fracture with malunion +M84353S Stress fracture, unspecified femur, sequela +M84359A Stress fracture, hip, unspecified, initial encounter for fracture +M84359D Stress fracture, hip, unspecified, subsequent encounter for fracture with routine healing +M84359G Stress fracture, hip, unspecified, subsequent encounter for fracture with delayed healing +M84359K Stress fracture, hip, unspecified, subsequent encounter for fracture with nonunion +M84359P Stress fracture, hip, unspecified, subsequent encounter for fracture with malunion +M84359S Stress fracture, hip, unspecified, sequela +M84361A Stress fracture, right tibia, initial encounter for fracture +M84361D Stress fracture, right tibia, subsequent encounter for fracture with routine healing +M84361G Stress fracture, right tibia, subsequent encounter for fracture with delayed healing +M84361K Stress fracture, right tibia, subsequent encounter for fracture with nonunion +M84361P Stress fracture, right tibia, subsequent encounter for fracture with malunion +M84361S Stress fracture, right tibia, sequela +M84362A Stress fracture, left tibia, initial encounter for fracture +M84362D Stress fracture, left tibia, subsequent encounter for fracture with routine healing +M84362G Stress fracture, left tibia, subsequent encounter for fracture with delayed healing +M84362K Stress fracture, left tibia, subsequent encounter for fracture with nonunion +M84362P Stress fracture, left tibia, subsequent encounter for fracture with malunion +M84362S Stress fracture, left tibia, sequela +M84363A Stress fracture, right fibula, initial encounter for fracture +M84363D Stress fracture, right fibula, subsequent encounter for fracture with routine healing +M84363G Stress fracture, right fibula, subsequent encounter for fracture with delayed healing +M84363K Stress fracture, right fibula, subsequent encounter for fracture with nonunion +M84363P Stress fracture, right fibula, subsequent encounter for fracture with malunion +M84363S Stress fracture, right fibula, sequela +M84364A Stress fracture, left fibula, initial encounter for fracture +M84364D Stress fracture, left fibula, subsequent encounter for fracture with routine healing +M84364G Stress fracture, left fibula, subsequent encounter for fracture with delayed healing +M84364K Stress fracture, left fibula, subsequent encounter for fracture with nonunion +M84364P Stress fracture, left fibula, subsequent encounter for fracture with malunion +M84364S Stress fracture, left fibula, sequela +M84369A Stress fracture, unspecified tibia and fibula, initial encounter for fracture +M84369D Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with routine healing +M84369G Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing +M84369K Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion +M84369P Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion +M84369S Stress fracture, unspecified tibia and fibula, sequela +M84371A Stress fracture, right ankle, initial encounter for fracture +M84371D Stress fracture, right ankle, subsequent encounter for fracture with routine healing +M84371G Stress fracture, right ankle, subsequent encounter for fracture with delayed healing +M84371K Stress fracture, right ankle, subsequent encounter for fracture with nonunion +M84371P Stress fracture, right ankle, subsequent encounter for fracture with malunion +M84371S Stress fracture, right ankle, sequela +M84372A Stress fracture, left ankle, initial encounter for fracture +M84372D Stress fracture, left ankle, subsequent encounter for fracture with routine healing +M84372G Stress fracture, left ankle, subsequent encounter for fracture with delayed healing +M84372K Stress fracture, left ankle, subsequent encounter for fracture with nonunion +M84372P Stress fracture, left ankle, subsequent encounter for fracture with malunion +M84372S Stress fracture, left ankle, sequela +M84373A Stress fracture, unspecified ankle, initial encounter for fracture +M84373D Stress fracture, unspecified ankle, subsequent encounter for fracture with routine healing +M84373G Stress fracture, unspecified ankle, subsequent encounter for fracture with delayed healing +M84373K Stress fracture, unspecified ankle, subsequent encounter for fracture with nonunion +M84373P Stress fracture, unspecified ankle, subsequent encounter for fracture with malunion +M84373S Stress fracture, unspecified ankle, sequela +M84374A Stress fracture, right foot, initial encounter for fracture +M84374D Stress fracture, right foot, subsequent encounter for fracture with routine healing +M84374G Stress fracture, right foot, subsequent encounter for fracture with delayed healing +M84374K Stress fracture, right foot, subsequent encounter for fracture with nonunion +M84374P Stress fracture, right foot, subsequent encounter for fracture with malunion +M84374S Stress fracture, right foot, sequela +M84375A Stress fracture, left foot, initial encounter for fracture +M84375D Stress fracture, left foot, subsequent encounter for fracture with routine healing +M84375G Stress fracture, left foot, subsequent encounter for fracture with delayed healing +M84375K Stress fracture, left foot, subsequent encounter for fracture with nonunion +M84375P Stress fracture, left foot, subsequent encounter for fracture with malunion +M84375S Stress fracture, left foot, sequela +M84376A Stress fracture, unspecified foot, initial encounter for fracture +M84376D Stress fracture, unspecified foot, subsequent encounter for fracture with routine healing +M84376G Stress fracture, unspecified foot, subsequent encounter for fracture with delayed healing +M84376K Stress fracture, unspecified foot, subsequent encounter for fracture with nonunion +M84376P Stress fracture, unspecified foot, subsequent encounter for fracture with malunion +M84376S Stress fracture, unspecified foot, sequela +M84377A Stress fracture, right toe(s), initial encounter for fracture +M84377D Stress fracture, right toe(s), subsequent encounter for fracture with routine healing +M84377G Stress fracture, right toe(s), subsequent encounter for fracture with delayed healing +M84377K Stress fracture, right toe(s), subsequent encounter for fracture with nonunion +M84377P Stress fracture, right toe(s), subsequent encounter for fracture with malunion +M84377S Stress fracture, right toe(s), sequela +M84378A Stress fracture, left toe(s), initial encounter for fracture +M84378D Stress fracture, left toe(s), subsequent encounter for fracture with routine healing +M84378G Stress fracture, left toe(s), subsequent encounter for fracture with delayed healing +M84378K Stress fracture, left toe(s), subsequent encounter for fracture with nonunion +M84378P Stress fracture, left toe(s), subsequent encounter for fracture with malunion +M84378S Stress fracture, left toe(s), sequela +M84379A Stress fracture, unspecified toe(s), initial encounter for fracture +M84379D Stress fracture, unspecified toe(s), subsequent encounter for fracture with routine healing +M84379G Stress fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing +M84379K Stress fracture, unspecified toe(s), subsequent encounter for fracture with nonunion +M84379P Stress fracture, unspecified toe(s), subsequent encounter for fracture with malunion +M84379S Stress fracture, unspecified toe(s), sequela +M8438XA Stress fracture, other site, initial encounter for fracture +M8438XD Stress fracture, other site, subsequent encounter for fracture with routine healing +M8438XG Stress fracture, other site, subsequent encounter for fracture with delayed healing +M8438XK Stress fracture, other site, subsequent encounter for fracture with nonunion +M8438XP Stress fracture, other site, subsequent encounter for fracture with malunion +M8438XS Stress fracture, other site, sequela +M8440XA Pathological fracture, unspecified site, initial encounter for fracture +M8440XD Pathological fracture, unspecified site, subsequent encounter for fracture with routine healing +M8440XG Pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing +M8440XK Pathological fracture, unspecified site, subsequent encounter for fracture with nonunion +M8440XP Pathological fracture, unspecified site, subsequent encounter for fracture with malunion +M8440XS Pathological fracture, unspecified site, sequela +M84411A Pathological fracture, right shoulder, initial encounter for fracture +M84411D Pathological fracture, right shoulder, subsequent encounter for fracture with routine healing +M84411G Pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing +M84411K Pathological fracture, right shoulder, subsequent encounter for fracture with nonunion +M84411P Pathological fracture, right shoulder, subsequent encounter for fracture with malunion +M84411S Pathological fracture, right shoulder, sequela +M84412A Pathological fracture, left shoulder, initial encounter for fracture +M84412D Pathological fracture, left shoulder, subsequent encounter for fracture with routine healing +M84412G Pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing +M84412K Pathological fracture, left shoulder, subsequent encounter for fracture with nonunion +M84412P Pathological fracture, left shoulder, subsequent encounter for fracture with malunion +M84412S Pathological fracture, left shoulder, sequela +M84419A Pathological fracture, unspecified shoulder, initial encounter for fracture +M84419D Pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing +M84419G Pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing +M84419K Pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion +M84419P Pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion +M84419S Pathological fracture, unspecified shoulder, sequela +M84421A Pathological fracture, right humerus, initial encounter for fracture +M84421D Pathological fracture, right humerus, subsequent encounter for fracture with routine healing +M84421G Pathological fracture, right humerus, subsequent encounter for fracture with delayed healing +M84421K Pathological fracture, right humerus, subsequent encounter for fracture with nonunion +M84421P Pathological fracture, right humerus, subsequent encounter for fracture with malunion +M84421S Pathological fracture, right humerus, sequela +M84422A Pathological fracture, left humerus, initial encounter for fracture +M84422D Pathological fracture, left humerus, subsequent encounter for fracture with routine healing +M84422G Pathological fracture, left humerus, subsequent encounter for fracture with delayed healing +M84422K Pathological fracture, left humerus, subsequent encounter for fracture with nonunion +M84422P Pathological fracture, left humerus, subsequent encounter for fracture with malunion +M84422S Pathological fracture, left humerus, sequela +M84429A Pathological fracture, unspecified humerus, initial encounter for fracture +M84429D Pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing +M84429G Pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing +M84429K Pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion +M84429P Pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion +M84429S Pathological fracture, unspecified humerus, sequela +M84431A Pathological fracture, right ulna, initial encounter for fracture +M84431D Pathological fracture, right ulna, subsequent encounter for fracture with routine healing +M84431G Pathological fracture, right ulna, subsequent encounter for fracture with delayed healing +M84431K Pathological fracture, right ulna, subsequent encounter for fracture with nonunion +M84431P Pathological fracture, right ulna, subsequent encounter for fracture with malunion +M84431S Pathological fracture, right ulna, sequela +M84432A Pathological fracture, left ulna, initial encounter for fracture +M84432D Pathological fracture, left ulna, subsequent encounter for fracture with routine healing +M84432G Pathological fracture, left ulna, subsequent encounter for fracture with delayed healing +M84432K Pathological fracture, left ulna, subsequent encounter for fracture with nonunion +M84432P Pathological fracture, left ulna, subsequent encounter for fracture with malunion +M84432S Pathological fracture, left ulna, sequela +M84433A Pathological fracture, right radius, initial encounter for fracture +M84433D Pathological fracture, right radius, subsequent encounter for fracture with routine healing +M84433G Pathological fracture, right radius, subsequent encounter for fracture with delayed healing +M84433K Pathological fracture, right radius, subsequent encounter for fracture with nonunion +M84433P Pathological fracture, right radius, subsequent encounter for fracture with malunion +M84433S Pathological fracture, right radius, sequela +M84434A Pathological fracture, left radius, initial encounter for fracture +M84434D Pathological fracture, left radius, subsequent encounter for fracture with routine healing +M84434G Pathological fracture, left radius, subsequent encounter for fracture with delayed healing +M84434K Pathological fracture, left radius, subsequent encounter for fracture with nonunion +M84434P Pathological fracture, left radius, subsequent encounter for fracture with malunion +M84434S Pathological fracture, left radius, sequela +M84439A Pathological fracture, unspecified ulna and radius, initial encounter for fracture +M84439D Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with routine healing +M84439G Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with delayed healing +M84439K Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion +M84439P Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion +M84439S Pathological fracture, unspecified ulna and radius, sequela +M84441A Pathological fracture, right hand, initial encounter for fracture +M84441D Pathological fracture, right hand, subsequent encounter for fracture with routine healing +M84441G Pathological fracture, right hand, subsequent encounter for fracture with delayed healing +M84441K Pathological fracture, right hand, subsequent encounter for fracture with nonunion +M84441P Pathological fracture, right hand, subsequent encounter for fracture with malunion +M84441S Pathological fracture, right hand, sequela +M84442A Pathological fracture, left hand, initial encounter for fracture +M84442D Pathological fracture, left hand, subsequent encounter for fracture with routine healing +M84442G Pathological fracture, left hand, subsequent encounter for fracture with delayed healing +M84442K Pathological fracture, left hand, subsequent encounter for fracture with nonunion +M84442P Pathological fracture, left hand, subsequent encounter for fracture with malunion +M84442S Pathological fracture, left hand, sequela +M84443A Pathological fracture, unspecified hand, initial encounter for fracture +M84443D Pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing +M84443G Pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing +M84443K Pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion +M84443P Pathological fracture, unspecified hand, subsequent encounter for fracture with malunion +M84443S Pathological fracture, unspecified hand, sequela +M84444A Pathological fracture, right finger(s), initial encounter for fracture +M84444D Pathological fracture, right finger(s), subsequent encounter for fracture with routine healing +M84444G Pathological fracture, right finger(s), subsequent encounter for fracture with delayed healing +M84444K Pathological fracture, right finger(s), subsequent encounter for fracture with nonunion +M84444P Pathological fracture, right finger(s), subsequent encounter for fracture with malunion +M84444S Pathological fracture, right finger(s), sequela +M84445A Pathological fracture, left finger(s), initial encounter for fracture +M84445D Pathological fracture, left finger(s), subsequent encounter for fracture with routine healing +M84445G Pathological fracture, left finger(s), subsequent encounter for fracture with delayed healing +M84445K Pathological fracture, left finger(s), subsequent encounter for fracture with nonunion +M84445P Pathological fracture, left finger(s), subsequent encounter for fracture with malunion +M84445S Pathological fracture, left finger(s), sequela +M84446A Pathological fracture, unspecified finger(s), initial encounter for fracture +M84446D Pathological fracture, unspecified finger(s), subsequent encounter for fracture with routine healing +M84446G Pathological fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing +M84446K Pathological fracture, unspecified finger(s), subsequent encounter for fracture with nonunion +M84446P Pathological fracture, unspecified finger(s), subsequent encounter for fracture with malunion +M84446S Pathological fracture, unspecified finger(s), sequela +M84451A Pathological fracture, right femur, initial encounter for fracture +M84451D Pathological fracture, right femur, subsequent encounter for fracture with routine healing +M84451G Pathological fracture, right femur, subsequent encounter for fracture with delayed healing +M84451K Pathological fracture, right femur, subsequent encounter for fracture with nonunion +M84451P Pathological fracture, right femur, subsequent encounter for fracture with malunion +M84451S Pathological fracture, right femur, sequela +M84452A Pathological fracture, left femur, initial encounter for fracture +M84452D Pathological fracture, left femur, subsequent encounter for fracture with routine healing +M84452G Pathological fracture, left femur, subsequent encounter for fracture with delayed healing +M84452K Pathological fracture, left femur, subsequent encounter for fracture with nonunion +M84452P Pathological fracture, left femur, subsequent encounter for fracture with malunion +M84452S Pathological fracture, left femur, sequela +M84453A Pathological fracture, unspecified femur, initial encounter for fracture +M84453D Pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing +M84453G Pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing +M84453K Pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion +M84453P Pathological fracture, unspecified femur, subsequent encounter for fracture with malunion +M84453S Pathological fracture, unspecified femur, sequela +M84454A Pathological fracture, pelvis, initial encounter for fracture +M84454D Pathological fracture, pelvis, subsequent encounter for fracture with routine healing +M84454G Pathological fracture, pelvis, subsequent encounter for fracture with delayed healing +M84454K Pathological fracture, pelvis, subsequent encounter for fracture with nonunion +M84454P Pathological fracture, pelvis, subsequent encounter for fracture with malunion +M84454S Pathological fracture, pelvis, sequela +M84459A Pathological fracture, hip, unspecified, initial encounter for fracture +M84459D Pathological fracture, hip, unspecified, subsequent encounter for fracture with routine healing +M84459G Pathological fracture, hip, unspecified, subsequent encounter for fracture with delayed healing +M84459K Pathological fracture, hip, unspecified, subsequent encounter for fracture with nonunion +M84459P Pathological fracture, hip, unspecified, subsequent encounter for fracture with malunion +M84459S Pathological fracture, hip, unspecified, sequela +M84461A Pathological fracture, right tibia, initial encounter for fracture +M84461D Pathological fracture, right tibia, subsequent encounter for fracture with routine healing +M84461G Pathological fracture, right tibia, subsequent encounter for fracture with delayed healing +M84461K Pathological fracture, right tibia, subsequent encounter for fracture with nonunion +M84461P Pathological fracture, right tibia, subsequent encounter for fracture with malunion +M84461S Pathological fracture, right tibia, sequela +M84462A Pathological fracture, left tibia, initial encounter for fracture +M84462D Pathological fracture, left tibia, subsequent encounter for fracture with routine healing +M84462G Pathological fracture, left tibia, subsequent encounter for fracture with delayed healing +M84462K Pathological fracture, left tibia, subsequent encounter for fracture with nonunion +M84462P Pathological fracture, left tibia, subsequent encounter for fracture with malunion +M84462S Pathological fracture, left tibia, sequela +M84463A Pathological fracture, right fibula, initial encounter for fracture +M84463D Pathological fracture, right fibula, subsequent encounter for fracture with routine healing +M84463G Pathological fracture, right fibula, subsequent encounter for fracture with delayed healing +M84463K Pathological fracture, right fibula, subsequent encounter for fracture with nonunion +M84463P Pathological fracture, right fibula, subsequent encounter for fracture with malunion +M84463S Pathological fracture, right fibula, sequela +M84464A Pathological fracture, left fibula, initial encounter for fracture +M84464D Pathological fracture, left fibula, subsequent encounter for fracture with routine healing +M84464G Pathological fracture, left fibula, subsequent encounter for fracture with delayed healing +M84464K Pathological fracture, left fibula, subsequent encounter for fracture with nonunion +M84464P Pathological fracture, left fibula, subsequent encounter for fracture with malunion +M84464S Pathological fracture, left fibula, sequela +M84469A Pathological fracture, unspecified tibia and fibula, initial encounter for fracture +M84469D Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with routine healing +M84469G Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing +M84469K Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion +M84469P Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion +M84469S Pathological fracture, unspecified tibia and fibula, sequela +M84471A Pathological fracture, right ankle, initial encounter for fracture +M84471D Pathological fracture, right ankle, subsequent encounter for fracture with routine healing +M84471G Pathological fracture, right ankle, subsequent encounter for fracture with delayed healing +M84471K Pathological fracture, right ankle, subsequent encounter for fracture with nonunion +M84471P Pathological fracture, right ankle, subsequent encounter for fracture with malunion +M84471S Pathological fracture, right ankle, sequela +M84472A Pathological fracture, left ankle, initial encounter for fracture +M84472D Pathological fracture, left ankle, subsequent encounter for fracture with routine healing +M84472G Pathological fracture, left ankle, subsequent encounter for fracture with delayed healing +M84472K Pathological fracture, left ankle, subsequent encounter for fracture with nonunion +M84472P Pathological fracture, left ankle, subsequent encounter for fracture with malunion +M84472S Pathological fracture, left ankle, sequela +M84473A Pathological fracture, unspecified ankle, initial encounter for fracture +M84473D Pathological fracture, unspecified ankle, subsequent encounter for fracture with routine healing +M84473G Pathological fracture, unspecified ankle, subsequent encounter for fracture with delayed healing +M84473K Pathological fracture, unspecified ankle, subsequent encounter for fracture with nonunion +M84473P Pathological fracture, unspecified ankle, subsequent encounter for fracture with malunion +M84473S Pathological fracture, unspecified ankle, sequela +M84474A Pathological fracture, right foot, initial encounter for fracture +M84474D Pathological fracture, right foot, subsequent encounter for fracture with routine healing +M84474G Pathological fracture, right foot, subsequent encounter for fracture with delayed healing +M84474K Pathological fracture, right foot, subsequent encounter for fracture with nonunion +M84474P Pathological fracture, right foot, subsequent encounter for fracture with malunion +M84474S Pathological fracture, right foot, sequela +M84475A Pathological fracture, left foot, initial encounter for fracture +M84475D Pathological fracture, left foot, subsequent encounter for fracture with routine healing +M84475G Pathological fracture, left foot, subsequent encounter for fracture with delayed healing +M84475K Pathological fracture, left foot, subsequent encounter for fracture with nonunion +M84475P Pathological fracture, left foot, subsequent encounter for fracture with malunion +M84475S Pathological fracture, left foot, sequela +M84476A Pathological fracture, unspecified foot, initial encounter for fracture +M84476D Pathological fracture, unspecified foot, subsequent encounter for fracture with routine healing +M84476G Pathological fracture, unspecified foot, subsequent encounter for fracture with delayed healing +M84476K Pathological fracture, unspecified foot, subsequent encounter for fracture with nonunion +M84476P Pathological fracture, unspecified foot, subsequent encounter for fracture with malunion +M84476S Pathological fracture, unspecified foot, sequela +M84477A Pathological fracture, right toe(s), initial encounter for fracture +M84477D Pathological fracture, right toe(s), subsequent encounter for fracture with routine healing +M84477G Pathological fracture, right toe(s), subsequent encounter for fracture with delayed healing +M84477K Pathological fracture, right toe(s), subsequent encounter for fracture with nonunion +M84477P Pathological fracture, right toe(s), subsequent encounter for fracture with malunion +M84477S Pathological fracture, right toe(s), sequela +M84478A Pathological fracture, left toe(s), initial encounter for fracture +M84478D Pathological fracture, left toe(s), subsequent encounter for fracture with routine healing +M84478G Pathological fracture, left toe(s), subsequent encounter for fracture with delayed healing +M84478K Pathological fracture, left toe(s), subsequent encounter for fracture with nonunion +M84478P Pathological fracture, left toe(s), subsequent encounter for fracture with malunion +M84478S Pathological fracture, left toe(s), sequela +M84479A Pathological fracture, unspecified toe(s), initial encounter for fracture +M84479D Pathological fracture, unspecified toe(s), subsequent encounter for fracture with routine healing +M84479G Pathological fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing +M84479K Pathological fracture, unspecified toe(s), subsequent encounter for fracture with nonunion +M84479P Pathological fracture, unspecified toe(s), subsequent encounter for fracture with malunion +M84479S Pathological fracture, unspecified toe(s), sequela +M8448XA Pathological fracture, other site, initial encounter for fracture +M8448XD Pathological fracture, other site, subsequent encounter for fracture with routine healing +M8448XG Pathological fracture, other site, subsequent encounter for fracture with delayed healing +M8448XK Pathological fracture, other site, subsequent encounter for fracture with nonunion +M8448XP Pathological fracture, other site, subsequent encounter for fracture with malunion +M8448XS Pathological fracture, other site, sequela +M8450XA Pathological fracture in neoplastic disease, unspecified site, initial encounter for fracture +M8450XD Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with routine healing +M8450XG Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with delayed healing +M8450XK Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with nonunion +M8450XP Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with malunion +M8450XS Pathological fracture in neoplastic disease, unspecified site, sequela +M84511A Pathological fracture in neoplastic disease, right shoulder, initial encounter for fracture +M84511D Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with routine healing +M84511G Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with delayed healing +M84511K Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with nonunion +M84511P Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with malunion +M84511S Pathological fracture in neoplastic disease, right shoulder, sequela +M84512A Pathological fracture in neoplastic disease, left shoulder, initial encounter for fracture +M84512D Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with routine healing +M84512G Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with delayed healing +M84512K Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with nonunion +M84512P Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with malunion +M84512S Pathological fracture in neoplastic disease, left shoulder, sequela +M84519A Pathological fracture in neoplastic disease, unspecified shoulder, initial encounter for fracture +M84519D Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with routine healing +M84519G Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with delayed healing +M84519K Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with nonunion +M84519P Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with malunion +M84519S Pathological fracture in neoplastic disease, unspecified shoulder, sequela +M84521A Pathological fracture in neoplastic disease, right humerus, initial encounter for fracture +M84521D Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with routine healing +M84521G Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with delayed healing +M84521K Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with nonunion +M84521P Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with malunion +M84521S Pathological fracture in neoplastic disease, right humerus, sequela +M84522A Pathological fracture in neoplastic disease, left humerus, initial encounter for fracture +M84522D Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with routine healing +M84522G Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with delayed healing +M84522K Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with nonunion +M84522P Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with malunion +M84522S Pathological fracture in neoplastic disease, left humerus, sequela +M84529A Pathological fracture in neoplastic disease, unspecified humerus, initial encounter for fracture +M84529D Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with routine healing +M84529G Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with delayed healing +M84529K Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with nonunion +M84529P Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with malunion +M84529S Pathological fracture in neoplastic disease, unspecified humerus, sequela +M84531A Pathological fracture in neoplastic disease, right ulna, initial encounter for fracture +M84531D Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with routine healing +M84531G Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with delayed healing +M84531K Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with nonunion +M84531P Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with malunion +M84531S Pathological fracture in neoplastic disease, right ulna, sequela +M84532A Pathological fracture in neoplastic disease, left ulna, initial encounter for fracture +M84532D Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with routine healing +M84532G Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with delayed healing +M84532K Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with nonunion +M84532P Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with malunion +M84532S Pathological fracture in neoplastic disease, left ulna, sequela +M84533A Pathological fracture in neoplastic disease, right radius, initial encounter for fracture +M84533D Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with routine healing +M84533G Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with delayed healing +M84533K Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with nonunion +M84533P Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with malunion +M84533S Pathological fracture in neoplastic disease, right radius, sequela +M84534A Pathological fracture in neoplastic disease, left radius, initial encounter for fracture +M84534D Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with routine healing +M84534G Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with delayed healing +M84534K Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with nonunion +M84534P Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with malunion +M84534S Pathological fracture in neoplastic disease, left radius, sequela +M84539A Pathological fracture in neoplastic disease, unspecified ulna and radius, initial encounter for fracture +M84539D Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with routine healing +M84539G Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with delayed healing +M84539K Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with nonunion +M84539P Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with malunion +M84539S Pathological fracture in neoplastic disease, unspecified ulna and radius, sequela +M84541A Pathological fracture in neoplastic disease, right hand, initial encounter for fracture +M84541D Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with routine healing +M84541G Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with delayed healing +M84541K Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with nonunion +M84541P Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with malunion +M84541S Pathological fracture in neoplastic disease, right hand, sequela +M84542A Pathological fracture in neoplastic disease, left hand, initial encounter for fracture +M84542D Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with routine healing +M84542G Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with delayed healing +M84542K Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with nonunion +M84542P Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with malunion +M84542S Pathological fracture in neoplastic disease, left hand, sequela +M84549A Pathological fracture in neoplastic disease, unspecified hand, initial encounter for fracture +M84549D Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with routine healing +M84549G Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with delayed healing +M84549K Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with nonunion +M84549P Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with malunion +M84549S Pathological fracture in neoplastic disease, unspecified hand, sequela +M84550A Pathological fracture in neoplastic disease, pelvis, initial encounter for fracture +M84550D Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with routine healing +M84550G Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with delayed healing +M84550K Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with nonunion +M84550P Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with malunion +M84550S Pathological fracture in neoplastic disease, pelvis, sequela +M84551A Pathological fracture in neoplastic disease, right femur, initial encounter for fracture +M84551D Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with routine healing +M84551G Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with delayed healing +M84551K Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with nonunion +M84551P Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with malunion +M84551S Pathological fracture in neoplastic disease, right femur, sequela +M84552A Pathological fracture in neoplastic disease, left femur, initial encounter for fracture +M84552D Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with routine healing +M84552G Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with delayed healing +M84552K Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with nonunion +M84552P Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with malunion +M84552S Pathological fracture in neoplastic disease, left femur, sequela +M84553A Pathological fracture in neoplastic disease, unspecified femur, initial encounter for fracture +M84553D Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with routine healing +M84553G Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with delayed healing +M84553K Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with nonunion +M84553P Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with malunion +M84553S Pathological fracture in neoplastic disease, unspecified femur, sequela +M84559A Pathological fracture in neoplastic disease, hip, unspecified, initial encounter for fracture +M84559D Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with routine healing +M84559G Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with delayed healing +M84559K Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with nonunion +M84559P Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with malunion +M84559S Pathological fracture in neoplastic disease, hip, unspecified, sequela +M84561A Pathological fracture in neoplastic disease, right tibia, initial encounter for fracture +M84561D Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with routine healing +M84561G Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with delayed healing +M84561K Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with nonunion +M84561P Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with malunion +M84561S Pathological fracture in neoplastic disease, right tibia, sequela +M84562A Pathological fracture in neoplastic disease, left tibia, initial encounter for fracture +M84562D Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with routine healing +M84562G Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with delayed healing +M84562K Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with nonunion +M84562P Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with malunion +M84562S Pathological fracture in neoplastic disease, left tibia, sequela +M84563A Pathological fracture in neoplastic disease, right fibula, initial encounter for fracture +M84563D Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with routine healing +M84563G Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with delayed healing +M84563K Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with nonunion +M84563P Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with malunion +M84563S Pathological fracture in neoplastic disease, right fibula, sequela +M84564A Pathological fracture in neoplastic disease, left fibula, initial encounter for fracture +M84564D Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with routine healing +M84564G Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with delayed healing +M84564K Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with nonunion +M84564P Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with malunion +M84564S Pathological fracture in neoplastic disease, left fibula, sequela +M84569A Pathological fracture in neoplastic disease, unspecified tibia and fibula, initial encounter for fracture +M84569D Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with routine healing +M84569G Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing +M84569K Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with nonunion +M84569P Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with malunion +M84569S Pathological fracture in neoplastic disease, unspecified tibia and fibula, sequela +M84571A Pathological fracture in neoplastic disease, right ankle, initial encounter for fracture +M84571D Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with routine healing +M84571G Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with delayed healing +M84571K Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with nonunion +M84571P Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with malunion +M84571S Pathological fracture in neoplastic disease, right ankle, sequela +M84572A Pathological fracture in neoplastic disease, left ankle, initial encounter for fracture +M84572D Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with routine healing +M84572G Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with delayed healing +M84572K Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with nonunion +M84572P Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with malunion +M84572S Pathological fracture in neoplastic disease, left ankle, sequela +M84573A Pathological fracture in neoplastic disease, unspecified ankle, initial encounter for fracture +M84573D Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with routine healing +M84573G Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with delayed healing +M84573K Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with nonunion +M84573P Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with malunion +M84573S Pathological fracture in neoplastic disease, unspecified ankle, sequela +M84574A Pathological fracture in neoplastic disease, right foot, initial encounter for fracture +M84574D Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with routine healing +M84574G Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with delayed healing +M84574K Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with nonunion +M84574P Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with malunion +M84574S Pathological fracture in neoplastic disease, right foot, sequela +M84575A Pathological fracture in neoplastic disease, left foot, initial encounter for fracture +M84575D Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with routine healing +M84575G Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with delayed healing +M84575K Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with nonunion +M84575P Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with malunion +M84575S Pathological fracture in neoplastic disease, left foot, sequela +M84576A Pathological fracture in neoplastic disease, unspecified foot, initial encounter for fracture +M84576D Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with routine healing +M84576G Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with delayed healing +M84576K Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with nonunion +M84576P Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with malunion +M84576S Pathological fracture in neoplastic disease, unspecified foot, sequela +M8458XA Pathological fracture in neoplastic disease, vertebrae, initial encounter for fracture +M8458XD Pathological fracture in neoplastic disease, vertebrae, subsequent encounter for fracture with routine healing +M8458XG Pathological fracture in neoplastic disease, vertebrae, subsequent encounter for fracture with delayed healing +M8458XK Pathological fracture in neoplastic disease, vertebrae, subsequent encounter for fracture with nonunion +M8458XP Pathological fracture in neoplastic disease, vertebrae, subsequent encounter for fracture with malunion +M8458XS Pathological fracture in neoplastic disease, vertebrae, sequela +M8460XA Pathological fracture in other disease, unspecified site, initial encounter for fracture +M8460XD Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with routine healing +M8460XG Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with delayed healing +M8460XK Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with nonunion +M8460XP Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with malunion +M8460XS Pathological fracture in other disease, unspecified site, sequela +M84611A Pathological fracture in other disease, right shoulder, initial encounter for fracture +M84611D Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with routine healing +M84611G Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with delayed healing +M84611K Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with nonunion +M84611P Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with malunion +M84611S Pathological fracture in other disease, right shoulder, sequela +M84612A Pathological fracture in other disease, left shoulder, initial encounter for fracture +M84612D Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with routine healing +M84612G Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with delayed healing +M84612K Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with nonunion +M84612P Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with malunion +M84612S Pathological fracture in other disease, left shoulder, sequela +M84619A Pathological fracture in other disease, unspecified shoulder, initial encounter for fracture +M84619D Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with routine healing +M84619G Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with delayed healing +M84619K Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with nonunion +M84619P Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with malunion +M84619S Pathological fracture in other disease, unspecified shoulder, sequela +M84621A Pathological fracture in other disease, right humerus, initial encounter for fracture +M84621D Pathological fracture in other disease, right humerus, subsequent encounter for fracture with routine healing +M84621G Pathological fracture in other disease, right humerus, subsequent encounter for fracture with delayed healing +M84621K Pathological fracture in other disease, right humerus, subsequent encounter for fracture with nonunion +M84621P Pathological fracture in other disease, right humerus, subsequent encounter for fracture with malunion +M84621S Pathological fracture in other disease, right humerus, sequela +M84622A Pathological fracture in other disease, left humerus, initial encounter for fracture +M84622D Pathological fracture in other disease, left humerus, subsequent encounter for fracture with routine healing +M84622G Pathological fracture in other disease, left humerus, subsequent encounter for fracture with delayed healing +M84622K Pathological fracture in other disease, left humerus, subsequent encounter for fracture with nonunion +M84622P Pathological fracture in other disease, left humerus, subsequent encounter for fracture with malunion +M84622S Pathological fracture in other disease, left humerus, sequela +M84629A Pathological fracture in other disease, unspecified humerus, initial encounter for fracture +M84629D Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with routine healing +M84629G Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with delayed healing +M84629K Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with nonunion +M84629P Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with malunion +M84629S Pathological fracture in other disease, unspecified humerus, sequela +M84631A Pathological fracture in other disease, right ulna, initial encounter for fracture +M84631D Pathological fracture in other disease, right ulna, subsequent encounter for fracture with routine healing +M84631G Pathological fracture in other disease, right ulna, subsequent encounter for fracture with delayed healing +M84631K Pathological fracture in other disease, right ulna, subsequent encounter for fracture with nonunion +M84631P Pathological fracture in other disease, right ulna, subsequent encounter for fracture with malunion +M84631S Pathological fracture in other disease, right ulna, sequela +M84632A Pathological fracture in other disease, left ulna, initial encounter for fracture +M84632D Pathological fracture in other disease, left ulna, subsequent encounter for fracture with routine healing +M84632G Pathological fracture in other disease, left ulna, subsequent encounter for fracture with delayed healing +M84632K Pathological fracture in other disease, left ulna, subsequent encounter for fracture with nonunion +M84632P Pathological fracture in other disease, left ulna, subsequent encounter for fracture with malunion +M84632S Pathological fracture in other disease, left ulna, sequela +M84633A Pathological fracture in other disease, right radius, initial encounter for fracture +M84633D Pathological fracture in other disease, right radius, subsequent encounter for fracture with routine healing +M84633G Pathological fracture in other disease, right radius, subsequent encounter for fracture with delayed healing +M84633K Pathological fracture in other disease, right radius, subsequent encounter for fracture with nonunion +M84633P Pathological fracture in other disease, right radius, subsequent encounter for fracture with malunion +M84633S Pathological fracture in other disease, right radius, sequela +M84634A Pathological fracture in other disease, left radius, initial encounter for fracture +M84634D Pathological fracture in other disease, left radius, subsequent encounter for fracture with routine healing +M84634G Pathological fracture in other disease, left radius, subsequent encounter for fracture with delayed healing +M84634K Pathological fracture in other disease, left radius, subsequent encounter for fracture with nonunion +M84634P Pathological fracture in other disease, left radius, subsequent encounter for fracture with malunion +M84634S Pathological fracture in other disease, left radius, sequela +M84639A Pathological fracture in other disease, unspecified ulna and radius, initial encounter for fracture +M84639D Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with routine healing +M84639G Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with delayed healing +M84639K Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with nonunion +M84639P Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with malunion +M84639S Pathological fracture in other disease, unspecified ulna and radius, sequela +M84641A Pathological fracture in other disease, right hand, initial encounter for fracture +M84641D Pathological fracture in other disease, right hand, subsequent encounter for fracture with routine healing +M84641G Pathological fracture in other disease, right hand, subsequent encounter for fracture with delayed healing +M84641K Pathological fracture in other disease, right hand, subsequent encounter for fracture with nonunion +M84641P Pathological fracture in other disease, right hand, subsequent encounter for fracture with malunion +M84641S Pathological fracture in other disease, right hand, sequela +M84642A Pathological fracture in other disease, left hand, initial encounter for fracture +M84642D Pathological fracture in other disease, left hand, subsequent encounter for fracture with routine healing +M84642G Pathological fracture in other disease, left hand, subsequent encounter for fracture with delayed healing +M84642K Pathological fracture in other disease, left hand, subsequent encounter for fracture with nonunion +M84642P Pathological fracture in other disease, left hand, subsequent encounter for fracture with malunion +M84642S Pathological fracture in other disease, left hand, sequela +M84649A Pathological fracture in other disease, unspecified hand, initial encounter for fracture +M84649D Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with routine healing +M84649G Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with delayed healing +M84649K Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with nonunion +M84649P Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with malunion +M84649S Pathological fracture in other disease, unspecified hand, sequela +M84650A Pathological fracture in other disease, pelvis, initial encounter for fracture +M84650D Pathological fracture in other disease, pelvis, subsequent encounter for fracture with routine healing +M84650G Pathological fracture in other disease, pelvis, subsequent encounter for fracture with delayed healing +M84650K Pathological fracture in other disease, pelvis, subsequent encounter for fracture with nonunion +M84650P Pathological fracture in other disease, pelvis, subsequent encounter for fracture with malunion +M84650S Pathological fracture in other disease, pelvis, sequela +M84651A Pathological fracture in other disease, right femur, initial encounter for fracture +M84651D Pathological fracture in other disease, right femur, subsequent encounter for fracture with routine healing +M84651G Pathological fracture in other disease, right femur, subsequent encounter for fracture with delayed healing +M84651K Pathological fracture in other disease, right femur, subsequent encounter for fracture with nonunion +M84651P Pathological fracture in other disease, right femur, subsequent encounter for fracture with malunion +M84651S Pathological fracture in other disease, right femur, sequela +M84652A Pathological fracture in other disease, left femur, initial encounter for fracture +M84652D Pathological fracture in other disease, left femur, subsequent encounter for fracture with routine healing +M84652G Pathological fracture in other disease, left femur, subsequent encounter for fracture with delayed healing +M84652K Pathological fracture in other disease, left femur, subsequent encounter for fracture with nonunion +M84652P Pathological fracture in other disease, left femur, subsequent encounter for fracture with malunion +M84652S Pathological fracture in other disease, left femur, sequela +M84653A Pathological fracture in other disease, unspecified femur, initial encounter for fracture +M84653D Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with routine healing +M84653G Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with delayed healing +M84653K Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with nonunion +M84653P Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with malunion +M84653S Pathological fracture in other disease, unspecified femur, sequela +M84659A Pathological fracture in other disease, hip, unspecified, initial encounter for fracture +M84659D Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with routine healing +M84659G Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with delayed healing +M84659K Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with nonunion +M84659P Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with malunion +M84659S Pathological fracture in other disease, hip, unspecified, sequela +M84661A Pathological fracture in other disease, right tibia, initial encounter for fracture +M84661D Pathological fracture in other disease, right tibia, subsequent encounter for fracture with routine healing +M84661G Pathological fracture in other disease, right tibia, subsequent encounter for fracture with delayed healing +M84661K Pathological fracture in other disease, right tibia, subsequent encounter for fracture with nonunion +M84661P Pathological fracture in other disease, right tibia, subsequent encounter for fracture with malunion +M84661S Pathological fracture in other disease, right tibia, sequela +M84662A Pathological fracture in other disease, left tibia, initial encounter for fracture +M84662D Pathological fracture in other disease, left tibia, subsequent encounter for fracture with routine healing +M84662G Pathological fracture in other disease, left tibia, subsequent encounter for fracture with delayed healing +M84662K Pathological fracture in other disease, left tibia, subsequent encounter for fracture with nonunion +M84662P Pathological fracture in other disease, left tibia, subsequent encounter for fracture with malunion +M84662S Pathological fracture in other disease, left tibia, sequela +M84663A Pathological fracture in other disease, right fibula, initial encounter for fracture +M84663D Pathological fracture in other disease, right fibula, subsequent encounter for fracture with routine healing +M84663G Pathological fracture in other disease, right fibula, subsequent encounter for fracture with delayed healing +M84663K Pathological fracture in other disease, right fibula, subsequent encounter for fracture with nonunion +M84663P Pathological fracture in other disease, right fibula, subsequent encounter for fracture with malunion +M84663S Pathological fracture in other disease, right fibula, sequela +M84664A Pathological fracture in other disease, left fibula, initial encounter for fracture +M84664D Pathological fracture in other disease, left fibula, subsequent encounter for fracture with routine healing +M84664G Pathological fracture in other disease, left fibula, subsequent encounter for fracture with delayed healing +M84664K Pathological fracture in other disease, left fibula, subsequent encounter for fracture with nonunion +M84664P Pathological fracture in other disease, left fibula, subsequent encounter for fracture with malunion +M84664S Pathological fracture in other disease, left fibula, sequela +M84669A Pathological fracture in other disease, unspecified tibia and fibula, initial encounter for fracture +M84669D Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with routine healing +M84669G Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing +M84669K Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with nonunion +M84669P Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with malunion +M84669S Pathological fracture in other disease, unspecified tibia and fibula, sequela +M84671A Pathological fracture in other disease, right ankle, initial encounter for fracture +M84671D Pathological fracture in other disease, right ankle, subsequent encounter for fracture with routine healing +M84671G Pathological fracture in other disease, right ankle, subsequent encounter for fracture with delayed healing +M84671K Pathological fracture in other disease, right ankle, subsequent encounter for fracture with nonunion +M84671P Pathological fracture in other disease, right ankle, subsequent encounter for fracture with malunion +M84671S Pathological fracture in other disease, right ankle, sequela +M84672A Pathological fracture in other disease, left ankle, initial encounter for fracture +M84672D Pathological fracture in other disease, left ankle, subsequent encounter for fracture with routine healing +M84672G Pathological fracture in other disease, left ankle, subsequent encounter for fracture with delayed healing +M84672K Pathological fracture in other disease, left ankle, subsequent encounter for fracture with nonunion +M84672P Pathological fracture in other disease, left ankle, subsequent encounter for fracture with malunion +M84672S Pathological fracture in other disease, left ankle, sequela +M84673A Pathological fracture in other disease, unspecified ankle, initial encounter for fracture +M84673D Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with routine healing +M84673G Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with delayed healing +M84673K Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with nonunion +M84673P Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with malunion +M84673S Pathological fracture in other disease, unspecified ankle, sequela +M84674A Pathological fracture in other disease, right foot, initial encounter for fracture +M84674D Pathological fracture in other disease, right foot, subsequent encounter for fracture with routine healing +M84674G Pathological fracture in other disease, right foot, subsequent encounter for fracture with delayed healing +M84674K Pathological fracture in other disease, right foot, subsequent encounter for fracture with nonunion +M84674P Pathological fracture in other disease, right foot, subsequent encounter for fracture with malunion +M84674S Pathological fracture in other disease, right foot, sequela +M84675A Pathological fracture in other disease, left foot, initial encounter for fracture +M84675D Pathological fracture in other disease, left foot, subsequent encounter for fracture with routine healing +M84675G Pathological fracture in other disease, left foot, subsequent encounter for fracture with delayed healing +M84675K Pathological fracture in other disease, left foot, subsequent encounter for fracture with nonunion +M84675P Pathological fracture in other disease, left foot, subsequent encounter for fracture with malunion +M84675S Pathological fracture in other disease, left foot, sequela +M84676A Pathological fracture in other disease, unspecified foot, initial encounter for fracture +M84676D Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with routine healing +M84676G Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with delayed healing +M84676K Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with nonunion +M84676P Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with malunion +M84676S Pathological fracture in other disease, unspecified foot, sequela +M8468XA Pathological fracture in other disease, other site, initial encounter for fracture +M8468XD Pathological fracture in other disease, other site, subsequent encounter for fracture with routine healing +M8468XG Pathological fracture in other disease, other site, subsequent encounter for fracture with delayed healing +M8468XK Pathological fracture in other disease, other site, subsequent encounter for fracture with nonunion +M8468XP Pathological fracture in other disease, other site, subsequent encounter for fracture with malunion +M8468XS Pathological fracture in other disease, other site, sequela +M84750A Atypical femoral fracture, unspecified, initial encounter for fracture +M84750D Atypical femoral fracture, unspecified, subsequent encounter for fracture with routine healing +M84750G Atypical femoral fracture, unspecified, subsequent encounter for fracture with delayed healing +M84750K Atypical femoral fracture, unspecified, subsequent encounter for fracture with nonunion +M84750P Atypical femoral fracture, unspecified, subsequent encounter for fracture with malunion +M84750S Atypical femoral fracture, unspecified, sequela +M84751A Incomplete atypical femoral fracture, right leg, initial encounter for fracture +M84751D Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing +M84751G Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing +M84751K Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion +M84751P Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with malunion +M84751S Incomplete atypical femoral fracture, right leg, sequela +M84752A Incomplete atypical femoral fracture, left leg, initial encounter for fracture +M84752D Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing +M84752G Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing +M84752K Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion +M84752P Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with malunion +M84752S Incomplete atypical femoral fracture, left leg, sequela +M84753A Incomplete atypical femoral fracture, unspecified leg, initial encounter for fracture +M84753D Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing +M84753G Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing +M84753K Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion +M84753P Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion +M84753S Incomplete atypical femoral fracture, unspecified leg, sequela +M84754A Complete transverse atypical femoral fracture, right leg, initial encounter for fracture +M84754D Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing +M84754G Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing +M84754K Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion +M84754P Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with malunion +M84754S Complete transverse atypical femoral fracture, right leg, sequela +M84755A Complete transverse atypical femoral fracture, left leg, initial encounter for fracture +M84755D Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing +M84755G Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing +M84755K Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion +M84755P Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with malunion +M84755S Complete transverse atypical femoral fracture, left leg, sequela +M84756A Complete transverse atypical femoral fracture, unspecified leg, initial encounter for fracture +M84756D Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing +M84756G Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing +M84756K Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion +M84756P Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion +M84756S Complete transverse atypical femoral fracture, unspecified leg, sequela +M84757A Complete oblique atypical femoral fracture, right leg, initial encounter for fracture +M84757D Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing +M84757G Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing +M84757K Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion +M84757P Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with malunion +M84757S Complete oblique atypical femoral fracture, right leg, sequela +M84758A Complete oblique atypical femoral fracture, left leg, initial encounter for fracture +M84758D Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing +M84758G Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing +M84758K Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion +M84758P Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with malunion +M84758S Complete oblique atypical femoral fracture, left leg, sequela +M84759A Complete oblique atypical femoral fracture, unspecified leg, initial encounter for fracture +M84759D Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing +M84759G Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing +M84759K Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion +M84759P Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion +M84759S Complete oblique atypical femoral fracture, unspecified leg, sequela +M8480 Other disorders of continuity of bone, unspecified site +M84811 Other disorders of continuity of bone, right shoulder +M84812 Other disorders of continuity of bone, left shoulder +M84819 Other disorders of continuity of bone, unspecified shoulder +M84821 Other disorders of continuity of bone, right humerus +M84822 Other disorders of continuity of bone, left humerus +M84829 Other disorders of continuity of bone, unspecified humerus +M84831 Other disorders of continuity of bone, right ulna +M84832 Other disorders of continuity of bone, left ulna +M84833 Other disorders of continuity of bone, right radius +M84834 Other disorders of continuity of bone, left radius +M84839 Other disorders of continuity of bone, unspecified ulna and radius +M84841 Other disorders of continuity of bone, right hand +M84842 Other disorders of continuity of bone, left hand +M84849 Other disorders of continuity of bone, unspecified hand +M84851 Other disorders of continuity of bone, right pelvic region and thigh +M84852 Other disorders of continuity of bone, left pelvic region and thigh +M84859 Other disorders of continuity of bone, unspecified pelvic region and thigh +M84861 Other disorders of continuity of bone, right tibia +M84862 Other disorders of continuity of bone, left tibia +M84863 Other disorders of continuity of bone, right fibula +M84864 Other disorders of continuity of bone, left fibula +M84869 Other disorders of continuity of bone, unspecified tibia and fibula +M84871 Other disorders of continuity of bone, right ankle and foot +M84872 Other disorders of continuity of bone, left ankle and foot +M84879 Other disorders of continuity of bone, unspecified ankle and foot +M8488 Other disorders of continuity of bone, other site +M849 Disorder of continuity of bone, unspecified +M8500 Fibrous dysplasia (monostotic), unspecified site +M85011 Fibrous dysplasia (monostotic), right shoulder +M85012 Fibrous dysplasia (monostotic), left shoulder +M85019 Fibrous dysplasia (monostotic), unspecified shoulder +M85021 Fibrous dysplasia (monostotic), right upper arm +M85022 Fibrous dysplasia (monostotic), left upper arm +M85029 Fibrous dysplasia (monostotic), unspecified upper arm +M85031 Fibrous dysplasia (monostotic), right forearm +M85032 Fibrous dysplasia (monostotic), left forearm +M85039 Fibrous dysplasia (monostotic), unspecified forearm +M85041 Fibrous dysplasia (monostotic), right hand +M85042 Fibrous dysplasia (monostotic), left hand +M85049 Fibrous dysplasia (monostotic), unspecified hand +M85051 Fibrous dysplasia (monostotic), right thigh +M85052 Fibrous dysplasia (monostotic), left thigh +M85059 Fibrous dysplasia (monostotic), unspecified thigh +M85061 Fibrous dysplasia (monostotic), right lower leg +M85062 Fibrous dysplasia (monostotic), left lower leg +M85069 Fibrous dysplasia (monostotic), unspecified lower leg +M85071 Fibrous dysplasia (monostotic), right ankle and foot +M85072 Fibrous dysplasia (monostotic), left ankle and foot +M85079 Fibrous dysplasia (monostotic), unspecified ankle and foot +M8508 Fibrous dysplasia (monostotic), other site +M8509 Fibrous dysplasia (monostotic), multiple sites +M8510 Skeletal fluorosis, unspecified site +M85111 Skeletal fluorosis, right shoulder +M85112 Skeletal fluorosis, left shoulder +M85119 Skeletal fluorosis, unspecified shoulder +M85121 Skeletal fluorosis, right upper arm +M85122 Skeletal fluorosis, left upper arm +M85129 Skeletal fluorosis, unspecified upper arm +M85131 Skeletal fluorosis, right forearm +M85132 Skeletal fluorosis, left forearm +M85139 Skeletal fluorosis, unspecified forearm +M85141 Skeletal fluorosis, right hand +M85142 Skeletal fluorosis, left hand +M85149 Skeletal fluorosis, unspecified hand +M85151 Skeletal fluorosis, right thigh +M85152 Skeletal fluorosis, left thigh +M85159 Skeletal fluorosis, unspecified thigh +M85161 Skeletal fluorosis, right lower leg +M85162 Skeletal fluorosis, left lower leg +M85169 Skeletal fluorosis, unspecified lower leg +M85171 Skeletal fluorosis, right ankle and foot +M85172 Skeletal fluorosis, left ankle and foot +M85179 Skeletal fluorosis, unspecified ankle and foot +M8518 Skeletal fluorosis, other site +M8519 Skeletal fluorosis, multiple sites +M852 Hyperostosis of skull +M8530 Osteitis condensans, unspecified site +M85311 Osteitis condensans, right shoulder +M85312 Osteitis condensans, left shoulder +M85319 Osteitis condensans, unspecified shoulder +M85321 Osteitis condensans, right upper arm +M85322 Osteitis condensans, left upper arm +M85329 Osteitis condensans, unspecified upper arm +M85331 Osteitis condensans, right forearm +M85332 Osteitis condensans, left forearm +M85339 Osteitis condensans, unspecified forearm +M85341 Osteitis condensans, right hand +M85342 Osteitis condensans, left hand +M85349 Osteitis condensans, unspecified hand +M85351 Osteitis condensans, right thigh +M85352 Osteitis condensans, left thigh +M85359 Osteitis condensans, unspecified thigh +M85361 Osteitis condensans, right lower leg +M85362 Osteitis condensans, left lower leg +M85369 Osteitis condensans, unspecified lower leg +M85371 Osteitis condensans, right ankle and foot +M85372 Osteitis condensans, left ankle and foot +M85379 Osteitis condensans, unspecified ankle and foot +M8538 Osteitis condensans, other site +M8539 Osteitis condensans, multiple sites +M8540 Solitary bone cyst, unspecified site +M85411 Solitary bone cyst, right shoulder +M85412 Solitary bone cyst, left shoulder +M85419 Solitary bone cyst, unspecified shoulder +M85421 Solitary bone cyst, right humerus +M85422 Solitary bone cyst, left humerus +M85429 Solitary bone cyst, unspecified humerus +M85431 Solitary bone cyst, right ulna and radius +M85432 Solitary bone cyst, left ulna and radius +M85439 Solitary bone cyst, unspecified ulna and radius +M85441 Solitary bone cyst, right hand +M85442 Solitary bone cyst, left hand +M85449 Solitary bone cyst, unspecified hand +M85451 Solitary bone cyst, right pelvis +M85452 Solitary bone cyst, left pelvis +M85459 Solitary bone cyst, unspecified pelvis +M85461 Solitary bone cyst, right tibia and fibula +M85462 Solitary bone cyst, left tibia and fibula +M85469 Solitary bone cyst, unspecified tibia and fibula +M85471 Solitary bone cyst, right ankle and foot +M85472 Solitary bone cyst, left ankle and foot +M85479 Solitary bone cyst, unspecified ankle and foot +M8548 Solitary bone cyst, other site +M8550 Aneurysmal bone cyst, unspecified site +M85511 Aneurysmal bone cyst, right shoulder +M85512 Aneurysmal bone cyst, left shoulder +M85519 Aneurysmal bone cyst, unspecified shoulder +M85521 Aneurysmal bone cyst, right upper arm +M85522 Aneurysmal bone cyst, left upper arm +M85529 Aneurysmal bone cyst, unspecified upper arm +M85531 Aneurysmal bone cyst, right forearm +M85532 Aneurysmal bone cyst, left forearm +M85539 Aneurysmal bone cyst, unspecified forearm +M85541 Aneurysmal bone cyst, right hand +M85542 Aneurysmal bone cyst, left hand +M85549 Aneurysmal bone cyst, unspecified hand +M85551 Aneurysmal bone cyst, right thigh +M85552 Aneurysmal bone cyst, left thigh +M85559 Aneurysmal bone cyst, unspecified thigh +M85561 Aneurysmal bone cyst, right lower leg +M85562 Aneurysmal bone cyst, left lower leg +M85569 Aneurysmal bone cyst, unspecified lower leg +M85571 Aneurysmal bone cyst, right ankle and foot +M85572 Aneurysmal bone cyst, left ankle and foot +M85579 Aneurysmal bone cyst, unspecified ankle and foot +M8558 Aneurysmal bone cyst, other site +M8559 Aneurysmal bone cyst, multiple sites +M8560 Other cyst of bone, unspecified site +M85611 Other cyst of bone, right shoulder +M85612 Other cyst of bone, left shoulder +M85619 Other cyst of bone, unspecified shoulder +M85621 Other cyst of bone, right upper arm +M85622 Other cyst of bone, left upper arm +M85629 Other cyst of bone, unspecified upper arm +M85631 Other cyst of bone, right forearm +M85632 Other cyst of bone, left forearm +M85639 Other cyst of bone, unspecified forearm +M85641 Other cyst of bone, right hand +M85642 Other cyst of bone, left hand +M85649 Other cyst of bone, unspecified hand +M85651 Other cyst of bone, right thigh +M85652 Other cyst of bone, left thigh +M85659 Other cyst of bone, unspecified thigh +M85661 Other cyst of bone, right lower leg +M85662 Other cyst of bone, left lower leg +M85669 Other cyst of bone, unspecified lower leg +M85671 Other cyst of bone, right ankle and foot +M85672 Other cyst of bone, left ankle and foot +M85679 Other cyst of bone, unspecified ankle and foot +M8568 Other cyst of bone, other site +M8569 Other cyst of bone, multiple sites +M8580 Other specified disorders of bone density and structure, unspecified site +M85811 Other specified disorders of bone density and structure, right shoulder +M85812 Other specified disorders of bone density and structure, left shoulder +M85819 Other specified disorders of bone density and structure, unspecified shoulder +M85821 Other specified disorders of bone density and structure, right upper arm +M85822 Other specified disorders of bone density and structure, left upper arm +M85829 Other specified disorders of bone density and structure, unspecified upper arm +M85831 Other specified disorders of bone density and structure, right forearm +M85832 Other specified disorders of bone density and structure, left forearm +M85839 Other specified disorders of bone density and structure, unspecified forearm +M85841 Other specified disorders of bone density and structure, right hand +M85842 Other specified disorders of bone density and structure, left hand +M85849 Other specified disorders of bone density and structure, unspecified hand +M85851 Other specified disorders of bone density and structure, right thigh +M85852 Other specified disorders of bone density and structure, left thigh +M85859 Other specified disorders of bone density and structure, unspecified thigh +M85861 Other specified disorders of bone density and structure, right lower leg +M85862 Other specified disorders of bone density and structure, left lower leg +M85869 Other specified disorders of bone density and structure, unspecified lower leg +M85871 Other specified disorders of bone density and structure, right ankle and foot +M85872 Other specified disorders of bone density and structure, left ankle and foot +M85879 Other specified disorders of bone density and structure, unspecified ankle and foot +M8588 Other specified disorders of bone density and structure, other site +M8589 Other specified disorders of bone density and structure, multiple sites +M859 Disorder of bone density and structure, unspecified +M8600 Acute hematogenous osteomyelitis, unspecified site +M86011 Acute hematogenous osteomyelitis, right shoulder +M86012 Acute hematogenous osteomyelitis, left shoulder +M86019 Acute hematogenous osteomyelitis, unspecified shoulder +M86021 Acute hematogenous osteomyelitis, right humerus +M86022 Acute hematogenous osteomyelitis, left humerus +M86029 Acute hematogenous osteomyelitis, unspecified humerus +M86031 Acute hematogenous osteomyelitis, right radius and ulna +M86032 Acute hematogenous osteomyelitis, left radius and ulna +M86039 Acute hematogenous osteomyelitis, unspecified radius and ulna +M86041 Acute hematogenous osteomyelitis, right hand +M86042 Acute hematogenous osteomyelitis, left hand +M86049 Acute hematogenous osteomyelitis, unspecified hand +M86051 Acute hematogenous osteomyelitis, right femur +M86052 Acute hematogenous osteomyelitis, left femur +M86059 Acute hematogenous osteomyelitis, unspecified femur +M86061 Acute hematogenous osteomyelitis, right tibia and fibula +M86062 Acute hematogenous osteomyelitis, left tibia and fibula +M86069 Acute hematogenous osteomyelitis, unspecified tibia and fibula +M86071 Acute hematogenous osteomyelitis, right ankle and foot +M86072 Acute hematogenous osteomyelitis, left ankle and foot +M86079 Acute hematogenous osteomyelitis, unspecified ankle and foot +M8608 Acute hematogenous osteomyelitis, other sites +M8609 Acute hematogenous osteomyelitis, multiple sites +M8610 Other acute osteomyelitis, unspecified site +M86111 Other acute osteomyelitis, right shoulder +M86112 Other acute osteomyelitis, left shoulder +M86119 Other acute osteomyelitis, unspecified shoulder +M86121 Other acute osteomyelitis, right humerus +M86122 Other acute osteomyelitis, left humerus +M86129 Other acute osteomyelitis, unspecified humerus +M86131 Other acute osteomyelitis, right radius and ulna +M86132 Other acute osteomyelitis, left radius and ulna +M86139 Other acute osteomyelitis, unspecified radius and ulna +M86141 Other acute osteomyelitis, right hand +M86142 Other acute osteomyelitis, left hand +M86149 Other acute osteomyelitis, unspecified hand +M86151 Other acute osteomyelitis, right femur +M86152 Other acute osteomyelitis, left femur +M86159 Other acute osteomyelitis, unspecified femur +M86161 Other acute osteomyelitis, right tibia and fibula +M86162 Other acute osteomyelitis, left tibia and fibula +M86169 Other acute osteomyelitis, unspecified tibia and fibula +M86171 Other acute osteomyelitis, right ankle and foot +M86172 Other acute osteomyelitis, left ankle and foot +M86179 Other acute osteomyelitis, unspecified ankle and foot +M8618 Other acute osteomyelitis, other site +M8619 Other acute osteomyelitis, multiple sites +M8620 Subacute osteomyelitis, unspecified site +M86211 Subacute osteomyelitis, right shoulder +M86212 Subacute osteomyelitis, left shoulder +M86219 Subacute osteomyelitis, unspecified shoulder +M86221 Subacute osteomyelitis, right humerus +M86222 Subacute osteomyelitis, left humerus +M86229 Subacute osteomyelitis, unspecified humerus +M86231 Subacute osteomyelitis, right radius and ulna +M86232 Subacute osteomyelitis, left radius and ulna +M86239 Subacute osteomyelitis, unspecified radius and ulna +M86241 Subacute osteomyelitis, right hand +M86242 Subacute osteomyelitis, left hand +M86249 Subacute osteomyelitis, unspecified hand +M86251 Subacute osteomyelitis, right femur +M86252 Subacute osteomyelitis, left femur +M86259 Subacute osteomyelitis, unspecified femur +M86261 Subacute osteomyelitis, right tibia and fibula +M86262 Subacute osteomyelitis, left tibia and fibula +M86269 Subacute osteomyelitis, unspecified tibia and fibula +M86271 Subacute osteomyelitis, right ankle and foot +M86272 Subacute osteomyelitis, left ankle and foot +M86279 Subacute osteomyelitis, unspecified ankle and foot +M8628 Subacute osteomyelitis, other site +M8629 Subacute osteomyelitis, multiple sites +M8630 Chronic multifocal osteomyelitis, unspecified site +M86311 Chronic multifocal osteomyelitis, right shoulder +M86312 Chronic multifocal osteomyelitis, left shoulder +M86319 Chronic multifocal osteomyelitis, unspecified shoulder +M86321 Chronic multifocal osteomyelitis, right humerus +M86322 Chronic multifocal osteomyelitis, left humerus +M86329 Chronic multifocal osteomyelitis, unspecified humerus +M86331 Chronic multifocal osteomyelitis, right radius and ulna +M86332 Chronic multifocal osteomyelitis, left radius and ulna +M86339 Chronic multifocal osteomyelitis, unspecified radius and ulna +M86341 Chronic multifocal osteomyelitis, right hand +M86342 Chronic multifocal osteomyelitis, left hand +M86349 Chronic multifocal osteomyelitis, unspecified hand +M86351 Chronic multifocal osteomyelitis, right femur +M86352 Chronic multifocal osteomyelitis, left femur +M86359 Chronic multifocal osteomyelitis, unspecified femur +M86361 Chronic multifocal osteomyelitis, right tibia and fibula +M86362 Chronic multifocal osteomyelitis, left tibia and fibula +M86369 Chronic multifocal osteomyelitis, unspecified tibia and fibula +M86371 Chronic multifocal osteomyelitis, right ankle and foot +M86372 Chronic multifocal osteomyelitis, left ankle and foot +M86379 Chronic multifocal osteomyelitis, unspecified ankle and foot +M8638 Chronic multifocal osteomyelitis, other site +M8639 Chronic multifocal osteomyelitis, multiple sites +M8640 Chronic osteomyelitis with draining sinus, unspecified site +M86411 Chronic osteomyelitis with draining sinus, right shoulder +M86412 Chronic osteomyelitis with draining sinus, left shoulder +M86419 Chronic osteomyelitis with draining sinus, unspecified shoulder +M86421 Chronic osteomyelitis with draining sinus, right humerus +M86422 Chronic osteomyelitis with draining sinus, left humerus +M86429 Chronic osteomyelitis with draining sinus, unspecified humerus +M86431 Chronic osteomyelitis with draining sinus, right radius and ulna +M86432 Chronic osteomyelitis with draining sinus, left radius and ulna +M86439 Chronic osteomyelitis with draining sinus, unspecified radius and ulna +M86441 Chronic osteomyelitis with draining sinus, right hand +M86442 Chronic osteomyelitis with draining sinus, left hand +M86449 Chronic osteomyelitis with draining sinus, unspecified hand +M86451 Chronic osteomyelitis with draining sinus, right femur +M86452 Chronic osteomyelitis with draining sinus, left femur +M86459 Chronic osteomyelitis with draining sinus, unspecified femur +M86461 Chronic osteomyelitis with draining sinus, right tibia and fibula +M86462 Chronic osteomyelitis with draining sinus, left tibia and fibula +M86469 Chronic osteomyelitis with draining sinus, unspecified tibia and fibula +M86471 Chronic osteomyelitis with draining sinus, right ankle and foot +M86472 Chronic osteomyelitis with draining sinus, left ankle and foot +M86479 Chronic osteomyelitis with draining sinus, unspecified ankle and foot +M8648 Chronic osteomyelitis with draining sinus, other site +M8649 Chronic osteomyelitis with draining sinus, multiple sites +M8650 Other chronic hematogenous osteomyelitis, unspecified site +M86511 Other chronic hematogenous osteomyelitis, right shoulder +M86512 Other chronic hematogenous osteomyelitis, left shoulder +M86519 Other chronic hematogenous osteomyelitis, unspecified shoulder +M86521 Other chronic hematogenous osteomyelitis, right humerus +M86522 Other chronic hematogenous osteomyelitis, left humerus +M86529 Other chronic hematogenous osteomyelitis, unspecified humerus +M86531 Other chronic hematogenous osteomyelitis, right radius and ulna +M86532 Other chronic hematogenous osteomyelitis, left radius and ulna +M86539 Other chronic hematogenous osteomyelitis, unspecified radius and ulna +M86541 Other chronic hematogenous osteomyelitis, right hand +M86542 Other chronic hematogenous osteomyelitis, left hand +M86549 Other chronic hematogenous osteomyelitis, unspecified hand +M86551 Other chronic hematogenous osteomyelitis, right femur +M86552 Other chronic hematogenous osteomyelitis, left femur +M86559 Other chronic hematogenous osteomyelitis, unspecified femur +M86561 Other chronic hematogenous osteomyelitis, right tibia and fibula +M86562 Other chronic hematogenous osteomyelitis, left tibia and fibula +M86569 Other chronic hematogenous osteomyelitis, unspecified tibia and fibula +M86571 Other chronic hematogenous osteomyelitis, right ankle and foot +M86572 Other chronic hematogenous osteomyelitis, left ankle and foot +M86579 Other chronic hematogenous osteomyelitis, unspecified ankle and foot +M8658 Other chronic hematogenous osteomyelitis, other site +M8659 Other chronic hematogenous osteomyelitis, multiple sites +M8660 Other chronic osteomyelitis, unspecified site +M86611 Other chronic osteomyelitis, right shoulder +M86612 Other chronic osteomyelitis, left shoulder +M86619 Other chronic osteomyelitis, unspecified shoulder +M86621 Other chronic osteomyelitis, right humerus +M86622 Other chronic osteomyelitis, left humerus +M86629 Other chronic osteomyelitis, unspecified humerus +M86631 Other chronic osteomyelitis, right radius and ulna +M86632 Other chronic osteomyelitis, left radius and ulna +M86639 Other chronic osteomyelitis, unspecified radius and ulna +M86641 Other chronic osteomyelitis, right hand +M86642 Other chronic osteomyelitis, left hand +M86649 Other chronic osteomyelitis, unspecified hand +M86651 Other chronic osteomyelitis, right thigh +M86652 Other chronic osteomyelitis, left thigh +M86659 Other chronic osteomyelitis, unspecified thigh +M86661 Other chronic osteomyelitis, right tibia and fibula +M86662 Other chronic osteomyelitis, left tibia and fibula +M86669 Other chronic osteomyelitis, unspecified tibia and fibula +M86671 Other chronic osteomyelitis, right ankle and foot +M86672 Other chronic osteomyelitis, left ankle and foot +M86679 Other chronic osteomyelitis, unspecified ankle and foot +M8668 Other chronic osteomyelitis, other site +M8669 Other chronic osteomyelitis, multiple sites +M868X0 Other osteomyelitis, multiple sites +M868X1 Other osteomyelitis, shoulder +M868X2 Other osteomyelitis, upper arm +M868X3 Other osteomyelitis, forearm +M868X4 Other osteomyelitis, hand +M868X5 Other osteomyelitis, thigh +M868X6 Other osteomyelitis, lower leg +M868X7 Other osteomyelitis, ankle and foot +M868X8 Other osteomyelitis, other site +M868X9 Other osteomyelitis, unspecified sites +M869 Osteomyelitis, unspecified +M8700 Idiopathic aseptic necrosis of unspecified bone +M87011 Idiopathic aseptic necrosis of right shoulder +M87012 Idiopathic aseptic necrosis of left shoulder +M87019 Idiopathic aseptic necrosis of unspecified shoulder +M87021 Idiopathic aseptic necrosis of right humerus +M87022 Idiopathic aseptic necrosis of left humerus +M87029 Idiopathic aseptic necrosis of unspecified humerus +M87031 Idiopathic aseptic necrosis of right radius +M87032 Idiopathic aseptic necrosis of left radius +M87033 Idiopathic aseptic necrosis of unspecified radius +M87034 Idiopathic aseptic necrosis of right ulna +M87035 Idiopathic aseptic necrosis of left ulna +M87036 Idiopathic aseptic necrosis of unspecified ulna +M87037 Idiopathic aseptic necrosis of right carpus +M87038 Idiopathic aseptic necrosis of left carpus +M87039 Idiopathic aseptic necrosis of unspecified carpus +M87041 Idiopathic aseptic necrosis of right hand +M87042 Idiopathic aseptic necrosis of left hand +M87043 Idiopathic aseptic necrosis of unspecified hand +M87044 Idiopathic aseptic necrosis of right finger(s) +M87045 Idiopathic aseptic necrosis of left finger(s) +M87046 Idiopathic aseptic necrosis of unspecified finger(s) +M87050 Idiopathic aseptic necrosis of pelvis +M87051 Idiopathic aseptic necrosis of right femur +M87052 Idiopathic aseptic necrosis of left femur +M87059 Idiopathic aseptic necrosis of unspecified femur +M87061 Idiopathic aseptic necrosis of right tibia +M87062 Idiopathic aseptic necrosis of left tibia +M87063 Idiopathic aseptic necrosis of unspecified tibia +M87064 Idiopathic aseptic necrosis of right fibula +M87065 Idiopathic aseptic necrosis of left fibula +M87066 Idiopathic aseptic necrosis of unspecified fibula +M87071 Idiopathic aseptic necrosis of right ankle +M87072 Idiopathic aseptic necrosis of left ankle +M87073 Idiopathic aseptic necrosis of unspecified ankle +M87074 Idiopathic aseptic necrosis of right foot +M87075 Idiopathic aseptic necrosis of left foot +M87076 Idiopathic aseptic necrosis of unspecified foot +M87077 Idiopathic aseptic necrosis of right toe(s) +M87078 Idiopathic aseptic necrosis of left toe(s) +M87079 Idiopathic aseptic necrosis of unspecified toe(s) +M8708 Idiopathic aseptic necrosis of bone, other site +M8709 Idiopathic aseptic necrosis of bone, multiple sites +M8710 Osteonecrosis due to drugs, unspecified bone +M87111 Osteonecrosis due to drugs, right shoulder +M87112 Osteonecrosis due to drugs, left shoulder +M87119 Osteonecrosis due to drugs, unspecified shoulder +M87121 Osteonecrosis due to drugs, right humerus +M87122 Osteonecrosis due to drugs, left humerus +M87129 Osteonecrosis due to drugs, unspecified humerus +M87131 Osteonecrosis due to drugs of right radius +M87132 Osteonecrosis due to drugs of left radius +M87133 Osteonecrosis due to drugs of unspecified radius +M87134 Osteonecrosis due to drugs of right ulna +M87135 Osteonecrosis due to drugs of left ulna +M87136 Osteonecrosis due to drugs of unspecified ulna +M87137 Osteonecrosis due to drugs of right carpus +M87138 Osteonecrosis due to drugs of left carpus +M87139 Osteonecrosis due to drugs of unspecified carpus +M87141 Osteonecrosis due to drugs, right hand +M87142 Osteonecrosis due to drugs, left hand +M87143 Osteonecrosis due to drugs, unspecified hand +M87144 Osteonecrosis due to drugs, right finger(s) +M87145 Osteonecrosis due to drugs, left finger(s) +M87146 Osteonecrosis due to drugs, unspecified finger(s) +M87150 Osteonecrosis due to drugs, pelvis +M87151 Osteonecrosis due to drugs, right femur +M87152 Osteonecrosis due to drugs, left femur +M87159 Osteonecrosis due to drugs, unspecified femur +M87161 Osteonecrosis due to drugs, right tibia +M87162 Osteonecrosis due to drugs, left tibia +M87163 Osteonecrosis due to drugs, unspecified tibia +M87164 Osteonecrosis due to drugs, right fibula +M87165 Osteonecrosis due to drugs, left fibula +M87166 Osteonecrosis due to drugs, unspecified fibula +M87171 Osteonecrosis due to drugs, right ankle +M87172 Osteonecrosis due to drugs, left ankle +M87173 Osteonecrosis due to drugs, unspecified ankle +M87174 Osteonecrosis due to drugs, right foot +M87175 Osteonecrosis due to drugs, left foot +M87176 Osteonecrosis due to drugs, unspecified foot +M87177 Osteonecrosis due to drugs, right toe(s) +M87178 Osteonecrosis due to drugs, left toe(s) +M87179 Osteonecrosis due to drugs, unspecified toe(s) +M87180 Osteonecrosis due to drugs, jaw +M87188 Osteonecrosis due to drugs, other site +M8719 Osteonecrosis due to drugs, multiple sites +M8720 Osteonecrosis due to previous trauma, unspecified bone +M87211 Osteonecrosis due to previous trauma, right shoulder +M87212 Osteonecrosis due to previous trauma, left shoulder +M87219 Osteonecrosis due to previous trauma, unspecified shoulder +M87221 Osteonecrosis due to previous trauma, right humerus +M87222 Osteonecrosis due to previous trauma, left humerus +M87229 Osteonecrosis due to previous trauma, unspecified humerus +M87231 Osteonecrosis due to previous trauma of right radius +M87232 Osteonecrosis due to previous trauma of left radius +M87233 Osteonecrosis due to previous trauma of unspecified radius +M87234 Osteonecrosis due to previous trauma of right ulna +M87235 Osteonecrosis due to previous trauma of left ulna +M87236 Osteonecrosis due to previous trauma of unspecified ulna +M87237 Osteonecrosis due to previous trauma of right carpus +M87238 Osteonecrosis due to previous trauma of left carpus +M87239 Osteonecrosis due to previous trauma of unspecified carpus +M87241 Osteonecrosis due to previous trauma, right hand +M87242 Osteonecrosis due to previous trauma, left hand +M87243 Osteonecrosis due to previous trauma, unspecified hand +M87244 Osteonecrosis due to previous trauma, right finger(s) +M87245 Osteonecrosis due to previous trauma, left finger(s) +M87246 Osteonecrosis due to previous trauma, unspecified finger(s) +M87250 Osteonecrosis due to previous trauma, pelvis +M87251 Osteonecrosis due to previous trauma, right femur +M87252 Osteonecrosis due to previous trauma, left femur +M87256 Osteonecrosis due to previous trauma, unspecified femur +M87261 Osteonecrosis due to previous trauma, right tibia +M87262 Osteonecrosis due to previous trauma, left tibia +M87263 Osteonecrosis due to previous trauma, unspecified tibia +M87264 Osteonecrosis due to previous trauma, right fibula +M87265 Osteonecrosis due to previous trauma, left fibula +M87266 Osteonecrosis due to previous trauma, unspecified fibula +M87271 Osteonecrosis due to previous trauma, right ankle +M87272 Osteonecrosis due to previous trauma, left ankle +M87273 Osteonecrosis due to previous trauma, unspecified ankle +M87274 Osteonecrosis due to previous trauma, right foot +M87275 Osteonecrosis due to previous trauma, left foot +M87276 Osteonecrosis due to previous trauma, unspecified foot +M87277 Osteonecrosis due to previous trauma, right toe(s) +M87278 Osteonecrosis due to previous trauma, left toe(s) +M87279 Osteonecrosis due to previous trauma, unspecified toe(s) +M8728 Osteonecrosis due to previous trauma, other site +M8729 Osteonecrosis due to previous trauma, multiple sites +M8730 Other secondary osteonecrosis, unspecified bone +M87311 Other secondary osteonecrosis, right shoulder +M87312 Other secondary osteonecrosis, left shoulder +M87319 Other secondary osteonecrosis, unspecified shoulder +M87321 Other secondary osteonecrosis, right humerus +M87322 Other secondary osteonecrosis, left humerus +M87329 Other secondary osteonecrosis, unspecified humerus +M87331 Other secondary osteonecrosis of right radius +M87332 Other secondary osteonecrosis of left radius +M87333 Other secondary osteonecrosis of unspecified radius +M87334 Other secondary osteonecrosis of right ulna +M87335 Other secondary osteonecrosis of left ulna +M87336 Other secondary osteonecrosis of unspecified ulna +M87337 Other secondary osteonecrosis of right carpus +M87338 Other secondary osteonecrosis of left carpus +M87339 Other secondary osteonecrosis of unspecified carpus +M87341 Other secondary osteonecrosis, right hand +M87342 Other secondary osteonecrosis, left hand +M87343 Other secondary osteonecrosis, unspecified hand +M87344 Other secondary osteonecrosis, right finger(s) +M87345 Other secondary osteonecrosis, left finger(s) +M87346 Other secondary osteonecrosis, unspecified finger(s) +M87350 Other secondary osteonecrosis, pelvis +M87351 Other secondary osteonecrosis, right femur +M87352 Other secondary osteonecrosis, left femur +M87353 Other secondary osteonecrosis, unspecified femur +M87361 Other secondary osteonecrosis, right tibia +M87362 Other secondary osteonecrosis, left tibia +M87363 Other secondary osteonecrosis, unspecified tibia +M87364 Other secondary osteonecrosis, right fibula +M87365 Other secondary osteonecrosis, left fibula +M87366 Other secondary osteonecrosis, unspecified fibula +M87371 Other secondary osteonecrosis, right ankle +M87372 Other secondary osteonecrosis, left ankle +M87373 Other secondary osteonecrosis, unspecified ankle +M87374 Other secondary osteonecrosis, right foot +M87375 Other secondary osteonecrosis, left foot +M87376 Other secondary osteonecrosis, unspecified foot +M87377 Other secondary osteonecrosis, right toe(s) +M87378 Other secondary osteonecrosis, left toe(s) +M87379 Other secondary osteonecrosis, unspecified toe(s) +M8738 Other secondary osteonecrosis, other site +M8739 Other secondary osteonecrosis, multiple sites +M8780 Other osteonecrosis, unspecified bone +M87811 Other osteonecrosis, right shoulder +M87812 Other osteonecrosis, left shoulder +M87819 Other osteonecrosis, unspecified shoulder +M87821 Other osteonecrosis, right humerus +M87822 Other osteonecrosis, left humerus +M87829 Other osteonecrosis, unspecified humerus +M87831 Other osteonecrosis of right radius +M87832 Other osteonecrosis of left radius +M87833 Other osteonecrosis of unspecified radius +M87834 Other osteonecrosis of right ulna +M87835 Other osteonecrosis of left ulna +M87836 Other osteonecrosis of unspecified ulna +M87837 Other osteonecrosis of right carpus +M87838 Other osteonecrosis of left carpus +M87839 Other osteonecrosis of unspecified carpus +M87841 Other osteonecrosis, right hand +M87842 Other osteonecrosis, left hand +M87843 Other osteonecrosis, unspecified hand +M87844 Other osteonecrosis, right finger(s) +M87845 Other osteonecrosis, left finger(s) +M87849 Other osteonecrosis, unspecified finger(s) +M87850 Other osteonecrosis, pelvis +M87851 Other osteonecrosis, right femur +M87852 Other osteonecrosis, left femur +M87859 Other osteonecrosis, unspecified femur +M87861 Other osteonecrosis, right tibia +M87862 Other osteonecrosis, left tibia +M87863 Other osteonecrosis, unspecified tibia +M87864 Other osteonecrosis, right fibula +M87865 Other osteonecrosis, left fibula +M87869 Other osteonecrosis, unspecified fibula +M87871 Other osteonecrosis, right ankle +M87872 Other osteonecrosis, left ankle +M87873 Other osteonecrosis, unspecified ankle +M87874 Other osteonecrosis, right foot +M87875 Other osteonecrosis, left foot +M87876 Other osteonecrosis, unspecified foot +M87877 Other osteonecrosis, right toe(s) +M87878 Other osteonecrosis, left toe(s) +M87879 Other osteonecrosis, unspecified toe(s) +M8788 Other osteonecrosis, other site +M8789 Other osteonecrosis, multiple sites +M879 Osteonecrosis, unspecified +M880 Osteitis deformans of skull +M881 Osteitis deformans of vertebrae +M88811 Osteitis deformans of right shoulder +M88812 Osteitis deformans of left shoulder +M88819 Osteitis deformans of unspecified shoulder +M88821 Osteitis deformans of right upper arm +M88822 Osteitis deformans of left upper arm +M88829 Osteitis deformans of unspecified upper arm +M88831 Osteitis deformans of right forearm +M88832 Osteitis deformans of left forearm +M88839 Osteitis deformans of unspecified forearm +M88841 Osteitis deformans of right hand +M88842 Osteitis deformans of left hand +M88849 Osteitis deformans of unspecified hand +M88851 Osteitis deformans of right thigh +M88852 Osteitis deformans of left thigh +M88859 Osteitis deformans of unspecified thigh +M88861 Osteitis deformans of right lower leg +M88862 Osteitis deformans of left lower leg +M88869 Osteitis deformans of unspecified lower leg +M88871 Osteitis deformans of right ankle and foot +M88872 Osteitis deformans of left ankle and foot +M88879 Osteitis deformans of unspecified ankle and foot +M8888 Osteitis deformans of other bones +M8889 Osteitis deformans of multiple sites +M889 Osteitis deformans of unspecified bone +M8900 Algoneurodystrophy, unspecified site +M89011 Algoneurodystrophy, right shoulder +M89012 Algoneurodystrophy, left shoulder +M89019 Algoneurodystrophy, unspecified shoulder +M89021 Algoneurodystrophy, right upper arm +M89022 Algoneurodystrophy, left upper arm +M89029 Algoneurodystrophy, unspecified upper arm +M89031 Algoneurodystrophy, right forearm +M89032 Algoneurodystrophy, left forearm +M89039 Algoneurodystrophy, unspecified forearm +M89041 Algoneurodystrophy, right hand +M89042 Algoneurodystrophy, left hand +M89049 Algoneurodystrophy, unspecified hand +M89051 Algoneurodystrophy, right thigh +M89052 Algoneurodystrophy, left thigh +M89059 Algoneurodystrophy, unspecified thigh +M89061 Algoneurodystrophy, right lower leg +M89062 Algoneurodystrophy, left lower leg +M89069 Algoneurodystrophy, unspecified lower leg +M89071 Algoneurodystrophy, right ankle and foot +M89072 Algoneurodystrophy, left ankle and foot +M89079 Algoneurodystrophy, unspecified ankle and foot +M8908 Algoneurodystrophy, other site +M8909 Algoneurodystrophy, multiple sites +M89121 Complete physeal arrest, right proximal humerus +M89122 Complete physeal arrest, left proximal humerus +M89123 Partial physeal arrest, right proximal humerus +M89124 Partial physeal arrest, left proximal humerus +M89125 Complete physeal arrest, right distal humerus +M89126 Complete physeal arrest, left distal humerus +M89127 Partial physeal arrest, right distal humerus +M89128 Partial physeal arrest, left distal humerus +M89129 Physeal arrest, humerus, unspecified +M89131 Complete physeal arrest, right distal radius +M89132 Complete physeal arrest, left distal radius +M89133 Partial physeal arrest, right distal radius +M89134 Partial physeal arrest, left distal radius +M89138 Other physeal arrest of forearm +M89139 Physeal arrest, forearm, unspecified +M89151 Complete physeal arrest, right proximal femur +M89152 Complete physeal arrest, left proximal femur +M89153 Partial physeal arrest, right proximal femur +M89154 Partial physeal arrest, left proximal femur +M89155 Complete physeal arrest, right distal femur +M89156 Complete physeal arrest, left distal femur +M89157 Partial physeal arrest, right distal femur +M89158 Partial physeal arrest, left distal femur +M89159 Physeal arrest, femur, unspecified +M89160 Complete physeal arrest, right proximal tibia +M89161 Complete physeal arrest, left proximal tibia +M89162 Partial physeal arrest, right proximal tibia +M89163 Partial physeal arrest, left proximal tibia +M89164 Complete physeal arrest, right distal tibia +M89165 Complete physeal arrest, left distal tibia +M89166 Partial physeal arrest, right distal tibia +M89167 Partial physeal arrest, left distal tibia +M89168 Other physeal arrest of lower leg +M89169 Physeal arrest, lower leg, unspecified +M8918 Physeal arrest, other site +M8920 Other disorders of bone development and growth, unspecified site +M89211 Other disorders of bone development and growth, right shoulder +M89212 Other disorders of bone development and growth, left shoulder +M89219 Other disorders of bone development and growth, unspecified shoulder +M89221 Other disorders of bone development and growth, right humerus +M89222 Other disorders of bone development and growth, left humerus +M89229 Other disorders of bone development and growth, unspecified humerus +M89231 Other disorders of bone development and growth, right ulna +M89232 Other disorders of bone development and growth, left ulna +M89233 Other disorders of bone development and growth, right radius +M89234 Other disorders of bone development and growth, left radius +M89239 Other disorders of bone development and growth, unspecified ulna and radius +M89241 Other disorders of bone development and growth, right hand +M89242 Other disorders of bone development and growth, left hand +M89249 Other disorders of bone development and growth, unspecified hand +M89251 Other disorders of bone development and growth, right femur +M89252 Other disorders of bone development and growth, left femur +M89259 Other disorders of bone development and growth, unspecified femur +M89261 Other disorders of bone development and growth, right tibia +M89262 Other disorders of bone development and growth, left tibia +M89263 Other disorders of bone development and growth, right fibula +M89264 Other disorders of bone development and growth, left fibula +M89269 Other disorders of bone development and growth, unspecified lower leg +M89271 Other disorders of bone development and growth, right ankle and foot +M89272 Other disorders of bone development and growth, left ankle and foot +M89279 Other disorders of bone development and growth, unspecified ankle and foot +M8928 Other disorders of bone development and growth, other site +M8929 Other disorders of bone development and growth, multiple sites +M8930 Hypertrophy of bone, unspecified site +M89311 Hypertrophy of bone, right shoulder +M89312 Hypertrophy of bone, left shoulder +M89319 Hypertrophy of bone, unspecified shoulder +M89321 Hypertrophy of bone, right humerus +M89322 Hypertrophy of bone, left humerus +M89329 Hypertrophy of bone, unspecified humerus +M89331 Hypertrophy of bone, right ulna +M89332 Hypertrophy of bone, left ulna +M89333 Hypertrophy of bone, right radius +M89334 Hypertrophy of bone, left radius +M89339 Hypertrophy of bone, unspecified ulna and radius +M89341 Hypertrophy of bone, right hand +M89342 Hypertrophy of bone, left hand +M89349 Hypertrophy of bone, unspecified hand +M89351 Hypertrophy of bone, right femur +M89352 Hypertrophy of bone, left femur +M89359 Hypertrophy of bone, unspecified femur +M89361 Hypertrophy of bone, right tibia +M89362 Hypertrophy of bone, left tibia +M89363 Hypertrophy of bone, right fibula +M89364 Hypertrophy of bone, left fibula +M89369 Hypertrophy of bone, unspecified tibia and fibula +M89371 Hypertrophy of bone, right ankle and foot +M89372 Hypertrophy of bone, left ankle and foot +M89379 Hypertrophy of bone, unspecified ankle and foot +M8938 Hypertrophy of bone, other site +M8939 Hypertrophy of bone, multiple sites +M8940 Other hypertrophic osteoarthropathy, unspecified site +M89411 Other hypertrophic osteoarthropathy, right shoulder +M89412 Other hypertrophic osteoarthropathy, left shoulder +M89419 Other hypertrophic osteoarthropathy, unspecified shoulder +M89421 Other hypertrophic osteoarthropathy, right upper arm +M89422 Other hypertrophic osteoarthropathy, left upper arm +M89429 Other hypertrophic osteoarthropathy, unspecified upper arm +M89431 Other hypertrophic osteoarthropathy, right forearm +M89432 Other hypertrophic osteoarthropathy, left forearm +M89439 Other hypertrophic osteoarthropathy, unspecified forearm +M89441 Other hypertrophic osteoarthropathy, right hand +M89442 Other hypertrophic osteoarthropathy, left hand +M89449 Other hypertrophic osteoarthropathy, unspecified hand +M89451 Other hypertrophic osteoarthropathy, right thigh +M89452 Other hypertrophic osteoarthropathy, left thigh +M89459 Other hypertrophic osteoarthropathy, unspecified thigh +M89461 Other hypertrophic osteoarthropathy, right lower leg +M89462 Other hypertrophic osteoarthropathy, left lower leg +M89469 Other hypertrophic osteoarthropathy, unspecified lower leg +M89471 Other hypertrophic osteoarthropathy, right ankle and foot +M89472 Other hypertrophic osteoarthropathy, left ankle and foot +M89479 Other hypertrophic osteoarthropathy, unspecified ankle and foot +M8948 Other hypertrophic osteoarthropathy, other site +M8949 Other hypertrophic osteoarthropathy, multiple sites +M8950 Osteolysis, unspecified site +M89511 Osteolysis, right shoulder +M89512 Osteolysis, left shoulder +M89519 Osteolysis, unspecified shoulder +M89521 Osteolysis, right upper arm +M89522 Osteolysis, left upper arm +M89529 Osteolysis, unspecified upper arm +M89531 Osteolysis, right forearm +M89532 Osteolysis, left forearm +M89539 Osteolysis, unspecified forearm +M89541 Osteolysis, right hand +M89542 Osteolysis, left hand +M89549 Osteolysis, unspecified hand +M89551 Osteolysis, right thigh +M89552 Osteolysis, left thigh +M89559 Osteolysis, unspecified thigh +M89561 Osteolysis, right lower leg +M89562 Osteolysis, left lower leg +M89569 Osteolysis, unspecified lower leg +M89571 Osteolysis, right ankle and foot +M89572 Osteolysis, left ankle and foot +M89579 Osteolysis, unspecified ankle and foot +M8958 Osteolysis, other site +M8959 Osteolysis, multiple sites +M8960 Osteopathy after poliomyelitis, unspecified site +M89611 Osteopathy after poliomyelitis, right shoulder +M89612 Osteopathy after poliomyelitis, left shoulder +M89619 Osteopathy after poliomyelitis, unspecified shoulder +M89621 Osteopathy after poliomyelitis, right upper arm +M89622 Osteopathy after poliomyelitis, left upper arm +M89629 Osteopathy after poliomyelitis, unspecified upper arm +M89631 Osteopathy after poliomyelitis, right forearm +M89632 Osteopathy after poliomyelitis, left forearm +M89639 Osteopathy after poliomyelitis, unspecified forearm +M89641 Osteopathy after poliomyelitis, right hand +M89642 Osteopathy after poliomyelitis, left hand +M89649 Osteopathy after poliomyelitis, unspecified hand +M89651 Osteopathy after poliomyelitis, right thigh +M89652 Osteopathy after poliomyelitis, left thigh +M89659 Osteopathy after poliomyelitis, unspecified thigh +M89661 Osteopathy after poliomyelitis, right lower leg +M89662 Osteopathy after poliomyelitis, left lower leg +M89669 Osteopathy after poliomyelitis, unspecified lower leg +M89671 Osteopathy after poliomyelitis, right ankle and foot +M89672 Osteopathy after poliomyelitis, left ankle and foot +M89679 Osteopathy after poliomyelitis, unspecified ankle and foot +M8968 Osteopathy after poliomyelitis, other site +M8969 Osteopathy after poliomyelitis, multiple sites +M8970 Major osseous defect, unspecified site +M89711 Major osseous defect, right shoulder region +M89712 Major osseous defect, left shoulder region +M89719 Major osseous defect, unspecified shoulder region +M89721 Major osseous defect, right humerus +M89722 Major osseous defect, left humerus +M89729 Major osseous defect, unspecified humerus +M89731 Major osseous defect, right forearm +M89732 Major osseous defect, left forearm +M89739 Major osseous defect, unspecified forearm +M89741 Major osseous defect, right hand +M89742 Major osseous defect, left hand +M89749 Major osseous defect, unspecified hand +M89751 Major osseous defect, right pelvic region and thigh +M89752 Major osseous defect, left pelvic region and thigh +M89759 Major osseous defect, unspecified pelvic region and thigh +M89761 Major osseous defect, right lower leg +M89762 Major osseous defect, left lower leg +M89769 Major osseous defect, unspecified lower leg +M89771 Major osseous defect, right ankle and foot +M89772 Major osseous defect, left ankle and foot +M89779 Major osseous defect, unspecified ankle and foot +M8978 Major osseous defect, other site +M8979 Major osseous defect, multiple sites +M898X0 Other specified disorders of bone, multiple sites +M898X1 Other specified disorders of bone, shoulder +M898X2 Other specified disorders of bone, upper arm +M898X3 Other specified disorders of bone, forearm +M898X4 Other specified disorders of bone, hand +M898X5 Other specified disorders of bone, thigh +M898X6 Other specified disorders of bone, lower leg +M898X7 Other specified disorders of bone, ankle and foot +M898X8 Other specified disorders of bone, other site +M898X9 Other specified disorders of bone, unspecified site +M899 Disorder of bone, unspecified +M9050 Osteonecrosis in diseases classified elsewhere, unspecified site +M90511 Osteonecrosis in diseases classified elsewhere, right shoulder +M90512 Osteonecrosis in diseases classified elsewhere, left shoulder +M90519 Osteonecrosis in diseases classified elsewhere, unspecified shoulder +M90521 Osteonecrosis in diseases classified elsewhere, right upper arm +M90522 Osteonecrosis in diseases classified elsewhere, left upper arm +M90529 Osteonecrosis in diseases classified elsewhere, unspecified upper arm +M90531 Osteonecrosis in diseases classified elsewhere, right forearm +M90532 Osteonecrosis in diseases classified elsewhere, left forearm +M90539 Osteonecrosis in diseases classified elsewhere, unspecified forearm +M90541 Osteonecrosis in diseases classified elsewhere, right hand +M90542 Osteonecrosis in diseases classified elsewhere, left hand +M90549 Osteonecrosis in diseases classified elsewhere, unspecified hand +M90551 Osteonecrosis in diseases classified elsewhere, right thigh +M90552 Osteonecrosis in diseases classified elsewhere, left thigh +M90559 Osteonecrosis in diseases classified elsewhere, unspecified thigh +M90561 Osteonecrosis in diseases classified elsewhere, right lower leg +M90562 Osteonecrosis in diseases classified elsewhere, left lower leg +M90569 Osteonecrosis in diseases classified elsewhere, unspecified lower leg +M90571 Osteonecrosis in diseases classified elsewhere, right ankle and foot +M90572 Osteonecrosis in diseases classified elsewhere, left ankle and foot +M90579 Osteonecrosis in diseases classified elsewhere, unspecified ankle and foot +M9058 Osteonecrosis in diseases classified elsewhere, other site +M9059 Osteonecrosis in diseases classified elsewhere, multiple sites +M9060 Osteitis deformans in neoplastic diseases, unspecified site +M90611 Osteitis deformans in neoplastic diseases, right shoulder +M90612 Osteitis deformans in neoplastic diseases, left shoulder +M90619 Osteitis deformans in neoplastic diseases, unspecified shoulder +M90621 Osteitis deformans in neoplastic diseases, right upper arm +M90622 Osteitis deformans in neoplastic diseases, left upper arm +M90629 Osteitis deformans in neoplastic diseases, unspecified upper arm +M90631 Osteitis deformans in neoplastic diseases, right forearm +M90632 Osteitis deformans in neoplastic diseases, left forearm +M90639 Osteitis deformans in neoplastic diseases, unspecified forearm +M90641 Osteitis deformans in neoplastic diseases, right hand +M90642 Osteitis deformans in neoplastic diseases, left hand +M90649 Osteitis deformans in neoplastic diseases, unspecified hand +M90651 Osteitis deformans in neoplastic diseases, right thigh +M90652 Osteitis deformans in neoplastic diseases, left thigh +M90659 Osteitis deformans in neoplastic diseases, unspecified thigh +M90661 Osteitis deformans in neoplastic diseases, right lower leg +M90662 Osteitis deformans in neoplastic diseases, left lower leg +M90669 Osteitis deformans in neoplastic diseases, unspecified lower leg +M90671 Osteitis deformans in neoplastic diseases, right ankle and foot +M90672 Osteitis deformans in neoplastic diseases, left ankle and foot +M90679 Osteitis deformans in neoplastic diseases, unspecified ankle and foot +M9068 Osteitis deformans in neoplastic diseases, other site +M9069 Osteitis deformans in neoplastic diseases, multiple sites +M9080 Osteopathy in diseases classified elsewhere, unspecified site +M90811 Osteopathy in diseases classified elsewhere, right shoulder +M90812 Osteopathy in diseases classified elsewhere, left shoulder +M90819 Osteopathy in diseases classified elsewhere, unspecified shoulder +M90821 Osteopathy in diseases classified elsewhere, right upper arm +M90822 Osteopathy in diseases classified elsewhere, left upper arm +M90829 Osteopathy in diseases classified elsewhere, unspecified upper arm +M90831 Osteopathy in diseases classified elsewhere, right forearm +M90832 Osteopathy in diseases classified elsewhere, left forearm +M90839 Osteopathy in diseases classified elsewhere, unspecified forearm +M90841 Osteopathy in diseases classified elsewhere, right hand +M90842 Osteopathy in diseases classified elsewhere, left hand +M90849 Osteopathy in diseases classified elsewhere, unspecified hand +M90851 Osteopathy in diseases classified elsewhere, right thigh +M90852 Osteopathy in diseases classified elsewhere, left thigh +M90859 Osteopathy in diseases classified elsewhere, unspecified thigh +M90861 Osteopathy in diseases classified elsewhere, right lower leg +M90862 Osteopathy in diseases classified elsewhere, left lower leg +M90869 Osteopathy in diseases classified elsewhere, unspecified lower leg +M90871 Osteopathy in diseases classified elsewhere, right ankle and foot +M90872 Osteopathy in diseases classified elsewhere, left ankle and foot +M90879 Osteopathy in diseases classified elsewhere, unspecified ankle and foot +M9088 Osteopathy in diseases classified elsewhere, other site +M9089 Osteopathy in diseases classified elsewhere, multiple sites +M910 Juvenile osteochondrosis of pelvis +M9110 Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], unspecified leg +M9111 Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], right leg +M9112 Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], left leg +M9120 Coxa plana, unspecified hip +M9121 Coxa plana, right hip +M9122 Coxa plana, left hip +M9130 Pseudocoxalgia, unspecified hip +M9131 Pseudocoxalgia, right hip +M9132 Pseudocoxalgia, left hip +M9140 Coxa magna, unspecified hip +M9141 Coxa magna, right hip +M9142 Coxa magna, left hip +M9180 Other juvenile osteochondrosis of hip and pelvis, unspecified leg +M9181 Other juvenile osteochondrosis of hip and pelvis, right leg +M9182 Other juvenile osteochondrosis of hip and pelvis, left leg +M9190 Juvenile osteochondrosis of hip and pelvis, unspecified, unspecified leg +M9191 Juvenile osteochondrosis of hip and pelvis, unspecified, right leg +M9192 Juvenile osteochondrosis of hip and pelvis, unspecified, left leg +M9200 Juvenile osteochondrosis of humerus, unspecified arm +M9201 Juvenile osteochondrosis of humerus, right arm +M9202 Juvenile osteochondrosis of humerus, left arm +M9210 Juvenile osteochondrosis of radius and ulna, unspecified arm +M9211 Juvenile osteochondrosis of radius and ulna, right arm +M9212 Juvenile osteochondrosis of radius and ulna, left arm +M92201 Unspecified juvenile osteochondrosis, right hand +M92202 Unspecified juvenile osteochondrosis, left hand +M92209 Unspecified juvenile osteochondrosis, unspecified hand +M92211 Osteochondrosis (juvenile) of carpal lunate [Kienbock], right hand +M92212 Osteochondrosis (juvenile) of carpal lunate [Kienbock], left hand +M92219 Osteochondrosis (juvenile) of carpal lunate [Kienbock], unspecified hand +M92221 Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], right hand +M92222 Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], left hand +M92229 Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], unspecified hand +M92291 Other juvenile osteochondrosis, right hand +M92292 Other juvenile osteochondrosis, left hand +M92299 Other juvenile osteochondrosis, unspecified hand +M9230 Other juvenile osteochondrosis, unspecified upper limb +M9231 Other juvenile osteochondrosis, right upper limb +M9232 Other juvenile osteochondrosis, left upper limb +M9240 Juvenile osteochondrosis of patella, unspecified knee +M9241 Juvenile osteochondrosis of patella, right knee +M9242 Juvenile osteochondrosis of patella, left knee +M9250 Juvenile osteochondrosis of tibia and fibula, unspecified leg +M9251 Juvenile osteochondrosis of tibia and fibula, right leg +M9252 Juvenile osteochondrosis of tibia and fibula, left leg +M9260 Juvenile osteochondrosis of tarsus, unspecified ankle +M9261 Juvenile osteochondrosis of tarsus, right ankle +M9262 Juvenile osteochondrosis of tarsus, left ankle +M9270 Juvenile osteochondrosis of metatarsus, unspecified foot +M9271 Juvenile osteochondrosis of metatarsus, right foot +M9272 Juvenile osteochondrosis of metatarsus, left foot +M928 Other specified juvenile osteochondrosis +M929 Juvenile osteochondrosis, unspecified +M93001 Unspecified slipped upper femoral epiphysis (nontraumatic), right hip +M93002 Unspecified slipped upper femoral epiphysis (nontraumatic), left hip +M93003 Unspecified slipped upper femoral epiphysis (nontraumatic), unspecified hip +M93011 Acute slipped upper femoral epiphysis (nontraumatic), right hip +M93012 Acute slipped upper femoral epiphysis (nontraumatic), left hip +M93013 Acute slipped upper femoral epiphysis (nontraumatic), unspecified hip +M93021 Chronic slipped upper femoral epiphysis (nontraumatic), right hip +M93022 Chronic slipped upper femoral epiphysis (nontraumatic), left hip +M93023 Chronic slipped upper femoral epiphysis (nontraumatic), unspecified hip +M93031 Acute on chronic slipped upper femoral epiphysis (nontraumatic), right hip +M93032 Acute on chronic slipped upper femoral epiphysis (nontraumatic), left hip +M93033 Acute on chronic slipped upper femoral epiphysis (nontraumatic), unspecified hip +M931 Kienbock's disease of adults +M9320 Osteochondritis dissecans of unspecified site +M93211 Osteochondritis dissecans, right shoulder +M93212 Osteochondritis dissecans, left shoulder +M93219 Osteochondritis dissecans, unspecified shoulder +M93221 Osteochondritis dissecans, right elbow +M93222 Osteochondritis dissecans, left elbow +M93229 Osteochondritis dissecans, unspecified elbow +M93231 Osteochondritis dissecans, right wrist +M93232 Osteochondritis dissecans, left wrist +M93239 Osteochondritis dissecans, unspecified wrist +M93241 Osteochondritis dissecans, joints of right hand +M93242 Osteochondritis dissecans, joints of left hand +M93249 Osteochondritis dissecans, joints of unspecified hand +M93251 Osteochondritis dissecans, right hip +M93252 Osteochondritis dissecans, left hip +M93259 Osteochondritis dissecans, unspecified hip +M93261 Osteochondritis dissecans, right knee +M93262 Osteochondritis dissecans, left knee +M93269 Osteochondritis dissecans, unspecified knee +M93271 Osteochondritis dissecans, right ankle and joints of right foot +M93272 Osteochondritis dissecans, left ankle and joints of left foot +M93279 Osteochondritis dissecans, unspecified ankle and joints of foot +M9328 Osteochondritis dissecans other site +M9329 Osteochondritis dissecans multiple sites +M9380 Other specified osteochondropathies of unspecified site +M93811 Other specified osteochondropathies, right shoulder +M93812 Other specified osteochondropathies, left shoulder +M93819 Other specified osteochondropathies, unspecified shoulder +M93821 Other specified osteochondropathies, right upper arm +M93822 Other specified osteochondropathies, left upper arm +M93829 Other specified osteochondropathies, unspecified upper arm +M93831 Other specified osteochondropathies, right forearm +M93832 Other specified osteochondropathies, left forearm +M93839 Other specified osteochondropathies, unspecified forearm +M93841 Other specified osteochondropathies, right hand +M93842 Other specified osteochondropathies, left hand +M93849 Other specified osteochondropathies, unspecified hand +M93851 Other specified osteochondropathies, right thigh +M93852 Other specified osteochondropathies, left thigh +M93859 Other specified osteochondropathies, unspecified thigh +M93861 Other specified osteochondropathies, right lower leg +M93862 Other specified osteochondropathies, left lower leg +M93869 Other specified osteochondropathies, unspecified lower leg +M93871 Other specified osteochondropathies, right ankle and foot +M93872 Other specified osteochondropathies, left ankle and foot +M93879 Other specified osteochondropathies, unspecified ankle and foot +M9388 Other specified osteochondropathies other +M9389 Other specified osteochondropathies multiple sites +M9390 Osteochondropathy, unspecified of unspecified site +M93911 Osteochondropathy, unspecified, right shoulder +M93912 Osteochondropathy, unspecified, left shoulder +M93919 Osteochondropathy, unspecified, unspecified shoulder +M93921 Osteochondropathy, unspecified, right upper arm +M93922 Osteochondropathy, unspecified, left upper arm +M93929 Osteochondropathy, unspecified, unspecified upper arm +M93931 Osteochondropathy, unspecified, right forearm +M93932 Osteochondropathy, unspecified, left forearm +M93939 Osteochondropathy, unspecified, unspecified forearm +M93941 Osteochondropathy, unspecified, right hand +M93942 Osteochondropathy, unspecified, left hand +M93949 Osteochondropathy, unspecified, unspecified hand +M93951 Osteochondropathy, unspecified, right thigh +M93952 Osteochondropathy, unspecified, left thigh +M93959 Osteochondropathy, unspecified, unspecified thigh +M93961 Osteochondropathy, unspecified, right lower leg +M93962 Osteochondropathy, unspecified, left lower leg +M93969 Osteochondropathy, unspecified, unspecified lower leg +M93971 Osteochondropathy, unspecified, right ankle and foot +M93972 Osteochondropathy, unspecified, left ankle and foot +M93979 Osteochondropathy, unspecified, unspecified ankle and foot +M9398 Osteochondropathy, unspecified other +M9399 Osteochondropathy, unspecified multiple sites +M940 Chondrocostal junction syndrome [Tietze] +M941 Relapsing polychondritis +M9420 Chondromalacia, unspecified site +M94211 Chondromalacia, right shoulder +M94212 Chondromalacia, left shoulder +M94219 Chondromalacia, unspecified shoulder +M94221 Chondromalacia, right elbow +M94222 Chondromalacia, left elbow +M94229 Chondromalacia, unspecified elbow +M94231 Chondromalacia, right wrist +M94232 Chondromalacia, left wrist +M94239 Chondromalacia, unspecified wrist +M94241 Chondromalacia, joints of right hand +M94242 Chondromalacia, joints of left hand +M94249 Chondromalacia, joints of unspecified hand +M94251 Chondromalacia, right hip +M94252 Chondromalacia, left hip +M94259 Chondromalacia, unspecified hip +M94261 Chondromalacia, right knee +M94262 Chondromalacia, left knee +M94269 Chondromalacia, unspecified knee +M94271 Chondromalacia, right ankle and joints of right foot +M94272 Chondromalacia, left ankle and joints of left foot +M94279 Chondromalacia, unspecified ankle and joints of foot +M9428 Chondromalacia, other site +M9429 Chondromalacia, multiple sites +M94351 Chondrolysis, right hip +M94352 Chondrolysis, left hip +M94359 Chondrolysis, unspecified hip +M948X0 Other specified disorders of cartilage, multiple sites +M948X1 Other specified disorders of cartilage, shoulder +M948X2 Other specified disorders of cartilage, upper arm +M948X3 Other specified disorders of cartilage, forearm +M948X4 Other specified disorders of cartilage, hand +M948X5 Other specified disorders of cartilage, thigh +M948X6 Other specified disorders of cartilage, lower leg +M948X7 Other specified disorders of cartilage, ankle and foot +M948X8 Other specified disorders of cartilage, other site +M948X9 Other specified disorders of cartilage, unspecified sites +M949 Disorder of cartilage, unspecified +M950 Acquired deformity of nose +M9510 Cauliflower ear, unspecified ear +M9511 Cauliflower ear, right ear +M9512 Cauliflower ear, left ear +M952 Other acquired deformity of head +M953 Acquired deformity of neck +M954 Acquired deformity of chest and rib +M955 Acquired deformity of pelvis +M958 Other specified acquired deformities of musculoskeletal system +M959 Acquired deformity of musculoskeletal system, unspecified +M960 Pseudarthrosis after fusion or arthrodesis +M961 Postlaminectomy syndrome, not elsewhere classified +M962 Postradiation kyphosis +M963 Postlaminectomy kyphosis +M964 Postsurgical lordosis +M965 Postradiation scoliosis +M96621 Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, right arm +M96622 Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, left arm +M96629 Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified arm +M96631 Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, right arm +M96632 Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, left arm +M96639 Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified arm +M9665 Fracture of pelvis following insertion of orthopedic implant, joint prosthesis, or bone plate +M96661 Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, right leg +M96662 Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, left leg +M96669 Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified leg +M96671 Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, right leg +M96672 Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, left leg +M96679 Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified leg +M9669 Fracture of other bone following insertion of orthopedic implant, joint prosthesis, or bone plate +M96810 Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating a musculoskeletal system procedure +M96811 Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating other procedure +M96820 Accidental puncture and laceration of a musculoskeletal structure during a musculoskeletal system procedure +M96821 Accidental puncture and laceration of a musculoskeletal structure during other procedure +M96830 Postprocedural hemorrhage of a musculoskeletal structure following a musculoskeletal system procedure +M96831 Postprocedural hemorrhage of a musculoskeletal structure following other procedure +M96840 Postprocedural hematoma of a musculoskeletal structure following a musculoskeletal system procedure +M96841 Postprocedural hematoma of a musculoskeletal structure following other procedure +M96842 Postprocedural seroma of a musculoskeletal structure following a musculoskeletal system procedure +M96843 Postprocedural seroma of a musculoskeletal structure following other procedure +M9689 Other intraoperative and postprocedural complications and disorders of the musculoskeletal system +M9701XA Periprosthetic fracture around internal prosthetic right hip joint, initial encounter +M9701XD Periprosthetic fracture around internal prosthetic right hip joint, subsequent encounter +M9701XS Periprosthetic fracture around internal prosthetic right hip joint, sequela +M9702XA Periprosthetic fracture around internal prosthetic left hip joint, initial encounter +M9702XD Periprosthetic fracture around internal prosthetic left hip joint, subsequent encounter +M9702XS Periprosthetic fracture around internal prosthetic left hip joint, sequela +M9711XA Periprosthetic fracture around internal prosthetic right knee joint, initial encounter +M9711XD Periprosthetic fracture around internal prosthetic right knee joint, subsequent encounter +M9711XS Periprosthetic fracture around internal prosthetic right knee joint, sequela +M9712XA Periprosthetic fracture around internal prosthetic left knee joint, initial encounter +M9712XD Periprosthetic fracture around internal prosthetic left knee joint, subsequent encounter +M9712XS Periprosthetic fracture around internal prosthetic left knee joint, sequela +M9721XA Periprosthetic fracture around internal prosthetic right ankle joint, initial encounter +M9721XD Periprosthetic fracture around internal prosthetic right ankle joint, subsequent encounter +M9721XS Periprosthetic fracture around internal prosthetic right ankle joint, sequela +M9722XA Periprosthetic fracture around internal prosthetic left ankle joint, initial encounter +M9722XD Periprosthetic fracture around internal prosthetic left ankle joint, subsequent encounter +M9722XS Periprosthetic fracture around internal prosthetic left ankle joint, sequela +M9731XA Periprosthetic fracture around internal prosthetic right shoulder joint, initial encounter +M9731XD Periprosthetic fracture around internal prosthetic right shoulder joint, subsequent encounter +M9731XS Periprosthetic fracture around internal prosthetic right shoulder joint, sequela +M9732XA Periprosthetic fracture around internal prosthetic left shoulder joint, initial encounter +M9732XD Periprosthetic fracture around internal prosthetic left shoulder joint, subsequent encounter +M9732XS Periprosthetic fracture around internal prosthetic left shoulder joint, sequela +M9741XA Periprosthetic fracture around internal prosthetic right elbow joint, initial encounter +M9741XD Periprosthetic fracture around internal prosthetic right elbow joint, subsequent encounter +M9741XS Periprosthetic fracture around internal prosthetic right elbow joint, sequela +M9742XA Periprosthetic fracture around internal prosthetic left elbow joint, initial encounter +M9742XD Periprosthetic fracture around internal prosthetic left elbow joint, subsequent encounter +M9742XS Periprosthetic fracture around internal prosthetic left elbow joint, sequela +M978XXA Periprosthetic fracture around other internal prosthetic joint, initial encounter +M978XXD Periprosthetic fracture around other internal prosthetic joint, subsequent encounter +M978XXS Periprosthetic fracture around other internal prosthetic joint, sequela +M979XXA Periprosthetic fracture around unspecified internal prosthetic joint, initial encounter +M979XXD Periprosthetic fracture around unspecified internal prosthetic joint, subsequent encounter +M979XXS Periprosthetic fracture around unspecified internal prosthetic joint, sequela +M9900 Segmental and somatic dysfunction of head region +M9901 Segmental and somatic dysfunction of cervical region +M9902 Segmental and somatic dysfunction of thoracic region +M9903 Segmental and somatic dysfunction of lumbar region +M9904 Segmental and somatic dysfunction of sacral region +M9905 Segmental and somatic dysfunction of pelvic region +M9906 Segmental and somatic dysfunction of lower extremity +M9907 Segmental and somatic dysfunction of upper extremity +M9908 Segmental and somatic dysfunction of rib cage +M9909 Segmental and somatic dysfunction of abdomen and other regions +M9910 Subluxation complex (vertebral) of head region +M9911 Subluxation complex (vertebral) of cervical region +M9912 Subluxation complex (vertebral) of thoracic region +M9913 Subluxation complex (vertebral) of lumbar region +M9914 Subluxation complex (vertebral) of sacral region +M9915 Subluxation complex (vertebral) of pelvic region +M9916 Subluxation complex (vertebral) of lower extremity +M9917 Subluxation complex (vertebral) of upper extremity +M9918 Subluxation complex (vertebral) of rib cage +M9919 Subluxation complex (vertebral) of abdomen and other regions +M9920 Subluxation stenosis of neural canal of head region +M9921 Subluxation stenosis of neural canal of cervical region +M9922 Subluxation stenosis of neural canal of thoracic region +M9923 Subluxation stenosis of neural canal of lumbar region +M9924 Subluxation stenosis of neural canal of sacral region +M9925 Subluxation stenosis of neural canal of pelvic region +M9926 Subluxation stenosis of neural canal of lower extremity +M9927 Subluxation stenosis of neural canal of upper extremity +M9928 Subluxation stenosis of neural canal of rib cage +M9929 Subluxation stenosis of neural canal of abdomen and other regions +M9930 Osseous stenosis of neural canal of head region +M9931 Osseous stenosis of neural canal of cervical region +M9932 Osseous stenosis of neural canal of thoracic region +M9933 Osseous stenosis of neural canal of lumbar region +M9934 Osseous stenosis of neural canal of sacral region +M9935 Osseous stenosis of neural canal of pelvic region +M9936 Osseous stenosis of neural canal of lower extremity +M9937 Osseous stenosis of neural canal of upper extremity +M9938 Osseous stenosis of neural canal of rib cage +M9939 Osseous stenosis of neural canal of abdomen and other regions +M9940 Connective tissue stenosis of neural canal of head region +M9941 Connective tissue stenosis of neural canal of cervical region +M9942 Connective tissue stenosis of neural canal of thoracic region +M9943 Connective tissue stenosis of neural canal of lumbar region +M9944 Connective tissue stenosis of neural canal of sacral region +M9945 Connective tissue stenosis of neural canal of pelvic region +M9946 Connective tissue stenosis of neural canal of lower extremity +M9947 Connective tissue stenosis of neural canal of upper extremity +M9948 Connective tissue stenosis of neural canal of rib cage +M9949 Connective tissue stenosis of neural canal of abdomen and other regions +M9950 Intervertebral disc stenosis of neural canal of head region +M9951 Intervertebral disc stenosis of neural canal of cervical region +M9952 Intervertebral disc stenosis of neural canal of thoracic region +M9953 Intervertebral disc stenosis of neural canal of lumbar region +M9954 Intervertebral disc stenosis of neural canal of sacral region +M9955 Intervertebral disc stenosis of neural canal of pelvic region +M9956 Intervertebral disc stenosis of neural canal of lower extremity +M9957 Intervertebral disc stenosis of neural canal of upper extremity +M9958 Intervertebral disc stenosis of neural canal of rib cage +M9959 Intervertebral disc stenosis of neural canal of abdomen and other regions +M9960 Osseous and subluxation stenosis of intervertebral foramina of head region +M9961 Osseous and subluxation stenosis of intervertebral foramina of cervical region +M9962 Osseous and subluxation stenosis of intervertebral foramina of thoracic region +M9963 Osseous and subluxation stenosis of intervertebral foramina of lumbar region +M9964 Osseous and subluxation stenosis of intervertebral foramina of sacral region +M9965 Osseous and subluxation stenosis of intervertebral foramina of pelvic region +M9966 Osseous and subluxation stenosis of intervertebral foramina of lower extremity +M9967 Osseous and subluxation stenosis of intervertebral foramina of upper extremity +M9968 Osseous and subluxation stenosis of intervertebral foramina of rib cage +M9969 Osseous and subluxation stenosis of intervertebral foramina of abdomen and other regions +M9970 Connective tissue and disc stenosis of intervertebral foramina of head region +M9971 Connective tissue and disc stenosis of intervertebral foramina of cervical region +M9972 Connective tissue and disc stenosis of intervertebral foramina of thoracic region +M9973 Connective tissue and disc stenosis of intervertebral foramina of lumbar region +M9974 Connective tissue and disc stenosis of intervertebral foramina of sacral region +M9975 Connective tissue and disc stenosis of intervertebral foramina of pelvic region +M9976 Connective tissue and disc stenosis of intervertebral foramina of lower extremity +M9977 Connective tissue and disc stenosis of intervertebral foramina of upper extremity +M9978 Connective tissue and disc stenosis of intervertebral foramina of rib cage +M9979 Connective tissue and disc stenosis of intervertebral foramina of abdomen and other regions +M9980 Other biomechanical lesions of head region +M9981 Other biomechanical lesions of cervical region +M9982 Other biomechanical lesions of thoracic region +M9983 Other biomechanical lesions of lumbar region +M9984 Other biomechanical lesions of sacral region +M9985 Other biomechanical lesions of pelvic region +M9986 Other biomechanical lesions of lower extremity +M9987 Other biomechanical lesions of upper extremity +M9988 Other biomechanical lesions of rib cage +M9989 Other biomechanical lesions of abdomen and other regions +M999 Biomechanical lesion, unspecified +N000 Acute nephritic syndrome with minor glomerular abnormality +N001 Acute nephritic syndrome with focal and segmental glomerular lesions +N002 Acute nephritic syndrome with diffuse membranous glomerulonephritis +N003 Acute nephritic syndrome with diffuse mesangial proliferative glomerulonephritis +N004 Acute nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis +N005 Acute nephritic syndrome with diffuse mesangiocapillary glomerulonephritis +N006 Acute nephritic syndrome with dense deposit disease +N007 Acute nephritic syndrome with diffuse crescentic glomerulonephritis +N008 Acute nephritic syndrome with other morphologic changes +N009 Acute nephritic syndrome with unspecified morphologic changes +N010 Rapidly progressive nephritic syndrome with minor glomerular abnormality +N011 Rapidly progressive nephritic syndrome with focal and segmental glomerular lesions +N012 Rapidly progressive nephritic syndrome with diffuse membranous glomerulonephritis +N013 Rapidly progressive nephritic syndrome with diffuse mesangial proliferative glomerulonephritis +N014 Rapidly progressive nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis +N015 Rapidly progressive nephritic syndrome with diffuse mesangiocapillary glomerulonephritis +N016 Rapidly progressive nephritic syndrome with dense deposit disease +N017 Rapidly progressive nephritic syndrome with diffuse crescentic glomerulonephritis +N018 Rapidly progressive nephritic syndrome with other morphologic changes +N019 Rapidly progressive nephritic syndrome with unspecified morphologic changes +N020 Recurrent and persistent hematuria with minor glomerular abnormality +N021 Recurrent and persistent hematuria with focal and segmental glomerular lesions +N022 Recurrent and persistent hematuria with diffuse membranous glomerulonephritis +N023 Recurrent and persistent hematuria with diffuse mesangial proliferative glomerulonephritis +N024 Recurrent and persistent hematuria with diffuse endocapillary proliferative glomerulonephritis +N025 Recurrent and persistent hematuria with diffuse mesangiocapillary glomerulonephritis +N026 Recurrent and persistent hematuria with dense deposit disease +N027 Recurrent and persistent hematuria with diffuse crescentic glomerulonephritis +N028 Recurrent and persistent hematuria with other morphologic changes +N029 Recurrent and persistent hematuria with unspecified morphologic changes +N030 Chronic nephritic syndrome with minor glomerular abnormality +N031 Chronic nephritic syndrome with focal and segmental glomerular lesions +N032 Chronic nephritic syndrome with diffuse membranous glomerulonephritis +N033 Chronic nephritic syndrome with diffuse mesangial proliferative glomerulonephritis +N034 Chronic nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis +N035 Chronic nephritic syndrome with diffuse mesangiocapillary glomerulonephritis +N036 Chronic nephritic syndrome with dense deposit disease +N037 Chronic nephritic syndrome with diffuse crescentic glomerulonephritis +N038 Chronic nephritic syndrome with other morphologic changes +N039 Chronic nephritic syndrome with unspecified morphologic changes +N040 Nephrotic syndrome with minor glomerular abnormality +N041 Nephrotic syndrome with focal and segmental glomerular lesions +N042 Nephrotic syndrome with diffuse membranous glomerulonephritis +N043 Nephrotic syndrome with diffuse mesangial proliferative glomerulonephritis +N044 Nephrotic syndrome with diffuse endocapillary proliferative glomerulonephritis +N045 Nephrotic syndrome with diffuse mesangiocapillary glomerulonephritis +N046 Nephrotic syndrome with dense deposit disease +N047 Nephrotic syndrome with diffuse crescentic glomerulonephritis +N048 Nephrotic syndrome with other morphologic changes +N049 Nephrotic syndrome with unspecified morphologic changes +N050 Unspecified nephritic syndrome with minor glomerular abnormality +N051 Unspecified nephritic syndrome with focal and segmental glomerular lesions +N052 Unspecified nephritic syndrome with diffuse membranous glomerulonephritis +N053 Unspecified nephritic syndrome with diffuse mesangial proliferative glomerulonephritis +N054 Unspecified nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis +N055 Unspecified nephritic syndrome with diffuse mesangiocapillary glomerulonephritis +N056 Unspecified nephritic syndrome with dense deposit disease +N057 Unspecified nephritic syndrome with diffuse crescentic glomerulonephritis +N058 Unspecified nephritic syndrome with other morphologic changes +N059 Unspecified nephritic syndrome with unspecified morphologic changes +N060 Isolated proteinuria with minor glomerular abnormality +N061 Isolated proteinuria with focal and segmental glomerular lesions +N062 Isolated proteinuria with diffuse membranous glomerulonephritis +N063 Isolated proteinuria with diffuse mesangial proliferative glomerulonephritis +N064 Isolated proteinuria with diffuse endocapillary proliferative glomerulonephritis +N065 Isolated proteinuria with diffuse mesangiocapillary glomerulonephritis +N066 Isolated proteinuria with dense deposit disease +N067 Isolated proteinuria with diffuse crescentic glomerulonephritis +N068 Isolated proteinuria with other morphologic lesion +N069 Isolated proteinuria with unspecified morphologic lesion +N070 Hereditary nephropathy, not elsewhere classified with minor glomerular abnormality +N071 Hereditary nephropathy, not elsewhere classified with focal and segmental glomerular lesions +N072 Hereditary nephropathy, not elsewhere classified with diffuse membranous glomerulonephritis +N073 Hereditary nephropathy, not elsewhere classified with diffuse mesangial proliferative glomerulonephritis +N074 Hereditary nephropathy, not elsewhere classified with diffuse endocapillary proliferative glomerulonephritis +N075 Hereditary nephropathy, not elsewhere classified with diffuse mesangiocapillary glomerulonephritis +N076 Hereditary nephropathy, not elsewhere classified with dense deposit disease +N077 Hereditary nephropathy, not elsewhere classified with diffuse crescentic glomerulonephritis +N078 Hereditary nephropathy, not elsewhere classified with other morphologic lesions +N079 Hereditary nephropathy, not elsewhere classified with unspecified morphologic lesions +N08 Glomerular disorders in diseases classified elsewhere +N10 Acute pyelonephritis +N110 Nonobstructive reflux-associated chronic pyelonephritis +N111 Chronic obstructive pyelonephritis +N118 Other chronic tubulo-interstitial nephritis +N119 Chronic tubulo-interstitial nephritis, unspecified +N12 Tubulo-interstitial nephritis, not specified as acute or chronic +N130 Hydronephrosis with ureteropelvic junction obstruction +N131 Hydronephrosis with ureteral stricture, not elsewhere classified +N132 Hydronephrosis with renal and ureteral calculous obstruction +N1330 Unspecified hydronephrosis +N1339 Other hydronephrosis +N134 Hydroureter +N135 Crossing vessel and stricture of ureter without hydronephrosis +N136 Pyonephrosis +N1370 Vesicoureteral-reflux, unspecified +N1371 Vesicoureteral-reflux without reflux nephropathy +N13721 Vesicoureteral-reflux with reflux nephropathy without hydroureter, unilateral +N13722 Vesicoureteral-reflux with reflux nephropathy without hydroureter, bilateral +N13729 Vesicoureteral-reflux with reflux nephropathy without hydroureter, unspecified +N13731 Vesicoureteral-reflux with reflux nephropathy with hydroureter, unilateral +N13732 Vesicoureteral-reflux with reflux nephropathy with hydroureter, bilateral +N13739 Vesicoureteral-reflux with reflux nephropathy with hydroureter, unspecified +N138 Other obstructive and reflux uropathy +N139 Obstructive and reflux uropathy, unspecified Y +N140 Analgesic nephropathy +N141 Nephropathy induced by other drugs, medicaments and biological substances +N142 Nephropathy induced by unspecified drug, medicament or biological substance +N143 Nephropathy induced by heavy metals +N144 Toxic nephropathy, not elsewhere classified +N150 Balkan nephropathy +N151 Renal and perinephric abscess +N158 Other specified renal tubulo-interstitial diseases +N159 Renal tubulo-interstitial disease, unspecified +N16 Renal tubulo-interstitial disorders in diseases classified elsewhere +N170 Acute kidney failure with tubular necrosis Y +N171 Acute kidney failure with acute cortical necrosis Y +N172 Acute kidney failure with medullary necrosis Y +N178 Other acute kidney failure Y +N179 Acute kidney failure, unspecified Y +N181 Chronic kidney disease, stage 1 Y +N182 Chronic kidney disease, stage 2 (mild) Y +N183 Chronic kidney disease, stage 3 (moderate) Y +N184 Chronic kidney disease, stage 4 (severe) Y +N185 Chronic kidney disease, stage 5 Y +N186 End stage renal disease Y +N189 Chronic kidney disease, unspecified Y +N19 Unspecified kidney failure +N200 Calculus of kidney +N201 Calculus of ureter +N202 Calculus of kidney with calculus of ureter +N209 Urinary calculus, unspecified +N210 Calculus in bladder +N211 Calculus in urethra +N218 Other lower urinary tract calculus +N219 Calculus of lower urinary tract, unspecified +N22 Calculus of urinary tract in diseases classified elsewhere +N23 Unspecified renal colic +N250 Renal osteodystrophy +N251 Nephrogenic diabetes insipidus +N2581 Secondary hyperparathyroidism of renal origin +N2589 Other disorders resulting from impaired renal tubular function +N259 Disorder resulting from impaired renal tubular function, unspecified +N261 Atrophy of kidney (terminal) +N262 Page kidney +N269 Renal sclerosis, unspecified +N270 Small kidney, unilateral +N271 Small kidney, bilateral +N279 Small kidney, unspecified +N280 Ischemia and infarction of kidney +N281 Cyst of kidney, acquired +N2881 Hypertrophy of kidney +N2882 Megaloureter +N2883 Nephroptosis +N2884 Pyelitis cystica +N2885 Pyeloureteritis cystica +N2886 Ureteritis cystica +N2889 Other specified disorders of kidney and ureter +N289 Disorder of kidney and ureter, unspecified +N29 Other disorders of kidney and ureter in diseases classified elsewhere +N3000 Acute cystitis without hematuria +N3001 Acute cystitis with hematuria +N3010 Interstitial cystitis (chronic) without hematuria +N3011 Interstitial cystitis (chronic) with hematuria +N3020 Other chronic cystitis without hematuria +N3021 Other chronic cystitis with hematuria +N3030 Trigonitis without hematuria +N3031 Trigonitis with hematuria +N3040 Irradiation cystitis without hematuria +N3041 Irradiation cystitis with hematuria +N3080 Other cystitis without hematuria +N3081 Other cystitis with hematuria +N3090 Cystitis, unspecified without hematuria +N3091 Cystitis, unspecified with hematuria +N310 Uninhibited neuropathic bladder, not elsewhere classified +N311 Reflex neuropathic bladder, not elsewhere classified +N312 Flaccid neuropathic bladder, not elsewhere classified +N318 Other neuromuscular dysfunction of bladder +N319 Neuromuscular dysfunction of bladder, unspecified +N320 Bladder-neck obstruction +N321 Vesicointestinal fistula +N322 Vesical fistula, not elsewhere classified +N323 Diverticulum of bladder +N3281 Overactive bladder +N3289 Other specified disorders of bladder +N329 Bladder disorder, unspecified +N33 Bladder disorders in diseases classified elsewhere +N340 Urethral abscess +N341 Nonspecific urethritis +N342 Other urethritis +N343 Urethral syndrome, unspecified +N35010 Post-traumatic urethral stricture, male, meatal +N35011 Post-traumatic bulbous urethral stricture +N35012 Post-traumatic membranous urethral stricture +N35013 Post-traumatic anterior urethral stricture +N35014 Post-traumatic urethral stricture, male, unspecified +N35016 Post-traumatic urethral stricture, male, overlapping sites +N35021 Urethral stricture due to childbirth +N35028 Other post-traumatic urethral stricture, female +N35111 Postinfective urethral stricture, not elsewhere classified, male, meatal +N35112 Postinfective bulbous urethral stricture, not elsewhere classified, male +N35113 Postinfective membranous urethral stricture, not elsewhere classified, male +N35114 Postinfective anterior urethral stricture, not elsewhere classified, male +N35116 Postinfective urethral stricture, not elsewhere classified, male, overlapping sites +N35119 Postinfective urethral stricture, not elsewhere classified, male, unspecified +N3512 Postinfective urethral stricture, not elsewhere classified, female +N358 Other urethral stricture +N35811 Other urethral stricture, male, meatal +N35812 Other urethral bulbous stricture, male +N35813 Other membranous urethral stricture, male +N35814 Other anterior urethral stricture, male +N35816 Other urethral stricture, male, overlapping sites +N35819 Other urethral stricture, male, unspecified site +N3582 Other urethral stricture, female +N359 Urethral stricture, unspecified +N35911 Unspecified urethral stricture, male, meatal +N35912 Unspecified bulbous urethral stricture, male +N35913 Unspecified membranous urethral stricture, male +N35914 Unspecified anterior urethral stricture, male +N35916 Unspecified urethral stricture, male, overlapping sites +N35919 Unspecified urethral stricture, male, unspecified site +N3592 Unspecified urethral stricture, female +N360 Urethral fistula Y +N361 Urethral diverticulum Y +N362 Urethral caruncle Y +N3641 Hypermobility of urethra Y +N3642 Intrinsic sphincter deficiency (ISD) Y +N3643 Combined hypermobility of urethra and intrinsic sphincter deficiency Y +N3644 Muscular disorders of urethra +N365 Urethral false passage Y +N368 Other specified disorders of urethra Y +N369 Urethral disorder, unspecified Y +N37 Urethral disorders in diseases classified elsewhere +N390 Urinary tract infection, site not specified Y +N393 Stress incontinence (female) (male) +N3941 Urge incontinence +N3942 Incontinence without sensory awareness +N3943 Post-void dribbling +N3944 Nocturnal enuresis +N3945 Continuous leakage +N3946 Mixed incontinence +N39490 Overflow incontinence +N39491 Coital incontinence +N39492 Postural (urinary) incontinence +N39498 Other specified urinary incontinence +N398 Other specified disorders of urinary system Y +N399 Disorder of urinary system, unspecified Y +N400 Benign prostatic hyperplasia without lower urinary tract symptoms +N401 Benign prostatic hyperplasia with lower urinary tract symptoms +N402 Nodular prostate without lower urinary tract symptoms +N403 Nodular prostate with lower urinary tract symptoms +N410 Acute prostatitis +N411 Chronic prostatitis +N412 Abscess of prostate +N413 Prostatocystitis +N414 Granulomatous prostatitis +N418 Other inflammatory diseases of prostate +N419 Inflammatory disease of prostate, unspecified +N420 Calculus of prostate +N421 Congestion and hemorrhage of prostate +N423 Dysplasia of prostate +N4230 Unspecified dysplasia of prostate +N4231 Prostatic intraepithelial neoplasia +N4232 Atypical small acinar proliferation of prostate +N4239 Other dysplasia of prostate +N4281 Prostatodynia syndrome +N4282 Prostatosis syndrome +N4283 Cyst of prostate +N4289 Other specified disorders of prostate +N429 Disorder of prostate, unspecified +N430 Encysted hydrocele +N431 Infected hydrocele +N432 Other hydrocele +N433 Hydrocele, unspecified +N4340 Spermatocele of epididymis, unspecified +N4341 Spermatocele of epididymis, single +N4342 Spermatocele of epididymis, multiple +N4400 Torsion of testis, unspecified +N4401 Extravaginal torsion of spermatic cord +N4402 Intravaginal torsion of spermatic cord +N4403 Torsion of appendix testis +N4404 Torsion of appendix epididymis +N441 Cyst of tunica albuginea testis +N442 Benign cyst of testis +N448 Other noninflammatory disorders of the testis +N451 Epididymitis +N452 Orchitis +N453 Epididymo-orchitis +N454 Abscess of epididymis or testis +N4601 Organic azoospermia +N46021 Azoospermia due to drug therapy +N46022 Azoospermia due to infection +N46023 Azoospermia due to obstruction of efferent ducts +N46024 Azoospermia due to radiation +N46025 Azoospermia due to systemic disease +N46029 Azoospermia due to other extratesticular causes +N4611 Organic oligospermia +N46121 Oligospermia due to drug therapy +N46122 Oligospermia due to infection +N46123 Oligospermia due to obstruction of efferent ducts +N46124 Oligospermia due to radiation +N46125 Oligospermia due to systemic disease +N46129 Oligospermia due to other extratesticular causes +N468 Other male infertility +N469 Male infertility, unspecified +N470 Adherent prepuce, newborn +N471 Phimosis +N472 Paraphimosis +N473 Deficient foreskin +N474 Benign cyst of prepuce +N475 Adhesions of prepuce and glans penis +N476 Balanoposthitis +N477 Other inflammatory diseases of prepuce +N478 Other disorders of prepuce +N480 Leukoplakia of penis +N481 Balanitis +N4821 Abscess of corpus cavernosum and penis +N4822 Cellulitis of corpus cavernosum and penis +N4829 Other inflammatory disorders of penis +N4830 Priapism, unspecified +N4831 Priapism due to trauma +N4832 Priapism due to disease classified elsewhere +N4833 Priapism, drug-induced +N4839 Other priapism +N485 Ulcer of penis +N486 Induration penis plastica +N4881 Thrombosis of superficial vein of penis +N4882 Acquired torsion of penis +N4883 Acquired buried penis +N4889 Other specified disorders of penis +N489 Disorder of penis, unspecified +N490 Inflammatory disorders of seminal vesicle +N491 Inflammatory disorders of spermatic cord, tunica vaginalis and vas deferens +N492 Inflammatory disorders of scrotum +N493 Fournier gangrene +N498 Inflammatory disorders of other specified male genital organs +N499 Inflammatory disorder of unspecified male genital organ +N500 Atrophy of testis +N501 Vascular disorders of male genital organs +N503 Cyst of epididymis +N508 Other specified disorders of male genital organs +N50811 Right testicular pain +N50812 Left testicular pain +N50819 Testicular pain, unspecified +N5082 Scrotal pain +N5089 Other specified disorders of the male genital organs +N509 Disorder of male genital organs, unspecified +N51 Disorders of male genital organs in diseases classified elsewhere +N5201 Erectile dysfunction due to arterial insufficiency +N5202 Corporo-venous occlusive erectile dysfunction +N5203 Combined arterial insufficiency and corporo-venous occlusive erectile dysfunction +N521 Erectile dysfunction due to diseases classified elsewhere +N522 Drug-induced erectile dysfunction +N5231 Erectile dysfunction following radical prostatectomy +N5232 Erectile dysfunction following radical cystectomy +N5233 Erectile dysfunction following urethral surgery +N5234 Erectile dysfunction following simple prostatectomy +N5235 Erectile dysfunction following radiation therapy +N5236 Erectile dysfunction following interstitial seed therapy +N5237 Erectile dysfunction following prostate ablative therapy +N5239 Other and unspecified postprocedural erectile dysfunction +N528 Other male erectile dysfunction +N529 Male erectile dysfunction, unspecified +N5311 Retarded ejaculation +N5312 Painful ejaculation +N5313 Anejaculatory orgasm +N5314 Retrograde ejaculation +N5319 Other ejaculatory dysfunction +N538 Other male sexual dysfunction +N539 Unspecified male sexual dysfunction +N6001 Solitary cyst of right breast +N6002 Solitary cyst of left breast +N6009 Solitary cyst of unspecified breast +N6011 Diffuse cystic mastopathy of right breast +N6012 Diffuse cystic mastopathy of left breast +N6019 Diffuse cystic mastopathy of unspecified breast +N6021 Fibroadenosis of right breast +N6022 Fibroadenosis of left breast +N6029 Fibroadenosis of unspecified breast +N6031 Fibrosclerosis of right breast +N6032 Fibrosclerosis of left breast +N6039 Fibrosclerosis of unspecified breast +N6041 Mammary duct ectasia of right breast +N6042 Mammary duct ectasia of left breast +N6049 Mammary duct ectasia of unspecified breast +N6081 Other benign mammary dysplasias of right breast +N6082 Other benign mammary dysplasias of left breast +N6089 Other benign mammary dysplasias of unspecified breast +N6091 Unspecified benign mammary dysplasia of right breast +N6092 Unspecified benign mammary dysplasia of left breast +N6099 Unspecified benign mammary dysplasia of unspecified breast +N61 Inflammatory disorders of breast +N610 Mastitis without abscess +N611 Abscess of the breast and nipple +N62 Hypertrophy of breast +N63 Unspecified lump in breast +N630 Unspecified lump in unspecified breast +N6310 Unspecified lump in the right breast, unspecified quadrant +N6311 Unspecified lump in the right breast, upper outer quadrant +N6312 Unspecified lump in the right breast, upper inner quadrant +N6313 Unspecified lump in the right breast, lower outer quadrant +N6314 Unspecified lump in the right breast, lower inner quadrant +N6315 Unspecified lump in the right breast, overlapping quadrants +N6320 Unspecified lump in the left breast, unspecified quadrant +N6321 Unspecified lump in the left breast, upper outer quadrant +N6322 Unspecified lump in the left breast, upper inner quadrant +N6323 Unspecified lump in the left breast, lower outer quadrant +N6324 Unspecified lump in the left breast, lower inner quadrant +N6325 Unspecified lump in the left breast, overlapping quadrants +N6331 Unspecified lump in axillary tail of the right breast +N6332 Unspecified lump in axillary tail of the left breast +N6341 Unspecified lump in right breast, subareolar +N6342 Unspecified lump in left breast, subareolar +N640 Fissure and fistula of nipple +N641 Fat necrosis of breast +N642 Atrophy of breast +N643 Galactorrhea not associated with childbirth +N644 Mastodynia +N6451 Induration of breast +N6452 Nipple discharge +N6453 Retraction of nipple +N6459 Other signs and symptoms in breast +N6481 Ptosis of breast +N6482 Hypoplasia of breast +N6489 Other specified disorders of breast +N649 Disorder of breast, unspecified +N650 Deformity of reconstructed breast +N651 Disproportion of reconstructed breast +N7001 Acute salpingitis +N7002 Acute oophoritis +N7003 Acute salpingitis and oophoritis +N7011 Chronic salpingitis +N7012 Chronic oophoritis +N7013 Chronic salpingitis and oophoritis +N7091 Salpingitis, unspecified +N7092 Oophoritis, unspecified +N7093 Salpingitis and oophoritis, unspecified +N710 Acute inflammatory disease of uterus +N711 Chronic inflammatory disease of uterus +N719 Inflammatory disease of uterus, unspecified +N72 Inflammatory disease of cervix uteri +N730 Acute parametritis and pelvic cellulitis +N731 Chronic parametritis and pelvic cellulitis +N732 Unspecified parametritis and pelvic cellulitis +N733 Female acute pelvic peritonitis +N734 Female chronic pelvic peritonitis +N735 Female pelvic peritonitis, unspecified +N736 Female pelvic peritoneal adhesions (postinfective) +N738 Other specified female pelvic inflammatory diseases +N739 Female pelvic inflammatory disease, unspecified +N74 Female pelvic inflammatory disorders in diseases classified elsewhere +N750 Cyst of Bartholin's gland +N751 Abscess of Bartholin's gland +N758 Other diseases of Bartholin's gland +N759 Disease of Bartholin's gland, unspecified +N760 Acute vaginitis +N761 Subacute and chronic vaginitis +N762 Acute vulvitis +N763 Subacute and chronic vulvitis +N764 Abscess of vulva +N765 Ulceration of vagina +N766 Ulceration of vulva +N7681 Mucositis (ulcerative) of vagina and vulva +N7689 Other specified inflammation of vagina and vulva +N770 Ulceration of vulva in diseases classified elsewhere +N771 Vaginitis, vulvitis and vulvovaginitis in diseases classified elsewhere +N800 Endometriosis of uterus +N801 Endometriosis of ovary +N802 Endometriosis of fallopian tube +N803 Endometriosis of pelvic peritoneum +N804 Endometriosis of rectovaginal septum and vagina +N805 Endometriosis of intestine +N806 Endometriosis in cutaneous scar +N808 Other endometriosis +N809 Endometriosis, unspecified +N810 Urethrocele +N8110 Cystocele, unspecified +N8111 Cystocele, midline +N8112 Cystocele, lateral +N812 Incomplete uterovaginal prolapse +N813 Complete uterovaginal prolapse +N814 Uterovaginal prolapse, unspecified +N815 Vaginal enterocele +N816 Rectocele +N8181 Perineocele +N8182 Incompetence or weakening of pubocervical tissue +N8183 Incompetence or weakening of rectovaginal tissue +N8184 Pelvic muscle wasting +N8185 Cervical stump prolapse +N8189 Other female genital prolapse +N819 Female genital prolapse, unspecified +N820 Vesicovaginal fistula +N821 Other female urinary-genital tract fistulae +N822 Fistula of vagina to small intestine +N823 Fistula of vagina to large intestine +N824 Other female intestinal-genital tract fistulae +N825 Female genital tract-skin fistulae +N828 Other female genital tract fistulae +N829 Female genital tract fistula, unspecified +N830 Follicular cyst of ovary +N8300 Follicular cyst of ovary, unspecified side +N8301 Follicular cyst of right ovary +N8302 Follicular cyst of left ovary +N831 Corpus luteum cyst +N8310 Corpus luteum cyst of ovary, unspecified side +N8311 Corpus luteum cyst of right ovary +N8312 Corpus luteum cyst of left ovary +N8320 Unspecified ovarian cysts +N83201 Unspecified ovarian cyst, right side +N83202 Unspecified ovarian cyst, left side +N83209 Unspecified ovarian cyst, unspecified side +N8329 Other ovarian cysts +N83291 Other ovarian cyst, right side +N83292 Other ovarian cyst, left side +N83299 Other ovarian cyst, unspecified side +N8331 Acquired atrophy of ovary +N83311 Acquired atrophy of right ovary +N83312 Acquired atrophy of left ovary +N83319 Acquired atrophy of ovary, unspecified side +N8332 Acquired atrophy of fallopian tube +N83321 Acquired atrophy of right fallopian tube +N83322 Acquired atrophy of left fallopian tube +N83329 Acquired atrophy of fallopian tube, unspecified side +N8333 Acquired atrophy of ovary and fallopian tube +N83331 Acquired atrophy of right ovary and fallopian tube +N83332 Acquired atrophy of left ovary and fallopian tube +N83339 Acquired atrophy of ovary and fallopian tube, unspecified side +N834 Prolapse and hernia of ovary and fallopian tube +N8340 Prolapse and hernia of ovary and fallopian tube, unspecified side +N8341 Prolapse and hernia of right ovary and fallopian tube +N8342 Prolapse and hernia of left ovary and fallopian tube +N8351 Torsion of ovary and ovarian pedicle +N83511 Torsion of right ovary and ovarian pedicle +N83512 Torsion of left ovary and ovarian pedicle +N83519 Torsion of ovary and ovarian pedicle, unspecified side +N8352 Torsion of fallopian tube +N83521 Torsion of right fallopian tube +N83522 Torsion of left fallopian tube +N83529 Torsion of fallopian tube, unspecified side +N8353 Torsion of ovary, ovarian pedicle and fallopian tube +N836 Hematosalpinx +N837 Hematoma of broad ligament +N838 Other noninflammatory disorders of ovary, fallopian tube and broad ligament +N839 Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified +N840 Polyp of corpus uteri +N841 Polyp of cervix uteri +N842 Polyp of vagina +N843 Polyp of vulva +N848 Polyp of other parts of female genital tract +N849 Polyp of female genital tract, unspecified +N8500 Endometrial hyperplasia, unspecified +N8501 Benign endometrial hyperplasia +N8502 Endometrial intraepithelial neoplasia [EIN] +N852 Hypertrophy of uterus +N853 Subinvolution of uterus +N854 Malposition of uterus +N855 Inversion of uterus +N856 Intrauterine synechiae +N857 Hematometra +N858 Other specified noninflammatory disorders of uterus +N859 Noninflammatory disorder of uterus, unspecified +N86 Erosion and ectropion of cervix uteri +N870 Mild cervical dysplasia +N871 Moderate cervical dysplasia +N879 Dysplasia of cervix uteri, unspecified +N880 Leukoplakia of cervix uteri +N881 Old laceration of cervix uteri +N882 Stricture and stenosis of cervix uteri +N883 Incompetence of cervix uteri +N884 Hypertrophic elongation of cervix uteri +N888 Other specified noninflammatory disorders of cervix uteri +N889 Noninflammatory disorder of cervix uteri, unspecified +N890 Mild vaginal dysplasia +N891 Moderate vaginal dysplasia +N893 Dysplasia of vagina, unspecified +N894 Leukoplakia of vagina +N895 Stricture and atresia of vagina +N896 Tight hymenal ring +N897 Hematocolpos +N898 Other specified noninflammatory disorders of vagina +N899 Noninflammatory disorder of vagina, unspecified +N900 Mild vulvar dysplasia +N901 Moderate vulvar dysplasia +N903 Dysplasia of vulva, unspecified +N904 Leukoplakia of vulva +N905 Atrophy of vulva +N906 Hypertrophy of vulva +N9060 Unspecified hypertrophy of vulva +N9061 Childhood asymmetric labium majus enlargement +N9069 Other specified hypertrophy of vulva +N907 Vulvar cyst +N90810 Female genital mutilation status, unspecified +N90811 Female genital mutilation Type I status +N90812 Female genital mutilation Type II status +N90813 Female genital mutilation Type III status +N90818 Other female genital mutilation status +N9089 Other specified noninflammatory disorders of vulva and perineum +N909 Noninflammatory disorder of vulva and perineum, unspecified +N910 Primary amenorrhea +N911 Secondary amenorrhea +N912 Amenorrhea, unspecified +N913 Primary oligomenorrhea +N914 Secondary oligomenorrhea +N915 Oligomenorrhea, unspecified +N920 Excessive and frequent menstruation with regular cycle +N921 Excessive and frequent menstruation with irregular cycle +N922 Excessive menstruation at puberty +N923 Ovulation bleeding +N924 Excessive bleeding in the premenopausal period +N925 Other specified irregular menstruation +N926 Irregular menstruation, unspecified +N930 Postcoital and contact bleeding +N931 Pre-pubertal vaginal bleeding +N938 Other specified abnormal uterine and vaginal bleeding +N939 Abnormal uterine and vaginal bleeding, unspecified +N940 Mittelschmerz +N941 Dyspareunia +N9410 Unspecified dyspareunia +N9411 Superficial (introital) dyspareunia +N9412 Deep dyspareunia +N9419 Other specified dyspareunia +N942 Vaginismus +N943 Premenstrual tension syndrome +N944 Primary dysmenorrhea +N945 Secondary dysmenorrhea +N946 Dysmenorrhea, unspecified +N94810 Vulvar vestibulitis +N94818 Other vulvodynia +N94819 Vulvodynia, unspecified +N9489 Other specified conditions associated with female genital organs and menstrual cycle +N949 Unspecified condition associated with female genital organs and menstrual cycle +N950 Postmenopausal bleeding +N951 Menopausal and female climacteric states +N952 Postmenopausal atrophic vaginitis +N958 Other specified menopausal and perimenopausal disorders +N959 Unspecified menopausal and perimenopausal disorder +N96 Recurrent pregnancy loss +N970 Female infertility associated with anovulation +N971 Female infertility of tubal origin +N972 Female infertility of uterine origin +N978 Female infertility of other origin +N979 Female infertility, unspecified +N980 Infection associated with artificial insemination +N981 Hyperstimulation of ovaries +N982 Complications of attempted introduction of fertilized ovum following in vitro fertilization +N983 Complications of attempted introduction of embryo in embryo transfer +N988 Other complications associated with artificial fertilization +N989 Complication associated with artificial fertilization, unspecified +N990 Postprocedural (acute) (chronic) kidney failure +N99110 Postprocedural urethral stricture, male, meatal +N99111 Postprocedural bulbous urethral stricture, male +N99112 Postprocedural membranous urethral stricture, male +N99113 Postprocedural anterior bulbous urethral stricture, male +N99114 Postprocedural urethral stricture, male, unspecified +N99115 Postprocedural fossa navicularis urethral stricture +N99116 Postprocedural urethral stricture, male, overlapping sites +N9912 Postprocedural urethral stricture, female +N992 Postprocedural adhesions of vagina +N993 Prolapse of vaginal vault after hysterectomy +N994 Postprocedural pelvic peritoneal adhesions +N99510 Cystostomy hemorrhage +N99511 Cystostomy infection +N99512 Cystostomy malfunction +N99518 Other cystostomy complication +N99520 Hemorrhage of incontinent external stoma of urinary tract +N99521 Infection of incontinent external stoma of urinary tract +N99522 Malfunction of incontinent external stoma of urinary tract +N99523 Herniation of incontinent stoma of urinary tract +N99524 Stenosis of incontinent stoma of urinary tract +N99528 Other complication of incontinent external stoma of urinary tract +N99530 Hemorrhage of continent stoma of urinary tract +N99531 Infection of continent stoma of urinary tract +N99532 Malfunction of continent stoma of urinary tract +N99533 Herniation of continent stoma of urinary tract +N99534 Stenosis of continent stoma of urinary tract +N99538 Other complication of continent stoma of urinary tract +N9961 Intraoperative hemorrhage and hematoma of a genitourinary system organ or structure complicating a genitourinary system procedure +N9962 Intraoperative hemorrhage and hematoma of a genitourinary system organ or structure complicating other procedure +N9971 Accidental puncture and laceration of a genitourinary system organ or structure during a genitourinary system procedure +N9972 Accidental puncture and laceration of a genitourinary system organ or structure during other procedure +N9981 Other intraoperative complications of genitourinary system +N99820 Postprocedural hemorrhage of a genitourinary system organ or structure following a genitourinary system procedure +N99821 Postprocedural hemorrhage of a genitourinary system organ or structure following other procedure +N9983 Residual ovary syndrome +N99840 Postprocedural hematoma of a genitourinary system organ or structure following a genitourinary system procedure +N99841 Postprocedural hematoma of a genitourinary system organ or structure following other procedure +N99842 Postprocedural seroma of a genitourinary system organ or structure following a genitourinary system procedure +N99843 Postprocedural seroma of a genitourinary system organ or structure following other procedure +N9985 Post endometrial ablation syndrome +N9989 Other postprocedural complications and disorders of genitourinary system +NOINJ NO INJURY +O000 Abdominal pregnancy +O0000 Abdominal pregnancy without intrauterine pregnancy +O0001 Abdominal pregnancy with intrauterine pregnancy +O001 Tubal pregnancy +O0010 Tubal pregnancy without intrauterine pregnancy +O00101 Right tubal pregnancy without intrauterine pregnancy +O00102 Left tubal pregnancy without intrauterine pregnancy +O00109 Unspecified tubal pregnancy without intrauterine pregnancy +O0011 Tubal pregnancy with intrauterine pregnancy +O00111 Right tubal pregnancy with intrauterine pregnancy +O00112 Left tubal pregnancy with intrauterine pregnancy +O00119 Unspecified tubal pregnancy with intrauterine pregnancy +O002 Ovarian pregnancy +O0020 Ovarian pregnancy without intrauterine pregnancy +O00201 Right ovarian pregnancy without intrauterine pregnancy +O00202 Left ovarian pregnancy without intrauterine pregnancy +O00209 Unspecified ovarian pregnancy without intrauterine pregnancy +O0021 Ovarian pregnancy with intrauterine pregnancy +O00211 Right ovarian pregnancy with intrauterine pregnancy +O00212 Left ovarian pregnancy with intrauterine pregnancy +O00219 Unspecified ovarian pregnancy with intrauterine pregnancy +O008 Other ectopic pregnancy +O0080 Other ectopic pregnancy without intrauterine pregnancy +O0081 Other ectopic pregnancy with intrauterine pregnancy +O009 Ectopic pregnancy, unspecified +O0090 Unspecified ectopic pregnancy without intrauterine pregnancy +O0091 Unspecified ectopic pregnancy with intrauterine pregnancy +O010 Classical hydatidiform mole +O011 Incomplete and partial hydatidiform mole +O019 Hydatidiform mole, unspecified +O020 Blighted ovum and nonhydatidiform mole +O021 Missed abortion +O0281 Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy +O0289 Other abnormal products of conception +O029 Abnormal product of conception, unspecified +O030 Genital tract and pelvic infection following incomplete spontaneous abortion +O031 Delayed or excessive hemorrhage following incomplete spontaneous abortion +O032 Embolism following incomplete spontaneous abortion +O0330 Unspecified complication following incomplete spontaneous abortion +O0331 Shock following incomplete spontaneous abortion +O0332 Renal failure following incomplete spontaneous abortion +O0333 Metabolic disorder following incomplete spontaneous abortion +O0334 Damage to pelvic organs following incomplete spontaneous abortion +O0335 Other venous complications following incomplete spontaneous abortion +O0336 Cardiac arrest following incomplete spontaneous abortion +O0337 Sepsis following incomplete spontaneous abortion +O0338 Urinary tract infection following incomplete spontaneous abortion +O0339 Incomplete spontaneous abortion with other complications +O034 Incomplete spontaneous abortion without complication +O035 Genital tract and pelvic infection following complete or unspecified spontaneous abortion +O036 Delayed or excessive hemorrhage following complete or unspecified spontaneous abortion +O037 Embolism following complete or unspecified spontaneous abortion +O0380 Unspecified complication following complete or unspecified spontaneous abortion +O0381 Shock following complete or unspecified spontaneous abortion +O0382 Renal failure following complete or unspecified spontaneous abortion +O0383 Metabolic disorder following complete or unspecified spontaneous abortion +O0384 Damage to pelvic organs following complete or unspecified spontaneous abortion +O0385 Other venous complications following complete or unspecified spontaneous abortion +O0386 Cardiac arrest following complete or unspecified spontaneous abortion +O0387 Sepsis following complete or unspecified spontaneous abortion +O0388 Urinary tract infection following complete or unspecified spontaneous abortion +O0389 Complete or unspecified spontaneous abortion with other complications +O039 Complete or unspecified spontaneous abortion without complication +O045 Genital tract and pelvic infection following (induced) termination of pregnancy +O046 Delayed or excessive hemorrhage following (induced) termination of pregnancy +O047 Embolism following (induced) termination of pregnancy +O0480 (Induced) termination of pregnancy with unspecified complications +O0481 Shock following (induced) termination of pregnancy +O0482 Renal failure following (induced) termination of pregnancy +O0483 Metabolic disorder following (induced) termination of pregnancy +O0484 Damage to pelvic organs following (induced) termination of pregnancy +O0485 Other venous complications following (induced) termination of pregnancy +O0486 Cardiac arrest following (induced) termination of pregnancy +O0487 Sepsis following (induced) termination of pregnancy +O0488 Urinary tract infection following (induced) termination of pregnancy +O0489 (Induced) termination of pregnancy with other complications +O070 Genital tract and pelvic infection following failed attempted termination of pregnancy +O071 Delayed or excessive hemorrhage following failed attempted termination of pregnancy +O072 Embolism following failed attempted termination of pregnancy +O0730 Failed attempted termination of pregnancy with unspecified complications +O0731 Shock following failed attempted termination of pregnancy +O0732 Renal failure following failed attempted termination of pregnancy +O0733 Metabolic disorder following failed attempted termination of pregnancy +O0734 Damage to pelvic organs following failed attempted termination of pregnancy +O0735 Other venous complications following failed attempted termination of pregnancy +O0736 Cardiac arrest following failed attempted termination of pregnancy +O0737 Sepsis following failed attempted termination of pregnancy +O0738 Urinary tract infection following failed attempted termination of pregnancy +O0739 Failed attempted termination of pregnancy with other complications +O074 Failed attempted termination of pregnancy without complication +O080 Genital tract and pelvic infection following ectopic and molar pregnancy +O081 Delayed or excessive hemorrhage following ectopic and molar pregnancy +O082 Embolism following ectopic and molar pregnancy +O083 Shock following ectopic and molar pregnancy +O084 Renal failure following ectopic and molar pregnancy +O085 Metabolic disorders following an ectopic and molar pregnancy +O086 Damage to pelvic organs and tissues following an ectopic and molar pregnancy +O087 Other venous complications following an ectopic and molar pregnancy +O0881 Cardiac arrest following an ectopic and molar pregnancy +O0882 Sepsis following ectopic and molar pregnancy +O0883 Urinary tract infection following an ectopic and molar pregnancy +O0889 Other complications following an ectopic and molar pregnancy +O089 Unspecified complication following an ectopic and molar pregnancy +O0900 Supervision of pregnancy with history of infertility, unspecified trimester +O0901 Supervision of pregnancy with history of infertility, first trimester +O0902 Supervision of pregnancy with history of infertility, second trimester +O0903 Supervision of pregnancy with history of infertility, third trimester +O0910 Supervision of pregnancy with history of ectopic, unspecified trimester +O0911 Supervision of pregnancy with history of ectopic, first trimester +O0912 Supervision of pregnancy with history of ectopic, second trimester +O0913 Supervision of pregnancy with history of ectopic, third trimester +O09211 Supervision of pregnancy with history of pre-term labor, first trimester +O09212 Supervision of pregnancy with history of pre-term labor, second trimester +O09213 Supervision of pregnancy with history of pre-term labor, third trimester +O09219 Supervision of pregnancy with history of pre-term labor, unspecified trimester +O09291 Supervision of pregnancy with other poor reproductive or obstetric history, first trimester +O09292 Supervision of pregnancy with other poor reproductive or obstetric history, second trimester +O09293 Supervision of pregnancy with other poor reproductive or obstetric history, third trimester +O09299 Supervision of pregnancy with other poor reproductive or obstetric history, unspecified trimester +O0930 Supervision of pregnancy with insufficient antenatal care, unspecified trimester +O0931 Supervision of pregnancy with insufficient antenatal care, first trimester +O0932 Supervision of pregnancy with insufficient antenatal care, second trimester +O0933 Supervision of pregnancy with insufficient antenatal care, third trimester +O0940 Supervision of pregnancy with grand multiparity, unspecified trimester +O0941 Supervision of pregnancy with grand multiparity, first trimester +O0942 Supervision of pregnancy with grand multiparity, second trimester +O0943 Supervision of pregnancy with grand multiparity, third trimester +O09511 Supervision of elderly primigravida, first trimester +O09512 Supervision of elderly primigravida, second trimester +O09513 Supervision of elderly primigravida, third trimester +O09519 Supervision of elderly primigravida, unspecified trimester +O09521 Supervision of elderly multigravida, first trimester +O09522 Supervision of elderly multigravida, second trimester +O09523 Supervision of elderly multigravida, third trimester +O09529 Supervision of elderly multigravida, unspecified trimester +O09611 Supervision of young primigravida, first trimester +O09612 Supervision of young primigravida, second trimester +O09613 Supervision of young primigravida, third trimester +O09619 Supervision of young primigravida, unspecified trimester +O09621 Supervision of young multigravida, first trimester +O09622 Supervision of young multigravida, second trimester +O09623 Supervision of young multigravida, third trimester +O09629 Supervision of young multigravida, unspecified trimester +O0970 Supervision of high risk pregnancy due to social problems, unspecified trimester +O0971 Supervision of high risk pregnancy due to social problems, first trimester +O0972 Supervision of high risk pregnancy due to social problems, second trimester +O0973 Supervision of high risk pregnancy due to social problems, third trimester +O09811 Supervision of pregnancy resulting from assisted reproductive technology, first trimester +O09812 Supervision of pregnancy resulting from assisted reproductive technology, second trimester +O09813 Supervision of pregnancy resulting from assisted reproductive technology, third trimester +O09819 Supervision of pregnancy resulting from assisted reproductive technology, unspecified trimester +O09821 Supervision of pregnancy with history of in utero procedure during previous pregnancy, first trimester +O09822 Supervision of pregnancy with history of in utero procedure during previous pregnancy, second trimester +O09823 Supervision of pregnancy with history of in utero procedure during previous pregnancy, third trimester +O09829 Supervision of pregnancy with history of in utero procedure during previous pregnancy, unspecified trimester +O09891 Supervision of other high risk pregnancies, first trimester +O09892 Supervision of other high risk pregnancies, second trimester +O09893 Supervision of other high risk pregnancies, third trimester +O09899 Supervision of other high risk pregnancies, unspecified trimester +O0990 Supervision of high risk pregnancy, unspecified, unspecified trimester +O0991 Supervision of high risk pregnancy, unspecified, first trimester +O0992 Supervision of high risk pregnancy, unspecified, second trimester +O0993 Supervision of high risk pregnancy, unspecified, third trimester +O09A0 Supervision of pregnancy with history of molar pregnancy, unspecified trimester +O09A1 Supervision of pregnancy with history of molar pregnancy, first trimester +O09A2 Supervision of pregnancy with history of molar pregnancy, second trimester +O09A3 Supervision of pregnancy with history of molar pregnancy, third trimester +O10011 Pre-existing essential hypertension complicating pregnancy, first trimester +O10012 Pre-existing essential hypertension complicating pregnancy, second trimester +O10013 Pre-existing essential hypertension complicating pregnancy, third trimester +O10019 Pre-existing essential hypertension complicating pregnancy, unspecified trimester +O1002 Pre-existing essential hypertension complicating childbirth +O1003 Pre-existing essential hypertension complicating the puerperium +O10111 Pre-existing hypertensive heart disease complicating pregnancy, first trimester +O10112 Pre-existing hypertensive heart disease complicating pregnancy, second trimester +O10113 Pre-existing hypertensive heart disease complicating pregnancy, third trimester +O10119 Pre-existing hypertensive heart disease complicating pregnancy, unspecified trimester +O1012 Pre-existing hypertensive heart disease complicating childbirth +O1013 Pre-existing hypertensive heart disease complicating the puerperium +O10211 Pre-existing hypertensive chronic kidney disease complicating pregnancy, first trimester +O10212 Pre-existing hypertensive chronic kidney disease complicating pregnancy, second trimester +O10213 Pre-existing hypertensive chronic kidney disease complicating pregnancy, third trimester +O10219 Pre-existing hypertensive chronic kidney disease complicating pregnancy, unspecified trimester +O1022 Pre-existing hypertensive chronic kidney disease complicating childbirth +O1023 Pre-existing hypertensive chronic kidney disease complicating the puerperium +O10311 Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, first trimester +O10312 Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, second trimester +O10313 Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, third trimester +O10319 Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, unspecified trimester +O1032 Pre-existing hypertensive heart and chronic kidney disease complicating childbirth +O1033 Pre-existing hypertensive heart and chronic kidney disease complicating the puerperium +O10411 Pre-existing secondary hypertension complicating pregnancy, first trimester +O10412 Pre-existing secondary hypertension complicating pregnancy, second trimester +O10413 Pre-existing secondary hypertension complicating pregnancy, third trimester +O10419 Pre-existing secondary hypertension complicating pregnancy, unspecified trimester +O1042 Pre-existing secondary hypertension complicating childbirth +O1043 Pre-existing secondary hypertension complicating the puerperium +O10911 Unspecified pre-existing hypertension complicating pregnancy, first trimester +O10912 Unspecified pre-existing hypertension complicating pregnancy, second trimester +O10913 Unspecified pre-existing hypertension complicating pregnancy, third trimester +O10919 Unspecified pre-existing hypertension complicating pregnancy, unspecified trimester +O1092 Unspecified pre-existing hypertension complicating childbirth +O1093 Unspecified pre-existing hypertension complicating the puerperium +O111 Pre-existing hypertension with pre-eclampsia, first trimester +O112 Pre-existing hypertension with pre-eclampsia, second trimester +O113 Pre-existing hypertension with pre-eclampsia, third trimester +O114 Pre-existing hypertension with pre-eclampsia, complicating childbirth +O115 Pre-existing hypertension with pre-eclampsia, complicating the puerperium +O119 Pre-existing hypertension with pre-eclampsia, unspecified trimester +O1200 Gestational edema, unspecified trimester +O1201 Gestational edema, first trimester +O1202 Gestational edema, second trimester +O1203 Gestational edema, third trimester +O1204 Gestational edema, complicating childbirth +O1205 Gestational edema, complicating the puerperium +O1210 Gestational proteinuria, unspecified trimester +O1211 Gestational proteinuria, first trimester +O1212 Gestational proteinuria, second trimester +O1213 Gestational proteinuria, third trimester +O1214 Gestational proteinuria, complicating childbirth +O1215 Gestational proteinuria, complicating the puerperium +O1220 Gestational edema with proteinuria, unspecified trimester +O1221 Gestational edema with proteinuria, first trimester +O1222 Gestational edema with proteinuria, second trimester +O1223 Gestational edema with proteinuria, third trimester +O1224 Gestational edema with proteinuria, complicating childbirth +O1225 Gestational edema with proteinuria, complicating the puerperium +O131 Gestational [pregnancy-induced] hypertension without significant proteinuria, first trimester +O132 Gestational [pregnancy-induced] hypertension without significant proteinuria, second trimester +O133 Gestational [pregnancy-induced] hypertension without significant proteinuria, third trimester +O134 Gestational [pregnancy-induced] hypertension without significant proteinuria, complicating childbirth +O135 Gestational [pregnancy-induced] hypertension without significant proteinuria, complicating the puerperium +O139 Gestational [pregnancy-induced] hypertension without significant proteinuria, unspecified trimester +O1400 Mild to moderate pre-eclampsia, unspecified trimester +O1402 Mild to moderate pre-eclampsia, second trimester +O1403 Mild to moderate pre-eclampsia, third trimester +O1404 Mild to moderate pre-eclampsia, complicating childbirth +O1405 Mild to moderate pre-eclampsia, complicating the puerperium +O1410 Severe pre-eclampsia, unspecified trimester +O1412 Severe pre-eclampsia, second trimester +O1413 Severe pre-eclampsia, third trimester +O1414 Severe pre-eclampsia complicating childbirth +O1415 Severe pre-eclampsia, complicating the puerperium +O1420 HELLP syndrome (HELLP), unspecified trimester +O1422 HELLP syndrome (HELLP), second trimester +O1423 HELLP syndrome (HELLP), third trimester +O1424 HELLP syndrome, complicating childbirth +O1425 HELLP syndrome, complicating the puerperium +O1490 Unspecified pre-eclampsia, unspecified trimester +O1492 Unspecified pre-eclampsia, second trimester +O1493 Unspecified pre-eclampsia, third trimester +O1494 Unspecified pre-eclampsia, complicating childbirth +O1495 Unspecified pre-eclampsia, complicating the puerperium +O1500 Eclampsia complicating pregnancy, unspecified trimester +O1502 Eclampsia complicating pregnancy, second trimester +O1503 Eclampsia complicating pregnancy, third trimester +O151 Eclampsia complicating labor +O152 Eclampsia complicating the puerperium +O159 Eclampsia, unspecified as to time period +O161 Unspecified maternal hypertension, first trimester +O162 Unspecified maternal hypertension, second trimester +O163 Unspecified maternal hypertension, third trimester +O164 Unspecified maternal hypertension, complicating childbirth +O165 Unspecified maternal hypertension, complicating the puerperium +O169 Unspecified maternal hypertension, unspecified trimester +O200 Threatened abortion +O208 Other hemorrhage in early pregnancy +O209 Hemorrhage in early pregnancy, unspecified +O210 Mild hyperemesis gravidarum +O211 Hyperemesis gravidarum with metabolic disturbance +O212 Late vomiting of pregnancy +O218 Other vomiting complicating pregnancy +O219 Vomiting of pregnancy, unspecified +O2200 Varicose veins of lower extremity in pregnancy, unspecified trimester +O2201 Varicose veins of lower extremity in pregnancy, first trimester +O2202 Varicose veins of lower extremity in pregnancy, second trimester +O2203 Varicose veins of lower extremity in pregnancy, third trimester +O2210 Genital varices in pregnancy, unspecified trimester +O2211 Genital varices in pregnancy, first trimester +O2212 Genital varices in pregnancy, second trimester +O2213 Genital varices in pregnancy, third trimester +O2220 Superficial thrombophlebitis in pregnancy, unspecified trimester +O2221 Superficial thrombophlebitis in pregnancy, first trimester +O2222 Superficial thrombophlebitis in pregnancy, second trimester +O2223 Superficial thrombophlebitis in pregnancy, third trimester +O2230 Deep phlebothrombosis in pregnancy, unspecified trimester +O2231 Deep phlebothrombosis in pregnancy, first trimester +O2232 Deep phlebothrombosis in pregnancy, second trimester +O2233 Deep phlebothrombosis in pregnancy, third trimester +O2240 Hemorrhoids in pregnancy, unspecified trimester +O2241 Hemorrhoids in pregnancy, first trimester +O2242 Hemorrhoids in pregnancy, second trimester +O2243 Hemorrhoids in pregnancy, third trimester +O2250 Cerebral venous thrombosis in pregnancy, unspecified trimester +O2251 Cerebral venous thrombosis in pregnancy, first trimester +O2252 Cerebral venous thrombosis in pregnancy, second trimester +O2253 Cerebral venous thrombosis in pregnancy, third trimester +O228X1 Other venous complications in pregnancy, first trimester +O228X2 Other venous complications in pregnancy, second trimester +O228X3 Other venous complications in pregnancy, third trimester +O228X9 Other venous complications in pregnancy, unspecified trimester +O2290 Venous complication in pregnancy, unspecified, unspecified trimester +O2291 Venous complication in pregnancy, unspecified, first trimester +O2292 Venous complication in pregnancy, unspecified, second trimester +O2293 Venous complication in pregnancy, unspecified, third trimester +O2300 Infections of kidney in pregnancy, unspecified trimester +O2301 Infections of kidney in pregnancy, first trimester +O2302 Infections of kidney in pregnancy, second trimester +O2303 Infections of kidney in pregnancy, third trimester +O2310 Infections of bladder in pregnancy, unspecified trimester +O2311 Infections of bladder in pregnancy, first trimester +O2312 Infections of bladder in pregnancy, second trimester +O2313 Infections of bladder in pregnancy, third trimester +O2320 Infections of urethra in pregnancy, unspecified trimester +O2321 Infections of urethra in pregnancy, first trimester +O2322 Infections of urethra in pregnancy, second trimester +O2323 Infections of urethra in pregnancy, third trimester +O2330 Infections of other parts of urinary tract in pregnancy, unspecified trimester +O2331 Infections of other parts of urinary tract in pregnancy, first trimester +O2332 Infections of other parts of urinary tract in pregnancy, second trimester +O2333 Infections of other parts of urinary tract in pregnancy, third trimester +O2340 Unspecified infection of urinary tract in pregnancy, unspecified trimester +O2341 Unspecified infection of urinary tract in pregnancy, first trimester +O2342 Unspecified infection of urinary tract in pregnancy, second trimester +O2343 Unspecified infection of urinary tract in pregnancy, third trimester +O23511 Infections of cervix in pregnancy, first trimester +O23512 Infections of cervix in pregnancy, second trimester +O23513 Infections of cervix in pregnancy, third trimester +O23519 Infections of cervix in pregnancy, unspecified trimester +O23521 Salpingo-oophoritis in pregnancy, first trimester +O23522 Salpingo-oophoritis in pregnancy, second trimester +O23523 Salpingo-oophoritis in pregnancy, third trimester +O23529 Salpingo-oophoritis in pregnancy, unspecified trimester +O23591 Infection of other part of genital tract in pregnancy, first trimester +O23592 Infection of other part of genital tract in pregnancy, second trimester +O23593 Infection of other part of genital tract in pregnancy, third trimester +O23599 Infection of other part of genital tract in pregnancy, unspecified trimester +O2390 Unspecified genitourinary tract infection in pregnancy, unspecified trimester +O2391 Unspecified genitourinary tract infection in pregnancy, first trimester +O2392 Unspecified genitourinary tract infection in pregnancy, second trimester +O2393 Unspecified genitourinary tract infection in pregnancy, third trimester +O24011 Pre-existing type 1 diabetes mellitus, in pregnancy, first trimester +O24012 Pre-existing type 1 diabetes mellitus, in pregnancy, second trimester +O24013 Pre-existing type 1 diabetes mellitus, in pregnancy, third trimester +O24019 Pre-existing type 1 diabetes mellitus, in pregnancy, unspecified trimester +O2402 Pre-existing type 1 diabetes mellitus, in childbirth +O2403 Pre-existing type 1 diabetes mellitus, in the puerperium +O24111 Pre-existing type 2 diabetes mellitus, in pregnancy, first trimester +O24112 Pre-existing type 2 diabetes mellitus, in pregnancy, second trimester +O24113 Pre-existing type 2 diabetes mellitus, in pregnancy, third trimester +O24119 Pre-existing type 2 diabetes mellitus, in pregnancy, unspecified trimester +O2412 Pre-existing type 2 diabetes mellitus, in childbirth +O2413 Pre-existing type 2 diabetes mellitus, in the puerperium +O24311 Unspecified pre-existing diabetes mellitus in pregnancy, first trimester +O24312 Unspecified pre-existing diabetes mellitus in pregnancy, second trimester +O24313 Unspecified pre-existing diabetes mellitus in pregnancy, third trimester +O24319 Unspecified pre-existing diabetes mellitus in pregnancy, unspecified trimester +O2432 Unspecified pre-existing diabetes mellitus in childbirth +O2433 Unspecified pre-existing diabetes mellitus in the puerperium +O24410 Gestational diabetes mellitus in pregnancy, diet controlled +O24414 Gestational diabetes mellitus in pregnancy, insulin controlled +O24415 Gestational diabetes mellitus in pregnancy, controlled by oral hypoglycemic drugs +O24419 Gestational diabetes mellitus in pregnancy, unspecified control +O24420 Gestational diabetes mellitus in childbirth, diet controlled +O24424 Gestational diabetes mellitus in childbirth, insulin controlled +O24425 Gestational diabetes mellitus in childbirth, controlled by oral hypoglycemic drugs +O24429 Gestational diabetes mellitus in childbirth, unspecified control +O24430 Gestational diabetes mellitus in the puerperium, diet controlled +O24434 Gestational diabetes mellitus in the puerperium, insulin controlled +O24435 Gestational diabetes mellitus in puerperium, controlled by oral hypoglycemic drugs +O24439 Gestational diabetes mellitus in the puerperium, unspecified control +O24811 Other pre-existing diabetes mellitus in pregnancy, first trimester +O24812 Other pre-existing diabetes mellitus in pregnancy, second trimester +O24813 Other pre-existing diabetes mellitus in pregnancy, third trimester +O24819 Other pre-existing diabetes mellitus in pregnancy, unspecified trimester +O2482 Other pre-existing diabetes mellitus in childbirth +O2483 Other pre-existing diabetes mellitus in the puerperium +O24911 Unspecified diabetes mellitus in pregnancy, first trimester +O24912 Unspecified diabetes mellitus in pregnancy, second trimester +O24913 Unspecified diabetes mellitus in pregnancy, third trimester +O24919 Unspecified diabetes mellitus in pregnancy, unspecified trimester +O2492 Unspecified diabetes mellitus in childbirth +O2493 Unspecified diabetes mellitus in the puerperium +O2510 Malnutrition in pregnancy, unspecified trimester +O2511 Malnutrition in pregnancy, first trimester +O2512 Malnutrition in pregnancy, second trimester +O2513 Malnutrition in pregnancy, third trimester +O252 Malnutrition in childbirth +O253 Malnutrition in the puerperium +O2600 Excessive weight gain in pregnancy, unspecified trimester +O2601 Excessive weight gain in pregnancy, first trimester +O2602 Excessive weight gain in pregnancy, second trimester +O2603 Excessive weight gain in pregnancy, third trimester +O2610 Low weight gain in pregnancy, unspecified trimester +O2611 Low weight gain in pregnancy, first trimester +O2612 Low weight gain in pregnancy, second trimester +O2613 Low weight gain in pregnancy, third trimester +O2620 Pregnancy care for patient with recurrent pregnancy loss, unspecified trimester +O2621 Pregnancy care for patient with recurrent pregnancy loss, first trimester +O2622 Pregnancy care for patient with recurrent pregnancy loss, second trimester +O2623 Pregnancy care for patient with recurrent pregnancy loss, third trimester +O2630 Retained intrauterine contraceptive device in pregnancy, unspecified trimester +O2631 Retained intrauterine contraceptive device in pregnancy, first trimester +O2632 Retained intrauterine contraceptive device in pregnancy, second trimester +O2633 Retained intrauterine contraceptive device in pregnancy, third trimester +O2640 Herpes gestationis, unspecified trimester +O2641 Herpes gestationis, first trimester +O2642 Herpes gestationis, second trimester +O2643 Herpes gestationis, third trimester +O2650 Maternal hypotension syndrome, unspecified trimester +O2651 Maternal hypotension syndrome, first trimester +O2652 Maternal hypotension syndrome, second trimester +O2653 Maternal hypotension syndrome, third trimester +O26611 Liver and biliary tract disorders in pregnancy, first trimester +O26612 Liver and biliary tract disorders in pregnancy, second trimester +O26613 Liver and biliary tract disorders in pregnancy, third trimester +O26619 Liver and biliary tract disorders in pregnancy, unspecified trimester +O2662 Liver and biliary tract disorders in childbirth +O2663 Liver and biliary tract disorders in the puerperium +O26711 Subluxation of symphysis (pubis) in pregnancy, first trimester +O26712 Subluxation of symphysis (pubis) in pregnancy, second trimester +O26713 Subluxation of symphysis (pubis) in pregnancy, third trimester +O26719 Subluxation of symphysis (pubis) in pregnancy, unspecified trimester +O2672 Subluxation of symphysis (pubis) in childbirth +O2673 Subluxation of symphysis (pubis) in the puerperium +O26811 Pregnancy related exhaustion and fatigue, first trimester +O26812 Pregnancy related exhaustion and fatigue, second trimester +O26813 Pregnancy related exhaustion and fatigue, third trimester +O26819 Pregnancy related exhaustion and fatigue, unspecified trimester +O26821 Pregnancy related peripheral neuritis, first trimester +O26822 Pregnancy related peripheral neuritis, second trimester +O26823 Pregnancy related peripheral neuritis, third trimester +O26829 Pregnancy related peripheral neuritis, unspecified trimester +O26831 Pregnancy related renal disease, first trimester +O26832 Pregnancy related renal disease, second trimester +O26833 Pregnancy related renal disease, third trimester +O26839 Pregnancy related renal disease, unspecified trimester +O26841 Uterine size-date discrepancy, first trimester +O26842 Uterine size-date discrepancy, second trimester +O26843 Uterine size-date discrepancy, third trimester +O26849 Uterine size-date discrepancy, unspecified trimester +O26851 Spotting complicating pregnancy, first trimester +O26852 Spotting complicating pregnancy, second trimester +O26853 Spotting complicating pregnancy, third trimester +O26859 Spotting complicating pregnancy, unspecified trimester +O2686 Pruritic urticarial papules and plaques of pregnancy (PUPPP) +O26872 Cervical shortening, second trimester +O26873 Cervical shortening, third trimester +O26879 Cervical shortening, unspecified trimester +O26891 Other specified pregnancy related conditions, first trimester +O26892 Other specified pregnancy related conditions, second trimester +O26893 Other specified pregnancy related conditions, third trimester +O26899 Other specified pregnancy related conditions, unspecified trimester +O2690 Pregnancy related conditions, unspecified, unspecified trimester +O2691 Pregnancy related conditions, unspecified, first trimester +O2692 Pregnancy related conditions, unspecified, second trimester +O2693 Pregnancy related conditions, unspecified, third trimester +O280 Abnormal hematological finding on antenatal screening of mother +O281 Abnormal biochemical finding on antenatal screening of mother +O282 Abnormal cytological finding on antenatal screening of mother +O283 Abnormal ultrasonic finding on antenatal screening of mother +O284 Abnormal radiological finding on antenatal screening of mother +O285 Abnormal chromosomal and genetic finding on antenatal screening of mother +O288 Other abnormal findings on antenatal screening of mother +O289 Unspecified abnormal findings on antenatal screening of mother +O29011 Aspiration pneumonitis due to anesthesia during pregnancy, first trimester +O29012 Aspiration pneumonitis due to anesthesia during pregnancy, second trimester +O29013 Aspiration pneumonitis due to anesthesia during pregnancy, third trimester +O29019 Aspiration pneumonitis due to anesthesia during pregnancy, unspecified trimester +O29021 Pressure collapse of lung due to anesthesia during pregnancy, first trimester +O29022 Pressure collapse of lung due to anesthesia during pregnancy, second trimester +O29023 Pressure collapse of lung due to anesthesia during pregnancy, third trimester +O29029 Pressure collapse of lung due to anesthesia during pregnancy, unspecified trimester +O29091 Other pulmonary complications of anesthesia during pregnancy, first trimester +O29092 Other pulmonary complications of anesthesia during pregnancy, second trimester +O29093 Other pulmonary complications of anesthesia during pregnancy, third trimester +O29099 Other pulmonary complications of anesthesia during pregnancy, unspecified trimester +O29111 Cardiac arrest due to anesthesia during pregnancy, first trimester +O29112 Cardiac arrest due to anesthesia during pregnancy, second trimester +O29113 Cardiac arrest due to anesthesia during pregnancy, third trimester +O29119 Cardiac arrest due to anesthesia during pregnancy, unspecified trimester +O29121 Cardiac failure due to anesthesia during pregnancy, first trimester +O29122 Cardiac failure due to anesthesia during pregnancy, second trimester +O29123 Cardiac failure due to anesthesia during pregnancy, third trimester +O29129 Cardiac failure due to anesthesia during pregnancy, unspecified trimester +O29191 Other cardiac complications of anesthesia during pregnancy, first trimester +O29192 Other cardiac complications of anesthesia during pregnancy, second trimester +O29193 Other cardiac complications of anesthesia during pregnancy, third trimester +O29199 Other cardiac complications of anesthesia during pregnancy, unspecified trimester +O29211 Cerebral anoxia due to anesthesia during pregnancy, first trimester +O29212 Cerebral anoxia due to anesthesia during pregnancy, second trimester +O29213 Cerebral anoxia due to anesthesia during pregnancy, third trimester +O29219 Cerebral anoxia due to anesthesia during pregnancy, unspecified trimester +O29291 Other central nervous system complications of anesthesia during pregnancy, first trimester +O29292 Other central nervous system complications of anesthesia during pregnancy, second trimester +O29293 Other central nervous system complications of anesthesia during pregnancy, third trimester +O29299 Other central nervous system complications of anesthesia during pregnancy, unspecified trimester +O293X1 Toxic reaction to local anesthesia during pregnancy, first trimester +O293X2 Toxic reaction to local anesthesia during pregnancy, second trimester +O293X3 Toxic reaction to local anesthesia during pregnancy, third trimester +O293X9 Toxic reaction to local anesthesia during pregnancy, unspecified trimester +O2940 Spinal and epidural anesthesia induced headache during pregnancy, unspecified trimester +O2941 Spinal and epidural anesthesia induced headache during pregnancy, first trimester +O2942 Spinal and epidural anesthesia induced headache during pregnancy, second trimester +O2943 Spinal and epidural anesthesia induced headache during pregnancy, third trimester +O295X1 Other complications of spinal and epidural anesthesia during pregnancy, first trimester +O295X2 Other complications of spinal and epidural anesthesia during pregnancy, second trimester +O295X3 Other complications of spinal and epidural anesthesia during pregnancy, third trimester +O295X9 Other complications of spinal and epidural anesthesia during pregnancy, unspecified trimester +O2960 Failed or difficult intubation for anesthesia during pregnancy, unspecified trimester +O2961 Failed or difficult intubation for anesthesia during pregnancy, first trimester +O2962 Failed or difficult intubation for anesthesia during pregnancy, second trimester +O2963 Failed or difficult intubation for anesthesia during pregnancy, third trimester +O298X1 Other complications of anesthesia during pregnancy, first trimester +O298X2 Other complications of anesthesia during pregnancy, second trimester +O298X3 Other complications of anesthesia during pregnancy, third trimester +O298X9 Other complications of anesthesia during pregnancy, unspecified trimester +O2990 Unspecified complication of anesthesia during pregnancy, unspecified trimester +O2991 Unspecified complication of anesthesia during pregnancy, first trimester +O2992 Unspecified complication of anesthesia during pregnancy, second trimester +O2993 Unspecified complication of anesthesia during pregnancy, third trimester +O30001 Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester +O30002 Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester +O30003 Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester +O30009 Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester +O30011 Twin pregnancy, monochorionic/monoamniotic, first trimester +O30012 Twin pregnancy, monochorionic/monoamniotic, second trimester +O30013 Twin pregnancy, monochorionic/monoamniotic, third trimester +O30019 Twin pregnancy, monochorionic/monoamniotic, unspecified trimester +O30021 Conjoined twin pregnancy, first trimester +O30022 Conjoined twin pregnancy, second trimester +O30023 Conjoined twin pregnancy, third trimester +O30029 Conjoined twin pregnancy, unspecified trimester +O30031 Twin pregnancy, monochorionic/diamniotic, first trimester +O30032 Twin pregnancy, monochorionic/diamniotic, second trimester +O30033 Twin pregnancy, monochorionic/diamniotic, third trimester +O30039 Twin pregnancy, monochorionic/diamniotic, unspecified trimester +O30041 Twin pregnancy, dichorionic/diamniotic, first trimester +O30042 Twin pregnancy, dichorionic/diamniotic, second trimester +O30043 Twin pregnancy, dichorionic/diamniotic, third trimester +O30049 Twin pregnancy, dichorionic/diamniotic, unspecified trimester +O30091 Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester +O30092 Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester +O30093 Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester +O30099 Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester +O30101 Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester +O30102 Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester +O30103 Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester +O30109 Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester +O30111 Triplet pregnancy with two or more monochorionic fetuses, first trimester +O30112 Triplet pregnancy with two or more monochorionic fetuses, second trimester +O30113 Triplet pregnancy with two or more monochorionic fetuses, third trimester +O30119 Triplet pregnancy with two or more monochorionic fetuses, unspecified trimester +O30121 Triplet pregnancy with two or more monoamniotic fetuses, first trimester +O30122 Triplet pregnancy with two or more monoamniotic fetuses, second trimester +O30123 Triplet pregnancy with two or more monoamniotic fetuses, third trimester +O30129 Triplet pregnancy with two or more monoamniotic fetuses, unspecified trimester +O30131 Triplet pregnancy, trichorionic/triamniotic, first trimester +O30132 Triplet pregnancy, trichorionic/triamniotic, second trimester +O30133 Triplet pregnancy, trichorionic/triamniotic, third trimester +O30139 Triplet pregnancy, trichorionic/triamniotic, unspecified trimester +O30191 Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester +O30192 Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester +O30193 Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester +O30199 Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester +O30201 Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester +O30202 Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester +O30203 Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester +O30209 Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester +O30211 Quadruplet pregnancy with two or more monochorionic fetuses, first trimester +O30212 Quadruplet pregnancy with two or more monochorionic fetuses, second trimester +O30213 Quadruplet pregnancy with two or more monochorionic fetuses, third trimester +O30219 Quadruplet pregnancy with two or more monochorionic fetuses, unspecified trimester +O30221 Quadruplet pregnancy with two or more monoamniotic fetuses, first trimester +O30222 Quadruplet pregnancy with two or more monoamniotic fetuses, second trimester +O30223 Quadruplet pregnancy with two or more monoamniotic fetuses, third trimester +O30229 Quadruplet pregnancy with two or more monoamniotic fetuses, unspecified trimester +O30231 Quadruplet pregnancy, quadrachorionic/quadra-amniotic, first trimester +O30232 Quadruplet pregnancy, quadrachorionic/quadra-amniotic, second trimester +O30233 Quadruplet pregnancy, quadrachorionic/quadra-amniotic, third trimester +O30239 Quadruplet pregnancy, quadrachorionic/quadra-amniotic, unspecified trimester +O30291 Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester +O30292 Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester +O30293 Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester +O30299 Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester +O30801 Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, first trimester +O30802 Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, second trimester +O30803 Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, third trimester +O30809 Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester +O30811 Other specified multiple gestation with two or more monochorionic fetuses, first trimester +O30812 Other specified multiple gestation with two or more monochorionic fetuses, second trimester +O30813 Other specified multiple gestation with two or more monochorionic fetuses, third trimester +O30819 Other specified multiple gestation with two or more monochorionic fetuses, unspecified trimester +O30821 Other specified multiple gestation with two or more monoamniotic fetuses, first trimester +O30822 Other specified multiple gestation with two or more monoamniotic fetuses, second trimester +O30823 Other specified multiple gestation with two or more monoamniotic fetuses, third trimester +O30829 Other specified multiple gestation with two or more monoamniotic fetuses, unspecified trimester +O30831 Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, first trimester +O30832 Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, second trimester +O30833 Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, third trimester +O30839 Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, unspecified trimester +O30891 Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, first trimester +O30892 Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, second trimester +O30893 Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, third trimester +O30899 Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, unspecified trimester +O3090 Multiple gestation, unspecified, unspecified trimester +O3091 Multiple gestation, unspecified, first trimester +O3092 Multiple gestation, unspecified, second trimester +O3093 Multiple gestation, unspecified, third trimester +O3100X0 Papyraceous fetus, unspecified trimester, not applicable or unspecified +O3100X1 Papyraceous fetus, unspecified trimester, fetus 1 +O3100X2 Papyraceous fetus, unspecified trimester, fetus 2 +O3100X3 Papyraceous fetus, unspecified trimester, fetus 3 +O3100X4 Papyraceous fetus, unspecified trimester, fetus 4 +O3100X5 Papyraceous fetus, unspecified trimester, fetus 5 +O3100X9 Papyraceous fetus, unspecified trimester, other fetus +O3101X0 Papyraceous fetus, first trimester, not applicable or unspecified +O3101X1 Papyraceous fetus, first trimester, fetus 1 +O3101X2 Papyraceous fetus, first trimester, fetus 2 +O3101X3 Papyraceous fetus, first trimester, fetus 3 +O3101X4 Papyraceous fetus, first trimester, fetus 4 +O3101X5 Papyraceous fetus, first trimester, fetus 5 +O3101X9 Papyraceous fetus, first trimester, other fetus +O3102X0 Papyraceous fetus, second trimester, not applicable or unspecified +O3102X1 Papyraceous fetus, second trimester, fetus 1 +O3102X2 Papyraceous fetus, second trimester, fetus 2 +O3102X3 Papyraceous fetus, second trimester, fetus 3 +O3102X4 Papyraceous fetus, second trimester, fetus 4 +O3102X5 Papyraceous fetus, second trimester, fetus 5 +O3102X9 Papyraceous fetus, second trimester, other fetus +O3103X0 Papyraceous fetus, third trimester, not applicable or unspecified +O3103X1 Papyraceous fetus, third trimester, fetus 1 +O3103X2 Papyraceous fetus, third trimester, fetus 2 +O3103X3 Papyraceous fetus, third trimester, fetus 3 +O3103X4 Papyraceous fetus, third trimester, fetus 4 +O3103X5 Papyraceous fetus, third trimester, fetus 5 +O3103X9 Papyraceous fetus, third trimester, other fetus +O3110X0 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, not applicable or unspecified +O3110X1 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 1 +O3110X2 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 2 +O3110X3 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 3 +O3110X4 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 4 +O3110X5 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 5 +O3110X9 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, other fetus +O3111X0 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, not applicable or unspecified +O3111X1 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 1 +O3111X2 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 2 +O3111X3 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 3 +O3111X4 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 4 +O3111X5 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 5 +O3111X9 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, other fetus +O3112X0 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, not applicable or unspecified +O3112X1 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 1 +O3112X2 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 2 +O3112X3 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 3 +O3112X4 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 4 +O3112X5 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 5 +O3112X9 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, other fetus +O3113X0 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, not applicable or unspecified +O3113X1 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 1 +O3113X2 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 2 +O3113X3 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 3 +O3113X4 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 4 +O3113X5 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 5 +O3113X9 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, other fetus +O3120X0 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, not applicable or unspecified +O3120X1 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 1 +O3120X2 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 2 +O3120X3 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 3 +O3120X4 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 4 +O3120X5 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 5 +O3120X9 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, other fetus +O3121X0 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, not applicable or unspecified +O3121X1 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 1 +O3121X2 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 2 +O3121X3 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 3 +O3121X4 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 4 +O3121X5 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 5 +O3121X9 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, other fetus +O3122X0 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, not applicable or unspecified +O3122X1 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 1 +O3122X2 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 2 +O3122X3 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 3 +O3122X4 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 4 +O3122X5 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 5 +O3122X9 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, other fetus +O3123X0 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, not applicable or unspecified +O3123X1 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 1 +O3123X2 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 2 +O3123X3 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 3 +O3123X4 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 4 +O3123X5 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 5 +O3123X9 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, other fetus +O3130X0 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, not applicable or unspecified +O3130X1 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 1 +O3130X2 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 2 +O3130X3 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 3 +O3130X4 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 4 +O3130X5 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 5 +O3130X9 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, other fetus +O3131X0 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, not applicable or unspecified +O3131X1 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 1 +O3131X2 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 2 +O3131X3 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 3 +O3131X4 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 4 +O3131X5 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 5 +O3131X9 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, other fetus +O3132X0 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, not applicable or unspecified +O3132X1 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 1 +O3132X2 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 2 +O3132X3 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 3 +O3132X4 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 4 +O3132X5 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 5 +O3132X9 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, other fetus +O3133X0 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, not applicable or unspecified +O3133X1 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 1 +O3133X2 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 2 +O3133X3 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 3 +O3133X4 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 4 +O3133X5 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 5 +O3133X9 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, other fetus +O318X10 Other complications specific to multiple gestation, first trimester, not applicable or unspecified +O318X11 Other complications specific to multiple gestation, first trimester, fetus 1 +O318X12 Other complications specific to multiple gestation, first trimester, fetus 2 +O318X13 Other complications specific to multiple gestation, first trimester, fetus 3 +O318X14 Other complications specific to multiple gestation, first trimester, fetus 4 +O318X15 Other complications specific to multiple gestation, first trimester, fetus 5 +O318X19 Other complications specific to multiple gestation, first trimester, other fetus +O318X20 Other complications specific to multiple gestation, second trimester, not applicable or unspecified +O318X21 Other complications specific to multiple gestation, second trimester, fetus 1 +O318X22 Other complications specific to multiple gestation, second trimester, fetus 2 +O318X23 Other complications specific to multiple gestation, second trimester, fetus 3 +O318X24 Other complications specific to multiple gestation, second trimester, fetus 4 +O318X25 Other complications specific to multiple gestation, second trimester, fetus 5 +O318X29 Other complications specific to multiple gestation, second trimester, other fetus +O318X30 Other complications specific to multiple gestation, third trimester, not applicable or unspecified +O318X31 Other complications specific to multiple gestation, third trimester, fetus 1 +O318X32 Other complications specific to multiple gestation, third trimester, fetus 2 +O318X33 Other complications specific to multiple gestation, third trimester, fetus 3 +O318X34 Other complications specific to multiple gestation, third trimester, fetus 4 +O318X35 Other complications specific to multiple gestation, third trimester, fetus 5 +O318X39 Other complications specific to multiple gestation, third trimester, other fetus +O318X90 Other complications specific to multiple gestation, unspecified trimester, not applicable or unspecified +O318X91 Other complications specific to multiple gestation, unspecified trimester, fetus 1 +O318X92 Other complications specific to multiple gestation, unspecified trimester, fetus 2 +O318X93 Other complications specific to multiple gestation, unspecified trimester, fetus 3 +O318X94 Other complications specific to multiple gestation, unspecified trimester, fetus 4 +O318X95 Other complications specific to multiple gestation, unspecified trimester, fetus 5 +O318X99 Other complications specific to multiple gestation, unspecified trimester, other fetus +O320XX0 Maternal care for unstable lie, not applicable or unspecified +O320XX1 Maternal care for unstable lie, fetus 1 +O320XX2 Maternal care for unstable lie, fetus 2 +O320XX3 Maternal care for unstable lie, fetus 3 +O320XX4 Maternal care for unstable lie, fetus 4 +O320XX5 Maternal care for unstable lie, fetus 5 +O320XX9 Maternal care for unstable lie, other fetus +O321XX0 Maternal care for breech presentation, not applicable or unspecified +O321XX1 Maternal care for breech presentation, fetus 1 +O321XX2 Maternal care for breech presentation, fetus 2 +O321XX3 Maternal care for breech presentation, fetus 3 +O321XX4 Maternal care for breech presentation, fetus 4 +O321XX5 Maternal care for breech presentation, fetus 5 +O321XX9 Maternal care for breech presentation, other fetus +O322XX0 Maternal care for transverse and oblique lie, not applicable or unspecified +O322XX1 Maternal care for transverse and oblique lie, fetus 1 +O322XX2 Maternal care for transverse and oblique lie, fetus 2 +O322XX3 Maternal care for transverse and oblique lie, fetus 3 +O322XX4 Maternal care for transverse and oblique lie, fetus 4 +O322XX5 Maternal care for transverse and oblique lie, fetus 5 +O322XX9 Maternal care for transverse and oblique lie, other fetus +O323XX0 Maternal care for face, brow and chin presentation, not applicable or unspecified +O323XX1 Maternal care for face, brow and chin presentation, fetus 1 +O323XX2 Maternal care for face, brow and chin presentation, fetus 2 +O323XX3 Maternal care for face, brow and chin presentation, fetus 3 +O323XX4 Maternal care for face, brow and chin presentation, fetus 4 +O323XX5 Maternal care for face, brow and chin presentation, fetus 5 +O323XX9 Maternal care for face, brow and chin presentation, other fetus +O324XX0 Maternal care for high head at term, not applicable or unspecified +O324XX1 Maternal care for high head at term, fetus 1 +O324XX2 Maternal care for high head at term, fetus 2 +O324XX3 Maternal care for high head at term, fetus 3 +O324XX4 Maternal care for high head at term, fetus 4 +O324XX5 Maternal care for high head at term, fetus 5 +O324XX9 Maternal care for high head at term, other fetus +O326XX0 Maternal care for compound presentation, not applicable or unspecified +O326XX1 Maternal care for compound presentation, fetus 1 +O326XX2 Maternal care for compound presentation, fetus 2 +O326XX3 Maternal care for compound presentation, fetus 3 +O326XX4 Maternal care for compound presentation, fetus 4 +O326XX5 Maternal care for compound presentation, fetus 5 +O326XX9 Maternal care for compound presentation, other fetus +O328XX0 Maternal care for other malpresentation of fetus, not applicable or unspecified +O328XX1 Maternal care for other malpresentation of fetus, fetus 1 +O328XX2 Maternal care for other malpresentation of fetus, fetus 2 +O328XX3 Maternal care for other malpresentation of fetus, fetus 3 +O328XX4 Maternal care for other malpresentation of fetus, fetus 4 +O328XX5 Maternal care for other malpresentation of fetus, fetus 5 +O328XX9 Maternal care for other malpresentation of fetus, other fetus +O329XX0 Maternal care for malpresentation of fetus, unspecified, not applicable or unspecified +O329XX1 Maternal care for malpresentation of fetus, unspecified, fetus 1 +O329XX2 Maternal care for malpresentation of fetus, unspecified, fetus 2 +O329XX3 Maternal care for malpresentation of fetus, unspecified, fetus 3 +O329XX4 Maternal care for malpresentation of fetus, unspecified, fetus 4 +O329XX5 Maternal care for malpresentation of fetus, unspecified, fetus 5 +O329XX9 Maternal care for malpresentation of fetus, unspecified, other fetus +O330 Maternal care for disproportion due to deformity of maternal pelvic bones +O331 Maternal care for disproportion due to generally contracted pelvis +O332 Maternal care for disproportion due to inlet contraction of pelvis +O333XX0 Maternal care for disproportion due to outlet contraction of pelvis, not applicable or unspecified +O333XX1 Maternal care for disproportion due to outlet contraction of pelvis, fetus 1 +O333XX2 Maternal care for disproportion due to outlet contraction of pelvis, fetus 2 +O333XX3 Maternal care for disproportion due to outlet contraction of pelvis, fetus 3 +O333XX4 Maternal care for disproportion due to outlet contraction of pelvis, fetus 4 +O333XX5 Maternal care for disproportion due to outlet contraction of pelvis, fetus 5 +O333XX9 Maternal care for disproportion due to outlet contraction of pelvis, other fetus +O334XX0 Maternal care for disproportion of mixed maternal and fetal origin, not applicable or unspecified +O334XX1 Maternal care for disproportion of mixed maternal and fetal origin, fetus 1 +O334XX2 Maternal care for disproportion of mixed maternal and fetal origin, fetus 2 +O334XX3 Maternal care for disproportion of mixed maternal and fetal origin, fetus 3 +O334XX4 Maternal care for disproportion of mixed maternal and fetal origin, fetus 4 +O334XX5 Maternal care for disproportion of mixed maternal and fetal origin, fetus 5 +O334XX9 Maternal care for disproportion of mixed maternal and fetal origin, other fetus +O335XX0 Maternal care for disproportion due to unusually large fetus, not applicable or unspecified +O335XX1 Maternal care for disproportion due to unusually large fetus, fetus 1 +O335XX2 Maternal care for disproportion due to unusually large fetus, fetus 2 +O335XX3 Maternal care for disproportion due to unusually large fetus, fetus 3 +O335XX4 Maternal care for disproportion due to unusually large fetus, fetus 4 +O335XX5 Maternal care for disproportion due to unusually large fetus, fetus 5 +O335XX9 Maternal care for disproportion due to unusually large fetus, other fetus +O336XX0 Maternal care for disproportion due to hydrocephalic fetus, not applicable or unspecified +O336XX1 Maternal care for disproportion due to hydrocephalic fetus, fetus 1 +O336XX2 Maternal care for disproportion due to hydrocephalic fetus, fetus 2 +O336XX3 Maternal care for disproportion due to hydrocephalic fetus, fetus 3 +O336XX4 Maternal care for disproportion due to hydrocephalic fetus, fetus 4 +O336XX5 Maternal care for disproportion due to hydrocephalic fetus, fetus 5 +O336XX9 Maternal care for disproportion due to hydrocephalic fetus, other fetus +O337 Maternal care for disproportion due to other fetal deformities +O337XX0 Maternal care for disproportion due to other fetal deformities, not applicable or unspecified +O337XX1 Maternal care for disproportion due to other fetal deformities, fetus 1 +O337XX2 Maternal care for disproportion due to other fetal deformities, fetus 2 +O337XX3 Maternal care for disproportion due to other fetal deformities, fetus 3 +O337XX4 Maternal care for disproportion due to other fetal deformities, fetus 4 +O337XX5 Maternal care for disproportion due to other fetal deformities, fetus 5 +O337XX9 Maternal care for disproportion due to other fetal deformities, other fetus +O338 Maternal care for disproportion of other origin +O339 Maternal care for disproportion, unspecified +O3400 Maternal care for unspecified congenital malformation of uterus, unspecified trimester +O3401 Maternal care for unspecified congenital malformation of uterus, first trimester +O3402 Maternal care for unspecified congenital malformation of uterus, second trimester +O3403 Maternal care for unspecified congenital malformation of uterus, third trimester +O3410 Maternal care for benign tumor of corpus uteri, unspecified trimester +O3411 Maternal care for benign tumor of corpus uteri, first trimester +O3412 Maternal care for benign tumor of corpus uteri, second trimester +O3413 Maternal care for benign tumor of corpus uteri, third trimester +O3421 Maternal care for scar from previous cesarean delivery +O34211 Maternal care for low transverse scar from previous cesarean delivery +O34212 Maternal care for vertical scar from previous cesarean delivery +O34219 Maternal care for unspecified type scar from previous cesarean delivery +O3429 Maternal care due to uterine scar from other previous surgery +O3430 Maternal care for cervical incompetence, unspecified trimester +O3431 Maternal care for cervical incompetence, first trimester +O3432 Maternal care for cervical incompetence, second trimester +O3433 Maternal care for cervical incompetence, third trimester +O3440 Maternal care for other abnormalities of cervix, unspecified trimester +O3441 Maternal care for other abnormalities of cervix, first trimester +O3442 Maternal care for other abnormalities of cervix, second trimester +O3443 Maternal care for other abnormalities of cervix, third trimester +O34511 Maternal care for incarceration of gravid uterus, first trimester +O34512 Maternal care for incarceration of gravid uterus, second trimester +O34513 Maternal care for incarceration of gravid uterus, third trimester +O34519 Maternal care for incarceration of gravid uterus, unspecified trimester +O34521 Maternal care for prolapse of gravid uterus, first trimester +O34522 Maternal care for prolapse of gravid uterus, second trimester +O34523 Maternal care for prolapse of gravid uterus, third trimester +O34529 Maternal care for prolapse of gravid uterus, unspecified trimester +O34531 Maternal care for retroversion of gravid uterus, first trimester +O34532 Maternal care for retroversion of gravid uterus, second trimester +O34533 Maternal care for retroversion of gravid uterus, third trimester +O34539 Maternal care for retroversion of gravid uterus, unspecified trimester +O34591 Maternal care for other abnormalities of gravid uterus, first trimester +O34592 Maternal care for other abnormalities of gravid uterus, second trimester +O34593 Maternal care for other abnormalities of gravid uterus, third trimester +O34599 Maternal care for other abnormalities of gravid uterus, unspecified trimester +O3460 Maternal care for abnormality of vagina, unspecified trimester +O3461 Maternal care for abnormality of vagina, first trimester +O3462 Maternal care for abnormality of vagina, second trimester +O3463 Maternal care for abnormality of vagina, third trimester +O3470 Maternal care for abnormality of vulva and perineum, unspecified trimester +O3471 Maternal care for abnormality of vulva and perineum, first trimester +O3472 Maternal care for abnormality of vulva and perineum, second trimester +O3473 Maternal care for abnormality of vulva and perineum, third trimester +O3480 Maternal care for other abnormalities of pelvic organs, unspecified trimester +O3481 Maternal care for other abnormalities of pelvic organs, first trimester +O3482 Maternal care for other abnormalities of pelvic organs, second trimester +O3483 Maternal care for other abnormalities of pelvic organs, third trimester +O3490 Maternal care for abnormality of pelvic organ, unspecified, unspecified trimester +O3491 Maternal care for abnormality of pelvic organ, unspecified, first trimester +O3492 Maternal care for abnormality of pelvic organ, unspecified, second trimester +O3493 Maternal care for abnormality of pelvic organ, unspecified, third trimester +O350XX0 Maternal care for (suspected) central nervous system malformation in fetus, not applicable or unspecified +O350XX1 Maternal care for (suspected) central nervous system malformation in fetus, fetus 1 +O350XX2 Maternal care for (suspected) central nervous system malformation in fetus, fetus 2 +O350XX3 Maternal care for (suspected) central nervous system malformation in fetus, fetus 3 +O350XX4 Maternal care for (suspected) central nervous system malformation in fetus, fetus 4 +O350XX5 Maternal care for (suspected) central nervous system malformation in fetus, fetus 5 +O350XX9 Maternal care for (suspected) central nervous system malformation in fetus, other fetus +O351XX0 Maternal care for (suspected) chromosomal abnormality in fetus, not applicable or unspecified +O351XX1 Maternal care for (suspected) chromosomal abnormality in fetus, fetus 1 +O351XX2 Maternal care for (suspected) chromosomal abnormality in fetus, fetus 2 +O351XX3 Maternal care for (suspected) chromosomal abnormality in fetus, fetus 3 +O351XX4 Maternal care for (suspected) chromosomal abnormality in fetus, fetus 4 +O351XX5 Maternal care for (suspected) chromosomal abnormality in fetus, fetus 5 +O351XX9 Maternal care for (suspected) chromosomal abnormality in fetus, other fetus +O352XX0 Maternal care for (suspected) hereditary disease in fetus, not applicable or unspecified +O352XX1 Maternal care for (suspected) hereditary disease in fetus, fetus 1 +O352XX2 Maternal care for (suspected) hereditary disease in fetus, fetus 2 +O352XX3 Maternal care for (suspected) hereditary disease in fetus, fetus 3 +O352XX4 Maternal care for (suspected) hereditary disease in fetus, fetus 4 +O352XX5 Maternal care for (suspected) hereditary disease in fetus, fetus 5 +O352XX9 Maternal care for (suspected) hereditary disease in fetus, other fetus +O353XX0 Maternal care for (suspected) damage to fetus from viral disease in mother, not applicable or unspecified +O353XX1 Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 1 +O353XX2 Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 2 +O353XX3 Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 3 +O353XX4 Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 4 +O353XX5 Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 5 +O353XX9 Maternal care for (suspected) damage to fetus from viral disease in mother, other fetus +O354XX0 Maternal care for (suspected) damage to fetus from alcohol, not applicable or unspecified +O354XX1 Maternal care for (suspected) damage to fetus from alcohol, fetus 1 +O354XX2 Maternal care for (suspected) damage to fetus from alcohol, fetus 2 +O354XX3 Maternal care for (suspected) damage to fetus from alcohol, fetus 3 +O354XX4 Maternal care for (suspected) damage to fetus from alcohol, fetus 4 +O354XX5 Maternal care for (suspected) damage to fetus from alcohol, fetus 5 +O354XX9 Maternal care for (suspected) damage to fetus from alcohol, other fetus +O355XX0 Maternal care for (suspected) damage to fetus by drugs, not applicable or unspecified +O355XX1 Maternal care for (suspected) damage to fetus by drugs, fetus 1 +O355XX2 Maternal care for (suspected) damage to fetus by drugs, fetus 2 +O355XX3 Maternal care for (suspected) damage to fetus by drugs, fetus 3 +O355XX4 Maternal care for (suspected) damage to fetus by drugs, fetus 4 +O355XX5 Maternal care for (suspected) damage to fetus by drugs, fetus 5 +O355XX9 Maternal care for (suspected) damage to fetus by drugs, other fetus +O356XX0 Maternal care for (suspected) damage to fetus by radiation, not applicable or unspecified +O356XX1 Maternal care for (suspected) damage to fetus by radiation, fetus 1 +O356XX2 Maternal care for (suspected) damage to fetus by radiation, fetus 2 +O356XX3 Maternal care for (suspected) damage to fetus by radiation, fetus 3 +O356XX4 Maternal care for (suspected) damage to fetus by radiation, fetus 4 +O356XX5 Maternal care for (suspected) damage to fetus by radiation, fetus 5 +O356XX9 Maternal care for (suspected) damage to fetus by radiation, other fetus +O357XX0 Maternal care for (suspected) damage to fetus by other medical procedures, not applicable or unspecified +O357XX1 Maternal care for (suspected) damage to fetus by other medical procedures, fetus 1 +O357XX2 Maternal care for (suspected) damage to fetus by other medical procedures, fetus 2 +O357XX3 Maternal care for (suspected) damage to fetus by other medical procedures, fetus 3 +O357XX4 Maternal care for (suspected) damage to fetus by other medical procedures, fetus 4 +O357XX5 Maternal care for (suspected) damage to fetus by other medical procedures, fetus 5 +O357XX9 Maternal care for (suspected) damage to fetus by other medical procedures, other fetus +O358XX0 Maternal care for other (suspected) fetal abnormality and damage, not applicable or unspecified +O358XX1 Maternal care for other (suspected) fetal abnormality and damage, fetus 1 +O358XX2 Maternal care for other (suspected) fetal abnormality and damage, fetus 2 +O358XX3 Maternal care for other (suspected) fetal abnormality and damage, fetus 3 +O358XX4 Maternal care for other (suspected) fetal abnormality and damage, fetus 4 +O358XX5 Maternal care for other (suspected) fetal abnormality and damage, fetus 5 +O358XX9 Maternal care for other (suspected) fetal abnormality and damage, other fetus +O359XX0 Maternal care for (suspected) fetal abnormality and damage, unspecified, not applicable or unspecified +O359XX1 Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 1 +O359XX2 Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 2 +O359XX3 Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 3 +O359XX4 Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 4 +O359XX5 Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 5 +O359XX9 Maternal care for (suspected) fetal abnormality and damage, unspecified, other fetus +O360110 Maternal care for anti-D [Rh] antibodies, first trimester, not applicable or unspecified +O360111 Maternal care for anti-D [Rh] antibodies, first trimester, fetus 1 +O360112 Maternal care for anti-D [Rh] antibodies, first trimester, fetus 2 +O360113 Maternal care for anti-D [Rh] antibodies, first trimester, fetus 3 +O360114 Maternal care for anti-D [Rh] antibodies, first trimester, fetus 4 +O360115 Maternal care for anti-D [Rh] antibodies, first trimester, fetus 5 +O360119 Maternal care for anti-D [Rh] antibodies, first trimester, other fetus +O360120 Maternal care for anti-D [Rh] antibodies, second trimester, not applicable or unspecified +O360121 Maternal care for anti-D [Rh] antibodies, second trimester, fetus 1 +O360122 Maternal care for anti-D [Rh] antibodies, second trimester, fetus 2 +O360123 Maternal care for anti-D [Rh] antibodies, second trimester, fetus 3 +O360124 Maternal care for anti-D [Rh] antibodies, second trimester, fetus 4 +O360125 Maternal care for anti-D [Rh] antibodies, second trimester, fetus 5 +O360129 Maternal care for anti-D [Rh] antibodies, second trimester, other fetus +O360130 Maternal care for anti-D [Rh] antibodies, third trimester, not applicable or unspecified +O360131 Maternal care for anti-D [Rh] antibodies, third trimester, fetus 1 +O360132 Maternal care for anti-D [Rh] antibodies, third trimester, fetus 2 +O360133 Maternal care for anti-D [Rh] antibodies, third trimester, fetus 3 +O360134 Maternal care for anti-D [Rh] antibodies, third trimester, fetus 4 +O360135 Maternal care for anti-D [Rh] antibodies, third trimester, fetus 5 +O360139 Maternal care for anti-D [Rh] antibodies, third trimester, other fetus +O360190 Maternal care for anti-D [Rh] antibodies, unspecified trimester, not applicable or unspecified +O360191 Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 1 +O360192 Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 2 +O360193 Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 3 +O360194 Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 4 +O360195 Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 5 +O360199 Maternal care for anti-D [Rh] antibodies, unspecified trimester, other fetus +O360910 Maternal care for other rhesus isoimmunization, first trimester, not applicable or unspecified +O360911 Maternal care for other rhesus isoimmunization, first trimester, fetus 1 +O360912 Maternal care for other rhesus isoimmunization, first trimester, fetus 2 +O360913 Maternal care for other rhesus isoimmunization, first trimester, fetus 3 +O360914 Maternal care for other rhesus isoimmunization, first trimester, fetus 4 +O360915 Maternal care for other rhesus isoimmunization, first trimester, fetus 5 +O360919 Maternal care for other rhesus isoimmunization, first trimester, other fetus +O360920 Maternal care for other rhesus isoimmunization, second trimester, not applicable or unspecified +O360921 Maternal care for other rhesus isoimmunization, second trimester, fetus 1 +O360922 Maternal care for other rhesus isoimmunization, second trimester, fetus 2 +O360923 Maternal care for other rhesus isoimmunization, second trimester, fetus 3 +O360924 Maternal care for other rhesus isoimmunization, second trimester, fetus 4 +O360925 Maternal care for other rhesus isoimmunization, second trimester, fetus 5 +O360929 Maternal care for other rhesus isoimmunization, second trimester, other fetus +O360930 Maternal care for other rhesus isoimmunization, third trimester, not applicable or unspecified +O360931 Maternal care for other rhesus isoimmunization, third trimester, fetus 1 +O360932 Maternal care for other rhesus isoimmunization, third trimester, fetus 2 +O360933 Maternal care for other rhesus isoimmunization, third trimester, fetus 3 +O360934 Maternal care for other rhesus isoimmunization, third trimester, fetus 4 +O360935 Maternal care for other rhesus isoimmunization, third trimester, fetus 5 +O360939 Maternal care for other rhesus isoimmunization, third trimester, other fetus +O360990 Maternal care for other rhesus isoimmunization, unspecified trimester, not applicable or unspecified +O360991 Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 1 +O360992 Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 2 +O360993 Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 3 +O360994 Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 4 +O360995 Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 5 +O360999 Maternal care for other rhesus isoimmunization, unspecified trimester, other fetus +O361110 Maternal care for Anti-A sensitization, first trimester, not applicable or unspecified +O361111 Maternal care for Anti-A sensitization, first trimester, fetus 1 +O361112 Maternal care for Anti-A sensitization, first trimester, fetus 2 +O361113 Maternal care for Anti-A sensitization, first trimester, fetus 3 +O361114 Maternal care for Anti-A sensitization, first trimester, fetus 4 +O361115 Maternal care for Anti-A sensitization, first trimester, fetus 5 +O361119 Maternal care for Anti-A sensitization, first trimester, other fetus +O361120 Maternal care for Anti-A sensitization, second trimester, not applicable or unspecified +O361121 Maternal care for Anti-A sensitization, second trimester, fetus 1 +O361122 Maternal care for Anti-A sensitization, second trimester, fetus 2 +O361123 Maternal care for Anti-A sensitization, second trimester, fetus 3 +O361124 Maternal care for Anti-A sensitization, second trimester, fetus 4 +O361125 Maternal care for Anti-A sensitization, second trimester, fetus 5 +O361129 Maternal care for Anti-A sensitization, second trimester, other fetus +O361130 Maternal care for Anti-A sensitization, third trimester, not applicable or unspecified +O361131 Maternal care for Anti-A sensitization, third trimester, fetus 1 +O361132 Maternal care for Anti-A sensitization, third trimester, fetus 2 +O361133 Maternal care for Anti-A sensitization, third trimester, fetus 3 +O361134 Maternal care for Anti-A sensitization, third trimester, fetus 4 +O361135 Maternal care for Anti-A sensitization, third trimester, fetus 5 +O361139 Maternal care for Anti-A sensitization, third trimester, other fetus +O361190 Maternal care for Anti-A sensitization, unspecified trimester, not applicable or unspecified +O361191 Maternal care for Anti-A sensitization, unspecified trimester, fetus 1 +O361192 Maternal care for Anti-A sensitization, unspecified trimester, fetus 2 +O361193 Maternal care for Anti-A sensitization, unspecified trimester, fetus 3 +O361194 Maternal care for Anti-A sensitization, unspecified trimester, fetus 4 +O361195 Maternal care for Anti-A sensitization, unspecified trimester, fetus 5 +O361199 Maternal care for Anti-A sensitization, unspecified trimester, other fetus +O361910 Maternal care for other isoimmunization, first trimester, not applicable or unspecified +O361911 Maternal care for other isoimmunization, first trimester, fetus 1 +O361912 Maternal care for other isoimmunization, first trimester, fetus 2 +O361913 Maternal care for other isoimmunization, first trimester, fetus 3 +O361914 Maternal care for other isoimmunization, first trimester, fetus 4 +O361915 Maternal care for other isoimmunization, first trimester, fetus 5 +O361919 Maternal care for other isoimmunization, first trimester, other fetus +O361920 Maternal care for other isoimmunization, second trimester, not applicable or unspecified +O361921 Maternal care for other isoimmunization, second trimester, fetus 1 +O361922 Maternal care for other isoimmunization, second trimester, fetus 2 +O361923 Maternal care for other isoimmunization, second trimester, fetus 3 +O361924 Maternal care for other isoimmunization, second trimester, fetus 4 +O361925 Maternal care for other isoimmunization, second trimester, fetus 5 +O361929 Maternal care for other isoimmunization, second trimester, other fetus +O361930 Maternal care for other isoimmunization, third trimester, not applicable or unspecified +O361931 Maternal care for other isoimmunization, third trimester, fetus 1 +O361932 Maternal care for other isoimmunization, third trimester, fetus 2 +O361933 Maternal care for other isoimmunization, third trimester, fetus 3 +O361934 Maternal care for other isoimmunization, third trimester, fetus 4 +O361935 Maternal care for other isoimmunization, third trimester, fetus 5 +O361939 Maternal care for other isoimmunization, third trimester, other fetus +O361990 Maternal care for other isoimmunization, unspecified trimester, not applicable or unspecified +O361991 Maternal care for other isoimmunization, unspecified trimester, fetus 1 +O361992 Maternal care for other isoimmunization, unspecified trimester, fetus 2 +O361993 Maternal care for other isoimmunization, unspecified trimester, fetus 3 +O361994 Maternal care for other isoimmunization, unspecified trimester, fetus 4 +O361995 Maternal care for other isoimmunization, unspecified trimester, fetus 5 +O361999 Maternal care for other isoimmunization, unspecified trimester, other fetus +O3620X0 Maternal care for hydrops fetalis, unspecified trimester, not applicable or unspecified +O3620X1 Maternal care for hydrops fetalis, unspecified trimester, fetus 1 +O3620X2 Maternal care for hydrops fetalis, unspecified trimester, fetus 2 +O3620X3 Maternal care for hydrops fetalis, unspecified trimester, fetus 3 +O3620X4 Maternal care for hydrops fetalis, unspecified trimester, fetus 4 +O3620X5 Maternal care for hydrops fetalis, unspecified trimester, fetus 5 +O3620X9 Maternal care for hydrops fetalis, unspecified trimester, other fetus +O3621X0 Maternal care for hydrops fetalis, first trimester, not applicable or unspecified +O3621X1 Maternal care for hydrops fetalis, first trimester, fetus 1 +O3621X2 Maternal care for hydrops fetalis, first trimester, fetus 2 +O3621X3 Maternal care for hydrops fetalis, first trimester, fetus 3 +O3621X4 Maternal care for hydrops fetalis, first trimester, fetus 4 +O3621X5 Maternal care for hydrops fetalis, first trimester, fetus 5 +O3621X9 Maternal care for hydrops fetalis, first trimester, other fetus +O3622X0 Maternal care for hydrops fetalis, second trimester, not applicable or unspecified +O3622X1 Maternal care for hydrops fetalis, second trimester, fetus 1 +O3622X2 Maternal care for hydrops fetalis, second trimester, fetus 2 +O3622X3 Maternal care for hydrops fetalis, second trimester, fetus 3 +O3622X4 Maternal care for hydrops fetalis, second trimester, fetus 4 +O3622X5 Maternal care for hydrops fetalis, second trimester, fetus 5 +O3622X9 Maternal care for hydrops fetalis, second trimester, other fetus +O3623X0 Maternal care for hydrops fetalis, third trimester, not applicable or unspecified +O3623X1 Maternal care for hydrops fetalis, third trimester, fetus 1 +O3623X2 Maternal care for hydrops fetalis, third trimester, fetus 2 +O3623X3 Maternal care for hydrops fetalis, third trimester, fetus 3 +O3623X4 Maternal care for hydrops fetalis, third trimester, fetus 4 +O3623X5 Maternal care for hydrops fetalis, third trimester, fetus 5 +O3623X9 Maternal care for hydrops fetalis, third trimester, other fetus +O364XX0 Maternal care for intrauterine death, not applicable or unspecified +O364XX1 Maternal care for intrauterine death, fetus 1 +O364XX2 Maternal care for intrauterine death, fetus 2 +O364XX3 Maternal care for intrauterine death, fetus 3 +O364XX4 Maternal care for intrauterine death, fetus 4 +O364XX5 Maternal care for intrauterine death, fetus 5 +O364XX9 Maternal care for intrauterine death, other fetus +O365110 Maternal care for known or suspected placental insufficiency, first trimester, not applicable or unspecified +O365111 Maternal care for known or suspected placental insufficiency, first trimester, fetus 1 +O365112 Maternal care for known or suspected placental insufficiency, first trimester, fetus 2 +O365113 Maternal care for known or suspected placental insufficiency, first trimester, fetus 3 +O365114 Maternal care for known or suspected placental insufficiency, first trimester, fetus 4 +O365115 Maternal care for known or suspected placental insufficiency, first trimester, fetus 5 +O365119 Maternal care for known or suspected placental insufficiency, first trimester, other fetus +O365120 Maternal care for known or suspected placental insufficiency, second trimester, not applicable or unspecified +O365121 Maternal care for known or suspected placental insufficiency, second trimester, fetus 1 +O365122 Maternal care for known or suspected placental insufficiency, second trimester, fetus 2 +O365123 Maternal care for known or suspected placental insufficiency, second trimester, fetus 3 +O365124 Maternal care for known or suspected placental insufficiency, second trimester, fetus 4 +O365125 Maternal care for known or suspected placental insufficiency, second trimester, fetus 5 +O365129 Maternal care for known or suspected placental insufficiency, second trimester, other fetus +O365130 Maternal care for known or suspected placental insufficiency, third trimester, not applicable or unspecified +O365131 Maternal care for known or suspected placental insufficiency, third trimester, fetus 1 +O365132 Maternal care for known or suspected placental insufficiency, third trimester, fetus 2 +O365133 Maternal care for known or suspected placental insufficiency, third trimester, fetus 3 +O365134 Maternal care for known or suspected placental insufficiency, third trimester, fetus 4 +O365135 Maternal care for known or suspected placental insufficiency, third trimester, fetus 5 +O365139 Maternal care for known or suspected placental insufficiency, third trimester, other fetus +O365190 Maternal care for known or suspected placental insufficiency, unspecified trimester, not applicable or unspecified +O365191 Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 1 +O365192 Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 2 +O365193 Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 3 +O365194 Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 4 +O365195 Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 5 +O365199 Maternal care for known or suspected placental insufficiency, unspecified trimester, other fetus +O365910 Maternal care for other known or suspected poor fetal growth, first trimester, not applicable or unspecified +O365911 Maternal care for other known or suspected poor fetal growth, first trimester, fetus 1 +O365912 Maternal care for other known or suspected poor fetal growth, first trimester, fetus 2 +O365913 Maternal care for other known or suspected poor fetal growth, first trimester, fetus 3 +O365914 Maternal care for other known or suspected poor fetal growth, first trimester, fetus 4 +O365915 Maternal care for other known or suspected poor fetal growth, first trimester, fetus 5 +O365919 Maternal care for other known or suspected poor fetal growth, first trimester, other fetus +O365920 Maternal care for other known or suspected poor fetal growth, second trimester, not applicable or unspecified +O365921 Maternal care for other known or suspected poor fetal growth, second trimester, fetus 1 +O365922 Maternal care for other known or suspected poor fetal growth, second trimester, fetus 2 +O365923 Maternal care for other known or suspected poor fetal growth, second trimester, fetus 3 +O365924 Maternal care for other known or suspected poor fetal growth, second trimester, fetus 4 +O365925 Maternal care for other known or suspected poor fetal growth, second trimester, fetus 5 +O365929 Maternal care for other known or suspected poor fetal growth, second trimester, other fetus +O365930 Maternal care for other known or suspected poor fetal growth, third trimester, not applicable or unspecified +O365931 Maternal care for other known or suspected poor fetal growth, third trimester, fetus 1 +O365932 Maternal care for other known or suspected poor fetal growth, third trimester, fetus 2 +O365933 Maternal care for other known or suspected poor fetal growth, third trimester, fetus 3 +O365934 Maternal care for other known or suspected poor fetal growth, third trimester, fetus 4 +O365935 Maternal care for other known or suspected poor fetal growth, third trimester, fetus 5 +O365939 Maternal care for other known or suspected poor fetal growth, third trimester, other fetus +O365990 Maternal care for other known or suspected poor fetal growth, unspecified trimester, not applicable or unspecified +O365991 Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 1 +O365992 Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 2 +O365993 Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 3 +O365994 Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 4 +O365995 Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 5 +O365999 Maternal care for other known or suspected poor fetal growth, unspecified trimester, other fetus +O3660X0 Maternal care for excessive fetal growth, unspecified trimester, not applicable or unspecified +O3660X1 Maternal care for excessive fetal growth, unspecified trimester, fetus 1 +O3660X2 Maternal care for excessive fetal growth, unspecified trimester, fetus 2 +O3660X3 Maternal care for excessive fetal growth, unspecified trimester, fetus 3 +O3660X4 Maternal care for excessive fetal growth, unspecified trimester, fetus 4 +O3660X5 Maternal care for excessive fetal growth, unspecified trimester, fetus 5 +O3660X9 Maternal care for excessive fetal growth, unspecified trimester, other fetus +O3661X0 Maternal care for excessive fetal growth, first trimester, not applicable or unspecified +O3661X1 Maternal care for excessive fetal growth, first trimester, fetus 1 +O3661X2 Maternal care for excessive fetal growth, first trimester, fetus 2 +O3661X3 Maternal care for excessive fetal growth, first trimester, fetus 3 +O3661X4 Maternal care for excessive fetal growth, first trimester, fetus 4 +O3661X5 Maternal care for excessive fetal growth, first trimester, fetus 5 +O3661X9 Maternal care for excessive fetal growth, first trimester, other fetus +O3662X0 Maternal care for excessive fetal growth, second trimester, not applicable or unspecified +O3662X1 Maternal care for excessive fetal growth, second trimester, fetus 1 +O3662X2 Maternal care for excessive fetal growth, second trimester, fetus 2 +O3662X3 Maternal care for excessive fetal growth, second trimester, fetus 3 +O3662X4 Maternal care for excessive fetal growth, second trimester, fetus 4 +O3662X5 Maternal care for excessive fetal growth, second trimester, fetus 5 +O3662X9 Maternal care for excessive fetal growth, second trimester, other fetus +O3663X0 Maternal care for excessive fetal growth, third trimester, not applicable or unspecified +O3663X1 Maternal care for excessive fetal growth, third trimester, fetus 1 +O3663X2 Maternal care for excessive fetal growth, third trimester, fetus 2 +O3663X3 Maternal care for excessive fetal growth, third trimester, fetus 3 +O3663X4 Maternal care for excessive fetal growth, third trimester, fetus 4 +O3663X5 Maternal care for excessive fetal growth, third trimester, fetus 5 +O3663X9 Maternal care for excessive fetal growth, third trimester, other fetus +O3670X0 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, not applicable or unspecified +O3670X1 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 1 +O3670X2 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 2 +O3670X3 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 3 +O3670X4 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 4 +O3670X5 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 5 +O3670X9 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, other fetus +O3671X0 Maternal care for viable fetus in abdominal pregnancy, first trimester, not applicable or unspecified +O3671X1 Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 1 +O3671X2 Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 2 +O3671X3 Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 3 +O3671X4 Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 4 +O3671X5 Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 5 +O3671X9 Maternal care for viable fetus in abdominal pregnancy, first trimester, other fetus +O3672X0 Maternal care for viable fetus in abdominal pregnancy, second trimester, not applicable or unspecified +O3672X1 Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 1 +O3672X2 Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 2 +O3672X3 Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 3 +O3672X4 Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 4 +O3672X5 Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 5 +O3672X9 Maternal care for viable fetus in abdominal pregnancy, second trimester, other fetus +O3673X0 Maternal care for viable fetus in abdominal pregnancy, third trimester, not applicable or unspecified +O3673X1 Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 1 +O3673X2 Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 2 +O3673X3 Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 3 +O3673X4 Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 4 +O3673X5 Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 5 +O3673X9 Maternal care for viable fetus in abdominal pregnancy, third trimester, other fetus +O3680X0 Pregnancy with inconclusive fetal viability, not applicable or unspecified +O3680X1 Pregnancy with inconclusive fetal viability, fetus 1 +O3680X2 Pregnancy with inconclusive fetal viability, fetus 2 +O3680X3 Pregnancy with inconclusive fetal viability, fetus 3 +O3680X4 Pregnancy with inconclusive fetal viability, fetus 4 +O3680X5 Pregnancy with inconclusive fetal viability, fetus 5 +O3680X9 Pregnancy with inconclusive fetal viability, other fetus +O368120 Decreased fetal movements, second trimester, not applicable or unspecified +O368121 Decreased fetal movements, second trimester, fetus 1 +O368122 Decreased fetal movements, second trimester, fetus 2 +O368123 Decreased fetal movements, second trimester, fetus 3 +O368124 Decreased fetal movements, second trimester, fetus 4 +O368125 Decreased fetal movements, second trimester, fetus 5 +O368129 Decreased fetal movements, second trimester, other fetus +O368130 Decreased fetal movements, third trimester, not applicable or unspecified +O368131 Decreased fetal movements, third trimester, fetus 1 +O368132 Decreased fetal movements, third trimester, fetus 2 +O368133 Decreased fetal movements, third trimester, fetus 3 +O368134 Decreased fetal movements, third trimester, fetus 4 +O368135 Decreased fetal movements, third trimester, fetus 5 +O368139 Decreased fetal movements, third trimester, other fetus +O368190 Decreased fetal movements, unspecified trimester, not applicable or unspecified +O368191 Decreased fetal movements, unspecified trimester, fetus 1 +O368192 Decreased fetal movements, unspecified trimester, fetus 2 +O368193 Decreased fetal movements, unspecified trimester, fetus 3 +O368194 Decreased fetal movements, unspecified trimester, fetus 4 +O368195 Decreased fetal movements, unspecified trimester, fetus 5 +O368199 Decreased fetal movements, unspecified trimester, other fetus +O368210 Fetal anemia and thrombocytopenia, first trimester, not applicable or unspecified +O368211 Fetal anemia and thrombocytopenia, first trimester, fetus 1 +O368212 Fetal anemia and thrombocytopenia, first trimester, fetus 2 +O368213 Fetal anemia and thrombocytopenia, first trimester, fetus 3 +O368214 Fetal anemia and thrombocytopenia, first trimester, fetus 4 +O368215 Fetal anemia and thrombocytopenia, first trimester, fetus 5 +O368219 Fetal anemia and thrombocytopenia, first trimester, other fetus +O368220 Fetal anemia and thrombocytopenia, second trimester, not applicable or unspecified +O368221 Fetal anemia and thrombocytopenia, second trimester, fetus 1 +O368222 Fetal anemia and thrombocytopenia, second trimester, fetus 2 +O368223 Fetal anemia and thrombocytopenia, second trimester, fetus 3 +O368224 Fetal anemia and thrombocytopenia, second trimester, fetus 4 +O368225 Fetal anemia and thrombocytopenia, second trimester, fetus 5 +O368229 Fetal anemia and thrombocytopenia, second trimester, other fetus +O368230 Fetal anemia and thrombocytopenia, third trimester, not applicable or unspecified +O368231 Fetal anemia and thrombocytopenia, third trimester, fetus 1 +O368232 Fetal anemia and thrombocytopenia, third trimester, fetus 2 +O368233 Fetal anemia and thrombocytopenia, third trimester, fetus 3 +O368234 Fetal anemia and thrombocytopenia, third trimester, fetus 4 +O368235 Fetal anemia and thrombocytopenia, third trimester, fetus 5 +O368239 Fetal anemia and thrombocytopenia, third trimester, other fetus +O368290 Fetal anemia and thrombocytopenia, unspecified trimester, not applicable or unspecified +O368291 Fetal anemia and thrombocytopenia, unspecified trimester, fetus 1 +O368292 Fetal anemia and thrombocytopenia, unspecified trimester, fetus 2 +O368293 Fetal anemia and thrombocytopenia, unspecified trimester, fetus 3 +O368294 Fetal anemia and thrombocytopenia, unspecified trimester, fetus 4 +O368295 Fetal anemia and thrombocytopenia, unspecified trimester, fetus 5 +O368299 Fetal anemia and thrombocytopenia, unspecified trimester, other fetus +O368310 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, not applicable or unspecified +O368311 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 1 +O368312 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 2 +O368313 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 3 +O368314 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 4 +O368315 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 5 +O368319 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, other fetus +O368320 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, not applicable or unspecified +O368321 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 1 +O368322 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 2 +O368323 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 3 +O368324 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 4 +O368325 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 5 +O368329 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, other fetus +O368330 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, not applicable or unspecified +O368331 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 1 +O368332 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 2 +O368333 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 3 +O368334 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 4 +O368335 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 5 +O368339 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, other fetus +O368390 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, not applicable or unspecified +O368391 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 1 +O368392 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 2 +O368393 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 3 +O368394 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 4 +O368395 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 5 +O368399 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, other fetus +O368910 Maternal care for other specified fetal problems, first trimester, not applicable or unspecified +O368911 Maternal care for other specified fetal problems, first trimester, fetus 1 +O368912 Maternal care for other specified fetal problems, first trimester, fetus 2 +O368913 Maternal care for other specified fetal problems, first trimester, fetus 3 +O368914 Maternal care for other specified fetal problems, first trimester, fetus 4 +O368915 Maternal care for other specified fetal problems, first trimester, fetus 5 +O368919 Maternal care for other specified fetal problems, first trimester, other fetus +O368920 Maternal care for other specified fetal problems, second trimester, not applicable or unspecified +O368921 Maternal care for other specified fetal problems, second trimester, fetus 1 +O368922 Maternal care for other specified fetal problems, second trimester, fetus 2 +O368923 Maternal care for other specified fetal problems, second trimester, fetus 3 +O368924 Maternal care for other specified fetal problems, second trimester, fetus 4 +O368925 Maternal care for other specified fetal problems, second trimester, fetus 5 +O368929 Maternal care for other specified fetal problems, second trimester, other fetus +O368930 Maternal care for other specified fetal problems, third trimester, not applicable or unspecified +O368931 Maternal care for other specified fetal problems, third trimester, fetus 1 +O368932 Maternal care for other specified fetal problems, third trimester, fetus 2 +O368933 Maternal care for other specified fetal problems, third trimester, fetus 3 +O368934 Maternal care for other specified fetal problems, third trimester, fetus 4 +O368935 Maternal care for other specified fetal problems, third trimester, fetus 5 +O368939 Maternal care for other specified fetal problems, third trimester, other fetus +O368990 Maternal care for other specified fetal problems, unspecified trimester, not applicable or unspecified +O368991 Maternal care for other specified fetal problems, unspecified trimester, fetus 1 +O368992 Maternal care for other specified fetal problems, unspecified trimester, fetus 2 +O368993 Maternal care for other specified fetal problems, unspecified trimester, fetus 3 +O368994 Maternal care for other specified fetal problems, unspecified trimester, fetus 4 +O368995 Maternal care for other specified fetal problems, unspecified trimester, fetus 5 +O368999 Maternal care for other specified fetal problems, unspecified trimester, other fetus +O3690X0 Maternal care for fetal problem, unspecified, unspecified trimester, not applicable or unspecified +O3690X1 Maternal care for fetal problem, unspecified, unspecified trimester, fetus 1 +O3690X2 Maternal care for fetal problem, unspecified, unspecified trimester, fetus 2 +O3690X3 Maternal care for fetal problem, unspecified, unspecified trimester, fetus 3 +O3690X4 Maternal care for fetal problem, unspecified, unspecified trimester, fetus 4 +O3690X5 Maternal care for fetal problem, unspecified, unspecified trimester, fetus 5 +O3690X9 Maternal care for fetal problem, unspecified, unspecified trimester, other fetus +O3691X0 Maternal care for fetal problem, unspecified, first trimester, not applicable or unspecified +O3691X1 Maternal care for fetal problem, unspecified, first trimester, fetus 1 +O3691X2 Maternal care for fetal problem, unspecified, first trimester, fetus 2 +O3691X3 Maternal care for fetal problem, unspecified, first trimester, fetus 3 +O3691X4 Maternal care for fetal problem, unspecified, first trimester, fetus 4 +O3691X5 Maternal care for fetal problem, unspecified, first trimester, fetus 5 +O3691X9 Maternal care for fetal problem, unspecified, first trimester, other fetus +O3692X0 Maternal care for fetal problem, unspecified, second trimester, not applicable or unspecified +O3692X1 Maternal care for fetal problem, unspecified, second trimester, fetus 1 +O3692X2 Maternal care for fetal problem, unspecified, second trimester, fetus 2 +O3692X3 Maternal care for fetal problem, unspecified, second trimester, fetus 3 +O3692X4 Maternal care for fetal problem, unspecified, second trimester, fetus 4 +O3692X5 Maternal care for fetal problem, unspecified, second trimester, fetus 5 +O3692X9 Maternal care for fetal problem, unspecified, second trimester, other fetus +O3693X0 Maternal care for fetal problem, unspecified, third trimester, not applicable or unspecified +O3693X1 Maternal care for fetal problem, unspecified, third trimester, fetus 1 +O3693X2 Maternal care for fetal problem, unspecified, third trimester, fetus 2 +O3693X3 Maternal care for fetal problem, unspecified, third trimester, fetus 3 +O3693X4 Maternal care for fetal problem, unspecified, third trimester, fetus 4 +O3693X5 Maternal care for fetal problem, unspecified, third trimester, fetus 5 +O3693X9 Maternal care for fetal problem, unspecified, third trimester, other fetus +O401XX0 Polyhydramnios, first trimester, not applicable or unspecified +O401XX1 Polyhydramnios, first trimester, fetus 1 +O401XX2 Polyhydramnios, first trimester, fetus 2 +O401XX3 Polyhydramnios, first trimester, fetus 3 +O401XX4 Polyhydramnios, first trimester, fetus 4 +O401XX5 Polyhydramnios, first trimester, fetus 5 +O401XX9 Polyhydramnios, first trimester, other fetus +O402XX0 Polyhydramnios, second trimester, not applicable or unspecified +O402XX1 Polyhydramnios, second trimester, fetus 1 +O402XX2 Polyhydramnios, second trimester, fetus 2 +O402XX3 Polyhydramnios, second trimester, fetus 3 +O402XX4 Polyhydramnios, second trimester, fetus 4 +O402XX5 Polyhydramnios, second trimester, fetus 5 +O402XX9 Polyhydramnios, second trimester, other fetus +O403XX0 Polyhydramnios, third trimester, not applicable or unspecified +O403XX1 Polyhydramnios, third trimester, fetus 1 +O403XX2 Polyhydramnios, third trimester, fetus 2 +O403XX3 Polyhydramnios, third trimester, fetus 3 +O403XX4 Polyhydramnios, third trimester, fetus 4 +O403XX5 Polyhydramnios, third trimester, fetus 5 +O403XX9 Polyhydramnios, third trimester, other fetus +O409XX0 Polyhydramnios, unspecified trimester, not applicable or unspecified +O409XX1 Polyhydramnios, unspecified trimester, fetus 1 +O409XX2 Polyhydramnios, unspecified trimester, fetus 2 +O409XX3 Polyhydramnios, unspecified trimester, fetus 3 +O409XX4 Polyhydramnios, unspecified trimester, fetus 4 +O409XX5 Polyhydramnios, unspecified trimester, fetus 5 +O409XX9 Polyhydramnios, unspecified trimester, other fetus +O4100X0 Oligohydramnios, unspecified trimester, not applicable or unspecified +O4100X1 Oligohydramnios, unspecified trimester, fetus 1 +O4100X2 Oligohydramnios, unspecified trimester, fetus 2 +O4100X3 Oligohydramnios, unspecified trimester, fetus 3 +O4100X4 Oligohydramnios, unspecified trimester, fetus 4 +O4100X5 Oligohydramnios, unspecified trimester, fetus 5 +O4100X9 Oligohydramnios, unspecified trimester, other fetus +O4101X0 Oligohydramnios, first trimester, not applicable or unspecified +O4101X1 Oligohydramnios, first trimester, fetus 1 +O4101X2 Oligohydramnios, first trimester, fetus 2 +O4101X3 Oligohydramnios, first trimester, fetus 3 +O4101X4 Oligohydramnios, first trimester, fetus 4 +O4101X5 Oligohydramnios, first trimester, fetus 5 +O4101X9 Oligohydramnios, first trimester, other fetus +O4102X0 Oligohydramnios, second trimester, not applicable or unspecified +O4102X1 Oligohydramnios, second trimester, fetus 1 +O4102X2 Oligohydramnios, second trimester, fetus 2 +O4102X3 Oligohydramnios, second trimester, fetus 3 +O4102X4 Oligohydramnios, second trimester, fetus 4 +O4102X5 Oligohydramnios, second trimester, fetus 5 +O4102X9 Oligohydramnios, second trimester, other fetus +O4103X0 Oligohydramnios, third trimester, not applicable or unspecified +O4103X1 Oligohydramnios, third trimester, fetus 1 +O4103X2 Oligohydramnios, third trimester, fetus 2 +O4103X3 Oligohydramnios, third trimester, fetus 3 +O4103X4 Oligohydramnios, third trimester, fetus 4 +O4103X5 Oligohydramnios, third trimester, fetus 5 +O4103X9 Oligohydramnios, third trimester, other fetus +O411010 Infection of amniotic sac and membranes, unspecified, first trimester, not applicable or unspecified +O411011 Infection of amniotic sac and membranes, unspecified, first trimester, fetus 1 +O411012 Infection of amniotic sac and membranes, unspecified, first trimester, fetus 2 +O411013 Infection of amniotic sac and membranes, unspecified, first trimester, fetus 3 +O411014 Infection of amniotic sac and membranes, unspecified, first trimester, fetus 4 +O411015 Infection of amniotic sac and membranes, unspecified, first trimester, fetus 5 +O411019 Infection of amniotic sac and membranes, unspecified, first trimester, other fetus +O411020 Infection of amniotic sac and membranes, unspecified, second trimester, not applicable or unspecified +O411021 Infection of amniotic sac and membranes, unspecified, second trimester, fetus 1 +O411022 Infection of amniotic sac and membranes, unspecified, second trimester, fetus 2 +O411023 Infection of amniotic sac and membranes, unspecified, second trimester, fetus 3 +O411024 Infection of amniotic sac and membranes, unspecified, second trimester, fetus 4 +O411025 Infection of amniotic sac and membranes, unspecified, second trimester, fetus 5 +O411029 Infection of amniotic sac and membranes, unspecified, second trimester, other fetus +O411030 Infection of amniotic sac and membranes, unspecified, third trimester, not applicable or unspecified +O411031 Infection of amniotic sac and membranes, unspecified, third trimester, fetus 1 +O411032 Infection of amniotic sac and membranes, unspecified, third trimester, fetus 2 +O411033 Infection of amniotic sac and membranes, unspecified, third trimester, fetus 3 +O411034 Infection of amniotic sac and membranes, unspecified, third trimester, fetus 4 +O411035 Infection of amniotic sac and membranes, unspecified, third trimester, fetus 5 +O411039 Infection of amniotic sac and membranes, unspecified, third trimester, other fetus +O411090 Infection of amniotic sac and membranes, unspecified, unspecified trimester, not applicable or unspecified +O411091 Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 1 +O411092 Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 2 +O411093 Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 3 +O411094 Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 4 +O411095 Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 5 +O411099 Infection of amniotic sac and membranes, unspecified, unspecified trimester, other fetus +O411210 Chorioamnionitis, first trimester, not applicable or unspecified +O411211 Chorioamnionitis, first trimester, fetus 1 +O411212 Chorioamnionitis, first trimester, fetus 2 +O411213 Chorioamnionitis, first trimester, fetus 3 +O411214 Chorioamnionitis, first trimester, fetus 4 +O411215 Chorioamnionitis, first trimester, fetus 5 +O411219 Chorioamnionitis, first trimester, other fetus +O411220 Chorioamnionitis, second trimester, not applicable or unspecified +O411221 Chorioamnionitis, second trimester, fetus 1 +O411222 Chorioamnionitis, second trimester, fetus 2 +O411223 Chorioamnionitis, second trimester, fetus 3 +O411224 Chorioamnionitis, second trimester, fetus 4 +O411225 Chorioamnionitis, second trimester, fetus 5 +O411229 Chorioamnionitis, second trimester, other fetus +O411230 Chorioamnionitis, third trimester, not applicable or unspecified +O411231 Chorioamnionitis, third trimester, fetus 1 +O411232 Chorioamnionitis, third trimester, fetus 2 +O411233 Chorioamnionitis, third trimester, fetus 3 +O411234 Chorioamnionitis, third trimester, fetus 4 +O411235 Chorioamnionitis, third trimester, fetus 5 +O411239 Chorioamnionitis, third trimester, other fetus +O411290 Chorioamnionitis, unspecified trimester, not applicable or unspecified +O411291 Chorioamnionitis, unspecified trimester, fetus 1 +O411292 Chorioamnionitis, unspecified trimester, fetus 2 +O411293 Chorioamnionitis, unspecified trimester, fetus 3 +O411294 Chorioamnionitis, unspecified trimester, fetus 4 +O411295 Chorioamnionitis, unspecified trimester, fetus 5 +O411299 Chorioamnionitis, unspecified trimester, other fetus +O411410 Placentitis, first trimester, not applicable or unspecified +O411411 Placentitis, first trimester, fetus 1 +O411412 Placentitis, first trimester, fetus 2 +O411413 Placentitis, first trimester, fetus 3 +O411414 Placentitis, first trimester, fetus 4 +O411415 Placentitis, first trimester, fetus 5 +O411419 Placentitis, first trimester, other fetus +O411420 Placentitis, second trimester, not applicable or unspecified +O411421 Placentitis, second trimester, fetus 1 +O411422 Placentitis, second trimester, fetus 2 +O411423 Placentitis, second trimester, fetus 3 +O411424 Placentitis, second trimester, fetus 4 +O411425 Placentitis, second trimester, fetus 5 +O411429 Placentitis, second trimester, other fetus +O411430 Placentitis, third trimester, not applicable or unspecified +O411431 Placentitis, third trimester, fetus 1 +O411432 Placentitis, third trimester, fetus 2 +O411433 Placentitis, third trimester, fetus 3 +O411434 Placentitis, third trimester, fetus 4 +O411435 Placentitis, third trimester, fetus 5 +O411439 Placentitis, third trimester, other fetus +O411490 Placentitis, unspecified trimester, not applicable or unspecified +O411491 Placentitis, unspecified trimester, fetus 1 +O411492 Placentitis, unspecified trimester, fetus 2 +O411493 Placentitis, unspecified trimester, fetus 3 +O411494 Placentitis, unspecified trimester, fetus 4 +O411495 Placentitis, unspecified trimester, fetus 5 +O411499 Placentitis, unspecified trimester, other fetus +O418X10 Other specified disorders of amniotic fluid and membranes, first trimester, not applicable or unspecified +O418X11 Other specified disorders of amniotic fluid and membranes, first trimester, fetus 1 +O418X12 Other specified disorders of amniotic fluid and membranes, first trimester, fetus 2 +O418X13 Other specified disorders of amniotic fluid and membranes, first trimester, fetus 3 +O418X14 Other specified disorders of amniotic fluid and membranes, first trimester, fetus 4 +O418X15 Other specified disorders of amniotic fluid and membranes, first trimester, fetus 5 +O418X19 Other specified disorders of amniotic fluid and membranes, first trimester, other fetus +O418X20 Other specified disorders of amniotic fluid and membranes, second trimester, not applicable or unspecified +O418X21 Other specified disorders of amniotic fluid and membranes, second trimester, fetus 1 +O418X22 Other specified disorders of amniotic fluid and membranes, second trimester, fetus 2 +O418X23 Other specified disorders of amniotic fluid and membranes, second trimester, fetus 3 +O418X24 Other specified disorders of amniotic fluid and membranes, second trimester, fetus 4 +O418X25 Other specified disorders of amniotic fluid and membranes, second trimester, fetus 5 +O418X29 Other specified disorders of amniotic fluid and membranes, second trimester, other fetus +O418X30 Other specified disorders of amniotic fluid and membranes, third trimester, not applicable or unspecified +O418X31 Other specified disorders of amniotic fluid and membranes, third trimester, fetus 1 +O418X32 Other specified disorders of amniotic fluid and membranes, third trimester, fetus 2 +O418X33 Other specified disorders of amniotic fluid and membranes, third trimester, fetus 3 +O418X34 Other specified disorders of amniotic fluid and membranes, third trimester, fetus 4 +O418X35 Other specified disorders of amniotic fluid and membranes, third trimester, fetus 5 +O418X39 Other specified disorders of amniotic fluid and membranes, third trimester, other fetus +O418X90 Other specified disorders of amniotic fluid and membranes, unspecified trimester, not applicable or unspecified +O418X91 Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 1 +O418X92 Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 2 +O418X93 Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 3 +O418X94 Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 4 +O418X95 Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 5 +O418X99 Other specified disorders of amniotic fluid and membranes, unspecified trimester, other fetus +O4190X0 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, not applicable or unspecified +O4190X1 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 1 +O4190X2 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 2 +O4190X3 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 3 +O4190X4 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 4 +O4190X5 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 5 +O4190X9 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, other fetus +O4191X0 Disorder of amniotic fluid and membranes, unspecified, first trimester, not applicable or unspecified +O4191X1 Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 1 +O4191X2 Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 2 +O4191X3 Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 3 +O4191X4 Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 4 +O4191X5 Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 5 +O4191X9 Disorder of amniotic fluid and membranes, unspecified, first trimester, other fetus +O4192X0 Disorder of amniotic fluid and membranes, unspecified, second trimester, not applicable or unspecified +O4192X1 Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 1 +O4192X2 Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 2 +O4192X3 Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 3 +O4192X4 Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 4 +O4192X5 Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 5 +O4192X9 Disorder of amniotic fluid and membranes, unspecified, second trimester, other fetus +O4193X0 Disorder of amniotic fluid and membranes, unspecified, third trimester, not applicable or unspecified +O4193X1 Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 1 +O4193X2 Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 2 +O4193X3 Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 3 +O4193X4 Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 4 +O4193X5 Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 5 +O4193X9 Disorder of amniotic fluid and membranes, unspecified, third trimester, other fetus +O4200 Premature rupture of membranes, onset of labor within 24 hours of rupture, unspecified weeks of gestation +O42011 Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, first trimester +O42012 Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, second trimester +O42013 Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, third trimester +O42019 Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, unspecified trimester +O4202 Full-term premature rupture of membranes, onset of labor within 24 hours of rupture +O4210 Premature rupture of membranes, onset of labor more than 24 hours following rupture, unspecified weeks of gestation +O42111 Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, first trimester +O42112 Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, second trimester +O42113 Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, third trimester +O42119 Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, unspecified trimester +O4212 Full-term premature rupture of membranes, onset of labor more than 24 hours following rupture +O4290 Premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, unspecified weeks of gestation +O42911 Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, first trimester +O42912 Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, second trimester +O42913 Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, third trimester +O42919 Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, unspecified trimester +O4292 Full-term premature rupture of membranes, unspecified as to length of time between rupture and onset of labor +O43011 Fetomaternal placental transfusion syndrome, first trimester +O43012 Fetomaternal placental transfusion syndrome, second trimester +O43013 Fetomaternal placental transfusion syndrome, third trimester +O43019 Fetomaternal placental transfusion syndrome, unspecified trimester +O43021 Fetus-to-fetus placental transfusion syndrome, first trimester +O43022 Fetus-to-fetus placental transfusion syndrome, second trimester +O43023 Fetus-to-fetus placental transfusion syndrome, third trimester +O43029 Fetus-to-fetus placental transfusion syndrome, unspecified trimester +O43101 Malformation of placenta, unspecified, first trimester +O43102 Malformation of placenta, unspecified, second trimester +O43103 Malformation of placenta, unspecified, third trimester +O43109 Malformation of placenta, unspecified, unspecified trimester +O43111 Circumvallate placenta, first trimester +O43112 Circumvallate placenta, second trimester +O43113 Circumvallate placenta, third trimester +O43119 Circumvallate placenta, unspecified trimester +O43121 Velamentous insertion of umbilical cord, first trimester +O43122 Velamentous insertion of umbilical cord, second trimester +O43123 Velamentous insertion of umbilical cord, third trimester +O43129 Velamentous insertion of umbilical cord, unspecified trimester +O43191 Other malformation of placenta, first trimester +O43192 Other malformation of placenta, second trimester +O43193 Other malformation of placenta, third trimester +O43199 Other malformation of placenta, unspecified trimester +O43211 Placenta accreta, first trimester +O43212 Placenta accreta, second trimester +O43213 Placenta accreta, third trimester +O43219 Placenta accreta, unspecified trimester +O43221 Placenta increta, first trimester +O43222 Placenta increta, second trimester +O43223 Placenta increta, third trimester +O43229 Placenta increta, unspecified trimester +O43231 Placenta percreta, first trimester +O43232 Placenta percreta, second trimester +O43233 Placenta percreta, third trimester +O43239 Placenta percreta, unspecified trimester +O43811 Placental infarction, first trimester +O43812 Placental infarction, second trimester +O43813 Placental infarction, third trimester +O43819 Placental infarction, unspecified trimester +O43891 Other placental disorders, first trimester +O43892 Other placental disorders, second trimester +O43893 Other placental disorders, third trimester +O43899 Other placental disorders, unspecified trimester +O4390 Unspecified placental disorder, unspecified trimester +O4391 Unspecified placental disorder, first trimester +O4392 Unspecified placental disorder, second trimester +O4393 Unspecified placental disorder, third trimester +O4400 Complete placenta previa NOS or without hemorrhage, unspecified trimester +O4401 Complete placenta previa NOS or without hemorrhage, first trimester +O4402 Complete placenta previa NOS or without hemorrhage, second trimester +O4403 Complete placenta previa NOS or without hemorrhage, third trimester +O4410 Complete placenta previa with hemorrhage, unspecified trimester +O4411 Complete placenta previa with hemorrhage, first trimester +O4412 Complete placenta previa with hemorrhage, second trimester +O4413 Complete placenta previa with hemorrhage, third trimester +O4420 Partial placenta previa NOS or without hemorrhage, unspecified trimester +O4421 Partial placenta previa NOS or without hemorrhage, first trimester +O4422 Partial placenta previa NOS or without hemorrhage, second trimester +O4423 Partial placenta previa NOS or without hemorrhage, third trimester +O4430 Partial placenta previa with hemorrhage, unspecified trimester +O4431 Partial placenta previa with hemorrhage, first trimester +O4432 Partial placenta previa with hemorrhage, second trimester +O4433 Partial placenta previa with hemorrhage, third trimester +O4440 Low lying placenta NOS or without hemorrhage, unspecified trimester +O4441 Low lying placenta NOS or without hemorrhage, first trimester +O4442 Low lying placenta NOS or without hemorrhage, second trimester +O4443 Low lying placenta NOS or without hemorrhage, third trimester +O4450 Low lying placenta with hemorrhage, unspecified trimester +O4451 Low lying placenta with hemorrhage, first trimester +O4452 Low lying placenta with hemorrhage, second trimester +O4453 Low lying placenta with hemorrhage, third trimester +O45001 Premature separation of placenta with coagulation defect, unspecified, first trimester +O45002 Premature separation of placenta with coagulation defect, unspecified, second trimester +O45003 Premature separation of placenta with coagulation defect, unspecified, third trimester +O45009 Premature separation of placenta with coagulation defect, unspecified, unspecified trimester +O45011 Premature separation of placenta with afibrinogenemia, first trimester +O45012 Premature separation of placenta with afibrinogenemia, second trimester +O45013 Premature separation of placenta with afibrinogenemia, third trimester +O45019 Premature separation of placenta with afibrinogenemia, unspecified trimester +O45021 Premature separation of placenta with disseminated intravascular coagulation, first trimester +O45022 Premature separation of placenta with disseminated intravascular coagulation, second trimester +O45023 Premature separation of placenta with disseminated intravascular coagulation, third trimester +O45029 Premature separation of placenta with disseminated intravascular coagulation, unspecified trimester +O45091 Premature separation of placenta with other coagulation defect, first trimester +O45092 Premature separation of placenta with other coagulation defect, second trimester +O45093 Premature separation of placenta with other coagulation defect, third trimester +O45099 Premature separation of placenta with other coagulation defect, unspecified trimester +O458X1 Other premature separation of placenta, first trimester +O458X2 Other premature separation of placenta, second trimester +O458X3 Other premature separation of placenta, third trimester +O458X9 Other premature separation of placenta, unspecified trimester +O4590 Premature separation of placenta, unspecified, unspecified trimester +O4591 Premature separation of placenta, unspecified, first trimester +O4592 Premature separation of placenta, unspecified, second trimester +O4593 Premature separation of placenta, unspecified, third trimester +O46001 Antepartum hemorrhage with coagulation defect, unspecified, first trimester +O46002 Antepartum hemorrhage with coagulation defect, unspecified, second trimester +O46003 Antepartum hemorrhage with coagulation defect, unspecified, third trimester +O46009 Antepartum hemorrhage with coagulation defect, unspecified, unspecified trimester +O46011 Antepartum hemorrhage with afibrinogenemia, first trimester +O46012 Antepartum hemorrhage with afibrinogenemia, second trimester +O46013 Antepartum hemorrhage with afibrinogenemia, third trimester +O46019 Antepartum hemorrhage with afibrinogenemia, unspecified trimester +O46021 Antepartum hemorrhage with disseminated intravascular coagulation, first trimester +O46022 Antepartum hemorrhage with disseminated intravascular coagulation, second trimester +O46023 Antepartum hemorrhage with disseminated intravascular coagulation, third trimester +O46029 Antepartum hemorrhage with disseminated intravascular coagulation, unspecified trimester +O46091 Antepartum hemorrhage with other coagulation defect, first trimester +O46092 Antepartum hemorrhage with other coagulation defect, second trimester +O46093 Antepartum hemorrhage with other coagulation defect, third trimester +O46099 Antepartum hemorrhage with other coagulation defect, unspecified trimester +O468X1 Other antepartum hemorrhage, first trimester +O468X2 Other antepartum hemorrhage, second trimester +O468X3 Other antepartum hemorrhage, third trimester +O468X9 Other antepartum hemorrhage, unspecified trimester +O4690 Antepartum hemorrhage, unspecified, unspecified trimester +O4691 Antepartum hemorrhage, unspecified, first trimester +O4692 Antepartum hemorrhage, unspecified, second trimester +O4693 Antepartum hemorrhage, unspecified, third trimester +O4700 False labor before 37 completed weeks of gestation, unspecified trimester +O4702 False labor before 37 completed weeks of gestation, second trimester +O4703 False labor before 37 completed weeks of gestation, third trimester +O471 False labor at or after 37 completed weeks of gestation +O479 False labor, unspecified +O480 Post-term pregnancy +O481 Prolonged pregnancy +O6000 Preterm labor without delivery, unspecified trimester +O6002 Preterm labor without delivery, second trimester +O6003 Preterm labor without delivery, third trimester +O6010X0 Preterm labor with preterm delivery, unspecified trimester, not applicable or unspecified +O6010X1 Preterm labor with preterm delivery, unspecified trimester, fetus 1 +O6010X2 Preterm labor with preterm delivery, unspecified trimester, fetus 2 +O6010X3 Preterm labor with preterm delivery, unspecified trimester, fetus 3 +O6010X4 Preterm labor with preterm delivery, unspecified trimester, fetus 4 +O6010X5 Preterm labor with preterm delivery, unspecified trimester, fetus 5 +O6010X9 Preterm labor with preterm delivery, unspecified trimester, other fetus +O6012X0 Preterm labor second trimester with preterm delivery second trimester, not applicable or unspecified +O6012X1 Preterm labor second trimester with preterm delivery second trimester, fetus 1 +O6012X2 Preterm labor second trimester with preterm delivery second trimester, fetus 2 +O6012X3 Preterm labor second trimester with preterm delivery second trimester, fetus 3 +O6012X4 Preterm labor second trimester with preterm delivery second trimester, fetus 4 +O6012X5 Preterm labor second trimester with preterm delivery second trimester, fetus 5 +O6012X9 Preterm labor second trimester with preterm delivery second trimester, other fetus +O6013X0 Preterm labor second trimester with preterm delivery third trimester, not applicable or unspecified +O6013X1 Preterm labor second trimester with preterm delivery third trimester, fetus 1 +O6013X2 Preterm labor second trimester with preterm delivery third trimester, fetus 2 +O6013X3 Preterm labor second trimester with preterm delivery third trimester, fetus 3 +O6013X4 Preterm labor second trimester with preterm delivery third trimester, fetus 4 +O6013X5 Preterm labor second trimester with preterm delivery third trimester, fetus 5 +O6013X9 Preterm labor second trimester with preterm delivery third trimester, other fetus +O6014X0 Preterm labor third trimester with preterm delivery third trimester, not applicable or unspecified +O6014X1 Preterm labor third trimester with preterm delivery third trimester, fetus 1 +O6014X2 Preterm labor third trimester with preterm delivery third trimester, fetus 2 +O6014X3 Preterm labor third trimester with preterm delivery third trimester, fetus 3 +O6014X4 Preterm labor third trimester with preterm delivery third trimester, fetus 4 +O6014X5 Preterm labor third trimester with preterm delivery third trimester, fetus 5 +O6014X9 Preterm labor third trimester with preterm delivery third trimester, other fetus +O6020X0 Term delivery with preterm labor, unspecified trimester, not applicable or unspecified +O6020X1 Term delivery with preterm labor, unspecified trimester, fetus 1 +O6020X2 Term delivery with preterm labor, unspecified trimester, fetus 2 +O6020X3 Term delivery with preterm labor, unspecified trimester, fetus 3 +O6020X4 Term delivery with preterm labor, unspecified trimester, fetus 4 +O6020X5 Term delivery with preterm labor, unspecified trimester, fetus 5 +O6020X9 Term delivery with preterm labor, unspecified trimester, other fetus +O6022X0 Term delivery with preterm labor, second trimester, not applicable or unspecified +O6022X1 Term delivery with preterm labor, second trimester, fetus 1 +O6022X2 Term delivery with preterm labor, second trimester, fetus 2 +O6022X3 Term delivery with preterm labor, second trimester, fetus 3 +O6022X4 Term delivery with preterm labor, second trimester, fetus 4 +O6022X5 Term delivery with preterm labor, second trimester, fetus 5 +O6022X9 Term delivery with preterm labor, second trimester, other fetus +O6023X0 Term delivery with preterm labor, third trimester, not applicable or unspecified +O6023X1 Term delivery with preterm labor, third trimester, fetus 1 +O6023X2 Term delivery with preterm labor, third trimester, fetus 2 +O6023X3 Term delivery with preterm labor, third trimester, fetus 3 +O6023X4 Term delivery with preterm labor, third trimester, fetus 4 +O6023X5 Term delivery with preterm labor, third trimester, fetus 5 +O6023X9 Term delivery with preterm labor, third trimester, other fetus +O610 Failed medical induction of labor +O611 Failed instrumental induction of labor +O618 Other failed induction of labor +O619 Failed induction of labor, unspecified +O620 Primary inadequate contractions +O621 Secondary uterine inertia +O622 Other uterine inertia +O623 Precipitate labor +O624 Hypertonic, incoordinate, and prolonged uterine contractions +O628 Other abnormalities of forces of labor +O629 Abnormality of forces of labor, unspecified +O630 Prolonged first stage (of labor) +O631 Prolonged second stage (of labor) +O632 Delayed delivery of second twin, triplet, etc. +O639 Long labor, unspecified +O640XX0 Obstructed labor due to incomplete rotation of fetal head, not applicable or unspecified +O640XX1 Obstructed labor due to incomplete rotation of fetal head, fetus 1 +O640XX2 Obstructed labor due to incomplete rotation of fetal head, fetus 2 +O640XX3 Obstructed labor due to incomplete rotation of fetal head, fetus 3 +O640XX4 Obstructed labor due to incomplete rotation of fetal head, fetus 4 +O640XX5 Obstructed labor due to incomplete rotation of fetal head, fetus 5 +O640XX9 Obstructed labor due to incomplete rotation of fetal head, other fetus +O641XX0 Obstructed labor due to breech presentation, not applicable or unspecified +O641XX1 Obstructed labor due to breech presentation, fetus 1 +O641XX2 Obstructed labor due to breech presentation, fetus 2 +O641XX3 Obstructed labor due to breech presentation, fetus 3 +O641XX4 Obstructed labor due to breech presentation, fetus 4 +O641XX5 Obstructed labor due to breech presentation, fetus 5 +O641XX9 Obstructed labor due to breech presentation, other fetus +O642XX0 Obstructed labor due to face presentation, not applicable or unspecified +O642XX1 Obstructed labor due to face presentation, fetus 1 +O642XX2 Obstructed labor due to face presentation, fetus 2 +O642XX3 Obstructed labor due to face presentation, fetus 3 +O642XX4 Obstructed labor due to face presentation, fetus 4 +O642XX5 Obstructed labor due to face presentation, fetus 5 +O642XX9 Obstructed labor due to face presentation, other fetus +O643XX0 Obstructed labor due to brow presentation, not applicable or unspecified +O643XX1 Obstructed labor due to brow presentation, fetus 1 +O643XX2 Obstructed labor due to brow presentation, fetus 2 +O643XX3 Obstructed labor due to brow presentation, fetus 3 +O643XX4 Obstructed labor due to brow presentation, fetus 4 +O643XX5 Obstructed labor due to brow presentation, fetus 5 +O643XX9 Obstructed labor due to brow presentation, other fetus +O644XX0 Obstructed labor due to shoulder presentation, not applicable or unspecified +O644XX1 Obstructed labor due to shoulder presentation, fetus 1 +O644XX2 Obstructed labor due to shoulder presentation, fetus 2 +O644XX3 Obstructed labor due to shoulder presentation, fetus 3 +O644XX4 Obstructed labor due to shoulder presentation, fetus 4 +O644XX5 Obstructed labor due to shoulder presentation, fetus 5 +O644XX9 Obstructed labor due to shoulder presentation, other fetus +O645XX0 Obstructed labor due to compound presentation, not applicable or unspecified +O645XX1 Obstructed labor due to compound presentation, fetus 1 +O645XX2 Obstructed labor due to compound presentation, fetus 2 +O645XX3 Obstructed labor due to compound presentation, fetus 3 +O645XX4 Obstructed labor due to compound presentation, fetus 4 +O645XX5 Obstructed labor due to compound presentation, fetus 5 +O645XX9 Obstructed labor due to compound presentation, other fetus +O648XX0 Obstructed labor due to other malposition and malpresentation, not applicable or unspecified +O648XX1 Obstructed labor due to other malposition and malpresentation, fetus 1 +O648XX2 Obstructed labor due to other malposition and malpresentation, fetus 2 +O648XX3 Obstructed labor due to other malposition and malpresentation, fetus 3 +O648XX4 Obstructed labor due to other malposition and malpresentation, fetus 4 +O648XX5 Obstructed labor due to other malposition and malpresentation, fetus 5 +O648XX9 Obstructed labor due to other malposition and malpresentation, other fetus +O649XX0 Obstructed labor due to malposition and malpresentation, unspecified, not applicable or unspecified +O649XX1 Obstructed labor due to malposition and malpresentation, unspecified, fetus 1 +O649XX2 Obstructed labor due to malposition and malpresentation, unspecified, fetus 2 +O649XX3 Obstructed labor due to malposition and malpresentation, unspecified, fetus 3 +O649XX4 Obstructed labor due to malposition and malpresentation, unspecified, fetus 4 +O649XX5 Obstructed labor due to malposition and malpresentation, unspecified, fetus 5 +O649XX9 Obstructed labor due to malposition and malpresentation, unspecified, other fetus +O650 Obstructed labor due to deformed pelvis +O651 Obstructed labor due to generally contracted pelvis +O652 Obstructed labor due to pelvic inlet contraction +O653 Obstructed labor due to pelvic outlet and mid-cavity contraction +O654 Obstructed labor due to fetopelvic disproportion, unspecified +O655 Obstructed labor due to abnormality of maternal pelvic organs +O658 Obstructed labor due to other maternal pelvic abnormalities +O659 Obstructed labor due to maternal pelvic abnormality, unspecified +O660 Obstructed labor due to shoulder dystocia +O661 Obstructed labor due to locked twins +O662 Obstructed labor due to unusually large fetus +O663 Obstructed labor due to other abnormalities of fetus +O6640 Failed trial of labor, unspecified +O6641 Failed attempted vaginal birth after previous cesarean delivery +O665 Attempted application of vacuum extractor and forceps +O666 Obstructed labor due to other multiple fetuses +O668 Other specified obstructed labor +O669 Obstructed labor, unspecified +O670 Intrapartum hemorrhage with coagulation defect +O678 Other intrapartum hemorrhage +O679 Intrapartum hemorrhage, unspecified +O68 Labor and delivery complicated by abnormality of fetal acid-base balance +O690XX0 Labor and delivery complicated by prolapse of cord, not applicable or unspecified +O690XX1 Labor and delivery complicated by prolapse of cord, fetus 1 +O690XX2 Labor and delivery complicated by prolapse of cord, fetus 2 +O690XX3 Labor and delivery complicated by prolapse of cord, fetus 3 +O690XX4 Labor and delivery complicated by prolapse of cord, fetus 4 +O690XX5 Labor and delivery complicated by prolapse of cord, fetus 5 +O690XX9 Labor and delivery complicated by prolapse of cord, other fetus +O691XX0 Labor and delivery complicated by cord around neck, with compression, not applicable or unspecified +O691XX1 Labor and delivery complicated by cord around neck, with compression, fetus 1 +O691XX2 Labor and delivery complicated by cord around neck, with compression, fetus 2 +O691XX3 Labor and delivery complicated by cord around neck, with compression, fetus 3 +O691XX4 Labor and delivery complicated by cord around neck, with compression, fetus 4 +O691XX5 Labor and delivery complicated by cord around neck, with compression, fetus 5 +O691XX9 Labor and delivery complicated by cord around neck, with compression, other fetus +O692XX0 Labor and delivery complicated by other cord entanglement, with compression, not applicable or unspecified +O692XX1 Labor and delivery complicated by other cord entanglement, with compression, fetus 1 +O692XX2 Labor and delivery complicated by other cord entanglement, with compression, fetus 2 +O692XX3 Labor and delivery complicated by other cord entanglement, with compression, fetus 3 +O692XX4 Labor and delivery complicated by other cord entanglement, with compression, fetus 4 +O692XX5 Labor and delivery complicated by other cord entanglement, with compression, fetus 5 +O692XX9 Labor and delivery complicated by other cord entanglement, with compression, other fetus +O693XX0 Labor and delivery complicated by short cord, not applicable or unspecified +O693XX1 Labor and delivery complicated by short cord, fetus 1 +O693XX2 Labor and delivery complicated by short cord, fetus 2 +O693XX3 Labor and delivery complicated by short cord, fetus 3 +O693XX4 Labor and delivery complicated by short cord, fetus 4 +O693XX5 Labor and delivery complicated by short cord, fetus 5 +O693XX9 Labor and delivery complicated by short cord, other fetus +O694XX0 Labor and delivery complicated by vasa previa, not applicable or unspecified +O694XX1 Labor and delivery complicated by vasa previa, fetus 1 +O694XX2 Labor and delivery complicated by vasa previa, fetus 2 +O694XX3 Labor and delivery complicated by vasa previa, fetus 3 +O694XX4 Labor and delivery complicated by vasa previa, fetus 4 +O694XX5 Labor and delivery complicated by vasa previa, fetus 5 +O694XX9 Labor and delivery complicated by vasa previa, other fetus +O695XX0 Labor and delivery complicated by vascular lesion of cord, not applicable or unspecified +O695XX1 Labor and delivery complicated by vascular lesion of cord, fetus 1 +O695XX2 Labor and delivery complicated by vascular lesion of cord, fetus 2 +O695XX3 Labor and delivery complicated by vascular lesion of cord, fetus 3 +O695XX4 Labor and delivery complicated by vascular lesion of cord, fetus 4 +O695XX5 Labor and delivery complicated by vascular lesion of cord, fetus 5 +O695XX9 Labor and delivery complicated by vascular lesion of cord, other fetus +O6981X0 Labor and delivery complicated by cord around neck, without compression, not applicable or unspecified +O6981X1 Labor and delivery complicated by cord around neck, without compression, fetus 1 +O6981X2 Labor and delivery complicated by cord around neck, without compression, fetus 2 +O6981X3 Labor and delivery complicated by cord around neck, without compression, fetus 3 +O6981X4 Labor and delivery complicated by cord around neck, without compression, fetus 4 +O6981X5 Labor and delivery complicated by cord around neck, without compression, fetus 5 +O6981X9 Labor and delivery complicated by cord around neck, without compression, other fetus +O6982X0 Labor and delivery complicated by other cord entanglement, without compression, not applicable or unspecified +O6982X1 Labor and delivery complicated by other cord entanglement, without compression, fetus 1 +O6982X2 Labor and delivery complicated by other cord entanglement, without compression, fetus 2 +O6982X3 Labor and delivery complicated by other cord entanglement, without compression, fetus 3 +O6982X4 Labor and delivery complicated by other cord entanglement, without compression, fetus 4 +O6982X5 Labor and delivery complicated by other cord entanglement, without compression, fetus 5 +O6982X9 Labor and delivery complicated by other cord entanglement, without compression, other fetus +O6989X0 Labor and delivery complicated by other cord complications, not applicable or unspecified +O6989X1 Labor and delivery complicated by other cord complications, fetus 1 +O6989X2 Labor and delivery complicated by other cord complications, fetus 2 +O6989X3 Labor and delivery complicated by other cord complications, fetus 3 +O6989X4 Labor and delivery complicated by other cord complications, fetus 4 +O6989X5 Labor and delivery complicated by other cord complications, fetus 5 +O6989X9 Labor and delivery complicated by other cord complications, other fetus +O699XX0 Labor and delivery complicated by cord complication, unspecified, not applicable or unspecified +O699XX1 Labor and delivery complicated by cord complication, unspecified, fetus 1 +O699XX2 Labor and delivery complicated by cord complication, unspecified, fetus 2 +O699XX3 Labor and delivery complicated by cord complication, unspecified, fetus 3 +O699XX4 Labor and delivery complicated by cord complication, unspecified, fetus 4 +O699XX5 Labor and delivery complicated by cord complication, unspecified, fetus 5 +O699XX9 Labor and delivery complicated by cord complication, unspecified, other fetus +O700 First degree perineal laceration during delivery +O701 Second degree perineal laceration during delivery +O702 Third degree perineal laceration during delivery +O7020 Third degree perineal laceration during delivery, unspecified +O7021 Third degree perineal laceration during delivery, IIIa +O7022 Third degree perineal laceration during delivery, IIIb +O7023 Third degree perineal laceration during delivery, IIIc +O703 Fourth degree perineal laceration during delivery +O704 Anal sphincter tear complicating delivery, not associated with third degree laceration +O709 Perineal laceration during delivery, unspecified +O7100 Rupture of uterus before onset of labor, unspecified trimester +O7102 Rupture of uterus before onset of labor, second trimester +O7103 Rupture of uterus before onset of labor, third trimester +O711 Rupture of uterus during labor +O712 Postpartum inversion of uterus +O713 Obstetric laceration of cervix +O714 Obstetric high vaginal laceration alone +O715 Other obstetric injury to pelvic organs +O716 Obstetric damage to pelvic joints and ligaments +O717 Obstetric hematoma of pelvis +O7181 Laceration of uterus, not elsewhere classified +O7182 Other specified trauma to perineum and vulva +O7189 Other specified obstetric trauma +O719 Obstetric trauma, unspecified +O720 Third-stage hemorrhage +O721 Other immediate postpartum hemorrhage +O722 Delayed and secondary postpartum hemorrhage +O723 Postpartum coagulation defects +O730 Retained placenta without hemorrhage +O731 Retained portions of placenta and membranes, without hemorrhage +O740 Aspiration pneumonitis due to anesthesia during labor and delivery +O741 Other pulmonary complications of anesthesia during labor and delivery +O742 Cardiac complications of anesthesia during labor and delivery +O743 Central nervous system complications of anesthesia during labor and delivery +O744 Toxic reaction to local anesthesia during labor and delivery +O745 Spinal and epidural anesthesia-induced headache during labor and delivery +O746 Other complications of spinal and epidural anesthesia during labor and delivery +O747 Failed or difficult intubation for anesthesia during labor and delivery +O748 Other complications of anesthesia during labor and delivery +O749 Complication of anesthesia during labor and delivery, unspecified +O750 Maternal distress during labor and delivery +O751 Shock during or following labor and delivery +O752 Pyrexia during labor, not elsewhere classified +O753 Other infection during labor +O754 Other complications of obstetric surgery and procedures +O755 Delayed delivery after artificial rupture of membranes +O7581 Maternal exhaustion complicating labor and delivery +O7582 Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section +O7589 Other specified complications of labor and delivery +O759 Complication of labor and delivery, unspecified +O76 Abnormality in fetal heart rate and rhythm complicating labor and delivery +O770 Labor and delivery complicated by meconium in amniotic fluid +O771 Fetal stress in labor or delivery due to drug administration +O778 Labor and delivery complicated by other evidence of fetal stress +O779 Labor and delivery complicated by fetal stress, unspecified +O80 Encounter for full-term uncomplicated delivery +O82 Encounter for cesarean delivery without indication +O85 Puerperal sepsis +O860 Infection of obstetric surgical wound +O8600 Infection of obstetric surgical wound, unspecified +O8601 Infection of obstetric surgical wound, superficial incisional site +O8602 Infection of obstetric surgical wound, deep incisional site +O8603 Infection of obstetric surgical wound, organ and space site +O8604 Sepsis following an obstetrical procedure +O8609 Infection of obstetric surgical wound, other surgical site +O8611 Cervicitis following delivery +O8612 Endometritis following delivery +O8613 Vaginitis following delivery +O8619 Other infection of genital tract following delivery +O8620 Urinary tract infection following delivery, unspecified +O8621 Infection of kidney following delivery +O8622 Infection of bladder following delivery +O8629 Other urinary tract infection following delivery +O864 Pyrexia of unknown origin following delivery +O8681 Puerperal septic thrombophlebitis +O8689 Other specified puerperal infections +O870 Superficial thrombophlebitis in the puerperium +O871 Deep phlebothrombosis in the puerperium +O872 Hemorrhoids in the puerperium +O873 Cerebral venous thrombosis in the puerperium +O874 Varicose veins of lower extremity in the puerperium +O878 Other venous complications in the puerperium +O879 Venous complication in the puerperium, unspecified +O88011 Air embolism in pregnancy, first trimester +O88012 Air embolism in pregnancy, second trimester +O88013 Air embolism in pregnancy, third trimester +O88019 Air embolism in pregnancy, unspecified trimester +O8802 Air embolism in childbirth +O8803 Air embolism in the puerperium +O88111 Amniotic fluid embolism in pregnancy, first trimester +O88112 Amniotic fluid embolism in pregnancy, second trimester +O88113 Amniotic fluid embolism in pregnancy, third trimester +O88119 Amniotic fluid embolism in pregnancy, unspecified trimester +O8812 Amniotic fluid embolism in childbirth +O8813 Amniotic fluid embolism in the puerperium +O88211 Thromboembolism in pregnancy, first trimester +O88212 Thromboembolism in pregnancy, second trimester +O88213 Thromboembolism in pregnancy, third trimester +O88219 Thromboembolism in pregnancy, unspecified trimester +O8822 Thromboembolism in childbirth +O8823 Thromboembolism in the puerperium +O88311 Pyemic and septic embolism in pregnancy, first trimester +O88312 Pyemic and septic embolism in pregnancy, second trimester +O88313 Pyemic and septic embolism in pregnancy, third trimester +O88319 Pyemic and septic embolism in pregnancy, unspecified trimester +O8832 Pyemic and septic embolism in childbirth +O8833 Pyemic and septic embolism in the puerperium +O88811 Other embolism in pregnancy, first trimester +O88812 Other embolism in pregnancy, second trimester +O88813 Other embolism in pregnancy, third trimester +O88819 Other embolism in pregnancy, unspecified trimester +O8882 Other embolism in childbirth +O8883 Other embolism in the puerperium +O8901 Aspiration pneumonitis due to anesthesia during the puerperium +O8909 Other pulmonary complications of anesthesia during the puerperium +O891 Cardiac complications of anesthesia during the puerperium +O892 Central nervous system complications of anesthesia during the puerperium +O893 Toxic reaction to local anesthesia during the puerperium +O894 Spinal and epidural anesthesia-induced headache during the puerperium +O895 Other complications of spinal and epidural anesthesia during the puerperium +O896 Failed or difficult intubation for anesthesia during the puerperium +O898 Other complications of anesthesia during the puerperium +O899 Complication of anesthesia during the puerperium, unspecified +O900 Disruption of cesarean delivery wound +O901 Disruption of perineal obstetric wound +O902 Hematoma of obstetric wound +O903 Peripartum cardiomyopathy +O904 Postpartum acute kidney failure +O905 Postpartum thyroiditis +O906 Postpartum mood disturbance +O9081 Anemia of the puerperium +O9089 Other complications of the puerperium, not elsewhere classified +O909 Complication of the puerperium, unspecified +O91011 Infection of nipple associated with pregnancy, first trimester +O91012 Infection of nipple associated with pregnancy, second trimester +O91013 Infection of nipple associated with pregnancy, third trimester +O91019 Infection of nipple associated with pregnancy, unspecified trimester +O9102 Infection of nipple associated with the puerperium +O9103 Infection of nipple associated with lactation +O91111 Abscess of breast associated with pregnancy, first trimester +O91112 Abscess of breast associated with pregnancy, second trimester +O91113 Abscess of breast associated with pregnancy, third trimester +O91119 Abscess of breast associated with pregnancy, unspecified trimester +O9112 Abscess of breast associated with the puerperium +O9113 Abscess of breast associated with lactation +O91211 Nonpurulent mastitis associated with pregnancy, first trimester +O91212 Nonpurulent mastitis associated with pregnancy, second trimester +O91213 Nonpurulent mastitis associated with pregnancy, third trimester +O91219 Nonpurulent mastitis associated with pregnancy, unspecified trimester +O9122 Nonpurulent mastitis associated with the puerperium +O9123 Nonpurulent mastitis associated with lactation +O92011 Retracted nipple associated with pregnancy, first trimester +O92012 Retracted nipple associated with pregnancy, second trimester +O92013 Retracted nipple associated with pregnancy, third trimester +O92019 Retracted nipple associated with pregnancy, unspecified trimester +O9202 Retracted nipple associated with the puerperium +O9203 Retracted nipple associated with lactation +O92111 Cracked nipple associated with pregnancy, first trimester +O92112 Cracked nipple associated with pregnancy, second trimester +O92113 Cracked nipple associated with pregnancy, third trimester +O92119 Cracked nipple associated with pregnancy, unspecified trimester +O9212 Cracked nipple associated with the puerperium +O9213 Cracked nipple associated with lactation +O9220 Unspecified disorder of breast associated with pregnancy and the puerperium +O9229 Other disorders of breast associated with pregnancy and the puerperium +O923 Agalactia +O924 Hypogalactia +O925 Suppressed lactation +O926 Galactorrhea +O9270 Unspecified disorders of lactation +O9279 Other disorders of lactation +O94 Sequelae of complication of pregnancy, childbirth, and the puerperium +O98011 Tuberculosis complicating pregnancy, first trimester +O98012 Tuberculosis complicating pregnancy, second trimester +O98013 Tuberculosis complicating pregnancy, third trimester +O98019 Tuberculosis complicating pregnancy, unspecified trimester +O9802 Tuberculosis complicating childbirth +O9803 Tuberculosis complicating the puerperium +O98111 Syphilis complicating pregnancy, first trimester +O98112 Syphilis complicating pregnancy, second trimester +O98113 Syphilis complicating pregnancy, third trimester +O98119 Syphilis complicating pregnancy, unspecified trimester +O9812 Syphilis complicating childbirth +O9813 Syphilis complicating the puerperium +O98211 Gonorrhea complicating pregnancy, first trimester +O98212 Gonorrhea complicating pregnancy, second trimester +O98213 Gonorrhea complicating pregnancy, third trimester +O98219 Gonorrhea complicating pregnancy, unspecified trimester +O9822 Gonorrhea complicating childbirth +O9823 Gonorrhea complicating the puerperium +O98311 Other infections with a predominantly sexual mode of transmission complicating pregnancy, first trimester +O98312 Other infections with a predominantly sexual mode of transmission complicating pregnancy, second trimester +O98313 Other infections with a predominantly sexual mode of transmission complicating pregnancy, third trimester +O98319 Other infections with a predominantly sexual mode of transmission complicating pregnancy, unspecified trimester +O9832 Other infections with a predominantly sexual mode of transmission complicating childbirth +O9833 Other infections with a predominantly sexual mode of transmission complicating the puerperium +O98411 Viral hepatitis complicating pregnancy, first trimester +O98412 Viral hepatitis complicating pregnancy, second trimester +O98413 Viral hepatitis complicating pregnancy, third trimester +O98419 Viral hepatitis complicating pregnancy, unspecified trimester +O9842 Viral hepatitis complicating childbirth +O9843 Viral hepatitis complicating the puerperium +O98511 Other viral diseases complicating pregnancy, first trimester +O98512 Other viral diseases complicating pregnancy, second trimester +O98513 Other viral diseases complicating pregnancy, third trimester +O98519 Other viral diseases complicating pregnancy, unspecified trimester +O9852 Other viral diseases complicating childbirth +O9853 Other viral diseases complicating the puerperium +O98611 Protozoal diseases complicating pregnancy, first trimester +O98612 Protozoal diseases complicating pregnancy, second trimester +O98613 Protozoal diseases complicating pregnancy, third trimester +O98619 Protozoal diseases complicating pregnancy, unspecified trimester +O9862 Protozoal diseases complicating childbirth +O9863 Protozoal diseases complicating the puerperium +O98711 Human immunodeficiency virus [HIV] disease complicating pregnancy, first trimester +O98712 Human immunodeficiency virus [HIV] disease complicating pregnancy, second trimester +O98713 Human immunodeficiency virus [HIV] disease complicating pregnancy, third trimester +O98719 Human immunodeficiency virus [HIV] disease complicating pregnancy, unspecified trimester +O9872 Human immunodeficiency virus [HIV] disease complicating childbirth +O9873 Human immunodeficiency virus [HIV] disease complicating the puerperium +O98811 Other maternal infectious and parasitic diseases complicating pregnancy, first trimester +O98812 Other maternal infectious and parasitic diseases complicating pregnancy, second trimester +O98813 Other maternal infectious and parasitic diseases complicating pregnancy, third trimester +O98819 Other maternal infectious and parasitic diseases complicating pregnancy, unspecified trimester +O9882 Other maternal infectious and parasitic diseases complicating childbirth +O9883 Other maternal infectious and parasitic diseases complicating the puerperium +O98911 Unspecified maternal infectious and parasitic disease complicating pregnancy, first trimester +O98912 Unspecified maternal infectious and parasitic disease complicating pregnancy, second trimester +O98913 Unspecified maternal infectious and parasitic disease complicating pregnancy, third trimester +O98919 Unspecified maternal infectious and parasitic disease complicating pregnancy, unspecified trimester +O9892 Unspecified maternal infectious and parasitic disease complicating childbirth +O9893 Unspecified maternal infectious and parasitic disease complicating the puerperium +O99011 Anemia complicating pregnancy, first trimester +O99012 Anemia complicating pregnancy, second trimester +O99013 Anemia complicating pregnancy, third trimester +O99019 Anemia complicating pregnancy, unspecified trimester +O9902 Anemia complicating childbirth +O9903 Anemia complicating the puerperium +O99111 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, first trimester +O99112 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, second trimester +O99113 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, third trimester +O99119 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, unspecified trimester +O9912 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating childbirth +O9913 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating the puerperium +O99210 Obesity complicating pregnancy, unspecified trimester +O99211 Obesity complicating pregnancy, first trimester +O99212 Obesity complicating pregnancy, second trimester +O99213 Obesity complicating pregnancy, third trimester +O99214 Obesity complicating childbirth +O99215 Obesity complicating the puerperium +O99280 Endocrine, nutritional and metabolic diseases complicating pregnancy, unspecified trimester +O99281 Endocrine, nutritional and metabolic diseases complicating pregnancy, first trimester +O99282 Endocrine, nutritional and metabolic diseases complicating pregnancy, second trimester +O99283 Endocrine, nutritional and metabolic diseases complicating pregnancy, third trimester +O99284 Endocrine, nutritional and metabolic diseases complicating childbirth +O99285 Endocrine, nutritional and metabolic diseases complicating the puerperium +O99310 Alcohol use complicating pregnancy, unspecified trimester +O99311 Alcohol use complicating pregnancy, first trimester +O99312 Alcohol use complicating pregnancy, second trimester +O99313 Alcohol use complicating pregnancy, third trimester +O99314 Alcohol use complicating childbirth +O99315 Alcohol use complicating the puerperium +O99320 Drug use complicating pregnancy, unspecified trimester +O99321 Drug use complicating pregnancy, first trimester +O99322 Drug use complicating pregnancy, second trimester +O99323 Drug use complicating pregnancy, third trimester +O99324 Drug use complicating childbirth +O99325 Drug use complicating the puerperium +O99330 Smoking (tobacco) complicating pregnancy, unspecified trimester +O99331 Smoking (tobacco) complicating pregnancy, first trimester +O99332 Smoking (tobacco) complicating pregnancy, second trimester +O99333 Smoking (tobacco) complicating pregnancy, third trimester +O99334 Smoking (tobacco) complicating childbirth +O99335 Smoking (tobacco) complicating the puerperium +O99340 Other mental disorders complicating pregnancy, unspecified trimester +O99341 Other mental disorders complicating pregnancy, first trimester +O99342 Other mental disorders complicating pregnancy, second trimester +O99343 Other mental disorders complicating pregnancy, third trimester +O99344 Other mental disorders complicating childbirth +O99345 Other mental disorders complicating the puerperium +O99350 Diseases of the nervous system complicating pregnancy, unspecified trimester +O99351 Diseases of the nervous system complicating pregnancy, first trimester +O99352 Diseases of the nervous system complicating pregnancy, second trimester +O99353 Diseases of the nervous system complicating pregnancy, third trimester +O99354 Diseases of the nervous system complicating childbirth +O99355 Diseases of the nervous system complicating the puerperium +O99411 Diseases of the circulatory system complicating pregnancy, first trimester +O99412 Diseases of the circulatory system complicating pregnancy, second trimester +O99413 Diseases of the circulatory system complicating pregnancy, third trimester +O99419 Diseases of the circulatory system complicating pregnancy, unspecified trimester +O9942 Diseases of the circulatory system complicating childbirth +O9943 Diseases of the circulatory system complicating the puerperium +O99511 Diseases of the respiratory system complicating pregnancy, first trimester +O99512 Diseases of the respiratory system complicating pregnancy, second trimester +O99513 Diseases of the respiratory system complicating pregnancy, third trimester +O99519 Diseases of the respiratory system complicating pregnancy, unspecified trimester +O9952 Diseases of the respiratory system complicating childbirth +O9953 Diseases of the respiratory system complicating the puerperium +O99611 Diseases of the digestive system complicating pregnancy, first trimester +O99612 Diseases of the digestive system complicating pregnancy, second trimester +O99613 Diseases of the digestive system complicating pregnancy, third trimester +O99619 Diseases of the digestive system complicating pregnancy, unspecified trimester +O9962 Diseases of the digestive system complicating childbirth +O9963 Diseases of the digestive system complicating the puerperium +O99711 Diseases of the skin and subcutaneous tissue complicating pregnancy, first trimester +O99712 Diseases of the skin and subcutaneous tissue complicating pregnancy, second trimester +O99713 Diseases of the skin and subcutaneous tissue complicating pregnancy, third trimester +O99719 Diseases of the skin and subcutaneous tissue complicating pregnancy, unspecified trimester +O9972 Diseases of the skin and subcutaneous tissue complicating childbirth +O9973 Diseases of the skin and subcutaneous tissue complicating the puerperium +O99810 Abnormal glucose complicating pregnancy +O99814 Abnormal glucose complicating childbirth +O99815 Abnormal glucose complicating the puerperium +O99820 Streptococcus B carrier state complicating pregnancy +O99824 Streptococcus B carrier state complicating childbirth +O99825 Streptococcus B carrier state complicating the puerperium +O99830 Other infection carrier state complicating pregnancy +O99834 Other infection carrier state complicating childbirth +O99835 Other infection carrier state complicating the puerperium +O99840 Bariatric surgery status complicating pregnancy, unspecified trimester +O99841 Bariatric surgery status complicating pregnancy, first trimester +O99842 Bariatric surgery status complicating pregnancy, second trimester +O99843 Bariatric surgery status complicating pregnancy, third trimester +O99844 Bariatric surgery status complicating childbirth +O99845 Bariatric surgery status complicating the puerperium +O9989 Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium +O9A111 Malignant neoplasm complicating pregnancy, first trimester +O9A112 Malignant neoplasm complicating pregnancy, second trimester +O9A113 Malignant neoplasm complicating pregnancy, third trimester +O9A119 Malignant neoplasm complicating pregnancy, unspecified trimester +O9A12 Malignant neoplasm complicating childbirth +O9A13 Malignant neoplasm complicating the puerperium +O9A211 Injury, poisoning and certain other consequences of external causes complicating pregnancy, first trimester +O9A212 Injury, poisoning and certain other consequences of external causes complicating pregnancy, second trimester +O9A213 Injury, poisoning and certain other consequences of external causes complicating pregnancy, third trimester +O9A219 Injury, poisoning and certain other consequences of external causes complicating pregnancy, unspecified trimester +O9A22 Injury, poisoning and certain other consequences of external causes complicating childbirth +O9A23 Injury, poisoning and certain other consequences of external causes complicating the puerperium +O9A311 Physical abuse complicating pregnancy, first trimester +O9A312 Physical abuse complicating pregnancy, second trimester +O9A313 Physical abuse complicating pregnancy, third trimester +O9A319 Physical abuse complicating pregnancy, unspecified trimester +O9A32 Physical abuse complicating childbirth +O9A33 Physical abuse complicating the puerperium +O9A411 Sexual abuse complicating pregnancy, first trimester +O9A412 Sexual abuse complicating pregnancy, second trimester +O9A413 Sexual abuse complicating pregnancy, third trimester +O9A419 Sexual abuse complicating pregnancy, unspecified trimester +O9A42 Sexual abuse complicating childbirth +O9A43 Sexual abuse complicating the puerperium +O9A511 Psychological abuse complicating pregnancy, first trimester +O9A512 Psychological abuse complicating pregnancy, second trimester +O9A513 Psychological abuse complicating pregnancy, third trimester +O9A519 Psychological abuse complicating pregnancy, unspecified trimester +O9A52 Psychological abuse complicating childbirth +O9A53 Psychological abuse complicating the puerperium +P000 Newborn affected by maternal hypertensive disorders +P001 Newborn affected by maternal renal and urinary tract diseases +P002 Newborn affected by maternal infectious and parasitic diseases +P003 Newborn affected by other maternal circulatory and respiratory diseases +P004 Newborn affected by maternal nutritional disorders +P005 Newborn affected by maternal injury +P006 Newborn affected by surgical procedure on mother +P007 Newborn affected by other medical procedures on mother, not elsewhere classified +P0081 Newborn affected by periodontal disease in mother +P0089 Newborn affected by other maternal conditions +P009 Newborn affected by unspecified maternal condition +P010 Newborn affected by incompetent cervix +P011 Newborn affected by premature rupture of membranes +P012 Newborn affected by oligohydramnios +P013 Newborn affected by polyhydramnios +P014 Newborn affected by ectopic pregnancy +P015 Newborn affected by multiple pregnancy +P016 Newborn affected by maternal death +P017 Newborn affected by malpresentation before labor +P018 Newborn ffected by other maternal complications of pregnancy +P019 Newborn affected by maternal complication of pregnancy, unspecified +P020 Newborn affected by placenta previa +P021 Newborn affected by other forms of placental separation and hemorrhage +P0220 Newborn affected by unspecified morphological and functional abnormalities of placenta +P0229 Newborn affected by other morphological and functional abnormalities of placenta +P023 Newborn affected by placental transfusion syndromes +P024 Newborn affected by prolapsed cord +P025 Newborn affected by other compression of umbilical cord +P0260 Newborn affected by unspecified conditions of umbilical cord +P0269 Newborn affected by other conditions of umbilical cord +P027 Newborn affected by chorioamnionitis +P0270 Newborn affected by fetal inflammatory response syndrome +P0278 Newborn affected by other conditions from chorioamnionitis +P028 Newborn affected by other abnormalities of membranes +P029 Newborn affected by abnormality of membranes, unspecified +P030 Newborn affected by breech delivery and extraction +P031 Newborn affected by other malpresentation, malposition and disproportion during labor and delivery +P032 Newborn affected by forceps delivery +P033 Newborn affected by delivery by vacuum extractor [ventouse] +P034 Newborn affected by Cesarean delivery +P035 Newborn affected by precipitate delivery +P036 Newborn affected by abnormal uterine contractions +P03810 Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm before the onset of labor +P03811 Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm during labor +P03819 Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm, unspecified as to time of onset +P0382 Meconium passage during delivery +P0389 Newborn affected by other specified complications of labor and delivery +P039 Newborn affected by complication of labor and delivery, unspecified +P040 Newborn affected by maternal anesthesia and analgesia in pregnancy, labor and delivery +P041 Newborn affected by other maternal medication +P0411 Newborn affected by maternal antineoplastic chemotherapy +P0412 Newborn affected by maternal cytotoxic drugs +P0413 Newborn affected by maternal use of anticonvulsants +P0414 Newborn affected by maternal use of opiates +P0415 Newborn affected by maternal use of antidepressants +P0416 Newborn affected by maternal use of amphetamines +P0417 Newborn affected by maternal use of sedative-hypnotics +P0418 Newborn affected by other maternal medication +P0419 Newborn affected by maternal use of unspecified medication +P041A Newborn affected by maternal use of anxiolytics +P042 Newborn affected by maternal use of tobacco +P043 Newborn affected by maternal use of alcohol +P0440 Newborn affected by maternal use of unspecified drugs of addiction +P0441 Newborn affected by maternal use of cocaine +P0442 Newborn affected by maternal use of hallucinogens +P0449 Newborn affected by maternal use of other drugs of addiction +P045 Newborn affected by maternal use of nutritional chemical substances +P046 Newborn affected by maternal exposure to environmental chemical substances +P048 Newborn affected by other maternal noxious substances +P0481 Newborn affected by maternal use of cannabis +P0489 Newborn affected by other maternal noxious substances +P049 Newborn affected by maternal noxious substance, unspecified +P0500 Newborn light for gestational age, unspecified weight +P0501 Newborn light for gestational age, less than 500 grams +P0502 Newborn light for gestational age, 500-749 grams +P0503 Newborn light for gestational age, 750-999 grams +P0504 Newborn light for gestational age, 1000-1249 grams +P0505 Newborn light for gestational age, 1250-1499 grams +P0506 Newborn light for gestational age, 1500-1749 grams +P0507 Newborn light for gestational age, 1750-1999 grams +P0508 Newborn light for gestational age, 2000-2499 grams +P0509 Newborn light for gestational age, 2500 grams and over +P0510 Newborn small for gestational age, unspecified weight +P0511 Newborn small for gestational age, less than 500 grams +P0512 Newborn small for gestational age, 500-749 grams +P0513 Newborn small for gestational age, 750-999 grams +P0514 Newborn small for gestational age, 1000-1249 grams +P0515 Newborn small for gestational age, 1250-1499 grams +P0516 Newborn small for gestational age, 1500-1749 grams +P0517 Newborn small for gestational age, 1750-1999 grams +P0518 Newborn small for gestational age, 2000-2499 grams +P0519 Newborn small for gestational age, other +P052 Newborn affected by fetal (intrauterine) malnutrition not light or small for gestational age +P059 Newborn affected by slow intrauterine growth, unspecified +P0700 Extremely low birth weight newborn, unspecified weight +P0701 Extremely low birth weight newborn, less than 500 grams +P0702 Extremely low birth weight newborn, 500-749 grams +P0703 Extremely low birth weight newborn, 750-999 grams +P0710 Other low birth weight newborn, unspecified weight +P0714 Other low birth weight newborn, 1000-1249 grams +P0715 Other low birth weight newborn, 1250-1499 grams +P0716 Other low birth weight newborn, 1500-1749 grams +P0717 Other low birth weight newborn, 1750-1999 grams +P0718 Other low birth weight newborn, 2000-2499 grams +P0720 Extreme immaturity of newborn, unspecified weeks of gestation +P0721 Extreme immaturity of newborn, gestational age less than 23 completed weeks +P0722 Extreme immaturity of newborn, gestational age 23 completed weeks +P0723 Extreme immaturity of newborn, gestational age 24 completed weeks +P0724 Extreme immaturity of newborn, gestational age 25 completed weeks +P0725 Extreme immaturity of newborn, gestational age 26 completed weeks +P0726 Extreme immaturity of newborn, gestational age 27 completed weeks +P0730 Preterm newborn, unspecified weeks of gestation +P0731 Preterm newborn, gestational age 28 completed weeks +P0732 Preterm newborn, gestational age 29 completed weeks +P0733 Preterm newborn, gestational age 30 completed weeks +P0734 Preterm newborn, gestational age 31 completed weeks +P0735 Preterm newborn, gestational age 32 completed weeks +P0736 Preterm newborn, gestational age 33 completed weeks +P0737 Preterm newborn, gestational age 34 completed weeks +P0738 Preterm newborn, gestational age 35 completed weeks +P0739 Preterm newborn, gestational age 36 completed weeks +P080 Exceptionally large newborn baby +P081 Other heavy for gestational age newborn +P0821 Post-term newborn +P0822 Prolonged gestation of newborn +P09 Abnormal findings on neonatal screening +P100 Subdural hemorrhage due to birth injury +P101 Cerebral hemorrhage due to birth injury +P102 Intraventricular hemorrhage due to birth injury +P103 Subarachnoid hemorrhage due to birth injury +P104 Tentorial tear due to birth injury +P108 Other intracranial lacerations and hemorrhages due to birth injury +P109 Unspecified intracranial laceration and hemorrhage due to birth injury +P110 Cerebral edema due to birth injury +P111 Other specified brain damage due to birth injury +P112 Unspecified brain damage due to birth injury +P113 Birth injury to facial nerve +P114 Birth injury to other cranial nerves +P115 Birth injury to spine and spinal cord +P119 Birth injury to central nervous system, unspecified +P120 Cephalhematoma due to birth injury +P121 Chignon (from vacuum extraction) due to birth injury +P122 Epicranial subaponeurotic hemorrhage due to birth injury +P123 Bruising of scalp due to birth injury +P124 Injury of scalp of newborn due to monitoring equipment +P1281 Caput succedaneum +P1289 Other birth injuries to scalp +P129 Birth injury to scalp, unspecified +P130 Fracture of skull due to birth injury +P131 Other birth injuries to skull +P132 Birth injury to femur +P133 Birth injury to other long bones +P134 Fracture of clavicle due to birth injury +P138 Birth injuries to other parts of skeleton +P139 Birth injury to skeleton, unspecified +P140 Erb's paralysis due to birth injury +P141 Klumpke's paralysis due to birth injury +P142 Phrenic nerve paralysis due to birth injury +P143 Other brachial plexus birth injuries +P148 Birth injuries to other parts of peripheral nervous system +P149 Birth injury to peripheral nervous system, unspecified +P150 Birth injury to liver +P151 Birth injury to spleen +P152 Sternomastoid injury due to birth injury +P153 Birth injury to eye +P154 Birth injury to face +P155 Birth injury to external genitalia +P156 Subcutaneous fat necrosis due to birth injury +P158 Other specified birth injuries +P159 Birth injury, unspecified +P190 Metabolic acidemia in newborn first noted before onset of labor +P191 Metabolic acidemia in newborn first noted during labor +P192 Metabolic acidemia noted at birth +P199 Metabolic acidemia, unspecified +P220 Respiratory distress syndrome of newborn +P221 Transient tachypnea of newborn +P228 Other respiratory distress of newborn +P229 Respiratory distress of newborn, unspecified +P230 Congenital pneumonia due to viral agent +P231 Congenital pneumonia due to Chlamydia +P232 Congenital pneumonia due to staphylococcus +P233 Congenital pneumonia due to streptococcus, group B +P234 Congenital pneumonia due to Escherichia coli +P235 Congenital pneumonia due to Pseudomonas +P236 Congenital pneumonia due to other bacterial agents +P238 Congenital pneumonia due to other organisms +P239 Congenital pneumonia, unspecified +P2400 Meconium aspiration without respiratory symptoms +P2401 Meconium aspiration with respiratory symptoms +P2410 Neonatal aspiration of (clear) amniotic fluid and mucus without respiratory symptoms +P2411 Neonatal aspiration of (clear) amniotic fluid and mucus with respiratory symptoms +P2420 Neonatal aspiration of blood without respiratory symptoms +P2421 Neonatal aspiration of blood with respiratory symptoms +P2430 Neonatal aspiration of milk and regurgitated food without respiratory symptoms +P2431 Neonatal aspiration of milk and regurgitated food with respiratory symptoms +P2480 Other neonatal aspiration without respiratory symptoms +P2481 Other neonatal aspiration with respiratory symptoms +P249 Neonatal aspiration, unspecified +P250 Interstitial emphysema originating in the perinatal period +P251 Pneumothorax originating in the perinatal period +P252 Pneumomediastinum originating in the perinatal period +P253 Pneumopericardium originating in the perinatal period +P258 Other conditions related to interstitial emphysema originating in the perinatal period +P260 Tracheobronchial hemorrhage originating in the perinatal period +P261 Massive pulmonary hemorrhage originating in the perinatal period +P268 Other pulmonary hemorrhages originating in the perinatal period +P269 Unspecified pulmonary hemorrhage originating in the perinatal period +P270 Wilson-Mikity syndrome +P271 Bronchopulmonary dysplasia originating in the perinatal period +P278 Other chronic respiratory diseases originating in the perinatal period +P279 Unspecified chronic respiratory disease originating in the perinatal period +P280 Primary atelectasis of newborn +P2810 Unspecified atelectasis of newborn +P2811 Resorption atelectasis without respiratory distress syndrome +P2819 Other atelectasis of newborn +P282 Cyanotic attacks of newborn +P283 Primary sleep apnea of newborn +P284 Other apnea of newborn +P285 Respiratory failure of newborn +P2881 Respiratory arrest of newborn +P2889 Other specified respiratory conditions of newborn +P289 Respiratory condition of newborn, unspecified +P290 Neonatal cardiac failure +P2911 Neonatal tachycardia +P2912 Neonatal bradycardia +P292 Neonatal hypertension +P293 Persistent fetal circulation +P2930 Pulmonary hypertension of newborn +P2938 Other persistent fetal circulation +P294 Transient myocardial ischemia in newborn +P2981 Cardiac arrest of newborn +P2989 Other cardiovascular disorders originating in the perinatal period +P299 Cardiovascular disorder originating in the perinatal period, unspecified +P350 Congenital rubella syndrome +P351 Congenital cytomegalovirus infection +P352 Congenital herpesviral [herpes simplex] infection +P353 Congenital viral hepatitis +P354 Congenital Zika virus disease +P358 Other congenital viral diseases +P359 Congenital viral disease, unspecified +P360 Sepsis of newborn due to streptococcus, group B +P3610 Sepsis of newborn due to unspecified streptococci +P3619 Sepsis of newborn due to other streptococci +P362 Sepsis of newborn due to Staphylococcus aureus +P3630 Sepsis of newborn due to unspecified staphylococci +P3639 Sepsis of newborn due to other staphylococci +P364 Sepsis of newborn due to Escherichia coli +P365 Sepsis of newborn due to anaerobes +P368 Other bacterial sepsis of newborn +P369 Bacterial sepsis of newborn, unspecified +P370 Congenital tuberculosis +P371 Congenital toxoplasmosis +P372 Neonatal (disseminated) listeriosis +P373 Congenital falciparum malaria +P374 Other congenital malaria +P375 Neonatal candidiasis +P378 Other specified congenital infectious and parasitic diseases +P379 Congenital infectious or parasitic disease, unspecified +P381 Omphalitis with mild hemorrhage +P389 Omphalitis without hemorrhage +P390 Neonatal infective mastitis +P391 Neonatal conjunctivitis and dacryocystitis +P392 Intra-amniotic infection affecting newborn, not elsewhere classified +P393 Neonatal urinary tract infection +P394 Neonatal skin infection +P398 Other specified infections specific to the perinatal period +P399 Infection specific to the perinatal period, unspecified +P500 Newborn affected by intrauterine (fetal) blood loss from vasa previa +P501 Newborn affected by intrauterine (fetal) blood loss from ruptured cord +P502 Newborn affected by intrauterine (fetal) blood loss from placenta +P503 Newborn affected by hemorrhage into co-twin +P504 Newborn affected by hemorrhage into maternal circulation +P505 Newborn affected by intrauterine (fetal) blood loss from cut end of co-twin's cord +P508 Newborn affected by other intrauterine (fetal) blood loss +P509 Newborn affected by intrauterine (fetal) blood loss, unspecified +P510 Massive umbilical hemorrhage of newborn +P518 Other umbilical hemorrhages of newborn +P519 Umbilical hemorrhage of newborn, unspecified +P520 Intraventricular (nontraumatic) hemorrhage, grade 1, of newborn +P521 Intraventricular (nontraumatic) hemorrhage, grade 2, of newborn +P5221 Intraventricular (nontraumatic) hemorrhage, grade 3, of newborn +P5222 Intraventricular (nontraumatic) hemorrhage, grade 4, of newborn +P523 Unspecified intraventricular (nontraumatic) hemorrhage of newborn +P524 Intracerebral (nontraumatic) hemorrhage of newborn +P525 Subarachnoid (nontraumatic) hemorrhage of newborn +P526 Cerebellar (nontraumatic) and posterior fossa hemorrhage of newborn +P528 Other intracranial (nontraumatic) hemorrhages of newborn +P529 Intracranial (nontraumatic) hemorrhage of newborn, unspecified +P53 Hemorrhagic disease of newborn +P540 Neonatal hematemesis +P541 Neonatal melena +P542 Neonatal rectal hemorrhage +P543 Other neonatal gastrointestinal hemorrhage +P544 Neonatal adrenal hemorrhage +P545 Neonatal cutaneous hemorrhage +P546 Neonatal vaginal hemorrhage +P548 Other specified neonatal hemorrhages +P549 Neonatal hemorrhage, unspecified +P550 Rh isoimmunization of newborn +P551 ABO isoimmunization of newborn +P558 Other hemolytic diseases of newborn +P559 Hemolytic disease of newborn, unspecified +P560 Hydrops fetalis due to isoimmunization +P5690 Hydrops fetalis due to unspecified hemolytic disease +P5699 Hydrops fetalis due to other hemolytic disease +P570 Kernicterus due to isoimmunization +P578 Other specified kernicterus +P579 Kernicterus, unspecified +P580 Neonatal jaundice due to bruising +P581 Neonatal jaundice due to bleeding +P582 Neonatal jaundice due to infection +P583 Neonatal jaundice due to polycythemia +P5841 Neonatal jaundice due to drugs or toxins transmitted from mother +P5842 Neonatal jaundice due to drugs or toxins given to newborn +P585 Neonatal jaundice due to swallowed maternal blood +P588 Neonatal jaundice due to other specified excessive hemolysis +P589 Neonatal jaundice due to excessive hemolysis, unspecified +P590 Neonatal jaundice associated with preterm delivery +P591 Inspissated bile syndrome +P5920 Neonatal jaundice from unspecified hepatocellular damage +P5929 Neonatal jaundice from other hepatocellular damage +P593 Neonatal jaundice from breast milk inhibitor +P598 Neonatal jaundice from other specified causes +P599 Neonatal jaundice, unspecified +P60 Disseminated intravascular coagulation of newborn +P610 Transient neonatal thrombocytopenia +P611 Polycythemia neonatorum +P612 Anemia of prematurity +P613 Congenital anemia from fetal blood loss +P614 Other congenital anemias, not elsewhere classified +P615 Transient neonatal neutropenia +P616 Other transient neonatal disorders of coagulation +P618 Other specified perinatal hematological disorders +P619 Perinatal hematological disorder, unspecified +P700 Syndrome of infant of mother with gestational diabetes +P701 Syndrome of infant of a diabetic mother +P702 Neonatal diabetes mellitus +P703 Iatrogenic neonatal hypoglycemia +P704 Other neonatal hypoglycemia +P708 Other transitory disorders of carbohydrate metabolism of newborn +P709 Transitory disorder of carbohydrate metabolism of newborn, unspecified +P710 Cow's milk hypocalcemia in newborn +P711 Other neonatal hypocalcemia +P712 Neonatal hypomagnesemia +P713 Neonatal tetany without calcium or magnesium deficiency +P714 Transitory neonatal hypoparathyroidism +P718 Other transitory neonatal disorders of calcium and magnesium metabolism +P719 Transitory neonatal disorder of calcium and magnesium metabolism, unspecified +P720 Neonatal goiter, not elsewhere classified +P721 Transitory neonatal hyperthyroidism +P722 Other transitory neonatal disorders of thyroid function, not elsewhere classified +P728 Other specified transitory neonatal endocrine disorders +P729 Transitory neonatal endocrine disorder, unspecified +P740 Late metabolic acidosis of newborn +P741 Dehydration of newborn +P742 Disturbances of sodium balance of newborn +P7421 Hypernatremia of newborn +P7422 Hyponatremia of newborn +P743 Disturbances of potassium balance of newborn +P7431 Hyperkalemia of newborn +P7432 Hypokalemia of newborn +P744 Other transitory electrolyte disturbances of newborn +P7441 Alkalosis of newborn +P74421 Hyperchloremia of newborn +P74422 Hypochloremia of newborn +P7449 Other transitory electrolyte disturbance of newborn +P745 Transitory tyrosinemia of newborn +P746 Transitory hyperammonemia of newborn +P748 Other transitory metabolic disturbances of newborn +P749 Transitory metabolic disturbance of newborn, unspecified +P760 Meconium plug syndrome +P761 Transitory ileus of newborn +P762 Intestinal obstruction due to inspissated milk +P768 Other specified intestinal obstruction of newborn +P769 Intestinal obstruction of newborn, unspecified +P771 Stage 1 necrotizing enterocolitis in newborn +P772 Stage 2 necrotizing enterocolitis in newborn +P773 Stage 3 necrotizing enterocolitis in newborn +P779 Necrotizing enterocolitis in newborn, unspecified +P780 Perinatal intestinal perforation +P781 Other neonatal peritonitis +P782 Neonatal hematemesis and melena due to swallowed maternal blood +P783 Noninfective neonatal diarrhea +P7881 Congenital cirrhosis (of liver) +P7882 Peptic ulcer of newborn +P7883 Newborn esophageal reflux +P7884 Gestational alloimmune liver disease +P7889 Other specified perinatal digestive system disorders +P789 Perinatal digestive system disorder, unspecified +P800 Cold injury syndrome +P808 Other hypothermia of newborn +P809 Hypothermia of newborn, unspecified +P810 Environmental hyperthermia of newborn +P818 Other specified disturbances of temperature regulation of newborn +P819 Disturbance of temperature regulation of newborn, unspecified +P830 Sclerema neonatorum +P831 Neonatal erythema toxicum +P832 Hydrops fetalis not due to hemolytic disease +P8330 Unspecified edema specific to newborn +P8339 Other edema specific to newborn +P834 Breast engorgement of newborn +P835 Congenital hydrocele +P836 Umbilical polyp of newborn +P838 Other specified conditions of integument specific to newborn +P8381 Umbilical granuloma +P8388 Other specified conditions of integument specific to newborn +P839 Condition of the integument specific to newborn, unspecified +P84 Other problems with newborn +P90 Convulsions of newborn +P910 Neonatal cerebral ischemia +P911 Acquired periventricular cysts of newborn +P912 Neonatal cerebral leukomalacia +P913 Neonatal cerebral irritability +P914 Neonatal cerebral depression +P915 Neonatal coma +P9160 Hypoxic ischemic encephalopathy [HIE], unspecified +P9161 Mild hypoxic ischemic encephalopathy [HIE] +P9162 Moderate hypoxic ischemic encephalopathy [HIE] +P9163 Severe hypoxic ischemic encephalopathy [HIE] +P918 Other specified disturbances of cerebral status of newborn +P91811 Neonatal encephalopathy in diseases classified elsewhere +P91819 Neonatal encephalopathy, unspecified +P9188 Other specified disturbances of cerebral status of newborn +P919 Disturbance of cerebral status of newborn, unspecified +P9201 Bilious vomiting of newborn +P9209 Other vomiting of newborn +P921 Regurgitation and rumination of newborn +P922 Slow feeding of newborn +P923 Underfeeding of newborn +P924 Overfeeding of newborn +P925 Neonatal difficulty in feeding at breast +P926 Failure to thrive in newborn +P928 Other feeding problems of newborn +P929 Feeding problem of newborn, unspecified +P930 Grey baby syndrome +P938 Other reactions and intoxications due to drugs administered to newborn +P940 Transient neonatal myasthenia gravis +P941 Congenital hypertonia +P942 Congenital hypotonia +P948 Other disorders of muscle tone of newborn +P949 Disorder of muscle tone of newborn, unspecified +P95 Stillbirth +P960 Congenital renal failure +P961 Neonatal withdrawal symptoms from maternal use of drugs of addiction +P962 Withdrawal symptoms from therapeutic use of drugs in newborn +P963 Wide cranial sutures of newborn +P965 Complication to newborn due to (fetal) intrauterine procedure +P9681 Exposure to (parental) (environmental) tobacco smoke in the perinatal period +P9682 Delayed separation of umbilical cord +P9683 Meconium staining +P9689 Other specified conditions originating in the perinatal period +P969 Condition originating in the perinatal period, unspecified +Q000 Anencephaly +Q001 Craniorachischisis +Q002 Iniencephaly +Q010 Frontal encephalocele +Q011 Nasofrontal encephalocele +Q012 Occipital encephalocele +Q018 Encephalocele of other sites +Q019 Encephalocele, unspecified +Q02 Microcephaly +Q030 Malformations of aqueduct of Sylvius +Q031 Atresia of foramina of Magendie and Luschka +Q038 Other congenital hydrocephalus +Q039 Congenital hydrocephalus, unspecified +Q040 Congenital malformations of corpus callosum +Q041 Arhinencephaly +Q042 Holoprosencephaly +Q043 Other reduction deformities of brain +Q044 Septo-optic dysplasia of brain +Q045 Megalencephaly +Q046 Congenital cerebral cysts +Q048 Other specified congenital malformations of brain +Q049 Congenital malformation of brain, unspecified +Q050 Cervical spina bifida with hydrocephalus +Q051 Thoracic spina bifida with hydrocephalus +Q052 Lumbar spina bifida with hydrocephalus +Q053 Sacral spina bifida with hydrocephalus +Q054 Unspecified spina bifida with hydrocephalus +Q055 Cervical spina bifida without hydrocephalus +Q056 Thoracic spina bifida without hydrocephalus +Q057 Lumbar spina bifida without hydrocephalus +Q058 Sacral spina bifida without hydrocephalus +Q059 Spina bifida, unspecified +Q060 Amyelia +Q061 Hypoplasia and dysplasia of spinal cord +Q062 Diastematomyelia +Q063 Other congenital cauda equina malformations +Q064 Hydromyelia +Q068 Other specified congenital malformations of spinal cord +Q069 Congenital malformation of spinal cord, unspecified +Q0700 Arnold-Chiari syndrome without spina bifida or hydrocephalus +Q0701 Arnold-Chiari syndrome with spina bifida +Q0702 Arnold-Chiari syndrome with hydrocephalus +Q0703 Arnold-Chiari syndrome with spina bifida and hydrocephalus +Q078 Other specified congenital malformations of nervous system +Q079 Congenital malformation of nervous system, unspecified +Q100 Congenital ptosis +Q101 Congenital ectropion +Q102 Congenital entropion +Q103 Other congenital malformations of eyelid +Q104 Absence and agenesis of lacrimal apparatus +Q105 Congenital stenosis and stricture of lacrimal duct +Q106 Other congenital malformations of lacrimal apparatus +Q107 Congenital malformation of orbit +Q110 Cystic eyeball +Q111 Other anophthalmos +Q112 Microphthalmos +Q113 Macrophthalmos +Q120 Congenital cataract +Q121 Congenital displaced lens +Q122 Coloboma of lens +Q123 Congenital aphakia +Q124 Spherophakia +Q128 Other congenital lens malformations +Q129 Congenital lens malformation, unspecified +Q130 Coloboma of iris +Q131 Absence of iris +Q132 Other congenital malformations of iris +Q133 Congenital corneal opacity +Q134 Other congenital corneal malformations +Q135 Blue sclera +Q1381 Rieger's anomaly +Q1389 Other congenital malformations of anterior segment of eye +Q139 Congenital malformation of anterior segment of eye, unspecified +Q140 Congenital malformation of vitreous humor +Q141 Congenital malformation of retina +Q142 Congenital malformation of optic disc +Q143 Congenital malformation of choroid +Q148 Other congenital malformations of posterior segment of eye +Q149 Congenital malformation of posterior segment of eye, unspecified +Q150 Congenital glaucoma +Q158 Other specified congenital malformations of eye +Q159 Congenital malformation of eye, unspecified +Q160 Congenital absence of (ear) auricle +Q161 Congenital absence, atresia and stricture of auditory canal (external) +Q162 Absence of eustachian tube +Q163 Congenital malformation of ear ossicles +Q164 Other congenital malformations of middle ear +Q165 Congenital malformation of inner ear +Q169 Congenital malformation of ear causing impairment of hearing, unspecified +Q170 Accessory auricle +Q171 Macrotia +Q172 Microtia +Q173 Other misshapen ear +Q174 Misplaced ear +Q175 Prominent ear +Q178 Other specified congenital malformations of ear +Q179 Congenital malformation of ear, unspecified +Q180 Sinus, fistula and cyst of branchial cleft +Q181 Preauricular sinus and cyst +Q182 Other branchial cleft malformations +Q183 Webbing of neck +Q184 Macrostomia +Q185 Microstomia +Q186 Macrocheilia +Q187 Microcheilia +Q188 Other specified congenital malformations of face and neck +Q189 Congenital malformation of face and neck, unspecified +Q200 Common arterial trunk +Q201 Double outlet right ventricle +Q202 Double outlet left ventricle +Q203 Discordant ventriculoarterial connection +Q204 Double inlet ventricle +Q205 Discordant atrioventricular connection +Q206 Isomerism of atrial appendages +Q208 Other congenital malformations of cardiac chambers and connections +Q209 Congenital malformation of cardiac chambers and connections, unspecified +Q210 Ventricular septal defect +Q211 Atrial septal defect +Q212 Atrioventricular septal defect +Q213 Tetralogy of Fallot +Q214 Aortopulmonary septal defect +Q218 Other congenital malformations of cardiac septa +Q219 Congenital malformation of cardiac septum, unspecified +Q220 Pulmonary valve atresia +Q221 Congenital pulmonary valve stenosis +Q222 Congenital pulmonary valve insufficiency +Q223 Other congenital malformations of pulmonary valve +Q224 Congenital tricuspid stenosis +Q225 Ebstein's anomaly +Q226 Hypoplastic right heart syndrome +Q228 Other congenital malformations of tricuspid valve +Q229 Congenital malformation of tricuspid valve, unspecified +Q230 Congenital stenosis of aortic valve +Q231 Congenital insufficiency of aortic valve +Q232 Congenital mitral stenosis +Q233 Congenital mitral insufficiency +Q234 Hypoplastic left heart syndrome +Q238 Other congenital malformations of aortic and mitral valves +Q239 Congenital malformation of aortic and mitral valves, unspecified +Q240 Dextrocardia +Q241 Levocardia +Q242 Cor triatriatum +Q243 Pulmonary infundibular stenosis +Q244 Congenital subaortic stenosis +Q245 Malformation of coronary vessels +Q246 Congenital heart block +Q248 Other specified congenital malformations of heart +Q249 Congenital malformation of heart, unspecified +Q250 Patent ductus arteriosus +Q251 Coarctation of aorta +Q252 Atresia of aorta +Q2521 Interruption of aortic arch +Q2529 Other atresia of aorta +Q253 Supravalvular aortic stenosis +Q254 Other congenital malformations of aorta +Q2540 Congenital malformation of aorta unspecified +Q2541 Absence and aplasia of aorta +Q2542 Hypoplasia of aorta +Q2543 Congenital aneurysm of aorta +Q2544 Congenital dilation of aorta +Q2545 Double aortic arch +Q2546 Tortuous aortic arch +Q2547 Right aortic arch +Q2548 Anomalous origin of subclavian artery +Q2549 Other congenital malformations of aorta +Q255 Atresia of pulmonary artery +Q256 Stenosis of pulmonary artery +Q2571 Coarctation of pulmonary artery +Q2572 Congenital pulmonary arteriovenous malformation +Q2579 Other congenital malformations of pulmonary artery +Q258 Other congenital malformations of other great arteries +Q259 Congenital malformation of great arteries, unspecified +Q260 Congenital stenosis of vena cava +Q261 Persistent left superior vena cava +Q262 Total anomalous pulmonary venous connection +Q263 Partial anomalous pulmonary venous connection +Q264 Anomalous pulmonary venous connection, unspecified +Q265 Anomalous portal venous connection +Q266 Portal vein-hepatic artery fistula +Q268 Other congenital malformations of great veins +Q269 Congenital malformation of great vein, unspecified +Q270 Congenital absence and hypoplasia of umbilical artery +Q271 Congenital renal artery stenosis +Q272 Other congenital malformations of renal artery +Q2730 Arteriovenous malformation, site unspecified +Q2731 Arteriovenous malformation of vessel of upper limb +Q2732 Arteriovenous malformation of vessel of lower limb +Q2733 Arteriovenous malformation of digestive system vessel +Q2734 Arteriovenous malformation of renal vessel +Q2739 Arteriovenous malformation, other site +Q274 Congenital phlebectasia +Q278 Other specified congenital malformations of peripheral vascular system +Q279 Congenital malformation of peripheral vascular system, unspecified +Q280 Arteriovenous malformation of precerebral vessels +Q281 Other malformations of precerebral vessels +Q282 Arteriovenous malformation of cerebral vessels +Q283 Other malformations of cerebral vessels +Q288 Other specified congenital malformations of circulatory system +Q289 Congenital malformation of circulatory system, unspecified +Q300 Choanal atresia +Q301 Agenesis and underdevelopment of nose +Q302 Fissured, notched and cleft nose +Q303 Congenital perforated nasal septum +Q308 Other congenital malformations of nose +Q309 Congenital malformation of nose, unspecified +Q310 Web of larynx +Q311 Congenital subglottic stenosis +Q312 Laryngeal hypoplasia +Q313 Laryngocele +Q315 Congenital laryngomalacia +Q318 Other congenital malformations of larynx +Q319 Congenital malformation of larynx, unspecified +Q320 Congenital tracheomalacia +Q321 Other congenital malformations of trachea +Q322 Congenital bronchomalacia +Q323 Congenital stenosis of bronchus +Q324 Other congenital malformations of bronchus +Q330 Congenital cystic lung +Q331 Accessory lobe of lung +Q332 Sequestration of lung +Q333 Agenesis of lung +Q334 Congenital bronchiectasis +Q335 Ectopic tissue in lung +Q336 Congenital hypoplasia and dysplasia of lung +Q338 Other congenital malformations of lung +Q339 Congenital malformation of lung, unspecified +Q340 Anomaly of pleura +Q341 Congenital cyst of mediastinum +Q348 Other specified congenital malformations of respiratory system +Q349 Congenital malformation of respiratory system, unspecified +Q351 Cleft hard palate +Q353 Cleft soft palate +Q355 Cleft hard palate with cleft soft palate +Q357 Cleft uvula +Q359 Cleft palate, unspecified +Q360 Cleft lip, bilateral +Q361 Cleft lip, median +Q369 Cleft lip, unilateral +Q370 Cleft hard palate with bilateral cleft lip +Q371 Cleft hard palate with unilateral cleft lip +Q372 Cleft soft palate with bilateral cleft lip +Q373 Cleft soft palate with unilateral cleft lip +Q374 Cleft hard and soft palate with bilateral cleft lip +Q375 Cleft hard and soft palate with unilateral cleft lip +Q378 Unspecified cleft palate with bilateral cleft lip +Q379 Unspecified cleft palate with unilateral cleft lip +Q380 Congenital malformations of lips, not elsewhere classified +Q381 Ankyloglossia +Q382 Macroglossia +Q383 Other congenital malformations of tongue +Q384 Congenital malformations of salivary glands and ducts +Q385 Congenital malformations of palate, not elsewhere classified +Q386 Other congenital malformations of mouth +Q387 Congenital pharyngeal pouch +Q388 Other congenital malformations of pharynx +Q390 Atresia of esophagus without fistula +Q391 Atresia of esophagus with tracheo-esophageal fistula +Q392 Congenital tracheo-esophageal fistula without atresia +Q393 Congenital stenosis and stricture of esophagus +Q394 Esophageal web +Q395 Congenital dilatation of esophagus +Q396 Congenital diverticulum of esophagus +Q398 Other congenital malformations of esophagus +Q399 Congenital malformation of esophagus, unspecified +Q400 Congenital hypertrophic pyloric stenosis +Q401 Congenital hiatus hernia +Q402 Other specified congenital malformations of stomach +Q403 Congenital malformation of stomach, unspecified +Q408 Other specified congenital malformations of upper alimentary tract +Q409 Congenital malformation of upper alimentary tract, unspecified +Q410 Congenital absence, atresia and stenosis of duodenum +Q411 Congenital absence, atresia and stenosis of jejunum +Q412 Congenital absence, atresia and stenosis of ileum +Q418 Congenital absence, atresia and stenosis of other specified parts of small intestine +Q419 Congenital absence, atresia and stenosis of small intestine, part unspecified +Q420 Congenital absence, atresia and stenosis of rectum with fistula +Q421 Congenital absence, atresia and stenosis of rectum without fistula +Q422 Congenital absence, atresia and stenosis of anus with fistula +Q423 Congenital absence, atresia and stenosis of anus without fistula +Q428 Congenital absence, atresia and stenosis of other parts of large intestine +Q429 Congenital absence, atresia and stenosis of large intestine, part unspecified +Q430 Meckel's diverticulum (displaced) (hypertrophic) +Q431 Hirschsprung's disease +Q432 Other congenital functional disorders of colon +Q433 Congenital malformations of intestinal fixation +Q434 Duplication of intestine +Q435 Ectopic anus +Q436 Congenital fistula of rectum and anus +Q437 Persistent cloaca +Q438 Other specified congenital malformations of intestine +Q439 Congenital malformation of intestine, unspecified +Q440 Agenesis, aplasia and hypoplasia of gallbladder +Q441 Other congenital malformations of gallbladder +Q442 Atresia of bile ducts +Q443 Congenital stenosis and stricture of bile ducts +Q444 Choledochal cyst +Q445 Other congenital malformations of bile ducts +Q446 Cystic disease of liver +Q447 Other congenital malformations of liver +Q450 Agenesis, aplasia and hypoplasia of pancreas +Q451 Annular pancreas +Q452 Congenital pancreatic cyst +Q453 Other congenital malformations of pancreas and pancreatic duct +Q458 Other specified congenital malformations of digestive system +Q459 Congenital malformation of digestive system, unspecified +Q5001 Congenital absence of ovary, unilateral +Q5002 Congenital absence of ovary, bilateral +Q501 Developmental ovarian cyst +Q502 Congenital torsion of ovary +Q5031 Accessory ovary +Q5032 Ovarian streak +Q5039 Other congenital malformation of ovary +Q504 Embryonic cyst of fallopian tube +Q505 Embryonic cyst of broad ligament +Q506 Other congenital malformations of fallopian tube and broad ligament +Q510 Agenesis and aplasia of uterus +Q5110 Doubling of uterus with doubling of cervix and vagina without obstruction +Q5111 Doubling of uterus with doubling of cervix and vagina with obstruction +Q512 Other doubling of uterus +Q5120 Other doubling of uterus, unspecified +Q5121 Other complete doubling of uterus +Q5122 Other partial doubling of uterus +Q5128 Other doubling of uterus, other specified +Q513 Bicornate uterus +Q514 Unicornate uterus +Q515 Agenesis and aplasia of cervix +Q516 Embryonic cyst of cervix +Q517 Congenital fistulae between uterus and digestive and urinary tracts +Q51810 Arcuate uterus +Q51811 Hypoplasia of uterus +Q51818 Other congenital malformations of uterus +Q51820 Cervical duplication +Q51821 Hypoplasia of cervix +Q51828 Other congenital malformations of cervix +Q519 Congenital malformation of uterus and cervix, unspecified +Q520 Congenital absence of vagina +Q5210 Doubling of vagina, unspecified +Q5211 Transverse vaginal septum +Q5212 Longitudinal vaginal septum +Q52120 Longitudinal vaginal septum, nonobstructing +Q52121 Longitudinal vaginal septum, obstructing, right side +Q52122 Longitudinal vaginal septum, obstructing, left side +Q52123 Longitudinal vaginal septum, microperforate, right side +Q52124 Longitudinal vaginal septum, microperforate, left side +Q52129 Other and unspecified longitudinal vaginal septum +Q522 Congenital rectovaginal fistula +Q523 Imperforate hymen +Q524 Other congenital malformations of vagina +Q525 Fusion of labia +Q526 Congenital malformation of clitoris +Q5270 Unspecified congenital malformations of vulva +Q5271 Congenital absence of vulva +Q5279 Other congenital malformations of vulva +Q528 Other specified congenital malformations of female genitalia +Q529 Congenital malformation of female genitalia, unspecified +Q5300 Ectopic testis, unspecified +Q5301 Ectopic testis, unilateral +Q5302 Ectopic testes, bilateral +Q5310 Unspecified undescended testicle, unilateral +Q5311 Abdominal testis, unilateral +Q53111 Unilateral intraabdominal testis +Q53112 Unilateral inguinal testis +Q5312 Ectopic perineal testis, unilateral +Q5313 Unilateral high scrotal testis +Q5320 Undescended testicle, unspecified, bilateral +Q5321 Abdominal testis, bilateral +Q53211 Bilateral intraabdominal testes +Q53212 Bilateral inguinal testes +Q5322 Ectopic perineal testis, bilateral +Q5323 Bilateral high scrotal testes +Q539 Undescended testicle, unspecified +Q540 Hypospadias, balanic +Q541 Hypospadias, penile +Q542 Hypospadias, penoscrotal +Q543 Hypospadias, perineal +Q544 Congenital chordee +Q548 Other hypospadias +Q549 Hypospadias, unspecified +Q550 Absence and aplasia of testis +Q551 Hypoplasia of testis and scrotum +Q5520 Unspecified congenital malformations of testis and scrotum +Q5521 Polyorchism +Q5522 Retractile testis +Q5523 Scrotal transposition +Q5529 Other congenital malformations of testis and scrotum +Q553 Atresia of vas deferens +Q554 Other congenital malformations of vas deferens, epididymis, seminal vesicles and prostate +Q555 Congenital absence and aplasia of penis +Q5561 Curvature of penis (lateral) +Q5562 Hypoplasia of penis +Q5563 Congenital torsion of penis +Q5564 Hidden penis +Q5569 Other congenital malformation of penis +Q557 Congenital vasocutaneous fistula +Q558 Other specified congenital malformations of male genital organs +Q559 Congenital malformation of male genital organ, unspecified +Q560 Hermaphroditism, not elsewhere classified +Q561 Male pseudohermaphroditism, not elsewhere classified +Q562 Female pseudohermaphroditism, not elsewhere classified +Q563 Pseudohermaphroditism, unspecified +Q564 Indeterminate sex, unspecified +Q600 Renal agenesis, unilateral +Q601 Renal agenesis, bilateral +Q602 Renal agenesis, unspecified +Q603 Renal hypoplasia, unilateral +Q604 Renal hypoplasia, bilateral +Q605 Renal hypoplasia, unspecified +Q606 Potter's syndrome +Q6100 Congenital renal cyst, unspecified +Q6101 Congenital single renal cyst +Q6102 Congenital multiple renal cysts +Q6111 Cystic dilatation of collecting ducts +Q6119 Other polycystic kidney, infantile type +Q612 Polycystic kidney, adult type +Q613 Polycystic kidney, unspecified +Q614 Renal dysplasia +Q615 Medullary cystic kidney +Q618 Other cystic kidney diseases +Q619 Cystic kidney disease, unspecified +Q620 Congenital hydronephrosis +Q6210 Congenital occlusion of ureter, unspecified +Q6211 Congenital occlusion of ureteropelvic junction +Q6212 Congenital occlusion of ureterovesical orifice +Q622 Congenital megaureter +Q6231 Congenital ureterocele, orthotopic +Q6232 Cecoureterocele +Q6239 Other obstructive defects of renal pelvis and ureter +Q624 Agenesis of ureter +Q625 Duplication of ureter +Q6260 Malposition of ureter, unspecified +Q6261 Deviation of ureter +Q6262 Displacement of ureter +Q6263 Anomalous implantation of ureter +Q6269 Other malposition of ureter +Q627 Congenital vesico-uretero-renal reflux +Q628 Other congenital malformations of ureter +Q630 Accessory kidney +Q631 Lobulated, fused and horseshoe kidney +Q632 Ectopic kidney +Q633 Hyperplastic and giant kidney +Q638 Other specified congenital malformations of kidney +Q639 Congenital malformation of kidney, unspecified +Q640 Epispadias +Q6410 Exstrophy of urinary bladder, unspecified +Q6411 Supravesical fissure of urinary bladder +Q6412 Cloacal exstrophy of urinary bladder +Q6419 Other exstrophy of urinary bladder +Q642 Congenital posterior urethral valves +Q6431 Congenital bladder neck obstruction +Q6432 Congenital stricture of urethra +Q6433 Congenital stricture of urinary meatus +Q6439 Other atresia and stenosis of urethra and bladder neck +Q644 Malformation of urachus +Q645 Congenital absence of bladder and urethra +Q646 Congenital diverticulum of bladder +Q6470 Unspecified congenital malformation of bladder and urethra +Q6471 Congenital prolapse of urethra +Q6472 Congenital prolapse of urinary meatus +Q6473 Congenital urethrorectal fistula +Q6474 Double urethra +Q6475 Double urinary meatus +Q6479 Other congenital malformations of bladder and urethra +Q648 Other specified congenital malformations of urinary system +Q649 Congenital malformation of urinary system, unspecified +Q6500 Congenital dislocation of unspecified hip, unilateral +Q6501 Congenital dislocation of right hip, unilateral +Q6502 Congenital dislocation of left hip, unilateral +Q651 Congenital dislocation of hip, bilateral +Q652 Congenital dislocation of hip, unspecified +Q6530 Congenital partial dislocation of unspecified hip, unilateral +Q6531 Congenital partial dislocation of right hip, unilateral +Q6532 Congenital partial dislocation of left hip, unilateral +Q654 Congenital partial dislocation of hip, bilateral +Q655 Congenital partial dislocation of hip, unspecified +Q656 Congenital unstable hip +Q6581 Congenital coxa valga +Q6582 Congenital coxa vara +Q6589 Other specified congenital deformities of hip +Q659 Congenital deformity of hip, unspecified +Q670 Congenital facial asymmetry +Q671 Congenital compression facies +Q672 Dolichocephaly +Q673 Plagiocephaly +Q674 Other congenital deformities of skull, face and jaw +Q675 Congenital deformity of spine +Q676 Pectus excavatum +Q677 Pectus carinatum +Q678 Other congenital deformities of chest +Q680 Congenital deformity of sternocleidomastoid muscle +Q681 Congenital deformity of finger(s) and hand +Q682 Congenital deformity of knee +Q683 Congenital bowing of femur +Q684 Congenital bowing of tibia and fibula +Q685 Congenital bowing of long bones of leg, unspecified +Q686 Discoid meniscus +Q688 Other specified congenital musculoskeletal deformities +Q690 Accessory finger(s) +Q691 Accessory thumb(s) +Q692 Accessory toe(s) +Q699 Polydactyly, unspecified +Q7000 Fused fingers, unspecified hand +Q7001 Fused fingers, right hand +Q7002 Fused fingers, left hand +Q7003 Fused fingers, bilateral +Q7010 Webbed fingers, unspecified hand +Q7011 Webbed fingers, right hand +Q7012 Webbed fingers, left hand +Q7013 Webbed fingers, bilateral +Q7020 Fused toes, unspecified foot +Q7021 Fused toes, right foot +Q7022 Fused toes, left foot +Q7023 Fused toes, bilateral +Q7030 Webbed toes, unspecified foot +Q7031 Webbed toes, right foot +Q7032 Webbed toes, left foot +Q7033 Webbed toes, bilateral +Q704 Polysyndactyly, unspecified +Q709 Syndactyly, unspecified +Q7100 Congenital complete absence of unspecified upper limb +Q7101 Congenital complete absence of right upper limb +Q7102 Congenital complete absence of left upper limb +Q7103 Congenital complete absence of upper limb, bilateral +Q7110 Congenital absence of unspecified upper arm and forearm with hand present +Q7111 Congenital absence of right upper arm and forearm with hand present +Q7112 Congenital absence of left upper arm and forearm with hand present +Q7113 Congenital absence of upper arm and forearm with hand present, bilateral +Q7120 Congenital absence of both forearm and hand, unspecified upper limb +Q7121 Congenital absence of both forearm and hand, right upper limb +Q7122 Congenital absence of both forearm and hand, left upper limb +Q7123 Congenital absence of both forearm and hand, bilateral +Q7130 Congenital absence of unspecified hand and finger +Q7131 Congenital absence of right hand and finger +Q7132 Congenital absence of left hand and finger +Q7133 Congenital absence of hand and finger, bilateral +Q7140 Longitudinal reduction defect of unspecified radius +Q7141 Longitudinal reduction defect of right radius +Q7142 Longitudinal reduction defect of left radius +Q7143 Longitudinal reduction defect of radius, bilateral +Q7150 Longitudinal reduction defect of unspecified ulna +Q7151 Longitudinal reduction defect of right ulna +Q7152 Longitudinal reduction defect of left ulna +Q7153 Longitudinal reduction defect of ulna, bilateral +Q7160 Lobster-claw hand, unspecified hand +Q7161 Lobster-claw right hand +Q7162 Lobster-claw left hand +Q7163 Lobster-claw hand, bilateral +Q71811 Congenital shortening of right upper limb +Q71812 Congenital shortening of left upper limb +Q71813 Congenital shortening of upper limb, bilateral +Q71819 Congenital shortening of unspecified upper limb +Q71891 Other reduction defects of right upper limb +Q71892 Other reduction defects of left upper limb +Q71893 Other reduction defects of upper limb, bilateral +Q71899 Other reduction defects of unspecified upper limb +Q7190 Unspecified reduction defect of unspecified upper limb +Q7191 Unspecified reduction defect of right upper limb +Q7192 Unspecified reduction defect of left upper limb +Q7193 Unspecified reduction defect of upper limb, bilateral +Q7200 Congenital complete absence of unspecified lower limb +Q7201 Congenital complete absence of right lower limb +Q7202 Congenital complete absence of left lower limb +Q7203 Congenital complete absence of lower limb, bilateral +Q7210 Congenital absence of unspecified thigh and lower leg with foot present +Q7211 Congenital absence of right thigh and lower leg with foot present +Q7212 Congenital absence of left thigh and lower leg with foot present +Q7213 Congenital absence of thigh and lower leg with foot present, bilateral +Q7220 Congenital absence of both lower leg and foot, unspecified lower limb +Q7221 Congenital absence of both lower leg and foot, right lower limb +Q7222 Congenital absence of both lower leg and foot, left lower limb +Q7223 Congenital absence of both lower leg and foot, bilateral +Q7230 Congenital absence of unspecified foot and toe(s) +Q7231 Congenital absence of right foot and toe(s) +Q7232 Congenital absence of left foot and toe(s) +Q7233 Congenital absence of foot and toe(s), bilateral +Q7240 Longitudinal reduction defect of unspecified femur +Q7241 Longitudinal reduction defect of right femur +Q7242 Longitudinal reduction defect of left femur +Q7243 Longitudinal reduction defect of femur, bilateral +Q7250 Longitudinal reduction defect of unspecified tibia +Q7251 Longitudinal reduction defect of right tibia +Q7252 Longitudinal reduction defect of left tibia +Q7253 Longitudinal reduction defect of tibia, bilateral +Q7260 Longitudinal reduction defect of unspecified fibula +Q7261 Longitudinal reduction defect of right fibula +Q7262 Longitudinal reduction defect of left fibula +Q7263 Longitudinal reduction defect of fibula, bilateral +Q7270 Split foot, unspecified lower limb +Q7271 Split foot, right lower limb +Q7272 Split foot, left lower limb +Q7273 Split foot, bilateral +Q72811 Congenital shortening of right lower limb +Q72812 Congenital shortening of left lower limb +Q72813 Congenital shortening of lower limb, bilateral +Q72819 Congenital shortening of unspecified lower limb +Q72891 Other reduction defects of right lower limb +Q72892 Other reduction defects of left lower limb +Q72893 Other reduction defects of lower limb, bilateral +Q72899 Other reduction defects of unspecified lower limb +Q7290 Unspecified reduction defect of unspecified lower limb +Q7291 Unspecified reduction defect of right lower limb +Q7292 Unspecified reduction defect of left lower limb +Q7293 Unspecified reduction defect of lower limb, bilateral +Q730 Congenital absence of unspecified limb(s) +Q731 Phocomelia, unspecified limb(s) +Q738 Other reduction defects of unspecified limb(s) +Q740 Other congenital malformations of upper limb(s), including shoulder girdle +Q741 Congenital malformation of knee +Q742 Other congenital malformations of lower limb(s), including pelvic girdle +Q743 Arthrogryposis multiplex congenita +Q748 Other specified congenital malformations of limb(s) +Q749 Unspecified congenital malformation of limb(s) +Q750 Craniosynostosis +Q751 Craniofacial dysostosis +Q752 Hypertelorism +Q753 Macrocephaly +Q754 Mandibulofacial dysostosis +Q755 Oculomandibular dysostosis +Q758 Other specified congenital malformations of skull and face bones +Q759 Congenital malformation of skull and face bones, unspecified +Q760 Spina bifida occulta +Q761 Klippel-Feil syndrome +Q762 Congenital spondylolisthesis +Q763 Congenital scoliosis due to congenital bony malformation +Q76411 Congenital kyphosis, occipito-atlanto-axial region +Q76412 Congenital kyphosis, cervical region +Q76413 Congenital kyphosis, cervicothoracic region +Q76414 Congenital kyphosis, thoracic region +Q76415 Congenital kyphosis, thoracolumbar region +Q76419 Congenital kyphosis, unspecified region +Q76425 Congenital lordosis, thoracolumbar region +Q76426 Congenital lordosis, lumbar region +Q76427 Congenital lordosis, lumbosacral region +Q76428 Congenital lordosis, sacral and sacrococcygeal region +Q76429 Congenital lordosis, unspecified region +Q7649 Other congenital malformations of spine, not associated with scoliosis +Q765 Cervical rib +Q766 Other congenital malformations of ribs +Q767 Congenital malformation of sternum +Q768 Other congenital malformations of bony thorax +Q769 Congenital malformation of bony thorax, unspecified +Q770 Achondrogenesis +Q771 Thanatophoric short stature +Q772 Short rib syndrome +Q773 Chondrodysplasia punctata +Q774 Achondroplasia +Q775 Diastrophic dysplasia +Q776 Chondroectodermal dysplasia +Q777 Spondyloepiphyseal dysplasia +Q778 Other osteochondrodysplasia with defects of growth of tubular bones and spine +Q779 Osteochondrodysplasia with defects of growth of tubular bones and spine, unspecified +Q780 Osteogenesis imperfecta +Q781 Polyostotic fibrous dysplasia +Q782 Osteopetrosis +Q783 Progressive diaphyseal dysplasia +Q784 Enchondromatosis +Q785 Metaphyseal dysplasia +Q786 Multiple congenital exostoses +Q788 Other specified osteochondrodysplasias +Q789 Osteochondrodysplasia, unspecified +Q790 Congenital diaphragmatic hernia +Q791 Other congenital malformations of diaphragm +Q792 Exomphalos +Q793 Gastroschisis +Q794 Prune belly syndrome +Q7951 Congenital hernia of bladder +Q7959 Other congenital malformations of abdominal wall +Q798 Other congenital malformations of musculoskeletal system +Q799 Congenital malformation of musculoskeletal system, unspecified +Q800 Ichthyosis vulgaris +Q801 X-linked ichthyosis +Q802 Lamellar ichthyosis +Q803 Congenital bullous ichthyosiform erythroderma +Q804 Harlequin fetus +Q808 Other congenital ichthyosis +Q809 Congenital ichthyosis, unspecified +Q810 Epidermolysis bullosa simplex +Q811 Epidermolysis bullosa letalis +Q812 Epidermolysis bullosa dystrophica +Q818 Other epidermolysis bullosa +Q819 Epidermolysis bullosa, unspecified +Q820 Hereditary lymphedema +Q821 Xeroderma pigmentosum +Q822 Congenital cutaneous mastocytosis +Q823 Incontinentia pigmenti +Q824 Ectodermal dysplasia (anhidrotic) +Q825 Congenital non-neoplastic nevus +Q826 Congenital sacral dimple +Q828 Other specified congenital malformations of skin +Q829 Congenital malformation of skin, unspecified +Q830 Congenital absence of breast with absent nipple +Q831 Accessory breast +Q832 Absent nipple +Q833 Accessory nipple +Q838 Other congenital malformations of breast +Q839 Congenital malformation of breast, unspecified +Q840 Congenital alopecia +Q841 Congenital morphological disturbances of hair, not elsewhere classified +Q842 Other congenital malformations of hair +Q843 Anonychia +Q844 Congenital leukonychia +Q845 Enlarged and hypertrophic nails +Q846 Other congenital malformations of nails +Q848 Other specified congenital malformations of integument +Q849 Congenital malformation of integument, unspecified +Q8500 Neurofibromatosis, unspecified +Q8501 Neurofibromatosis, type 1 +Q8502 Neurofibromatosis, type 2 +Q8503 Schwannomatosis +Q8509 Other neurofibromatosis +Q851 Tuberous sclerosis +Q858 Other phakomatoses, not elsewhere classified +Q859 Phakomatosis, unspecified +Q860 Fetal alcohol syndrome (dysmorphic) +Q861 Fetal hydantoin syndrome +Q862 Dysmorphism due to warfarin +Q868 Other congenital malformation syndromes due to known exogenous causes +Q870 Congenital malformation syndromes predominantly affecting facial appearance +Q872 Congenital malformation syndromes predominantly involving limbs +Q873 Congenital malformation syndromes involving early overgrowth +Q8740 Marfan's syndrome, unspecified +Q87410 Marfan's syndrome with aortic dilation +Q87418 Marfan's syndrome with other cardiovascular manifestations +Q8742 Marfan's syndrome with ocular manifestations +Q8743 Marfan's syndrome with skeletal manifestation +Q875 Other congenital malformation syndromes with other skeletal changes +Q8781 Alport syndrome +Q8782 Arterial tortuosity syndrome +Q8789 Other specified congenital malformation syndromes, not elsewhere classified +Q8901 Asplenia (congenital) +Q8909 Congenital malformations of spleen +Q891 Congenital malformations of adrenal gland +Q892 Congenital malformations of other endocrine glands +Q893 Situs inversus +Q894 Conjoined twins +Q897 Multiple congenital malformations, not elsewhere classified +Q898 Other specified congenital malformations +Q899 Congenital malformation, unspecified +Q900 Trisomy 21, nonmosaicism (meiotic nondisjunction) +Q901 Trisomy 21, mosaicism (mitotic nondisjunction) +Q902 Trisomy 21, translocation +Q909 Down syndrome, unspecified +Q910 Trisomy 18, nonmosaicism (meiotic nondisjunction) +Q911 Trisomy 18, mosaicism (mitotic nondisjunction) +Q912 Trisomy 18, translocation +Q913 Trisomy 18, unspecified +Q914 Trisomy 13, nonmosaicism (meiotic nondisjunction) +Q915 Trisomy 13, mosaicism (mitotic nondisjunction) +Q916 Trisomy 13, translocation +Q917 Trisomy 13, unspecified +Q920 Whole chromosome trisomy, nonmosaicism (meiotic nondisjunction) +Q921 Whole chromosome trisomy, mosaicism (mitotic nondisjunction) +Q922 Partial trisomy +Q925 Duplications with other complex rearrangements +Q9261 Marker chromosomes in normal individual +Q9262 Marker chromosomes in abnormal individual +Q927 Triploidy and polyploidy +Q928 Other specified trisomies and partial trisomies of autosomes +Q929 Trisomy and partial trisomy of autosomes, unspecified +Q930 Whole chromosome monosomy, nonmosaicism (meiotic nondisjunction) +Q931 Whole chromosome monosomy, mosaicism (mitotic nondisjunction) +Q932 Chromosome replaced with ring, dicentric or isochromosome +Q933 Deletion of short arm of chromosome 4 +Q934 Deletion of short arm of chromosome 5 +Q935 Other deletions of part of a chromosome +Q9351 Angelman syndrome +Q9359 Other deletions of part of a chromosome +Q937 Deletions with other complex rearrangements +Q9381 Velo-cardio-facial syndrome +Q9382 Williams syndrome +Q9388 Other microdeletions +Q9389 Other deletions from the autosomes +Q939 Deletion from autosomes, unspecified +Q950 Balanced translocation and insertion in normal individual +Q951 Chromosome inversion in normal individual +Q952 Balanced autosomal rearrangement in abnormal individual +Q953 Balanced sex/autosomal rearrangement in abnormal individual +Q955 Individual with autosomal fragile site +Q958 Other balanced rearrangements and structural markers +Q959 Balanced rearrangement and structural marker, unspecified +Q960 Karyotype 45, X +Q961 Karyotype 46, X iso (Xq) +Q962 Karyotype 46, X with abnormal sex chromosome, except iso (Xq) +Q963 Mosaicism, 45, X/46, XX or XY +Q964 Mosaicism, 45, X/other cell line(s) with abnormal sex chromosome +Q968 Other variants of Turner's syndrome +Q969 Turner's syndrome, unspecified +Q970 Karyotype 47, XXX +Q971 Female with more than three X chromosomes +Q972 Mosaicism, lines with various numbers of X chromosomes +Q973 Female with 46, XY karyotype +Q978 Other specified sex chromosome abnormalities, female phenotype +Q979 Sex chromosome abnormality, female phenotype, unspecified +Q980 Klinefelter syndrome karyotype 47, XXY +Q981 Klinefelter syndrome, male with more than two X chromosomes +Q983 Other male with 46, XX karyotype +Q984 Klinefelter syndrome, unspecified +Q985 Karyotype 47, XYY +Q986 Male with structurally abnormal sex chromosome +Q987 Male with sex chromosome mosaicism +Q988 Other specified sex chromosome abnormalities, male phenotype +Q989 Sex chromosome abnormality, male phenotype, unspecified +Q990 Chimera 46, XX/46, XY +Q991 46, XX true hermaphrodite +Q992 Fragile X chromosome +Q998 Other specified chromosome abnormalities +Q999 Chromosomal abnormality, unspecified +R000 Tachycardia, unspecified +R001 Bradycardia, unspecified +R002 Palpitations +R008 Other abnormalities of heart beat +R009 Unspecified abnormalities of heart beat +R010 Benign and innocent cardiac murmurs +R011 Cardiac murmur, unspecified +R012 Other cardiac sounds +R030 Elevated blood-pressure reading, without diagnosis of hypertension +R031 Nonspecific low blood-pressure reading +R040 Epistaxis +R041 Hemorrhage from throat +R042 Hemoptysis +R0481 Acute idiopathic pulmonary hemorrhage in infants +R0489 Hemorrhage from other sites in respiratory passages +R049 Hemorrhage from respiratory passages, unspecified +R05 Cough +R0600 Dyspnea, unspecified +R0601 Orthopnea +R0602 Shortness of breath +R0603 Acute respiratory distress +R0609 Other forms of dyspnea +R061 Stridor +R062 Wheezing +R063 Periodic breathing +R064 Hyperventilation +R065 Mouth breathing +R066 Hiccough +R067 Sneezing +R0681 Apnea, not elsewhere classified +R0682 Tachypnea, not elsewhere classified +R0683 Snoring +R0689 Other abnormalities of breathing +R069 Unspecified abnormalities of breathing +R070 Pain in throat +R071 Chest pain on breathing +R072 Precordial pain +R0781 Pleurodynia +R0782 Intercostal pain +R0789 Other chest pain +R079 Chest pain, unspecified +R0901 Asphyxia +R0902 Hypoxemia +R091 Pleurisy +R092 Respiratory arrest +R093 Abnormal sputum +R0981 Nasal congestion +R0982 Postnasal drip +R0989 Other specified symptoms and signs involving the circulatory and respiratory systems +R100 Acute abdomen +R1010 Upper abdominal pain, unspecified +R1011 Right upper quadrant pain +R1012 Left upper quadrant pain +R1013 Epigastric pain +R102 Pelvic and perineal pain +R1030 Lower abdominal pain, unspecified +R1031 Right lower quadrant pain +R1032 Left lower quadrant pain +R1033 Periumbilical pain +R10811 Right upper quadrant abdominal tenderness +R10812 Left upper quadrant abdominal tenderness +R10813 Right lower quadrant abdominal tenderness +R10814 Left lower quadrant abdominal tenderness +R10815 Periumbilic abdominal tenderness +R10816 Epigastric abdominal tenderness +R10817 Generalized abdominal tenderness +R10819 Abdominal tenderness, unspecified site +R10821 Right upper quadrant rebound abdominal tenderness +R10822 Left upper quadrant rebound abdominal tenderness +R10823 Right lower quadrant rebound abdominal tenderness +R10824 Left lower quadrant rebound abdominal tenderness +R10825 Periumbilic rebound abdominal tenderness +R10826 Epigastric rebound abdominal tenderness +R10827 Generalized rebound abdominal tenderness +R10829 Rebound abdominal tenderness, unspecified site +R1083 Colic +R1084 Generalized abdominal pain +R109 Unspecified abdominal pain +R110 Nausea +R1110 Vomiting, unspecified +R1111 Vomiting without nausea +R1112 Projectile vomiting +R1113 Vomiting of fecal matter +R1114 Bilious vomiting +R1115 Cyclical vomiting syndrome unrelated to migraine +R112 Nausea with vomiting, unspecified +R12 Heartburn +R130 Aphagia +R1310 Dysphagia, unspecified +R1311 Dysphagia, oral phase +R1312 Dysphagia, oropharyngeal phase +R1313 Dysphagia, pharyngeal phase +R1314 Dysphagia, pharyngoesophageal phase +R1319 Other dysphagia +R140 Abdominal distension (gaseous) +R141 Gas pain +R142 Eructation +R143 Flatulence +R150 Incomplete defecation +R151 Fecal smearing +R152 Fecal urgency +R159 Full incontinence of feces +R160 Hepatomegaly, not elsewhere classified +R161 Splenomegaly, not elsewhere classified +R162 Hepatomegaly with splenomegaly, not elsewhere classified +R17 Unspecified jaundice +R180 Malignant ascites +R188 Other ascites +R1900 Intra-abdominal and pelvic swelling, mass and lump, unspecified site +R1901 Right upper quadrant abdominal swelling, mass and lump +R1902 Left upper quadrant abdominal swelling, mass and lump +R1903 Right lower quadrant abdominal swelling, mass and lump +R1904 Left lower quadrant abdominal swelling, mass and lump +R1905 Periumbilic swelling, mass or lump +R1906 Epigastric swelling, mass or lump +R1907 Generalized intra-abdominal and pelvic swelling, mass and lump +R1909 Other intra-abdominal and pelvic swelling, mass and lump +R1911 Absent bowel sounds +R1912 Hyperactive bowel sounds +R1915 Other abnormal bowel sounds +R192 Visible peristalsis +R1930 Abdominal rigidity, unspecified site +R1931 Right upper quadrant abdominal rigidity +R1932 Left upper quadrant abdominal rigidity +R1933 Right lower quadrant abdominal rigidity +R1934 Left lower quadrant abdominal rigidity +R1935 Periumbilic abdominal rigidity +R1936 Epigastric abdominal rigidity +R1937 Generalized abdominal rigidity +R194 Change in bowel habit +R195 Other fecal abnormalities +R196 Halitosis +R197 Diarrhea, unspecified +R198 Other specified symptoms and signs involving the digestive system and abdomen +R200 Anesthesia of skin +R201 Hypoesthesia of skin +R202 Paresthesia of skin +R203 Hyperesthesia +R208 Other disturbances of skin sensation +R209 Unspecified disturbances of skin sensation +R21 Rash and other nonspecific skin eruption +R220 Localized swelling, mass and lump, head +R221 Localized swelling, mass and lump, neck +R222 Localized swelling, mass and lump, trunk +R2230 Localized swelling, mass and lump, unspecified upper limb +R2231 Localized swelling, mass and lump, right upper limb +R2232 Localized swelling, mass and lump, left upper limb +R2233 Localized swelling, mass and lump, upper limb, bilateral +R2240 Localized swelling, mass and lump, unspecified lower limb +R2241 Localized swelling, mass and lump, right lower limb +R2242 Localized swelling, mass and lump, left lower limb +R2243 Localized swelling, mass and lump, lower limb, bilateral +R229 Localized swelling, mass and lump, unspecified +R230 Cyanosis +R231 Pallor +R232 Flushing +R233 Spontaneous ecchymoses +R234 Changes in skin texture +R238 Other skin changes +R239 Unspecified skin changes +R250 Abnormal head movements +R251 Tremor, unspecified +R252 Cramp and spasm +R253 Fasciculation +R258 Other abnormal involuntary movements +R259 Unspecified abnormal involuntary movements +R260 Ataxic gait +R261 Paralytic gait +R262 Difficulty in walking, not elsewhere classified +R2681 Unsteadiness on feet +R2689 Other abnormalities of gait and mobility +R269 Unspecified abnormalities of gait and mobility +R270 Ataxia, unspecified +R278 Other lack of coordination +R279 Unspecified lack of coordination +R290 Tetany +R291 Meningismus +R292 Abnormal reflex +R293 Abnormal posture +R294 Clicking hip +R295 Transient paralysis +R296 Repeated falls +R29700 NIHSS score 0 +R29701 NIHSS score 1 +R29702 NIHSS score 2 +R29703 NIHSS score 3 +R29704 NIHSS score 4 +R29705 NIHSS score 5 +R29706 NIHSS score 6 +R29707 NIHSS score 7 +R29708 NIHSS score 8 +R29709 NIHSS score 9 +R29710 NIHSS score 10 +R29711 NIHSS score 11 +R29712 NIHSS score 12 +R29713 NIHSS score 13 +R29714 NIHSS score 14 +R29715 NIHSS score 15 +R29716 NIHSS score 16 +R29717 NIHSS score 17 +R29718 NIHSS score 18 +R29719 NIHSS score 19 +R29720 NIHSS score 20 +R29721 NIHSS score 21 +R29722 NIHSS score 22 +R29723 NIHSS score 23 +R29724 NIHSS score 24 +R29725 NIHSS score 25 +R29726 NIHSS score 26 +R29727 NIHSS score 27 +R29728 NIHSS score 28 +R29729 NIHSS score 29 +R29730 NIHSS score 30 +R29731 NIHSS score 31 +R29732 NIHSS score 32 +R29733 NIHSS score 33 +R29734 NIHSS score 34 +R29735 NIHSS score 35 +R29736 NIHSS score 36 +R29737 NIHSS score 37 +R29738 NIHSS score 38 +R29739 NIHSS score 39 +R29740 NIHSS score 40 +R29741 NIHSS score 41 +R29742 NIHSS score 42 +R29810 Facial weakness +R29818 Other symptoms and signs involving the nervous system +R29890 Loss of height +R29891 Ocular torticollis +R29898 Other symptoms and signs involving the musculoskeletal system +R2990 Unspecified symptoms and signs involving the nervous system +R2991 Unspecified symptoms and signs involving the musculoskeletal system +R300 Dysuria +R301 Vesical tenesmus +R309 Painful micturition, unspecified +R310 Gross hematuria Y +R311 Benign essential microscopic hematuria Y +R312 Other microscopic hematuria Y +R3121 Asymptomatic microscopic hematuria +R3129 Other microscopic hematuria +R319 Hematuria, unspecified Y +R32 Unspecified urinary incontinence +R330 Drug induced retention of urine +R338 Other retention of urine +R339 Retention of urine, unspecified +R34 Anuria and oliguria +R350 Frequency of micturition +R351 Nocturia +R358 Other polyuria +R360 Urethral discharge without blood +R361 Hematospermia +R369 Urethral discharge, unspecified +R37 Sexual dysfunction, unspecified +R390 Extravasation of urine +R3911 Hesitancy of micturition +R3912 Poor urinary stream +R3913 Splitting of urinary stream +R3914 Feeling of incomplete bladder emptying +R3915 Urgency of urination +R3916 Straining to void +R3919 Other difficulties with micturition +R39191 Need to immediately re-void +R39192 Position dependent micturition +R39198 Other difficulties with micturition +R392 Extrarenal uremia +R3981 Functional urinary incontinence +R3982 Chronic bladder pain +R3983 Unilateral non-palpable testicle +R3984 Bilateral non-palpable testicles +R3989 Other symptoms and signs involving the genitourinary system +R399 Unspecified symptoms and signs involving the genitourinary system +R400 Somnolence +R401 Stupor +R4020 Unspecified coma +R402110 Coma scale, eyes open, never, unspecified time +R402111 Coma scale, eyes open, never, in the field [EMT or ambulance] +R402112 Coma scale, eyes open, never, at arrival to emergency department +R402113 Coma scale, eyes open, never, at hospital admission +R402114 Coma scale, eyes open, never, 24 hours or more after hospital admission +R402120 Coma scale, eyes open, to pain, unspecified time +R402121 Coma scale, eyes open, to pain, in the field [EMT or ambulance] +R402122 Coma scale, eyes open, to pain, at arrival to emergency department +R402123 Coma scale, eyes open, to pain, at hospital admission +R402124 Coma scale, eyes open, to pain, 24 hours or more after hospital admission +R402130 Coma scale, eyes open, to sound, unspecified time +R402131 Coma scale, eyes open, to sound, in the field [EMT or ambulance] +R402132 Coma scale, eyes open, to sound, at arrival to emergency department +R402133 Coma scale, eyes open, to sound, at hospital admission +R402134 Coma scale, eyes open, to sound, 24 hours or more after hospital admission +R402140 Coma scale, eyes open, spontaneous, unspecified time +R402141 Coma scale, eyes open, spontaneous, in the field [EMT or ambulance] +R402142 Coma scale, eyes open, spontaneous, at arrival to emergency department +R402143 Coma scale, eyes open, spontaneous, at hospital admission +R402144 Coma scale, eyes open, spontaneous, 24 hours or more after hospital admission +R402210 Coma scale, best verbal response, none, unspecified time +R402211 Coma scale, best verbal response, none, in the field [EMT or ambulance] +R402212 Coma scale, best verbal response, none, at arrival to emergency department +R402213 Coma scale, best verbal response, none, at hospital admission +R402214 Coma scale, best verbal response, none, 24 hours or more after hospital admission +R402220 Coma scale, best verbal response, incomprehensible words, unspecified time +R402221 Coma scale, best verbal response, incomprehensible words, in the field [EMT or ambulance] +R402222 Coma scale, best verbal response, incomprehensible words, at arrival to emergency department +R402223 Coma scale, best verbal response, incomprehensible words, at hospital admission +R402224 Coma scale, best verbal response, incomprehensible words, 24 hours or more after hospital admission +R402230 Coma scale, best verbal response, inappropriate words, unspecified time +R402231 Coma scale, best verbal response, inappropriate words, in the field [EMT or ambulance] +R402232 Coma scale, best verbal response, inappropriate words, at arrival to emergency department +R402233 Coma scale, best verbal response, inappropriate words, at hospital admission +R402234 Coma scale, best verbal response, inappropriate words, 24 hours or more after hospital admission +R402240 Coma scale, best verbal response, confused conversation, unspecified time +R402241 Coma scale, best verbal response, confused conversation, in the field [EMT or ambulance] +R402242 Coma scale, best verbal response, confused conversation, at arrival to emergency department +R402243 Coma scale, best verbal response, confused conversation, at hospital admission +R402244 Coma scale, best verbal response, confused conversation, 24 hours or more after hospital admission +R402250 Coma scale, best verbal response, oriented, unspecified time +R402251 Coma scale, best verbal response, oriented, in the field [EMT or ambulance] +R402252 Coma scale, best verbal response, oriented, at arrival to emergency department +R402253 Coma scale, best verbal response, oriented, at hospital admission +R402254 Coma scale, best verbal response, oriented, 24 hours or more after hospital admission +R402310 Coma scale, best motor response, none, unspecified time +R402311 Coma scale, best motor response, none, in the field [EMT or ambulance] +R402312 Coma scale, best motor response, none, at arrival to emergency department +R402313 Coma scale, best motor response, none, at hospital admission +R402314 Coma scale, best motor response, none, 24 hours or more after hospital admission +R402320 Coma scale, best motor response, extension, unspecified time +R402321 Coma scale, best motor response, extension, in the field [EMT or ambulance] +R402322 Coma scale, best motor response, extension, at arrival to emergency department +R402323 Coma scale, best motor response, extension, at hospital admission +R402324 Coma scale, best motor response, extension, 24 hours or more after hospital admission +R402330 Coma scale, best motor response, abnormal flexion, unspecified time +R402331 Coma scale, best motor response, abnormal flexion, in the field [EMT or ambulance] +R402332 Coma scale, best motor response, abnormal flexion, at arrival to emergency department +R402333 Coma scale, best motor response, abnormal flexion, at hospital admission +R402334 Coma scale, best motor response, abnormal flexion, 24 hours or more after hospital admission +R402340 Coma scale, best motor response, flexion withdrawal, unspecified time +R402341 Coma scale, best motor response, flexion withdrawal, in the field [EMT or ambulance] +R402342 Coma scale, best motor response, flexion withdrawal, at arrival to emergency department +R402343 Coma scale, best motor response, flexion withdrawal, at hospital admission +R402344 Coma scale, best motor response, flexion withdrawal, 24 hours or more after hospital admission +R402350 Coma scale, best motor response, localizes pain, unspecified time +R402351 Coma scale, best motor response, localizes pain, in the field [EMT or ambulance] +R402352 Coma scale, best motor response, localizes pain, at arrival to emergency department +R402353 Coma scale, best motor response, localizes pain, at hospital admission +R402354 Coma scale, best motor response, localizes pain, 24 hours or more after hospital admission +R402360 Coma scale, best motor response, obeys commands, unspecified time +R402361 Coma scale, best motor response, obeys commands, in the field [EMT or ambulance] +R402362 Coma scale, best motor response, obeys commands, at arrival to emergency department +R402363 Coma scale, best motor response, obeys commands, at hospital admission +R402364 Coma scale, best motor response, obeys commands, 24 hours or more after hospital admission +R40241 Glasgow coma scale score 13-15 +R402410 Glasgow coma scale score 13-15, unspecified time +R402411 Glasgow coma scale score 13-15, in the field [EMT or ambulance] +R402412 Glasgow coma scale score 13-15, at arrival to emergency department +R402413 Glasgow coma scale score 13-15, at hospital admission +R402414 Glasgow coma scale score 13-15, 24 hours or more after hospital admission +R40242 Glasgow coma scale score 9-12 +R402420 Glasgow coma scale score 9-12, unspecified time +R402421 Glasgow coma scale score 9-12, in the field [EMT or ambulance] +R402422 Glasgow coma scale score 9-12, at arrival to emergency department +R402423 Glasgow coma scale score 9-12, at hospital admission +R402424 Glasgow coma scale score 9-12, 24 hours or more after hospital admission +R40243 Glasgow coma scale score 3-8 +R402430 Glasgow coma scale score 3-8, unspecified time +R402431 Glasgow coma scale score 3-8, in the field [EMT or ambulance] +R402432 Glasgow coma scale score 3-8, at arrival to emergency department +R402433 Glasgow coma scale score 3-8, at hospital admission +R402434 Glasgow coma scale score 3-8, 24 hours or more after hospital admission +R40244 Other coma, without documented Glasgow coma scale score, or with partial score reported +R402440 Other coma, without documented Glasgow coma scale score, or with partial score reported, unspecified time +R402441 Other coma, without documented Glasgow coma scale score, or with partial score reported, in the field [EMT or ambulance] +R402442 Other coma, without documented Glasgow coma scale score, or with partial score reported, at arrival to emergency department +R402443 Other coma, without documented Glasgow coma scale score, or with partial score reported, at hospital admission +R402444 Other coma, without documented Glasgow coma scale score, or with partial score reported, 24 hours or more after hospital admission +R403 Persistent vegetative state +R404 Transient alteration of awareness +R410 Disorientation, unspecified +R411 Anterograde amnesia +R412 Retrograde amnesia +R413 Other amnesia +R414 Neurologic neglect syndrome +R4181 Age-related cognitive decline +R4182 Altered mental status, unspecified +R4183 Borderline intellectual functioning +R41840 Attention and concentration deficit +R41841 Cognitive communication deficit +R41842 Visuospatial deficit +R41843 Psychomotor deficit +R41844 Frontal lobe and executive function deficit +R4189 Other symptoms and signs involving cognitive functions and awareness +R42 Dizziness and giddiness +R430 Anosmia +R431 Parosmia +R432 Parageusia +R438 Other disturbances of smell and taste +R439 Unspecified disturbances of smell and taste +R440 Auditory hallucinations +R441 Visual hallucinations +R442 Other hallucinations +R443 Hallucinations, unspecified +R450 Nervousness +R451 Restlessness and agitation +R452 Unhappiness Y +R453 Demoralization and apathy +R454 Irritability and anger +R455 Hostility Y +R456 Violent behavior Y +R457 State of emotional shock and stress, unspecified +R4581 Low self-esteem +R4582 Worries +R4583 Excessive crying of child, adolescent or adult +R45850 Homicidal ideations +R45851 Suicidal ideations +R4586 Emotional lability +R4587 Impulsiveness +R4589 Other symptoms and signs involving emotional state +R4701 Aphasia +R4702 Dysphasia +R471 Dysarthria and anarthria +R4781 Slurred speech +R4782 Fluency disorder in conditions classified elsewhere +R4789 Other speech disturbances +R479 Unspecified speech disturbances +R480 Dyslexia and alexia +R481 Agnosia +R482 Apraxia +R483 Visual agnosia +R488 Other symbolic dysfunctions +R489 Unspecified symbolic dysfunctions +R490 Dysphonia +R491 Aphonia +R4921 Hypernasality +R4922 Hyponasality +R498 Other voice and resonance disorders +R499 Unspecified voice and resonance disorder +R502 Drug induced fever +R5081 Fever presenting with conditions classified elsewhere +R5082 Postprocedural fever +R5083 Postvaccination fever +R5084 Febrile nonhemolytic transfusion reaction +R509 Fever, unspecified +R51 Headache Y +R52 Pain, unspecified +R530 Neoplastic (malignant) related fatigue +R531 Weakness +R532 Functional quadriplegia +R5381 Other malaise +R5382 Chronic fatigue, unspecified +R5383 Other fatigue +R54 Age-related physical debility +R55 Syncope and collapse +R5600 Simple febrile convulsions +R5601 Complex febrile convulsions +R561 Post traumatic seizures +R569 Unspecified convulsions +R570 Cardiogenic shock +R571 Hypovolemic shock +R578 Other shock +R579 Shock, unspecified +R58 Hemorrhage, not elsewhere classified +R590 Localized enlarged lymph nodes +R591 Generalized enlarged lymph nodes +R599 Enlarged lymph nodes, unspecified +R600 Localized edema +R601 Generalized edema +R609 Edema, unspecified +R61 Generalized hyperhidrosis +R620 Delayed milestone in childhood +R6250 Unspecified lack of expected normal physiological development in childhood +R6251 Failure to thrive (child) +R6252 Short stature (child) +R6259 Other lack of expected normal physiological development in childhood +R627 Adult failure to thrive +R630 Anorexia +R631 Polydipsia +R632 Polyphagia +R633 Feeding difficulties +R634 Abnormal weight loss +R635 Abnormal weight gain +R636 Underweight +R638 Other symptoms and signs concerning food and fluid intake +R64 Cachexia +R6510 Systemic inflammatory response syndrome (SIRS) of non-infectious origin without acute organ dysfunction +R6511 Systemic inflammatory response syndrome (SIRS) of non-infectious origin with acute organ dysfunction +R6520 Severe sepsis without septic shock +R6521 Severe sepsis with septic shock +R680 Hypothermia, not associated with low environmental temperature +R6811 Excessive crying of infant (baby) +R6812 Fussy infant (baby) +R6813 Apparent life threatening event in infant (ALTE) +R682 Dry mouth, unspecified +R683 Clubbing of fingers +R6881 Early satiety +R6882 Decreased libido +R6883 Chills (without fever) +R6884 Jaw pain +R700 Elevated erythrocyte sedimentation rate +R701 Abnormal plasma viscosity +R710 Precipitous drop in hematocrit +R718 Other abnormality of red blood cells +R7301 Impaired fasting glucose +R7302 Impaired glucose tolerance (oral) +R7303 Prediabetes +R7309 Other abnormal glucose +R739 Hyperglycemia, unspecified +R740 Nonspecific elevation of levels of transaminase and lactic acid dehydrogenase [LDH] +R748 Abnormal levels of other serum enzymes +R749 Abnormal serum enzyme level, unspecified +R75 Inconclusive laboratory evidence of human immunodeficiency virus [HIV] +R760 Raised antibody titer +R7611 Nonspecific reaction to tuberculin skin test without active tuberculosis +R7612 Nonspecific reaction to cell mediated immunity measurement of gamma interferon antigen response without active tuberculosis +R768 Other specified abnormal immunological findings in serum +R769 Abnormal immunological finding in serum, unspecified +R770 Abnormality of albumin +R771 Abnormality of globulin +R772 Abnormality of alphafetoprotein +R778 Other specified abnormalities of plasma proteins +R779 Abnormality of plasma protein, unspecified +R780 Finding of alcohol in blood +R781 Finding of opiate drug in blood +R782 Finding of cocaine in blood +R783 Finding of hallucinogen in blood +R784 Finding of other drugs of addictive potential in blood +R785 Finding of other psychotropic drug in blood +R786 Finding of steroid agent in blood +R7871 Abnormal lead level in blood +R7879 Finding of abnormal level of heavy metals in blood +R7881 Bacteremia +R7889 Finding of other specified substances, not normally found in blood +R789 Finding of unspecified substance, not normally found in blood +R790 Abnormal level of blood mineral +R791 Abnormal coagulation profile +R7981 Abnormal blood-gas level +R7982 Elevated C-reactive protein (CRP) +R7989 Other specified abnormal findings of blood chemistry +R799 Abnormal finding of blood chemistry, unspecified +R800 Isolated proteinuria +R801 Persistent proteinuria, unspecified +R802 Orthostatic proteinuria, unspecified +R803 Bence Jones proteinuria +R808 Other proteinuria +R809 Proteinuria, unspecified +R81 Glycosuria +R820 Chyluria +R821 Myoglobinuria +R822 Biliuria +R823 Hemoglobinuria +R824 Acetonuria +R825 Elevated urine levels of drugs, medicaments and biological substances +R826 Abnormal urine levels of substances chiefly nonmedicinal as to source +R827 Abnormal findings on microbiological examination of urine +R8271 Bacteriuria +R8279 Other abnormal findings on microbiological examination of urine +R8290 Unspecified abnormal findings in urine +R8291 Other chromoabnormalities of urine +R8299 Other abnormal findings in urine +R82991 Hypocitraturia +R82992 Hyperoxaluria +R82993 Hyperuricosuria +R82994 Hypercalciuria +R82998 Other abnormal findings in urine +R830 Abnormal level of enzymes in cerebrospinal fluid +R831 Abnormal level of hormones in cerebrospinal fluid +R832 Abnormal level of other drugs, medicaments and biological substances in cerebrospinal fluid +R833 Abnormal level of substances chiefly nonmedicinal as to source in cerebrospinal fluid +R834 Abnormal immunological findings in cerebrospinal fluid +R835 Abnormal microbiological findings in cerebrospinal fluid +R836 Abnormal cytological findings in cerebrospinal fluid +R838 Other abnormal findings in cerebrospinal fluid +R839 Unspecified abnormal finding in cerebrospinal fluid +R840 Abnormal level of enzymes in specimens from respiratory organs and thorax +R841 Abnormal level of hormones in specimens from respiratory organs and thorax +R842 Abnormal level of other drugs, medicaments and biological substances in specimens from respiratory organs and thorax +R843 Abnormal level of substances chiefly nonmedicinal as to source in specimens from respiratory organs and thorax +R844 Abnormal immunological findings in specimens from respiratory organs and thorax +R845 Abnormal microbiological findings in specimens from respiratory organs and thorax +R846 Abnormal cytological findings in specimens from respiratory organs and thorax +R847 Abnormal histological findings in specimens from respiratory organs and thorax +R848 Other abnormal findings in specimens from respiratory organs and thorax +R849 Unspecified abnormal finding in specimens from respiratory organs and thorax +R850 Abnormal level of enzymes in specimens from digestive organs and abdominal cavity +R851 Abnormal level of hormones in specimens from digestive organs and abdominal cavity +R852 Abnormal level of other drugs, medicaments and biological substances in specimens from digestive organs and abdominal cavity +R853 Abnormal level of substances chiefly nonmedicinal as to source in specimens from digestive organs and abdominal cavity +R854 Abnormal immunological findings in specimens from digestive organs and abdominal cavity +R855 Abnormal microbiological findings in specimens from digestive organs and abdominal cavity +R85610 Atypical squamous cells of undetermined significance on cytologic smear of anus (ASC-US) +R85611 Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of anus (ASC-H) +R85612 Low grade squamous intraepithelial lesion on cytologic smear of anus (LGSIL) +R85613 High grade squamous intraepithelial lesion on cytologic smear of anus (HGSIL) +R85614 Cytologic evidence of malignancy on smear of anus +R85615 Unsatisfactory cytologic smear of anus +R85616 Satisfactory anal smear but lacking transformation zone +R85618 Other abnormal cytological findings on specimens from anus +R85619 Unspecified abnormal cytological findings in specimens from anus +R8569 Abnormal cytological findings in specimens from other digestive organs and abdominal cavity +R857 Abnormal histological findings in specimens from digestive organs and abdominal cavity +R8581 Anal high risk human papillomavirus (HPV) DNA test positive +R8582 Anal low risk human papillomavirus (HPV) DNA test positive +R8589 Other abnormal findings in specimens from digestive organs and abdominal cavity +R859 Unspecified abnormal finding in specimens from digestive organs and abdominal cavity +R860 Abnormal level of enzymes in specimens from male genital organs +R861 Abnormal level of hormones in specimens from male genital organs +R862 Abnormal level of other drugs, medicaments and biological substances in specimens from male genital organs +R863 Abnormal level of substances chiefly nonmedicinal as to source in specimens from male genital organs +R864 Abnormal immunological findings in specimens from male genital organs +R865 Abnormal microbiological findings in specimens from male genital organs +R866 Abnormal cytological findings in specimens from male genital organs +R867 Abnormal histological findings in specimens from male genital organs +R868 Other abnormal findings in specimens from male genital organs +R869 Unspecified abnormal finding in specimens from male genital organs +R870 Abnormal level of enzymes in specimens from female genital organs +R871 Abnormal level of hormones in specimens from female genital organs +R872 Abnormal level of other drugs, medicaments and biological substances in specimens from female genital organs +R873 Abnormal level of substances chiefly nonmedicinal as to source in specimens from female genital organs +R874 Abnormal immunological findings in specimens from female genital organs +R875 Abnormal microbiological findings in specimens from female genital organs +R87610 Atypical squamous cells of undetermined significance on cytologic smear of cervix (ASC-US) +R87611 Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of cervix (ASC-H) +R87612 Low grade squamous intraepithelial lesion on cytologic smear of cervix (LGSIL) +R87613 High grade squamous intraepithelial lesion on cytologic smear of cervix (HGSIL) +R87614 Cytologic evidence of malignancy on smear of cervix +R87615 Unsatisfactory cytologic smear of cervix +R87616 Satisfactory cervical smear but lacking transformation zone +R87618 Other abnormal cytological findings on specimens from cervix uteri +R87619 Unspecified abnormal cytological findings in specimens from cervix uteri +R87620 Atypical squamous cells of undetermined significance on cytologic smear of vagina (ASC-US) +R87621 Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of vagina (ASC-H) +R87622 Low grade squamous intraepithelial lesion on cytologic smear of vagina (LGSIL) +R87623 High grade squamous intraepithelial lesion on cytologic smear of vagina (HGSIL) +R87624 Cytologic evidence of malignancy on smear of vagina +R87625 Unsatisfactory cytologic smear of vagina +R87628 Other abnormal cytological findings on specimens from vagina +R87629 Unspecified abnormal cytological findings in specimens from vagina +R8769 Abnormal cytological findings in specimens from other female genital organs +R877 Abnormal histological findings in specimens from female genital organs +R87810 Cervical high risk human papillomavirus (HPV) DNA test positive +R87811 Vaginal high risk human papillomavirus (HPV) DNA test positive +R87820 Cervical low risk human papillomavirus (HPV) DNA test positive +R87821 Vaginal low risk human papillomavirus (HPV) DNA test positive +R8789 Other abnormal findings in specimens from female genital organs +R879 Unspecified abnormal finding in specimens from female genital organs +R880 Cloudy (hemodialysis) (peritoneal) dialysis effluent +R888 Abnormal findings in other body fluids and substances +R890 Abnormal level of enzymes in specimens from other organs, systems and tissues +R891 Abnormal level of hormones in specimens from other organs, systems and tissues +R892 Abnormal level of other drugs, medicaments and biological substances in specimens from other organs, systems and tissues +R893 Abnormal level of substances chiefly nonmedicinal as to source in specimens from other organs, systems and tissues +R894 Abnormal immunological findings in specimens from other organs, systems and tissues +R895 Abnormal microbiological findings in specimens from other organs, systems and tissues +R896 Abnormal cytological findings in specimens from other organs, systems and tissues +R897 Abnormal histological findings in specimens from other organs, systems and tissues +R898 Other abnormal findings in specimens from other organs, systems and tissues +R899 Unspecified abnormal finding in specimens from other organs, systems and tissues +R900 Intracranial space-occupying lesion found on diagnostic imaging of central nervous system +R9081 Abnormal echoencephalogram +R9082 White matter disease, unspecified +R9089 Other abnormal findings on diagnostic imaging of central nervous system +R911 Solitary pulmonary nodule +R918 Other nonspecific abnormal finding of lung field +R920 Mammographic microcalcification found on diagnostic imaging of breast +R921 Mammographic calcification found on diagnostic imaging of breast +R922 Inconclusive mammogram +R928 Other abnormal and inconclusive findings on diagnostic imaging of breast +R930 Abnormal findings on diagnostic imaging of skull and head, not elsewhere classified +R931 Abnormal findings on diagnostic imaging of heart and coronary circulation +R932 Abnormal findings on diagnostic imaging of liver and biliary tract +R933 Abnormal findings on diagnostic imaging of other parts of digestive tract +R934 Abnormal findings on diagnostic imaging of urinary organs +R9341 Abnormal radiologic findings on diagnostic imaging of renal pelvis, ureter, or bladder +R93421 Abnormal radiologic findings on diagnostic imaging of right kidney +R93422 Abnormal radiologic findings on diagnostic imaging of left kidney +R93429 Abnormal radiologic findings on diagnostic imaging of unspecified kidney +R9349 Abnormal radiologic findings on diagnostic imaging of other urinary organs +R935 Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum +R936 Abnormal findings on diagnostic imaging of limbs +R937 Abnormal findings on diagnostic imaging of other parts of musculoskeletal system +R938 Abnormal findings on diagnostic imaging of other specified body structures +R93811 Abnormal radiologic findings on diagnostic imaging of right testicle +R93812 Abnormal radiologic findings on diagnostic imaging of left testicle +R93813 Abnormal radiologic findings on diagnostic imaging of testicles, bilateral +R93819 Abnormal radiologic findings on diagnostic imaging of unspecified testicle +R9389 Abnormal findings on diagnostic imaging of other specified body structures +R939 Diagnostic imaging inconclusive due to excess body fat of patient +R9401 Abnormal electroencephalogram [EEG] +R9402 Abnormal brain scan +R9409 Abnormal results of other function studies of central nervous system +R94110 Abnormal electro-oculogram [EOG] +R94111 Abnormal electroretinogram [ERG] +R94112 Abnormal visually evoked potential [VEP] +R94113 Abnormal oculomotor study +R94118 Abnormal results of other function studies of eye +R94120 Abnormal auditory function study +R94121 Abnormal vestibular function study +R94128 Abnormal results of other function studies of ear and other special senses +R94130 Abnormal response to nerve stimulation, unspecified +R94131 Abnormal electromyogram [EMG] +R94138 Abnormal results of other function studies of peripheral nervous system +R942 Abnormal results of pulmonary function studies +R9430 Abnormal result of cardiovascular function study, unspecified +R9431 Abnormal electrocardiogram [ECG] [EKG] +R9439 Abnormal result of other cardiovascular function study +R944 Abnormal results of kidney function studies +R945 Abnormal results of liver function studies +R946 Abnormal results of thyroid function studies +R947 Abnormal results of other endocrine function studies +R948 Abnormal results of function studies of other organs and systems +R970 Elevated carcinoembryonic antigen [CEA] +R971 Elevated cancer antigen 125 [CA 125] +R972 Elevated prostate specific antigen [PSA] +R9720 Elevated prostate specific antigen [PSA] +R9721 Rising PSA following treatment for malignant neoplasm of prostate +R978 Other abnormal tumor markers +S0000XA Unspecified superficial injury of scalp, initial encounter +S0000XD Unspecified superficial injury of scalp, subsequent encounter +S0000XS Unspecified superficial injury of scalp, sequela +S0001XA Abrasion of scalp, initial encounter +S0001XD Abrasion of scalp, subsequent encounter +S0001XS Abrasion of scalp, sequela +S0002XA Blister (nonthermal) of scalp, initial encounter +S0002XD Blister (nonthermal) of scalp, subsequent encounter +S0002XS Blister (nonthermal) of scalp, sequela +S0003XA Contusion of scalp, initial encounter +S0003XD Contusion of scalp, subsequent encounter +S0003XS Contusion of scalp, sequela +S0004XA External constriction of part of scalp, initial encounter +S0004XD External constriction of part of scalp, subsequent encounter +S0004XS External constriction of part of scalp, sequela +S0005XA Superficial foreign body of scalp, initial encounter +S0005XD Superficial foreign body of scalp, subsequent encounter +S0005XS Superficial foreign body of scalp, sequela +S0006XA Insect bite (nonvenomous) of scalp, initial encounter +S0006XD Insect bite (nonvenomous) of scalp, subsequent encounter +S0006XS Insect bite (nonvenomous) of scalp, sequela +S0007XA Other superficial bite of scalp, initial encounter +S0007XD Other superficial bite of scalp, subsequent encounter +S0007XS Other superficial bite of scalp, sequela +S0010XA Contusion of unspecified eyelid and periocular area, initial encounter +S0010XD Contusion of unspecified eyelid and periocular area, subsequent encounter +S0010XS Contusion of unspecified eyelid and periocular area, sequela +S0011XA Contusion of right eyelid and periocular area, initial encounter +S0011XD Contusion of right eyelid and periocular area, subsequent encounter +S0011XS Contusion of right eyelid and periocular area, sequela +S0012XA Contusion of left eyelid and periocular area, initial encounter +S0012XD Contusion of left eyelid and periocular area, subsequent encounter +S0012XS Contusion of left eyelid and periocular area, sequela +S00201A Unspecified superficial injury of right eyelid and periocular area, initial encounter +S00201D Unspecified superficial injury of right eyelid and periocular area, subsequent encounter +S00201S Unspecified superficial injury of right eyelid and periocular area, sequela +S00202A Unspecified superficial injury of left eyelid and periocular area, initial encounter +S00202D Unspecified superficial injury of left eyelid and periocular area, subsequent encounter +S00202S Unspecified superficial injury of left eyelid and periocular area, sequela +S00209A Unspecified superficial injury of unspecified eyelid and periocular area, initial encounter +S00209D Unspecified superficial injury of unspecified eyelid and periocular area, subsequent encounter +S00209S Unspecified superficial injury of unspecified eyelid and periocular area, sequela +S00211A Abrasion of right eyelid and periocular area, initial encounter +S00211D Abrasion of right eyelid and periocular area, subsequent encounter +S00211S Abrasion of right eyelid and periocular area, sequela +S00212A Abrasion of left eyelid and periocular area, initial encounter +S00212D Abrasion of left eyelid and periocular area, subsequent encounter +S00212S Abrasion of left eyelid and periocular area, sequela +S00219A Abrasion of unspecified eyelid and periocular area, initial encounter +S00219D Abrasion of unspecified eyelid and periocular area, subsequent encounter +S00219S Abrasion of unspecified eyelid and periocular area, sequela +S00221A Blister (nonthermal) of right eyelid and periocular area, initial encounter +S00221D Blister (nonthermal) of right eyelid and periocular area, subsequent encounter +S00221S Blister (nonthermal) of right eyelid and periocular area, sequela +S00222A Blister (nonthermal) of left eyelid and periocular area, initial encounter +S00222D Blister (nonthermal) of left eyelid and periocular area, subsequent encounter +S00222S Blister (nonthermal) of left eyelid and periocular area, sequela +S00229A Blister (nonthermal) of unspecified eyelid and periocular area, initial encounter +S00229D Blister (nonthermal) of unspecified eyelid and periocular area, subsequent encounter +S00229S Blister (nonthermal) of unspecified eyelid and periocular area, sequela +S00241A External constriction of right eyelid and periocular area, initial encounter +S00241D External constriction of right eyelid and periocular area, subsequent encounter +S00241S External constriction of right eyelid and periocular area, sequela +S00242A External constriction of left eyelid and periocular area, initial encounter +S00242D External constriction of left eyelid and periocular area, subsequent encounter +S00242S External constriction of left eyelid and periocular area, sequela +S00249A External constriction of unspecified eyelid and periocular area, initial encounter +S00249D External constriction of unspecified eyelid and periocular area, subsequent encounter +S00249S External constriction of unspecified eyelid and periocular area, sequela +S00251A Superficial foreign body of right eyelid and periocular area, initial encounter +S00251D Superficial foreign body of right eyelid and periocular area, subsequent encounter +S00251S Superficial foreign body of right eyelid and periocular area, sequela +S00252A Superficial foreign body of left eyelid and periocular area, initial encounter +S00252D Superficial foreign body of left eyelid and periocular area, subsequent encounter +S00252S Superficial foreign body of left eyelid and periocular area, sequela +S00259A Superficial foreign body of unspecified eyelid and periocular area, initial encounter +S00259D Superficial foreign body of unspecified eyelid and periocular area, subsequent encounter +S00259S Superficial foreign body of unspecified eyelid and periocular area, sequela +S00261A Insect bite (nonvenomous) of right eyelid and periocular area, initial encounter +S00261D Insect bite (nonvenomous) of right eyelid and periocular area, subsequent encounter +S00261S Insect bite (nonvenomous) of right eyelid and periocular area, sequela +S00262A Insect bite (nonvenomous) of left eyelid and periocular area, initial encounter +S00262D Insect bite (nonvenomous) of left eyelid and periocular area, subsequent encounter +S00262S Insect bite (nonvenomous) of left eyelid and periocular area, sequela +S00269A Insect bite (nonvenomous) of unspecified eyelid and periocular area, initial encounter +S00269D Insect bite (nonvenomous) of unspecified eyelid and periocular area, subsequent encounter +S00269S Insect bite (nonvenomous) of unspecified eyelid and periocular area, sequela +S00271A Other superficial bite of right eyelid and periocular area, initial encounter +S00271D Other superficial bite of right eyelid and periocular area, subsequent encounter +S00271S Other superficial bite of right eyelid and periocular area, sequela +S00272A Other superficial bite of left eyelid and periocular area, initial encounter +S00272D Other superficial bite of left eyelid and periocular area, subsequent encounter +S00272S Other superficial bite of left eyelid and periocular area, sequela +S00279A Other superficial bite of unspecified eyelid and periocular area, initial encounter +S00279D Other superficial bite of unspecified eyelid and periocular area, subsequent encounter +S00279S Other superficial bite of unspecified eyelid and periocular area, sequela +S0030XA Unspecified superficial injury of nose, initial encounter +S0030XD Unspecified superficial injury of nose, subsequent encounter +S0030XS Unspecified superficial injury of nose, sequela +S0031XA Abrasion of nose, initial encounter +S0031XD Abrasion of nose, subsequent encounter +S0031XS Abrasion of nose, sequela +S0032XA Blister (nonthermal) of nose, initial encounter +S0032XD Blister (nonthermal) of nose, subsequent encounter +S0032XS Blister (nonthermal) of nose, sequela +S0033XA Contusion of nose, initial encounter +S0033XD Contusion of nose, subsequent encounter +S0033XS Contusion of nose, sequela +S0034XA External constriction of nose, initial encounter +S0034XD External constriction of nose, subsequent encounter +S0034XS External constriction of nose, sequela +S0035XA Superficial foreign body of nose, initial encounter +S0035XD Superficial foreign body of nose, subsequent encounter +S0035XS Superficial foreign body of nose, sequela +S0036XA Insect bite (nonvenomous) of nose, initial encounter +S0036XD Insect bite (nonvenomous) of nose, subsequent encounter +S0036XS Insect bite (nonvenomous) of nose, sequela +S0037XA Other superficial bite of nose, initial encounter +S0037XD Other superficial bite of nose, subsequent encounter +S0037XS Other superficial bite of nose, sequela +S00401A Unspecified superficial injury of right ear, initial encounter +S00401D Unspecified superficial injury of right ear, subsequent encounter +S00401S Unspecified superficial injury of right ear, sequela +S00402A Unspecified superficial injury of left ear, initial encounter +S00402D Unspecified superficial injury of left ear, subsequent encounter +S00402S Unspecified superficial injury of left ear, sequela +S00409A Unspecified superficial injury of unspecified ear, initial encounter +S00409D Unspecified superficial injury of unspecified ear, subsequent encounter +S00409S Unspecified superficial injury of unspecified ear, sequela +S00411A Abrasion of right ear, initial encounter +S00411D Abrasion of right ear, subsequent encounter +S00411S Abrasion of right ear, sequela +S00412A Abrasion of left ear, initial encounter +S00412D Abrasion of left ear, subsequent encounter +S00412S Abrasion of left ear, sequela +S00419A Abrasion of unspecified ear, initial encounter +S00419D Abrasion of unspecified ear, subsequent encounter +S00419S Abrasion of unspecified ear, sequela +S00421A Blister (nonthermal) of right ear, initial encounter +S00421D Blister (nonthermal) of right ear, subsequent encounter +S00421S Blister (nonthermal) of right ear, sequela +S00422A Blister (nonthermal) of left ear, initial encounter +S00422D Blister (nonthermal) of left ear, subsequent encounter +S00422S Blister (nonthermal) of left ear, sequela +S00429A Blister (nonthermal) of unspecified ear, initial encounter +S00429D Blister (nonthermal) of unspecified ear, subsequent encounter +S00429S Blister (nonthermal) of unspecified ear, sequela +S00431A Contusion of right ear, initial encounter +S00431D Contusion of right ear, subsequent encounter +S00431S Contusion of right ear, sequela +S00432A Contusion of left ear, initial encounter +S00432D Contusion of left ear, subsequent encounter +S00432S Contusion of left ear, sequela +S00439A Contusion of unspecified ear, initial encounter +S00439D Contusion of unspecified ear, subsequent encounter +S00439S Contusion of unspecified ear, sequela +S00441A External constriction of right ear, initial encounter +S00441D External constriction of right ear, subsequent encounter +S00441S External constriction of right ear, sequela +S00442A External constriction of left ear, initial encounter +S00442D External constriction of left ear, subsequent encounter +S00442S External constriction of left ear, sequela +S00449A External constriction of unspecified ear, initial encounter +S00449D External constriction of unspecified ear, subsequent encounter +S00449S External constriction of unspecified ear, sequela +S00451A Superficial foreign body of right ear, initial encounter +S00451D Superficial foreign body of right ear, subsequent encounter +S00451S Superficial foreign body of right ear, sequela +S00452A Superficial foreign body of left ear, initial encounter +S00452D Superficial foreign body of left ear, subsequent encounter +S00452S Superficial foreign body of left ear, sequela +S00459A Superficial foreign body of unspecified ear, initial encounter +S00459D Superficial foreign body of unspecified ear, subsequent encounter +S00459S Superficial foreign body of unspecified ear, sequela +S00461A Insect bite (nonvenomous) of right ear, initial encounter +S00461D Insect bite (nonvenomous) of right ear, subsequent encounter +S00461S Insect bite (nonvenomous) of right ear, sequela +S00462A Insect bite (nonvenomous) of left ear, initial encounter +S00462D Insect bite (nonvenomous) of left ear, subsequent encounter +S00462S Insect bite (nonvenomous) of left ear, sequela +S00469A Insect bite (nonvenomous) of unspecified ear, initial encounter +S00469D Insect bite (nonvenomous) of unspecified ear, subsequent encounter +S00469S Insect bite (nonvenomous) of unspecified ear, sequela +S00471A Other superficial bite of right ear, initial encounter +S00471D Other superficial bite of right ear, subsequent encounter +S00471S Other superficial bite of right ear, sequela +S00472A Other superficial bite of left ear, initial encounter +S00472D Other superficial bite of left ear, subsequent encounter +S00472S Other superficial bite of left ear, sequela +S00479A Other superficial bite of unspecified ear, initial encounter +S00479D Other superficial bite of unspecified ear, subsequent encounter +S00479S Other superficial bite of unspecified ear, sequela +S00501A Unspecified superficial injury of lip, initial encounter +S00501D Unspecified superficial injury of lip, subsequent encounter +S00501S Unspecified superficial injury of lip, sequela +S00502A Unspecified superficial injury of oral cavity, initial encounter +S00502D Unspecified superficial injury of oral cavity, subsequent encounter +S00502S Unspecified superficial injury of oral cavity, sequela +S00511A Abrasion of lip, initial encounter +S00511D Abrasion of lip, subsequent encounter +S00511S Abrasion of lip, sequela +S00512A Abrasion of oral cavity, initial encounter +S00512D Abrasion of oral cavity, subsequent encounter +S00512S Abrasion of oral cavity, sequela +S00521A Blister (nonthermal) of lip, initial encounter +S00521D Blister (nonthermal) of lip, subsequent encounter +S00521S Blister (nonthermal) of lip, sequela +S00522A Blister (nonthermal) of oral cavity, initial encounter +S00522D Blister (nonthermal) of oral cavity, subsequent encounter +S00522S Blister (nonthermal) of oral cavity, sequela +S00531A Contusion of lip, initial encounter +S00531D Contusion of lip, subsequent encounter +S00531S Contusion of lip, sequela +S00532A Contusion of oral cavity, initial encounter +S00532D Contusion of oral cavity, subsequent encounter +S00532S Contusion of oral cavity, sequela +S00541A External constriction of lip, initial encounter +S00541D External constriction of lip, subsequent encounter +S00541S External constriction of lip, sequela +S00542A External constriction of oral cavity, initial encounter +S00542D External constriction of oral cavity, subsequent encounter +S00542S External constriction of oral cavity, sequela +S00551A Superficial foreign body of lip, initial encounter +S00551D Superficial foreign body of lip, subsequent encounter +S00551S Superficial foreign body of lip, sequela +S00552A Superficial foreign body of oral cavity, initial encounter +S00552D Superficial foreign body of oral cavity, subsequent encounter +S00552S Superficial foreign body of oral cavity, sequela +S00561A Insect bite (nonvenomous) of lip, initial encounter +S00561D Insect bite (nonvenomous) of lip, subsequent encounter +S00561S Insect bite (nonvenomous) of lip, sequela +S00562A Insect bite (nonvenomous) of oral cavity, initial encounter +S00562D Insect bite (nonvenomous) of oral cavity, subsequent encounter +S00562S Insect bite (nonvenomous) of oral cavity, sequela +S00571A Other superficial bite of lip, initial encounter +S00571D Other superficial bite of lip, subsequent encounter +S00571S Other superficial bite of lip, sequela +S00572A Other superficial bite of oral cavity, initial encounter +S00572D Other superficial bite of oral cavity, subsequent encounter +S00572S Other superficial bite of oral cavity, sequela +S0080XA Unspecified superficial injury of other part of head, initial encounter +S0080XD Unspecified superficial injury of other part of head, subsequent encounter +S0080XS Unspecified superficial injury of other part of head, sequela +S0081XA Abrasion of other part of head, initial encounter +S0081XD Abrasion of other part of head, subsequent encounter +S0081XS Abrasion of other part of head, sequela +S0082XA Blister (nonthermal) of other part of head, initial encounter +S0082XD Blister (nonthermal) of other part of head, subsequent encounter +S0082XS Blister (nonthermal) of other part of head, sequela +S0083XA Contusion of other part of head, initial encounter +S0083XD Contusion of other part of head, subsequent encounter +S0083XS Contusion of other part of head, sequela +S0084XA External constriction of other part of head, initial encounter +S0084XD External constriction of other part of head, subsequent encounter +S0084XS External constriction of other part of head, sequela +S0085XA Superficial foreign body of other part of head, initial encounter +S0085XD Superficial foreign body of other part of head, subsequent encounter +S0085XS Superficial foreign body of other part of head, sequela +S0086XA Insect bite (nonvenomous) of other part of head, initial encounter +S0086XD Insect bite (nonvenomous) of other part of head, subsequent encounter +S0086XS Insect bite (nonvenomous) of other part of head, sequela +S0087XA Other superficial bite of other part of head, initial encounter +S0087XD Other superficial bite of other part of head, subsequent encounter +S0087XS Other superficial bite of other part of head, sequela +S0090XA Unspecified superficial injury of unspecified part of head, initial encounter +S0090XD Unspecified superficial injury of unspecified part of head, subsequent encounter +S0090XS Unspecified superficial injury of unspecified part of head, sequela +S0091XA Abrasion of unspecified part of head, initial encounter +S0091XD Abrasion of unspecified part of head, subsequent encounter +S0091XS Abrasion of unspecified part of head, sequela +S0092XA Blister (nonthermal) of unspecified part of head, initial encounter +S0092XD Blister (nonthermal) of unspecified part of head, subsequent encounter +S0092XS Blister (nonthermal) of unspecified part of head, sequela +S0093XA Contusion of unspecified part of head, initial encounter +S0093XD Contusion of unspecified part of head, subsequent encounter +S0093XS Contusion of unspecified part of head, sequela +S0094XA External constriction of unspecified part of head, initial encounter +S0094XD External constriction of unspecified part of head, subsequent encounter +S0094XS External constriction of unspecified part of head, sequela +S0095XA Superficial foreign body of unspecified part of head, initial encounter +S0095XD Superficial foreign body of unspecified part of head, subsequent encounter +S0095XS Superficial foreign body of unspecified part of head, sequela +S0096XA Insect bite (nonvenomous) of unspecified part of head, initial encounter +S0096XD Insect bite (nonvenomous) of unspecified part of head, subsequent encounter +S0096XS Insect bite (nonvenomous) of unspecified part of head, sequela +S0097XA Other superficial bite of unspecified part of head, initial encounter +S0097XD Other superficial bite of unspecified part of head, subsequent encounter +S0097XS Other superficial bite of unspecified part of head, sequela +S0100XA Unspecified open wound of scalp, initial encounter +S0100XD Unspecified open wound of scalp, subsequent encounter +S0100XS Unspecified open wound of scalp, sequela +S0101XA Laceration without foreign body of scalp, initial encounter +S0101XD Laceration without foreign body of scalp, subsequent encounter +S0101XS Laceration without foreign body of scalp, sequela +S0102XA Laceration with foreign body of scalp, initial encounter +S0102XD Laceration with foreign body of scalp, subsequent encounter +S0102XS Laceration with foreign body of scalp, sequela +S0103XA Puncture wound without foreign body of scalp, initial encounter +S0103XD Puncture wound without foreign body of scalp, subsequent encounter +S0103XS Puncture wound without foreign body of scalp, sequela +S0104XA Puncture wound with foreign body of scalp, initial encounter +S0104XD Puncture wound with foreign body of scalp, subsequent encounter +S0104XS Puncture wound with foreign body of scalp, sequela +S0105XA Open bite of scalp, initial encounter +S0105XD Open bite of scalp, subsequent encounter +S0105XS Open bite of scalp, sequela +S01101A Unspecified open wound of right eyelid and periocular area, initial encounter +S01101D Unspecified open wound of right eyelid and periocular area, subsequent encounter +S01101S Unspecified open wound of right eyelid and periocular area, sequela +S01102A Unspecified open wound of left eyelid and periocular area, initial encounter +S01102D Unspecified open wound of left eyelid and periocular area, subsequent encounter +S01102S Unspecified open wound of left eyelid and periocular area, sequela +S01109A Unspecified open wound of unspecified eyelid and periocular area, initial encounter +S01109D Unspecified open wound of unspecified eyelid and periocular area, subsequent encounter +S01109S Unspecified open wound of unspecified eyelid and periocular area, sequela +S01111A Laceration without foreign body of right eyelid and periocular area, initial encounter +S01111D Laceration without foreign body of right eyelid and periocular area, subsequent encounter +S01111S Laceration without foreign body of right eyelid and periocular area, sequela +S01112A Laceration without foreign body of left eyelid and periocular area, initial encounter +S01112D Laceration without foreign body of left eyelid and periocular area, subsequent encounter +S01112S Laceration without foreign body of left eyelid and periocular area, sequela +S01119A Laceration without foreign body of unspecified eyelid and periocular area, initial encounter +S01119D Laceration without foreign body of unspecified eyelid and periocular area, subsequent encounter +S01119S Laceration without foreign body of unspecified eyelid and periocular area, sequela +S01121A Laceration with foreign body of right eyelid and periocular area, initial encounter +S01121D Laceration with foreign body of right eyelid and periocular area, subsequent encounter +S01121S Laceration with foreign body of right eyelid and periocular area, sequela +S01122A Laceration with foreign body of left eyelid and periocular area, initial encounter +S01122D Laceration with foreign body of left eyelid and periocular area, subsequent encounter +S01122S Laceration with foreign body of left eyelid and periocular area, sequela +S01129A Laceration with foreign body of unspecified eyelid and periocular area, initial encounter +S01129D Laceration with foreign body of unspecified eyelid and periocular area, subsequent encounter +S01129S Laceration with foreign body of unspecified eyelid and periocular area, sequela +S01131A Puncture wound without foreign body of right eyelid and periocular area, initial encounter +S01131D Puncture wound without foreign body of right eyelid and periocular area, subsequent encounter +S01131S Puncture wound without foreign body of right eyelid and periocular area, sequela +S01132A Puncture wound without foreign body of left eyelid and periocular area, initial encounter +S01132D Puncture wound without foreign body of left eyelid and periocular area, subsequent encounter +S01132S Puncture wound without foreign body of left eyelid and periocular area, sequela +S01139A Puncture wound without foreign body of unspecified eyelid and periocular area, initial encounter +S01139D Puncture wound without foreign body of unspecified eyelid and periocular area, subsequent encounter +S01139S Puncture wound without foreign body of unspecified eyelid and periocular area, sequela +S01141A Puncture wound with foreign body of right eyelid and periocular area, initial encounter +S01141D Puncture wound with foreign body of right eyelid and periocular area, subsequent encounter +S01141S Puncture wound with foreign body of right eyelid and periocular area, sequela +S01142A Puncture wound with foreign body of left eyelid and periocular area, initial encounter +S01142D Puncture wound with foreign body of left eyelid and periocular area, subsequent encounter +S01142S Puncture wound with foreign body of left eyelid and periocular area, sequela +S01149A Puncture wound with foreign body of unspecified eyelid and periocular area, initial encounter +S01149D Puncture wound with foreign body of unspecified eyelid and periocular area, subsequent encounter +S01149S Puncture wound with foreign body of unspecified eyelid and periocular area, sequela +S01151A Open bite of right eyelid and periocular area, initial encounter +S01151D Open bite of right eyelid and periocular area, subsequent encounter +S01151S Open bite of right eyelid and periocular area, sequela +S01152A Open bite of left eyelid and periocular area, initial encounter +S01152D Open bite of left eyelid and periocular area, subsequent encounter +S01152S Open bite of left eyelid and periocular area, sequela +S01159A Open bite of unspecified eyelid and periocular area, initial encounter +S01159D Open bite of unspecified eyelid and periocular area, subsequent encounter +S01159S Open bite of unspecified eyelid and periocular area, sequela +S0120XA Unspecified open wound of nose, initial encounter +S0120XD Unspecified open wound of nose, subsequent encounter +S0120XS Unspecified open wound of nose, sequela +S0121XA Laceration without foreign body of nose, initial encounter +S0121XD Laceration without foreign body of nose, subsequent encounter +S0121XS Laceration without foreign body of nose, sequela +S0122XA Laceration with foreign body of nose, initial encounter +S0122XD Laceration with foreign body of nose, subsequent encounter +S0122XS Laceration with foreign body of nose, sequela +S0123XA Puncture wound without foreign body of nose, initial encounter +S0123XD Puncture wound without foreign body of nose, subsequent encounter +S0123XS Puncture wound without foreign body of nose, sequela +S0124XA Puncture wound with foreign body of nose, initial encounter +S0124XD Puncture wound with foreign body of nose, subsequent encounter +S0124XS Puncture wound with foreign body of nose, sequela +S0125XA Open bite of nose, initial encounter +S0125XD Open bite of nose, subsequent encounter +S0125XS Open bite of nose, sequela +S01301A Unspecified open wound of right ear, initial encounter +S01301D Unspecified open wound of right ear, subsequent encounter +S01301S Unspecified open wound of right ear, sequela +S01302A Unspecified open wound of left ear, initial encounter +S01302D Unspecified open wound of left ear, subsequent encounter +S01302S Unspecified open wound of left ear, sequela +S01309A Unspecified open wound of unspecified ear, initial encounter +S01309D Unspecified open wound of unspecified ear, subsequent encounter +S01309S Unspecified open wound of unspecified ear, sequela +S01311A Laceration without foreign body of right ear, initial encounter +S01311D Laceration without foreign body of right ear, subsequent encounter +S01311S Laceration without foreign body of right ear, sequela +S01312A Laceration without foreign body of left ear, initial encounter +S01312D Laceration without foreign body of left ear, subsequent encounter +S01312S Laceration without foreign body of left ear, sequela +S01319A Laceration without foreign body of unspecified ear, initial encounter +S01319D Laceration without foreign body of unspecified ear, subsequent encounter +S01319S Laceration without foreign body of unspecified ear, sequela +S01321A Laceration with foreign body of right ear, initial encounter +S01321D Laceration with foreign body of right ear, subsequent encounter +S01321S Laceration with foreign body of right ear, sequela +S01322A Laceration with foreign body of left ear, initial encounter +S01322D Laceration with foreign body of left ear, subsequent encounter +S01322S Laceration with foreign body of left ear, sequela +S01329A Laceration with foreign body of unspecified ear, initial encounter +S01329D Laceration with foreign body of unspecified ear, subsequent encounter +S01329S Laceration with foreign body of unspecified ear, sequela +S01331A Puncture wound without foreign body of right ear, initial encounter +S01331D Puncture wound without foreign body of right ear, subsequent encounter +S01331S Puncture wound without foreign body of right ear, sequela +S01332A Puncture wound without foreign body of left ear, initial encounter +S01332D Puncture wound without foreign body of left ear, subsequent encounter +S01332S Puncture wound without foreign body of left ear, sequela +S01339A Puncture wound without foreign body of unspecified ear, initial encounter +S01339D Puncture wound without foreign body of unspecified ear, subsequent encounter +S01339S Puncture wound without foreign body of unspecified ear, sequela +S01341A Puncture wound with foreign body of right ear, initial encounter +S01341D Puncture wound with foreign body of right ear, subsequent encounter +S01341S Puncture wound with foreign body of right ear, sequela +S01342A Puncture wound with foreign body of left ear, initial encounter +S01342D Puncture wound with foreign body of left ear, subsequent encounter +S01342S Puncture wound with foreign body of left ear, sequela +S01349A Puncture wound with foreign body of unspecified ear, initial encounter +S01349D Puncture wound with foreign body of unspecified ear, subsequent encounter +S01349S Puncture wound with foreign body of unspecified ear, sequela +S01351A Open bite of right ear, initial encounter +S01351D Open bite of right ear, subsequent encounter +S01351S Open bite of right ear, sequela +S01352A Open bite of left ear, initial encounter +S01352D Open bite of left ear, subsequent encounter +S01352S Open bite of left ear, sequela +S01359A Open bite of unspecified ear, initial encounter +S01359D Open bite of unspecified ear, subsequent encounter +S01359S Open bite of unspecified ear, sequela +S01401A Unspecified open wound of right cheek and temporomandibular area, initial encounter +S01401D Unspecified open wound of right cheek and temporomandibular area, subsequent encounter +S01401S Unspecified open wound of right cheek and temporomandibular area, sequela +S01402A Unspecified open wound of left cheek and temporomandibular area, initial encounter +S01402D Unspecified open wound of left cheek and temporomandibular area, subsequent encounter +S01402S Unspecified open wound of left cheek and temporomandibular area, sequela +S01409A Unspecified open wound of unspecified cheek and temporomandibular area, initial encounter +S01409D Unspecified open wound of unspecified cheek and temporomandibular area, subsequent encounter +S01409S Unspecified open wound of unspecified cheek and temporomandibular area, sequela +S01411A Laceration without foreign body of right cheek and temporomandibular area, initial encounter +S01411D Laceration without foreign body of right cheek and temporomandibular area, subsequent encounter +S01411S Laceration without foreign body of right cheek and temporomandibular area, sequela +S01412A Laceration without foreign body of left cheek and temporomandibular area, initial encounter +S01412D Laceration without foreign body of left cheek and temporomandibular area, subsequent encounter +S01412S Laceration without foreign body of left cheek and temporomandibular area, sequela +S01419A Laceration without foreign body of unspecified cheek and temporomandibular area, initial encounter +S01419D Laceration without foreign body of unspecified cheek and temporomandibular area, subsequent encounter +S01419S Laceration without foreign body of unspecified cheek and temporomandibular area, sequela +S01421A Laceration with foreign body of right cheek and temporomandibular area, initial encounter +S01421D Laceration with foreign body of right cheek and temporomandibular area, subsequent encounter +S01421S Laceration with foreign body of right cheek and temporomandibular area, sequela +S01422A Laceration with foreign body of left cheek and temporomandibular area, initial encounter +S01422D Laceration with foreign body of left cheek and temporomandibular area, subsequent encounter +S01422S Laceration with foreign body of left cheek and temporomandibular area, sequela +S01429A Laceration with foreign body of unspecified cheek and temporomandibular area, initial encounter +S01429D Laceration with foreign body of unspecified cheek and temporomandibular area, subsequent encounter +S01429S Laceration with foreign body of unspecified cheek and temporomandibular area, sequela +S01431A Puncture wound without foreign body of right cheek and temporomandibular area, initial encounter +S01431D Puncture wound without foreign body of right cheek and temporomandibular area, subsequent encounter +S01431S Puncture wound without foreign body of right cheek and temporomandibular area, sequela +S01432A Puncture wound without foreign body of left cheek and temporomandibular area, initial encounter +S01432D Puncture wound without foreign body of left cheek and temporomandibular area, subsequent encounter +S01432S Puncture wound without foreign body of left cheek and temporomandibular area, sequela +S01439A Puncture wound without foreign body of unspecified cheek and temporomandibular area, initial encounter +S01439D Puncture wound without foreign body of unspecified cheek and temporomandibular area, subsequent encounter +S01439S Puncture wound without foreign body of unspecified cheek and temporomandibular area, sequela +S01441A Puncture wound with foreign body of right cheek and temporomandibular area, initial encounter +S01441D Puncture wound with foreign body of right cheek and temporomandibular area, subsequent encounter +S01441S Puncture wound with foreign body of right cheek and temporomandibular area, sequela +S01442A Puncture wound with foreign body of left cheek and temporomandibular area, initial encounter +S01442D Puncture wound with foreign body of left cheek and temporomandibular area, subsequent encounter +S01442S Puncture wound with foreign body of left cheek and temporomandibular area, sequela +S01449A Puncture wound with foreign body of unspecified cheek and temporomandibular area, initial encounter +S01449D Puncture wound with foreign body of unspecified cheek and temporomandibular area, subsequent encounter +S01449S Puncture wound with foreign body of unspecified cheek and temporomandibular area, sequela +S01451A Open bite of right cheek and temporomandibular area, initial encounter +S01451D Open bite of right cheek and temporomandibular area, subsequent encounter +S01451S Open bite of right cheek and temporomandibular area, sequela +S01452A Open bite of left cheek and temporomandibular area, initial encounter +S01452D Open bite of left cheek and temporomandibular area, subsequent encounter +S01452S Open bite of left cheek and temporomandibular area, sequela +S01459A Open bite of unspecified cheek and temporomandibular area, initial encounter +S01459D Open bite of unspecified cheek and temporomandibular area, subsequent encounter +S01459S Open bite of unspecified cheek and temporomandibular area, sequela +S01501A Unspecified open wound of lip, initial encounter +S01501D Unspecified open wound of lip, subsequent encounter +S01501S Unspecified open wound of lip, sequela +S01502A Unspecified open wound of oral cavity, initial encounter +S01502D Unspecified open wound of oral cavity, subsequent encounter +S01502S Unspecified open wound of oral cavity, sequela +S01511A Laceration without foreign body of lip, initial encounter +S01511D Laceration without foreign body of lip, subsequent encounter +S01511S Laceration without foreign body of lip, sequela +S01512A Laceration without foreign body of oral cavity, initial encounter +S01512D Laceration without foreign body of oral cavity, subsequent encounter +S01512S Laceration without foreign body of oral cavity, sequela +S01521A Laceration with foreign body of lip, initial encounter +S01521D Laceration with foreign body of lip, subsequent encounter +S01521S Laceration with foreign body of lip, sequela +S01522A Laceration with foreign body of oral cavity, initial encounter +S01522D Laceration with foreign body of oral cavity, subsequent encounter +S01522S Laceration with foreign body of oral cavity, sequela +S01531A Puncture wound without foreign body of lip, initial encounter +S01531D Puncture wound without foreign body of lip, subsequent encounter +S01531S Puncture wound without foreign body of lip, sequela +S01532A Puncture wound without foreign body of oral cavity, initial encounter +S01532D Puncture wound without foreign body of oral cavity, subsequent encounter +S01532S Puncture wound without foreign body of oral cavity, sequela +S01541A Puncture wound with foreign body of lip, initial encounter +S01541D Puncture wound with foreign body of lip, subsequent encounter +S01541S Puncture wound with foreign body of lip, sequela +S01542A Puncture wound with foreign body of oral cavity, initial encounter +S01542D Puncture wound with foreign body of oral cavity, subsequent encounter +S01542S Puncture wound with foreign body of oral cavity, sequela +S01551A Open bite of lip, initial encounter +S01551D Open bite of lip, subsequent encounter +S01551S Open bite of lip, sequela +S01552A Open bite of oral cavity, initial encounter +S01552D Open bite of oral cavity, subsequent encounter +S01552S Open bite of oral cavity, sequela +S0180XA Unspecified open wound of other part of head, initial encounter +S0180XD Unspecified open wound of other part of head, subsequent encounter +S0180XS Unspecified open wound of other part of head, sequela +S0181XA Laceration without foreign body of other part of head, initial encounter +S0181XD Laceration without foreign body of other part of head, subsequent encounter +S0181XS Laceration without foreign body of other part of head, sequela +S0182XA Laceration with foreign body of other part of head, initial encounter +S0182XD Laceration with foreign body of other part of head, subsequent encounter +S0182XS Laceration with foreign body of other part of head, sequela +S0183XA Puncture wound without foreign body of other part of head, initial encounter +S0183XD Puncture wound without foreign body of other part of head, subsequent encounter +S0183XS Puncture wound without foreign body of other part of head, sequela +S0184XA Puncture wound with foreign body of other part of head, initial encounter +S0184XD Puncture wound with foreign body of other part of head, subsequent encounter +S0184XS Puncture wound with foreign body of other part of head, sequela +S0185XA Open bite of other part of head, initial encounter +S0185XD Open bite of other part of head, subsequent encounter +S0185XS Open bite of other part of head, sequela +S0190XA Unspecified open wound of unspecified part of head, initial encounter +S0190XD Unspecified open wound of unspecified part of head, subsequent encounter +S0190XS Unspecified open wound of unspecified part of head, sequela +S0191XA Laceration without foreign body of unspecified part of head, initial encounter +S0191XD Laceration without foreign body of unspecified part of head, subsequent encounter +S0191XS Laceration without foreign body of unspecified part of head, sequela +S0192XA Laceration with foreign body of unspecified part of head, initial encounter +S0192XD Laceration with foreign body of unspecified part of head, subsequent encounter +S0192XS Laceration with foreign body of unspecified part of head, sequela +S0193XA Puncture wound without foreign body of unspecified part of head, initial encounter +S0193XD Puncture wound without foreign body of unspecified part of head, subsequent encounter +S0193XS Puncture wound without foreign body of unspecified part of head, sequela +S0194XA Puncture wound with foreign body of unspecified part of head, initial encounter +S0194XD Puncture wound with foreign body of unspecified part of head, subsequent encounter +S0194XS Puncture wound with foreign body of unspecified part of head, sequela +S0195XA Open bite of unspecified part of head, initial encounter +S0195XD Open bite of unspecified part of head, subsequent encounter +S0195XS Open bite of unspecified part of head, sequela +S020XXA Fracture of vault of skull, initial encounter for closed fracture +S020XXB Fracture of vault of skull, initial encounter for open fracture +S020XXD Fracture of vault of skull, subsequent encounter for fracture with routine healing +S020XXG Fracture of vault of skull, subsequent encounter for fracture with delayed healing +S020XXK Fracture of vault of skull, subsequent encounter for fracture with nonunion +S020XXS Fracture of vault of skull, sequela +S02101A Fracture of base of skull, right side, initial encounter for closed fracture +S02101B Fracture of base of skull, right side, initial encounter for open fracture +S02101D Fracture of base of skull, right side, subsequent encounter for fracture with routine healing +S02101G Fracture of base of skull, right side, subsequent encounter for fracture with delayed healing +S02101K Fracture of base of skull, right side, subsequent encounter for fracture with nonunion +S02101S Fracture of base of skull, right side, sequela +S02102A Fracture of base of skull, left side, initial encounter for closed fracture +S02102B Fracture of base of skull, left side, initial encounter for open fracture +S02102D Fracture of base of skull, left side, subsequent encounter for fracture with routine healing +S02102G Fracture of base of skull, left side, subsequent encounter for fracture with delayed healing +S02102K Fracture of base of skull, left side, subsequent encounter for fracture with nonunion +S02102S Fracture of base of skull, left side, sequela +S02109A Fracture of base of skull, unspecified side, initial encounter for closed fracture +S02109B Fracture of base of skull, unspecified side, initial encounter for open fracture +S02109D Fracture of base of skull, unspecified side, subsequent encounter for fracture with routine healing +S02109G Fracture of base of skull, unspecified side, subsequent encounter for fracture with delayed healing +S02109K Fracture of base of skull, unspecified side, subsequent encounter for fracture with nonunion +S02109S Fracture of base of skull, unspecified side, sequela +S0210XA Unspecified fracture of base of skull, initial encounter for closed fracture +S0210XB Unspecified fracture of base of skull, initial encounter for open fracture +S0210XD Unspecified fracture of base of skull, subsequent encounter for fracture with routine healing +S0210XG Unspecified fracture of base of skull, subsequent encounter for fracture with delayed healing +S0210XK Unspecified fracture of base of skull, subsequent encounter for fracture with nonunion +S0210XS Unspecified fracture of base of skull, sequela +S02110A Type I occipital condyle fracture, unspecified side, initial encounter for closed fracture +S02110B Type I occipital condyle fracture, unspecified side, initial encounter for open fracture +S02110D Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing +S02110G Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing +S02110K Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion +S02110S Type I occipital condyle fracture, unspecified side, sequela +S02111A Type II occipital condyle fracture, unspecified side, initial encounter for closed fracture +S02111B Type II occipital condyle fracture, unspecified side, initial encounter for open fracture +S02111D Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing +S02111G Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing +S02111K Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion +S02111S Type II occipital condyle fracture, unspecified side, sequela +S02112A Type III occipital condyle fracture, unspecified side, initial encounter for closed fracture +S02112B Type III occipital condyle fracture, unspecified side, initial encounter for open fracture +S02112D Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing +S02112G Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing +S02112K Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion +S02112S Type III occipital condyle fracture, unspecified side, sequela +S02113A Unspecified occipital condyle fracture, initial encounter for closed fracture +S02113B Unspecified occipital condyle fracture, initial encounter for open fracture +S02113D Unspecified occipital condyle fracture, subsequent encounter for fracture with routine healing +S02113G Unspecified occipital condyle fracture, subsequent encounter for fracture with delayed healing +S02113K Unspecified occipital condyle fracture, subsequent encounter for fracture with nonunion +S02113S Unspecified occipital condyle fracture, sequela +S02118A Other fracture of occiput, unspecified side, initial encounter for closed fracture +S02118B Other fracture of occiput, unspecified side, initial encounter for open fracture +S02118D Other fracture of occiput, unspecified side, subsequent encounter for fracture with routine healing +S02118G Other fracture of occiput, unspecified side, subsequent encounter for fracture with delayed healing +S02118K Other fracture of occiput, unspecified side, subsequent encounter for fracture with nonunion +S02118S Other fracture of occiput, unspecified side, sequela +S02119A Unspecified fracture of occiput, initial encounter for closed fracture +S02119B Unspecified fracture of occiput, initial encounter for open fracture +S02119D Unspecified fracture of occiput, subsequent encounter for fracture with routine healing +S02119G Unspecified fracture of occiput, subsequent encounter for fracture with delayed healing +S02119K Unspecified fracture of occiput, subsequent encounter for fracture with nonunion +S02119S Unspecified fracture of occiput, sequela +S0211AA Type I occipital condyle fracture, right side, initial encounter for closed fracture +S0211AB Type I occipital condyle fracture, right side, initial encounter for open fracture +S0211AD Type I occipital condyle fracture, right side, subsequent encounter for fracture with routine healing +S0211AG Type I occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing +S0211AK Type I occipital condyle fracture, right side, subsequent encounter for fracture with nonunion +S0211AS Type I occipital condyle fracture, right side, sequela +S0211BA Type I occipital condyle fracture, left side, initial encounter for closed fracture +S0211BB Type I occipital condyle fracture, left side, initial encounter for open fracture +S0211BD Type I occipital condyle fracture, left side, subsequent encounter for fracture with routine healing +S0211BG Type I occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing +S0211BK Type I occipital condyle fracture, left side, subsequent encounter for fracture with nonunion +S0211BS Type I occipital condyle fracture, left side, sequela +S0211CA Type II occipital condyle fracture, right side, initial encounter for closed fracture +S0211CB Type II occipital condyle fracture, right side, initial encounter for open fracture +S0211CD Type II occipital condyle fracture, right side, subsequent encounter for fracture with routine healing +S0211CG Type II occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing +S0211CK Type II occipital condyle fracture, right side, subsequent encounter for fracture with nonunion +S0211CS Type II occipital condyle fracture, right side, sequela +S0211DA Type II occipital condyle fracture, left side, initial encounter for closed fracture +S0211DB Type II occipital condyle fracture, left side, initial encounter for open fracture +S0211DD Type II occipital condyle fracture, left side, subsequent encounter for fracture with routine healing +S0211DG Type II occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing +S0211DK Type II occipital condyle fracture, left side, subsequent encounter for fracture with nonunion +S0211DS Type II occipital condyle fracture, left side, sequela +S0211EA Type III occipital condyle fracture, right side, initial encounter for closed fracture +S0211EB Type III occipital condyle fracture, right side, initial encounter for open fracture +S0211ED Type III occipital condyle fracture, right side, subsequent encounter for fracture with routine healing +S0211EG Type III occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing +S0211EK Type III occipital condyle fracture, right side, subsequent encounter for fracture with nonunion +S0211ES Type III occipital condyle fracture, right side, sequela +S0211FA Type III occipital condyle fracture, left side, initial encounter for closed fracture +S0211FB Type III occipital condyle fracture, left side, initial encounter for open fracture +S0211FD Type III occipital condyle fracture, left side, subsequent encounter for fracture with routine healing +S0211FG Type III occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing +S0211FK Type III occipital condyle fracture, left side, subsequent encounter for fracture with nonunion +S0211FS Type III occipital condyle fracture, left side, sequela +S0211GA Other fracture of occiput, right side, initial encounter for closed fracture +S0211GB Other fracture of occiput, right side, initial encounter for open fracture +S0211GD Other fracture of occiput, right side, subsequent encounter for fracture with routine healing +S0211GG Other fracture of occiput, right side, subsequent encounter for fracture with delayed healing +S0211GK Other fracture of occiput, right side, subsequent encounter for fracture with nonunion +S0211GS Other fracture of occiput, right side, sequela +S0211HA Other fracture of occiput, left side, initial encounter for closed fracture +S0211HB Other fracture of occiput, left side, initial encounter for open fracture +S0211HD Other fracture of occiput, left side, subsequent encounter for fracture with routine healing +S0211HG Other fracture of occiput, left side, subsequent encounter for fracture with delayed healing +S0211HK Other fracture of occiput, left side, subsequent encounter for fracture with nonunion +S0211HS Other fracture of occiput, left side, sequela +S02121A Fracture of orbital roof, right side, initial encounter for closed fracture +S02121B Fracture of orbital roof, right side, initial encounter for open fracture +S02121D Fracture of orbital roof, right side, subsequent encounter for fracture with routine healing +S02121G Fracture of orbital roof, right side, subsequent encounter for fracture with delayed healing +S02121K Fracture of orbital roof, right side, subsequent encounter for fracture with nonunion +S02121S Fracture of orbital roof, right side, sequela +S02122A Fracture of orbital roof, left side, initial encounter for closed fracture +S02122B Fracture of orbital roof, left side, initial encounter for open fracture +S02122D Fracture of orbital roof, left side, subsequent encounter for fracture with routine healing +S02122G Fracture of orbital roof, left side, subsequent encounter for fracture with delayed healing +S02122K Fracture of orbital roof, left side, subsequent encounter for fracture with nonunion +S02122S Fracture of orbital roof, left side, sequela +S02129A Fracture of orbital roof, unspecified side, initial encounter for closed fracture +S02129B Fracture of orbital roof, unspecified side, initial encounter for open fracture +S02129D Fracture of orbital roof, unspecified side, subsequent encounter for fracture with routine healing +S02129G Fracture of orbital roof, unspecified side, subsequent encounter for fracture with delayed healing +S02129K Fracture of orbital roof, unspecified side, subsequent encounter for fracture with nonunion +S02129S Fracture of orbital roof, unspecified side, sequela +S0219XA Other fracture of base of skull, initial encounter for closed fracture +S0219XB Other fracture of base of skull, initial encounter for open fracture +S0219XD Other fracture of base of skull, subsequent encounter for fracture with routine healing +S0219XG Other fracture of base of skull, subsequent encounter for fracture with delayed healing +S0219XK Other fracture of base of skull, subsequent encounter for fracture with nonunion +S0219XS Other fracture of base of skull, sequela +S022XXA Fracture of nasal bones, initial encounter for closed fracture +S022XXB Fracture of nasal bones, initial encounter for open fracture +S022XXD Fracture of nasal bones, subsequent encounter for fracture with routine healing +S022XXG Fracture of nasal bones, subsequent encounter for fracture with delayed healing +S022XXK Fracture of nasal bones, subsequent encounter for fracture with nonunion +S022XXS Fracture of nasal bones, sequela +S0230XA Fracture of orbital floor, unspecified side, initial encounter for closed fracture +S0230XB Fracture of orbital floor, unspecified side, initial encounter for open fracture +S0230XD Fracture of orbital floor, unspecified side, subsequent encounter for fracture with routine healing +S0230XG Fracture of orbital floor, unspecified side, subsequent encounter for fracture with delayed healing +S0230XK Fracture of orbital floor, unspecified side, subsequent encounter for fracture with nonunion +S0230XS Fracture of orbital floor, unspecified side, sequela +S0231XA Fracture of orbital floor, right side, initial encounter for closed fracture +S0231XB Fracture of orbital floor, right side, initial encounter for open fracture +S0231XD Fracture of orbital floor, right side, subsequent encounter for fracture with routine healing +S0231XG Fracture of orbital floor, right side, subsequent encounter for fracture with delayed healing +S0231XK Fracture of orbital floor, right side, subsequent encounter for fracture with nonunion +S0231XS Fracture of orbital floor, right side, sequela +S0232XA Fracture of orbital floor, left side, initial encounter for closed fracture +S0232XB Fracture of orbital floor, left side, initial encounter for open fracture +S0232XD Fracture of orbital floor, left side, subsequent encounter for fracture with routine healing +S0232XG Fracture of orbital floor, left side, subsequent encounter for fracture with delayed healing +S0232XK Fracture of orbital floor, left side, subsequent encounter for fracture with nonunion +S0232XS Fracture of orbital floor, left side, sequela +S023XXA Fracture of orbital floor, initial encounter for closed fracture +S023XXB Fracture of orbital floor, initial encounter for open fracture +S023XXD Fracture of orbital floor, subsequent encounter for fracture with routine healing +S023XXG Fracture of orbital floor, subsequent encounter for fracture with delayed healing +S023XXK Fracture of orbital floor, subsequent encounter for fracture with nonunion +S023XXS Fracture of orbital floor, sequela +S02400A Malar fracture unspecified side, initial encounter for closed fracture +S02400B Malar fracture unspecified side, initial encounter for open fracture +S02400D Malar fracture unspecified side, subsequent encounter for fracture with routine healing +S02400G Malar fracture unspecified side, subsequent encounter for fracture with delayed healing +S02400K Malar fracture unspecified side, subsequent encounter for fracture with nonunion +S02400S Malar fracture unspecified side, sequela +S02401A Maxillary fracture, unspecified side, initial encounter for closed fracture +S02401B Maxillary fracture, unspecified side, initial encounter for open fracture +S02401D Maxillary fracture, unspecified side, subsequent encounter for fracture with routine healing +S02401G Maxillary fracture, unspecified side, subsequent encounter for fracture with delayed healing +S02401K Maxillary fracture, unspecified side, subsequent encounter for fracture with nonunion +S02401S Maxillary fracture, unspecified side, sequela +S02402A Zygomatic fracture, unspecified side, initial encounter for closed fracture +S02402B Zygomatic fracture, unspecified side, initial encounter for open fracture +S02402D Zygomatic fracture, unspecified side, subsequent encounter for fracture with routine healing +S02402G Zygomatic fracture, unspecified side, subsequent encounter for fracture with delayed healing +S02402K Zygomatic fracture, unspecified side, subsequent encounter for fracture with nonunion +S02402S Zygomatic fracture, unspecified side, sequela +S0240AA Malar fracture, right side, initial encounter for closed fracture +S0240AB Malar fracture, right side, initial encounter for open fracture +S0240AD Malar fracture, right side, subsequent encounter for fracture with routine healing +S0240AG Malar fracture, right side, subsequent encounter for fracture with delayed healing +S0240AK Malar fracture, right side, subsequent encounter for fracture with nonunion +S0240AS Malar fracture, right side, sequela +S0240BA Malar fracture, left side, initial encounter for closed fracture +S0240BB Malar fracture, left side, initial encounter for open fracture +S0240BD Malar fracture, left side, subsequent encounter for fracture with routine healing +S0240BG Malar fracture, left side, subsequent encounter for fracture with delayed healing +S0240BK Malar fracture, left side, subsequent encounter for fracture with nonunion +S0240BS Malar fracture, left side, sequela +S0240CA Maxillary fracture, right side, initial encounter for closed fracture +S0240CB Maxillary fracture, right side, initial encounter for open fracture +S0240CD Maxillary fracture, right side, subsequent encounter for fracture with routine healing +S0240CG Maxillary fracture, right side, subsequent encounter for fracture with delayed healing +S0240CK Maxillary fracture, right side, subsequent encounter for fracture with nonunion +S0240CS Maxillary fracture, right side, sequela +S0240DA Maxillary fracture, left side, initial encounter for closed fracture +S0240DB Maxillary fracture, left side, initial encounter for open fracture +S0240DD Maxillary fracture, left side, subsequent encounter for fracture with routine healing +S0240DG Maxillary fracture, left side, subsequent encounter for fracture with delayed healing +S0240DK Maxillary fracture, left side, subsequent encounter for fracture with nonunion +S0240DS Maxillary fracture, left side, sequela +S0240EA Zygomatic fracture, right side, initial encounter for closed fracture +S0240EB Zygomatic fracture, right side, initial encounter for open fracture +S0240ED Zygomatic fracture, right side, subsequent encounter for fracture with routine healing +S0240EG Zygomatic fracture, right side, subsequent encounter for fracture with delayed healing +S0240EK Zygomatic fracture, right side, subsequent encounter for fracture with nonunion +S0240ES Zygomatic fracture, right side, sequela +S0240FA Zygomatic fracture, left side, initial encounter for closed fracture +S0240FB Zygomatic fracture, left side, initial encounter for open fracture +S0240FD Zygomatic fracture, left side, subsequent encounter for fracture with routine healing +S0240FG Zygomatic fracture, left side, subsequent encounter for fracture with delayed healing +S0240FK Zygomatic fracture, left side, subsequent encounter for fracture with nonunion +S0240FS Zygomatic fracture, left side, sequela +S02411A LeFort I fracture, initial encounter for closed fracture +S02411B LeFort I fracture, initial encounter for open fracture +S02411D LeFort I fracture, subsequent encounter for fracture with routine healing +S02411G LeFort I fracture, subsequent encounter for fracture with delayed healing +S02411K LeFort I fracture, subsequent encounter for fracture with nonunion +S02411S LeFort I fracture, sequela +S02412A LeFort II fracture, initial encounter for closed fracture +S02412B LeFort II fracture, initial encounter for open fracture +S02412D LeFort II fracture, subsequent encounter for fracture with routine healing +S02412G LeFort II fracture, subsequent encounter for fracture with delayed healing +S02412K LeFort II fracture, subsequent encounter for fracture with nonunion +S02412S LeFort II fracture, sequela +S02413A LeFort III fracture, initial encounter for closed fracture +S02413B LeFort III fracture, initial encounter for open fracture +S02413D LeFort III fracture, subsequent encounter for fracture with routine healing +S02413G LeFort III fracture, subsequent encounter for fracture with delayed healing +S02413K LeFort III fracture, subsequent encounter for fracture with nonunion +S02413S LeFort III fracture, sequela +S0242XA Fracture of alveolus of maxilla, initial encounter for closed fracture +S0242XB Fracture of alveolus of maxilla, initial encounter for open fracture +S0242XD Fracture of alveolus of maxilla, subsequent encounter for fracture with routine healing +S0242XG Fracture of alveolus of maxilla, subsequent encounter for fracture with delayed healing +S0242XK Fracture of alveolus of maxilla, subsequent encounter for fracture with nonunion +S0242XS Fracture of alveolus of maxilla, sequela +S025XXA Fracture of tooth (traumatic), initial encounter for closed fracture +S025XXB Fracture of tooth (traumatic), initial encounter for open fracture +S025XXD Fracture of tooth (traumatic), subsequent encounter for fracture with routine healing +S025XXG Fracture of tooth (traumatic), subsequent encounter for fracture with delayed healing +S025XXK Fracture of tooth (traumatic), subsequent encounter for fracture with nonunion +S025XXS Fracture of tooth (traumatic), sequela +S02600A Fracture of unspecified part of body of mandible, unspecified side, initial encounter for closed fracture +S02600B Fracture of unspecified part of body of mandible, unspecified side, initial encounter for open fracture +S02600D Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with routine healing +S02600G Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with delayed healing +S02600K Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with nonunion +S02600S Fracture of unspecified part of body of mandible, unspecified side, sequela +S02601A Fracture of unspecified part of body of right mandible, initial encounter for closed fracture +S02601B Fracture of unspecified part of body of right mandible, initial encounter for open fracture +S02601D Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with routine healing +S02601G Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with delayed healing +S02601K Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with nonunion +S02601S Fracture of unspecified part of body of right mandible, sequela +S02602A Fracture of unspecified part of body of left mandible, initial encounter for closed fracture +S02602B Fracture of unspecified part of body of left mandible, initial encounter for open fracture +S02602D Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with routine healing +S02602G Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with delayed healing +S02602K Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with nonunion +S02602S Fracture of unspecified part of body of left mandible, sequela +S02609A Fracture of mandible, unspecified, initial encounter for closed fracture +S02609B Fracture of mandible, unspecified, initial encounter for open fracture +S02609D Fracture of mandible, unspecified, subsequent encounter for fracture with routine healing +S02609G Fracture of mandible, unspecified, subsequent encounter for fracture with delayed healing +S02609K Fracture of mandible, unspecified, subsequent encounter for fracture with nonunion +S02609S Fracture of mandible, unspecified, sequela +S02610A Fracture of condylar process of mandible, unspecified side, initial encounter for closed fracture +S02610B Fracture of condylar process of mandible, unspecified side, initial encounter for open fracture +S02610D Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with routine healing +S02610G Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with delayed healing +S02610K Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with nonunion +S02610S Fracture of condylar process of mandible, unspecified side, sequela +S02611A Fracture of condylar process of right mandible, initial encounter for closed fracture +S02611B Fracture of condylar process of right mandible, initial encounter for open fracture +S02611D Fracture of condylar process of right mandible, subsequent encounter for fracture with routine healing +S02611G Fracture of condylar process of right mandible, subsequent encounter for fracture with delayed healing +S02611K Fracture of condylar process of right mandible, subsequent encounter for fracture with nonunion +S02611S Fracture of condylar process of right mandible, sequela +S02612A Fracture of condylar process of left mandible, initial encounter for closed fracture +S02612B Fracture of condylar process of left mandible, initial encounter for open fracture +S02612D Fracture of condylar process of left mandible, subsequent encounter for fracture with routine healing +S02612G Fracture of condylar process of left mandible, subsequent encounter for fracture with delayed healing +S02612K Fracture of condylar process of left mandible, subsequent encounter for fracture with nonunion +S02612S Fracture of condylar process of left mandible, sequela +S0261XA Fracture of condylar process of mandible, initial encounter for closed fracture +S0261XB Fracture of condylar process of mandible, initial encounter for open fracture +S0261XD Fracture of condylar process of mandible, subsequent encounter for fracture with routine healing +S0261XG Fracture of condylar process of mandible, subsequent encounter for fracture with delayed healing +S0261XK Fracture of condylar process of mandible, subsequent encounter for fracture with nonunion +S0261XS Fracture of condylar process of mandible, sequela +S02620A Fracture of subcondylar process of mandible, unspecified side, initial encounter for closed fracture +S02620B Fracture of subcondylar process of mandible, unspecified side, initial encounter for open fracture +S02620D Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with routine healing +S02620G Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with delayed healing +S02620K Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with nonunion +S02620S Fracture of subcondylar process of mandible, unspecified side, sequela +S02621A Fracture of subcondylar process of right mandible, initial encounter for closed fracture +S02621B Fracture of subcondylar process of right mandible, initial encounter for open fracture +S02621D Fracture of subcondylar process of right mandible, subsequent encounter for fracture with routine healing +S02621G Fracture of subcondylar process of right mandible, subsequent encounter for fracture with delayed healing +S02621K Fracture of subcondylar process of right mandible, subsequent encounter for fracture with nonunion +S02621S Fracture of subcondylar process of right mandible, sequela +S02622A Fracture of subcondylar process of left mandible, initial encounter for closed fracture +S02622B Fracture of subcondylar process of left mandible, initial encounter for open fracture +S02622D Fracture of subcondylar process of left mandible, subsequent encounter for fracture with routine healing +S02622G Fracture of subcondylar process of left mandible, subsequent encounter for fracture with delayed healing +S02622K Fracture of subcondylar process of left mandible, subsequent encounter for fracture with nonunion +S02622S Fracture of subcondylar process of left mandible, sequela +S0262XA Fracture of subcondylar process of mandible, initial encounter for closed fracture +S0262XB Fracture of subcondylar process of mandible, initial encounter for open fracture +S0262XD Fracture of subcondylar process of mandible, subsequent encounter for fracture with routine healing +S0262XG Fracture of subcondylar process of mandible, subsequent encounter for fracture with delayed healing +S0262XK Fracture of subcondylar process of mandible, subsequent encounter for fracture with nonunion +S0262XS Fracture of subcondylar process of mandible, sequela +S02630A Fracture of coronoid process of mandible, unspecified side, initial encounter for closed fracture +S02630B Fracture of coronoid process of mandible, unspecified side, initial encounter for open fracture +S02630D Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with routine healing +S02630G Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with delayed healing +S02630K Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with nonunion +S02630S Fracture of coronoid process of mandible, unspecified side, sequela +S02631A Fracture of coronoid process of right mandible, initial encounter for closed fracture +S02631B Fracture of coronoid process of right mandible, initial encounter for open fracture +S02631D Fracture of coronoid process of right mandible, subsequent encounter for fracture with routine healing +S02631G Fracture of coronoid process of right mandible, subsequent encounter for fracture with delayed healing +S02631K Fracture of coronoid process of right mandible, subsequent encounter for fracture with nonunion +S02631S Fracture of coronoid process of right mandible, sequela +S02632A Fracture of coronoid process of left mandible, initial encounter for closed fracture +S02632B Fracture of coronoid process of left mandible, initial encounter for open fracture +S02632D Fracture of coronoid process of left mandible, subsequent encounter for fracture with routine healing +S02632G Fracture of coronoid process of left mandible, subsequent encounter for fracture with delayed healing +S02632K Fracture of coronoid process of left mandible, subsequent encounter for fracture with nonunion +S02632S Fracture of coronoid process of left mandible, sequela +S0263XA Fracture of coronoid process of mandible, initial encounter for closed fracture +S0263XB Fracture of coronoid process of mandible, initial encounter for open fracture +S0263XD Fracture of coronoid process of mandible, subsequent encounter for fracture with routine healing +S0263XG Fracture of coronoid process of mandible, subsequent encounter for fracture with delayed healing +S0263XK Fracture of coronoid process of mandible, subsequent encounter for fracture with nonunion +S0263XS Fracture of coronoid process of mandible, sequela +S02640A Fracture of ramus of mandible, unspecified side, initial encounter for closed fracture +S02640B Fracture of ramus of mandible, unspecified side, initial encounter for open fracture +S02640D Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with routine healing +S02640G Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with delayed healing +S02640K Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with nonunion +S02640S Fracture of ramus of mandible, unspecified side, sequela +S02641A Fracture of ramus of right mandible, initial encounter for closed fracture +S02641B Fracture of ramus of right mandible, initial encounter for open fracture +S02641D Fracture of ramus of right mandible, subsequent encounter for fracture with routine healing +S02641G Fracture of ramus of right mandible, subsequent encounter for fracture with delayed healing +S02641K Fracture of ramus of right mandible, subsequent encounter for fracture with nonunion +S02641S Fracture of ramus of right mandible, sequela +S02642A Fracture of ramus of left mandible, initial encounter for closed fracture +S02642B Fracture of ramus of left mandible, initial encounter for open fracture +S02642D Fracture of ramus of left mandible, subsequent encounter for fracture with routine healing +S02642G Fracture of ramus of left mandible, subsequent encounter for fracture with delayed healing +S02642K Fracture of ramus of left mandible, subsequent encounter for fracture with nonunion +S02642S Fracture of ramus of left mandible, sequela +S0264XA Fracture of ramus of mandible, initial encounter for closed fracture +S0264XB Fracture of ramus of mandible, initial encounter for open fracture +S0264XD Fracture of ramus of mandible, subsequent encounter for fracture with routine healing +S0264XG Fracture of ramus of mandible, subsequent encounter for fracture with delayed healing +S0264XK Fracture of ramus of mandible, subsequent encounter for fracture with nonunion +S0264XS Fracture of ramus of mandible, sequela +S02650A Fracture of angle of mandible, unspecified side, initial encounter for closed fracture +S02650B Fracture of angle of mandible, unspecified side, initial encounter for open fracture +S02650D Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with routine healing +S02650G Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with delayed healing +S02650K Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with nonunion +S02650S Fracture of angle of mandible, unspecified side, sequela +S02651A Fracture of angle of right mandible, initial encounter for closed fracture +S02651B Fracture of angle of right mandible, initial encounter for open fracture +S02651D Fracture of angle of right mandible, subsequent encounter for fracture with routine healing +S02651G Fracture of angle of right mandible, subsequent encounter for fracture with delayed healing +S02651K Fracture of angle of right mandible, subsequent encounter for fracture with nonunion +S02651S Fracture of angle of right mandible, sequela +S02652A Fracture of angle of left mandible, initial encounter for closed fracture +S02652B Fracture of angle of left mandible, initial encounter for open fracture +S02652D Fracture of angle of left mandible, subsequent encounter for fracture with routine healing +S02652G Fracture of angle of left mandible, subsequent encounter for fracture with delayed healing +S02652K Fracture of angle of left mandible, subsequent encounter for fracture with nonunion +S02652S Fracture of angle of left mandible, sequela +S0265XA Fracture of angle of mandible, initial encounter for closed fracture +S0265XB Fracture of angle of mandible, initial encounter for open fracture +S0265XD Fracture of angle of mandible, subsequent encounter for fracture with routine healing +S0265XG Fracture of angle of mandible, subsequent encounter for fracture with delayed healing +S0265XK Fracture of angle of mandible, subsequent encounter for fracture with nonunion +S0265XS Fracture of angle of mandible, sequela +S0266XA Fracture of symphysis of mandible, initial encounter for closed fracture +S0266XB Fracture of symphysis of mandible, initial encounter for open fracture +S0266XD Fracture of symphysis of mandible, subsequent encounter for fracture with routine healing +S0266XG Fracture of symphysis of mandible, subsequent encounter for fracture with delayed healing +S0266XK Fracture of symphysis of mandible, subsequent encounter for fracture with nonunion +S0266XS Fracture of symphysis of mandible, sequela +S02670A Fracture of alveolus of mandible, unspecified side, initial encounter for closed fracture +S02670B Fracture of alveolus of mandible, unspecified side, initial encounter for open fracture +S02670D Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with routine healing +S02670G Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with delayed healing +S02670K Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with nonunion +S02670S Fracture of alveolus of mandible, unspecified side, sequela +S02671A Fracture of alveolus of right mandible, initial encounter for closed fracture +S02671B Fracture of alveolus of right mandible, initial encounter for open fracture +S02671D Fracture of alveolus of right mandible, subsequent encounter for fracture with routine healing +S02671G Fracture of alveolus of right mandible, subsequent encounter for fracture with delayed healing +S02671K Fracture of alveolus of right mandible, subsequent encounter for fracture with nonunion +S02671S Fracture of alveolus of right mandible, sequela +S02672A Fracture of alveolus of left mandible, initial encounter for closed fracture +S02672B Fracture of alveolus of left mandible, initial encounter for open fracture +S02672D Fracture of alveolus of left mandible, subsequent encounter for fracture with routine healing +S02672G Fracture of alveolus of left mandible, subsequent encounter for fracture with delayed healing +S02672K Fracture of alveolus of left mandible, subsequent encounter for fracture with nonunion +S02672S Fracture of alveolus of left mandible, sequela +S0267XA Fracture of alveolus of mandible, initial encounter for closed fracture +S0267XB Fracture of alveolus of mandible, initial encounter for open fracture +S0267XD Fracture of alveolus of mandible, subsequent encounter for fracture with routine healing +S0267XG Fracture of alveolus of mandible, subsequent encounter for fracture with delayed healing +S0267XK Fracture of alveolus of mandible, subsequent encounter for fracture with nonunion +S0267XS Fracture of alveolus of mandible, sequela +S0269XA Fracture of mandible of other specified site, initial encounter for closed fracture +S0269XB Fracture of mandible of other specified site, initial encounter for open fracture +S0269XD Fracture of mandible of other specified site, subsequent encounter for fracture with routine healing +S0269XG Fracture of mandible of other specified site, subsequent encounter for fracture with delayed healing +S0269XK Fracture of mandible of other specified site, subsequent encounter for fracture with nonunion +S0269XS Fracture of mandible of other specified site, sequela +S0280XA Fracture of other specified skull and facial bones, unspecified side, initial encounter for closed fracture +S0280XB Fracture of other specified skull and facial bones, unspecified side, initial encounter for open fracture +S0280XD Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with routine healing +S0280XG Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with delayed healing +S0280XK Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with nonunion +S0280XS Fracture of other specified skull and facial bones, unspecified side, sequela +S0281XA Fracture of other specified skull and facial bones, right side, initial encounter for closed fracture +S0281XB Fracture of other specified skull and facial bones, right side, initial encounter for open fracture +S0281XD Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with routine healing +S0281XG Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with delayed healing +S0281XK Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with nonunion +S0281XS Fracture of other specified skull and facial bones, right side, sequela +S0282XA Fracture of other specified skull and facial bones, left side, initial encounter for closed fracture +S0282XB Fracture of other specified skull and facial bones, left side, initial encounter for open fracture +S0282XD Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with routine healing +S0282XG Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with delayed healing +S0282XK Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with nonunion +S0282XS Fracture of other specified skull and facial bones, left side, sequela +S02831A Fracture of medial orbital wall, right side, initial encounter for closed fracture +S02831B Fracture of medial orbital wall, right side, initial encounter for open fracture +S02831D Fracture of medial orbital wall, right side, subsequent encounter for fracture with routine healing +S02831G Fracture of medial orbital wall, right side, subsequent encounter for fracture with delayed healing +S02831K Fracture of medial orbital wall, right side, subsequent encounter for fracture with nonunion +S02831S Fracture of medial orbital wall, right side, sequela +S02832A Fracture of medial orbital wall, left side, initial encounter for closed fracture +S02832B Fracture of medial orbital wall, left side, initial encounter for open fracture +S02832D Fracture of medial orbital wall, left side, subsequent encounter for fracture with routine healing +S02832G Fracture of medial orbital wall, left side, subsequent encounter for fracture with delayed healing +S02832K Fracture of medial orbital wall, left side, subsequent encounter for fracture with nonunion +S02832S Fracture of medial orbital wall, left side, sequela +S02839A Fracture of medial orbital wall, unspecified side, initial encounter for closed fracture +S02839B Fracture of medial orbital wall, unspecified side, initial encounter for open fracture +S02839D Fracture of medial orbital wall, unspecified side, subsequent encounter for fracture with routine healing +S02839G Fracture of medial orbital wall, unspecified side, subsequent encounter for fracture with delayed healing +S02839K Fracture of medial orbital wall, unspecified side, subsequent encounter for fracture with nonunion +S02839S Fracture of medial orbital wall, unspecified side, sequela +S02841A Fracture of lateral orbital wall, right side, initial encounter for closed fracture +S02841B Fracture of lateral orbital wall, right side, initial encounter for open fracture +S02841D Fracture of lateral orbital wall, right side, subsequent encounter for fracture with routine healing +S02841G Fracture of lateral orbital wall, right side, subsequent encounter for fracture with delayed healing +S02841K Fracture of lateral orbital wall, right side, subsequent encounter for fracture with nonunion +S02841S Fracture of lateral orbital wall, right side, sequela +S02842A Fracture of lateral orbital wall, left side, initial encounter for closed fracture +S02842B Fracture of lateral orbital wall, left side, initial encounter for open fracture +S02842D Fracture of lateral orbital wall, left side, subsequent encounter for fracture with routine healing +S02842G Fracture of lateral orbital wall, left side, subsequent encounter for fracture with delayed healing +S02842K Fracture of lateral orbital wall, left side, subsequent encounter for fracture with nonunion +S02842S Fracture of lateral orbital wall, left side, sequela +S02849A Fracture of lateral orbital wall, unspecified side, initial encounter for closed fracture +S02849B Fracture of lateral orbital wall, unspecified side, initial encounter for open fracture +S02849D Fracture of lateral orbital wall, unspecified side, subsequent encounter for fracture with routine healing +S02849G Fracture of lateral orbital wall, unspecified side, subsequent encounter for fracture with delayed healing +S02849K Fracture of lateral orbital wall, unspecified side, subsequent encounter for fracture with nonunion +S02849S Fracture of lateral orbital wall, unspecified side, sequela +S0285XA Fracture of orbit, unspecified side, initial encounter for closed fracture +S0285XB Fracture of orbit, unspecified side, initial encounter for open fracture +S0285XD Fracture of orbit, unspecified side, subsequent encounter for fracture with routine healing +S0285XG Fracture of orbit, unspecified side, subsequent encounter for fracture with delayed healing +S0285XK Fracture of orbit, unspecified side, subsequent encounter for fracture with nonunion +S0285XS Fracture of orbit, unspecified side, sequela +S028XXA Fractures of other specified skull and facial bones, initial encounter for closed fracture +S028XXB Fractures of other specified skull and facial bones, initial encounter for open fracture +S028XXD Fractures of other specified skull and facial bones, subsequent encounter for fracture with routine healing +S028XXG Fractures of other specified skull and facial bones, subsequent encounter for fracture with delayed healing +S028XXK Fractures of other specified skull and facial bones, subsequent encounter for fracture with nonunion +S028XXS Fractures of other specified skull and facial bones, sequela +S0291XA Unspecified fracture of skull, initial encounter for closed fracture +S0291XB Unspecified fracture of skull, initial encounter for open fracture +S0291XD Unspecified fracture of skull, subsequent encounter for fracture with routine healing +S0291XG Unspecified fracture of skull, subsequent encounter for fracture with delayed healing +S0291XK Unspecified fracture of skull, subsequent encounter for fracture with nonunion +S0291XS Unspecified fracture of skull, sequela +S0292XA Unspecified fracture of facial bones, initial encounter for closed fracture +S0292XB Unspecified fracture of facial bones, initial encounter for open fracture +S0292XD Unspecified fracture of facial bones, subsequent encounter for fracture with routine healing +S0292XG Unspecified fracture of facial bones, subsequent encounter for fracture with delayed healing +S0292XK Unspecified fracture of facial bones, subsequent encounter for fracture with nonunion +S0292XS Unspecified fracture of facial bones, sequela +S0300XA Dislocation of jaw, unspecified side, initial encounter +S0300XD Dislocation of jaw, unspecified side, subsequent encounter +S0300XS Dislocation of jaw, unspecified side, sequela +S0301XA Dislocation of jaw, right side, initial encounter +S0301XD Dislocation of jaw, right side, subsequent encounter +S0301XS Dislocation of jaw, right side, sequela +S0302XA Dislocation of jaw, left side, initial encounter +S0302XD Dislocation of jaw, left side, subsequent encounter +S0302XS Dislocation of jaw, left side, sequela +S0303XA Dislocation of jaw, bilateral, initial encounter +S0303XD Dislocation of jaw, bilateral, subsequent encounter +S0303XS Dislocation of jaw, bilateral, sequela +S030XXA Dislocation of jaw, initial encounter +S030XXD Dislocation of jaw, subsequent encounter +S030XXS Dislocation of jaw, sequela +S031XXA Dislocation of septal cartilage of nose, initial encounter +S031XXD Dislocation of septal cartilage of nose, subsequent encounter +S031XXS Dislocation of septal cartilage of nose, sequela +S032XXA Dislocation of tooth, initial encounter +S032XXD Dislocation of tooth, subsequent encounter +S032XXS Dislocation of tooth, sequela +S0340XA Sprain of jaw, unspecified side, initial encounter +S0340XD Sprain of jaw, unspecified side, subsequent encounter +S0340XS Sprain of jaw, unspecified side, sequela +S0341XA Sprain of jaw, right side, initial encounter +S0341XD Sprain of jaw, right side, subsequent encounter +S0341XS Sprain of jaw, right side, sequela +S0342XA Sprain of jaw, left side, initial encounter +S0342XD Sprain of jaw, left side, subsequent encounter +S0342XS Sprain of jaw, left side, sequela +S0343XA Sprain of jaw, bilateral, initial encounter +S0343XD Sprain of jaw, bilateral, subsequent encounter +S0343XS Sprain of jaw, bilateral, sequela +S034XXA Sprain of jaw, initial encounter +S034XXD Sprain of jaw, subsequent encounter +S034XXS Sprain of jaw, sequela +S038XXA Sprain of joints and ligaments of other parts of head, initial encounter +S038XXD Sprain of joints and ligaments of other parts of head, subsequent encounter +S038XXS Sprain of joints and ligaments of other parts of head, sequela +S039XXA Sprain of joints and ligaments of unspecified parts of head, initial encounter +S039XXD Sprain of joints and ligaments of unspecified parts of head, subsequent encounter +S039XXS Sprain of joints and ligaments of unspecified parts of head, sequela +S04011A Injury of optic nerve, right eye, initial encounter +S04011D Injury of optic nerve, right eye, subsequent encounter +S04011S Injury of optic nerve, right eye, sequela +S04012A Injury of optic nerve, left eye, initial encounter +S04012D Injury of optic nerve, left eye, subsequent encounter +S04012S Injury of optic nerve, left eye, sequela +S04019A Injury of optic nerve, unspecified eye, initial encounter +S04019D Injury of optic nerve, unspecified eye, subsequent encounter +S04019S Injury of optic nerve, unspecified eye, sequela +S0402XA Injury of optic chiasm, initial encounter +S0402XD Injury of optic chiasm, subsequent encounter +S0402XS Injury of optic chiasm, sequela +S04031A Injury of optic tract and pathways, right side, initial encounter +S04031D Injury of optic tract and pathways, right side, subsequent encounter +S04031S Injury of optic tract and pathways, right side, sequela +S04032A Injury of optic tract and pathways, left side, initial encounter +S04032D Injury of optic tract and pathways, left side, subsequent encounter +S04032S Injury of optic tract and pathways, left side, sequela +S04039A Injury of optic tract and pathways, unspecified side, initial encounter +S04039D Injury of optic tract and pathways, unspecified side, subsequent encounter +S04039S Injury of optic tract and pathways, unspecified side, sequela +S04041A Injury of visual cortex, right side, initial encounter +S04041D Injury of visual cortex, right side, subsequent encounter +S04041S Injury of visual cortex, right side, sequela +S04042A Injury of visual cortex, left side, initial encounter +S04042D Injury of visual cortex, left side, subsequent encounter +S04042S Injury of visual cortex, left side, sequela +S04049A Injury of visual cortex, unspecified side, initial encounter +S04049D Injury of visual cortex, unspecified side, subsequent encounter +S04049S Injury of visual cortex, unspecified side, sequela +S0410XA Injury of oculomotor nerve, unspecified side, initial encounter +S0410XD Injury of oculomotor nerve, unspecified side, subsequent encounter +S0410XS Injury of oculomotor nerve, unspecified side, sequela +S0411XA Injury of oculomotor nerve, right side, initial encounter +S0411XD Injury of oculomotor nerve, right side, subsequent encounter +S0411XS Injury of oculomotor nerve, right side, sequela +S0412XA Injury of oculomotor nerve, left side, initial encounter +S0412XD Injury of oculomotor nerve, left side, subsequent encounter +S0412XS Injury of oculomotor nerve, left side, sequela +S0420XA Injury of trochlear nerve, unspecified side, initial encounter +S0420XD Injury of trochlear nerve, unspecified side, subsequent encounter +S0420XS Injury of trochlear nerve, unspecified side, sequela +S0421XA Injury of trochlear nerve, right side, initial encounter +S0421XD Injury of trochlear nerve, right side, subsequent encounter +S0421XS Injury of trochlear nerve, right side, sequela +S0422XA Injury of trochlear nerve, left side, initial encounter +S0422XD Injury of trochlear nerve, left side, subsequent encounter +S0422XS Injury of trochlear nerve, left side, sequela +S0430XA Injury of trigeminal nerve, unspecified side, initial encounter +S0430XD Injury of trigeminal nerve, unspecified side, subsequent encounter +S0430XS Injury of trigeminal nerve, unspecified side, sequela +S0431XA Injury of trigeminal nerve, right side, initial encounter +S0431XD Injury of trigeminal nerve, right side, subsequent encounter +S0431XS Injury of trigeminal nerve, right side, sequela +S0432XA Injury of trigeminal nerve, left side, initial encounter +S0432XD Injury of trigeminal nerve, left side, subsequent encounter +S0432XS Injury of trigeminal nerve, left side, sequela +S0440XA Injury of abducent nerve, unspecified side, initial encounter +S0440XD Injury of abducent nerve, unspecified side, subsequent encounter +S0440XS Injury of abducent nerve, unspecified side, sequela +S0441XA Injury of abducent nerve, right side, initial encounter +S0441XD Injury of abducent nerve, right side, subsequent encounter +S0441XS Injury of abducent nerve, right side, sequela +S0442XA Injury of abducent nerve, left side, initial encounter +S0442XD Injury of abducent nerve, left side, subsequent encounter +S0442XS Injury of abducent nerve, left side, sequela +S0450XA Injury of facial nerve, unspecified side, initial encounter +S0450XD Injury of facial nerve, unspecified side, subsequent encounter +S0450XS Injury of facial nerve, unspecified side, sequela +S0451XA Injury of facial nerve, right side, initial encounter +S0451XD Injury of facial nerve, right side, subsequent encounter +S0451XS Injury of facial nerve, right side, sequela +S0452XA Injury of facial nerve, left side, initial encounter +S0452XD Injury of facial nerve, left side, subsequent encounter +S0452XS Injury of facial nerve, left side, sequela +S0460XA Injury of acoustic nerve, unspecified side, initial encounter +S0460XD Injury of acoustic nerve, unspecified side, subsequent encounter +S0460XS Injury of acoustic nerve, unspecified side, sequela +S0461XA Injury of acoustic nerve, right side, initial encounter +S0461XD Injury of acoustic nerve, right side, subsequent encounter +S0461XS Injury of acoustic nerve, right side, sequela +S0462XA Injury of acoustic nerve, left side, initial encounter +S0462XD Injury of acoustic nerve, left side, subsequent encounter +S0462XS Injury of acoustic nerve, left side, sequela +S0470XA Injury of accessory nerve, unspecified side, initial encounter +S0470XD Injury of accessory nerve, unspecified side, subsequent encounter +S0470XS Injury of accessory nerve, unspecified side, sequela +S0471XA Injury of accessory nerve, right side, initial encounter +S0471XD Injury of accessory nerve, right side, subsequent encounter +S0471XS Injury of accessory nerve, right side, sequela +S0472XA Injury of accessory nerve, left side, initial encounter +S0472XD Injury of accessory nerve, left side, subsequent encounter +S0472XS Injury of accessory nerve, left side, sequela +S04811A Injury of olfactory [1st ] nerve, right side, initial encounter +S04811D Injury of olfactory [1st ] nerve, right side, subsequent encounter +S04811S Injury of olfactory [1st ] nerve, right side, sequela +S04812A Injury of olfactory [1st ] nerve, left side, initial encounter +S04812D Injury of olfactory [1st ] nerve, left side, subsequent encounter +S04812S Injury of olfactory [1st ] nerve, left side, sequela +S04819A Injury of olfactory [1st ] nerve, unspecified side, initial encounter +S04819D Injury of olfactory [1st ] nerve, unspecified side, subsequent encounter +S04819S Injury of olfactory [1st ] nerve, unspecified side, sequela +S04891A Injury of other cranial nerves, right side, initial encounter +S04891D Injury of other cranial nerves, right side, subsequent encounter +S04891S Injury of other cranial nerves, right side, sequela +S04892A Injury of other cranial nerves, left side, initial encounter +S04892D Injury of other cranial nerves, left side, subsequent encounter +S04892S Injury of other cranial nerves, left side, sequela +S04899A Injury of other cranial nerves, unspecified side, initial encounter +S04899D Injury of other cranial nerves, unspecified side, subsequent encounter +S04899S Injury of other cranial nerves, unspecified side, sequela +S049XXA Injury of unspecified cranial nerve, initial encounter +S049XXD Injury of unspecified cranial nerve, subsequent encounter +S049XXS Injury of unspecified cranial nerve, sequela +S0500XA Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, initial encounter +S0500XD Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, subsequent encounter +S0500XS Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, sequela +S0501XA Injury of conjunctiva and corneal abrasion without foreign body, right eye, initial encounter +S0501XD Injury of conjunctiva and corneal abrasion without foreign body, right eye, subsequent encounter +S0501XS Injury of conjunctiva and corneal abrasion without foreign body, right eye, sequela +S0502XA Injury of conjunctiva and corneal abrasion without foreign body, left eye, initial encounter +S0502XD Injury of conjunctiva and corneal abrasion without foreign body, left eye, subsequent encounter +S0502XS Injury of conjunctiva and corneal abrasion without foreign body, left eye, sequela +S0510XA Contusion of eyeball and orbital tissues, unspecified eye, initial encounter +S0510XD Contusion of eyeball and orbital tissues, unspecified eye, subsequent encounter +S0510XS Contusion of eyeball and orbital tissues, unspecified eye, sequela +S0511XA Contusion of eyeball and orbital tissues, right eye, initial encounter +S0511XD Contusion of eyeball and orbital tissues, right eye, subsequent encounter +S0511XS Contusion of eyeball and orbital tissues, right eye, sequela +S0512XA Contusion of eyeball and orbital tissues, left eye, initial encounter +S0512XD Contusion of eyeball and orbital tissues, left eye, subsequent encounter +S0512XS Contusion of eyeball and orbital tissues, left eye, sequela +S0520XA Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, initial encounter +S0520XD Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, subsequent encounter +S0520XS Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, sequela +S0521XA Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, initial encounter +S0521XD Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, subsequent encounter +S0521XS Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, sequela +S0522XA Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, initial encounter +S0522XD Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, subsequent encounter +S0522XS Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, sequela +S0530XA Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, initial encounter +S0530XD Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, subsequent encounter +S0530XS Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, sequela +S0531XA Ocular laceration without prolapse or loss of intraocular tissue, right eye, initial encounter +S0531XD Ocular laceration without prolapse or loss of intraocular tissue, right eye, subsequent encounter +S0531XS Ocular laceration without prolapse or loss of intraocular tissue, right eye, sequela +S0532XA Ocular laceration without prolapse or loss of intraocular tissue, left eye, initial encounter +S0532XD Ocular laceration without prolapse or loss of intraocular tissue, left eye, subsequent encounter +S0532XS Ocular laceration without prolapse or loss of intraocular tissue, left eye, sequela +S0540XA Penetrating wound of orbit with or without foreign body, unspecified eye, initial encounter +S0540XD Penetrating wound of orbit with or without foreign body, unspecified eye, subsequent encounter +S0540XS Penetrating wound of orbit with or without foreign body, unspecified eye, sequela +S0541XA Penetrating wound of orbit with or without foreign body, right eye, initial encounter +S0541XD Penetrating wound of orbit with or without foreign body, right eye, subsequent encounter +S0541XS Penetrating wound of orbit with or without foreign body, right eye, sequela +S0542XA Penetrating wound of orbit with or without foreign body, left eye, initial encounter +S0542XD Penetrating wound of orbit with or without foreign body, left eye, subsequent encounter +S0542XS Penetrating wound of orbit with or without foreign body, left eye, sequela +S0550XA Penetrating wound with foreign body of unspecified eyeball, initial encounter +S0550XD Penetrating wound with foreign body of unspecified eyeball, subsequent encounter +S0550XS Penetrating wound with foreign body of unspecified eyeball, sequela +S0551XA Penetrating wound with foreign body of right eyeball, initial encounter +S0551XD Penetrating wound with foreign body of right eyeball, subsequent encounter +S0551XS Penetrating wound with foreign body of right eyeball, sequela +S0552XA Penetrating wound with foreign body of left eyeball, initial encounter +S0552XD Penetrating wound with foreign body of left eyeball, subsequent encounter +S0552XS Penetrating wound with foreign body of left eyeball, sequela +S0560XA Penetrating wound without foreign body of unspecified eyeball, initial encounter +S0560XD Penetrating wound without foreign body of unspecified eyeball, subsequent encounter +S0560XS Penetrating wound without foreign body of unspecified eyeball, sequela +S0561XA Penetrating wound without foreign body of right eyeball, initial encounter +S0561XD Penetrating wound without foreign body of right eyeball, subsequent encounter +S0561XS Penetrating wound without foreign body of right eyeball, sequela +S0562XA Penetrating wound without foreign body of left eyeball, initial encounter +S0562XD Penetrating wound without foreign body of left eyeball, subsequent encounter +S0562XS Penetrating wound without foreign body of left eyeball, sequela +S0570XA Avulsion of unspecified eye, initial encounter +S0570XD Avulsion of unspecified eye, subsequent encounter +S0570XS Avulsion of unspecified eye, sequela +S0571XA Avulsion of right eye, initial encounter +S0571XD Avulsion of right eye, subsequent encounter +S0571XS Avulsion of right eye, sequela +S0572XA Avulsion of left eye, initial encounter +S0572XD Avulsion of left eye, subsequent encounter +S0572XS Avulsion of left eye, sequela +S058X1A Other injuries of right eye and orbit, initial encounter +S058X1D Other injuries of right eye and orbit, subsequent encounter +S058X1S Other injuries of right eye and orbit, sequela +S058X2A Other injuries of left eye and orbit, initial encounter +S058X2D Other injuries of left eye and orbit, subsequent encounter +S058X2S Other injuries of left eye and orbit, sequela +S058X9A Other injuries of unspecified eye and orbit, initial encounter +S058X9D Other injuries of unspecified eye and orbit, subsequent encounter +S058X9S Other injuries of unspecified eye and orbit, sequela +S0590XA Unspecified injury of unspecified eye and orbit, initial encounter +S0590XD Unspecified injury of unspecified eye and orbit, subsequent encounter +S0590XS Unspecified injury of unspecified eye and orbit, sequela +S0591XA Unspecified injury of right eye and orbit, initial encounter +S0591XD Unspecified injury of right eye and orbit, subsequent encounter +S0591XS Unspecified injury of right eye and orbit, sequela +S0592XA Unspecified injury of left eye and orbit, initial encounter +S0592XD Unspecified injury of left eye and orbit, subsequent encounter +S0592XS Unspecified injury of left eye and orbit, sequela +S060X0A Concussion without loss of consciousness, initial encounter +S060X0D Concussion without loss of consciousness, subsequent encounter +S060X0S Concussion without loss of consciousness, sequela +S060X1A Concussion with loss of consciousness of 30 minutes or less, initial encounter +S060X1D Concussion with loss of consciousness of 30 minutes or less, subsequent encounter +S060X1S Concussion with loss of consciousness of 30 minutes or less, sequela +S060X2A Concussion with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S060X2D Concussion with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S060X2S Concussion with loss of consciousness of 31 minutes to 59 minutes, sequela +S060X3A Concussion with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S060X3D Concussion with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S060X3S Concussion with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S060X4A Concussion with loss of consciousness of 6 hours to 24 hours, initial encounter +S060X4D Concussion with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S060X4S Concussion with loss of consciousness of 6 hours to 24 hours, sequela +S060X5A Concussion with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S060X5D Concussion with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S060X5S Concussion with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S060X6A Concussion with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S060X6D Concussion with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S060X6S Concussion with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S060X7A Concussion with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S060X7D Concussion with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S060X7S Concussion with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S060X8A Concussion with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S060X8D Concussion with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S060X8S Concussion with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S060X9A Concussion with loss of consciousness of unspecified duration, initial encounter +S060X9D Concussion with loss of consciousness of unspecified duration, subsequent encounter +S060X9S Concussion with loss of consciousness of unspecified duration, sequela +S061X0A Traumatic cerebral edema without loss of consciousness, initial encounter +S061X0D Traumatic cerebral edema without loss of consciousness, subsequent encounter +S061X0S Traumatic cerebral edema without loss of consciousness, sequela +S061X1A Traumatic cerebral edema with loss of consciousness of 30 minutes or less, initial encounter +S061X1D Traumatic cerebral edema with loss of consciousness of 30 minutes or less, subsequent encounter +S061X1S Traumatic cerebral edema with loss of consciousness of 30 minutes or less, sequela +S061X2A Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S061X2D Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S061X2S Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, sequela +S061X3A Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S061X3D Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S061X3S Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S061X4A Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, initial encounter +S061X4D Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S061X4S Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, sequela +S061X5A Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S061X5D Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S061X5S Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S061X6A Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S061X6D Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S061X6S Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S061X7A Traumatic cerebral edema with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S061X7D Traumatic cerebral edema with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S061X7S Traumatic cerebral edema with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S061X8A Traumatic cerebral edema with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S061X8D Traumatic cerebral edema with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S061X8S Traumatic cerebral edema with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S061X9A Traumatic cerebral edema with loss of consciousness of unspecified duration, initial encounter +S061X9D Traumatic cerebral edema with loss of consciousness of unspecified duration, subsequent encounter +S061X9S Traumatic cerebral edema with loss of consciousness of unspecified duration, sequela +S062X0A Diffuse traumatic brain injury without loss of consciousness, initial encounter +S062X0D Diffuse traumatic brain injury without loss of consciousness, subsequent encounter +S062X0S Diffuse traumatic brain injury without loss of consciousness, sequela +S062X1A Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter +S062X1D Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, subsequent encounter +S062X1S Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, sequela +S062X2A Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S062X2D Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S062X2S Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, sequela +S062X3A Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S062X3D Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S062X3S Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S062X4A Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter +S062X4D Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S062X4S Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela +S062X5A Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, initial encounter +S062X5D Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, subsequent encounter +S062X5S Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, sequela +S062X6A Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S062X6D Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S062X6S Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S062X7A Diffuse traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S062X7D Diffuse traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S062X7S Diffuse traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S062X8A Diffuse traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S062X8D Diffuse traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S062X8S Diffuse traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S062X9A Diffuse traumatic brain injury with loss of consciousness of unspecified duration, initial encounter +S062X9D Diffuse traumatic brain injury with loss of consciousness of unspecified duration, subsequent encounter +S062X9S Diffuse traumatic brain injury with loss of consciousness of unspecified duration, sequela +S06300A Unspecified focal traumatic brain injury without loss of consciousness, initial encounter +S06300D Unspecified focal traumatic brain injury without loss of consciousness, subsequent encounter +S06300S Unspecified focal traumatic brain injury without loss of consciousness, sequela +S06301A Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter +S06301D Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, subsequent encounter +S06301S Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, sequela +S06302A Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06302D Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06302S Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, sequela +S06303A Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S06303D Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S06303S Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S06304A Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter +S06304D Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06304S Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela +S06305A Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06305D Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06305S Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06306A Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06306D Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06306S Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06307A Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06307D Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06307S Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06308A Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06308D Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06308S Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06309A Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, initial encounter +S06309D Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, subsequent encounter +S06309S Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, sequela +S06310A Contusion and laceration of right cerebrum without loss of consciousness, initial encounter +S06310D Contusion and laceration of right cerebrum without loss of consciousness, subsequent encounter +S06310S Contusion and laceration of right cerebrum without loss of consciousness, sequela +S06311A Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter +S06311D Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter +S06311S Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, sequela +S06312A Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06312D Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06312S Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela +S06313A Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S06313D Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S06313S Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S06314A Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter +S06314D Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06314S Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, sequela +S06315A Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06315D Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06315S Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06316A Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06316D Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06316S Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06317A Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06317D Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06317S Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06318A Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06318D Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06318S Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06319A Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, initial encounter +S06319D Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, subsequent encounter +S06319S Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, sequela +S06320A Contusion and laceration of left cerebrum without loss of consciousness, initial encounter +S06320D Contusion and laceration of left cerebrum without loss of consciousness, subsequent encounter +S06320S Contusion and laceration of left cerebrum without loss of consciousness, sequela +S06321A Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter +S06321D Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter +S06321S Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, sequela +S06322A Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06322D Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06322S Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela +S06323A Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S06323D Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S06323S Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S06324A Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter +S06324D Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06324S Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela +S06325A Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06325D Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06325S Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06326A Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06326D Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06326S Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06327A Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06327D Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06327S Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06328A Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06328D Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06328S Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06329A Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, initial encounter +S06329D Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, subsequent encounter +S06329S Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, sequela +S06330A Contusion and laceration of cerebrum, unspecified, without loss of consciousness, initial encounter +S06330D Contusion and laceration of cerebrum, unspecified, without loss of consciousness, subsequent encounter +S06330S Contusion and laceration of cerebrum, unspecified, without loss of consciousness, sequela +S06331A Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter +S06331D Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, subsequent encounter +S06331S Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, sequela +S06332A Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06332D Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06332S Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, sequela +S06333A Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S06333D Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S06333S Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S06334A Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter +S06334D Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06334S Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, sequela +S06335A Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06335D Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06335S Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06336A Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06336D Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06336S Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06337A Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06337D Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06337S Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06338A Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06338D Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06338S Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06339A Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter +S06339D Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, subsequent encounter +S06339S Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, sequela +S06340A Traumatic hemorrhage of right cerebrum without loss of consciousness, initial encounter +S06340D Traumatic hemorrhage of right cerebrum without loss of consciousness, subsequent encounter +S06340S Traumatic hemorrhage of right cerebrum without loss of consciousness, sequela +S06341A Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter +S06341D Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter +S06341S Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, sequela +S06342A Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06342D Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06342S Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela +S06343A Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter +S06343D Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter +S06343S Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela +S06344A Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter +S06344D Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06344S Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, sequela +S06345A Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06345D Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06345S Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06346A Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06346D Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06346S Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06347A Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06347D Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06347S Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06348A Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06348D Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06348S Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06349A Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, initial encounter +S06349D Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, subsequent encounter +S06349S Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, sequela +S06350A Traumatic hemorrhage of left cerebrum without loss of consciousness, initial encounter +S06350D Traumatic hemorrhage of left cerebrum without loss of consciousness, subsequent encounter +S06350S Traumatic hemorrhage of left cerebrum without loss of consciousness, sequela +S06351A Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter +S06351D Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter +S06351S Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, sequela +S06352A Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06352D Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06352S Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela +S06353A Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter +S06353D Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter +S06353S Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela +S06354A Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter +S06354D Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06354S Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela +S06355A Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06355D Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06355S Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06356A Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06356D Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06356S Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06357A Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06357D Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06357S Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06358A Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06358D Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06358S Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06359A Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, initial encounter +S06359D Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, subsequent encounter +S06359S Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, sequela +S06360A Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, initial encounter +S06360D Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, subsequent encounter +S06360S Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, sequela +S06361A Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter +S06361D Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, subsequent encounter +S06361S Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, sequela +S06362A Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06362D Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06362S Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, sequela +S06363A Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter +S06363D Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter +S06363S Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela +S06364A Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter +S06364D Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06364S Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, sequela +S06365A Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06365D Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06365S Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06366A Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06366D Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06366S Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06367A Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06367D Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06367S Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06368A Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06368D Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06368S Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06369A Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter +S06369D Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, subsequent encounter +S06369S Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, sequela +S06370A Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, initial encounter +S06370D Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, subsequent encounter +S06370S Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, sequela +S06371A Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, initial encounter +S06371D Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, subsequent encounter +S06371S Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, sequela +S06372A Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06372D Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06372S Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, sequela +S06373A Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S06373D Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S06373S Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S06374A Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, initial encounter +S06374D Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06374S Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, sequela +S06375A Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06375D Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06375S Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06376A Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06376D Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06376S Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06377A Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06377D Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06377S Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06378A Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06378D Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06378S Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06379A Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, initial encounter +S06379D Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, subsequent encounter +S06379S Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, sequela +S06380A Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, initial encounter +S06380D Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, subsequent encounter +S06380S Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, sequela +S06381A Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, initial encounter +S06381D Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, subsequent encounter +S06381S Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, sequela +S06382A Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06382D Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06382S Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, sequela +S06383A Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S06383D Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S06383S Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S06384A Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, initial encounter +S06384D Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06384S Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, sequela +S06385A Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06385D Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06385S Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06386A Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06386D Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06386S Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06387A Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06387D Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06387S Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06388A Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06388D Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06388S Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06389A Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, initial encounter +S06389D Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, subsequent encounter +S06389S Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, sequela +S064X0A Epidural hemorrhage without loss of consciousness, initial encounter +S064X0D Epidural hemorrhage without loss of consciousness, subsequent encounter +S064X0S Epidural hemorrhage without loss of consciousness, sequela +S064X1A Epidural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter +S064X1D Epidural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter +S064X1S Epidural hemorrhage with loss of consciousness of 30 minutes or less, sequela +S064X2A Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S064X2D Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S064X2S Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela +S064X3A Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S064X3D Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S064X3S Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S064X4A Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter +S064X4D Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S064X4S Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela +S064X5A Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S064X5D Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S064X5S Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S064X6A Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S064X6D Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S064X6S Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S064X7A Epidural hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S064X7D Epidural hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S064X7S Epidural hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S064X8A Epidural hemorrhage with loss of consciousness of any duration with death due to other causes prior to regaining consciousness, initial encounter +S064X8D Epidural hemorrhage with loss of consciousness of any duration with death due to other causes prior to regaining consciousness, subsequent encounter +S064X8S Epidural hemorrhage with loss of consciousness of any duration with death due to other causes prior to regaining consciousness, sequela +S064X9A Epidural hemorrhage with loss of consciousness of unspecified duration, initial encounter +S064X9D Epidural hemorrhage with loss of consciousness of unspecified duration, subsequent encounter +S064X9S Epidural hemorrhage with loss of consciousness of unspecified duration, sequela +S065X0A Traumatic subdural hemorrhage without loss of consciousness, initial encounter +S065X0D Traumatic subdural hemorrhage without loss of consciousness, subsequent encounter +S065X0S Traumatic subdural hemorrhage without loss of consciousness, sequela +S065X1A Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter +S065X1D Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter +S065X1S Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, sequela +S065X2A Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S065X2D Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S065X2S Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela +S065X3A Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S065X3D Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S065X3S Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S065X4A Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter +S065X4D Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S065X4S Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela +S065X5A Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S065X5D Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S065X5S Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S065X6A Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S065X6D Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S065X6S Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S065X7A Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to brain injury before regaining consciousness, initial encounter +S065X7D Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to brain injury before regaining consciousness, subsequent encounter +S065X7S Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to brain injury before regaining consciousness, sequela +S065X8A Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to other cause before regaining consciousness, initial encounter +S065X8D Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to other cause before regaining consciousness, subsequent encounter +S065X8S Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to other cause before regaining consciousness, sequela +S065X9A Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, initial encounter +S065X9D Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, subsequent encounter +S065X9S Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, sequela +S066X0A Traumatic subarachnoid hemorrhage without loss of consciousness, initial encounter +S066X0D Traumatic subarachnoid hemorrhage without loss of consciousness, subsequent encounter +S066X0S Traumatic subarachnoid hemorrhage without loss of consciousness, sequela +S066X1A Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, initial encounter +S066X1D Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter +S066X1S Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, sequela +S066X2A Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S066X2D Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S066X2S Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela +S066X3A Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S066X3D Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S066X3S Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S066X4A Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter +S066X4D Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S066X4S Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela +S066X5A Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S066X5D Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S066X5S Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S066X6A Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S066X6D Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S066X6S Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S066X7A Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S066X7D Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S066X7S Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S066X8A Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S066X8D Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S066X8S Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S066X9A Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, initial encounter +S066X9D Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, subsequent encounter +S066X9S Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, sequela +S06810A Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter +S06810D Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, subsequent encounter +S06810S Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, sequela +S06811A Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter +S06811D Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, subsequent encounter +S06811S Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, sequela +S06812A Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06812D Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06812S Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, sequela +S06813A Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S06813D Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S06813S Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S06814A Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter +S06814D Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06814S Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, sequela +S06815A Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06815D Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06815S Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06816A Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06816D Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06816S Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06817A Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06817D Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06817S Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06818A Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06818D Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06818S Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06819A Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter +S06819D Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, subsequent encounter +S06819S Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, sequela +S06820A Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter +S06820D Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, subsequent encounter +S06820S Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, sequela +S06821A Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter +S06821D Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, subsequent encounter +S06821S Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, sequela +S06822A Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06822D Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06822S Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, sequela +S06823A Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S06823D Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S06823S Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S06824A Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter +S06824D Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06824S Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, sequela +S06825A Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06825D Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06825S Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06826A Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06826D Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06826S Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06827A Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06827D Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06827S Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06828A Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06828D Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06828S Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06829A Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter +S06829D Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, subsequent encounter +S06829S Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, sequela +S06890A Other specified intracranial injury without loss of consciousness, initial encounter +S06890D Other specified intracranial injury without loss of consciousness, subsequent encounter +S06890S Other specified intracranial injury without loss of consciousness, sequela +S06891A Other specified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter +S06891D Other specified intracranial injury with loss of consciousness of 30 minutes or less, subsequent encounter +S06891S Other specified intracranial injury with loss of consciousness of 30 minutes or less, sequela +S06892A Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S06892D Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S06892S Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela +S06893A Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S06893D Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S06893S Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S06894A Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter +S06894D Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S06894S Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela +S06895A Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S06895D Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S06895S Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S06896A Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S06896D Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S06896S Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S06897A Other specified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S06897D Other specified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S06897S Other specified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S06898A Other specified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S06898D Other specified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S06898S Other specified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S06899A Other specified intracranial injury with loss of consciousness of unspecified duration, initial encounter +S06899D Other specified intracranial injury with loss of consciousness of unspecified duration, subsequent encounter +S06899S Other specified intracranial injury with loss of consciousness of unspecified duration, sequela +S069X0A Unspecified intracranial injury without loss of consciousness, initial encounter +S069X0D Unspecified intracranial injury without loss of consciousness, subsequent encounter +S069X0S Unspecified intracranial injury without loss of consciousness, sequela +S069X1A Unspecified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter +S069X1D Unspecified intracranial injury with loss of consciousness of 30 minutes or less, subsequent encounter +S069X1S Unspecified intracranial injury with loss of consciousness of 30 minutes or less, sequela +S069X2A Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter +S069X2D Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +S069X2S Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela +S069X3A Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +S069X3D Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +S069X3S Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +S069X4A Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter +S069X4D Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter +S069X4S Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela +S069X5A Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter +S069X5D Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter +S069X5S Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela +S069X6A Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter +S069X6D Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter +S069X6S Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela +S069X7A Unspecified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter +S069X7D Unspecified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, subsequent encounter +S069X7S Unspecified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, sequela +S069X8A Unspecified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter +S069X8D Unspecified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, subsequent encounter +S069X8S Unspecified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, sequela +S069X9A Unspecified intracranial injury with loss of consciousness of unspecified duration, initial encounter +S069X9D Unspecified intracranial injury with loss of consciousness of unspecified duration, subsequent encounter +S069X9S Unspecified intracranial injury with loss of consciousness of unspecified duration, sequela +S070XXA Crushing injury of face, initial encounter +S070XXD Crushing injury of face, subsequent encounter +S070XXS Crushing injury of face, sequela +S071XXA Crushing injury of skull, initial encounter +S071XXD Crushing injury of skull, subsequent encounter +S071XXS Crushing injury of skull, sequela +S078XXA Crushing injury of other parts of head, initial encounter +S078XXD Crushing injury of other parts of head, subsequent encounter +S078XXS Crushing injury of other parts of head, sequela +S079XXA Crushing injury of head, part unspecified, initial encounter +S079XXD Crushing injury of head, part unspecified, subsequent encounter +S079XXS Crushing injury of head, part unspecified, sequela +S080XXA Avulsion of scalp, initial encounter +S080XXD Avulsion of scalp, subsequent encounter +S080XXS Avulsion of scalp, sequela +S08111A Complete traumatic amputation of right ear, initial encounter +S08111D Complete traumatic amputation of right ear, subsequent encounter +S08111S Complete traumatic amputation of right ear, sequela +S08112A Complete traumatic amputation of left ear, initial encounter +S08112D Complete traumatic amputation of left ear, subsequent encounter +S08112S Complete traumatic amputation of left ear, sequela +S08119A Complete traumatic amputation of unspecified ear, initial encounter +S08119D Complete traumatic amputation of unspecified ear, subsequent encounter +S08119S Complete traumatic amputation of unspecified ear, sequela +S08121A Partial traumatic amputation of right ear, initial encounter +S08121D Partial traumatic amputation of right ear, subsequent encounter +S08121S Partial traumatic amputation of right ear, sequela +S08122A Partial traumatic amputation of left ear, initial encounter +S08122D Partial traumatic amputation of left ear, subsequent encounter +S08122S Partial traumatic amputation of left ear, sequela +S08129A Partial traumatic amputation of unspecified ear, initial encounter +S08129D Partial traumatic amputation of unspecified ear, subsequent encounter +S08129S Partial traumatic amputation of unspecified ear, sequela +S08811A Complete traumatic amputation of nose, initial encounter +S08811D Complete traumatic amputation of nose, subsequent encounter +S08811S Complete traumatic amputation of nose, sequela +S08812A Partial traumatic amputation of nose, initial encounter +S08812D Partial traumatic amputation of nose, subsequent encounter +S08812S Partial traumatic amputation of nose, sequela +S0889XA Traumatic amputation of other parts of head, initial encounter +S0889XD Traumatic amputation of other parts of head, subsequent encounter +S0889XS Traumatic amputation of other parts of head, sequela +S090XXA Injury of blood vessels of head, not elsewhere classified, initial encounter +S090XXD Injury of blood vessels of head, not elsewhere classified, subsequent encounter +S090XXS Injury of blood vessels of head, not elsewhere classified, sequela +S0910XA Unspecified injury of muscle and tendon of head, initial encounter +S0910XD Unspecified injury of muscle and tendon of head, subsequent encounter +S0910XS Unspecified injury of muscle and tendon of head, sequela +S0911XA Strain of muscle and tendon of head, initial encounter +S0911XD Strain of muscle and tendon of head, subsequent encounter +S0911XS Strain of muscle and tendon of head, sequela +S0912XA Laceration of muscle and tendon of head, initial encounter +S0912XD Laceration of muscle and tendon of head, subsequent encounter +S0912XS Laceration of muscle and tendon of head, sequela +S0919XA Other specified injury of muscle and tendon of head, initial encounter +S0919XD Other specified injury of muscle and tendon of head, subsequent encounter +S0919XS Other specified injury of muscle and tendon of head, sequela +S0920XA Traumatic rupture of unspecified ear drum, initial encounter +S0920XD Traumatic rupture of unspecified ear drum, subsequent encounter +S0920XS Traumatic rupture of unspecified ear drum, sequela +S0921XA Traumatic rupture of right ear drum, initial encounter +S0921XD Traumatic rupture of right ear drum, subsequent encounter +S0921XS Traumatic rupture of right ear drum, sequela +S0922XA Traumatic rupture of left ear drum, initial encounter +S0922XD Traumatic rupture of left ear drum, subsequent encounter +S0922XS Traumatic rupture of left ear drum, sequela +S09301A Unspecified injury of right middle and inner ear, initial encounter +S09301D Unspecified injury of right middle and inner ear, subsequent encounter +S09301S Unspecified injury of right middle and inner ear, sequela +S09302A Unspecified injury of left middle and inner ear, initial encounter +S09302D Unspecified injury of left middle and inner ear, subsequent encounter +S09302S Unspecified injury of left middle and inner ear, sequela +S09309A Unspecified injury of unspecified middle and inner ear, initial encounter +S09309D Unspecified injury of unspecified middle and inner ear, subsequent encounter +S09309S Unspecified injury of unspecified middle and inner ear, sequela +S09311A Primary blast injury of right ear, initial encounter +S09311D Primary blast injury of right ear, subsequent encounter +S09311S Primary blast injury of right ear, sequela +S09312A Primary blast injury of left ear, initial encounter +S09312D Primary blast injury of left ear, subsequent encounter +S09312S Primary blast injury of left ear, sequela +S09313A Primary blast injury of ear, bilateral, initial encounter +S09313D Primary blast injury of ear, bilateral, subsequent encounter +S09313S Primary blast injury of ear, bilateral, sequela +S09319A Primary blast injury of unspecified ear, initial encounter +S09319D Primary blast injury of unspecified ear, subsequent encounter +S09319S Primary blast injury of unspecified ear, sequela +S09391A Other specified injury of right middle and inner ear, initial encounter +S09391D Other specified injury of right middle and inner ear, subsequent encounter +S09391S Other specified injury of right middle and inner ear, sequela +S09392A Other specified injury of left middle and inner ear, initial encounter +S09392D Other specified injury of left middle and inner ear, subsequent encounter +S09392S Other specified injury of left middle and inner ear, sequela +S09399A Other specified injury of unspecified middle and inner ear, initial encounter +S09399D Other specified injury of unspecified middle and inner ear, subsequent encounter +S09399S Other specified injury of unspecified middle and inner ear, sequela +S098XXA Other specified injuries of head, initial encounter +S098XXD Other specified injuries of head, subsequent encounter +S098XXS Other specified injuries of head, sequela +S0990XA Unspecified injury of head, initial encounter +S0990XD Unspecified injury of head, subsequent encounter +S0990XS Unspecified injury of head, sequela +S0991XA Unspecified injury of ear, initial encounter +S0991XD Unspecified injury of ear, subsequent encounter +S0991XS Unspecified injury of ear, sequela +S0992XA Unspecified injury of nose, initial encounter +S0992XD Unspecified injury of nose, subsequent encounter +S0992XS Unspecified injury of nose, sequela +S0993XA Unspecified injury of face, initial encounter +S0993XD Unspecified injury of face, subsequent encounter +S0993XS Unspecified injury of face, sequela +S100XXA Contusion of throat, initial encounter +S100XXD Contusion of throat, subsequent encounter +S100XXS Contusion of throat, sequela +S1010XA Unspecified superficial injuries of throat, initial encounter +S1010XD Unspecified superficial injuries of throat, subsequent encounter +S1010XS Unspecified superficial injuries of throat, sequela +S1011XA Abrasion of throat, initial encounter +S1011XD Abrasion of throat, subsequent encounter +S1011XS Abrasion of throat, sequela +S1012XA Blister (nonthermal) of throat, initial encounter +S1012XD Blister (nonthermal) of throat, subsequent encounter +S1012XS Blister (nonthermal) of throat, sequela +S1014XA External constriction of part of throat, initial encounter +S1014XD External constriction of part of throat, subsequent encounter +S1014XS External constriction of part of throat, sequela +S1015XA Superficial foreign body of throat, initial encounter +S1015XD Superficial foreign body of throat, subsequent encounter +S1015XS Superficial foreign body of throat, sequela +S1016XA Insect bite (nonvenomous) of throat, initial encounter +S1016XD Insect bite (nonvenomous) of throat, subsequent encounter +S1016XS Insect bite (nonvenomous) of throat, sequela +S1017XA Other superficial bite of throat, initial encounter +S1017XD Other superficial bite of throat, subsequent encounter +S1017XS Other superficial bite of throat, sequela +S1080XA Unspecified superficial injury of other specified part of neck, initial encounter +S1080XD Unspecified superficial injury of other specified part of neck, subsequent encounter +S1080XS Unspecified superficial injury of other specified part of neck, sequela +S1081XA Abrasion of other specified part of neck, initial encounter +S1081XD Abrasion of other specified part of neck, subsequent encounter +S1081XS Abrasion of other specified part of neck, sequela +S1082XA Blister (nonthermal) of other specified part of neck, initial encounter +S1082XD Blister (nonthermal) of other specified part of neck, subsequent encounter +S1082XS Blister (nonthermal) of other specified part of neck, sequela +S1083XA Contusion of other specified part of neck, initial encounter +S1083XD Contusion of other specified part of neck, subsequent encounter +S1083XS Contusion of other specified part of neck, sequela +S1084XA External constriction of other specified part of neck, initial encounter +S1084XD External constriction of other specified part of neck, subsequent encounter +S1084XS External constriction of other specified part of neck, sequela +S1085XA Superficial foreign body of other specified part of neck, initial encounter +S1085XD Superficial foreign body of other specified part of neck, subsequent encounter +S1085XS Superficial foreign body of other specified part of neck, sequela +S1086XA Insect bite of other specified part of neck, initial encounter +S1086XD Insect bite of other specified part of neck, subsequent encounter +S1086XS Insect bite of other specified part of neck, sequela +S1087XA Other superficial bite of other specified part of neck, initial encounter +S1087XD Other superficial bite of other specified part of neck, subsequent encounter +S1087XS Other superficial bite of other specified part of neck, sequela +S1090XA Unspecified superficial injury of unspecified part of neck, initial encounter +S1090XD Unspecified superficial injury of unspecified part of neck, subsequent encounter +S1090XS Unspecified superficial injury of unspecified part of neck, sequela +S1091XA Abrasion of unspecified part of neck, initial encounter +S1091XD Abrasion of unspecified part of neck, subsequent encounter +S1091XS Abrasion of unspecified part of neck, sequela +S1092XA Blister (nonthermal) of unspecified part of neck, initial encounter +S1092XD Blister (nonthermal) of unspecified part of neck, subsequent encounter +S1092XS Blister (nonthermal) of unspecified part of neck, sequela +S1093XA Contusion of unspecified part of neck, initial encounter +S1093XD Contusion of unspecified part of neck, subsequent encounter +S1093XS Contusion of unspecified part of neck, sequela +S1094XA External constriction of unspecified part of neck, initial encounter +S1094XD External constriction of unspecified part of neck, subsequent encounter +S1094XS External constriction of unspecified part of neck, sequela +S1095XA Superficial foreign body of unspecified part of neck, initial encounter +S1095XD Superficial foreign body of unspecified part of neck, subsequent encounter +S1095XS Superficial foreign body of unspecified part of neck, sequela +S1096XA Insect bite of unspecified part of neck, initial encounter +S1096XD Insect bite of unspecified part of neck, subsequent encounter +S1096XS Insect bite of unspecified part of neck, sequela +S1097XA Other superficial bite of unspecified part of neck, initial encounter +S1097XD Other superficial bite of unspecified part of neck, subsequent encounter +S1097XS Other superficial bite of unspecified part of neck, sequela +S11011A Laceration without foreign body of larynx, initial encounter +S11011D Laceration without foreign body of larynx, subsequent encounter +S11011S Laceration without foreign body of larynx, sequela +S11012A Laceration with foreign body of larynx, initial encounter +S11012D Laceration with foreign body of larynx, subsequent encounter +S11012S Laceration with foreign body of larynx, sequela +S11013A Puncture wound without foreign body of larynx, initial encounter +S11013D Puncture wound without foreign body of larynx, subsequent encounter +S11013S Puncture wound without foreign body of larynx, sequela +S11014A Puncture wound with foreign body of larynx, initial encounter +S11014D Puncture wound with foreign body of larynx, subsequent encounter +S11014S Puncture wound with foreign body of larynx, sequela +S11015A Open bite of larynx, initial encounter +S11015D Open bite of larynx, subsequent encounter +S11015S Open bite of larynx, sequela +S11019A Unspecified open wound of larynx, initial encounter +S11019D Unspecified open wound of larynx, subsequent encounter +S11019S Unspecified open wound of larynx, sequela +S11021A Laceration without foreign body of trachea, initial encounter +S11021D Laceration without foreign body of trachea, subsequent encounter +S11021S Laceration without foreign body of trachea, sequela +S11022A Laceration with foreign body of trachea, initial encounter +S11022D Laceration with foreign body of trachea, subsequent encounter +S11022S Laceration with foreign body of trachea, sequela +S11023A Puncture wound without foreign body of trachea, initial encounter +S11023D Puncture wound without foreign body of trachea, subsequent encounter +S11023S Puncture wound without foreign body of trachea, sequela +S11024A Puncture wound with foreign body of trachea, initial encounter +S11024D Puncture wound with foreign body of trachea, subsequent encounter +S11024S Puncture wound with foreign body of trachea, sequela +S11025A Open bite of trachea, initial encounter +S11025D Open bite of trachea, subsequent encounter +S11025S Open bite of trachea, sequela +S11029A Unspecified open wound of trachea, initial encounter +S11029D Unspecified open wound of trachea, subsequent encounter +S11029S Unspecified open wound of trachea, sequela +S11031A Laceration without foreign body of vocal cord, initial encounter +S11031D Laceration without foreign body of vocal cord, subsequent encounter +S11031S Laceration without foreign body of vocal cord, sequela +S11032A Laceration with foreign body of vocal cord, initial encounter +S11032D Laceration with foreign body of vocal cord, subsequent encounter +S11032S Laceration with foreign body of vocal cord, sequela +S11033A Puncture wound without foreign body of vocal cord, initial encounter +S11033D Puncture wound without foreign body of vocal cord, subsequent encounter +S11033S Puncture wound without foreign body of vocal cord, sequela +S11034A Puncture wound with foreign body of vocal cord, initial encounter +S11034D Puncture wound with foreign body of vocal cord, subsequent encounter +S11034S Puncture wound with foreign body of vocal cord, sequela +S11035A Open bite of vocal cord, initial encounter +S11035D Open bite of vocal cord, subsequent encounter +S11035S Open bite of vocal cord, sequela +S11039A Unspecified open wound of vocal cord, initial encounter +S11039D Unspecified open wound of vocal cord, subsequent encounter +S11039S Unspecified open wound of vocal cord, sequela +S1110XA Unspecified open wound of thyroid gland, initial encounter +S1110XD Unspecified open wound of thyroid gland, subsequent encounter +S1110XS Unspecified open wound of thyroid gland, sequela +S1111XA Laceration without foreign body of thyroid gland, initial encounter +S1111XD Laceration without foreign body of thyroid gland, subsequent encounter +S1111XS Laceration without foreign body of thyroid gland, sequela +S1112XA Laceration with foreign body of thyroid gland, initial encounter +S1112XD Laceration with foreign body of thyroid gland, subsequent encounter +S1112XS Laceration with foreign body of thyroid gland, sequela +S1113XA Puncture wound without foreign body of thyroid gland, initial encounter +S1113XD Puncture wound without foreign body of thyroid gland, subsequent encounter +S1113XS Puncture wound without foreign body of thyroid gland, sequela +S1114XA Puncture wound with foreign body of thyroid gland, initial encounter +S1114XD Puncture wound with foreign body of thyroid gland, subsequent encounter +S1114XS Puncture wound with foreign body of thyroid gland, sequela +S1115XA Open bite of thyroid gland, initial encounter +S1115XD Open bite of thyroid gland, subsequent encounter +S1115XS Open bite of thyroid gland, sequela +S1120XA Unspecified open wound of pharynx and cervical esophagus, initial encounter +S1120XD Unspecified open wound of pharynx and cervical esophagus, subsequent encounter +S1120XS Unspecified open wound of pharynx and cervical esophagus, sequela +S1121XA Laceration without foreign body of pharynx and cervical esophagus, initial encounter +S1121XD Laceration without foreign body of pharynx and cervical esophagus, subsequent encounter +S1121XS Laceration without foreign body of pharynx and cervical esophagus, sequela +S1122XA Laceration with foreign body of pharynx and cervical esophagus, initial encounter +S1122XD Laceration with foreign body of pharynx and cervical esophagus, subsequent encounter +S1122XS Laceration with foreign body of pharynx and cervical esophagus, sequela +S1123XA Puncture wound without foreign body of pharynx and cervical esophagus, initial encounter +S1123XD Puncture wound without foreign body of pharynx and cervical esophagus, subsequent encounter +S1123XS Puncture wound without foreign body of pharynx and cervical esophagus, sequela +S1124XA Puncture wound with foreign body of pharynx and cervical esophagus, initial encounter +S1124XD Puncture wound with foreign body of pharynx and cervical esophagus, subsequent encounter +S1124XS Puncture wound with foreign body of pharynx and cervical esophagus, sequela +S1125XA Open bite of pharynx and cervical esophagus, initial encounter +S1125XD Open bite of pharynx and cervical esophagus, subsequent encounter +S1125XS Open bite of pharynx and cervical esophagus, sequela +S1180XA Unspecified open wound of other specified part of neck, initial encounter +S1180XD Unspecified open wound of other specified part of neck, subsequent encounter +S1180XS Unspecified open wound of other specified part of neck, sequela +S1181XA Laceration without foreign body of other specified part of neck, initial encounter +S1181XD Laceration without foreign body of other specified part of neck, subsequent encounter +S1181XS Laceration without foreign body of other specified part of neck, sequela +S1182XA Laceration with foreign body of other specified part of neck, initial encounter +S1182XD Laceration with foreign body of other specified part of neck, subsequent encounter +S1182XS Laceration with foreign body of other specified part of neck, sequela +S1183XA Puncture wound without foreign body of other specified part of neck, initial encounter +S1183XD Puncture wound without foreign body of other specified part of neck, subsequent encounter +S1183XS Puncture wound without foreign body of other specified part of neck, sequela +S1184XA Puncture wound with foreign body of other specified part of neck, initial encounter +S1184XD Puncture wound with foreign body of other specified part of neck, subsequent encounter +S1184XS Puncture wound with foreign body of other specified part of neck, sequela +S1185XA Open bite of other specified part of neck, initial encounter +S1185XD Open bite of other specified part of neck, subsequent encounter +S1185XS Open bite of other specified part of neck, sequela +S1189XA Other open wound of other specified part of neck, initial encounter +S1189XD Other open wound of other specified part of neck, subsequent encounter +S1189XS Other open wound of other specified part of neck, sequela +S1190XA Unspecified open wound of unspecified part of neck, initial encounter +S1190XD Unspecified open wound of unspecified part of neck, subsequent encounter +S1190XS Unspecified open wound of unspecified part of neck, sequela +S1191XA Laceration without foreign body of unspecified part of neck, initial encounter +S1191XD Laceration without foreign body of unspecified part of neck, subsequent encounter +S1191XS Laceration without foreign body of unspecified part of neck, sequela +S1192XA Laceration with foreign body of unspecified part of neck, initial encounter +S1192XD Laceration with foreign body of unspecified part of neck, subsequent encounter +S1192XS Laceration with foreign body of unspecified part of neck, sequela +S1193XA Puncture wound without foreign body of unspecified part of neck, initial encounter +S1193XD Puncture wound without foreign body of unspecified part of neck, subsequent encounter +S1193XS Puncture wound without foreign body of unspecified part of neck, sequela +S1194XA Puncture wound with foreign body of unspecified part of neck, initial encounter +S1194XD Puncture wound with foreign body of unspecified part of neck, subsequent encounter +S1194XS Puncture wound with foreign body of unspecified part of neck, sequela +S1195XA Open bite of unspecified part of neck, initial encounter +S1195XD Open bite of unspecified part of neck, subsequent encounter +S1195XS Open bite of unspecified part of neck, sequela +S12000A Unspecified displaced fracture of first cervical vertebra, initial encounter for closed fracture +S12000B Unspecified displaced fracture of first cervical vertebra, initial encounter for open fracture +S12000D Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing +S12000G Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing +S12000K Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +S12000S Unspecified displaced fracture of first cervical vertebra, sequela +S12001A Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture +S12001B Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for open fracture +S12001D Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing +S12001G Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing +S12001K Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +S12001S Unspecified nondisplaced fracture of first cervical vertebra, sequela +S1201XA Stable burst fracture of first cervical vertebra, initial encounter for closed fracture +S1201XB Stable burst fracture of first cervical vertebra, initial encounter for open fracture +S1201XD Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with routine healing +S1201XG Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing +S1201XK Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +S1201XS Stable burst fracture of first cervical vertebra, sequela +S1202XA Unstable burst fracture of first cervical vertebra, initial encounter for closed fracture +S1202XB Unstable burst fracture of first cervical vertebra, initial encounter for open fracture +S1202XD Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with routine healing +S1202XG Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing +S1202XK Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +S1202XS Unstable burst fracture of first cervical vertebra, sequela +S12030A Displaced posterior arch fracture of first cervical vertebra, initial encounter for closed fracture +S12030B Displaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture +S12030D Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with routine healing +S12030G Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing +S12030K Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +S12030S Displaced posterior arch fracture of first cervical vertebra, sequela +S12031A Nondisplaced posterior arch fracture of first cervical vertebra, initial encounter for closed fracture +S12031B Nondisplaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture +S12031D Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with routine healing +S12031G Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing +S12031K Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +S12031S Nondisplaced posterior arch fracture of first cervical vertebra, sequela +S12040A Displaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture +S12040B Displaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture +S12040D Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with routine healing +S12040G Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing +S12040K Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +S12040S Displaced lateral mass fracture of first cervical vertebra, sequela +S12041A Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture +S12041B Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture +S12041D Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with routine healing +S12041G Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing +S12041K Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +S12041S Nondisplaced lateral mass fracture of first cervical vertebra, sequela +S12090A Other displaced fracture of first cervical vertebra, initial encounter for closed fracture +S12090B Other displaced fracture of first cervical vertebra, initial encounter for open fracture +S12090D Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing +S12090G Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing +S12090K Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +S12090S Other displaced fracture of first cervical vertebra, sequela +S12091A Other nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture +S12091B Other nondisplaced fracture of first cervical vertebra, initial encounter for open fracture +S12091D Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing +S12091G Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing +S12091K Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +S12091S Other nondisplaced fracture of first cervical vertebra, sequela +S12100A Unspecified displaced fracture of second cervical vertebra, initial encounter for closed fracture +S12100B Unspecified displaced fracture of second cervical vertebra, initial encounter for open fracture +S12100D Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing +S12100G Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing +S12100K Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion +S12100S Unspecified displaced fracture of second cervical vertebra, sequela +S12101A Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture +S12101B Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for open fracture +S12101D Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing +S12101G Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing +S12101K Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion +S12101S Unspecified nondisplaced fracture of second cervical vertebra, sequela +S12110A Anterior displaced Type II dens fracture, initial encounter for closed fracture +S12110B Anterior displaced Type II dens fracture, initial encounter for open fracture +S12110D Anterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing +S12110G Anterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing +S12110K Anterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion +S12110S Anterior displaced Type II dens fracture, sequela +S12111A Posterior displaced Type II dens fracture, initial encounter for closed fracture +S12111B Posterior displaced Type II dens fracture, initial encounter for open fracture +S12111D Posterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing +S12111G Posterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing +S12111K Posterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion +S12111S Posterior displaced Type II dens fracture, sequela +S12112A Nondisplaced Type II dens fracture, initial encounter for closed fracture +S12112B Nondisplaced Type II dens fracture, initial encounter for open fracture +S12112D Nondisplaced Type II dens fracture, subsequent encounter for fracture with routine healing +S12112G Nondisplaced Type II dens fracture, subsequent encounter for fracture with delayed healing +S12112K Nondisplaced Type II dens fracture, subsequent encounter for fracture with nonunion +S12112S Nondisplaced Type II dens fracture, sequela +S12120A Other displaced dens fracture, initial encounter for closed fracture +S12120B Other displaced dens fracture, initial encounter for open fracture +S12120D Other displaced dens fracture, subsequent encounter for fracture with routine healing +S12120G Other displaced dens fracture, subsequent encounter for fracture with delayed healing +S12120K Other displaced dens fracture, subsequent encounter for fracture with nonunion +S12120S Other displaced dens fracture, sequela +S12121A Other nondisplaced dens fracture, initial encounter for closed fracture +S12121B Other nondisplaced dens fracture, initial encounter for open fracture +S12121D Other nondisplaced dens fracture, subsequent encounter for fracture with routine healing +S12121G Other nondisplaced dens fracture, subsequent encounter for fracture with delayed healing +S12121K Other nondisplaced dens fracture, subsequent encounter for fracture with nonunion +S12121S Other nondisplaced dens fracture, sequela +S12130A Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture +S12130B Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture +S12130D Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing +S12130G Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing +S12130K Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion +S12130S Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, sequela +S12131A Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture +S12131B Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture +S12131D Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing +S12131G Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing +S12131K Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion +S12131S Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela +S1214XA Type III traumatic spondylolisthesis of second cervical vertebra, initial encounter for closed fracture +S1214XB Type III traumatic spondylolisthesis of second cervical vertebra, initial encounter for open fracture +S1214XD Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing +S1214XG Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing +S1214XK Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion +S1214XS Type III traumatic spondylolisthesis of second cervical vertebra, sequela +S12150A Other traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture +S12150B Other traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture +S12150D Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing +S12150G Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing +S12150K Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion +S12150S Other traumatic displaced spondylolisthesis of second cervical vertebra, sequela +S12151A Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture +S12151B Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture +S12151D Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing +S12151G Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing +S12151K Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion +S12151S Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela +S12190A Other displaced fracture of second cervical vertebra, initial encounter for closed fracture +S12190B Other displaced fracture of second cervical vertebra, initial encounter for open fracture +S12190D Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing +S12190G Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing +S12190K Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion +S12190S Other displaced fracture of second cervical vertebra, sequela +S12191A Other nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture +S12191B Other nondisplaced fracture of second cervical vertebra, initial encounter for open fracture +S12191D Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing +S12191G Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing +S12191K Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion +S12191S Other nondisplaced fracture of second cervical vertebra, sequela +S12200A Unspecified displaced fracture of third cervical vertebra, initial encounter for closed fracture +S12200B Unspecified displaced fracture of third cervical vertebra, initial encounter for open fracture +S12200D Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing +S12200G Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing +S12200K Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion +S12200S Unspecified displaced fracture of third cervical vertebra, sequela +S12201A Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture +S12201B Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for open fracture +S12201D Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing +S12201G Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing +S12201K Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion +S12201S Unspecified nondisplaced fracture of third cervical vertebra, sequela +S12230A Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture +S12230B Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture +S12230D Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing +S12230G Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing +S12230K Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion +S12230S Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, sequela +S12231A Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture +S12231B Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture +S12231D Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing +S12231G Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing +S12231K Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion +S12231S Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela +S1224XA Type III traumatic spondylolisthesis of third cervical vertebra, initial encounter for closed fracture +S1224XB Type III traumatic spondylolisthesis of third cervical vertebra, initial encounter for open fracture +S1224XD Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing +S1224XG Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing +S1224XK Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion +S1224XS Type III traumatic spondylolisthesis of third cervical vertebra, sequela +S12250A Other traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture +S12250B Other traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture +S12250D Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing +S12250G Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing +S12250K Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion +S12250S Other traumatic displaced spondylolisthesis of third cervical vertebra, sequela +S12251A Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture +S12251B Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture +S12251D Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing +S12251G Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing +S12251K Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion +S12251S Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela +S12290A Other displaced fracture of third cervical vertebra, initial encounter for closed fracture +S12290B Other displaced fracture of third cervical vertebra, initial encounter for open fracture +S12290D Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing +S12290G Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing +S12290K Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion +S12290S Other displaced fracture of third cervical vertebra, sequela +S12291A Other nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture +S12291B Other nondisplaced fracture of third cervical vertebra, initial encounter for open fracture +S12291D Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing +S12291G Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing +S12291K Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion +S12291S Other nondisplaced fracture of third cervical vertebra, sequela +S12300A Unspecified displaced fracture of fourth cervical vertebra, initial encounter for closed fracture +S12300B Unspecified displaced fracture of fourth cervical vertebra, initial encounter for open fracture +S12300D Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing +S12300G Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing +S12300K Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion +S12300S Unspecified displaced fracture of fourth cervical vertebra, sequela +S12301A Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture +S12301B Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture +S12301D Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing +S12301G Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing +S12301K Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion +S12301S Unspecified nondisplaced fracture of fourth cervical vertebra, sequela +S12330A Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture +S12330B Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture +S12330D Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing +S12330G Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing +S12330K Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion +S12330S Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela +S12331A Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture +S12331B Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture +S12331D Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing +S12331G Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing +S12331K Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion +S12331S Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela +S1234XA Type III traumatic spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture +S1234XB Type III traumatic spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture +S1234XD Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing +S1234XG Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing +S1234XK Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion +S1234XS Type III traumatic spondylolisthesis of fourth cervical vertebra, sequela +S12350A Other traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture +S12350B Other traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture +S12350D Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing +S12350G Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing +S12350K Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion +S12350S Other traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela +S12351A Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture +S12351B Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture +S12351D Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing +S12351G Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing +S12351K Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion +S12351S Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela +S12390A Other displaced fracture of fourth cervical vertebra, initial encounter for closed fracture +S12390B Other displaced fracture of fourth cervical vertebra, initial encounter for open fracture +S12390D Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing +S12390G Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing +S12390K Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion +S12390S Other displaced fracture of fourth cervical vertebra, sequela +S12391A Other nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture +S12391B Other nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture +S12391D Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing +S12391G Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing +S12391K Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion +S12391S Other nondisplaced fracture of fourth cervical vertebra, sequela +S12400A Unspecified displaced fracture of fifth cervical vertebra, initial encounter for closed fracture +S12400B Unspecified displaced fracture of fifth cervical vertebra, initial encounter for open fracture +S12400D Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing +S12400G Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing +S12400K Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion +S12400S Unspecified displaced fracture of fifth cervical vertebra, sequela +S12401A Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture +S12401B Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture +S12401D Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing +S12401G Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing +S12401K Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion +S12401S Unspecified nondisplaced fracture of fifth cervical vertebra, sequela +S12430A Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture +S12430B Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture +S12430D Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing +S12430G Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing +S12430K Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion +S12430S Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela +S12431A Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture +S12431B Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture +S12431D Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing +S12431G Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing +S12431K Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion +S12431S Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela +S1244XA Type III traumatic spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture +S1244XB Type III traumatic spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture +S1244XD Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing +S1244XG Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing +S1244XK Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion +S1244XS Type III traumatic spondylolisthesis of fifth cervical vertebra, sequela +S12450A Other traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture +S12450B Other traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture +S12450D Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing +S12450G Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing +S12450K Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion +S12450S Other traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela +S12451A Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture +S12451B Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture +S12451D Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing +S12451G Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing +S12451K Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion +S12451S Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela +S12490A Other displaced fracture of fifth cervical vertebra, initial encounter for closed fracture +S12490B Other displaced fracture of fifth cervical vertebra, initial encounter for open fracture +S12490D Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing +S12490G Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing +S12490K Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion +S12490S Other displaced fracture of fifth cervical vertebra, sequela +S12491A Other nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture +S12491B Other nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture +S12491D Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing +S12491G Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing +S12491K Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion +S12491S Other nondisplaced fracture of fifth cervical vertebra, sequela +S12500A Unspecified displaced fracture of sixth cervical vertebra, initial encounter for closed fracture +S12500B Unspecified displaced fracture of sixth cervical vertebra, initial encounter for open fracture +S12500D Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing +S12500G Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing +S12500K Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion +S12500S Unspecified displaced fracture of sixth cervical vertebra, sequela +S12501A Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture +S12501B Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture +S12501D Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing +S12501G Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing +S12501K Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion +S12501S Unspecified nondisplaced fracture of sixth cervical vertebra, sequela +S12530A Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture +S12530B Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture +S12530D Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing +S12530G Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing +S12530K Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion +S12530S Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela +S12531A Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture +S12531B Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture +S12531D Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing +S12531G Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing +S12531K Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion +S12531S Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela +S1254XA Type III traumatic spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture +S1254XB Type III traumatic spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture +S1254XD Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing +S1254XG Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing +S1254XK Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion +S1254XS Type III traumatic spondylolisthesis of sixth cervical vertebra, sequela +S12550A Other traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture +S12550B Other traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture +S12550D Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing +S12550G Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing +S12550K Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion +S12550S Other traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela +S12551A Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture +S12551B Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture +S12551D Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing +S12551G Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing +S12551K Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion +S12551S Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela +S12590A Other displaced fracture of sixth cervical vertebra, initial encounter for closed fracture +S12590B Other displaced fracture of sixth cervical vertebra, initial encounter for open fracture +S12590D Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing +S12590G Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing +S12590K Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion +S12590S Other displaced fracture of sixth cervical vertebra, sequela +S12591A Other nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture +S12591B Other nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture +S12591D Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing +S12591G Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing +S12591K Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion +S12591S Other nondisplaced fracture of sixth cervical vertebra, sequela +S12600A Unspecified displaced fracture of seventh cervical vertebra, initial encounter for closed fracture +S12600B Unspecified displaced fracture of seventh cervical vertebra, initial encounter for open fracture +S12600D Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing +S12600G Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing +S12600K Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion +S12600S Unspecified displaced fracture of seventh cervical vertebra, sequela +S12601A Unspecified nondisplaced fracture of seventh cervical vertebra, initial encounter for closed fracture +S12601B Unspecified nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture +S12601D Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing +S12601G Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing +S12601K Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion +S12601S Unspecified nondisplaced fracture of seventh cervical vertebra, sequela +S12630A Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture +S12630B Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture +S12630D Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing +S12630G Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing +S12630K Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion +S12630S Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela +S12631A Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture +S12631B Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture +S12631D Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing +S12631G Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing +S12631K Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion +S12631S Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela +S1264XA Type III traumatic spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture +S1264XB Type III traumatic spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture +S1264XD Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing +S1264XG Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing +S1264XK Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion +S1264XS Type III traumatic spondylolisthesis of seventh cervical vertebra, sequela +S12650A Other traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture +S12650B Other traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture +S12650D Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing +S12650G Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing +S12650K Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion +S12650S Other traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela +S12651A Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture +S12651B Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture +S12651D Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing +S12651G Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing +S12651K Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion +S12651S Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela +S12690A Other displaced fracture of seventh cervical vertebra, initial encounter for closed fracture +S12690B Other displaced fracture of seventh cervical vertebra, initial encounter for open fracture +S12690D Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing +S12690G Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing +S12690K Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion +S12690S Other displaced fracture of seventh cervical vertebra, sequela +S12691A Other nondisplaced fracture of seventh cervical vertebra, initial encounter for closed fracture +S12691B Other nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture +S12691D Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing +S12691G Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing +S12691K Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion +S12691S Other nondisplaced fracture of seventh cervical vertebra, sequela +S128XXA Fracture of other parts of neck, initial encounter +S128XXD Fracture of other parts of neck, subsequent encounter +S128XXS Fracture of other parts of neck, sequela +S129XXA Fracture of neck, unspecified, initial encounter +S129XXD Fracture of neck, unspecified, subsequent encounter +S129XXS Fracture of neck, unspecified, sequela +S130XXA Traumatic rupture of cervical intervertebral disc, initial encounter +S130XXD Traumatic rupture of cervical intervertebral disc, subsequent encounter +S130XXS Traumatic rupture of cervical intervertebral disc, sequela +S13100A Subluxation of unspecified cervical vertebrae, initial encounter +S13100D Subluxation of unspecified cervical vertebrae, subsequent encounter +S13100S Subluxation of unspecified cervical vertebrae, sequela +S13101A Dislocation of unspecified cervical vertebrae, initial encounter +S13101D Dislocation of unspecified cervical vertebrae, subsequent encounter +S13101S Dislocation of unspecified cervical vertebrae, sequela +S13110A Subluxation of C0/C1 cervical vertebrae, initial encounter +S13110D Subluxation of C0/C1 cervical vertebrae, subsequent encounter +S13110S Subluxation of C0/C1 cervical vertebrae, sequela +S13111A Dislocation of C0/C1 cervical vertebrae, initial encounter +S13111D Dislocation of C0/C1 cervical vertebrae, subsequent encounter +S13111S Dislocation of C0/C1 cervical vertebrae, sequela +S13120A Subluxation of C1/C2 cervical vertebrae, initial encounter +S13120D Subluxation of C1/C2 cervical vertebrae, subsequent encounter +S13120S Subluxation of C1/C2 cervical vertebrae, sequela +S13121A Dislocation of C1/C2 cervical vertebrae, initial encounter +S13121D Dislocation of C1/C2 cervical vertebrae, subsequent encounter +S13121S Dislocation of C1/C2 cervical vertebrae, sequela +S13130A Subluxation of C2/C3 cervical vertebrae, initial encounter +S13130D Subluxation of C2/C3 cervical vertebrae, subsequent encounter +S13130S Subluxation of C2/C3 cervical vertebrae, sequela +S13131A Dislocation of C2/C3 cervical vertebrae, initial encounter +S13131D Dislocation of C2/C3 cervical vertebrae, subsequent encounter +S13131S Dislocation of C2/C3 cervical vertebrae, sequela +S13140A Subluxation of C3/C4 cervical vertebrae, initial encounter +S13140D Subluxation of C3/C4 cervical vertebrae, subsequent encounter +S13140S Subluxation of C3/C4 cervical vertebrae, sequela +S13141A Dislocation of C3/C4 cervical vertebrae, initial encounter +S13141D Dislocation of C3/C4 cervical vertebrae, subsequent encounter +S13141S Dislocation of C3/C4 cervical vertebrae, sequela +S13150A Subluxation of C4/C5 cervical vertebrae, initial encounter +S13150D Subluxation of C4/C5 cervical vertebrae, subsequent encounter +S13150S Subluxation of C4/C5 cervical vertebrae, sequela +S13151A Dislocation of C4/C5 cervical vertebrae, initial encounter +S13151D Dislocation of C4/C5 cervical vertebrae, subsequent encounter +S13151S Dislocation of C4/C5 cervical vertebrae, sequela +S13160A Subluxation of C5/C6 cervical vertebrae, initial encounter +S13160D Subluxation of C5/C6 cervical vertebrae, subsequent encounter +S13160S Subluxation of C5/C6 cervical vertebrae, sequela +S13161A Dislocation of C5/C6 cervical vertebrae, initial encounter +S13161D Dislocation of C5/C6 cervical vertebrae, subsequent encounter +S13161S Dislocation of C5/C6 cervical vertebrae, sequela +S13170A Subluxation of C6/C7 cervical vertebrae, initial encounter +S13170D Subluxation of C6/C7 cervical vertebrae, subsequent encounter +S13170S Subluxation of C6/C7 cervical vertebrae, sequela +S13171A Dislocation of C6/C7 cervical vertebrae, initial encounter +S13171D Dislocation of C6/C7 cervical vertebrae, subsequent encounter +S13171S Dislocation of C6/C7 cervical vertebrae, sequela +S13180A Subluxation of C7/T1 cervical vertebrae, initial encounter +S13180D Subluxation of C7/T1 cervical vertebrae, subsequent encounter +S13180S Subluxation of C7/T1 cervical vertebrae, sequela +S13181A Dislocation of C7/T1 cervical vertebrae, initial encounter +S13181D Dislocation of C7/T1 cervical vertebrae, subsequent encounter +S13181S Dislocation of C7/T1 cervical vertebrae, sequela +S1320XA Dislocation of unspecified parts of neck, initial encounter +S1320XD Dislocation of unspecified parts of neck, subsequent encounter +S1320XS Dislocation of unspecified parts of neck, sequela +S1329XA Dislocation of other parts of neck, initial encounter +S1329XD Dislocation of other parts of neck, subsequent encounter +S1329XS Dislocation of other parts of neck, sequela +S134XXA Sprain of ligaments of cervical spine, initial encounter +S134XXD Sprain of ligaments of cervical spine, subsequent encounter +S134XXS Sprain of ligaments of cervical spine, sequela +S135XXA Sprain of thyroid region, initial encounter +S135XXD Sprain of thyroid region, subsequent encounter +S135XXS Sprain of thyroid region, sequela +S138XXA Sprain of joints and ligaments of other parts of neck, initial encounter +S138XXD Sprain of joints and ligaments of other parts of neck, subsequent encounter +S138XXS Sprain of joints and ligaments of other parts of neck, sequela +S139XXA Sprain of joints and ligaments of unspecified parts of neck, initial encounter +S139XXD Sprain of joints and ligaments of unspecified parts of neck, subsequent encounter +S139XXS Sprain of joints and ligaments of unspecified parts of neck, sequela +S140XXA Concussion and edema of cervical spinal cord, initial encounter +S140XXD Concussion and edema of cervical spinal cord, subsequent encounter +S140XXS Concussion and edema of cervical spinal cord, sequela +S14101A Unspecified injury at C1 level of cervical spinal cord, initial encounter +S14101D Unspecified injury at C1 level of cervical spinal cord, subsequent encounter +S14101S Unspecified injury at C1 level of cervical spinal cord, sequela +S14102A Unspecified injury at C2 level of cervical spinal cord, initial encounter +S14102D Unspecified injury at C2 level of cervical spinal cord, subsequent encounter +S14102S Unspecified injury at C2 level of cervical spinal cord, sequela +S14103A Unspecified injury at C3 level of cervical spinal cord, initial encounter +S14103D Unspecified injury at C3 level of cervical spinal cord, subsequent encounter +S14103S Unspecified injury at C3 level of cervical spinal cord, sequela +S14104A Unspecified injury at C4 level of cervical spinal cord, initial encounter +S14104D Unspecified injury at C4 level of cervical spinal cord, subsequent encounter +S14104S Unspecified injury at C4 level of cervical spinal cord, sequela +S14105A Unspecified injury at C5 level of cervical spinal cord, initial encounter +S14105D Unspecified injury at C5 level of cervical spinal cord, subsequent encounter +S14105S Unspecified injury at C5 level of cervical spinal cord, sequela +S14106A Unspecified injury at C6 level of cervical spinal cord, initial encounter +S14106D Unspecified injury at C6 level of cervical spinal cord, subsequent encounter +S14106S Unspecified injury at C6 level of cervical spinal cord, sequela +S14107A Unspecified injury at C7 level of cervical spinal cord, initial encounter +S14107D Unspecified injury at C7 level of cervical spinal cord, subsequent encounter +S14107S Unspecified injury at C7 level of cervical spinal cord, sequela +S14108A Unspecified injury at C8 level of cervical spinal cord, initial encounter +S14108D Unspecified injury at C8 level of cervical spinal cord, subsequent encounter +S14108S Unspecified injury at C8 level of cervical spinal cord, sequela +S14109A Unspecified injury at unspecified level of cervical spinal cord, initial encounter +S14109D Unspecified injury at unspecified level of cervical spinal cord, subsequent encounter +S14109S Unspecified injury at unspecified level of cervical spinal cord, sequela +S14111A Complete lesion at C1 level of cervical spinal cord, initial encounter +S14111D Complete lesion at C1 level of cervical spinal cord, subsequent encounter +S14111S Complete lesion at C1 level of cervical spinal cord, sequela +S14112A Complete lesion at C2 level of cervical spinal cord, initial encounter +S14112D Complete lesion at C2 level of cervical spinal cord, subsequent encounter +S14112S Complete lesion at C2 level of cervical spinal cord, sequela +S14113A Complete lesion at C3 level of cervical spinal cord, initial encounter +S14113D Complete lesion at C3 level of cervical spinal cord, subsequent encounter +S14113S Complete lesion at C3 level of cervical spinal cord, sequela +S14114A Complete lesion at C4 level of cervical spinal cord, initial encounter +S14114D Complete lesion at C4 level of cervical spinal cord, subsequent encounter +S14114S Complete lesion at C4 level of cervical spinal cord, sequela +S14115A Complete lesion at C5 level of cervical spinal cord, initial encounter +S14115D Complete lesion at C5 level of cervical spinal cord, subsequent encounter +S14115S Complete lesion at C5 level of cervical spinal cord, sequela +S14116A Complete lesion at C6 level of cervical spinal cord, initial encounter +S14116D Complete lesion at C6 level of cervical spinal cord, subsequent encounter +S14116S Complete lesion at C6 level of cervical spinal cord, sequela +S14117A Complete lesion at C7 level of cervical spinal cord, initial encounter +S14117D Complete lesion at C7 level of cervical spinal cord, subsequent encounter +S14117S Complete lesion at C7 level of cervical spinal cord, sequela +S14118A Complete lesion at C8 level of cervical spinal cord, initial encounter +S14118D Complete lesion at C8 level of cervical spinal cord, subsequent encounter +S14118S Complete lesion at C8 level of cervical spinal cord, sequela +S14119A Complete lesion at unspecified level of cervical spinal cord, initial encounter +S14119D Complete lesion at unspecified level of cervical spinal cord, subsequent encounter +S14119S Complete lesion at unspecified level of cervical spinal cord, sequela +S14121A Central cord syndrome at C1 level of cervical spinal cord, initial encounter +S14121D Central cord syndrome at C1 level of cervical spinal cord, subsequent encounter +S14121S Central cord syndrome at C1 level of cervical spinal cord, sequela +S14122A Central cord syndrome at C2 level of cervical spinal cord, initial encounter +S14122D Central cord syndrome at C2 level of cervical spinal cord, subsequent encounter +S14122S Central cord syndrome at C2 level of cervical spinal cord, sequela +S14123A Central cord syndrome at C3 level of cervical spinal cord, initial encounter +S14123D Central cord syndrome at C3 level of cervical spinal cord, subsequent encounter +S14123S Central cord syndrome at C3 level of cervical spinal cord, sequela +S14124A Central cord syndrome at C4 level of cervical spinal cord, initial encounter +S14124D Central cord syndrome at C4 level of cervical spinal cord, subsequent encounter +S14124S Central cord syndrome at C4 level of cervical spinal cord, sequela +S14125A Central cord syndrome at C5 level of cervical spinal cord, initial encounter +S14125D Central cord syndrome at C5 level of cervical spinal cord, subsequent encounter +S14125S Central cord syndrome at C5 level of cervical spinal cord, sequela +S14126A Central cord syndrome at C6 level of cervical spinal cord, initial encounter +S14126D Central cord syndrome at C6 level of cervical spinal cord, subsequent encounter +S14126S Central cord syndrome at C6 level of cervical spinal cord, sequela +S14127A Central cord syndrome at C7 level of cervical spinal cord, initial encounter +S14127D Central cord syndrome at C7 level of cervical spinal cord, subsequent encounter +S14127S Central cord syndrome at C7 level of cervical spinal cord, sequela +S14128A Central cord syndrome at C8 level of cervical spinal cord, initial encounter +S14128D Central cord syndrome at C8 level of cervical spinal cord, subsequent encounter +S14128S Central cord syndrome at C8 level of cervical spinal cord, sequela +S14129A Central cord syndrome at unspecified level of cervical spinal cord, initial encounter +S14129D Central cord syndrome at unspecified level of cervical spinal cord, subsequent encounter +S14129S Central cord syndrome at unspecified level of cervical spinal cord, sequela +S14131A Anterior cord syndrome at C1 level of cervical spinal cord, initial encounter +S14131D Anterior cord syndrome at C1 level of cervical spinal cord, subsequent encounter +S14131S Anterior cord syndrome at C1 level of cervical spinal cord, sequela +S14132A Anterior cord syndrome at C2 level of cervical spinal cord, initial encounter +S14132D Anterior cord syndrome at C2 level of cervical spinal cord, subsequent encounter +S14132S Anterior cord syndrome at C2 level of cervical spinal cord, sequela +S14133A Anterior cord syndrome at C3 level of cervical spinal cord, initial encounter +S14133D Anterior cord syndrome at C3 level of cervical spinal cord, subsequent encounter +S14133S Anterior cord syndrome at C3 level of cervical spinal cord, sequela +S14134A Anterior cord syndrome at C4 level of cervical spinal cord, initial encounter +S14134D Anterior cord syndrome at C4 level of cervical spinal cord, subsequent encounter +S14134S Anterior cord syndrome at C4 level of cervical spinal cord, sequela +S14135A Anterior cord syndrome at C5 level of cervical spinal cord, initial encounter +S14135D Anterior cord syndrome at C5 level of cervical spinal cord, subsequent encounter +S14135S Anterior cord syndrome at C5 level of cervical spinal cord, sequela +S14136A Anterior cord syndrome at C6 level of cervical spinal cord, initial encounter +S14136D Anterior cord syndrome at C6 level of cervical spinal cord, subsequent encounter +S14136S Anterior cord syndrome at C6 level of cervical spinal cord, sequela +S14137A Anterior cord syndrome at C7 level of cervical spinal cord, initial encounter +S14137D Anterior cord syndrome at C7 level of cervical spinal cord, subsequent encounter +S14137S Anterior cord syndrome at C7 level of cervical spinal cord, sequela +S14138A Anterior cord syndrome at C8 level of cervical spinal cord, initial encounter +S14138D Anterior cord syndrome at C8 level of cervical spinal cord, subsequent encounter +S14138S Anterior cord syndrome at C8 level of cervical spinal cord, sequela +S14139A Anterior cord syndrome at unspecified level of cervical spinal cord, initial encounter +S14139D Anterior cord syndrome at unspecified level of cervical spinal cord, subsequent encounter +S14139S Anterior cord syndrome at unspecified level of cervical spinal cord, sequela +S14141A Brown-Sequard syndrome at C1 level of cervical spinal cord, initial encounter +S14141D Brown-Sequard syndrome at C1 level of cervical spinal cord, subsequent encounter +S14141S Brown-Sequard syndrome at C1 level of cervical spinal cord, sequela +S14142A Brown-Sequard syndrome at C2 level of cervical spinal cord, initial encounter +S14142D Brown-Sequard syndrome at C2 level of cervical spinal cord, subsequent encounter +S14142S Brown-Sequard syndrome at C2 level of cervical spinal cord, sequela +S14143A Brown-Sequard syndrome at C3 level of cervical spinal cord, initial encounter +S14143D Brown-Sequard syndrome at C3 level of cervical spinal cord, subsequent encounter +S14143S Brown-Sequard syndrome at C3 level of cervical spinal cord, sequela +S14144A Brown-Sequard syndrome at C4 level of cervical spinal cord, initial encounter +S14144D Brown-Sequard syndrome at C4 level of cervical spinal cord, subsequent encounter +S14144S Brown-Sequard syndrome at C4 level of cervical spinal cord, sequela +S14145A Brown-Sequard syndrome at C5 level of cervical spinal cord, initial encounter +S14145D Brown-Sequard syndrome at C5 level of cervical spinal cord, subsequent encounter +S14145S Brown-Sequard syndrome at C5 level of cervical spinal cord, sequela +S14146A Brown-Sequard syndrome at C6 level of cervical spinal cord, initial encounter +S14146D Brown-Sequard syndrome at C6 level of cervical spinal cord, subsequent encounter +S14146S Brown-Sequard syndrome at C6 level of cervical spinal cord, sequela +S14147A Brown-Sequard syndrome at C7 level of cervical spinal cord, initial encounter +S14147D Brown-Sequard syndrome at C7 level of cervical spinal cord, subsequent encounter +S14147S Brown-Sequard syndrome at C7 level of cervical spinal cord, sequela +S14148A Brown-Sequard syndrome at C8 level of cervical spinal cord, initial encounter +S14148D Brown-Sequard syndrome at C8 level of cervical spinal cord, subsequent encounter +S14148S Brown-Sequard syndrome at C8 level of cervical spinal cord, sequela +S14149A Brown-Sequard syndrome at unspecified level of cervical spinal cord, initial encounter +S14149D Brown-Sequard syndrome at unspecified level of cervical spinal cord, subsequent encounter +S14149S Brown-Sequard syndrome at unspecified level of cervical spinal cord, sequela +S14151A Other incomplete lesion at C1 level of cervical spinal cord, initial encounter +S14151D Other incomplete lesion at C1 level of cervical spinal cord, subsequent encounter +S14151S Other incomplete lesion at C1 level of cervical spinal cord, sequela +S14152A Other incomplete lesion at C2 level of cervical spinal cord, initial encounter +S14152D Other incomplete lesion at C2 level of cervical spinal cord, subsequent encounter +S14152S Other incomplete lesion at C2 level of cervical spinal cord, sequela +S14153A Other incomplete lesion at C3 level of cervical spinal cord, initial encounter +S14153D Other incomplete lesion at C3 level of cervical spinal cord, subsequent encounter +S14153S Other incomplete lesion at C3 level of cervical spinal cord, sequela +S14154A Other incomplete lesion at C4 level of cervical spinal cord, initial encounter +S14154D Other incomplete lesion at C4 level of cervical spinal cord, subsequent encounter +S14154S Other incomplete lesion at C4 level of cervical spinal cord, sequela +S14155A Other incomplete lesion at C5 level of cervical spinal cord, initial encounter +S14155D Other incomplete lesion at C5 level of cervical spinal cord, subsequent encounter +S14155S Other incomplete lesion at C5 level of cervical spinal cord, sequela +S14156A Other incomplete lesion at C6 level of cervical spinal cord, initial encounter +S14156D Other incomplete lesion at C6 level of cervical spinal cord, subsequent encounter +S14156S Other incomplete lesion at C6 level of cervical spinal cord, sequela +S14157A Other incomplete lesion at C7 level of cervical spinal cord, initial encounter +S14157D Other incomplete lesion at C7 level of cervical spinal cord, subsequent encounter +S14157S Other incomplete lesion at C7 level of cervical spinal cord, sequela +S14158A Other incomplete lesion at C8 level of cervical spinal cord, initial encounter +S14158D Other incomplete lesion at C8 level of cervical spinal cord, subsequent encounter +S14158S Other incomplete lesion at C8 level of cervical spinal cord, sequela +S14159A Other incomplete lesion at unspecified level of cervical spinal cord, initial encounter +S14159D Other incomplete lesion at unspecified level of cervical spinal cord, subsequent encounter +S14159S Other incomplete lesion at unspecified level of cervical spinal cord, sequela +S142XXA Injury of nerve root of cervical spine, initial encounter +S142XXD Injury of nerve root of cervical spine, subsequent encounter +S142XXS Injury of nerve root of cervical spine, sequela +S143XXA Injury of brachial plexus, initial encounter +S143XXD Injury of brachial plexus, subsequent encounter +S143XXS Injury of brachial plexus, sequela +S144XXA Injury of peripheral nerves of neck, initial encounter +S144XXD Injury of peripheral nerves of neck, subsequent encounter +S144XXS Injury of peripheral nerves of neck, sequela +S145XXA Injury of cervical sympathetic nerves, initial encounter +S145XXD Injury of cervical sympathetic nerves, subsequent encounter +S145XXS Injury of cervical sympathetic nerves, sequela +S148XXA Injury of other specified nerves of neck, initial encounter +S148XXD Injury of other specified nerves of neck, subsequent encounter +S148XXS Injury of other specified nerves of neck, sequela +S149XXA Injury of unspecified nerves of neck, initial encounter +S149XXD Injury of unspecified nerves of neck, subsequent encounter +S149XXS Injury of unspecified nerves of neck, sequela +S15001A Unspecified injury of right carotid artery, initial encounter +S15001D Unspecified injury of right carotid artery, subsequent encounter +S15001S Unspecified injury of right carotid artery, sequela +S15002A Unspecified injury of left carotid artery, initial encounter +S15002D Unspecified injury of left carotid artery, subsequent encounter +S15002S Unspecified injury of left carotid artery, sequela +S15009A Unspecified injury of unspecified carotid artery, initial encounter +S15009D Unspecified injury of unspecified carotid artery, subsequent encounter +S15009S Unspecified injury of unspecified carotid artery, sequela +S15011A Minor laceration of right carotid artery, initial encounter +S15011D Minor laceration of right carotid artery, subsequent encounter +S15011S Minor laceration of right carotid artery, sequela +S15012A Minor laceration of left carotid artery, initial encounter +S15012D Minor laceration of left carotid artery, subsequent encounter +S15012S Minor laceration of left carotid artery, sequela +S15019A Minor laceration of unspecified carotid artery, initial encounter +S15019D Minor laceration of unspecified carotid artery, subsequent encounter +S15019S Minor laceration of unspecified carotid artery, sequela +S15021A Major laceration of right carotid artery, initial encounter +S15021D Major laceration of right carotid artery, subsequent encounter +S15021S Major laceration of right carotid artery, sequela +S15022A Major laceration of left carotid artery, initial encounter +S15022D Major laceration of left carotid artery, subsequent encounter +S15022S Major laceration of left carotid artery, sequela +S15029A Major laceration of unspecified carotid artery, initial encounter +S15029D Major laceration of unspecified carotid artery, subsequent encounter +S15029S Major laceration of unspecified carotid artery, sequela +S15091A Other specified injury of right carotid artery, initial encounter +S15091D Other specified injury of right carotid artery, subsequent encounter +S15091S Other specified injury of right carotid artery, sequela +S15092A Other specified injury of left carotid artery, initial encounter +S15092D Other specified injury of left carotid artery, subsequent encounter +S15092S Other specified injury of left carotid artery, sequela +S15099A Other specified injury of unspecified carotid artery, initial encounter +S15099D Other specified injury of unspecified carotid artery, subsequent encounter +S15099S Other specified injury of unspecified carotid artery, sequela +S15101A Unspecified injury of right vertebral artery, initial encounter +S15101D Unspecified injury of right vertebral artery, subsequent encounter +S15101S Unspecified injury of right vertebral artery, sequela +S15102A Unspecified injury of left vertebral artery, initial encounter +S15102D Unspecified injury of left vertebral artery, subsequent encounter +S15102S Unspecified injury of left vertebral artery, sequela +S15109A Unspecified injury of unspecified vertebral artery, initial encounter +S15109D Unspecified injury of unspecified vertebral artery, subsequent encounter +S15109S Unspecified injury of unspecified vertebral artery, sequela +S15111A Minor laceration of right vertebral artery, initial encounter +S15111D Minor laceration of right vertebral artery, subsequent encounter +S15111S Minor laceration of right vertebral artery, sequela +S15112A Minor laceration of left vertebral artery, initial encounter +S15112D Minor laceration of left vertebral artery, subsequent encounter +S15112S Minor laceration of left vertebral artery, sequela +S15119A Minor laceration of unspecified vertebral artery, initial encounter +S15119D Minor laceration of unspecified vertebral artery, subsequent encounter +S15119S Minor laceration of unspecified vertebral artery, sequela +S15121A Major laceration of right vertebral artery, initial encounter +S15121D Major laceration of right vertebral artery, subsequent encounter +S15121S Major laceration of right vertebral artery, sequela +S15122A Major laceration of left vertebral artery, initial encounter +S15122D Major laceration of left vertebral artery, subsequent encounter +S15122S Major laceration of left vertebral artery, sequela +S15129A Major laceration of unspecified vertebral artery, initial encounter +S15129D Major laceration of unspecified vertebral artery, subsequent encounter +S15129S Major laceration of unspecified vertebral artery, sequela +S15191A Other specified injury of right vertebral artery, initial encounter +S15191D Other specified injury of right vertebral artery, subsequent encounter +S15191S Other specified injury of right vertebral artery, sequela +S15192A Other specified injury of left vertebral artery, initial encounter +S15192D Other specified injury of left vertebral artery, subsequent encounter +S15192S Other specified injury of left vertebral artery, sequela +S15199A Other specified injury of unspecified vertebral artery, initial encounter +S15199D Other specified injury of unspecified vertebral artery, subsequent encounter +S15199S Other specified injury of unspecified vertebral artery, sequela +S15201A Unspecified injury of right external jugular vein, initial encounter +S15201D Unspecified injury of right external jugular vein, subsequent encounter +S15201S Unspecified injury of right external jugular vein, sequela +S15202A Unspecified injury of left external jugular vein, initial encounter +S15202D Unspecified injury of left external jugular vein, subsequent encounter +S15202S Unspecified injury of left external jugular vein, sequela +S15209A Unspecified injury of unspecified external jugular vein, initial encounter +S15209D Unspecified injury of unspecified external jugular vein, subsequent encounter +S15209S Unspecified injury of unspecified external jugular vein, sequela +S15211A Minor laceration of right external jugular vein, initial encounter +S15211D Minor laceration of right external jugular vein, subsequent encounter +S15211S Minor laceration of right external jugular vein, sequela +S15212A Minor laceration of left external jugular vein, initial encounter +S15212D Minor laceration of left external jugular vein, subsequent encounter +S15212S Minor laceration of left external jugular vein, sequela +S15219A Minor laceration of unspecified external jugular vein, initial encounter +S15219D Minor laceration of unspecified external jugular vein, subsequent encounter +S15219S Minor laceration of unspecified external jugular vein, sequela +S15221A Major laceration of right external jugular vein, initial encounter +S15221D Major laceration of right external jugular vein, subsequent encounter +S15221S Major laceration of right external jugular vein, sequela +S15222A Major laceration of left external jugular vein, initial encounter +S15222D Major laceration of left external jugular vein, subsequent encounter +S15222S Major laceration of left external jugular vein, sequela +S15229A Major laceration of unspecified external jugular vein, initial encounter +S15229D Major laceration of unspecified external jugular vein, subsequent encounter +S15229S Major laceration of unspecified external jugular vein, sequela +S15291A Other specified injury of right external jugular vein, initial encounter +S15291D Other specified injury of right external jugular vein, subsequent encounter +S15291S Other specified injury of right external jugular vein, sequela +S15292A Other specified injury of left external jugular vein, initial encounter +S15292D Other specified injury of left external jugular vein, subsequent encounter +S15292S Other specified injury of left external jugular vein, sequela +S15299A Other specified injury of unspecified external jugular vein, initial encounter +S15299D Other specified injury of unspecified external jugular vein, subsequent encounter +S15299S Other specified injury of unspecified external jugular vein, sequela +S15301A Unspecified injury of right internal jugular vein, initial encounter +S15301D Unspecified injury of right internal jugular vein, subsequent encounter +S15301S Unspecified injury of right internal jugular vein, sequela +S15302A Unspecified injury of left internal jugular vein, initial encounter +S15302D Unspecified injury of left internal jugular vein, subsequent encounter +S15302S Unspecified injury of left internal jugular vein, sequela +S15309A Unspecified injury of unspecified internal jugular vein, initial encounter +S15309D Unspecified injury of unspecified internal jugular vein, subsequent encounter +S15309S Unspecified injury of unspecified internal jugular vein, sequela +S15311A Minor laceration of right internal jugular vein, initial encounter +S15311D Minor laceration of right internal jugular vein, subsequent encounter +S15311S Minor laceration of right internal jugular vein, sequela +S15312A Minor laceration of left internal jugular vein, initial encounter +S15312D Minor laceration of left internal jugular vein, subsequent encounter +S15312S Minor laceration of left internal jugular vein, sequela +S15319A Minor laceration of unspecified internal jugular vein, initial encounter +S15319D Minor laceration of unspecified internal jugular vein, subsequent encounter +S15319S Minor laceration of unspecified internal jugular vein, sequela +S15321A Major laceration of right internal jugular vein, initial encounter +S15321D Major laceration of right internal jugular vein, subsequent encounter +S15321S Major laceration of right internal jugular vein, sequela +S15322A Major laceration of left internal jugular vein, initial encounter +S15322D Major laceration of left internal jugular vein, subsequent encounter +S15322S Major laceration of left internal jugular vein, sequela +S15329A Major laceration of unspecified internal jugular vein, initial encounter +S15329D Major laceration of unspecified internal jugular vein, subsequent encounter +S15329S Major laceration of unspecified internal jugular vein, sequela +S15391A Other specified injury of right internal jugular vein, initial encounter +S15391D Other specified injury of right internal jugular vein, subsequent encounter +S15391S Other specified injury of right internal jugular vein, sequela +S15392A Other specified injury of left internal jugular vein, initial encounter +S15392D Other specified injury of left internal jugular vein, subsequent encounter +S15392S Other specified injury of left internal jugular vein, sequela +S15399A Other specified injury of unspecified internal jugular vein, initial encounter +S15399D Other specified injury of unspecified internal jugular vein, subsequent encounter +S15399S Other specified injury of unspecified internal jugular vein, sequela +S158XXA Injury of other specified blood vessels at neck level, initial encounter +S158XXD Injury of other specified blood vessels at neck level, subsequent encounter +S158XXS Injury of other specified blood vessels at neck level, sequela +S159XXA Injury of unspecified blood vessel at neck level, initial encounter +S159XXD Injury of unspecified blood vessel at neck level, subsequent encounter +S159XXS Injury of unspecified blood vessel at neck level, sequela +S161XXA Strain of muscle, fascia and tendon at neck level, initial encounter +S161XXD Strain of muscle, fascia and tendon at neck level, subsequent encounter +S161XXS Strain of muscle, fascia and tendon at neck level, sequela +S162XXA Laceration of muscle, fascia and tendon at neck level, initial encounter +S162XXD Laceration of muscle, fascia and tendon at neck level, subsequent encounter +S162XXS Laceration of muscle, fascia and tendon at neck level, sequela +S168XXA Other specified injury of muscle, fascia and tendon at neck level, initial encounter +S168XXD Other specified injury of muscle, fascia and tendon at neck level, subsequent encounter +S168XXS Other specified injury of muscle, fascia and tendon at neck level, sequela +S169XXA Unspecified injury of muscle, fascia and tendon at neck level, initial encounter +S169XXD Unspecified injury of muscle, fascia and tendon at neck level, subsequent encounter +S169XXS Unspecified injury of muscle, fascia and tendon at neck level, sequela +S170XXA Crushing injury of larynx and trachea, initial encounter +S170XXD Crushing injury of larynx and trachea, subsequent encounter +S170XXS Crushing injury of larynx and trachea, sequela +S178XXA Crushing injury of other specified parts of neck, initial encounter +S178XXD Crushing injury of other specified parts of neck, subsequent encounter +S178XXS Crushing injury of other specified parts of neck, sequela +S179XXA Crushing injury of neck, part unspecified, initial encounter +S179XXD Crushing injury of neck, part unspecified, subsequent encounter +S179XXS Crushing injury of neck, part unspecified, sequela +S1980XA Other specified injuries of unspecified part of neck, initial encounter +S1980XD Other specified injuries of unspecified part of neck, subsequent encounter +S1980XS Other specified injuries of unspecified part of neck, sequela +S1981XA Other specified injuries of larynx, initial encounter +S1981XD Other specified injuries of larynx, subsequent encounter +S1981XS Other specified injuries of larynx, sequela +S1982XA Other specified injuries of cervical trachea, initial encounter +S1982XD Other specified injuries of cervical trachea, subsequent encounter +S1982XS Other specified injuries of cervical trachea, sequela +S1983XA Other specified injuries of vocal cord, initial encounter +S1983XD Other specified injuries of vocal cord, subsequent encounter +S1983XS Other specified injuries of vocal cord, sequela +S1984XA Other specified injuries of thyroid gland, initial encounter +S1984XD Other specified injuries of thyroid gland, subsequent encounter +S1984XS Other specified injuries of thyroid gland, sequela +S1985XA Other specified injuries of pharynx and cervical esophagus, initial encounter +S1985XD Other specified injuries of pharynx and cervical esophagus, subsequent encounter +S1985XS Other specified injuries of pharynx and cervical esophagus, sequela +S1989XA Other specified injuries of other specified part of neck, initial encounter +S1989XD Other specified injuries of other specified part of neck, subsequent encounter +S1989XS Other specified injuries of other specified part of neck, sequela +S199XXA Unspecified injury of neck, initial encounter +S199XXD Unspecified injury of neck, subsequent encounter +S199XXS Unspecified injury of neck, sequela +S2000XA Contusion of breast, unspecified breast, initial encounter +S2000XD Contusion of breast, unspecified breast, subsequent encounter +S2000XS Contusion of breast, unspecified breast, sequela +S2001XA Contusion of right breast, initial encounter +S2001XD Contusion of right breast, subsequent encounter +S2001XS Contusion of right breast, sequela +S2002XA Contusion of left breast, initial encounter +S2002XD Contusion of left breast, subsequent encounter +S2002XS Contusion of left breast, sequela +S20101A Unspecified superficial injuries of breast, right breast, initial encounter +S20101D Unspecified superficial injuries of breast, right breast, subsequent encounter +S20101S Unspecified superficial injuries of breast, right breast, sequela +S20102A Unspecified superficial injuries of breast, left breast, initial encounter +S20102D Unspecified superficial injuries of breast, left breast, subsequent encounter +S20102S Unspecified superficial injuries of breast, left breast, sequela +S20109A Unspecified superficial injuries of breast, unspecified breast, initial encounter +S20109D Unspecified superficial injuries of breast, unspecified breast, subsequent encounter +S20109S Unspecified superficial injuries of breast, unspecified breast, sequela +S20111A Abrasion of breast, right breast, initial encounter +S20111D Abrasion of breast, right breast, subsequent encounter +S20111S Abrasion of breast, right breast, sequela +S20112A Abrasion of breast, left breast, initial encounter +S20112D Abrasion of breast, left breast, subsequent encounter +S20112S Abrasion of breast, left breast, sequela +S20119A Abrasion of breast, unspecified breast, initial encounter +S20119D Abrasion of breast, unspecified breast, subsequent encounter +S20119S Abrasion of breast, unspecified breast, sequela +S20121A Blister (nonthermal) of breast, right breast, initial encounter +S20121D Blister (nonthermal) of breast, right breast, subsequent encounter +S20121S Blister (nonthermal) of breast, right breast, sequela +S20122A Blister (nonthermal) of breast, left breast, initial encounter +S20122D Blister (nonthermal) of breast, left breast, subsequent encounter +S20122S Blister (nonthermal) of breast, left breast, sequela +S20129A Blister (nonthermal) of breast, unspecified breast, initial encounter +S20129D Blister (nonthermal) of breast, unspecified breast, subsequent encounter +S20129S Blister (nonthermal) of breast, unspecified breast, sequela +S20141A External constriction of part of breast, right breast, initial encounter +S20141D External constriction of part of breast, right breast, subsequent encounter +S20141S External constriction of part of breast, right breast, sequela +S20142A External constriction of part of breast, left breast, initial encounter +S20142D External constriction of part of breast, left breast, subsequent encounter +S20142S External constriction of part of breast, left breast, sequela +S20149A External constriction of part of breast, unspecified breast, initial encounter +S20149D External constriction of part of breast, unspecified breast, subsequent encounter +S20149S External constriction of part of breast, unspecified breast, sequela +S20151A Superficial foreign body of breast, right breast, initial encounter +S20151D Superficial foreign body of breast, right breast, subsequent encounter +S20151S Superficial foreign body of breast, right breast, sequela +S20152A Superficial foreign body of breast, left breast, initial encounter +S20152D Superficial foreign body of breast, left breast, subsequent encounter +S20152S Superficial foreign body of breast, left breast, sequela +S20159A Superficial foreign body of breast, unspecified breast, initial encounter +S20159D Superficial foreign body of breast, unspecified breast, subsequent encounter +S20159S Superficial foreign body of breast, unspecified breast, sequela +S20161A Insect bite (nonvenomous) of breast, right breast, initial encounter +S20161D Insect bite (nonvenomous) of breast, right breast, subsequent encounter +S20161S Insect bite (nonvenomous) of breast, right breast, sequela +S20162A Insect bite (nonvenomous) of breast, left breast, initial encounter +S20162D Insect bite (nonvenomous) of breast, left breast, subsequent encounter +S20162S Insect bite (nonvenomous) of breast, left breast, sequela +S20169A Insect bite (nonvenomous) of breast, unspecified breast, initial encounter +S20169D Insect bite (nonvenomous) of breast, unspecified breast, subsequent encounter +S20169S Insect bite (nonvenomous) of breast, unspecified breast, sequela +S20171A Other superficial bite of breast, right breast, initial encounter +S20171D Other superficial bite of breast, right breast, subsequent encounter +S20171S Other superficial bite of breast, right breast, sequela +S20172A Other superficial bite of breast, left breast, initial encounter +S20172D Other superficial bite of breast, left breast, subsequent encounter +S20172S Other superficial bite of breast, left breast, sequela +S20179A Other superficial bite of breast, unspecified breast, initial encounter +S20179D Other superficial bite of breast, unspecified breast, subsequent encounter +S20179S Other superficial bite of breast, unspecified breast, sequela +S2020XA Contusion of thorax, unspecified, initial encounter +S2020XD Contusion of thorax, unspecified, subsequent encounter +S2020XS Contusion of thorax, unspecified, sequela +S20211A Contusion of right front wall of thorax, initial encounter +S20211D Contusion of right front wall of thorax, subsequent encounter +S20211S Contusion of right front wall of thorax, sequela +S20212A Contusion of left front wall of thorax, initial encounter +S20212D Contusion of left front wall of thorax, subsequent encounter +S20212S Contusion of left front wall of thorax, sequela +S20219A Contusion of unspecified front wall of thorax, initial encounter +S20219D Contusion of unspecified front wall of thorax, subsequent encounter +S20219S Contusion of unspecified front wall of thorax, sequela +S20221A Contusion of right back wall of thorax, initial encounter +S20221D Contusion of right back wall of thorax, subsequent encounter +S20221S Contusion of right back wall of thorax, sequela +S20222A Contusion of left back wall of thorax, initial encounter +S20222D Contusion of left back wall of thorax, subsequent encounter +S20222S Contusion of left back wall of thorax, sequela +S20229A Contusion of unspecified back wall of thorax, initial encounter +S20229D Contusion of unspecified back wall of thorax, subsequent encounter +S20229S Contusion of unspecified back wall of thorax, sequela +S20301A Unspecified superficial injuries of right front wall of thorax, initial encounter +S20301D Unspecified superficial injuries of right front wall of thorax, subsequent encounter +S20301S Unspecified superficial injuries of right front wall of thorax, sequela +S20302A Unspecified superficial injuries of left front wall of thorax, initial encounter +S20302D Unspecified superficial injuries of left front wall of thorax, subsequent encounter +S20302S Unspecified superficial injuries of left front wall of thorax, sequela +S20309A Unspecified superficial injuries of unspecified front wall of thorax, initial encounter +S20309D Unspecified superficial injuries of unspecified front wall of thorax, subsequent encounter +S20309S Unspecified superficial injuries of unspecified front wall of thorax, sequela +S20311A Abrasion of right front wall of thorax, initial encounter +S20311D Abrasion of right front wall of thorax, subsequent encounter +S20311S Abrasion of right front wall of thorax, sequela +S20312A Abrasion of left front wall of thorax, initial encounter +S20312D Abrasion of left front wall of thorax, subsequent encounter +S20312S Abrasion of left front wall of thorax, sequela +S20319A Abrasion of unspecified front wall of thorax, initial encounter +S20319D Abrasion of unspecified front wall of thorax, subsequent encounter +S20319S Abrasion of unspecified front wall of thorax, sequela +S20321A Blister (nonthermal) of right front wall of thorax, initial encounter +S20321D Blister (nonthermal) of right front wall of thorax, subsequent encounter +S20321S Blister (nonthermal) of right front wall of thorax, sequela +S20322A Blister (nonthermal) of left front wall of thorax, initial encounter +S20322D Blister (nonthermal) of left front wall of thorax, subsequent encounter +S20322S Blister (nonthermal) of left front wall of thorax, sequela +S20329A Blister (nonthermal) of unspecified front wall of thorax, initial encounter +S20329D Blister (nonthermal) of unspecified front wall of thorax, subsequent encounter +S20329S Blister (nonthermal) of unspecified front wall of thorax, sequela +S20341A External constriction of right front wall of thorax, initial encounter +S20341D External constriction of right front wall of thorax, subsequent encounter +S20341S External constriction of right front wall of thorax, sequela +S20342A External constriction of left front wall of thorax, initial encounter +S20342D External constriction of left front wall of thorax, subsequent encounter +S20342S External constriction of left front wall of thorax, sequela +S20349A External constriction of unspecified front wall of thorax, initial encounter +S20349D External constriction of unspecified front wall of thorax, subsequent encounter +S20349S External constriction of unspecified front wall of thorax, sequela +S20351A Superficial foreign body of right front wall of thorax, initial encounter +S20351D Superficial foreign body of right front wall of thorax, subsequent encounter +S20351S Superficial foreign body of right front wall of thorax, sequela +S20352A Superficial foreign body of left front wall of thorax, initial encounter +S20352D Superficial foreign body of left front wall of thorax, subsequent encounter +S20352S Superficial foreign body of left front wall of thorax, sequela +S20359A Superficial foreign body of unspecified front wall of thorax, initial encounter +S20359D Superficial foreign body of unspecified front wall of thorax, subsequent encounter +S20359S Superficial foreign body of unspecified front wall of thorax, sequela +S20361A Insect bite (nonvenomous) of right front wall of thorax, initial encounter +S20361D Insect bite (nonvenomous) of right front wall of thorax, subsequent encounter +S20361S Insect bite (nonvenomous) of right front wall of thorax, sequela +S20362A Insect bite (nonvenomous) of left front wall of thorax, initial encounter +S20362D Insect bite (nonvenomous) of left front wall of thorax, subsequent encounter +S20362S Insect bite (nonvenomous) of left front wall of thorax, sequela +S20369A Insect bite (nonvenomous) of unspecified front wall of thorax, initial encounter +S20369D Insect bite (nonvenomous) of unspecified front wall of thorax, subsequent encounter +S20369S Insect bite (nonvenomous) of unspecified front wall of thorax, sequela +S20371A Other superficial bite of right front wall of thorax, initial encounter +S20371D Other superficial bite of right front wall of thorax, subsequent encounter +S20371S Other superficial bite of right front wall of thorax, sequela +S20372A Other superficial bite of left front wall of thorax, initial encounter +S20372D Other superficial bite of left front wall of thorax, subsequent encounter +S20372S Other superficial bite of left front wall of thorax, sequela +S20379A Other superficial bite of unspecified front wall of thorax, initial encounter +S20379D Other superficial bite of unspecified front wall of thorax, subsequent encounter +S20379S Other superficial bite of unspecified front wall of thorax, sequela +S20401A Unspecified superficial injuries of right back wall of thorax, initial encounter +S20401D Unspecified superficial injuries of right back wall of thorax, subsequent encounter +S20401S Unspecified superficial injuries of right back wall of thorax, sequela +S20402A Unspecified superficial injuries of left back wall of thorax, initial encounter +S20402D Unspecified superficial injuries of left back wall of thorax, subsequent encounter +S20402S Unspecified superficial injuries of left back wall of thorax, sequela +S20409A Unspecified superficial injuries of unspecified back wall of thorax, initial encounter +S20409D Unspecified superficial injuries of unspecified back wall of thorax, subsequent encounter +S20409S Unspecified superficial injuries of unspecified back wall of thorax, sequela +S20411A Abrasion of right back wall of thorax, initial encounter +S20411D Abrasion of right back wall of thorax, subsequent encounter +S20411S Abrasion of right back wall of thorax, sequela +S20412A Abrasion of left back wall of thorax, initial encounter +S20412D Abrasion of left back wall of thorax, subsequent encounter +S20412S Abrasion of left back wall of thorax, sequela +S20419A Abrasion of unspecified back wall of thorax, initial encounter +S20419D Abrasion of unspecified back wall of thorax, subsequent encounter +S20419S Abrasion of unspecified back wall of thorax, sequela +S20421A Blister (nonthermal) of right back wall of thorax, initial encounter +S20421D Blister (nonthermal) of right back wall of thorax, subsequent encounter +S20421S Blister (nonthermal) of right back wall of thorax, sequela +S20422A Blister (nonthermal) of left back wall of thorax, initial encounter +S20422D Blister (nonthermal) of left back wall of thorax, subsequent encounter +S20422S Blister (nonthermal) of left back wall of thorax, sequela +S20429A Blister (nonthermal) of unspecified back wall of thorax, initial encounter +S20429D Blister (nonthermal) of unspecified back wall of thorax, subsequent encounter +S20429S Blister (nonthermal) of unspecified back wall of thorax, sequela +S20441A External constriction of right back wall of thorax, initial encounter +S20441D External constriction of right back wall of thorax, subsequent encounter +S20441S External constriction of right back wall of thorax, sequela +S20442A External constriction of left back wall of thorax, initial encounter +S20442D External constriction of left back wall of thorax, subsequent encounter +S20442S External constriction of left back wall of thorax, sequela +S20449A External constriction of unspecified back wall of thorax, initial encounter +S20449D External constriction of unspecified back wall of thorax, subsequent encounter +S20449S External constriction of unspecified back wall of thorax, sequela +S20451A Superficial foreign body of right back wall of thorax, initial encounter +S20451D Superficial foreign body of right back wall of thorax, subsequent encounter +S20451S Superficial foreign body of right back wall of thorax, sequela +S20452A Superficial foreign body of left back wall of thorax, initial encounter +S20452D Superficial foreign body of left back wall of thorax, subsequent encounter +S20452S Superficial foreign body of left back wall of thorax, sequela +S20459A Superficial foreign body of unspecified back wall of thorax, initial encounter +S20459D Superficial foreign body of unspecified back wall of thorax, subsequent encounter +S20459S Superficial foreign body of unspecified back wall of thorax, sequela +S20461A Insect bite (nonvenomous) of right back wall of thorax, initial encounter +S20461D Insect bite (nonvenomous) of right back wall of thorax, subsequent encounter +S20461S Insect bite (nonvenomous) of right back wall of thorax, sequela +S20462A Insect bite (nonvenomous) of left back wall of thorax, initial encounter +S20462D Insect bite (nonvenomous) of left back wall of thorax, subsequent encounter +S20462S Insect bite (nonvenomous) of left back wall of thorax, sequela +S20469A Insect bite (nonvenomous) of unspecified back wall of thorax, initial encounter +S20469D Insect bite (nonvenomous) of unspecified back wall of thorax, subsequent encounter +S20469S Insect bite (nonvenomous) of unspecified back wall of thorax, sequela +S20471A Other superficial bite of right back wall of thorax, initial encounter +S20471D Other superficial bite of right back wall of thorax, subsequent encounter +S20471S Other superficial bite of right back wall of thorax, sequela +S20472A Other superficial bite of left back wall of thorax, initial encounter +S20472D Other superficial bite of left back wall of thorax, subsequent encounter +S20472S Other superficial bite of left back wall of thorax, sequela +S20479A Other superficial bite of unspecified back wall of thorax, initial encounter +S20479D Other superficial bite of unspecified back wall of thorax, subsequent encounter +S20479S Other superficial bite of unspecified back wall of thorax, sequela +S2090XA Unspecified superficial injury of unspecified parts of thorax, initial encounter +S2090XD Unspecified superficial injury of unspecified parts of thorax, subsequent encounter +S2090XS Unspecified superficial injury of unspecified parts of thorax, sequela +S2091XA Abrasion of unspecified parts of thorax, initial encounter +S2091XD Abrasion of unspecified parts of thorax, subsequent encounter +S2091XS Abrasion of unspecified parts of thorax, sequela +S2092XA Blister (nonthermal) of unspecified parts of thorax, initial encounter +S2092XD Blister (nonthermal) of unspecified parts of thorax, subsequent encounter +S2092XS Blister (nonthermal) of unspecified parts of thorax, sequela +S2094XA External constriction of unspecified parts of thorax, initial encounter +S2094XD External constriction of unspecified parts of thorax, subsequent encounter +S2094XS External constriction of unspecified parts of thorax, sequela +S2095XA Superficial foreign body of unspecified parts of thorax, initial encounter +S2095XD Superficial foreign body of unspecified parts of thorax, subsequent encounter +S2095XS Superficial foreign body of unspecified parts of thorax, sequela +S2096XA Insect bite (nonvenomous) of unspecified parts of thorax, initial encounter +S2096XD Insect bite (nonvenomous) of unspecified parts of thorax, subsequent encounter +S2096XS Insect bite (nonvenomous) of unspecified parts of thorax, sequela +S2097XA Other superficial bite of unspecified parts of thorax, initial encounter +S2097XD Other superficial bite of unspecified parts of thorax, subsequent encounter +S2097XS Other superficial bite of unspecified parts of thorax, sequela +S21001A Unspecified open wound of right breast, initial encounter +S21001D Unspecified open wound of right breast, subsequent encounter +S21001S Unspecified open wound of right breast, sequela +S21002A Unspecified open wound of left breast, initial encounter +S21002D Unspecified open wound of left breast, subsequent encounter +S21002S Unspecified open wound of left breast, sequela +S21009A Unspecified open wound of unspecified breast, initial encounter +S21009D Unspecified open wound of unspecified breast, subsequent encounter +S21009S Unspecified open wound of unspecified breast, sequela +S21011A Laceration without foreign body of right breast, initial encounter +S21011D Laceration without foreign body of right breast, subsequent encounter +S21011S Laceration without foreign body of right breast, sequela +S21012A Laceration without foreign body of left breast, initial encounter +S21012D Laceration without foreign body of left breast, subsequent encounter +S21012S Laceration without foreign body of left breast, sequela +S21019A Laceration without foreign body of unspecified breast, initial encounter +S21019D Laceration without foreign body of unspecified breast, subsequent encounter +S21019S Laceration without foreign body of unspecified breast, sequela +S21021A Laceration with foreign body of right breast, initial encounter +S21021D Laceration with foreign body of right breast, subsequent encounter +S21021S Laceration with foreign body of right breast, sequela +S21022A Laceration with foreign body of left breast, initial encounter +S21022D Laceration with foreign body of left breast, subsequent encounter +S21022S Laceration with foreign body of left breast, sequela +S21029A Laceration with foreign body of unspecified breast, initial encounter +S21029D Laceration with foreign body of unspecified breast, subsequent encounter +S21029S Laceration with foreign body of unspecified breast, sequela +S21031A Puncture wound without foreign body of right breast, initial encounter +S21031D Puncture wound without foreign body of right breast, subsequent encounter +S21031S Puncture wound without foreign body of right breast, sequela +S21032A Puncture wound without foreign body of left breast, initial encounter +S21032D Puncture wound without foreign body of left breast, subsequent encounter +S21032S Puncture wound without foreign body of left breast, sequela +S21039A Puncture wound without foreign body of unspecified breast, initial encounter +S21039D Puncture wound without foreign body of unspecified breast, subsequent encounter +S21039S Puncture wound without foreign body of unspecified breast, sequela +S21041A Puncture wound with foreign body of right breast, initial encounter +S21041D Puncture wound with foreign body of right breast, subsequent encounter +S21041S Puncture wound with foreign body of right breast, sequela +S21042A Puncture wound with foreign body of left breast, initial encounter +S21042D Puncture wound with foreign body of left breast, subsequent encounter +S21042S Puncture wound with foreign body of left breast, sequela +S21049A Puncture wound with foreign body of unspecified breast, initial encounter +S21049D Puncture wound with foreign body of unspecified breast, subsequent encounter +S21049S Puncture wound with foreign body of unspecified breast, sequela +S21051A Open bite of right breast, initial encounter +S21051D Open bite of right breast, subsequent encounter +S21051S Open bite of right breast, sequela +S21052A Open bite of left breast, initial encounter +S21052D Open bite of left breast, subsequent encounter +S21052S Open bite of left breast, sequela +S21059A Open bite of unspecified breast, initial encounter +S21059D Open bite of unspecified breast, subsequent encounter +S21059S Open bite of unspecified breast, sequela +S21101A Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, initial encounter +S21101D Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21101S Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, sequela +S21102A Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, initial encounter +S21102D Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21102S Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, sequela +S21109A Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter +S21109D Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21109S Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, sequela +S21111A Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter +S21111D Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21111S Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, sequela +S21112A Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter +S21112D Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21112S Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, sequela +S21119A Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter +S21119D Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21119S Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela +S21121A Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter +S21121D Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21121S Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, sequela +S21122A Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter +S21122D Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21122S Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, sequela +S21129A Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter +S21129D Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21129S Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela +S21131A Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter +S21131D Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21131S Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, sequela +S21132A Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter +S21132D Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21132S Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, sequela +S21139A Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter +S21139D Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21139S Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela +S21141A Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter +S21141D Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21141S Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, sequela +S21142A Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter +S21142D Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21142S Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, sequela +S21149A Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter +S21149D Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21149S Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela +S21151A Open bite of right front wall of thorax without penetration into thoracic cavity, initial encounter +S21151D Open bite of right front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21151S Open bite of right front wall of thorax without penetration into thoracic cavity, sequela +S21152A Open bite of left front wall of thorax without penetration into thoracic cavity, initial encounter +S21152D Open bite of left front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21152S Open bite of left front wall of thorax without penetration into thoracic cavity, sequela +S21159A Open bite of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter +S21159D Open bite of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter +S21159S Open bite of unspecified front wall of thorax without penetration into thoracic cavity, sequela +S21201A Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, initial encounter +S21201D Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21201S Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, sequela +S21202A Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, initial encounter +S21202D Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21202S Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, sequela +S21209A Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter +S21209D Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21209S Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, sequela +S21211A Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter +S21211D Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21211S Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, sequela +S21212A Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter +S21212D Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21212S Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, sequela +S21219A Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter +S21219D Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21219S Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela +S21221A Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter +S21221D Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21221S Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, sequela +S21222A Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter +S21222D Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21222S Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, sequela +S21229A Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter +S21229D Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21229S Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela +S21231A Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter +S21231D Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21231S Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, sequela +S21232A Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter +S21232D Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21232S Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, sequela +S21239A Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter +S21239D Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21239S Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela +S21241A Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter +S21241D Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21241S Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, sequela +S21242A Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter +S21242D Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21242S Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, sequela +S21249A Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter +S21249D Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21249S Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela +S21251A Open bite of right back wall of thorax without penetration into thoracic cavity, initial encounter +S21251D Open bite of right back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21251S Open bite of right back wall of thorax without penetration into thoracic cavity, sequela +S21252A Open bite of left back wall of thorax without penetration into thoracic cavity, initial encounter +S21252D Open bite of left back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21252S Open bite of left back wall of thorax without penetration into thoracic cavity, sequela +S21259A Open bite of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter +S21259D Open bite of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter +S21259S Open bite of unspecified back wall of thorax without penetration into thoracic cavity, sequela +S21301A Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, initial encounter +S21301D Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21301S Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, sequela +S21302A Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, initial encounter +S21302D Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21302S Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, sequela +S21309A Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter +S21309D Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21309S Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, sequela +S21311A Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter +S21311D Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21311S Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, sequela +S21312A Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter +S21312D Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21312S Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, sequela +S21319A Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter +S21319D Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21319S Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela +S21321A Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter +S21321D Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21321S Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, sequela +S21322A Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter +S21322D Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21322S Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, sequela +S21329A Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter +S21329D Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21329S Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela +S21331A Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter +S21331D Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21331S Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, sequela +S21332A Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter +S21332D Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21332S Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, sequela +S21339A Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter +S21339D Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21339S Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela +S21341A Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter +S21341D Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21341S Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, sequela +S21342A Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter +S21342D Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21342S Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, sequela +S21349A Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter +S21349D Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21349S Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela +S21351A Open bite of right front wall of thorax with penetration into thoracic cavity, initial encounter +S21351D Open bite of right front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21351S Open bite of right front wall of thorax with penetration into thoracic cavity, sequela +S21352A Open bite of left front wall of thorax with penetration into thoracic cavity, initial encounter +S21352D Open bite of left front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21352S Open bite of left front wall of thorax with penetration into thoracic cavity, sequela +S21359A Open bite of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter +S21359D Open bite of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter +S21359S Open bite of unspecified front wall of thorax with penetration into thoracic cavity, sequela +S21401A Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, initial encounter +S21401D Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21401S Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, sequela +S21402A Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, initial encounter +S21402D Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21402S Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, sequela +S21409A Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter +S21409D Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21409S Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, sequela +S21411A Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter +S21411D Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21411S Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, sequela +S21412A Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter +S21412D Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21412S Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, sequela +S21419A Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter +S21419D Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21419S Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela +S21421A Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter +S21421D Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21421S Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, sequela +S21422A Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter +S21422D Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21422S Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, sequela +S21429A Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter +S21429D Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21429S Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela +S21431A Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter +S21431D Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21431S Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, sequela +S21432A Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter +S21432D Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21432S Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, sequela +S21439A Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter +S21439D Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21439S Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela +S21441A Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter +S21441D Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21441S Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, sequela +S21442A Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter +S21442D Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21442S Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, sequela +S21449A Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter +S21449D Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21449S Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela +S21451A Open bite of right back wall of thorax with penetration into thoracic cavity, initial encounter +S21451D Open bite of right back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21451S Open bite of right back wall of thorax with penetration into thoracic cavity, sequela +S21452A Open bite of left back wall of thorax with penetration into thoracic cavity, initial encounter +S21452D Open bite of left back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21452S Open bite of left back wall of thorax with penetration into thoracic cavity, sequela +S21459A Open bite of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter +S21459D Open bite of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter +S21459S Open bite of unspecified back wall of thorax with penetration into thoracic cavity, sequela +S2190XA Unspecified open wound of unspecified part of thorax, initial encounter +S2190XD Unspecified open wound of unspecified part of thorax, subsequent encounter +S2190XS Unspecified open wound of unspecified part of thorax, sequela +S2191XA Laceration without foreign body of unspecified part of thorax, initial encounter +S2191XD Laceration without foreign body of unspecified part of thorax, subsequent encounter +S2191XS Laceration without foreign body of unspecified part of thorax, sequela +S2192XA Laceration with foreign body of unspecified part of thorax, initial encounter +S2192XD Laceration with foreign body of unspecified part of thorax, subsequent encounter +S2192XS Laceration with foreign body of unspecified part of thorax, sequela +S2193XA Puncture wound without foreign body of unspecified part of thorax, initial encounter +S2193XD Puncture wound without foreign body of unspecified part of thorax, subsequent encounter +S2193XS Puncture wound without foreign body of unspecified part of thorax, sequela +S2194XA Puncture wound with foreign body of unspecified part of thorax, initial encounter +S2194XD Puncture wound with foreign body of unspecified part of thorax, subsequent encounter +S2194XS Puncture wound with foreign body of unspecified part of thorax, sequela +S2195XA Open bite of unspecified part of thorax, initial encounter +S2195XD Open bite of unspecified part of thorax, subsequent encounter +S2195XS Open bite of unspecified part of thorax, sequela +S22000A Wedge compression fracture of unspecified thoracic vertebra, initial encounter for closed fracture +S22000B Wedge compression fracture of unspecified thoracic vertebra, initial encounter for open fracture +S22000D Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing +S22000G Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing +S22000K Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion +S22000S Wedge compression fracture of unspecified thoracic vertebra, sequela +S22001A Stable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture +S22001B Stable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture +S22001D Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing +S22001G Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing +S22001K Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion +S22001S Stable burst fracture of unspecified thoracic vertebra, sequela +S22002A Unstable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture +S22002B Unstable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture +S22002D Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing +S22002G Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing +S22002K Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion +S22002S Unstable burst fracture of unspecified thoracic vertebra, sequela +S22008A Other fracture of unspecified thoracic vertebra, initial encounter for closed fracture +S22008B Other fracture of unspecified thoracic vertebra, initial encounter for open fracture +S22008D Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing +S22008G Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing +S22008K Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion +S22008S Other fracture of unspecified thoracic vertebra, sequela +S22009A Unspecified fracture of unspecified thoracic vertebra, initial encounter for closed fracture +S22009B Unspecified fracture of unspecified thoracic vertebra, initial encounter for open fracture +S22009D Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing +S22009G Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing +S22009K Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion +S22009S Unspecified fracture of unspecified thoracic vertebra, sequela +S22010A Wedge compression fracture of first thoracic vertebra, initial encounter for closed fracture +S22010B Wedge compression fracture of first thoracic vertebra, initial encounter for open fracture +S22010D Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing +S22010G Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing +S22010K Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion +S22010S Wedge compression fracture of first thoracic vertebra, sequela +S22011A Stable burst fracture of first thoracic vertebra, initial encounter for closed fracture +S22011B Stable burst fracture of first thoracic vertebra, initial encounter for open fracture +S22011D Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing +S22011G Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing +S22011K Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion +S22011S Stable burst fracture of first thoracic vertebra, sequela +S22012A Unstable burst fracture of first thoracic vertebra, initial encounter for closed fracture +S22012B Unstable burst fracture of first thoracic vertebra, initial encounter for open fracture +S22012D Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing +S22012G Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing +S22012K Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion +S22012S Unstable burst fracture of first thoracic vertebra, sequela +S22018A Other fracture of first thoracic vertebra, initial encounter for closed fracture +S22018B Other fracture of first thoracic vertebra, initial encounter for open fracture +S22018D Other fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing +S22018G Other fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing +S22018K Other fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion +S22018S Other fracture of first thoracic vertebra, sequela +S22019A Unspecified fracture of first thoracic vertebra, initial encounter for closed fracture +S22019B Unspecified fracture of first thoracic vertebra, initial encounter for open fracture +S22019D Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing +S22019G Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing +S22019K Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion +S22019S Unspecified fracture of first thoracic vertebra, sequela +S22020A Wedge compression fracture of second thoracic vertebra, initial encounter for closed fracture +S22020B Wedge compression fracture of second thoracic vertebra, initial encounter for open fracture +S22020D Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing +S22020G Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing +S22020K Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion +S22020S Wedge compression fracture of second thoracic vertebra, sequela +S22021A Stable burst fracture of second thoracic vertebra, initial encounter for closed fracture +S22021B Stable burst fracture of second thoracic vertebra, initial encounter for open fracture +S22021D Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing +S22021G Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing +S22021K Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion +S22021S Stable burst fracture of second thoracic vertebra, sequela +S22022A Unstable burst fracture of second thoracic vertebra, initial encounter for closed fracture +S22022B Unstable burst fracture of second thoracic vertebra, initial encounter for open fracture +S22022D Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing +S22022G Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing +S22022K Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion +S22022S Unstable burst fracture of second thoracic vertebra, sequela +S22028A Other fracture of second thoracic vertebra, initial encounter for closed fracture +S22028B Other fracture of second thoracic vertebra, initial encounter for open fracture +S22028D Other fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing +S22028G Other fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing +S22028K Other fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion +S22028S Other fracture of second thoracic vertebra, sequela +S22029A Unspecified fracture of second thoracic vertebra, initial encounter for closed fracture +S22029B Unspecified fracture of second thoracic vertebra, initial encounter for open fracture +S22029D Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing +S22029G Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing +S22029K Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion +S22029S Unspecified fracture of second thoracic vertebra, sequela +S22030A Wedge compression fracture of third thoracic vertebra, initial encounter for closed fracture +S22030B Wedge compression fracture of third thoracic vertebra, initial encounter for open fracture +S22030D Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing +S22030G Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing +S22030K Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion +S22030S Wedge compression fracture of third thoracic vertebra, sequela +S22031A Stable burst fracture of third thoracic vertebra, initial encounter for closed fracture +S22031B Stable burst fracture of third thoracic vertebra, initial encounter for open fracture +S22031D Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing +S22031G Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing +S22031K Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion +S22031S Stable burst fracture of third thoracic vertebra, sequela +S22032A Unstable burst fracture of third thoracic vertebra, initial encounter for closed fracture +S22032B Unstable burst fracture of third thoracic vertebra, initial encounter for open fracture +S22032D Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing +S22032G Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing +S22032K Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion +S22032S Unstable burst fracture of third thoracic vertebra, sequela +S22038A Other fracture of third thoracic vertebra, initial encounter for closed fracture +S22038B Other fracture of third thoracic vertebra, initial encounter for open fracture +S22038D Other fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing +S22038G Other fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing +S22038K Other fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion +S22038S Other fracture of third thoracic vertebra, sequela +S22039A Unspecified fracture of third thoracic vertebra, initial encounter for closed fracture +S22039B Unspecified fracture of third thoracic vertebra, initial encounter for open fracture +S22039D Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing +S22039G Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing +S22039K Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion +S22039S Unspecified fracture of third thoracic vertebra, sequela +S22040A Wedge compression fracture of fourth thoracic vertebra, initial encounter for closed fracture +S22040B Wedge compression fracture of fourth thoracic vertebra, initial encounter for open fracture +S22040D Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing +S22040G Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing +S22040K Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion +S22040S Wedge compression fracture of fourth thoracic vertebra, sequela +S22041A Stable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture +S22041B Stable burst fracture of fourth thoracic vertebra, initial encounter for open fracture +S22041D Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing +S22041G Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing +S22041K Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion +S22041S Stable burst fracture of fourth thoracic vertebra, sequela +S22042A Unstable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture +S22042B Unstable burst fracture of fourth thoracic vertebra, initial encounter for open fracture +S22042D Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing +S22042G Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing +S22042K Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion +S22042S Unstable burst fracture of fourth thoracic vertebra, sequela +S22048A Other fracture of fourth thoracic vertebra, initial encounter for closed fracture +S22048B Other fracture of fourth thoracic vertebra, initial encounter for open fracture +S22048D Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing +S22048G Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing +S22048K Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion +S22048S Other fracture of fourth thoracic vertebra, sequela +S22049A Unspecified fracture of fourth thoracic vertebra, initial encounter for closed fracture +S22049B Unspecified fracture of fourth thoracic vertebra, initial encounter for open fracture +S22049D Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing +S22049G Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing +S22049K Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion +S22049S Unspecified fracture of fourth thoracic vertebra, sequela +S22050A Wedge compression fracture of T5-T6 vertebra, initial encounter for closed fracture +S22050B Wedge compression fracture of T5-T6 vertebra, initial encounter for open fracture +S22050D Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing +S22050G Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing +S22050K Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion +S22050S Wedge compression fracture of T5-T6 vertebra, sequela +S22051A Stable burst fracture of T5-T6 vertebra, initial encounter for closed fracture +S22051B Stable burst fracture of T5-T6 vertebra, initial encounter for open fracture +S22051D Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing +S22051G Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing +S22051K Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion +S22051S Stable burst fracture of T5-T6 vertebra, sequela +S22052A Unstable burst fracture of T5-T6 vertebra, initial encounter for closed fracture +S22052B Unstable burst fracture of T5-T6 vertebra, initial encounter for open fracture +S22052D Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing +S22052G Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing +S22052K Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion +S22052S Unstable burst fracture of T5-T6 vertebra, sequela +S22058A Other fracture of T5-T6 vertebra, initial encounter for closed fracture +S22058B Other fracture of T5-T6 vertebra, initial encounter for open fracture +S22058D Other fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing +S22058G Other fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing +S22058K Other fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion +S22058S Other fracture of T5-T6 vertebra, sequela +S22059A Unspecified fracture of T5-T6 vertebra, initial encounter for closed fracture +S22059B Unspecified fracture of T5-T6 vertebra, initial encounter for open fracture +S22059D Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing +S22059G Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing +S22059K Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion +S22059S Unspecified fracture of T5-T6 vertebra, sequela +S22060A Wedge compression fracture of T7-T8 vertebra, initial encounter for closed fracture +S22060B Wedge compression fracture of T7-T8 vertebra, initial encounter for open fracture +S22060D Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing +S22060G Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing +S22060K Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion +S22060S Wedge compression fracture of T7-T8 vertebra, sequela +S22061A Stable burst fracture of T7-T8 vertebra, initial encounter for closed fracture +S22061B Stable burst fracture of T7-T8 vertebra, initial encounter for open fracture +S22061D Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing +S22061G Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing +S22061K Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion +S22061S Stable burst fracture of T7-T8 vertebra, sequela +S22062A Unstable burst fracture of T7-T8 vertebra, initial encounter for closed fracture +S22062B Unstable burst fracture of T7-T8 vertebra, initial encounter for open fracture +S22062D Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing +S22062G Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing +S22062K Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion +S22062S Unstable burst fracture of T7-T8 vertebra, sequela +S22068A Other fracture of T7-T8 thoracic vertebra, initial encounter for closed fracture +S22068B Other fracture of T7-T8 thoracic vertebra, initial encounter for open fracture +S22068D Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with routine healing +S22068G Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with delayed healing +S22068K Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with nonunion +S22068S Other fracture of T7-T8 thoracic vertebra, sequela +S22069A Unspecified fracture of T7-T8 vertebra, initial encounter for closed fracture +S22069B Unspecified fracture of T7-T8 vertebra, initial encounter for open fracture +S22069D Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing +S22069G Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing +S22069K Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion +S22069S Unspecified fracture of T7-T8 vertebra, sequela +S22070A Wedge compression fracture of T9-T10 vertebra, initial encounter for closed fracture +S22070B Wedge compression fracture of T9-T10 vertebra, initial encounter for open fracture +S22070D Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing +S22070G Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing +S22070K Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion +S22070S Wedge compression fracture of T9-T10 vertebra, sequela +S22071A Stable burst fracture of T9-T10 vertebra, initial encounter for closed fracture +S22071B Stable burst fracture of T9-T10 vertebra, initial encounter for open fracture +S22071D Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing +S22071G Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing +S22071K Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion +S22071S Stable burst fracture of T9-T10 vertebra, sequela +S22072A Unstable burst fracture of T9-T10 vertebra, initial encounter for closed fracture +S22072B Unstable burst fracture of T9-T10 vertebra, initial encounter for open fracture +S22072D Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing +S22072G Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing +S22072K Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion +S22072S Unstable burst fracture of T9-T10 vertebra, sequela +S22078A Other fracture of T9-T10 vertebra, initial encounter for closed fracture +S22078B Other fracture of T9-T10 vertebra, initial encounter for open fracture +S22078D Other fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing +S22078G Other fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing +S22078K Other fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion +S22078S Other fracture of T9-T10 vertebra, sequela +S22079A Unspecified fracture of T9-T10 vertebra, initial encounter for closed fracture +S22079B Unspecified fracture of T9-T10 vertebra, initial encounter for open fracture +S22079D Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing +S22079G Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing +S22079K Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion +S22079S Unspecified fracture of T9-T10 vertebra, sequela +S22080A Wedge compression fracture of T11-T12 vertebra, initial encounter for closed fracture +S22080B Wedge compression fracture of T11-T12 vertebra, initial encounter for open fracture +S22080D Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing +S22080G Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing +S22080K Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion +S22080S Wedge compression fracture of T11-T12 vertebra, sequela +S22081A Stable burst fracture of T11-T12 vertebra, initial encounter for closed fracture +S22081B Stable burst fracture of T11-T12 vertebra, initial encounter for open fracture +S22081D Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing +S22081G Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing +S22081K Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion +S22081S Stable burst fracture of T11-T12 vertebra, sequela +S22082A Unstable burst fracture of T11-T12 vertebra, initial encounter for closed fracture +S22082B Unstable burst fracture of T11-T12 vertebra, initial encounter for open fracture +S22082D Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing +S22082G Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing +S22082K Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion +S22082S Unstable burst fracture of T11-T12 vertebra, sequela +S22088A Other fracture of T11-T12 vertebra, initial encounter for closed fracture +S22088B Other fracture of T11-T12 vertebra, initial encounter for open fracture +S22088D Other fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing +S22088G Other fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing +S22088K Other fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion +S22088S Other fracture of T11-T12 vertebra, sequela +S22089A Unspecified fracture of T11-T12 vertebra, initial encounter for closed fracture +S22089B Unspecified fracture of T11-T12 vertebra, initial encounter for open fracture +S22089D Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing +S22089G Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing +S22089K Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion +S22089S Unspecified fracture of T11-T12 vertebra, sequela +S2220XA Unspecified fracture of sternum, initial encounter for closed fracture +S2220XB Unspecified fracture of sternum, initial encounter for open fracture +S2220XD Unspecified fracture of sternum, subsequent encounter for fracture with routine healing +S2220XG Unspecified fracture of sternum, subsequent encounter for fracture with delayed healing +S2220XK Unspecified fracture of sternum, subsequent encounter for fracture with nonunion +S2220XS Unspecified fracture of sternum, sequela +S2221XA Fracture of manubrium, initial encounter for closed fracture +S2221XB Fracture of manubrium, initial encounter for open fracture +S2221XD Fracture of manubrium, subsequent encounter for fracture with routine healing +S2221XG Fracture of manubrium, subsequent encounter for fracture with delayed healing +S2221XK Fracture of manubrium, subsequent encounter for fracture with nonunion +S2221XS Fracture of manubrium, sequela +S2222XA Fracture of body of sternum, initial encounter for closed fracture +S2222XB Fracture of body of sternum, initial encounter for open fracture +S2222XD Fracture of body of sternum, subsequent encounter for fracture with routine healing +S2222XG Fracture of body of sternum, subsequent encounter for fracture with delayed healing +S2222XK Fracture of body of sternum, subsequent encounter for fracture with nonunion +S2222XS Fracture of body of sternum, sequela +S2223XA Sternal manubrial dissociation, initial encounter for closed fracture +S2223XB Sternal manubrial dissociation, initial encounter for open fracture +S2223XD Sternal manubrial dissociation, subsequent encounter for fracture with routine healing +S2223XG Sternal manubrial dissociation, subsequent encounter for fracture with delayed healing +S2223XK Sternal manubrial dissociation, subsequent encounter for fracture with nonunion +S2223XS Sternal manubrial dissociation, sequela +S2224XA Fracture of xiphoid process, initial encounter for closed fracture +S2224XB Fracture of xiphoid process, initial encounter for open fracture +S2224XD Fracture of xiphoid process, subsequent encounter for fracture with routine healing +S2224XG Fracture of xiphoid process, subsequent encounter for fracture with delayed healing +S2224XK Fracture of xiphoid process, subsequent encounter for fracture with nonunion +S2224XS Fracture of xiphoid process, sequela +S2231XA Fracture of one rib, right side, initial encounter for closed fracture +S2231XB Fracture of one rib, right side, initial encounter for open fracture +S2231XD Fracture of one rib, right side, subsequent encounter for fracture with routine healing +S2231XG Fracture of one rib, right side, subsequent encounter for fracture with delayed healing +S2231XK Fracture of one rib, right side, subsequent encounter for fracture with nonunion +S2231XS Fracture of one rib, right side, sequela +S2232XA Fracture of one rib, left side, initial encounter for closed fracture +S2232XB Fracture of one rib, left side, initial encounter for open fracture +S2232XD Fracture of one rib, left side, subsequent encounter for fracture with routine healing +S2232XG Fracture of one rib, left side, subsequent encounter for fracture with delayed healing +S2232XK Fracture of one rib, left side, subsequent encounter for fracture with nonunion +S2232XS Fracture of one rib, left side, sequela +S2239XA Fracture of one rib, unspecified side, initial encounter for closed fracture +S2239XB Fracture of one rib, unspecified side, initial encounter for open fracture +S2239XD Fracture of one rib, unspecified side, subsequent encounter for fracture with routine healing +S2239XG Fracture of one rib, unspecified side, subsequent encounter for fracture with delayed healing +S2239XK Fracture of one rib, unspecified side, subsequent encounter for fracture with nonunion +S2239XS Fracture of one rib, unspecified side, sequela +S2241XA Multiple fractures of ribs, right side, initial encounter for closed fracture +S2241XB Multiple fractures of ribs, right side, initial encounter for open fracture +S2241XD Multiple fractures of ribs, right side, subsequent encounter for fracture with routine healing +S2241XG Multiple fractures of ribs, right side, subsequent encounter for fracture with delayed healing +S2241XK Multiple fractures of ribs, right side, subsequent encounter for fracture with nonunion +S2241XS Multiple fractures of ribs, right side, sequela +S2242XA Multiple fractures of ribs, left side, initial encounter for closed fracture +S2242XB Multiple fractures of ribs, left side, initial encounter for open fracture +S2242XD Multiple fractures of ribs, left side, subsequent encounter for fracture with routine healing +S2242XG Multiple fractures of ribs, left side, subsequent encounter for fracture with delayed healing +S2242XK Multiple fractures of ribs, left side, subsequent encounter for fracture with nonunion +S2242XS Multiple fractures of ribs, left side, sequela +S2243XA Multiple fractures of ribs, bilateral, initial encounter for closed fracture +S2243XB Multiple fractures of ribs, bilateral, initial encounter for open fracture +S2243XD Multiple fractures of ribs, bilateral, subsequent encounter for fracture with routine healing +S2243XG Multiple fractures of ribs, bilateral, subsequent encounter for fracture with delayed healing +S2243XK Multiple fractures of ribs, bilateral, subsequent encounter for fracture with nonunion +S2243XS Multiple fractures of ribs, bilateral, sequela +S2249XA Multiple fractures of ribs, unspecified side, initial encounter for closed fracture +S2249XB Multiple fractures of ribs, unspecified side, initial encounter for open fracture +S2249XD Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with routine healing +S2249XG Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with delayed healing +S2249XK Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with nonunion +S2249XS Multiple fractures of ribs, unspecified side, sequela +S225XXA Flail chest, initial encounter for closed fracture +S225XXB Flail chest, initial encounter for open fracture +S225XXD Flail chest, subsequent encounter for fracture with routine healing +S225XXG Flail chest, subsequent encounter for fracture with delayed healing +S225XXK Flail chest, subsequent encounter for fracture with nonunion +S225XXS Flail chest, sequela +S229XXA Fracture of bony thorax, part unspecified, initial encounter for closed fracture +S229XXB Fracture of bony thorax, part unspecified, initial encounter for open fracture +S229XXD Fracture of bony thorax, part unspecified, subsequent encounter for fracture with routine healing +S229XXG Fracture of bony thorax, part unspecified, subsequent encounter for fracture with delayed healing +S229XXK Fracture of bony thorax, part unspecified, subsequent encounter for fracture with nonunion +S229XXS Fracture of bony thorax, part unspecified, sequela +S230XXA Traumatic rupture of thoracic intervertebral disc, initial encounter +S230XXD Traumatic rupture of thoracic intervertebral disc, subsequent encounter +S230XXS Traumatic rupture of thoracic intervertebral disc, sequela +S23100A Subluxation of unspecified thoracic vertebra, initial encounter +S23100D Subluxation of unspecified thoracic vertebra, subsequent encounter +S23100S Subluxation of unspecified thoracic vertebra, sequela +S23101A Dislocation of unspecified thoracic vertebra, initial encounter +S23101D Dislocation of unspecified thoracic vertebra, subsequent encounter +S23101S Dislocation of unspecified thoracic vertebra, sequela +S23110A Subluxation of T1/T2 thoracic vertebra, initial encounter +S23110D Subluxation of T1/T2 thoracic vertebra, subsequent encounter +S23110S Subluxation of T1/T2 thoracic vertebra, sequela +S23111A Dislocation of T1/T2 thoracic vertebra, initial encounter +S23111D Dislocation of T1/T2 thoracic vertebra, subsequent encounter +S23111S Dislocation of T1/T2 thoracic vertebra, sequela +S23120A Subluxation of T2/T3 thoracic vertebra, initial encounter +S23120D Subluxation of T2/T3 thoracic vertebra, subsequent encounter +S23120S Subluxation of T2/T3 thoracic vertebra, sequela +S23121A Dislocation of T2/T3 thoracic vertebra, initial encounter +S23121D Dislocation of T2/T3 thoracic vertebra, subsequent encounter +S23121S Dislocation of T2/T3 thoracic vertebra, sequela +S23122A Subluxation of T3/T4 thoracic vertebra, initial encounter +S23122D Subluxation of T3/T4 thoracic vertebra, subsequent encounter +S23122S Subluxation of T3/T4 thoracic vertebra, sequela +S23123A Dislocation of T3/T4 thoracic vertebra, initial encounter +S23123D Dislocation of T3/T4 thoracic vertebra, subsequent encounter +S23123S Dislocation of T3/T4 thoracic vertebra, sequela +S23130A Subluxation of T4/T5 thoracic vertebra, initial encounter +S23130D Subluxation of T4/T5 thoracic vertebra, subsequent encounter +S23130S Subluxation of T4/T5 thoracic vertebra, sequela +S23131A Dislocation of T4/T5 thoracic vertebra, initial encounter +S23131D Dislocation of T4/T5 thoracic vertebra, subsequent encounter +S23131S Dislocation of T4/T5 thoracic vertebra, sequela +S23132A Subluxation of T5/T6 thoracic vertebra, initial encounter +S23132D Subluxation of T5/T6 thoracic vertebra, subsequent encounter +S23132S Subluxation of T5/T6 thoracic vertebra, sequela +S23133A Dislocation of T5/T6 thoracic vertebra, initial encounter +S23133D Dislocation of T5/T6 thoracic vertebra, subsequent encounter +S23133S Dislocation of T5/T6 thoracic vertebra, sequela +S23140A Subluxation of T6/T7 thoracic vertebra, initial encounter +S23140D Subluxation of T6/T7 thoracic vertebra, subsequent encounter +S23140S Subluxation of T6/T7 thoracic vertebra, sequela +S23141A Dislocation of T6/T7 thoracic vertebra, initial encounter +S23141D Dislocation of T6/T7 thoracic vertebra, subsequent encounter +S23141S Dislocation of T6/T7 thoracic vertebra, sequela +S23142A Subluxation of T7/T8 thoracic vertebra, initial encounter +S23142D Subluxation of T7/T8 thoracic vertebra, subsequent encounter +S23142S Subluxation of T7/T8 thoracic vertebra, sequela +S23143A Dislocation of T7/T8 thoracic vertebra, initial encounter +S23143D Dislocation of T7/T8 thoracic vertebra, subsequent encounter +S23143S Dislocation of T7/T8 thoracic vertebra, sequela +S23150A Subluxation of T8/T9 thoracic vertebra, initial encounter +S23150D Subluxation of T8/T9 thoracic vertebra, subsequent encounter +S23150S Subluxation of T8/T9 thoracic vertebra, sequela +S23151A Dislocation of T8/T9 thoracic vertebra, initial encounter +S23151D Dislocation of T8/T9 thoracic vertebra, subsequent encounter +S23151S Dislocation of T8/T9 thoracic vertebra, sequela +S23152A Subluxation of T9/T10 thoracic vertebra, initial encounter +S23152D Subluxation of T9/T10 thoracic vertebra, subsequent encounter +S23152S Subluxation of T9/T10 thoracic vertebra, sequela +S23153A Dislocation of T9/T10 thoracic vertebra, initial encounter +S23153D Dislocation of T9/T10 thoracic vertebra, subsequent encounter +S23153S Dislocation of T9/T10 thoracic vertebra, sequela +S23160A Subluxation of T10/T11 thoracic vertebra, initial encounter +S23160D Subluxation of T10/T11 thoracic vertebra, subsequent encounter +S23160S Subluxation of T10/T11 thoracic vertebra, sequela +S23161A Dislocation of T10/T11 thoracic vertebra, initial encounter +S23161D Dislocation of T10/T11 thoracic vertebra, subsequent encounter +S23161S Dislocation of T10/T11 thoracic vertebra, sequela +S23162A Subluxation of T11/T12 thoracic vertebra, initial encounter +S23162D Subluxation of T11/T12 thoracic vertebra, subsequent encounter +S23162S Subluxation of T11/T12 thoracic vertebra, sequela +S23163A Dislocation of T11/T12 thoracic vertebra, initial encounter +S23163D Dislocation of T11/T12 thoracic vertebra, subsequent encounter +S23163S Dislocation of T11/T12 thoracic vertebra, sequela +S23170A Subluxation of T12/L1 thoracic vertebra, initial encounter +S23170D Subluxation of T12/L1 thoracic vertebra, subsequent encounter +S23170S Subluxation of T12/L1 thoracic vertebra, sequela +S23171A Dislocation of T12/L1 thoracic vertebra, initial encounter +S23171D Dislocation of T12/L1 thoracic vertebra, subsequent encounter +S23171S Dislocation of T12/L1 thoracic vertebra, sequela +S2320XA Dislocation of unspecified part of thorax, initial encounter +S2320XD Dislocation of unspecified part of thorax, subsequent encounter +S2320XS Dislocation of unspecified part of thorax, sequela +S2329XA Dislocation of other parts of thorax, initial encounter +S2329XD Dislocation of other parts of thorax, subsequent encounter +S2329XS Dislocation of other parts of thorax, sequela +S233XXA Sprain of ligaments of thoracic spine, initial encounter +S233XXD Sprain of ligaments of thoracic spine, subsequent encounter +S233XXS Sprain of ligaments of thoracic spine, sequela +S2341XA Sprain of ribs, initial encounter +S2341XD Sprain of ribs, subsequent encounter +S2341XS Sprain of ribs, sequela +S23420A Sprain of sternoclavicular (joint) (ligament), initial encounter +S23420D Sprain of sternoclavicular (joint) (ligament), subsequent encounter +S23420S Sprain of sternoclavicular (joint) (ligament), sequela +S23421A Sprain of chondrosternal joint, initial encounter +S23421D Sprain of chondrosternal joint, subsequent encounter +S23421S Sprain of chondrosternal joint, sequela +S23428A Other sprain of sternum, initial encounter +S23428D Other sprain of sternum, subsequent encounter +S23428S Other sprain of sternum, sequela +S23429A Unspecified sprain of sternum, initial encounter +S23429D Unspecified sprain of sternum, subsequent encounter +S23429S Unspecified sprain of sternum, sequela +S238XXA Sprain of other specified parts of thorax, initial encounter +S238XXD Sprain of other specified parts of thorax, subsequent encounter +S238XXS Sprain of other specified parts of thorax, sequela +S239XXA Sprain of unspecified parts of thorax, initial encounter +S239XXD Sprain of unspecified parts of thorax, subsequent encounter +S239XXS Sprain of unspecified parts of thorax, sequela +S240XXA Concussion and edema of thoracic spinal cord, initial encounter +S240XXD Concussion and edema of thoracic spinal cord, subsequent encounter +S240XXS Concussion and edema of thoracic spinal cord, sequela +S24101A Unspecified injury at T1 level of thoracic spinal cord, initial encounter +S24101D Unspecified injury at T1 level of thoracic spinal cord, subsequent encounter +S24101S Unspecified injury at T1 level of thoracic spinal cord, sequela +S24102A Unspecified injury at T2-T6 level of thoracic spinal cord, initial encounter +S24102D Unspecified injury at T2-T6 level of thoracic spinal cord, subsequent encounter +S24102S Unspecified injury at T2-T6 level of thoracic spinal cord, sequela +S24103A Unspecified injury at T7-T10 level of thoracic spinal cord, initial encounter +S24103D Unspecified injury at T7-T10 level of thoracic spinal cord, subsequent encounter +S24103S Unspecified injury at T7-T10 level of thoracic spinal cord, sequela +S24104A Unspecified injury at T11-T12 level of thoracic spinal cord, initial encounter +S24104D Unspecified injury at T11-T12 level of thoracic spinal cord, subsequent encounter +S24104S Unspecified injury at T11-T12 level of thoracic spinal cord, sequela +S24109A Unspecified injury at unspecified level of thoracic spinal cord, initial encounter +S24109D Unspecified injury at unspecified level of thoracic spinal cord, subsequent encounter +S24109S Unspecified injury at unspecified level of thoracic spinal cord, sequela +S24111A Complete lesion at T1 level of thoracic spinal cord, initial encounter +S24111D Complete lesion at T1 level of thoracic spinal cord, subsequent encounter +S24111S Complete lesion at T1 level of thoracic spinal cord, sequela +S24112A Complete lesion at T2-T6 level of thoracic spinal cord, initial encounter +S24112D Complete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter +S24112S Complete lesion at T2-T6 level of thoracic spinal cord, sequela +S24113A Complete lesion at T7-T10 level of thoracic spinal cord, initial encounter +S24113D Complete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter +S24113S Complete lesion at T7-T10 level of thoracic spinal cord, sequela +S24114A Complete lesion at T11-T12 level of thoracic spinal cord, initial encounter +S24114D Complete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter +S24114S Complete lesion at T11-T12 level of thoracic spinal cord, sequela +S24119A Complete lesion at unspecified level of thoracic spinal cord, initial encounter +S24119D Complete lesion at unspecified level of thoracic spinal cord, subsequent encounter +S24119S Complete lesion at unspecified level of thoracic spinal cord, sequela +S24131A Anterior cord syndrome at T1 level of thoracic spinal cord, initial encounter +S24131D Anterior cord syndrome at T1 level of thoracic spinal cord, subsequent encounter +S24131S Anterior cord syndrome at T1 level of thoracic spinal cord, sequela +S24132A Anterior cord syndrome at T2-T6 level of thoracic spinal cord, initial encounter +S24132D Anterior cord syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter +S24132S Anterior cord syndrome at T2-T6 level of thoracic spinal cord, sequela +S24133A Anterior cord syndrome at T7-T10 level of thoracic spinal cord, initial encounter +S24133D Anterior cord syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter +S24133S Anterior cord syndrome at T7-T10 level of thoracic spinal cord, sequela +S24134A Anterior cord syndrome at T11-T12 level of thoracic spinal cord, initial encounter +S24134D Anterior cord syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter +S24134S Anterior cord syndrome at T11-T12 level of thoracic spinal cord, sequela +S24139A Anterior cord syndrome at unspecified level of thoracic spinal cord, initial encounter +S24139D Anterior cord syndrome at unspecified level of thoracic spinal cord, subsequent encounter +S24139S Anterior cord syndrome at unspecified level of thoracic spinal cord, sequela +S24141A Brown-Sequard syndrome at T1 level of thoracic spinal cord, initial encounter +S24141D Brown-Sequard syndrome at T1 level of thoracic spinal cord, subsequent encounter +S24141S Brown-Sequard syndrome at T1 level of thoracic spinal cord, sequela +S24142A Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, initial encounter +S24142D Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter +S24142S Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, sequela +S24143A Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, initial encounter +S24143D Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter +S24143S Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, sequela +S24144A Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, initial encounter +S24144D Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter +S24144S Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, sequela +S24149A Brown-Sequard syndrome at unspecified level of thoracic spinal cord, initial encounter +S24149D Brown-Sequard syndrome at unspecified level of thoracic spinal cord, subsequent encounter +S24149S Brown-Sequard syndrome at unspecified level of thoracic spinal cord, sequela +S24151A Other incomplete lesion at T1 level of thoracic spinal cord, initial encounter +S24151D Other incomplete lesion at T1 level of thoracic spinal cord, subsequent encounter +S24151S Other incomplete lesion at T1 level of thoracic spinal cord, sequela +S24152A Other incomplete lesion at T2-T6 level of thoracic spinal cord, initial encounter +S24152D Other incomplete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter +S24152S Other incomplete lesion at T2-T6 level of thoracic spinal cord, sequela +S24153A Other incomplete lesion at T7-T10 level of thoracic spinal cord, initial encounter +S24153D Other incomplete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter +S24153S Other incomplete lesion at T7-T10 level of thoracic spinal cord, sequela +S24154A Other incomplete lesion at T11-T12 level of thoracic spinal cord, initial encounter +S24154D Other incomplete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter +S24154S Other incomplete lesion at T11-T12 level of thoracic spinal cord, sequela +S24159A Other incomplete lesion at unspecified level of thoracic spinal cord, initial encounter +S24159D Other incomplete lesion at unspecified level of thoracic spinal cord, subsequent encounter +S24159S Other incomplete lesion at unspecified level of thoracic spinal cord, sequela +S242XXA Injury of nerve root of thoracic spine, initial encounter +S242XXD Injury of nerve root of thoracic spine, subsequent encounter +S242XXS Injury of nerve root of thoracic spine, sequela +S243XXA Injury of peripheral nerves of thorax, initial encounter +S243XXD Injury of peripheral nerves of thorax, subsequent encounter +S243XXS Injury of peripheral nerves of thorax, sequela +S244XXA Injury of thoracic sympathetic nervous system, initial encounter +S244XXD Injury of thoracic sympathetic nervous system, subsequent encounter +S244XXS Injury of thoracic sympathetic nervous system, sequela +S248XXA Injury of other specified nerves of thorax, initial encounter +S248XXD Injury of other specified nerves of thorax, subsequent encounter +S248XXS Injury of other specified nerves of thorax, sequela +S249XXA Injury of unspecified nerve of thorax, initial encounter +S249XXD Injury of unspecified nerve of thorax, subsequent encounter +S249XXS Injury of unspecified nerve of thorax, sequela +S2500XA Unspecified injury of thoracic aorta, initial encounter +S2500XD Unspecified injury of thoracic aorta, subsequent encounter +S2500XS Unspecified injury of thoracic aorta, sequela +S2501XA Minor laceration of thoracic aorta, initial encounter +S2501XD Minor laceration of thoracic aorta, subsequent encounter +S2501XS Minor laceration of thoracic aorta, sequela +S2502XA Major laceration of thoracic aorta, initial encounter +S2502XD Major laceration of thoracic aorta, subsequent encounter +S2502XS Major laceration of thoracic aorta, sequela +S2509XA Other specified injury of thoracic aorta, initial encounter +S2509XD Other specified injury of thoracic aorta, subsequent encounter +S2509XS Other specified injury of thoracic aorta, sequela +S25101A Unspecified injury of right innominate or subclavian artery, initial encounter +S25101D Unspecified injury of right innominate or subclavian artery, subsequent encounter +S25101S Unspecified injury of right innominate or subclavian artery, sequela +S25102A Unspecified injury of left innominate or subclavian artery, initial encounter +S25102D Unspecified injury of left innominate or subclavian artery, subsequent encounter +S25102S Unspecified injury of left innominate or subclavian artery, sequela +S25109A Unspecified injury of unspecified innominate or subclavian artery, initial encounter +S25109D Unspecified injury of unspecified innominate or subclavian artery, subsequent encounter +S25109S Unspecified injury of unspecified innominate or subclavian artery, sequela +S25111A Minor laceration of right innominate or subclavian artery, initial encounter +S25111D Minor laceration of right innominate or subclavian artery, subsequent encounter +S25111S Minor laceration of right innominate or subclavian artery, sequela +S25112A Minor laceration of left innominate or subclavian artery, initial encounter +S25112D Minor laceration of left innominate or subclavian artery, subsequent encounter +S25112S Minor laceration of left innominate or subclavian artery, sequela +S25119A Minor laceration of unspecified innominate or subclavian artery, initial encounter +S25119D Minor laceration of unspecified innominate or subclavian artery, subsequent encounter +S25119S Minor laceration of unspecified innominate or subclavian artery, sequela +S25121A Major laceration of right innominate or subclavian artery, initial encounter +S25121D Major laceration of right innominate or subclavian artery, subsequent encounter +S25121S Major laceration of right innominate or subclavian artery, sequela +S25122A Major laceration of left innominate or subclavian artery, initial encounter +S25122D Major laceration of left innominate or subclavian artery, subsequent encounter +S25122S Major laceration of left innominate or subclavian artery, sequela +S25129A Major laceration of unspecified innominate or subclavian artery, initial encounter +S25129D Major laceration of unspecified innominate or subclavian artery, subsequent encounter +S25129S Major laceration of unspecified innominate or subclavian artery, sequela +S25191A Other specified injury of right innominate or subclavian artery, initial encounter +S25191D Other specified injury of right innominate or subclavian artery, subsequent encounter +S25191S Other specified injury of right innominate or subclavian artery, sequela +S25192A Other specified injury of left innominate or subclavian artery, initial encounter +S25192D Other specified injury of left innominate or subclavian artery, subsequent encounter +S25192S Other specified injury of left innominate or subclavian artery, sequela +S25199A Other specified injury of unspecified innominate or subclavian artery, initial encounter +S25199D Other specified injury of unspecified innominate or subclavian artery, subsequent encounter +S25199S Other specified injury of unspecified innominate or subclavian artery, sequela +S2520XA Unspecified injury of superior vena cava, initial encounter +S2520XD Unspecified injury of superior vena cava, subsequent encounter +S2520XS Unspecified injury of superior vena cava, sequela +S2521XA Minor laceration of superior vena cava, initial encounter +S2521XD Minor laceration of superior vena cava, subsequent encounter +S2521XS Minor laceration of superior vena cava, sequela +S2522XA Major laceration of superior vena cava, initial encounter +S2522XD Major laceration of superior vena cava, subsequent encounter +S2522XS Major laceration of superior vena cava, sequela +S2529XA Other specified injury of superior vena cava, initial encounter +S2529XD Other specified injury of superior vena cava, subsequent encounter +S2529XS Other specified injury of superior vena cava, sequela +S25301A Unspecified injury of right innominate or subclavian vein, initial encounter +S25301D Unspecified injury of right innominate or subclavian vein, subsequent encounter +S25301S Unspecified injury of right innominate or subclavian vein, sequela +S25302A Unspecified injury of left innominate or subclavian vein, initial encounter +S25302D Unspecified injury of left innominate or subclavian vein, subsequent encounter +S25302S Unspecified injury of left innominate or subclavian vein, sequela +S25309A Unspecified injury of unspecified innominate or subclavian vein, initial encounter +S25309D Unspecified injury of unspecified innominate or subclavian vein, subsequent encounter +S25309S Unspecified injury of unspecified innominate or subclavian vein, sequela +S25311A Minor laceration of right innominate or subclavian vein, initial encounter +S25311D Minor laceration of right innominate or subclavian vein, subsequent encounter +S25311S Minor laceration of right innominate or subclavian vein, sequela +S25312A Minor laceration of left innominate or subclavian vein, initial encounter +S25312D Minor laceration of left innominate or subclavian vein, subsequent encounter +S25312S Minor laceration of left innominate or subclavian vein, sequela +S25319A Minor laceration of unspecified innominate or subclavian vein, initial encounter +S25319D Minor laceration of unspecified innominate or subclavian vein, subsequent encounter +S25319S Minor laceration of unspecified innominate or subclavian vein, sequela +S25321A Major laceration of right innominate or subclavian vein, initial encounter +S25321D Major laceration of right innominate or subclavian vein, subsequent encounter +S25321S Major laceration of right innominate or subclavian vein, sequela +S25322A Major laceration of left innominate or subclavian vein, initial encounter +S25322D Major laceration of left innominate or subclavian vein, subsequent encounter +S25322S Major laceration of left innominate or subclavian vein, sequela +S25329A Major laceration of unspecified innominate or subclavian vein, initial encounter +S25329D Major laceration of unspecified innominate or subclavian vein, subsequent encounter +S25329S Major laceration of unspecified innominate or subclavian vein, sequela +S25391A Other specified injury of right innominate or subclavian vein, initial encounter +S25391D Other specified injury of right innominate or subclavian vein, subsequent encounter +S25391S Other specified injury of right innominate or subclavian vein, sequela +S25392A Other specified injury of left innominate or subclavian vein, initial encounter +S25392D Other specified injury of left innominate or subclavian vein, subsequent encounter +S25392S Other specified injury of left innominate or subclavian vein, sequela +S25399A Other specified injury of unspecified innominate or subclavian vein, initial encounter +S25399D Other specified injury of unspecified innominate or subclavian vein, subsequent encounter +S25399S Other specified injury of unspecified innominate or subclavian vein, sequela +S25401A Unspecified injury of right pulmonary blood vessels, initial encounter +S25401D Unspecified injury of right pulmonary blood vessels, subsequent encounter +S25401S Unspecified injury of right pulmonary blood vessels, sequela +S25402A Unspecified injury of left pulmonary blood vessels, initial encounter +S25402D Unspecified injury of left pulmonary blood vessels, subsequent encounter +S25402S Unspecified injury of left pulmonary blood vessels, sequela +S25409A Unspecified injury of unspecified pulmonary blood vessels, initial encounter +S25409D Unspecified injury of unspecified pulmonary blood vessels, subsequent encounter +S25409S Unspecified injury of unspecified pulmonary blood vessels, sequela +S25411A Minor laceration of right pulmonary blood vessels, initial encounter +S25411D Minor laceration of right pulmonary blood vessels, subsequent encounter +S25411S Minor laceration of right pulmonary blood vessels, sequela +S25412A Minor laceration of left pulmonary blood vessels, initial encounter +S25412D Minor laceration of left pulmonary blood vessels, subsequent encounter +S25412S Minor laceration of left pulmonary blood vessels, sequela +S25419A Minor laceration of unspecified pulmonary blood vessels, initial encounter +S25419D Minor laceration of unspecified pulmonary blood vessels, subsequent encounter +S25419S Minor laceration of unspecified pulmonary blood vessels, sequela +S25421A Major laceration of right pulmonary blood vessels, initial encounter +S25421D Major laceration of right pulmonary blood vessels, subsequent encounter +S25421S Major laceration of right pulmonary blood vessels, sequela +S25422A Major laceration of left pulmonary blood vessels, initial encounter +S25422D Major laceration of left pulmonary blood vessels, subsequent encounter +S25422S Major laceration of left pulmonary blood vessels, sequela +S25429A Major laceration of unspecified pulmonary blood vessels, initial encounter +S25429D Major laceration of unspecified pulmonary blood vessels, subsequent encounter +S25429S Major laceration of unspecified pulmonary blood vessels, sequela +S25491A Other specified injury of right pulmonary blood vessels, initial encounter +S25491D Other specified injury of right pulmonary blood vessels, subsequent encounter +S25491S Other specified injury of right pulmonary blood vessels, sequela +S25492A Other specified injury of left pulmonary blood vessels, initial encounter +S25492D Other specified injury of left pulmonary blood vessels, subsequent encounter +S25492S Other specified injury of left pulmonary blood vessels, sequela +S25499A Other specified injury of unspecified pulmonary blood vessels, initial encounter +S25499D Other specified injury of unspecified pulmonary blood vessels, subsequent encounter +S25499S Other specified injury of unspecified pulmonary blood vessels, sequela +S25501A Unspecified injury of intercostal blood vessels, right side, initial encounter +S25501D Unspecified injury of intercostal blood vessels, right side, subsequent encounter +S25501S Unspecified injury of intercostal blood vessels, right side, sequela +S25502A Unspecified injury of intercostal blood vessels, left side, initial encounter +S25502D Unspecified injury of intercostal blood vessels, left side, subsequent encounter +S25502S Unspecified injury of intercostal blood vessels, left side, sequela +S25509A Unspecified injury of intercostal blood vessels, unspecified side, initial encounter +S25509D Unspecified injury of intercostal blood vessels, unspecified side, subsequent encounter +S25509S Unspecified injury of intercostal blood vessels, unspecified side, sequela +S25511A Laceration of intercostal blood vessels, right side, initial encounter +S25511D Laceration of intercostal blood vessels, right side, subsequent encounter +S25511S Laceration of intercostal blood vessels, right side, sequela +S25512A Laceration of intercostal blood vessels, left side, initial encounter +S25512D Laceration of intercostal blood vessels, left side, subsequent encounter +S25512S Laceration of intercostal blood vessels, left side, sequela +S25519A Laceration of intercostal blood vessels, unspecified side, initial encounter +S25519D Laceration of intercostal blood vessels, unspecified side, subsequent encounter +S25519S Laceration of intercostal blood vessels, unspecified side, sequela +S25591A Other specified injury of intercostal blood vessels, right side, initial encounter +S25591D Other specified injury of intercostal blood vessels, right side, subsequent encounter +S25591S Other specified injury of intercostal blood vessels, right side, sequela +S25592A Other specified injury of intercostal blood vessels, left side, initial encounter +S25592D Other specified injury of intercostal blood vessels, left side, subsequent encounter +S25592S Other specified injury of intercostal blood vessels, left side, sequela +S25599A Other specified injury of intercostal blood vessels, unspecified side, initial encounter +S25599D Other specified injury of intercostal blood vessels, unspecified side, subsequent encounter +S25599S Other specified injury of intercostal blood vessels, unspecified side, sequela +S25801A Unspecified injury of other blood vessels of thorax, right side, initial encounter +S25801D Unspecified injury of other blood vessels of thorax, right side, subsequent encounter +S25801S Unspecified injury of other blood vessels of thorax, right side, sequela +S25802A Unspecified injury of other blood vessels of thorax, left side, initial encounter +S25802D Unspecified injury of other blood vessels of thorax, left side, subsequent encounter +S25802S Unspecified injury of other blood vessels of thorax, left side, sequela +S25809A Unspecified injury of other blood vessels of thorax, unspecified side, initial encounter +S25809D Unspecified injury of other blood vessels of thorax, unspecified side, subsequent encounter +S25809S Unspecified injury of other blood vessels of thorax, unspecified side, sequela +S25811A Laceration of other blood vessels of thorax, right side, initial encounter +S25811D Laceration of other blood vessels of thorax, right side, subsequent encounter +S25811S Laceration of other blood vessels of thorax, right side, sequela +S25812A Laceration of other blood vessels of thorax, left side, initial encounter +S25812D Laceration of other blood vessels of thorax, left side, subsequent encounter +S25812S Laceration of other blood vessels of thorax, left side, sequela +S25819A Laceration of other blood vessels of thorax, unspecified side, initial encounter +S25819D Laceration of other blood vessels of thorax, unspecified side, subsequent encounter +S25819S Laceration of other blood vessels of thorax, unspecified side, sequela +S25891A Other specified injury of other blood vessels of thorax, right side, initial encounter +S25891D Other specified injury of other blood vessels of thorax, right side, subsequent encounter +S25891S Other specified injury of other blood vessels of thorax, right side, sequela +S25892A Other specified injury of other blood vessels of thorax, left side, initial encounter +S25892D Other specified injury of other blood vessels of thorax, left side, subsequent encounter +S25892S Other specified injury of other blood vessels of thorax, left side, sequela +S25899A Other specified injury of other blood vessels of thorax, unspecified side, initial encounter +S25899D Other specified injury of other blood vessels of thorax, unspecified side, subsequent encounter +S25899S Other specified injury of other blood vessels of thorax, unspecified side, sequela +S2590XA Unspecified injury of unspecified blood vessel of thorax, initial encounter +S2590XD Unspecified injury of unspecified blood vessel of thorax, subsequent encounter +S2590XS Unspecified injury of unspecified blood vessel of thorax, sequela +S2591XA Laceration of unspecified blood vessel of thorax, initial encounter +S2591XD Laceration of unspecified blood vessel of thorax, subsequent encounter +S2591XS Laceration of unspecified blood vessel of thorax, sequela +S2599XA Other specified injury of unspecified blood vessel of thorax, initial encounter +S2599XD Other specified injury of unspecified blood vessel of thorax, subsequent encounter +S2599XS Other specified injury of unspecified blood vessel of thorax, sequela +S2600XA Unspecified injury of heart with hemopericardium, initial encounter +S2600XD Unspecified injury of heart with hemopericardium, subsequent encounter +S2600XS Unspecified injury of heart with hemopericardium, sequela +S2601XA Contusion of heart with hemopericardium, initial encounter +S2601XD Contusion of heart with hemopericardium, subsequent encounter +S2601XS Contusion of heart with hemopericardium, sequela +S26020A Mild laceration of heart with hemopericardium, initial encounter +S26020D Mild laceration of heart with hemopericardium, subsequent encounter +S26020S Mild laceration of heart with hemopericardium, sequela +S26021A Moderate laceration of heart with hemopericardium, initial encounter +S26021D Moderate laceration of heart with hemopericardium, subsequent encounter +S26021S Moderate laceration of heart with hemopericardium, sequela +S26022A Major laceration of heart with hemopericardium, initial encounter +S26022D Major laceration of heart with hemopericardium, subsequent encounter +S26022S Major laceration of heart with hemopericardium, sequela +S2609XA Other injury of heart with hemopericardium, initial encounter +S2609XD Other injury of heart with hemopericardium, subsequent encounter +S2609XS Other injury of heart with hemopericardium, sequela +S2610XA Unspecified injury of heart without hemopericardium, initial encounter +S2610XD Unspecified injury of heart without hemopericardium, subsequent encounter +S2610XS Unspecified injury of heart without hemopericardium, sequela +S2611XA Contusion of heart without hemopericardium, initial encounter +S2611XD Contusion of heart without hemopericardium, subsequent encounter +S2611XS Contusion of heart without hemopericardium, sequela +S2612XA Laceration of heart without hemopericardium, initial encounter +S2612XD Laceration of heart without hemopericardium, subsequent encounter +S2612XS Laceration of heart without hemopericardium, sequela +S2619XA Other injury of heart without hemopericardium, initial encounter +S2619XD Other injury of heart without hemopericardium, subsequent encounter +S2619XS Other injury of heart without hemopericardium, sequela +S2690XA Unspecified injury of heart, unspecified with or without hemopericardium, initial encounter +S2690XD Unspecified injury of heart, unspecified with or without hemopericardium, subsequent encounter +S2690XS Unspecified injury of heart, unspecified with or without hemopericardium, sequela +S2691XA Contusion of heart, unspecified with or without hemopericardium, initial encounter +S2691XD Contusion of heart, unspecified with or without hemopericardium, subsequent encounter +S2691XS Contusion of heart, unspecified with or without hemopericardium, sequela +S2692XA Laceration of heart, unspecified with or without hemopericardium, initial encounter +S2692XD Laceration of heart, unspecified with or without hemopericardium, subsequent encounter +S2692XS Laceration of heart, unspecified with or without hemopericardium, sequela +S2699XA Other injury of heart, unspecified with or without hemopericardium, initial encounter +S2699XD Other injury of heart, unspecified with or without hemopericardium, subsequent encounter +S2699XS Other injury of heart, unspecified with or without hemopericardium, sequela +S270XXA Traumatic pneumothorax, initial encounter +S270XXD Traumatic pneumothorax, subsequent encounter +S270XXS Traumatic pneumothorax, sequela +S271XXA Traumatic hemothorax, initial encounter +S271XXD Traumatic hemothorax, subsequent encounter +S271XXS Traumatic hemothorax, sequela +S272XXA Traumatic hemopneumothorax, initial encounter +S272XXD Traumatic hemopneumothorax, subsequent encounter +S272XXS Traumatic hemopneumothorax, sequela +S27301A Unspecified injury of lung, unilateral, initial encounter +S27301D Unspecified injury of lung, unilateral, subsequent encounter +S27301S Unspecified injury of lung, unilateral, sequela +S27302A Unspecified injury of lung, bilateral, initial encounter +S27302D Unspecified injury of lung, bilateral, subsequent encounter +S27302S Unspecified injury of lung, bilateral, sequela +S27309A Unspecified injury of lung, unspecified, initial encounter +S27309D Unspecified injury of lung, unspecified, subsequent encounter +S27309S Unspecified injury of lung, unspecified, sequela +S27311A Primary blast injury of lung, unilateral, initial encounter +S27311D Primary blast injury of lung, unilateral, subsequent encounter +S27311S Primary blast injury of lung, unilateral, sequela +S27312A Primary blast injury of lung, bilateral, initial encounter +S27312D Primary blast injury of lung, bilateral, subsequent encounter +S27312S Primary blast injury of lung, bilateral, sequela +S27319A Primary blast injury of lung, unspecified, initial encounter +S27319D Primary blast injury of lung, unspecified, subsequent encounter +S27319S Primary blast injury of lung, unspecified, sequela +S27321A Contusion of lung, unilateral, initial encounter +S27321D Contusion of lung, unilateral, subsequent encounter +S27321S Contusion of lung, unilateral, sequela +S27322A Contusion of lung, bilateral, initial encounter +S27322D Contusion of lung, bilateral, subsequent encounter +S27322S Contusion of lung, bilateral, sequela +S27329A Contusion of lung, unspecified, initial encounter +S27329D Contusion of lung, unspecified, subsequent encounter +S27329S Contusion of lung, unspecified, sequela +S27331A Laceration of lung, unilateral, initial encounter +S27331D Laceration of lung, unilateral, subsequent encounter +S27331S Laceration of lung, unilateral, sequela +S27332A Laceration of lung, bilateral, initial encounter +S27332D Laceration of lung, bilateral, subsequent encounter +S27332S Laceration of lung, bilateral, sequela +S27339A Laceration of lung, unspecified, initial encounter +S27339D Laceration of lung, unspecified, subsequent encounter +S27339S Laceration of lung, unspecified, sequela +S27391A Other injuries of lung, unilateral, initial encounter +S27391D Other injuries of lung, unilateral, subsequent encounter +S27391S Other injuries of lung, unilateral, sequela +S27392A Other injuries of lung, bilateral, initial encounter +S27392D Other injuries of lung, bilateral, subsequent encounter +S27392S Other injuries of lung, bilateral, sequela +S27399A Other injuries of lung, unspecified, initial encounter +S27399D Other injuries of lung, unspecified, subsequent encounter +S27399S Other injuries of lung, unspecified, sequela +S27401A Unspecified injury of bronchus, unilateral, initial encounter +S27401D Unspecified injury of bronchus, unilateral, subsequent encounter +S27401S Unspecified injury of bronchus, unilateral, sequela +S27402A Unspecified injury of bronchus, bilateral, initial encounter +S27402D Unspecified injury of bronchus, bilateral, subsequent encounter +S27402S Unspecified injury of bronchus, bilateral, sequela +S27409A Unspecified injury of bronchus, unspecified, initial encounter +S27409D Unspecified injury of bronchus, unspecified, subsequent encounter +S27409S Unspecified injury of bronchus, unspecified, sequela +S27411A Primary blast injury of bronchus, unilateral, initial encounter +S27411D Primary blast injury of bronchus, unilateral, subsequent encounter +S27411S Primary blast injury of bronchus, unilateral, sequela +S27412A Primary blast injury of bronchus, bilateral, initial encounter +S27412D Primary blast injury of bronchus, bilateral, subsequent encounter +S27412S Primary blast injury of bronchus, bilateral, sequela +S27419A Primary blast injury of bronchus, unspecified, initial encounter +S27419D Primary blast injury of bronchus, unspecified, subsequent encounter +S27419S Primary blast injury of bronchus, unspecified, sequela +S27421A Contusion of bronchus, unilateral, initial encounter +S27421D Contusion of bronchus, unilateral, subsequent encounter +S27421S Contusion of bronchus, unilateral, sequela +S27422A Contusion of bronchus, bilateral, initial encounter +S27422D Contusion of bronchus, bilateral, subsequent encounter +S27422S Contusion of bronchus, bilateral, sequela +S27429A Contusion of bronchus, unspecified, initial encounter +S27429D Contusion of bronchus, unspecified, subsequent encounter +S27429S Contusion of bronchus, unspecified, sequela +S27431A Laceration of bronchus, unilateral, initial encounter +S27431D Laceration of bronchus, unilateral, subsequent encounter +S27431S Laceration of bronchus, unilateral, sequela +S27432A Laceration of bronchus, bilateral, initial encounter +S27432D Laceration of bronchus, bilateral, subsequent encounter +S27432S Laceration of bronchus, bilateral, sequela +S27439A Laceration of bronchus, unspecified, initial encounter +S27439D Laceration of bronchus, unspecified, subsequent encounter +S27439S Laceration of bronchus, unspecified, sequela +S27491A Other injury of bronchus, unilateral, initial encounter +S27491D Other injury of bronchus, unilateral, subsequent encounter +S27491S Other injury of bronchus, unilateral, sequela +S27492A Other injury of bronchus, bilateral, initial encounter +S27492D Other injury of bronchus, bilateral, subsequent encounter +S27492S Other injury of bronchus, bilateral, sequela +S27499A Other injury of bronchus, unspecified, initial encounter +S27499D Other injury of bronchus, unspecified, subsequent encounter +S27499S Other injury of bronchus, unspecified, sequela +S2750XA Unspecified injury of thoracic trachea, initial encounter +S2750XD Unspecified injury of thoracic trachea, subsequent encounter +S2750XS Unspecified injury of thoracic trachea, sequela +S2751XA Primary blast injury of thoracic trachea, initial encounter +S2751XD Primary blast injury of thoracic trachea, subsequent encounter +S2751XS Primary blast injury of thoracic trachea, sequela +S2752XA Contusion of thoracic trachea, initial encounter +S2752XD Contusion of thoracic trachea, subsequent encounter +S2752XS Contusion of thoracic trachea, sequela +S2753XA Laceration of thoracic trachea, initial encounter +S2753XD Laceration of thoracic trachea, subsequent encounter +S2753XS Laceration of thoracic trachea, sequela +S2759XA Other injury of thoracic trachea, initial encounter +S2759XD Other injury of thoracic trachea, subsequent encounter +S2759XS Other injury of thoracic trachea, sequela +S2760XA Unspecified injury of pleura, initial encounter +S2760XD Unspecified injury of pleura, subsequent encounter +S2760XS Unspecified injury of pleura, sequela +S2763XA Laceration of pleura, initial encounter +S2763XD Laceration of pleura, subsequent encounter +S2763XS Laceration of pleura, sequela +S2769XA Other injury of pleura, initial encounter +S2769XD Other injury of pleura, subsequent encounter +S2769XS Other injury of pleura, sequela +S27802A Contusion of diaphragm, initial encounter +S27802D Contusion of diaphragm, subsequent encounter +S27802S Contusion of diaphragm, sequela +S27803A Laceration of diaphragm, initial encounter +S27803D Laceration of diaphragm, subsequent encounter +S27803S Laceration of diaphragm, sequela +S27808A Other injury of diaphragm, initial encounter +S27808D Other injury of diaphragm, subsequent encounter +S27808S Other injury of diaphragm, sequela +S27809A Unspecified injury of diaphragm, initial encounter +S27809D Unspecified injury of diaphragm, subsequent encounter +S27809S Unspecified injury of diaphragm, sequela +S27812A Contusion of esophagus (thoracic part), initial encounter +S27812D Contusion of esophagus (thoracic part), subsequent encounter +S27812S Contusion of esophagus (thoracic part), sequela +S27813A Laceration of esophagus (thoracic part), initial encounter +S27813D Laceration of esophagus (thoracic part), subsequent encounter +S27813S Laceration of esophagus (thoracic part), sequela +S27818A Other injury of esophagus (thoracic part), initial encounter +S27818D Other injury of esophagus (thoracic part), subsequent encounter +S27818S Other injury of esophagus (thoracic part), sequela +S27819A Unspecified injury of esophagus (thoracic part), initial encounter +S27819D Unspecified injury of esophagus (thoracic part), subsequent encounter +S27819S Unspecified injury of esophagus (thoracic part), sequela +S27892A Contusion of other specified intrathoracic organs, initial encounter +S27892D Contusion of other specified intrathoracic organs, subsequent encounter +S27892S Contusion of other specified intrathoracic organs, sequela +S27893A Laceration of other specified intrathoracic organs, initial encounter +S27893D Laceration of other specified intrathoracic organs, subsequent encounter +S27893S Laceration of other specified intrathoracic organs, sequela +S27898A Other injury of other specified intrathoracic organs, initial encounter +S27898D Other injury of other specified intrathoracic organs, subsequent encounter +S27898S Other injury of other specified intrathoracic organs, sequela +S27899A Unspecified injury of other specified intrathoracic organs, initial encounter +S27899D Unspecified injury of other specified intrathoracic organs, subsequent encounter +S27899S Unspecified injury of other specified intrathoracic organs, sequela +S279XXA Injury of unspecified intrathoracic organ, initial encounter +S279XXD Injury of unspecified intrathoracic organ, subsequent encounter +S279XXS Injury of unspecified intrathoracic organ, sequela +S280XXA Crushed chest, initial encounter +S280XXD Crushed chest, subsequent encounter +S280XXS Crushed chest, sequela +S281XXA Traumatic amputation (partial) of part of thorax, except breast, initial encounter +S281XXD Traumatic amputation (partial) of part of thorax, except breast, subsequent encounter +S281XXS Traumatic amputation (partial) of part of thorax, except breast, sequela +S28211A Complete traumatic amputation of right breast, initial encounter +S28211D Complete traumatic amputation of right breast, subsequent encounter +S28211S Complete traumatic amputation of right breast, sequela +S28212A Complete traumatic amputation of left breast, initial encounter +S28212D Complete traumatic amputation of left breast, subsequent encounter +S28212S Complete traumatic amputation of left breast, sequela +S28219A Complete traumatic amputation of unspecified breast, initial encounter +S28219D Complete traumatic amputation of unspecified breast, subsequent encounter +S28219S Complete traumatic amputation of unspecified breast, sequela +S28221A Partial traumatic amputation of right breast, initial encounter +S28221D Partial traumatic amputation of right breast, subsequent encounter +S28221S Partial traumatic amputation of right breast, sequela +S28222A Partial traumatic amputation of left breast, initial encounter +S28222D Partial traumatic amputation of left breast, subsequent encounter +S28222S Partial traumatic amputation of left breast, sequela +S28229A Partial traumatic amputation of unspecified breast, initial encounter +S28229D Partial traumatic amputation of unspecified breast, subsequent encounter +S28229S Partial traumatic amputation of unspecified breast, sequela +S29001A Unspecified injury of muscle and tendon of front wall of thorax, initial encounter +S29001D Unspecified injury of muscle and tendon of front wall of thorax, subsequent encounter +S29001S Unspecified injury of muscle and tendon of front wall of thorax, sequela +S29002A Unspecified injury of muscle and tendon of back wall of thorax, initial encounter +S29002D Unspecified injury of muscle and tendon of back wall of thorax, subsequent encounter +S29002S Unspecified injury of muscle and tendon of back wall of thorax, sequela +S29009A Unspecified injury of muscle and tendon of unspecified wall of thorax, initial encounter +S29009D Unspecified injury of muscle and tendon of unspecified wall of thorax, subsequent encounter +S29009S Unspecified injury of muscle and tendon of unspecified wall of thorax, sequela +S29011A Strain of muscle and tendon of front wall of thorax, initial encounter +S29011D Strain of muscle and tendon of front wall of thorax, subsequent encounter +S29011S Strain of muscle and tendon of front wall of thorax, sequela +S29012A Strain of muscle and tendon of back wall of thorax, initial encounter +S29012D Strain of muscle and tendon of back wall of thorax, subsequent encounter +S29012S Strain of muscle and tendon of back wall of thorax, sequela +S29019A Strain of muscle and tendon of unspecified wall of thorax, initial encounter +S29019D Strain of muscle and tendon of unspecified wall of thorax, subsequent encounter +S29019S Strain of muscle and tendon of unspecified wall of thorax, sequela +S29021A Laceration of muscle and tendon of front wall of thorax, initial encounter +S29021D Laceration of muscle and tendon of front wall of thorax, subsequent encounter +S29021S Laceration of muscle and tendon of front wall of thorax, sequela +S29022A Laceration of muscle and tendon of back wall of thorax, initial encounter +S29022D Laceration of muscle and tendon of back wall of thorax, subsequent encounter +S29022S Laceration of muscle and tendon of back wall of thorax, sequela +S29029A Laceration of muscle and tendon of unspecified wall of thorax, initial encounter +S29029D Laceration of muscle and tendon of unspecified wall of thorax, subsequent encounter +S29029S Laceration of muscle and tendon of unspecified wall of thorax, sequela +S29091A Other injury of muscle and tendon of front wall of thorax, initial encounter +S29091D Other injury of muscle and tendon of front wall of thorax, subsequent encounter +S29091S Other injury of muscle and tendon of front wall of thorax, sequela +S29092A Other injury of muscle and tendon of back wall of thorax, initial encounter +S29092D Other injury of muscle and tendon of back wall of thorax, subsequent encounter +S29092S Other injury of muscle and tendon of back wall of thorax, sequela +S29099A Other injury of muscle and tendon of unspecified wall of thorax, initial encounter +S29099D Other injury of muscle and tendon of unspecified wall of thorax, subsequent encounter +S29099S Other injury of muscle and tendon of unspecified wall of thorax, sequela +S298XXA Other specified injuries of thorax, initial encounter +S298XXD Other specified injuries of thorax, subsequent encounter +S298XXS Other specified injuries of thorax, sequela +S299XXA Unspecified injury of thorax, initial encounter +S299XXD Unspecified injury of thorax, subsequent encounter +S299XXS Unspecified injury of thorax, sequela +S300XXA Contusion of lower back and pelvis, initial encounter +S300XXD Contusion of lower back and pelvis, subsequent encounter +S300XXS Contusion of lower back and pelvis, sequela +S301XXA Contusion of abdominal wall, initial encounter +S301XXD Contusion of abdominal wall, subsequent encounter +S301XXS Contusion of abdominal wall, sequela +S30201A Contusion of unspecified external genital organ, male, initial encounter +S30201D Contusion of unspecified external genital organ, male, subsequent encounter +S30201S Contusion of unspecified external genital organ, male, sequela +S30202A Contusion of unspecified external genital organ, female, initial encounter +S30202D Contusion of unspecified external genital organ, female, subsequent encounter +S30202S Contusion of unspecified external genital organ, female, sequela +S3021XA Contusion of penis, initial encounter +S3021XD Contusion of penis, subsequent encounter +S3021XS Contusion of penis, sequela +S3022XA Contusion of scrotum and testes, initial encounter +S3022XD Contusion of scrotum and testes, subsequent encounter +S3022XS Contusion of scrotum and testes, sequela +S3023XA Contusion of vagina and vulva, initial encounter +S3023XD Contusion of vagina and vulva, subsequent encounter +S3023XS Contusion of vagina and vulva, sequela +S303XXA Contusion of anus, initial encounter +S303XXD Contusion of anus, subsequent encounter +S303XXS Contusion of anus, sequela +S30810A Abrasion of lower back and pelvis, initial encounter +S30810D Abrasion of lower back and pelvis, subsequent encounter +S30810S Abrasion of lower back and pelvis, sequela +S30811A Abrasion of abdominal wall, initial encounter +S30811D Abrasion of abdominal wall, subsequent encounter +S30811S Abrasion of abdominal wall, sequela +S30812A Abrasion of penis, initial encounter +S30812D Abrasion of penis, subsequent encounter +S30812S Abrasion of penis, sequela +S30813A Abrasion of scrotum and testes, initial encounter +S30813D Abrasion of scrotum and testes, subsequent encounter +S30813S Abrasion of scrotum and testes, sequela +S30814A Abrasion of vagina and vulva, initial encounter +S30814D Abrasion of vagina and vulva, subsequent encounter +S30814S Abrasion of vagina and vulva, sequela +S30815A Abrasion of unspecified external genital organs, male, initial encounter +S30815D Abrasion of unspecified external genital organs, male, subsequent encounter +S30815S Abrasion of unspecified external genital organs, male, sequela +S30816A Abrasion of unspecified external genital organs, female, initial encounter +S30816D Abrasion of unspecified external genital organs, female, subsequent encounter +S30816S Abrasion of unspecified external genital organs, female, sequela +S30817A Abrasion of anus, initial encounter +S30817D Abrasion of anus, subsequent encounter +S30817S Abrasion of anus, sequela +S30820A Blister (nonthermal) of lower back and pelvis, initial encounter +S30820D Blister (nonthermal) of lower back and pelvis, subsequent encounter +S30820S Blister (nonthermal) of lower back and pelvis, sequela +S30821A Blister (nonthermal) of abdominal wall, initial encounter +S30821D Blister (nonthermal) of abdominal wall, subsequent encounter +S30821S Blister (nonthermal) of abdominal wall, sequela +S30822A Blister (nonthermal) of penis, initial encounter +S30822D Blister (nonthermal) of penis, subsequent encounter +S30822S Blister (nonthermal) of penis, sequela +S30823A Blister (nonthermal) of scrotum and testes, initial encounter +S30823D Blister (nonthermal) of scrotum and testes, subsequent encounter +S30823S Blister (nonthermal) of scrotum and testes, sequela +S30824A Blister (nonthermal) of vagina and vulva, initial encounter +S30824D Blister (nonthermal) of vagina and vulva, subsequent encounter +S30824S Blister (nonthermal) of vagina and vulva, sequela +S30825A Blister (nonthermal) of unspecified external genital organs, male, initial encounter +S30825D Blister (nonthermal) of unspecified external genital organs, male, subsequent encounter +S30825S Blister (nonthermal) of unspecified external genital organs, male, sequela +S30826A Blister (nonthermal) of unspecified external genital organs, female, initial encounter +S30826D Blister (nonthermal) of unspecified external genital organs, female, subsequent encounter +S30826S Blister (nonthermal) of unspecified external genital organs, female, sequela +S30827A Blister (nonthermal) of anus, initial encounter +S30827D Blister (nonthermal) of anus, subsequent encounter +S30827S Blister (nonthermal) of anus, sequela +S30840A External constriction of lower back and pelvis, initial encounter +S30840D External constriction of lower back and pelvis, subsequent encounter +S30840S External constriction of lower back and pelvis, sequela +S30841A External constriction of abdominal wall, initial encounter +S30841D External constriction of abdominal wall, subsequent encounter +S30841S External constriction of abdominal wall, sequela +S30842A External constriction of penis, initial encounter +S30842D External constriction of penis, subsequent encounter +S30842S External constriction of penis, sequela +S30843A External constriction of scrotum and testes, initial encounter +S30843D External constriction of scrotum and testes, subsequent encounter +S30843S External constriction of scrotum and testes, sequela +S30844A External constriction of vagina and vulva, initial encounter +S30844D External constriction of vagina and vulva, subsequent encounter +S30844S External constriction of vagina and vulva, sequela +S30845A External constriction of unspecified external genital organs, male, initial encounter +S30845D External constriction of unspecified external genital organs, male, subsequent encounter +S30845S External constriction of unspecified external genital organs, male, sequela +S30846A External constriction of unspecified external genital organs, female, initial encounter +S30846D External constriction of unspecified external genital organs, female, subsequent encounter +S30846S External constriction of unspecified external genital organs, female, sequela +S30850A Superficial foreign body of lower back and pelvis, initial encounter +S30850D Superficial foreign body of lower back and pelvis, subsequent encounter +S30850S Superficial foreign body of lower back and pelvis, sequela +S30851A Superficial foreign body of abdominal wall, initial encounter +S30851D Superficial foreign body of abdominal wall, subsequent encounter +S30851S Superficial foreign body of abdominal wall, sequela +S30852A Superficial foreign body of penis, initial encounter +S30852D Superficial foreign body of penis, subsequent encounter +S30852S Superficial foreign body of penis, sequela +S30853A Superficial foreign body of scrotum and testes, initial encounter +S30853D Superficial foreign body of scrotum and testes, subsequent encounter +S30853S Superficial foreign body of scrotum and testes, sequela +S30854A Superficial foreign body of vagina and vulva, initial encounter +S30854D Superficial foreign body of vagina and vulva, subsequent encounter +S30854S Superficial foreign body of vagina and vulva, sequela +S30855A Superficial foreign body of unspecified external genital organs, male, initial encounter +S30855D Superficial foreign body of unspecified external genital organs, male, subsequent encounter +S30855S Superficial foreign body of unspecified external genital organs, male, sequela +S30856A Superficial foreign body of unspecified external genital organs, female, initial encounter +S30856D Superficial foreign body of unspecified external genital organs, female, subsequent encounter +S30856S Superficial foreign body of unspecified external genital organs, female, sequela +S30857A Superficial foreign body of anus, initial encounter +S30857D Superficial foreign body of anus, subsequent encounter +S30857S Superficial foreign body of anus, sequela +S30860A Insect bite (nonvenomous) of lower back and pelvis, initial encounter +S30860D Insect bite (nonvenomous) of lower back and pelvis, subsequent encounter +S30860S Insect bite (nonvenomous) of lower back and pelvis, sequela +S30861A Insect bite (nonvenomous) of abdominal wall, initial encounter +S30861D Insect bite (nonvenomous) of abdominal wall, subsequent encounter +S30861S Insect bite (nonvenomous) of abdominal wall, sequela +S30862A Insect bite (nonvenomous) of penis, initial encounter +S30862D Insect bite (nonvenomous) of penis, subsequent encounter +S30862S Insect bite (nonvenomous) of penis, sequela +S30863A Insect bite (nonvenomous) of scrotum and testes, initial encounter +S30863D Insect bite (nonvenomous) of scrotum and testes, subsequent encounter +S30863S Insect bite (nonvenomous) of scrotum and testes, sequela +S30864A Insect bite (nonvenomous) of vagina and vulva, initial encounter +S30864D Insect bite (nonvenomous) of vagina and vulva, subsequent encounter +S30864S Insect bite (nonvenomous) of vagina and vulva, sequela +S30865A Insect bite (nonvenomous) of unspecified external genital organs, male, initial encounter +S30865D Insect bite (nonvenomous) of unspecified external genital organs, male, subsequent encounter +S30865S Insect bite (nonvenomous) of unspecified external genital organs, male, sequela +S30866A Insect bite (nonvenomous) of unspecified external genital organs, female, initial encounter +S30866D Insect bite (nonvenomous) of unspecified external genital organs, female, subsequent encounter +S30866S Insect bite (nonvenomous) of unspecified external genital organs, female, sequela +S30867A Insect bite (nonvenomous) of anus, initial encounter +S30867D Insect bite (nonvenomous) of anus, subsequent encounter +S30867S Insect bite (nonvenomous) of anus, sequela +S30870A Other superficial bite of lower back and pelvis, initial encounter +S30870D Other superficial bite of lower back and pelvis, subsequent encounter +S30870S Other superficial bite of lower back and pelvis, sequela +S30871A Other superficial bite of abdominal wall, initial encounter +S30871D Other superficial bite of abdominal wall, subsequent encounter +S30871S Other superficial bite of abdominal wall, sequela +S30872A Other superficial bite of penis, initial encounter +S30872D Other superficial bite of penis, subsequent encounter +S30872S Other superficial bite of penis, sequela +S30873A Other superficial bite of scrotum and testes, initial encounter +S30873D Other superficial bite of scrotum and testes, subsequent encounter +S30873S Other superficial bite of scrotum and testes, sequela +S30874A Other superficial bite of vagina and vulva, initial encounter +S30874D Other superficial bite of vagina and vulva, subsequent encounter +S30874S Other superficial bite of vagina and vulva, sequela +S30875A Other superficial bite of unspecified external genital organs, male, initial encounter +S30875D Other superficial bite of unspecified external genital organs, male, subsequent encounter +S30875S Other superficial bite of unspecified external genital organs, male, sequela +S30876A Other superficial bite of unspecified external genital organs, female, initial encounter +S30876D Other superficial bite of unspecified external genital organs, female, subsequent encounter +S30876S Other superficial bite of unspecified external genital organs, female, sequela +S30877A Other superficial bite of anus, initial encounter +S30877D Other superficial bite of anus, subsequent encounter +S30877S Other superficial bite of anus, sequela +S3091XA Unspecified superficial injury of lower back and pelvis, initial encounter +S3091XD Unspecified superficial injury of lower back and pelvis, subsequent encounter +S3091XS Unspecified superficial injury of lower back and pelvis, sequela +S3092XA Unspecified superficial injury of abdominal wall, initial encounter +S3092XD Unspecified superficial injury of abdominal wall, subsequent encounter +S3092XS Unspecified superficial injury of abdominal wall, sequela +S3093XA Unspecified superficial injury of penis, initial encounter +S3093XD Unspecified superficial injury of penis, subsequent encounter +S3093XS Unspecified superficial injury of penis, sequela +S3094XA Unspecified superficial injury of scrotum and testes, initial encounter +S3094XD Unspecified superficial injury of scrotum and testes, subsequent encounter +S3094XS Unspecified superficial injury of scrotum and testes, sequela +S3095XA Unspecified superficial injury of vagina and vulva, initial encounter +S3095XD Unspecified superficial injury of vagina and vulva, subsequent encounter +S3095XS Unspecified superficial injury of vagina and vulva, sequela +S3096XA Unspecified superficial injury of unspecified external genital organs, male, initial encounter +S3096XD Unspecified superficial injury of unspecified external genital organs, male, subsequent encounter +S3096XS Unspecified superficial injury of unspecified external genital organs, male, sequela +S3097XA Unspecified superficial injury of unspecified external genital organs, female, initial encounter +S3097XD Unspecified superficial injury of unspecified external genital organs, female, subsequent encounter +S3097XS Unspecified superficial injury of unspecified external genital organs, female, sequela +S3098XA Unspecified superficial injury of anus, initial encounter +S3098XD Unspecified superficial injury of anus, subsequent encounter +S3098XS Unspecified superficial injury of anus, sequela +S31000A Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, initial encounter +S31000D Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, subsequent encounter +S31000S Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, sequela +S31001A Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, initial encounter +S31001D Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, subsequent encounter +S31001S Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, sequela +S31010A Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter +S31010D Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter +S31010S Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, sequela +S31011A Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter +S31011D Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter +S31011S Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, sequela +S31020A Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter +S31020D Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter +S31020S Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, sequela +S31021A Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter +S31021D Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter +S31021S Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, sequela +S31030A Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter +S31030D Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter +S31030S Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, sequela +S31031A Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter +S31031D Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter +S31031S Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, sequela +S31040A Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter +S31040D Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter +S31040S Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, sequela +S31041A Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter +S31041D Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter +S31041S Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, sequela +S31050A Open bite of lower back and pelvis without penetration into retroperitoneum, initial encounter +S31050D Open bite of lower back and pelvis without penetration into retroperitoneum, subsequent encounter +S31050S Open bite of lower back and pelvis without penetration into retroperitoneum, sequela +S31051A Open bite of lower back and pelvis with penetration into retroperitoneum, initial encounter +S31051D Open bite of lower back and pelvis with penetration into retroperitoneum, subsequent encounter +S31051S Open bite of lower back and pelvis with penetration into retroperitoneum, sequela +S31100A Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter +S31100D Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31100S Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela +S31101A Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter +S31101D Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31101S Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela +S31102A Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter +S31102D Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter +S31102S Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela +S31103A Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter +S31103D Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31103S Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela +S31104A Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter +S31104D Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31104S Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela +S31105A Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter +S31105D Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter +S31105S Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela +S31109A Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter +S31109D Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter +S31109S Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela +S31110A Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter +S31110D Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31110S Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela +S31111A Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter +S31111D Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31111S Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela +S31112A Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter +S31112D Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter +S31112S Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela +S31113A Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter +S31113D Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31113S Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela +S31114A Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter +S31114D Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31114S Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela +S31115A Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter +S31115D Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter +S31115S Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela +S31119A Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter +S31119D Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter +S31119S Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela +S31120A Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter +S31120D Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31120S Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, sequela +S31121A Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter +S31121D Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31121S Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, sequela +S31122A Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, initial encounter +S31122D Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter +S31122S Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, sequela +S31123A Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter +S31123D Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31123S Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, sequela +S31124A Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter +S31124D Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31124S Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, sequela +S31125A Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter +S31125D Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter +S31125S Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, sequela +S31129A Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter +S31129D Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter +S31129S Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela +S31130A Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter +S31130D Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31130S Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, sequela +S31131A Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter +S31131D Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31131S Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, sequela +S31132A Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, initial encounter +S31132D Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter +S31132S Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, sequela +S31133A Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter +S31133D Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31133S Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, sequela +S31134A Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter +S31134D Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31134S Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, sequela +S31135A Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter +S31135D Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter +S31135S Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, sequela +S31139A Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter +S31139D Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter +S31139S Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela +S31140A Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter +S31140D Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31140S Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, sequela +S31141A Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter +S31141D Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31141S Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, sequela +S31142A Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, initial encounter +S31142D Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter +S31142S Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, sequela +S31143A Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter +S31143D Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31143S Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, sequela +S31144A Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter +S31144D Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31144S Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, sequela +S31145A Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter +S31145D Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter +S31145S Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, sequela +S31149A Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter +S31149D Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter +S31149S Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela +S31150A Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter +S31150D Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31150S Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela +S31151A Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter +S31151D Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter +S31151S Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela +S31152A Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter +S31152D Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter +S31152S Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela +S31153A Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter +S31153D Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31153S Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela +S31154A Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter +S31154D Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter +S31154S Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela +S31155A Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter +S31155D Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter +S31155S Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela +S31159A Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter +S31159D Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter +S31159S Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela +S3120XA Unspecified open wound of penis, initial encounter +S3120XD Unspecified open wound of penis, subsequent encounter +S3120XS Unspecified open wound of penis, sequela +S3121XA Laceration without foreign body of penis, initial encounter +S3121XD Laceration without foreign body of penis, subsequent encounter +S3121XS Laceration without foreign body of penis, sequela +S3122XA Laceration with foreign body of penis, initial encounter +S3122XD Laceration with foreign body of penis, subsequent encounter +S3122XS Laceration with foreign body of penis, sequela +S3123XA Puncture wound without foreign body of penis, initial encounter +S3123XD Puncture wound without foreign body of penis, subsequent encounter +S3123XS Puncture wound without foreign body of penis, sequela +S3124XA Puncture wound with foreign body of penis, initial encounter +S3124XD Puncture wound with foreign body of penis, subsequent encounter +S3124XS Puncture wound with foreign body of penis, sequela +S3125XA Open bite of penis, initial encounter +S3125XD Open bite of penis, subsequent encounter +S3125XS Open bite of penis, sequela +S3130XA Unspecified open wound of scrotum and testes, initial encounter +S3130XD Unspecified open wound of scrotum and testes, subsequent encounter +S3130XS Unspecified open wound of scrotum and testes, sequela +S3131XA Laceration without foreign body of scrotum and testes, initial encounter +S3131XD Laceration without foreign body of scrotum and testes, subsequent encounter +S3131XS Laceration without foreign body of scrotum and testes, sequela +S3132XA Laceration with foreign body of scrotum and testes, initial encounter +S3132XD Laceration with foreign body of scrotum and testes, subsequent encounter +S3132XS Laceration with foreign body of scrotum and testes, sequela +S3133XA Puncture wound without foreign body of scrotum and testes, initial encounter +S3133XD Puncture wound without foreign body of scrotum and testes, subsequent encounter +S3133XS Puncture wound without foreign body of scrotum and testes, sequela +S3134XA Puncture wound with foreign body of scrotum and testes, initial encounter +S3134XD Puncture wound with foreign body of scrotum and testes, subsequent encounter +S3134XS Puncture wound with foreign body of scrotum and testes, sequela +S3135XA Open bite of scrotum and testes, initial encounter +S3135XD Open bite of scrotum and testes, subsequent encounter +S3135XS Open bite of scrotum and testes, sequela +S3140XA Unspecified open wound of vagina and vulva, initial encounter +S3140XD Unspecified open wound of vagina and vulva, subsequent encounter +S3140XS Unspecified open wound of vagina and vulva, sequela +S3141XA Laceration without foreign body of vagina and vulva, initial encounter +S3141XD Laceration without foreign body of vagina and vulva, subsequent encounter +S3141XS Laceration without foreign body of vagina and vulva, sequela +S3142XA Laceration with foreign body of vagina and vulva, initial encounter +S3142XD Laceration with foreign body of vagina and vulva, subsequent encounter +S3142XS Laceration with foreign body of vagina and vulva, sequela +S3143XA Puncture wound without foreign body of vagina and vulva, initial encounter +S3143XD Puncture wound without foreign body of vagina and vulva, subsequent encounter +S3143XS Puncture wound without foreign body of vagina and vulva, sequela +S3144XA Puncture wound with foreign body of vagina and vulva, initial encounter +S3144XD Puncture wound with foreign body of vagina and vulva, subsequent encounter +S3144XS Puncture wound with foreign body of vagina and vulva, sequela +S3145XA Open bite of vagina and vulva, initial encounter +S3145XD Open bite of vagina and vulva, subsequent encounter +S3145XS Open bite of vagina and vulva, sequela +S31501A Unspecified open wound of unspecified external genital organs, male, initial encounter +S31501D Unspecified open wound of unspecified external genital organs, male, subsequent encounter +S31501S Unspecified open wound of unspecified external genital organs, male, sequela +S31502A Unspecified open wound of unspecified external genital organs, female, initial encounter +S31502D Unspecified open wound of unspecified external genital organs, female, subsequent encounter +S31502S Unspecified open wound of unspecified external genital organs, female, sequela +S31511A Laceration without foreign body of unspecified external genital organs, male, initial encounter +S31511D Laceration without foreign body of unspecified external genital organs, male, subsequent encounter +S31511S Laceration without foreign body of unspecified external genital organs, male, sequela +S31512A Laceration without foreign body of unspecified external genital organs, female, initial encounter +S31512D Laceration without foreign body of unspecified external genital organs, female, subsequent encounter +S31512S Laceration without foreign body of unspecified external genital organs, female, sequela +S31521A Laceration with foreign body of unspecified external genital organs, male, initial encounter +S31521D Laceration with foreign body of unspecified external genital organs, male, subsequent encounter +S31521S Laceration with foreign body of unspecified external genital organs, male, sequela +S31522A Laceration with foreign body of unspecified external genital organs, female, initial encounter +S31522D Laceration with foreign body of unspecified external genital organs, female, subsequent encounter +S31522S Laceration with foreign body of unspecified external genital organs, female, sequela +S31531A Puncture wound without foreign body of unspecified external genital organs, male, initial encounter +S31531D Puncture wound without foreign body of unspecified external genital organs, male, subsequent encounter +S31531S Puncture wound without foreign body of unspecified external genital organs, male, sequela +S31532A Puncture wound without foreign body of unspecified external genital organs, female, initial encounter +S31532D Puncture wound without foreign body of unspecified external genital organs, female, subsequent encounter +S31532S Puncture wound without foreign body of unspecified external genital organs, female, sequela +S31541A Puncture wound with foreign body of unspecified external genital organs, male, initial encounter +S31541D Puncture wound with foreign body of unspecified external genital organs, male, subsequent encounter +S31541S Puncture wound with foreign body of unspecified external genital organs, male, sequela +S31542A Puncture wound with foreign body of unspecified external genital organs, female, initial encounter +S31542D Puncture wound with foreign body of unspecified external genital organs, female, subsequent encounter +S31542S Puncture wound with foreign body of unspecified external genital organs, female, sequela +S31551A Open bite of unspecified external genital organs, male, initial encounter +S31551D Open bite of unspecified external genital organs, male, subsequent encounter +S31551S Open bite of unspecified external genital organs, male, sequela +S31552A Open bite of unspecified external genital organs, female, initial encounter +S31552D Open bite of unspecified external genital organs, female, subsequent encounter +S31552S Open bite of unspecified external genital organs, female, sequela +S31600A Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter +S31600D Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31600S Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela +S31601A Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter +S31601D Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31601S Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela +S31602A Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter +S31602D Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter +S31602S Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela +S31603A Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter +S31603D Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31603S Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela +S31604A Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter +S31604D Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31604S Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela +S31605A Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter +S31605D Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter +S31605S Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela +S31609A Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter +S31609D Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter +S31609S Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela +S31610A Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter +S31610D Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31610S Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela +S31611A Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter +S31611D Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31611S Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela +S31612A Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter +S31612D Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter +S31612S Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela +S31613A Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter +S31613D Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31613S Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela +S31614A Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter +S31614D Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31614S Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela +S31615A Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter +S31615D Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter +S31615S Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela +S31619A Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter +S31619D Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter +S31619S Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela +S31620A Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter +S31620D Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31620S Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela +S31621A Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter +S31621D Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31621S Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela +S31622A Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter +S31622D Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter +S31622S Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela +S31623A Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter +S31623D Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31623S Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela +S31624A Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter +S31624D Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31624S Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela +S31625A Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter +S31625D Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter +S31625S Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela +S31629A Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter +S31629D Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter +S31629S Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela +S31630A Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter +S31630D Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31630S Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela +S31631A Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter +S31631D Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31631S Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela +S31632A Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter +S31632D Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter +S31632S Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela +S31633A Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter +S31633D Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31633S Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela +S31634A Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter +S31634D Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31634S Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela +S31635A Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter +S31635D Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter +S31635S Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela +S31639A Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter +S31639D Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter +S31639S Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela +S31640A Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter +S31640D Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31640S Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela +S31641A Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter +S31641D Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31641S Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela +S31642A Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter +S31642D Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter +S31642S Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela +S31643A Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter +S31643D Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31643S Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela +S31644A Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter +S31644D Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31644S Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela +S31645A Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter +S31645D Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter +S31645S Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela +S31649A Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter +S31649D Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter +S31649S Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela +S31650A Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter +S31650D Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31650S Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela +S31651A Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter +S31651D Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter +S31651S Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela +S31652A Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter +S31652D Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter +S31652S Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela +S31653A Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter +S31653D Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31653S Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela +S31654A Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter +S31654D Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter +S31654S Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela +S31655A Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter +S31655D Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter +S31655S Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela +S31659A Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter +S31659D Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter +S31659S Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela +S31801A Laceration without foreign body of unspecified buttock, initial encounter +S31801D Laceration without foreign body of unspecified buttock, subsequent encounter +S31801S Laceration without foreign body of unspecified buttock, sequela +S31802A Laceration with foreign body of unspecified buttock, initial encounter +S31802D Laceration with foreign body of unspecified buttock, subsequent encounter +S31802S Laceration with foreign body of unspecified buttock, sequela +S31803A Puncture wound without foreign body of unspecified buttock, initial encounter +S31803D Puncture wound without foreign body of unspecified buttock, subsequent encounter +S31803S Puncture wound without foreign body of unspecified buttock, sequela +S31804A Puncture wound with foreign body of unspecified buttock, initial encounter +S31804D Puncture wound with foreign body of unspecified buttock, subsequent encounter +S31804S Puncture wound with foreign body of unspecified buttock, sequela +S31805A Open bite of unspecified buttock, initial encounter +S31805D Open bite of unspecified buttock, subsequent encounter +S31805S Open bite of unspecified buttock, sequela +S31809A Unspecified open wound of unspecified buttock, initial encounter +S31809D Unspecified open wound of unspecified buttock, subsequent encounter +S31809S Unspecified open wound of unspecified buttock, sequela +S31811A Laceration without foreign body of right buttock, initial encounter +S31811D Laceration without foreign body of right buttock, subsequent encounter +S31811S Laceration without foreign body of right buttock, sequela +S31812A Laceration with foreign body of right buttock, initial encounter +S31812D Laceration with foreign body of right buttock, subsequent encounter +S31812S Laceration with foreign body of right buttock, sequela +S31813A Puncture wound without foreign body of right buttock, initial encounter +S31813D Puncture wound without foreign body of right buttock, subsequent encounter +S31813S Puncture wound without foreign body of right buttock, sequela +S31814A Puncture wound with foreign body of right buttock, initial encounter +S31814D Puncture wound with foreign body of right buttock, subsequent encounter +S31814S Puncture wound with foreign body of right buttock, sequela +S31815A Open bite of right buttock, initial encounter +S31815D Open bite of right buttock, subsequent encounter +S31815S Open bite of right buttock, sequela +S31819A Unspecified open wound of right buttock, initial encounter +S31819D Unspecified open wound of right buttock, subsequent encounter +S31819S Unspecified open wound of right buttock, sequela +S31821A Laceration without foreign body of left buttock, initial encounter +S31821D Laceration without foreign body of left buttock, subsequent encounter +S31821S Laceration without foreign body of left buttock, sequela +S31822A Laceration with foreign body of left buttock, initial encounter +S31822D Laceration with foreign body of left buttock, subsequent encounter +S31822S Laceration with foreign body of left buttock, sequela +S31823A Puncture wound without foreign body of left buttock, initial encounter +S31823D Puncture wound without foreign body of left buttock, subsequent encounter +S31823S Puncture wound without foreign body of left buttock, sequela +S31824A Puncture wound with foreign body of left buttock, initial encounter +S31824D Puncture wound with foreign body of left buttock, subsequent encounter +S31824S Puncture wound with foreign body of left buttock, sequela +S31825A Open bite of left buttock, initial encounter +S31825D Open bite of left buttock, subsequent encounter +S31825S Open bite of left buttock, sequela +S31829A Unspecified open wound of left buttock, initial encounter +S31829D Unspecified open wound of left buttock, subsequent encounter +S31829S Unspecified open wound of left buttock, sequela +S31831A Laceration without foreign body of anus, initial encounter +S31831D Laceration without foreign body of anus, subsequent encounter +S31831S Laceration without foreign body of anus, sequela +S31832A Laceration with foreign body of anus, initial encounter +S31832D Laceration with foreign body of anus, subsequent encounter +S31832S Laceration with foreign body of anus, sequela +S31833A Puncture wound without foreign body of anus, initial encounter +S31833D Puncture wound without foreign body of anus, subsequent encounter +S31833S Puncture wound without foreign body of anus, sequela +S31834A Puncture wound with foreign body of anus, initial encounter +S31834D Puncture wound with foreign body of anus, subsequent encounter +S31834S Puncture wound with foreign body of anus, sequela +S31835A Open bite of anus, initial encounter +S31835D Open bite of anus, subsequent encounter +S31835S Open bite of anus, sequela +S31839A Unspecified open wound of anus, initial encounter +S31839D Unspecified open wound of anus, subsequent encounter +S31839S Unspecified open wound of anus, sequela +S32000A Wedge compression fracture of unspecified lumbar vertebra, initial encounter for closed fracture +S32000B Wedge compression fracture of unspecified lumbar vertebra, initial encounter for open fracture +S32000D Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing +S32000G Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing +S32000K Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion +S32000S Wedge compression fracture of unspecified lumbar vertebra, sequela +S32001A Stable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture +S32001B Stable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture +S32001D Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing +S32001G Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing +S32001K Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion +S32001S Stable burst fracture of unspecified lumbar vertebra, sequela +S32002A Unstable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture +S32002B Unstable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture +S32002D Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing +S32002G Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing +S32002K Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion +S32002S Unstable burst fracture of unspecified lumbar vertebra, sequela +S32008A Other fracture of unspecified lumbar vertebra, initial encounter for closed fracture +S32008B Other fracture of unspecified lumbar vertebra, initial encounter for open fracture +S32008D Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing +S32008G Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing +S32008K Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion +S32008S Other fracture of unspecified lumbar vertebra, sequela +S32009A Unspecified fracture of unspecified lumbar vertebra, initial encounter for closed fracture +S32009B Unspecified fracture of unspecified lumbar vertebra, initial encounter for open fracture +S32009D Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing +S32009G Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing +S32009K Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion +S32009S Unspecified fracture of unspecified lumbar vertebra, sequela +S32010A Wedge compression fracture of first lumbar vertebra, initial encounter for closed fracture +S32010B Wedge compression fracture of first lumbar vertebra, initial encounter for open fracture +S32010D Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing +S32010G Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing +S32010K Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion +S32010S Wedge compression fracture of first lumbar vertebra, sequela +S32011A Stable burst fracture of first lumbar vertebra, initial encounter for closed fracture +S32011B Stable burst fracture of first lumbar vertebra, initial encounter for open fracture +S32011D Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing +S32011G Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing +S32011K Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion +S32011S Stable burst fracture of first lumbar vertebra, sequela +S32012A Unstable burst fracture of first lumbar vertebra, initial encounter for closed fracture +S32012B Unstable burst fracture of first lumbar vertebra, initial encounter for open fracture +S32012D Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing +S32012G Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing +S32012K Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion +S32012S Unstable burst fracture of first lumbar vertebra, sequela +S32018A Other fracture of first lumbar vertebra, initial encounter for closed fracture +S32018B Other fracture of first lumbar vertebra, initial encounter for open fracture +S32018D Other fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing +S32018G Other fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing +S32018K Other fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion +S32018S Other fracture of first lumbar vertebra, sequela +S32019A Unspecified fracture of first lumbar vertebra, initial encounter for closed fracture +S32019B Unspecified fracture of first lumbar vertebra, initial encounter for open fracture +S32019D Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing +S32019G Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing +S32019K Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion +S32019S Unspecified fracture of first lumbar vertebra, sequela +S32020A Wedge compression fracture of second lumbar vertebra, initial encounter for closed fracture +S32020B Wedge compression fracture of second lumbar vertebra, initial encounter for open fracture +S32020D Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing +S32020G Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing +S32020K Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion +S32020S Wedge compression fracture of second lumbar vertebra, sequela +S32021A Stable burst fracture of second lumbar vertebra, initial encounter for closed fracture +S32021B Stable burst fracture of second lumbar vertebra, initial encounter for open fracture +S32021D Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing +S32021G Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing +S32021K Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion +S32021S Stable burst fracture of second lumbar vertebra, sequela +S32022A Unstable burst fracture of second lumbar vertebra, initial encounter for closed fracture +S32022B Unstable burst fracture of second lumbar vertebra, initial encounter for open fracture +S32022D Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing +S32022G Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing +S32022K Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion +S32022S Unstable burst fracture of second lumbar vertebra, sequela +S32028A Other fracture of second lumbar vertebra, initial encounter for closed fracture +S32028B Other fracture of second lumbar vertebra, initial encounter for open fracture +S32028D Other fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing +S32028G Other fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing +S32028K Other fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion +S32028S Other fracture of second lumbar vertebra, sequela +S32029A Unspecified fracture of second lumbar vertebra, initial encounter for closed fracture +S32029B Unspecified fracture of second lumbar vertebra, initial encounter for open fracture +S32029D Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing +S32029G Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing +S32029K Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion +S32029S Unspecified fracture of second lumbar vertebra, sequela +S32030A Wedge compression fracture of third lumbar vertebra, initial encounter for closed fracture +S32030B Wedge compression fracture of third lumbar vertebra, initial encounter for open fracture +S32030D Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing +S32030G Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing +S32030K Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion +S32030S Wedge compression fracture of third lumbar vertebra, sequela +S32031A Stable burst fracture of third lumbar vertebra, initial encounter for closed fracture +S32031B Stable burst fracture of third lumbar vertebra, initial encounter for open fracture +S32031D Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing +S32031G Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing +S32031K Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion +S32031S Stable burst fracture of third lumbar vertebra, sequela +S32032A Unstable burst fracture of third lumbar vertebra, initial encounter for closed fracture +S32032B Unstable burst fracture of third lumbar vertebra, initial encounter for open fracture +S32032D Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing +S32032G Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing +S32032K Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion +S32032S Unstable burst fracture of third lumbar vertebra, sequela +S32038A Other fracture of third lumbar vertebra, initial encounter for closed fracture +S32038B Other fracture of third lumbar vertebra, initial encounter for open fracture +S32038D Other fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing +S32038G Other fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing +S32038K Other fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion +S32038S Other fracture of third lumbar vertebra, sequela +S32039A Unspecified fracture of third lumbar vertebra, initial encounter for closed fracture +S32039B Unspecified fracture of third lumbar vertebra, initial encounter for open fracture +S32039D Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing +S32039G Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing +S32039K Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion +S32039S Unspecified fracture of third lumbar vertebra, sequela +S32040A Wedge compression fracture of fourth lumbar vertebra, initial encounter for closed fracture +S32040B Wedge compression fracture of fourth lumbar vertebra, initial encounter for open fracture +S32040D Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing +S32040G Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing +S32040K Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion +S32040S Wedge compression fracture of fourth lumbar vertebra, sequela +S32041A Stable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture +S32041B Stable burst fracture of fourth lumbar vertebra, initial encounter for open fracture +S32041D Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing +S32041G Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing +S32041K Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion +S32041S Stable burst fracture of fourth lumbar vertebra, sequela +S32042A Unstable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture +S32042B Unstable burst fracture of fourth lumbar vertebra, initial encounter for open fracture +S32042D Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing +S32042G Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing +S32042K Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion +S32042S Unstable burst fracture of fourth lumbar vertebra, sequela +S32048A Other fracture of fourth lumbar vertebra, initial encounter for closed fracture +S32048B Other fracture of fourth lumbar vertebra, initial encounter for open fracture +S32048D Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing +S32048G Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing +S32048K Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion +S32048S Other fracture of fourth lumbar vertebra, sequela +S32049A Unspecified fracture of fourth lumbar vertebra, initial encounter for closed fracture +S32049B Unspecified fracture of fourth lumbar vertebra, initial encounter for open fracture +S32049D Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing +S32049G Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing +S32049K Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion +S32049S Unspecified fracture of fourth lumbar vertebra, sequela +S32050A Wedge compression fracture of fifth lumbar vertebra, initial encounter for closed fracture +S32050B Wedge compression fracture of fifth lumbar vertebra, initial encounter for open fracture +S32050D Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing +S32050G Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing +S32050K Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion +S32050S Wedge compression fracture of fifth lumbar vertebra, sequela +S32051A Stable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture +S32051B Stable burst fracture of fifth lumbar vertebra, initial encounter for open fracture +S32051D Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing +S32051G Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing +S32051K Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion +S32051S Stable burst fracture of fifth lumbar vertebra, sequela +S32052A Unstable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture +S32052B Unstable burst fracture of fifth lumbar vertebra, initial encounter for open fracture +S32052D Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing +S32052G Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing +S32052K Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion +S32052S Unstable burst fracture of fifth lumbar vertebra, sequela +S32058A Other fracture of fifth lumbar vertebra, initial encounter for closed fracture +S32058B Other fracture of fifth lumbar vertebra, initial encounter for open fracture +S32058D Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing +S32058G Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing +S32058K Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion +S32058S Other fracture of fifth lumbar vertebra, sequela +S32059A Unspecified fracture of fifth lumbar vertebra, initial encounter for closed fracture +S32059B Unspecified fracture of fifth lumbar vertebra, initial encounter for open fracture +S32059D Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing +S32059G Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing +S32059K Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion +S32059S Unspecified fracture of fifth lumbar vertebra, sequela +S3210XA Unspecified fracture of sacrum, initial encounter for closed fracture +S3210XB Unspecified fracture of sacrum, initial encounter for open fracture +S3210XD Unspecified fracture of sacrum, subsequent encounter for fracture with routine healing +S3210XG Unspecified fracture of sacrum, subsequent encounter for fracture with delayed healing +S3210XK Unspecified fracture of sacrum, subsequent encounter for fracture with nonunion +S3210XS Unspecified fracture of sacrum, sequela +S32110A Nondisplaced Zone I fracture of sacrum, initial encounter for closed fracture +S32110B Nondisplaced Zone I fracture of sacrum, initial encounter for open fracture +S32110D Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing +S32110G Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing +S32110K Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion +S32110S Nondisplaced Zone I fracture of sacrum, sequela +S32111A Minimally displaced Zone I fracture of sacrum, initial encounter for closed fracture +S32111B Minimally displaced Zone I fracture of sacrum, initial encounter for open fracture +S32111D Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing +S32111G Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing +S32111K Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion +S32111S Minimally displaced Zone I fracture of sacrum, sequela +S32112A Severely displaced Zone I fracture of sacrum, initial encounter for closed fracture +S32112B Severely displaced Zone I fracture of sacrum, initial encounter for open fracture +S32112D Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing +S32112G Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing +S32112K Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion +S32112S Severely displaced Zone I fracture of sacrum, sequela +S32119A Unspecified Zone I fracture of sacrum, initial encounter for closed fracture +S32119B Unspecified Zone I fracture of sacrum, initial encounter for open fracture +S32119D Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with routine healing +S32119G Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing +S32119K Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with nonunion +S32119S Unspecified Zone I fracture of sacrum, sequela +S32120A Nondisplaced Zone II fracture of sacrum, initial encounter for closed fracture +S32120B Nondisplaced Zone II fracture of sacrum, initial encounter for open fracture +S32120D Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing +S32120G Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing +S32120K Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion +S32120S Nondisplaced Zone II fracture of sacrum, sequela +S32121A Minimally displaced Zone II fracture of sacrum, initial encounter for closed fracture +S32121B Minimally displaced Zone II fracture of sacrum, initial encounter for open fracture +S32121D Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing +S32121G Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing +S32121K Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion +S32121S Minimally displaced Zone II fracture of sacrum, sequela +S32122A Severely displaced Zone II fracture of sacrum, initial encounter for closed fracture +S32122B Severely displaced Zone II fracture of sacrum, initial encounter for open fracture +S32122D Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing +S32122G Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing +S32122K Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion +S32122S Severely displaced Zone II fracture of sacrum, sequela +S32129A Unspecified Zone II fracture of sacrum, initial encounter for closed fracture +S32129B Unspecified Zone II fracture of sacrum, initial encounter for open fracture +S32129D Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with routine healing +S32129G Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing +S32129K Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with nonunion +S32129S Unspecified Zone II fracture of sacrum, sequela +S32130A Nondisplaced Zone III fracture of sacrum, initial encounter for closed fracture +S32130B Nondisplaced Zone III fracture of sacrum, initial encounter for open fracture +S32130D Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing +S32130G Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing +S32130K Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion +S32130S Nondisplaced Zone III fracture of sacrum, sequela +S32131A Minimally displaced Zone III fracture of sacrum, initial encounter for closed fracture +S32131B Minimally displaced Zone III fracture of sacrum, initial encounter for open fracture +S32131D Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing +S32131G Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing +S32131K Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion +S32131S Minimally displaced Zone III fracture of sacrum, sequela +S32132A Severely displaced Zone III fracture of sacrum, initial encounter for closed fracture +S32132B Severely displaced Zone III fracture of sacrum, initial encounter for open fracture +S32132D Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing +S32132G Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing +S32132K Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion +S32132S Severely displaced Zone III fracture of sacrum, sequela +S32139A Unspecified Zone III fracture of sacrum, initial encounter for closed fracture +S32139B Unspecified Zone III fracture of sacrum, initial encounter for open fracture +S32139D Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with routine healing +S32139G Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing +S32139K Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with nonunion +S32139S Unspecified Zone III fracture of sacrum, sequela +S3214XA Type 1 fracture of sacrum, initial encounter for closed fracture +S3214XB Type 1 fracture of sacrum, initial encounter for open fracture +S3214XD Type 1 fracture of sacrum, subsequent encounter for fracture with routine healing +S3214XG Type 1 fracture of sacrum, subsequent encounter for fracture with delayed healing +S3214XK Type 1 fracture of sacrum, subsequent encounter for fracture with nonunion +S3214XS Type 1 fracture of sacrum, sequela +S3215XA Type 2 fracture of sacrum, initial encounter for closed fracture +S3215XB Type 2 fracture of sacrum, initial encounter for open fracture +S3215XD Type 2 fracture of sacrum, subsequent encounter for fracture with routine healing +S3215XG Type 2 fracture of sacrum, subsequent encounter for fracture with delayed healing +S3215XK Type 2 fracture of sacrum, subsequent encounter for fracture with nonunion +S3215XS Type 2 fracture of sacrum, sequela +S3216XA Type 3 fracture of sacrum, initial encounter for closed fracture +S3216XB Type 3 fracture of sacrum, initial encounter for open fracture +S3216XD Type 3 fracture of sacrum, subsequent encounter for fracture with routine healing +S3216XG Type 3 fracture of sacrum, subsequent encounter for fracture with delayed healing +S3216XK Type 3 fracture of sacrum, subsequent encounter for fracture with nonunion +S3216XS Type 3 fracture of sacrum, sequela +S3217XA Type 4 fracture of sacrum, initial encounter for closed fracture +S3217XB Type 4 fracture of sacrum, initial encounter for open fracture +S3217XD Type 4 fracture of sacrum, subsequent encounter for fracture with routine healing +S3217XG Type 4 fracture of sacrum, subsequent encounter for fracture with delayed healing +S3217XK Type 4 fracture of sacrum, subsequent encounter for fracture with nonunion +S3217XS Type 4 fracture of sacrum, sequela +S3219XA Other fracture of sacrum, initial encounter for closed fracture +S3219XB Other fracture of sacrum, initial encounter for open fracture +S3219XD Other fracture of sacrum, subsequent encounter for fracture with routine healing +S3219XG Other fracture of sacrum, subsequent encounter for fracture with delayed healing +S3219XK Other fracture of sacrum, subsequent encounter for fracture with nonunion +S3219XS Other fracture of sacrum, sequela +S322XXA Fracture of coccyx, initial encounter for closed fracture +S322XXB Fracture of coccyx, initial encounter for open fracture +S322XXD Fracture of coccyx, subsequent encounter for fracture with routine healing +S322XXG Fracture of coccyx, subsequent encounter for fracture with delayed healing +S322XXK Fracture of coccyx, subsequent encounter for fracture with nonunion +S322XXS Fracture of coccyx, sequela +S32301A Unspecified fracture of right ilium, initial encounter for closed fracture +S32301B Unspecified fracture of right ilium, initial encounter for open fracture +S32301D Unspecified fracture of right ilium, subsequent encounter for fracture with routine healing +S32301G Unspecified fracture of right ilium, subsequent encounter for fracture with delayed healing +S32301K Unspecified fracture of right ilium, subsequent encounter for fracture with nonunion +S32301S Unspecified fracture of right ilium, sequela +S32302A Unspecified fracture of left ilium, initial encounter for closed fracture +S32302B Unspecified fracture of left ilium, initial encounter for open fracture +S32302D Unspecified fracture of left ilium, subsequent encounter for fracture with routine healing +S32302G Unspecified fracture of left ilium, subsequent encounter for fracture with delayed healing +S32302K Unspecified fracture of left ilium, subsequent encounter for fracture with nonunion +S32302S Unspecified fracture of left ilium, sequela +S32309A Unspecified fracture of unspecified ilium, initial encounter for closed fracture +S32309B Unspecified fracture of unspecified ilium, initial encounter for open fracture +S32309D Unspecified fracture of unspecified ilium, subsequent encounter for fracture with routine healing +S32309G Unspecified fracture of unspecified ilium, subsequent encounter for fracture with delayed healing +S32309K Unspecified fracture of unspecified ilium, subsequent encounter for fracture with nonunion +S32309S Unspecified fracture of unspecified ilium, sequela +S32311A Displaced avulsion fracture of right ilium, initial encounter for closed fracture +S32311B Displaced avulsion fracture of right ilium, initial encounter for open fracture +S32311D Displaced avulsion fracture of right ilium, subsequent encounter for fracture with routine healing +S32311G Displaced avulsion fracture of right ilium, subsequent encounter for fracture with delayed healing +S32311K Displaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion +S32311S Displaced avulsion fracture of right ilium, sequela +S32312A Displaced avulsion fracture of left ilium, initial encounter for closed fracture +S32312B Displaced avulsion fracture of left ilium, initial encounter for open fracture +S32312D Displaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing +S32312G Displaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing +S32312K Displaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion +S32312S Displaced avulsion fracture of left ilium, sequela +S32313A Displaced avulsion fracture of unspecified ilium, initial encounter for closed fracture +S32313B Displaced avulsion fracture of unspecified ilium, initial encounter for open fracture +S32313D Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with routine healing +S32313G Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with delayed healing +S32313K Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion +S32313S Displaced avulsion fracture of unspecified ilium, sequela +S32314A Nondisplaced avulsion fracture of right ilium, initial encounter for closed fracture +S32314B Nondisplaced avulsion fracture of right ilium, initial encounter for open fracture +S32314D Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with routine healing +S32314G Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with delayed healing +S32314K Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion +S32314S Nondisplaced avulsion fracture of right ilium, sequela +S32315A Nondisplaced avulsion fracture of left ilium, initial encounter for closed fracture +S32315B Nondisplaced avulsion fracture of left ilium, initial encounter for open fracture +S32315D Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing +S32315G Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing +S32315K Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion +S32315S Nondisplaced avulsion fracture of left ilium, sequela +S32316A Nondisplaced avulsion fracture of unspecified ilium, initial encounter for closed fracture +S32316B Nondisplaced avulsion fracture of unspecified ilium, initial encounter for open fracture +S32316D Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with routine healing +S32316G Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with delayed healing +S32316K Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion +S32316S Nondisplaced avulsion fracture of unspecified ilium, sequela +S32391A Other fracture of right ilium, initial encounter for closed fracture +S32391B Other fracture of right ilium, initial encounter for open fracture +S32391D Other fracture of right ilium, subsequent encounter for fracture with routine healing +S32391G Other fracture of right ilium, subsequent encounter for fracture with delayed healing +S32391K Other fracture of right ilium, subsequent encounter for fracture with nonunion +S32391S Other fracture of right ilium, sequela +S32392A Other fracture of left ilium, initial encounter for closed fracture +S32392B Other fracture of left ilium, initial encounter for open fracture +S32392D Other fracture of left ilium, subsequent encounter for fracture with routine healing +S32392G Other fracture of left ilium, subsequent encounter for fracture with delayed healing +S32392K Other fracture of left ilium, subsequent encounter for fracture with nonunion +S32392S Other fracture of left ilium, sequela +S32399A Other fracture of unspecified ilium, initial encounter for closed fracture +S32399B Other fracture of unspecified ilium, initial encounter for open fracture +S32399D Other fracture of unspecified ilium, subsequent encounter for fracture with routine healing +S32399G Other fracture of unspecified ilium, subsequent encounter for fracture with delayed healing +S32399K Other fracture of unspecified ilium, subsequent encounter for fracture with nonunion +S32399S Other fracture of unspecified ilium, sequela +S32401A Unspecified fracture of right acetabulum, initial encounter for closed fracture +S32401B Unspecified fracture of right acetabulum, initial encounter for open fracture +S32401D Unspecified fracture of right acetabulum, subsequent encounter for fracture with routine healing +S32401G Unspecified fracture of right acetabulum, subsequent encounter for fracture with delayed healing +S32401K Unspecified fracture of right acetabulum, subsequent encounter for fracture with nonunion +S32401S Unspecified fracture of right acetabulum, sequela +S32402A Unspecified fracture of left acetabulum, initial encounter for closed fracture +S32402B Unspecified fracture of left acetabulum, initial encounter for open fracture +S32402D Unspecified fracture of left acetabulum, subsequent encounter for fracture with routine healing +S32402G Unspecified fracture of left acetabulum, subsequent encounter for fracture with delayed healing +S32402K Unspecified fracture of left acetabulum, subsequent encounter for fracture with nonunion +S32402S Unspecified fracture of left acetabulum, sequela +S32409A Unspecified fracture of unspecified acetabulum, initial encounter for closed fracture +S32409B Unspecified fracture of unspecified acetabulum, initial encounter for open fracture +S32409D Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32409G Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32409K Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32409S Unspecified fracture of unspecified acetabulum, sequela +S32411A Displaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture +S32411B Displaced fracture of anterior wall of right acetabulum, initial encounter for open fracture +S32411D Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with routine healing +S32411G Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with delayed healing +S32411K Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with nonunion +S32411S Displaced fracture of anterior wall of right acetabulum, sequela +S32412A Displaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture +S32412B Displaced fracture of anterior wall of left acetabulum, initial encounter for open fracture +S32412D Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with routine healing +S32412G Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with delayed healing +S32412K Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with nonunion +S32412S Displaced fracture of anterior wall of left acetabulum, sequela +S32413A Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for closed fracture +S32413B Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for open fracture +S32413D Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32413G Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32413K Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32413S Displaced fracture of anterior wall of unspecified acetabulum, sequela +S32414A Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture +S32414B Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for open fracture +S32414D Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with routine healing +S32414G Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with delayed healing +S32414K Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with nonunion +S32414S Nondisplaced fracture of anterior wall of right acetabulum, sequela +S32415A Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture +S32415B Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for open fracture +S32415D Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with routine healing +S32415G Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with delayed healing +S32415K Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with nonunion +S32415S Nondisplaced fracture of anterior wall of left acetabulum, sequela +S32416A Nondisplaced fracture of anterior wall of unspecified acetabulum, initial encounter for closed fracture +S32416B Nondisplaced fracture of anterior wall of unspecified acetabulum, initial encounter for open fracture +S32416D Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32416G Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32416K Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32416S Nondisplaced fracture of anterior wall of unspecified acetabulum, sequela +S32421A Displaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture +S32421B Displaced fracture of posterior wall of right acetabulum, initial encounter for open fracture +S32421D Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with routine healing +S32421G Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with delayed healing +S32421K Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with nonunion +S32421S Displaced fracture of posterior wall of right acetabulum, sequela +S32422A Displaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture +S32422B Displaced fracture of posterior wall of left acetabulum, initial encounter for open fracture +S32422D Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with routine healing +S32422G Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with delayed healing +S32422K Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with nonunion +S32422S Displaced fracture of posterior wall of left acetabulum, sequela +S32423A Displaced fracture of posterior wall of unspecified acetabulum, initial encounter for closed fracture +S32423B Displaced fracture of posterior wall of unspecified acetabulum, initial encounter for open fracture +S32423D Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32423G Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32423K Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32423S Displaced fracture of posterior wall of unspecified acetabulum, sequela +S32424A Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture +S32424B Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for open fracture +S32424D Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with routine healing +S32424G Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with delayed healing +S32424K Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with nonunion +S32424S Nondisplaced fracture of posterior wall of right acetabulum, sequela +S32425A Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture +S32425B Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for open fracture +S32425D Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with routine healing +S32425G Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with delayed healing +S32425K Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with nonunion +S32425S Nondisplaced fracture of posterior wall of left acetabulum, sequela +S32426A Nondisplaced fracture of posterior wall of unspecified acetabulum, initial encounter for closed fracture +S32426B Nondisplaced fracture of posterior wall of unspecified acetabulum, initial encounter for open fracture +S32426D Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32426G Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32426K Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32426S Nondisplaced fracture of posterior wall of unspecified acetabulum, sequela +S32431A Displaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for closed fracture +S32431B Displaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for open fracture +S32431D Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with routine healing +S32431G Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with delayed healing +S32431K Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with nonunion +S32431S Displaced fracture of anterior column [iliopubic] of right acetabulum, sequela +S32432A Displaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for closed fracture +S32432B Displaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for open fracture +S32432D Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with routine healing +S32432G Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with delayed healing +S32432K Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with nonunion +S32432S Displaced fracture of anterior column [iliopubic] of left acetabulum, sequela +S32433A Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for closed fracture +S32433B Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for open fracture +S32433D Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32433G Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32433K Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32433S Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela +S32434A Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for closed fracture +S32434B Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for open fracture +S32434D Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with routine healing +S32434G Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with delayed healing +S32434K Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with nonunion +S32434S Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, sequela +S32435A Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for closed fracture +S32435B Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for open fracture +S32435D Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with routine healing +S32435G Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with delayed healing +S32435K Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with nonunion +S32435S Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, sequela +S32436A Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for closed fracture +S32436B Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for open fracture +S32436D Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32436G Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32436K Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32436S Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela +S32441A Displaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for closed fracture +S32441B Displaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for open fracture +S32441D Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with routine healing +S32441G Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with delayed healing +S32441K Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with nonunion +S32441S Displaced fracture of posterior column [ilioischial] of right acetabulum, sequela +S32442A Displaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for closed fracture +S32442B Displaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for open fracture +S32442D Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with routine healing +S32442G Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with delayed healing +S32442K Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with nonunion +S32442S Displaced fracture of posterior column [ilioischial] of left acetabulum, sequela +S32443A Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for closed fracture +S32443B Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for open fracture +S32443D Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32443G Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32443K Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32443S Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela +S32444A Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for closed fracture +S32444B Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for open fracture +S32444D Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with routine healing +S32444G Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with delayed healing +S32444K Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with nonunion +S32444S Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, sequela +S32445A Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for closed fracture +S32445B Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for open fracture +S32445D Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with routine healing +S32445G Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with delayed healing +S32445K Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with nonunion +S32445S Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, sequela +S32446A Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for closed fracture +S32446B Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for open fracture +S32446D Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32446G Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32446K Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32446S Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela +S32451A Displaced transverse fracture of right acetabulum, initial encounter for closed fracture +S32451B Displaced transverse fracture of right acetabulum, initial encounter for open fracture +S32451D Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with routine healing +S32451G Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with delayed healing +S32451K Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with nonunion +S32451S Displaced transverse fracture of right acetabulum, sequela +S32452A Displaced transverse fracture of left acetabulum, initial encounter for closed fracture +S32452B Displaced transverse fracture of left acetabulum, initial encounter for open fracture +S32452D Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with routine healing +S32452G Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with delayed healing +S32452K Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion +S32452S Displaced transverse fracture of left acetabulum, sequela +S32453A Displaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture +S32453B Displaced transverse fracture of unspecified acetabulum, initial encounter for open fracture +S32453D Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32453G Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32453K Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32453S Displaced transverse fracture of unspecified acetabulum, sequela +S32454A Nondisplaced transverse fracture of right acetabulum, initial encounter for closed fracture +S32454B Nondisplaced transverse fracture of right acetabulum, initial encounter for open fracture +S32454D Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with routine healing +S32454G Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with delayed healing +S32454K Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with nonunion +S32454S Nondisplaced transverse fracture of right acetabulum, sequela +S32455A Nondisplaced transverse fracture of left acetabulum, initial encounter for closed fracture +S32455B Nondisplaced transverse fracture of left acetabulum, initial encounter for open fracture +S32455D Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with routine healing +S32455G Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with delayed healing +S32455K Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion +S32455S Nondisplaced transverse fracture of left acetabulum, sequela +S32456A Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture +S32456B Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for open fracture +S32456D Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32456G Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32456K Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32456S Nondisplaced transverse fracture of unspecified acetabulum, sequela +S32461A Displaced associated transverse-posterior fracture of right acetabulum, initial encounter for closed fracture +S32461B Displaced associated transverse-posterior fracture of right acetabulum, initial encounter for open fracture +S32461D Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with routine healing +S32461G Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with delayed healing +S32461K Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with nonunion +S32461S Displaced associated transverse-posterior fracture of right acetabulum, sequela +S32462A Displaced associated transverse-posterior fracture of left acetabulum, initial encounter for closed fracture +S32462B Displaced associated transverse-posterior fracture of left acetabulum, initial encounter for open fracture +S32462D Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with routine healing +S32462G Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with delayed healing +S32462K Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with nonunion +S32462S Displaced associated transverse-posterior fracture of left acetabulum, sequela +S32463A Displaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for closed fracture +S32463B Displaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for open fracture +S32463D Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32463G Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32463K Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32463S Displaced associated transverse-posterior fracture of unspecified acetabulum, sequela +S32464A Nondisplaced associated transverse-posterior fracture of right acetabulum, initial encounter for closed fracture +S32464B Nondisplaced associated transverse-posterior fracture of right acetabulum, initial encounter for open fracture +S32464D Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with routine healing +S32464G Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with delayed healing +S32464K Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with nonunion +S32464S Nondisplaced associated transverse-posterior fracture of right acetabulum, sequela +S32465A Nondisplaced associated transverse-posterior fracture of left acetabulum, initial encounter for closed fracture +S32465B Nondisplaced associated transverse-posterior fracture of left acetabulum, initial encounter for open fracture +S32465D Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with routine healing +S32465G Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with delayed healing +S32465K Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with nonunion +S32465S Nondisplaced associated transverse-posterior fracture of left acetabulum, sequela +S32466A Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for closed fracture +S32466B Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for open fracture +S32466D Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32466G Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32466K Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32466S Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, sequela +S32471A Displaced fracture of medial wall of right acetabulum, initial encounter for closed fracture +S32471B Displaced fracture of medial wall of right acetabulum, initial encounter for open fracture +S32471D Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with routine healing +S32471G Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with delayed healing +S32471K Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with nonunion +S32471S Displaced fracture of medial wall of right acetabulum, sequela +S32472A Displaced fracture of medial wall of left acetabulum, initial encounter for closed fracture +S32472B Displaced fracture of medial wall of left acetabulum, initial encounter for open fracture +S32472D Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with routine healing +S32472G Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with delayed healing +S32472K Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with nonunion +S32472S Displaced fracture of medial wall of left acetabulum, sequela +S32473A Displaced fracture of medial wall of unspecified acetabulum, initial encounter for closed fracture +S32473B Displaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture +S32473D Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32473G Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32473K Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32473S Displaced fracture of medial wall of unspecified acetabulum, sequela +S32474A Nondisplaced fracture of medial wall of right acetabulum, initial encounter for closed fracture +S32474B Nondisplaced fracture of medial wall of right acetabulum, initial encounter for open fracture +S32474D Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with routine healing +S32474G Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with delayed healing +S32474K Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with nonunion +S32474S Nondisplaced fracture of medial wall of right acetabulum, sequela +S32475A Nondisplaced fracture of medial wall of left acetabulum, initial encounter for closed fracture +S32475B Nondisplaced fracture of medial wall of left acetabulum, initial encounter for open fracture +S32475D Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with routine healing +S32475G Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with delayed healing +S32475K Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with nonunion +S32475S Nondisplaced fracture of medial wall of left acetabulum, sequela +S32476A Nondisplaced fracture of medial wall of unspecified acetabulum, initial encounter for closed fracture +S32476B Nondisplaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture +S32476D Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32476G Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32476K Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32476S Nondisplaced fracture of medial wall of unspecified acetabulum, sequela +S32481A Displaced dome fracture of right acetabulum, initial encounter for closed fracture +S32481B Displaced dome fracture of right acetabulum, initial encounter for open fracture +S32481D Displaced dome fracture of right acetabulum, subsequent encounter for fracture with routine healing +S32481G Displaced dome fracture of right acetabulum, subsequent encounter for fracture with delayed healing +S32481K Displaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion +S32481S Displaced dome fracture of right acetabulum, sequela +S32482A Displaced dome fracture of left acetabulum, initial encounter for closed fracture +S32482B Displaced dome fracture of left acetabulum, initial encounter for open fracture +S32482D Displaced dome fracture of left acetabulum, subsequent encounter for fracture with routine healing +S32482G Displaced dome fracture of left acetabulum, subsequent encounter for fracture with delayed healing +S32482K Displaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion +S32482S Displaced dome fracture of left acetabulum, sequela +S32483A Displaced dome fracture of unspecified acetabulum, initial encounter for closed fracture +S32483B Displaced dome fracture of unspecified acetabulum, initial encounter for open fracture +S32483D Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32483G Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32483K Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32483S Displaced dome fracture of unspecified acetabulum, sequela +S32484A Nondisplaced dome fracture of right acetabulum, initial encounter for closed fracture +S32484B Nondisplaced dome fracture of right acetabulum, initial encounter for open fracture +S32484D Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with routine healing +S32484G Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with delayed healing +S32484K Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion +S32484S Nondisplaced dome fracture of right acetabulum, sequela +S32485A Nondisplaced dome fracture of left acetabulum, initial encounter for closed fracture +S32485B Nondisplaced dome fracture of left acetabulum, initial encounter for open fracture +S32485D Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with routine healing +S32485G Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with delayed healing +S32485K Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion +S32485S Nondisplaced dome fracture of left acetabulum, sequela +S32486A Nondisplaced dome fracture of unspecified acetabulum, initial encounter for closed fracture +S32486B Nondisplaced dome fracture of unspecified acetabulum, initial encounter for open fracture +S32486D Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32486G Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32486K Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32486S Nondisplaced dome fracture of unspecified acetabulum, sequela +S32491A Other specified fracture of right acetabulum, initial encounter for closed fracture +S32491B Other specified fracture of right acetabulum, initial encounter for open fracture +S32491D Other specified fracture of right acetabulum, subsequent encounter for fracture with routine healing +S32491G Other specified fracture of right acetabulum, subsequent encounter for fracture with delayed healing +S32491K Other specified fracture of right acetabulum, subsequent encounter for fracture with nonunion +S32491S Other specified fracture of right acetabulum, sequela +S32492A Other specified fracture of left acetabulum, initial encounter for closed fracture +S32492B Other specified fracture of left acetabulum, initial encounter for open fracture +S32492D Other specified fracture of left acetabulum, subsequent encounter for fracture with routine healing +S32492G Other specified fracture of left acetabulum, subsequent encounter for fracture with delayed healing +S32492K Other specified fracture of left acetabulum, subsequent encounter for fracture with nonunion +S32492S Other specified fracture of left acetabulum, sequela +S32499A Other specified fracture of unspecified acetabulum, initial encounter for closed fracture +S32499B Other specified fracture of unspecified acetabulum, initial encounter for open fracture +S32499D Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing +S32499G Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing +S32499K Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion +S32499S Other specified fracture of unspecified acetabulum, sequela +S32501A Unspecified fracture of right pubis, initial encounter for closed fracture +S32501B Unspecified fracture of right pubis, initial encounter for open fracture +S32501D Unspecified fracture of right pubis, subsequent encounter for fracture with routine healing +S32501G Unspecified fracture of right pubis, subsequent encounter for fracture with delayed healing +S32501K Unspecified fracture of right pubis, subsequent encounter for fracture with nonunion +S32501S Unspecified fracture of right pubis, sequela +S32502A Unspecified fracture of left pubis, initial encounter for closed fracture +S32502B Unspecified fracture of left pubis, initial encounter for open fracture +S32502D Unspecified fracture of left pubis, subsequent encounter for fracture with routine healing +S32502G Unspecified fracture of left pubis, subsequent encounter for fracture with delayed healing +S32502K Unspecified fracture of left pubis, subsequent encounter for fracture with nonunion +S32502S Unspecified fracture of left pubis, sequela +S32509A Unspecified fracture of unspecified pubis, initial encounter for closed fracture +S32509B Unspecified fracture of unspecified pubis, initial encounter for open fracture +S32509D Unspecified fracture of unspecified pubis, subsequent encounter for fracture with routine healing +S32509G Unspecified fracture of unspecified pubis, subsequent encounter for fracture with delayed healing +S32509K Unspecified fracture of unspecified pubis, subsequent encounter for fracture with nonunion +S32509S Unspecified fracture of unspecified pubis, sequela +S32511A Fracture of superior rim of right pubis, initial encounter for closed fracture +S32511B Fracture of superior rim of right pubis, initial encounter for open fracture +S32511D Fracture of superior rim of right pubis, subsequent encounter for fracture with routine healing +S32511G Fracture of superior rim of right pubis, subsequent encounter for fracture with delayed healing +S32511K Fracture of superior rim of right pubis, subsequent encounter for fracture with nonunion +S32511S Fracture of superior rim of right pubis, sequela +S32512A Fracture of superior rim of left pubis, initial encounter for closed fracture +S32512B Fracture of superior rim of left pubis, initial encounter for open fracture +S32512D Fracture of superior rim of left pubis, subsequent encounter for fracture with routine healing +S32512G Fracture of superior rim of left pubis, subsequent encounter for fracture with delayed healing +S32512K Fracture of superior rim of left pubis, subsequent encounter for fracture with nonunion +S32512S Fracture of superior rim of left pubis, sequela +S32519A Fracture of superior rim of unspecified pubis, initial encounter for closed fracture +S32519B Fracture of superior rim of unspecified pubis, initial encounter for open fracture +S32519D Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with routine healing +S32519G Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with delayed healing +S32519K Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with nonunion +S32519S Fracture of superior rim of unspecified pubis, sequela +S32591A Other specified fracture of right pubis, initial encounter for closed fracture +S32591B Other specified fracture of right pubis, initial encounter for open fracture +S32591D Other specified fracture of right pubis, subsequent encounter for fracture with routine healing +S32591G Other specified fracture of right pubis, subsequent encounter for fracture with delayed healing +S32591K Other specified fracture of right pubis, subsequent encounter for fracture with nonunion +S32591S Other specified fracture of right pubis, sequela +S32592A Other specified fracture of left pubis, initial encounter for closed fracture +S32592B Other specified fracture of left pubis, initial encounter for open fracture +S32592D Other specified fracture of left pubis, subsequent encounter for fracture with routine healing +S32592G Other specified fracture of left pubis, subsequent encounter for fracture with delayed healing +S32592K Other specified fracture of left pubis, subsequent encounter for fracture with nonunion +S32592S Other specified fracture of left pubis, sequela +S32599A Other specified fracture of unspecified pubis, initial encounter for closed fracture +S32599B Other specified fracture of unspecified pubis, initial encounter for open fracture +S32599D Other specified fracture of unspecified pubis, subsequent encounter for fracture with routine healing +S32599G Other specified fracture of unspecified pubis, subsequent encounter for fracture with delayed healing +S32599K Other specified fracture of unspecified pubis, subsequent encounter for fracture with nonunion +S32599S Other specified fracture of unspecified pubis, sequela +S32601A Unspecified fracture of right ischium, initial encounter for closed fracture +S32601B Unspecified fracture of right ischium, initial encounter for open fracture +S32601D Unspecified fracture of right ischium, subsequent encounter for fracture with routine healing +S32601G Unspecified fracture of right ischium, subsequent encounter for fracture with delayed healing +S32601K Unspecified fracture of right ischium, subsequent encounter for fracture with nonunion +S32601S Unspecified fracture of right ischium, sequela +S32602A Unspecified fracture of left ischium, initial encounter for closed fracture +S32602B Unspecified fracture of left ischium, initial encounter for open fracture +S32602D Unspecified fracture of left ischium, subsequent encounter for fracture with routine healing +S32602G Unspecified fracture of left ischium, subsequent encounter for fracture with delayed healing +S32602K Unspecified fracture of left ischium, subsequent encounter for fracture with nonunion +S32602S Unspecified fracture of left ischium, sequela +S32609A Unspecified fracture of unspecified ischium, initial encounter for closed fracture +S32609B Unspecified fracture of unspecified ischium, initial encounter for open fracture +S32609D Unspecified fracture of unspecified ischium, subsequent encounter for fracture with routine healing +S32609G Unspecified fracture of unspecified ischium, subsequent encounter for fracture with delayed healing +S32609K Unspecified fracture of unspecified ischium, subsequent encounter for fracture with nonunion +S32609S Unspecified fracture of unspecified ischium, sequela +S32611A Displaced avulsion fracture of right ischium, initial encounter for closed fracture +S32611B Displaced avulsion fracture of right ischium, initial encounter for open fracture +S32611D Displaced avulsion fracture of right ischium, subsequent encounter for fracture with routine healing +S32611G Displaced avulsion fracture of right ischium, subsequent encounter for fracture with delayed healing +S32611K Displaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion +S32611S Displaced avulsion fracture of right ischium, sequela +S32612A Displaced avulsion fracture of left ischium, initial encounter for closed fracture +S32612B Displaced avulsion fracture of left ischium, initial encounter for open fracture +S32612D Displaced avulsion fracture of left ischium, subsequent encounter for fracture with routine healing +S32612G Displaced avulsion fracture of left ischium, subsequent encounter for fracture with delayed healing +S32612K Displaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion +S32612S Displaced avulsion fracture of left ischium, sequela +S32613A Displaced avulsion fracture of unspecified ischium, initial encounter for closed fracture +S32613B Displaced avulsion fracture of unspecified ischium, initial encounter for open fracture +S32613D Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with routine healing +S32613G Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with delayed healing +S32613K Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with nonunion +S32613S Displaced avulsion fracture of unspecified ischium, sequela +S32614A Nondisplaced avulsion fracture of right ischium, initial encounter for closed fracture +S32614B Nondisplaced avulsion fracture of right ischium, initial encounter for open fracture +S32614D Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with routine healing +S32614G Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with delayed healing +S32614K Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion +S32614S Nondisplaced avulsion fracture of right ischium, sequela +S32615A Nondisplaced avulsion fracture of left ischium, initial encounter for closed fracture +S32615B Nondisplaced avulsion fracture of left ischium, initial encounter for open fracture +S32615D Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with routine healing +S32615G Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with delayed healing +S32615K Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion +S32615S Nondisplaced avulsion fracture of left ischium, sequela +S32616A Nondisplaced avulsion fracture of unspecified ischium, initial encounter for closed fracture +S32616B Nondisplaced avulsion fracture of unspecified ischium, initial encounter for open fracture +S32616D Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with routine healing +S32616G Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with delayed healing +S32616K Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with nonunion +S32616S Nondisplaced avulsion fracture of unspecified ischium, sequela +S32691A Other specified fracture of right ischium, initial encounter for closed fracture +S32691B Other specified fracture of right ischium, initial encounter for open fracture +S32691D Other specified fracture of right ischium, subsequent encounter for fracture with routine healing +S32691G Other specified fracture of right ischium, subsequent encounter for fracture with delayed healing +S32691K Other specified fracture of right ischium, subsequent encounter for fracture with nonunion +S32691S Other specified fracture of right ischium, sequela +S32692A Other specified fracture of left ischium, initial encounter for closed fracture +S32692B Other specified fracture of left ischium, initial encounter for open fracture +S32692D Other specified fracture of left ischium, subsequent encounter for fracture with routine healing +S32692G Other specified fracture of left ischium, subsequent encounter for fracture with delayed healing +S32692K Other specified fracture of left ischium, subsequent encounter for fracture with nonunion +S32692S Other specified fracture of left ischium, sequela +S32699A Other specified fracture of unspecified ischium, initial encounter for closed fracture +S32699B Other specified fracture of unspecified ischium, initial encounter for open fracture +S32699D Other specified fracture of unspecified ischium, subsequent encounter for fracture with routine healing +S32699G Other specified fracture of unspecified ischium, subsequent encounter for fracture with delayed healing +S32699K Other specified fracture of unspecified ischium, subsequent encounter for fracture with nonunion +S32699S Other specified fracture of unspecified ischium, sequela +S32810A Multiple fractures of pelvis with stable disruption of pelvic ring, initial encounter for closed fracture +S32810B Multiple fractures of pelvis with stable disruption of pelvic ring, initial encounter for open fracture +S32810D Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with routine healing +S32810G Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with delayed healing +S32810K Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with nonunion +S32810S Multiple fractures of pelvis with stable disruption of pelvic ring, sequela +S32811A Multiple fractures of pelvis with unstable disruption of pelvic ring, initial encounter for closed fracture +S32811B Multiple fractures of pelvis with unstable disruption of pelvic ring, initial encounter for open fracture +S32811D Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with routine healing +S32811G Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with delayed healing +S32811K Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with nonunion +S32811S Multiple fractures of pelvis with unstable disruption of pelvic ring, sequela +S3282XA Multiple fractures of pelvis without disruption of pelvic ring, initial encounter for closed fracture +S3282XB Multiple fractures of pelvis without disruption of pelvic ring, initial encounter for open fracture +S3282XD Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with routine healing +S3282XG Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with delayed healing +S3282XK Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with nonunion +S3282XS Multiple fractures of pelvis without disruption of pelvic ring, sequela +S3289XA Fracture of other parts of pelvis, initial encounter for closed fracture +S3289XB Fracture of other parts of pelvis, initial encounter for open fracture +S3289XD Fracture of other parts of pelvis, subsequent encounter for fracture with routine healing +S3289XG Fracture of other parts of pelvis, subsequent encounter for fracture with delayed healing +S3289XK Fracture of other parts of pelvis, subsequent encounter for fracture with nonunion +S3289XS Fracture of other parts of pelvis, sequela +S329XXA Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for closed fracture +S329XXB Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for open fracture +S329XXD Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with routine healing +S329XXG Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with delayed healing +S329XXK Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with nonunion +S329XXS Fracture of unspecified parts of lumbosacral spine and pelvis, sequela +S330XXA Traumatic rupture of lumbar intervertebral disc, initial encounter +S330XXD Traumatic rupture of lumbar intervertebral disc, subsequent encounter +S330XXS Traumatic rupture of lumbar intervertebral disc, sequela +S33100A Subluxation of unspecified lumbar vertebra, initial encounter +S33100D Subluxation of unspecified lumbar vertebra, subsequent encounter +S33100S Subluxation of unspecified lumbar vertebra, sequela +S33101A Dislocation of unspecified lumbar vertebra, initial encounter +S33101D Dislocation of unspecified lumbar vertebra, subsequent encounter +S33101S Dislocation of unspecified lumbar vertebra, sequela +S33110A Subluxation of L1/L2 lumbar vertebra, initial encounter +S33110D Subluxation of L1/L2 lumbar vertebra, subsequent encounter +S33110S Subluxation of L1/L2 lumbar vertebra, sequela +S33111A Dislocation of L1/L2 lumbar vertebra, initial encounter +S33111D Dislocation of L1/L2 lumbar vertebra, subsequent encounter +S33111S Dislocation of L1/L2 lumbar vertebra, sequela +S33120A Subluxation of L2/L3 lumbar vertebra, initial encounter +S33120D Subluxation of L2/L3 lumbar vertebra, subsequent encounter +S33120S Subluxation of L2/L3 lumbar vertebra, sequela +S33121A Dislocation of L2/L3 lumbar vertebra, initial encounter +S33121D Dislocation of L2/L3 lumbar vertebra, subsequent encounter +S33121S Dislocation of L2/L3 lumbar vertebra, sequela +S33130A Subluxation of L3/L4 lumbar vertebra, initial encounter +S33130D Subluxation of L3/L4 lumbar vertebra, subsequent encounter +S33130S Subluxation of L3/L4 lumbar vertebra, sequela +S33131A Dislocation of L3/L4 lumbar vertebra, initial encounter +S33131D Dislocation of L3/L4 lumbar vertebra, subsequent encounter +S33131S Dislocation of L3/L4 lumbar vertebra, sequela +S33140A Subluxation of L4/L5 lumbar vertebra, initial encounter +S33140D Subluxation of L4/L5 lumbar vertebra, subsequent encounter +S33140S Subluxation of L4/L5 lumbar vertebra, sequela +S33141A Dislocation of L4/L5 lumbar vertebra, initial encounter +S33141D Dislocation of L4/L5 lumbar vertebra, subsequent encounter +S33141S Dislocation of L4/L5 lumbar vertebra, sequela +S332XXA Dislocation of sacroiliac and sacrococcygeal joint, initial encounter +S332XXD Dislocation of sacroiliac and sacrococcygeal joint, subsequent encounter +S332XXS Dislocation of sacroiliac and sacrococcygeal joint, sequela +S3330XA Dislocation of unspecified parts of lumbar spine and pelvis, initial encounter +S3330XD Dislocation of unspecified parts of lumbar spine and pelvis, subsequent encounter +S3330XS Dislocation of unspecified parts of lumbar spine and pelvis, sequela +S3339XA Dislocation of other parts of lumbar spine and pelvis, initial encounter +S3339XD Dislocation of other parts of lumbar spine and pelvis, subsequent encounter +S3339XS Dislocation of other parts of lumbar spine and pelvis, sequela +S334XXA Traumatic rupture of symphysis pubis, initial encounter +S334XXD Traumatic rupture of symphysis pubis, subsequent encounter +S334XXS Traumatic rupture of symphysis pubis, sequela +S335XXA Sprain of ligaments of lumbar spine, initial encounter +S335XXD Sprain of ligaments of lumbar spine, subsequent encounter +S335XXS Sprain of ligaments of lumbar spine, sequela +S336XXA Sprain of sacroiliac joint, initial encounter +S336XXD Sprain of sacroiliac joint, subsequent encounter +S336XXS Sprain of sacroiliac joint, sequela +S338XXA Sprain of other parts of lumbar spine and pelvis, initial encounter +S338XXD Sprain of other parts of lumbar spine and pelvis, subsequent encounter +S338XXS Sprain of other parts of lumbar spine and pelvis, sequela +S339XXA Sprain of unspecified parts of lumbar spine and pelvis, initial encounter +S339XXD Sprain of unspecified parts of lumbar spine and pelvis, subsequent encounter +S339XXS Sprain of unspecified parts of lumbar spine and pelvis, sequela +S3401XA Concussion and edema of lumbar spinal cord, initial encounter +S3401XD Concussion and edema of lumbar spinal cord, subsequent encounter +S3401XS Concussion and edema of lumbar spinal cord, sequela +S3402XA Concussion and edema of sacral spinal cord, initial encounter +S3402XD Concussion and edema of sacral spinal cord, subsequent encounter +S3402XS Concussion and edema of sacral spinal cord, sequela +S34101A Unspecified injury to L1 level of lumbar spinal cord, initial encounter +S34101D Unspecified injury to L1 level of lumbar spinal cord, subsequent encounter +S34101S Unspecified injury to L1 level of lumbar spinal cord, sequela +S34102A Unspecified injury to L2 level of lumbar spinal cord, initial encounter +S34102D Unspecified injury to L2 level of lumbar spinal cord, subsequent encounter +S34102S Unspecified injury to L2 level of lumbar spinal cord, sequela +S34103A Unspecified injury to L3 level of lumbar spinal cord, initial encounter +S34103D Unspecified injury to L3 level of lumbar spinal cord, subsequent encounter +S34103S Unspecified injury to L3 level of lumbar spinal cord, sequela +S34104A Unspecified injury to L4 level of lumbar spinal cord, initial encounter +S34104D Unspecified injury to L4 level of lumbar spinal cord, subsequent encounter +S34104S Unspecified injury to L4 level of lumbar spinal cord, sequela +S34105A Unspecified injury to L5 level of lumbar spinal cord, initial encounter +S34105D Unspecified injury to L5 level of lumbar spinal cord, subsequent encounter +S34105S Unspecified injury to L5 level of lumbar spinal cord, sequela +S34109A Unspecified injury to unspecified level of lumbar spinal cord, initial encounter +S34109D Unspecified injury to unspecified level of lumbar spinal cord, subsequent encounter +S34109S Unspecified injury to unspecified level of lumbar spinal cord, sequela +S34111A Complete lesion of L1 level of lumbar spinal cord, initial encounter +S34111D Complete lesion of L1 level of lumbar spinal cord, subsequent encounter +S34111S Complete lesion of L1 level of lumbar spinal cord, sequela +S34112A Complete lesion of L2 level of lumbar spinal cord, initial encounter +S34112D Complete lesion of L2 level of lumbar spinal cord, subsequent encounter +S34112S Complete lesion of L2 level of lumbar spinal cord, sequela +S34113A Complete lesion of L3 level of lumbar spinal cord, initial encounter +S34113D Complete lesion of L3 level of lumbar spinal cord, subsequent encounter +S34113S Complete lesion of L3 level of lumbar spinal cord, sequela +S34114A Complete lesion of L4 level of lumbar spinal cord, initial encounter +S34114D Complete lesion of L4 level of lumbar spinal cord, subsequent encounter +S34114S Complete lesion of L4 level of lumbar spinal cord, sequela +S34115A Complete lesion of L5 level of lumbar spinal cord, initial encounter +S34115D Complete lesion of L5 level of lumbar spinal cord, subsequent encounter +S34115S Complete lesion of L5 level of lumbar spinal cord, sequela +S34119A Complete lesion of unspecified level of lumbar spinal cord, initial encounter +S34119D Complete lesion of unspecified level of lumbar spinal cord, subsequent encounter +S34119S Complete lesion of unspecified level of lumbar spinal cord, sequela +S34121A Incomplete lesion of L1 level of lumbar spinal cord, initial encounter +S34121D Incomplete lesion of L1 level of lumbar spinal cord, subsequent encounter +S34121S Incomplete lesion of L1 level of lumbar spinal cord, sequela +S34122A Incomplete lesion of L2 level of lumbar spinal cord, initial encounter +S34122D Incomplete lesion of L2 level of lumbar spinal cord, subsequent encounter +S34122S Incomplete lesion of L2 level of lumbar spinal cord, sequela +S34123A Incomplete lesion of L3 level of lumbar spinal cord, initial encounter +S34123D Incomplete lesion of L3 level of lumbar spinal cord, subsequent encounter +S34123S Incomplete lesion of L3 level of lumbar spinal cord, sequela +S34124A Incomplete lesion of L4 level of lumbar spinal cord, initial encounter +S34124D Incomplete lesion of L4 level of lumbar spinal cord, subsequent encounter +S34124S Incomplete lesion of L4 level of lumbar spinal cord, sequela +S34125A Incomplete lesion of L5 level of lumbar spinal cord, initial encounter +S34125D Incomplete lesion of L5 level of lumbar spinal cord, subsequent encounter +S34125S Incomplete lesion of L5 level of lumbar spinal cord, sequela +S34129A Incomplete lesion of unspecified level of lumbar spinal cord, initial encounter +S34129D Incomplete lesion of unspecified level of lumbar spinal cord, subsequent encounter +S34129S Incomplete lesion of unspecified level of lumbar spinal cord, sequela +S34131A Complete lesion of sacral spinal cord, initial encounter +S34131D Complete lesion of sacral spinal cord, subsequent encounter +S34131S Complete lesion of sacral spinal cord, sequela +S34132A Incomplete lesion of sacral spinal cord, initial encounter +S34132D Incomplete lesion of sacral spinal cord, subsequent encounter +S34132S Incomplete lesion of sacral spinal cord, sequela +S34139A Unspecified injury to sacral spinal cord, initial encounter +S34139D Unspecified injury to sacral spinal cord, subsequent encounter +S34139S Unspecified injury to sacral spinal cord, sequela +S3421XA Injury of nerve root of lumbar spine, initial encounter +S3421XD Injury of nerve root of lumbar spine, subsequent encounter +S3421XS Injury of nerve root of lumbar spine, sequela +S3422XA Injury of nerve root of sacral spine, initial encounter +S3422XD Injury of nerve root of sacral spine, subsequent encounter +S3422XS Injury of nerve root of sacral spine, sequela +S343XXA Injury of cauda equina, initial encounter +S343XXD Injury of cauda equina, subsequent encounter +S343XXS Injury of cauda equina, sequela +S344XXA Injury of lumbosacral plexus, initial encounter +S344XXD Injury of lumbosacral plexus, subsequent encounter +S344XXS Injury of lumbosacral plexus, sequela +S345XXA Injury of lumbar, sacral and pelvic sympathetic nerves, initial encounter +S345XXD Injury of lumbar, sacral and pelvic sympathetic nerves, subsequent encounter +S345XXS Injury of lumbar, sacral and pelvic sympathetic nerves, sequela +S346XXA Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, initial encounter +S346XXD Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, subsequent encounter +S346XXS Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, sequela +S348XXA Injury of other nerves at abdomen, lower back and pelvis level, initial encounter +S348XXD Injury of other nerves at abdomen, lower back and pelvis level, subsequent encounter +S348XXS Injury of other nerves at abdomen, lower back and pelvis level, sequela +S349XXA Injury of unspecified nerves at abdomen, lower back and pelvis level, initial encounter +S349XXD Injury of unspecified nerves at abdomen, lower back and pelvis level, subsequent encounter +S349XXS Injury of unspecified nerves at abdomen, lower back and pelvis level, sequela +S3500XA Unspecified injury of abdominal aorta, initial encounter +S3500XD Unspecified injury of abdominal aorta, subsequent encounter +S3500XS Unspecified injury of abdominal aorta, sequela +S3501XA Minor laceration of abdominal aorta, initial encounter +S3501XD Minor laceration of abdominal aorta, subsequent encounter +S3501XS Minor laceration of abdominal aorta, sequela +S3502XA Major laceration of abdominal aorta, initial encounter +S3502XD Major laceration of abdominal aorta, subsequent encounter +S3502XS Major laceration of abdominal aorta, sequela +S3509XA Other injury of abdominal aorta, initial encounter +S3509XD Other injury of abdominal aorta, subsequent encounter +S3509XS Other injury of abdominal aorta, sequela +S3510XA Unspecified injury of inferior vena cava, initial encounter +S3510XD Unspecified injury of inferior vena cava, subsequent encounter +S3510XS Unspecified injury of inferior vena cava, sequela +S3511XA Minor laceration of inferior vena cava, initial encounter +S3511XD Minor laceration of inferior vena cava, subsequent encounter +S3511XS Minor laceration of inferior vena cava, sequela +S3512XA Major laceration of inferior vena cava, initial encounter +S3512XD Major laceration of inferior vena cava, subsequent encounter +S3512XS Major laceration of inferior vena cava, sequela +S3519XA Other injury of inferior vena cava, initial encounter +S3519XD Other injury of inferior vena cava, subsequent encounter +S3519XS Other injury of inferior vena cava, sequela +S35211A Minor laceration of celiac artery, initial encounter +S35211D Minor laceration of celiac artery, subsequent encounter +S35211S Minor laceration of celiac artery, sequela +S35212A Major laceration of celiac artery, initial encounter +S35212D Major laceration of celiac artery, subsequent encounter +S35212S Major laceration of celiac artery, sequela +S35218A Other injury of celiac artery, initial encounter +S35218D Other injury of celiac artery, subsequent encounter +S35218S Other injury of celiac artery, sequela +S35219A Unspecified injury of celiac artery, initial encounter +S35219D Unspecified injury of celiac artery, subsequent encounter +S35219S Unspecified injury of celiac artery, sequela +S35221A Minor laceration of superior mesenteric artery, initial encounter +S35221D Minor laceration of superior mesenteric artery, subsequent encounter +S35221S Minor laceration of superior mesenteric artery, sequela +S35222A Major laceration of superior mesenteric artery, initial encounter +S35222D Major laceration of superior mesenteric artery, subsequent encounter +S35222S Major laceration of superior mesenteric artery, sequela +S35228A Other injury of superior mesenteric artery, initial encounter +S35228D Other injury of superior mesenteric artery, subsequent encounter +S35228S Other injury of superior mesenteric artery, sequela +S35229A Unspecified injury of superior mesenteric artery, initial encounter +S35229D Unspecified injury of superior mesenteric artery, subsequent encounter +S35229S Unspecified injury of superior mesenteric artery, sequela +S35231A Minor laceration of inferior mesenteric artery, initial encounter +S35231D Minor laceration of inferior mesenteric artery, subsequent encounter +S35231S Minor laceration of inferior mesenteric artery, sequela +S35232A Major laceration of inferior mesenteric artery, initial encounter +S35232D Major laceration of inferior mesenteric artery, subsequent encounter +S35232S Major laceration of inferior mesenteric artery, sequela +S35238A Other injury of inferior mesenteric artery, initial encounter +S35238D Other injury of inferior mesenteric artery, subsequent encounter +S35238S Other injury of inferior mesenteric artery, sequela +S35239A Unspecified injury of inferior mesenteric artery, initial encounter +S35239D Unspecified injury of inferior mesenteric artery, subsequent encounter +S35239S Unspecified injury of inferior mesenteric artery, sequela +S35291A Minor laceration of branches of celiac and mesenteric artery, initial encounter +S35291D Minor laceration of branches of celiac and mesenteric artery, subsequent encounter +S35291S Minor laceration of branches of celiac and mesenteric artery, sequela +S35292A Major laceration of branches of celiac and mesenteric artery, initial encounter +S35292D Major laceration of branches of celiac and mesenteric artery, subsequent encounter +S35292S Major laceration of branches of celiac and mesenteric artery, sequela +S35298A Other injury of branches of celiac and mesenteric artery, initial encounter +S35298D Other injury of branches of celiac and mesenteric artery, subsequent encounter +S35298S Other injury of branches of celiac and mesenteric artery, sequela +S35299A Unspecified injury of branches of celiac and mesenteric artery, initial encounter +S35299D Unspecified injury of branches of celiac and mesenteric artery, subsequent encounter +S35299S Unspecified injury of branches of celiac and mesenteric artery, sequela +S35311A Laceration of portal vein, initial encounter +S35311D Laceration of portal vein, subsequent encounter +S35311S Laceration of portal vein, sequela +S35318A Other specified injury of portal vein, initial encounter +S35318D Other specified injury of portal vein, subsequent encounter +S35318S Other specified injury of portal vein, sequela +S35319A Unspecified injury of portal vein, initial encounter +S35319D Unspecified injury of portal vein, subsequent encounter +S35319S Unspecified injury of portal vein, sequela +S35321A Laceration of splenic vein, initial encounter +S35321D Laceration of splenic vein, subsequent encounter +S35321S Laceration of splenic vein, sequela +S35328A Other specified injury of splenic vein, initial encounter +S35328D Other specified injury of splenic vein, subsequent encounter +S35328S Other specified injury of splenic vein, sequela +S35329A Unspecified injury of splenic vein, initial encounter +S35329D Unspecified injury of splenic vein, subsequent encounter +S35329S Unspecified injury of splenic vein, sequela +S35331A Laceration of superior mesenteric vein, initial encounter +S35331D Laceration of superior mesenteric vein, subsequent encounter +S35331S Laceration of superior mesenteric vein, sequela +S35338A Other specified injury of superior mesenteric vein, initial encounter +S35338D Other specified injury of superior mesenteric vein, subsequent encounter +S35338S Other specified injury of superior mesenteric vein, sequela +S35339A Unspecified injury of superior mesenteric vein, initial encounter +S35339D Unspecified injury of superior mesenteric vein, subsequent encounter +S35339S Unspecified injury of superior mesenteric vein, sequela +S35341A Laceration of inferior mesenteric vein, initial encounter +S35341D Laceration of inferior mesenteric vein, subsequent encounter +S35341S Laceration of inferior mesenteric vein, sequela +S35348A Other specified injury of inferior mesenteric vein, initial encounter +S35348D Other specified injury of inferior mesenteric vein, subsequent encounter +S35348S Other specified injury of inferior mesenteric vein, sequela +S35349A Unspecified injury of inferior mesenteric vein, initial encounter +S35349D Unspecified injury of inferior mesenteric vein, subsequent encounter +S35349S Unspecified injury of inferior mesenteric vein, sequela +S35401A Unspecified injury of right renal artery, initial encounter +S35401D Unspecified injury of right renal artery, subsequent encounter +S35401S Unspecified injury of right renal artery, sequela +S35402A Unspecified injury of left renal artery, initial encounter +S35402D Unspecified injury of left renal artery, subsequent encounter +S35402S Unspecified injury of left renal artery, sequela +S35403A Unspecified injury of unspecified renal artery, initial encounter +S35403D Unspecified injury of unspecified renal artery, subsequent encounter +S35403S Unspecified injury of unspecified renal artery, sequela +S35404A Unspecified injury of right renal vein, initial encounter +S35404D Unspecified injury of right renal vein, subsequent encounter +S35404S Unspecified injury of right renal vein, sequela +S35405A Unspecified injury of left renal vein, initial encounter +S35405D Unspecified injury of left renal vein, subsequent encounter +S35405S Unspecified injury of left renal vein, sequela +S35406A Unspecified injury of unspecified renal vein, initial encounter +S35406D Unspecified injury of unspecified renal vein, subsequent encounter +S35406S Unspecified injury of unspecified renal vein, sequela +S35411A Laceration of right renal artery, initial encounter +S35411D Laceration of right renal artery, subsequent encounter +S35411S Laceration of right renal artery, sequela +S35412A Laceration of left renal artery, initial encounter +S35412D Laceration of left renal artery, subsequent encounter +S35412S Laceration of left renal artery, sequela +S35413A Laceration of unspecified renal artery, initial encounter +S35413D Laceration of unspecified renal artery, subsequent encounter +S35413S Laceration of unspecified renal artery, sequela +S35414A Laceration of right renal vein, initial encounter +S35414D Laceration of right renal vein, subsequent encounter +S35414S Laceration of right renal vein, sequela +S35415A Laceration of left renal vein, initial encounter +S35415D Laceration of left renal vein, subsequent encounter +S35415S Laceration of left renal vein, sequela +S35416A Laceration of unspecified renal vein, initial encounter +S35416D Laceration of unspecified renal vein, subsequent encounter +S35416S Laceration of unspecified renal vein, sequela +S35491A Other specified injury of right renal artery, initial encounter +S35491D Other specified injury of right renal artery, subsequent encounter +S35491S Other specified injury of right renal artery, sequela +S35492A Other specified injury of left renal artery, initial encounter +S35492D Other specified injury of left renal artery, subsequent encounter +S35492S Other specified injury of left renal artery, sequela +S35493A Other specified injury of unspecified renal artery, initial encounter +S35493D Other specified injury of unspecified renal artery, subsequent encounter +S35493S Other specified injury of unspecified renal artery, sequela +S35494A Other specified injury of right renal vein, initial encounter +S35494D Other specified injury of right renal vein, subsequent encounter +S35494S Other specified injury of right renal vein, sequela +S35495A Other specified injury of left renal vein, initial encounter +S35495D Other specified injury of left renal vein, subsequent encounter +S35495S Other specified injury of left renal vein, sequela +S35496A Other specified injury of unspecified renal vein, initial encounter +S35496D Other specified injury of unspecified renal vein, subsequent encounter +S35496S Other specified injury of unspecified renal vein, sequela +S3550XA Injury of unspecified iliac blood vessel(s), initial encounter +S3550XD Injury of unspecified iliac blood vessel(s), subsequent encounter +S3550XS Injury of unspecified iliac blood vessel(s), sequela +S35511A Injury of right iliac artery, initial encounter +S35511D Injury of right iliac artery, subsequent encounter +S35511S Injury of right iliac artery, sequela +S35512A Injury of left iliac artery, initial encounter +S35512D Injury of left iliac artery, subsequent encounter +S35512S Injury of left iliac artery, sequela +S35513A Injury of unspecified iliac artery, initial encounter +S35513D Injury of unspecified iliac artery, subsequent encounter +S35513S Injury of unspecified iliac artery, sequela +S35514A Injury of right iliac vein, initial encounter +S35514D Injury of right iliac vein, subsequent encounter +S35514S Injury of right iliac vein, sequela +S35515A Injury of left iliac vein, initial encounter +S35515D Injury of left iliac vein, subsequent encounter +S35515S Injury of left iliac vein, sequela +S35516A Injury of unspecified iliac vein, initial encounter +S35516D Injury of unspecified iliac vein, subsequent encounter +S35516S Injury of unspecified iliac vein, sequela +S35531A Injury of right uterine artery, initial encounter +S35531D Injury of right uterine artery, subsequent encounter +S35531S Injury of right uterine artery, sequela +S35532A Injury of left uterine artery, initial encounter +S35532D Injury of left uterine artery, subsequent encounter +S35532S Injury of left uterine artery, sequela +S35533A Injury of unspecified uterine artery, initial encounter +S35533D Injury of unspecified uterine artery, subsequent encounter +S35533S Injury of unspecified uterine artery, sequela +S35534A Injury of right uterine vein, initial encounter +S35534D Injury of right uterine vein, subsequent encounter +S35534S Injury of right uterine vein, sequela +S35535A Injury of left uterine vein, initial encounter +S35535D Injury of left uterine vein, subsequent encounter +S35535S Injury of left uterine vein, sequela +S35536A Injury of unspecified uterine vein, initial encounter +S35536D Injury of unspecified uterine vein, subsequent encounter +S35536S Injury of unspecified uterine vein, sequela +S3559XA Injury of other iliac blood vessels, initial encounter +S3559XD Injury of other iliac blood vessels, subsequent encounter +S3559XS Injury of other iliac blood vessels, sequela +S358X1A Laceration of other blood vessels at abdomen, lower back and pelvis level, initial encounter +S358X1D Laceration of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter +S358X1S Laceration of other blood vessels at abdomen, lower back and pelvis level, sequela +S358X8A Other specified injury of other blood vessels at abdomen, lower back and pelvis level, initial encounter +S358X8D Other specified injury of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter +S358X8S Other specified injury of other blood vessels at abdomen, lower back and pelvis level, sequela +S358X9A Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, initial encounter +S358X9D Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter +S358X9S Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, sequela +S3590XA Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter +S3590XD Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter +S3590XS Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela +S3591XA Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter +S3591XD Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter +S3591XS Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, sequela +S3599XA Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter +S3599XD Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter +S3599XS Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela +S3600XA Unspecified injury of spleen, initial encounter +S3600XD Unspecified injury of spleen, subsequent encounter +S3600XS Unspecified injury of spleen, sequela +S36020A Minor contusion of spleen, initial encounter +S36020D Minor contusion of spleen, subsequent encounter +S36020S Minor contusion of spleen, sequela +S36021A Major contusion of spleen, initial encounter +S36021D Major contusion of spleen, subsequent encounter +S36021S Major contusion of spleen, sequela +S36029A Unspecified contusion of spleen, initial encounter +S36029D Unspecified contusion of spleen, subsequent encounter +S36029S Unspecified contusion of spleen, sequela +S36030A Superficial (capsular) laceration of spleen, initial encounter +S36030D Superficial (capsular) laceration of spleen, subsequent encounter +S36030S Superficial (capsular) laceration of spleen, sequela +S36031A Moderate laceration of spleen, initial encounter +S36031D Moderate laceration of spleen, subsequent encounter +S36031S Moderate laceration of spleen, sequela +S36032A Major laceration of spleen, initial encounter +S36032D Major laceration of spleen, subsequent encounter +S36032S Major laceration of spleen, sequela +S36039A Unspecified laceration of spleen, initial encounter +S36039D Unspecified laceration of spleen, subsequent encounter +S36039S Unspecified laceration of spleen, sequela +S3609XA Other injury of spleen, initial encounter +S3609XD Other injury of spleen, subsequent encounter +S3609XS Other injury of spleen, sequela +S36112A Contusion of liver, initial encounter +S36112D Contusion of liver, subsequent encounter +S36112S Contusion of liver, sequela +S36113A Laceration of liver, unspecified degree, initial encounter +S36113D Laceration of liver, unspecified degree, subsequent encounter +S36113S Laceration of liver, unspecified degree, sequela +S36114A Minor laceration of liver, initial encounter +S36114D Minor laceration of liver, subsequent encounter +S36114S Minor laceration of liver, sequela +S36115A Moderate laceration of liver, initial encounter +S36115D Moderate laceration of liver, subsequent encounter +S36115S Moderate laceration of liver, sequela +S36116A Major laceration of liver, initial encounter +S36116D Major laceration of liver, subsequent encounter +S36116S Major laceration of liver, sequela +S36118A Other injury of liver, initial encounter +S36118D Other injury of liver, subsequent encounter +S36118S Other injury of liver, sequela +S36119A Unspecified injury of liver, initial encounter +S36119D Unspecified injury of liver, subsequent encounter +S36119S Unspecified injury of liver, sequela +S36122A Contusion of gallbladder, initial encounter +S36122D Contusion of gallbladder, subsequent encounter +S36122S Contusion of gallbladder, sequela +S36123A Laceration of gallbladder, initial encounter +S36123D Laceration of gallbladder, subsequent encounter +S36123S Laceration of gallbladder, sequela +S36128A Other injury of gallbladder, initial encounter +S36128D Other injury of gallbladder, subsequent encounter +S36128S Other injury of gallbladder, sequela +S36129A Unspecified injury of gallbladder, initial encounter +S36129D Unspecified injury of gallbladder, subsequent encounter +S36129S Unspecified injury of gallbladder, sequela +S3613XA Injury of bile duct, initial encounter +S3613XD Injury of bile duct, subsequent encounter +S3613XS Injury of bile duct, sequela +S36200A Unspecified injury of head of pancreas, initial encounter +S36200D Unspecified injury of head of pancreas, subsequent encounter +S36200S Unspecified injury of head of pancreas, sequela +S36201A Unspecified injury of body of pancreas, initial encounter +S36201D Unspecified injury of body of pancreas, subsequent encounter +S36201S Unspecified injury of body of pancreas, sequela +S36202A Unspecified injury of tail of pancreas, initial encounter +S36202D Unspecified injury of tail of pancreas, subsequent encounter +S36202S Unspecified injury of tail of pancreas, sequela +S36209A Unspecified injury of unspecified part of pancreas, initial encounter +S36209D Unspecified injury of unspecified part of pancreas, subsequent encounter +S36209S Unspecified injury of unspecified part of pancreas, sequela +S36220A Contusion of head of pancreas, initial encounter +S36220D Contusion of head of pancreas, subsequent encounter +S36220S Contusion of head of pancreas, sequela +S36221A Contusion of body of pancreas, initial encounter +S36221D Contusion of body of pancreas, subsequent encounter +S36221S Contusion of body of pancreas, sequela +S36222A Contusion of tail of pancreas, initial encounter +S36222D Contusion of tail of pancreas, subsequent encounter +S36222S Contusion of tail of pancreas, sequela +S36229A Contusion of unspecified part of pancreas, initial encounter +S36229D Contusion of unspecified part of pancreas, subsequent encounter +S36229S Contusion of unspecified part of pancreas, sequela +S36230A Laceration of head of pancreas, unspecified degree, initial encounter +S36230D Laceration of head of pancreas, unspecified degree, subsequent encounter +S36230S Laceration of head of pancreas, unspecified degree, sequela +S36231A Laceration of body of pancreas, unspecified degree, initial encounter +S36231D Laceration of body of pancreas, unspecified degree, subsequent encounter +S36231S Laceration of body of pancreas, unspecified degree, sequela +S36232A Laceration of tail of pancreas, unspecified degree, initial encounter +S36232D Laceration of tail of pancreas, unspecified degree, subsequent encounter +S36232S Laceration of tail of pancreas, unspecified degree, sequela +S36239A Laceration of unspecified part of pancreas, unspecified degree, initial encounter +S36239D Laceration of unspecified part of pancreas, unspecified degree, subsequent encounter +S36239S Laceration of unspecified part of pancreas, unspecified degree, sequela +S36240A Minor laceration of head of pancreas, initial encounter +S36240D Minor laceration of head of pancreas, subsequent encounter +S36240S Minor laceration of head of pancreas, sequela +S36241A Minor laceration of body of pancreas, initial encounter +S36241D Minor laceration of body of pancreas, subsequent encounter +S36241S Minor laceration of body of pancreas, sequela +S36242A Minor laceration of tail of pancreas, initial encounter +S36242D Minor laceration of tail of pancreas, subsequent encounter +S36242S Minor laceration of tail of pancreas, sequela +S36249A Minor laceration of unspecified part of pancreas, initial encounter +S36249D Minor laceration of unspecified part of pancreas, subsequent encounter +S36249S Minor laceration of unspecified part of pancreas, sequela +S36250A Moderate laceration of head of pancreas, initial encounter +S36250D Moderate laceration of head of pancreas, subsequent encounter +S36250S Moderate laceration of head of pancreas, sequela +S36251A Moderate laceration of body of pancreas, initial encounter +S36251D Moderate laceration of body of pancreas, subsequent encounter +S36251S Moderate laceration of body of pancreas, sequela +S36252A Moderate laceration of tail of pancreas, initial encounter +S36252D Moderate laceration of tail of pancreas, subsequent encounter +S36252S Moderate laceration of tail of pancreas, sequela +S36259A Moderate laceration of unspecified part of pancreas, initial encounter +S36259D Moderate laceration of unspecified part of pancreas, subsequent encounter +S36259S Moderate laceration of unspecified part of pancreas, sequela +S36260A Major laceration of head of pancreas, initial encounter +S36260D Major laceration of head of pancreas, subsequent encounter +S36260S Major laceration of head of pancreas, sequela +S36261A Major laceration of body of pancreas, initial encounter +S36261D Major laceration of body of pancreas, subsequent encounter +S36261S Major laceration of body of pancreas, sequela +S36262A Major laceration of tail of pancreas, initial encounter +S36262D Major laceration of tail of pancreas, subsequent encounter +S36262S Major laceration of tail of pancreas, sequela +S36269A Major laceration of unspecified part of pancreas, initial encounter +S36269D Major laceration of unspecified part of pancreas, subsequent encounter +S36269S Major laceration of unspecified part of pancreas, sequela +S36290A Other injury of head of pancreas, initial encounter +S36290D Other injury of head of pancreas, subsequent encounter +S36290S Other injury of head of pancreas, sequela +S36291A Other injury of body of pancreas, initial encounter +S36291D Other injury of body of pancreas, subsequent encounter +S36291S Other injury of body of pancreas, sequela +S36292A Other injury of tail of pancreas, initial encounter +S36292D Other injury of tail of pancreas, subsequent encounter +S36292S Other injury of tail of pancreas, sequela +S36299A Other injury of unspecified part of pancreas, initial encounter +S36299D Other injury of unspecified part of pancreas, subsequent encounter +S36299S Other injury of unspecified part of pancreas, sequela +S3630XA Unspecified injury of stomach, initial encounter +S3630XD Unspecified injury of stomach, subsequent encounter +S3630XS Unspecified injury of stomach, sequela +S3632XA Contusion of stomach, initial encounter +S3632XD Contusion of stomach, subsequent encounter +S3632XS Contusion of stomach, sequela +S3633XA Laceration of stomach, initial encounter +S3633XD Laceration of stomach, subsequent encounter +S3633XS Laceration of stomach, sequela +S3639XA Other injury of stomach, initial encounter +S3639XD Other injury of stomach, subsequent encounter +S3639XS Other injury of stomach, sequela +S36400A Unspecified injury of duodenum, initial encounter +S36400D Unspecified injury of duodenum, subsequent encounter +S36400S Unspecified injury of duodenum, sequela +S36408A Unspecified injury of other part of small intestine, initial encounter +S36408D Unspecified injury of other part of small intestine, subsequent encounter +S36408S Unspecified injury of other part of small intestine, sequela +S36409A Unspecified injury of unspecified part of small intestine, initial encounter +S36409D Unspecified injury of unspecified part of small intestine, subsequent encounter +S36409S Unspecified injury of unspecified part of small intestine, sequela +S36410A Primary blast injury of duodenum, initial encounter +S36410D Primary blast injury of duodenum, subsequent encounter +S36410S Primary blast injury of duodenum, sequela +S36418A Primary blast injury of other part of small intestine, initial encounter +S36418D Primary blast injury of other part of small intestine, subsequent encounter +S36418S Primary blast injury of other part of small intestine, sequela +S36419A Primary blast injury of unspecified part of small intestine, initial encounter +S36419D Primary blast injury of unspecified part of small intestine, subsequent encounter +S36419S Primary blast injury of unspecified part of small intestine, sequela +S36420A Contusion of duodenum, initial encounter +S36420D Contusion of duodenum, subsequent encounter +S36420S Contusion of duodenum, sequela +S36428A Contusion of other part of small intestine, initial encounter +S36428D Contusion of other part of small intestine, subsequent encounter +S36428S Contusion of other part of small intestine, sequela +S36429A Contusion of unspecified part of small intestine, initial encounter +S36429D Contusion of unspecified part of small intestine, subsequent encounter +S36429S Contusion of unspecified part of small intestine, sequela +S36430A Laceration of duodenum, initial encounter +S36430D Laceration of duodenum, subsequent encounter +S36430S Laceration of duodenum, sequela +S36438A Laceration of other part of small intestine, initial encounter +S36438D Laceration of other part of small intestine, subsequent encounter +S36438S Laceration of other part of small intestine, sequela +S36439A Laceration of unspecified part of small intestine, initial encounter +S36439D Laceration of unspecified part of small intestine, subsequent encounter +S36439S Laceration of unspecified part of small intestine, sequela +S36490A Other injury of duodenum, initial encounter +S36490D Other injury of duodenum, subsequent encounter +S36490S Other injury of duodenum, sequela +S36498A Other injury of other part of small intestine, initial encounter +S36498D Other injury of other part of small intestine, subsequent encounter +S36498S Other injury of other part of small intestine, sequela +S36499A Other injury of unspecified part of small intestine, initial encounter +S36499D Other injury of unspecified part of small intestine, subsequent encounter +S36499S Other injury of unspecified part of small intestine, sequela +S36500A Unspecified injury of ascending [right] colon, initial encounter +S36500D Unspecified injury of ascending [right] colon, subsequent encounter +S36500S Unspecified injury of ascending [right] colon, sequela +S36501A Unspecified injury of transverse colon, initial encounter +S36501D Unspecified injury of transverse colon, subsequent encounter +S36501S Unspecified injury of transverse colon, sequela +S36502A Unspecified injury of descending [left] colon, initial encounter +S36502D Unspecified injury of descending [left] colon, subsequent encounter +S36502S Unspecified injury of descending [left] colon, sequela +S36503A Unspecified injury of sigmoid colon, initial encounter +S36503D Unspecified injury of sigmoid colon, subsequent encounter +S36503S Unspecified injury of sigmoid colon, sequela +S36508A Unspecified injury of other part of colon, initial encounter +S36508D Unspecified injury of other part of colon, subsequent encounter +S36508S Unspecified injury of other part of colon, sequela +S36509A Unspecified injury of unspecified part of colon, initial encounter +S36509D Unspecified injury of unspecified part of colon, subsequent encounter +S36509S Unspecified injury of unspecified part of colon, sequela +S36510A Primary blast injury of ascending [right] colon, initial encounter +S36510D Primary blast injury of ascending [right] colon, subsequent encounter +S36510S Primary blast injury of ascending [right] colon, sequela +S36511A Primary blast injury of transverse colon, initial encounter +S36511D Primary blast injury of transverse colon, subsequent encounter +S36511S Primary blast injury of transverse colon, sequela +S36512A Primary blast injury of descending [left] colon, initial encounter +S36512D Primary blast injury of descending [left] colon, subsequent encounter +S36512S Primary blast injury of descending [left] colon, sequela +S36513A Primary blast injury of sigmoid colon, initial encounter +S36513D Primary blast injury of sigmoid colon, subsequent encounter +S36513S Primary blast injury of sigmoid colon, sequela +S36518A Primary blast injury of other part of colon, initial encounter +S36518D Primary blast injury of other part of colon, subsequent encounter +S36518S Primary blast injury of other part of colon, sequela +S36519A Primary blast injury of unspecified part of colon, initial encounter +S36519D Primary blast injury of unspecified part of colon, subsequent encounter +S36519S Primary blast injury of unspecified part of colon, sequela +S36520A Contusion of ascending [right] colon, initial encounter +S36520D Contusion of ascending [right] colon, subsequent encounter +S36520S Contusion of ascending [right] colon, sequela +S36521A Contusion of transverse colon, initial encounter +S36521D Contusion of transverse colon, subsequent encounter +S36521S Contusion of transverse colon, sequela +S36522A Contusion of descending [left] colon, initial encounter +S36522D Contusion of descending [left] colon, subsequent encounter +S36522S Contusion of descending [left] colon, sequela +S36523A Contusion of sigmoid colon, initial encounter +S36523D Contusion of sigmoid colon, subsequent encounter +S36523S Contusion of sigmoid colon, sequela +S36528A Contusion of other part of colon, initial encounter +S36528D Contusion of other part of colon, subsequent encounter +S36528S Contusion of other part of colon, sequela +S36529A Contusion of unspecified part of colon, initial encounter +S36529D Contusion of unspecified part of colon, subsequent encounter +S36529S Contusion of unspecified part of colon, sequela +S36530A Laceration of ascending [right] colon, initial encounter +S36530D Laceration of ascending [right] colon, subsequent encounter +S36530S Laceration of ascending [right] colon, sequela +S36531A Laceration of transverse colon, initial encounter +S36531D Laceration of transverse colon, subsequent encounter +S36531S Laceration of transverse colon, sequela +S36532A Laceration of descending [left] colon, initial encounter +S36532D Laceration of descending [left] colon, subsequent encounter +S36532S Laceration of descending [left] colon, sequela +S36533A Laceration of sigmoid colon, initial encounter +S36533D Laceration of sigmoid colon, subsequent encounter +S36533S Laceration of sigmoid colon, sequela +S36538A Laceration of other part of colon, initial encounter +S36538D Laceration of other part of colon, subsequent encounter +S36538S Laceration of other part of colon, sequela +S36539A Laceration of unspecified part of colon, initial encounter +S36539D Laceration of unspecified part of colon, subsequent encounter +S36539S Laceration of unspecified part of colon, sequela +S36590A Other injury of ascending [right] colon, initial encounter +S36590D Other injury of ascending [right] colon, subsequent encounter +S36590S Other injury of ascending [right] colon, sequela +S36591A Other injury of transverse colon, initial encounter +S36591D Other injury of transverse colon, subsequent encounter +S36591S Other injury of transverse colon, sequela +S36592A Other injury of descending [left] colon, initial encounter +S36592D Other injury of descending [left] colon, subsequent encounter +S36592S Other injury of descending [left] colon, sequela +S36593A Other injury of sigmoid colon, initial encounter +S36593D Other injury of sigmoid colon, subsequent encounter +S36593S Other injury of sigmoid colon, sequela +S36598A Other injury of other part of colon, initial encounter +S36598D Other injury of other part of colon, subsequent encounter +S36598S Other injury of other part of colon, sequela +S36599A Other injury of unspecified part of colon, initial encounter +S36599D Other injury of unspecified part of colon, subsequent encounter +S36599S Other injury of unspecified part of colon, sequela +S3660XA Unspecified injury of rectum, initial encounter +S3660XD Unspecified injury of rectum, subsequent encounter +S3660XS Unspecified injury of rectum, sequela +S3661XA Primary blast injury of rectum, initial encounter +S3661XD Primary blast injury of rectum, subsequent encounter +S3661XS Primary blast injury of rectum, sequela +S3662XA Contusion of rectum, initial encounter +S3662XD Contusion of rectum, subsequent encounter +S3662XS Contusion of rectum, sequela +S3663XA Laceration of rectum, initial encounter +S3663XD Laceration of rectum, subsequent encounter +S3663XS Laceration of rectum, sequela +S3669XA Other injury of rectum, initial encounter +S3669XD Other injury of rectum, subsequent encounter +S3669XS Other injury of rectum, sequela +S3681XA Injury of peritoneum, initial encounter +S3681XD Injury of peritoneum, subsequent encounter +S3681XS Injury of peritoneum, sequela +S36892A Contusion of other intra-abdominal organs, initial encounter +S36892D Contusion of other intra-abdominal organs, subsequent encounter +S36892S Contusion of other intra-abdominal organs, sequela +S36893A Laceration of other intra-abdominal organs, initial encounter +S36893D Laceration of other intra-abdominal organs, subsequent encounter +S36893S Laceration of other intra-abdominal organs, sequela +S36898A Other injury of other intra-abdominal organs, initial encounter +S36898D Other injury of other intra-abdominal organs, subsequent encounter +S36898S Other injury of other intra-abdominal organs, sequela +S36899A Unspecified injury of other intra-abdominal organs, initial encounter +S36899D Unspecified injury of other intra-abdominal organs, subsequent encounter +S36899S Unspecified injury of other intra-abdominal organs, sequela +S3690XA Unspecified injury of unspecified intra-abdominal organ, initial encounter +S3690XD Unspecified injury of unspecified intra-abdominal organ, subsequent encounter +S3690XS Unspecified injury of unspecified intra-abdominal organ, sequela +S3692XA Contusion of unspecified intra-abdominal organ, initial encounter +S3692XD Contusion of unspecified intra-abdominal organ, subsequent encounter +S3692XS Contusion of unspecified intra-abdominal organ, sequela +S3693XA Laceration of unspecified intra-abdominal organ, initial encounter +S3693XD Laceration of unspecified intra-abdominal organ, subsequent encounter +S3693XS Laceration of unspecified intra-abdominal organ, sequela +S3699XA Other injury of unspecified intra-abdominal organ, initial encounter +S3699XD Other injury of unspecified intra-abdominal organ, subsequent encounter +S3699XS Other injury of unspecified intra-abdominal organ, sequela +S37001A Unspecified injury of right kidney, initial encounter +S37001D Unspecified injury of right kidney, subsequent encounter +S37001S Unspecified injury of right kidney, sequela +S37002A Unspecified injury of left kidney, initial encounter +S37002D Unspecified injury of left kidney, subsequent encounter +S37002S Unspecified injury of left kidney, sequela +S37009A Unspecified injury of unspecified kidney, initial encounter +S37009D Unspecified injury of unspecified kidney, subsequent encounter +S37009S Unspecified injury of unspecified kidney, sequela +S37011A Minor contusion of right kidney, initial encounter +S37011D Minor contusion of right kidney, subsequent encounter +S37011S Minor contusion of right kidney, sequela +S37012A Minor contusion of left kidney, initial encounter +S37012D Minor contusion of left kidney, subsequent encounter +S37012S Minor contusion of left kidney, sequela +S37019A Minor contusion of unspecified kidney, initial encounter +S37019D Minor contusion of unspecified kidney, subsequent encounter +S37019S Minor contusion of unspecified kidney, sequela +S37021A Major contusion of right kidney, initial encounter +S37021D Major contusion of right kidney, subsequent encounter +S37021S Major contusion of right kidney, sequela +S37022A Major contusion of left kidney, initial encounter +S37022D Major contusion of left kidney, subsequent encounter +S37022S Major contusion of left kidney, sequela +S37029A Major contusion of unspecified kidney, initial encounter +S37029D Major contusion of unspecified kidney, subsequent encounter +S37029S Major contusion of unspecified kidney, sequela +S37031A Laceration of right kidney, unspecified degree, initial encounter +S37031D Laceration of right kidney, unspecified degree, subsequent encounter +S37031S Laceration of right kidney, unspecified degree, sequela +S37032A Laceration of left kidney, unspecified degree, initial encounter +S37032D Laceration of left kidney, unspecified degree, subsequent encounter +S37032S Laceration of left kidney, unspecified degree, sequela +S37039A Laceration of unspecified kidney, unspecified degree, initial encounter +S37039D Laceration of unspecified kidney, unspecified degree, subsequent encounter +S37039S Laceration of unspecified kidney, unspecified degree, sequela +S37041A Minor laceration of right kidney, initial encounter +S37041D Minor laceration of right kidney, subsequent encounter +S37041S Minor laceration of right kidney, sequela +S37042A Minor laceration of left kidney, initial encounter +S37042D Minor laceration of left kidney, subsequent encounter +S37042S Minor laceration of left kidney, sequela +S37049A Minor laceration of unspecified kidney, initial encounter +S37049D Minor laceration of unspecified kidney, subsequent encounter +S37049S Minor laceration of unspecified kidney, sequela +S37051A Moderate laceration of right kidney, initial encounter +S37051D Moderate laceration of right kidney, subsequent encounter +S37051S Moderate laceration of right kidney, sequela +S37052A Moderate laceration of left kidney, initial encounter +S37052D Moderate laceration of left kidney, subsequent encounter +S37052S Moderate laceration of left kidney, sequela +S37059A Moderate laceration of unspecified kidney, initial encounter +S37059D Moderate laceration of unspecified kidney, subsequent encounter +S37059S Moderate laceration of unspecified kidney, sequela +S37061A Major laceration of right kidney, initial encounter +S37061D Major laceration of right kidney, subsequent encounter +S37061S Major laceration of right kidney, sequela +S37062A Major laceration of left kidney, initial encounter +S37062D Major laceration of left kidney, subsequent encounter +S37062S Major laceration of left kidney, sequela +S37069A Major laceration of unspecified kidney, initial encounter +S37069D Major laceration of unspecified kidney, subsequent encounter +S37069S Major laceration of unspecified kidney, sequela +S37091A Other injury of right kidney, initial encounter +S37091D Other injury of right kidney, subsequent encounter +S37091S Other injury of right kidney, sequela +S37092A Other injury of left kidney, initial encounter +S37092D Other injury of left kidney, subsequent encounter +S37092S Other injury of left kidney, sequela +S37099A Other injury of unspecified kidney, initial encounter +S37099D Other injury of unspecified kidney, subsequent encounter +S37099S Other injury of unspecified kidney, sequela +S3710XA Unspecified injury of ureter, initial encounter +S3710XD Unspecified injury of ureter, subsequent encounter +S3710XS Unspecified injury of ureter, sequela +S3712XA Contusion of ureter, initial encounter +S3712XD Contusion of ureter, subsequent encounter +S3712XS Contusion of ureter, sequela +S3713XA Laceration of ureter, initial encounter +S3713XD Laceration of ureter, subsequent encounter +S3713XS Laceration of ureter, sequela +S3719XA Other injury of ureter, initial encounter +S3719XD Other injury of ureter, subsequent encounter +S3719XS Other injury of ureter, sequela +S3720XA Unspecified injury of bladder, initial encounter +S3720XD Unspecified injury of bladder, subsequent encounter +S3720XS Unspecified injury of bladder, sequela +S3722XA Contusion of bladder, initial encounter +S3722XD Contusion of bladder, subsequent encounter +S3722XS Contusion of bladder, sequela +S3723XA Laceration of bladder, initial encounter +S3723XD Laceration of bladder, subsequent encounter +S3723XS Laceration of bladder, sequela +S3729XA Other injury of bladder, initial encounter +S3729XD Other injury of bladder, subsequent encounter +S3729XS Other injury of bladder, sequela +S3730XA Unspecified injury of urethra, initial encounter +S3730XD Unspecified injury of urethra, subsequent encounter +S3730XS Unspecified injury of urethra, sequela +S3732XA Contusion of urethra, initial encounter +S3732XD Contusion of urethra, subsequent encounter +S3732XS Contusion of urethra, sequela +S3733XA Laceration of urethra, initial encounter +S3733XD Laceration of urethra, subsequent encounter +S3733XS Laceration of urethra, sequela +S3739XA Other injury of urethra, initial encounter +S3739XD Other injury of urethra, subsequent encounter +S3739XS Other injury of urethra, sequela +S37401A Unspecified injury of ovary, unilateral, initial encounter +S37401D Unspecified injury of ovary, unilateral, subsequent encounter +S37401S Unspecified injury of ovary, unilateral, sequela +S37402A Unspecified injury of ovary, bilateral, initial encounter +S37402D Unspecified injury of ovary, bilateral, subsequent encounter +S37402S Unspecified injury of ovary, bilateral, sequela +S37409A Unspecified injury of ovary, unspecified, initial encounter +S37409D Unspecified injury of ovary, unspecified, subsequent encounter +S37409S Unspecified injury of ovary, unspecified, sequela +S37421A Contusion of ovary, unilateral, initial encounter +S37421D Contusion of ovary, unilateral, subsequent encounter +S37421S Contusion of ovary, unilateral, sequela +S37422A Contusion of ovary, bilateral, initial encounter +S37422D Contusion of ovary, bilateral, subsequent encounter +S37422S Contusion of ovary, bilateral, sequela +S37429A Contusion of ovary, unspecified, initial encounter +S37429D Contusion of ovary, unspecified, subsequent encounter +S37429S Contusion of ovary, unspecified, sequela +S37431A Laceration of ovary, unilateral, initial encounter +S37431D Laceration of ovary, unilateral, subsequent encounter +S37431S Laceration of ovary, unilateral, sequela +S37432A Laceration of ovary, bilateral, initial encounter +S37432D Laceration of ovary, bilateral, subsequent encounter +S37432S Laceration of ovary, bilateral, sequela +S37439A Laceration of ovary, unspecified, initial encounter +S37439D Laceration of ovary, unspecified, subsequent encounter +S37439S Laceration of ovary, unspecified, sequela +S37491A Other injury of ovary, unilateral, initial encounter +S37491D Other injury of ovary, unilateral, subsequent encounter +S37491S Other injury of ovary, unilateral, sequela +S37492A Other injury of ovary, bilateral, initial encounter +S37492D Other injury of ovary, bilateral, subsequent encounter +S37492S Other injury of ovary, bilateral, sequela +S37499A Other injury of ovary, unspecified, initial encounter +S37499D Other injury of ovary, unspecified, subsequent encounter +S37499S Other injury of ovary, unspecified, sequela +S37501A Unspecified injury of fallopian tube, unilateral, initial encounter +S37501D Unspecified injury of fallopian tube, unilateral, subsequent encounter +S37501S Unspecified injury of fallopian tube, unilateral, sequela +S37502A Unspecified injury of fallopian tube, bilateral, initial encounter +S37502D Unspecified injury of fallopian tube, bilateral, subsequent encounter +S37502S Unspecified injury of fallopian tube, bilateral, sequela +S37509A Unspecified injury of fallopian tube, unspecified, initial encounter +S37509D Unspecified injury of fallopian tube, unspecified, subsequent encounter +S37509S Unspecified injury of fallopian tube, unspecified, sequela +S37511A Primary blast injury of fallopian tube, unilateral, initial encounter +S37511D Primary blast injury of fallopian tube, unilateral, subsequent encounter +S37511S Primary blast injury of fallopian tube, unilateral, sequela +S37512A Primary blast injury of fallopian tube, bilateral, initial encounter +S37512D Primary blast injury of fallopian tube, bilateral, subsequent encounter +S37512S Primary blast injury of fallopian tube, bilateral, sequela +S37519A Primary blast injury of fallopian tube, unspecified, initial encounter +S37519D Primary blast injury of fallopian tube, unspecified, subsequent encounter +S37519S Primary blast injury of fallopian tube, unspecified, sequela +S37521A Contusion of fallopian tube, unilateral, initial encounter +S37521D Contusion of fallopian tube, unilateral, subsequent encounter +S37521S Contusion of fallopian tube, unilateral, sequela +S37522A Contusion of fallopian tube, bilateral, initial encounter +S37522D Contusion of fallopian tube, bilateral, subsequent encounter +S37522S Contusion of fallopian tube, bilateral, sequela +S37529A Contusion of fallopian tube, unspecified, initial encounter +S37529D Contusion of fallopian tube, unspecified, subsequent encounter +S37529S Contusion of fallopian tube, unspecified, sequela +S37531A Laceration of fallopian tube, unilateral, initial encounter +S37531D Laceration of fallopian tube, unilateral, subsequent encounter +S37531S Laceration of fallopian tube, unilateral, sequela +S37532A Laceration of fallopian tube, bilateral, initial encounter +S37532D Laceration of fallopian tube, bilateral, subsequent encounter +S37532S Laceration of fallopian tube, bilateral, sequela +S37539A Laceration of fallopian tube, unspecified, initial encounter +S37539D Laceration of fallopian tube, unspecified, subsequent encounter +S37539S Laceration of fallopian tube, unspecified, sequela +S37591A Other injury of fallopian tube, unilateral, initial encounter +S37591D Other injury of fallopian tube, unilateral, subsequent encounter +S37591S Other injury of fallopian tube, unilateral, sequela +S37592A Other injury of fallopian tube, bilateral, initial encounter +S37592D Other injury of fallopian tube, bilateral, subsequent encounter +S37592S Other injury of fallopian tube, bilateral, sequela +S37599A Other injury of fallopian tube, unspecified, initial encounter +S37599D Other injury of fallopian tube, unspecified, subsequent encounter +S37599S Other injury of fallopian tube, unspecified, sequela +S3760XA Unspecified injury of uterus, initial encounter +S3760XD Unspecified injury of uterus, subsequent encounter +S3760XS Unspecified injury of uterus, sequela +S3762XA Contusion of uterus, initial encounter +S3762XD Contusion of uterus, subsequent encounter +S3762XS Contusion of uterus, sequela +S3763XA Laceration of uterus, initial encounter +S3763XD Laceration of uterus, subsequent encounter +S3763XS Laceration of uterus, sequela +S3769XA Other injury of uterus, initial encounter +S3769XD Other injury of uterus, subsequent encounter +S3769XS Other injury of uterus, sequela +S37812A Contusion of adrenal gland, initial encounter +S37812D Contusion of adrenal gland, subsequent encounter +S37812S Contusion of adrenal gland, sequela +S37813A Laceration of adrenal gland, initial encounter +S37813D Laceration of adrenal gland, subsequent encounter +S37813S Laceration of adrenal gland, sequela +S37818A Other injury of adrenal gland, initial encounter +S37818D Other injury of adrenal gland, subsequent encounter +S37818S Other injury of adrenal gland, sequela +S37819A Unspecified injury of adrenal gland, initial encounter +S37819D Unspecified injury of adrenal gland, subsequent encounter +S37819S Unspecified injury of adrenal gland, sequela +S37822A Contusion of prostate, initial encounter +S37822D Contusion of prostate, subsequent encounter +S37822S Contusion of prostate, sequela +S37823A Laceration of prostate, initial encounter +S37823D Laceration of prostate, subsequent encounter +S37823S Laceration of prostate, sequela +S37828A Other injury of prostate, initial encounter +S37828D Other injury of prostate, subsequent encounter +S37828S Other injury of prostate, sequela +S37829A Unspecified injury of prostate, initial encounter +S37829D Unspecified injury of prostate, subsequent encounter +S37829S Unspecified injury of prostate, sequela +S37892A Contusion of other urinary and pelvic organ, initial encounter +S37892D Contusion of other urinary and pelvic organ, subsequent encounter +S37892S Contusion of other urinary and pelvic organ, sequela +S37893A Laceration of other urinary and pelvic organ, initial encounter +S37893D Laceration of other urinary and pelvic organ, subsequent encounter +S37893S Laceration of other urinary and pelvic organ, sequela +S37898A Other injury of other urinary and pelvic organ, initial encounter +S37898D Other injury of other urinary and pelvic organ, subsequent encounter +S37898S Other injury of other urinary and pelvic organ, sequela +S37899A Unspecified injury of other urinary and pelvic organ, initial encounter +S37899D Unspecified injury of other urinary and pelvic organ, subsequent encounter +S37899S Unspecified injury of other urinary and pelvic organ, sequela +S3790XA Unspecified injury of unspecified urinary and pelvic organ, initial encounter +S3790XD Unspecified injury of unspecified urinary and pelvic organ, subsequent encounter +S3790XS Unspecified injury of unspecified urinary and pelvic organ, sequela +S3792XA Contusion of unspecified urinary and pelvic organ, initial encounter +S3792XD Contusion of unspecified urinary and pelvic organ, subsequent encounter +S3792XS Contusion of unspecified urinary and pelvic organ, sequela +S3793XA Laceration of unspecified urinary and pelvic organ, initial encounter +S3793XD Laceration of unspecified urinary and pelvic organ, subsequent encounter +S3793XS Laceration of unspecified urinary and pelvic organ, sequela +S3799XA Other injury of unspecified urinary and pelvic organ, initial encounter +S3799XD Other injury of unspecified urinary and pelvic organ, subsequent encounter +S3799XS Other injury of unspecified urinary and pelvic organ, sequela +S38001A Crushing injury of unspecified external genital organs, male, initial encounter +S38001D Crushing injury of unspecified external genital organs, male, subsequent encounter +S38001S Crushing injury of unspecified external genital organs, male, sequela +S38002A Crushing injury of unspecified external genital organs, female, initial encounter +S38002D Crushing injury of unspecified external genital organs, female, subsequent encounter +S38002S Crushing injury of unspecified external genital organs, female, sequela +S3801XA Crushing injury of penis, initial encounter +S3801XD Crushing injury of penis, subsequent encounter +S3801XS Crushing injury of penis, sequela +S3802XA Crushing injury of scrotum and testis, initial encounter +S3802XD Crushing injury of scrotum and testis, subsequent encounter +S3802XS Crushing injury of scrotum and testis, sequela +S3803XA Crushing injury of vulva, initial encounter +S3803XD Crushing injury of vulva, subsequent encounter +S3803XS Crushing injury of vulva, sequela +S381XXA Crushing injury of abdomen, lower back, and pelvis, initial encounter +S381XXD Crushing injury of abdomen, lower back, and pelvis, subsequent encounter +S381XXS Crushing injury of abdomen, lower back, and pelvis, sequela +S38211A Complete traumatic amputation of female external genital organs, initial encounter +S38211D Complete traumatic amputation of female external genital organs, subsequent encounter +S38211S Complete traumatic amputation of female external genital organs, sequela +S38212A Partial traumatic amputation of female external genital organs, initial encounter +S38212D Partial traumatic amputation of female external genital organs, subsequent encounter +S38212S Partial traumatic amputation of female external genital organs, sequela +S38221A Complete traumatic amputation of penis, initial encounter +S38221D Complete traumatic amputation of penis, subsequent encounter +S38221S Complete traumatic amputation of penis, sequela +S38222A Partial traumatic amputation of penis, initial encounter +S38222D Partial traumatic amputation of penis, subsequent encounter +S38222S Partial traumatic amputation of penis, sequela +S38231A Complete traumatic amputation of scrotum and testis, initial encounter +S38231D Complete traumatic amputation of scrotum and testis, subsequent encounter +S38231S Complete traumatic amputation of scrotum and testis, sequela +S38232A Partial traumatic amputation of scrotum and testis, initial encounter +S38232D Partial traumatic amputation of scrotum and testis, subsequent encounter +S38232S Partial traumatic amputation of scrotum and testis, sequela +S383XXA Transection (partial) of abdomen, initial encounter +S383XXD Transection (partial) of abdomen, subsequent encounter +S383XXS Transection (partial) of abdomen, sequela +S39001A Unspecified injury of muscle, fascia and tendon of abdomen, initial encounter +S39001D Unspecified injury of muscle, fascia and tendon of abdomen, subsequent encounter +S39001S Unspecified injury of muscle, fascia and tendon of abdomen, sequela +S39002A Unspecified injury of muscle, fascia and tendon of lower back, initial encounter +S39002D Unspecified injury of muscle, fascia and tendon of lower back, subsequent encounter +S39002S Unspecified injury of muscle, fascia and tendon of lower back, sequela +S39003A Unspecified injury of muscle, fascia and tendon of pelvis, initial encounter +S39003D Unspecified injury of muscle, fascia and tendon of pelvis, subsequent encounter +S39003S Unspecified injury of muscle, fascia and tendon of pelvis, sequela +S39011A Strain of muscle, fascia and tendon of abdomen, initial encounter +S39011D Strain of muscle, fascia and tendon of abdomen, subsequent encounter +S39011S Strain of muscle, fascia and tendon of abdomen, sequela +S39012A Strain of muscle, fascia and tendon of lower back, initial encounter +S39012D Strain of muscle, fascia and tendon of lower back, subsequent encounter +S39012S Strain of muscle, fascia and tendon of lower back, sequela +S39013A Strain of muscle, fascia and tendon of pelvis, initial encounter +S39013D Strain of muscle, fascia and tendon of pelvis, subsequent encounter +S39013S Strain of muscle, fascia and tendon of pelvis, sequela +S39021A Laceration of muscle, fascia and tendon of abdomen, initial encounter +S39021D Laceration of muscle, fascia and tendon of abdomen, subsequent encounter +S39021S Laceration of muscle, fascia and tendon of abdomen, sequela +S39022A Laceration of muscle, fascia and tendon of lower back, initial encounter +S39022D Laceration of muscle, fascia and tendon of lower back, subsequent encounter +S39022S Laceration of muscle, fascia and tendon of lower back, sequela +S39023A Laceration of muscle, fascia and tendon of pelvis, initial encounter +S39023D Laceration of muscle, fascia and tendon of pelvis, subsequent encounter +S39023S Laceration of muscle, fascia and tendon of pelvis, sequela +S39091A Other injury of muscle, fascia and tendon of abdomen, initial encounter +S39091D Other injury of muscle, fascia and tendon of abdomen, subsequent encounter +S39091S Other injury of muscle, fascia and tendon of abdomen, sequela +S39092A Other injury of muscle, fascia and tendon of lower back, initial encounter +S39092D Other injury of muscle, fascia and tendon of lower back, subsequent encounter +S39092S Other injury of muscle, fascia and tendon of lower back, sequela +S39093A Other injury of muscle, fascia and tendon of pelvis, initial encounter +S39093D Other injury of muscle, fascia and tendon of pelvis, subsequent encounter +S39093S Other injury of muscle, fascia and tendon of pelvis, sequela +S3981XA Other specified injuries of abdomen, initial encounter +S3981XD Other specified injuries of abdomen, subsequent encounter +S3981XS Other specified injuries of abdomen, sequela +S3982XA Other specified injuries of lower back, initial encounter +S3982XD Other specified injuries of lower back, subsequent encounter +S3982XS Other specified injuries of lower back, sequela +S3983XA Other specified injuries of pelvis, initial encounter +S3983XD Other specified injuries of pelvis, subsequent encounter +S3983XS Other specified injuries of pelvis, sequela +S39840A Fracture of corpus cavernosum penis, initial encounter +S39840D Fracture of corpus cavernosum penis, subsequent encounter +S39840S Fracture of corpus cavernosum penis, sequela +S39848A Other specified injuries of external genitals, initial encounter +S39848D Other specified injuries of external genitals, subsequent encounter +S39848S Other specified injuries of external genitals, sequela +S3991XA Unspecified injury of abdomen, initial encounter +S3991XD Unspecified injury of abdomen, subsequent encounter +S3991XS Unspecified injury of abdomen, sequela +S3992XA Unspecified injury of lower back, initial encounter +S3992XD Unspecified injury of lower back, subsequent encounter +S3992XS Unspecified injury of lower back, sequela +S3993XA Unspecified injury of pelvis, initial encounter +S3993XD Unspecified injury of pelvis, subsequent encounter +S3993XS Unspecified injury of pelvis, sequela +S3994XA Unspecified injury of external genitals, initial encounter +S3994XD Unspecified injury of external genitals, subsequent encounter +S3994XS Unspecified injury of external genitals, sequela +S40011A Contusion of right shoulder, initial encounter +S40011D Contusion of right shoulder, subsequent encounter +S40011S Contusion of right shoulder, sequela +S40012A Contusion of left shoulder, initial encounter +S40012D Contusion of left shoulder, subsequent encounter +S40012S Contusion of left shoulder, sequela +S40019A Contusion of unspecified shoulder, initial encounter +S40019D Contusion of unspecified shoulder, subsequent encounter +S40019S Contusion of unspecified shoulder, sequela +S40021A Contusion of right upper arm, initial encounter +S40021D Contusion of right upper arm, subsequent encounter +S40021S Contusion of right upper arm, sequela +S40022A Contusion of left upper arm, initial encounter +S40022D Contusion of left upper arm, subsequent encounter +S40022S Contusion of left upper arm, sequela +S40029A Contusion of unspecified upper arm, initial encounter +S40029D Contusion of unspecified upper arm, subsequent encounter +S40029S Contusion of unspecified upper arm, sequela +S40211A Abrasion of right shoulder, initial encounter +S40211D Abrasion of right shoulder, subsequent encounter +S40211S Abrasion of right shoulder, sequela +S40212A Abrasion of left shoulder, initial encounter +S40212D Abrasion of left shoulder, subsequent encounter +S40212S Abrasion of left shoulder, sequela +S40219A Abrasion of unspecified shoulder, initial encounter +S40219D Abrasion of unspecified shoulder, subsequent encounter +S40219S Abrasion of unspecified shoulder, sequela +S40221A Blister (nonthermal) of right shoulder, initial encounter +S40221D Blister (nonthermal) of right shoulder, subsequent encounter +S40221S Blister (nonthermal) of right shoulder, sequela +S40222A Blister (nonthermal) of left shoulder, initial encounter +S40222D Blister (nonthermal) of left shoulder, subsequent encounter +S40222S Blister (nonthermal) of left shoulder, sequela +S40229A Blister (nonthermal) of unspecified shoulder, initial encounter +S40229D Blister (nonthermal) of unspecified shoulder, subsequent encounter +S40229S Blister (nonthermal) of unspecified shoulder, sequela +S40241A External constriction of right shoulder, initial encounter +S40241D External constriction of right shoulder, subsequent encounter +S40241S External constriction of right shoulder, sequela +S40242A External constriction of left shoulder, initial encounter +S40242D External constriction of left shoulder, subsequent encounter +S40242S External constriction of left shoulder, sequela +S40249A External constriction of unspecified shoulder, initial encounter +S40249D External constriction of unspecified shoulder, subsequent encounter +S40249S External constriction of unspecified shoulder, sequela +S40251A Superficial foreign body of right shoulder, initial encounter +S40251D Superficial foreign body of right shoulder, subsequent encounter +S40251S Superficial foreign body of right shoulder, sequela +S40252A Superficial foreign body of left shoulder, initial encounter +S40252D Superficial foreign body of left shoulder, subsequent encounter +S40252S Superficial foreign body of left shoulder, sequela +S40259A Superficial foreign body of unspecified shoulder, initial encounter +S40259D Superficial foreign body of unspecified shoulder, subsequent encounter +S40259S Superficial foreign body of unspecified shoulder, sequela +S40261A Insect bite (nonvenomous) of right shoulder, initial encounter +S40261D Insect bite (nonvenomous) of right shoulder, subsequent encounter +S40261S Insect bite (nonvenomous) of right shoulder, sequela +S40262A Insect bite (nonvenomous) of left shoulder, initial encounter +S40262D Insect bite (nonvenomous) of left shoulder, subsequent encounter +S40262S Insect bite (nonvenomous) of left shoulder, sequela +S40269A Insect bite (nonvenomous) of unspecified shoulder, initial encounter +S40269D Insect bite (nonvenomous) of unspecified shoulder, subsequent encounter +S40269S Insect bite (nonvenomous) of unspecified shoulder, sequela +S40271A Other superficial bite of right shoulder, initial encounter +S40271D Other superficial bite of right shoulder, subsequent encounter +S40271S Other superficial bite of right shoulder, sequela +S40272A Other superficial bite of left shoulder, initial encounter +S40272D Other superficial bite of left shoulder, subsequent encounter +S40272S Other superficial bite of left shoulder, sequela +S40279A Other superficial bite of unspecified shoulder, initial encounter +S40279D Other superficial bite of unspecified shoulder, subsequent encounter +S40279S Other superficial bite of unspecified shoulder, sequela +S40811A Abrasion of right upper arm, initial encounter +S40811D Abrasion of right upper arm, subsequent encounter +S40811S Abrasion of right upper arm, sequela +S40812A Abrasion of left upper arm, initial encounter +S40812D Abrasion of left upper arm, subsequent encounter +S40812S Abrasion of left upper arm, sequela +S40819A Abrasion of unspecified upper arm, initial encounter +S40819D Abrasion of unspecified upper arm, subsequent encounter +S40819S Abrasion of unspecified upper arm, sequela +S40821A Blister (nonthermal) of right upper arm, initial encounter +S40821D Blister (nonthermal) of right upper arm, subsequent encounter +S40821S Blister (nonthermal) of right upper arm, sequela +S40822A Blister (nonthermal) of left upper arm, initial encounter +S40822D Blister (nonthermal) of left upper arm, subsequent encounter +S40822S Blister (nonthermal) of left upper arm, sequela +S40829A Blister (nonthermal) of unspecified upper arm, initial encounter +S40829D Blister (nonthermal) of unspecified upper arm, subsequent encounter +S40829S Blister (nonthermal) of unspecified upper arm, sequela +S40841A External constriction of right upper arm, initial encounter +S40841D External constriction of right upper arm, subsequent encounter +S40841S External constriction of right upper arm, sequela +S40842A External constriction of left upper arm, initial encounter +S40842D External constriction of left upper arm, subsequent encounter +S40842S External constriction of left upper arm, sequela +S40849A External constriction of unspecified upper arm, initial encounter +S40849D External constriction of unspecified upper arm, subsequent encounter +S40849S External constriction of unspecified upper arm, sequela +S40851A Superficial foreign body of right upper arm, initial encounter +S40851D Superficial foreign body of right upper arm, subsequent encounter +S40851S Superficial foreign body of right upper arm, sequela +S40852A Superficial foreign body of left upper arm, initial encounter +S40852D Superficial foreign body of left upper arm, subsequent encounter +S40852S Superficial foreign body of left upper arm, sequela +S40859A Superficial foreign body of unspecified upper arm, initial encounter +S40859D Superficial foreign body of unspecified upper arm, subsequent encounter +S40859S Superficial foreign body of unspecified upper arm, sequela +S40861A Insect bite (nonvenomous) of right upper arm, initial encounter +S40861D Insect bite (nonvenomous) of right upper arm, subsequent encounter +S40861S Insect bite (nonvenomous) of right upper arm, sequela +S40862A Insect bite (nonvenomous) of left upper arm, initial encounter +S40862D Insect bite (nonvenomous) of left upper arm, subsequent encounter +S40862S Insect bite (nonvenomous) of left upper arm, sequela +S40869A Insect bite (nonvenomous) of unspecified upper arm, initial encounter +S40869D Insect bite (nonvenomous) of unspecified upper arm, subsequent encounter +S40869S Insect bite (nonvenomous) of unspecified upper arm, sequela +S40871A Other superficial bite of right upper arm, initial encounter +S40871D Other superficial bite of right upper arm, subsequent encounter +S40871S Other superficial bite of right upper arm, sequela +S40872A Other superficial bite of left upper arm, initial encounter +S40872D Other superficial bite of left upper arm, subsequent encounter +S40872S Other superficial bite of left upper arm, sequela +S40879A Other superficial bite of unspecified upper arm, initial encounter +S40879D Other superficial bite of unspecified upper arm, subsequent encounter +S40879S Other superficial bite of unspecified upper arm, sequela +S40911A Unspecified superficial injury of right shoulder, initial encounter +S40911D Unspecified superficial injury of right shoulder, subsequent encounter +S40911S Unspecified superficial injury of right shoulder, sequela +S40912A Unspecified superficial injury of left shoulder, initial encounter +S40912D Unspecified superficial injury of left shoulder, subsequent encounter +S40912S Unspecified superficial injury of left shoulder, sequela +S40919A Unspecified superficial injury of unspecified shoulder, initial encounter +S40919D Unspecified superficial injury of unspecified shoulder, subsequent encounter +S40919S Unspecified superficial injury of unspecified shoulder, sequela +S40921A Unspecified superficial injury of right upper arm, initial encounter +S40921D Unspecified superficial injury of right upper arm, subsequent encounter +S40921S Unspecified superficial injury of right upper arm, sequela +S40922A Unspecified superficial injury of left upper arm, initial encounter +S40922D Unspecified superficial injury of left upper arm, subsequent encounter +S40922S Unspecified superficial injury of left upper arm, sequela +S40929A Unspecified superficial injury of unspecified upper arm, initial encounter +S40929D Unspecified superficial injury of unspecified upper arm, subsequent encounter +S40929S Unspecified superficial injury of unspecified upper arm, sequela +S41001A Unspecified open wound of right shoulder, initial encounter +S41001D Unspecified open wound of right shoulder, subsequent encounter +S41001S Unspecified open wound of right shoulder, sequela +S41002A Unspecified open wound of left shoulder, initial encounter +S41002D Unspecified open wound of left shoulder, subsequent encounter +S41002S Unspecified open wound of left shoulder, sequela +S41009A Unspecified open wound of unspecified shoulder, initial encounter +S41009D Unspecified open wound of unspecified shoulder, subsequent encounter +S41009S Unspecified open wound of unspecified shoulder, sequela +S41011A Laceration without foreign body of right shoulder, initial encounter +S41011D Laceration without foreign body of right shoulder, subsequent encounter +S41011S Laceration without foreign body of right shoulder, sequela +S41012A Laceration without foreign body of left shoulder, initial encounter +S41012D Laceration without foreign body of left shoulder, subsequent encounter +S41012S Laceration without foreign body of left shoulder, sequela +S41019A Laceration without foreign body of unspecified shoulder, initial encounter +S41019D Laceration without foreign body of unspecified shoulder, subsequent encounter +S41019S Laceration without foreign body of unspecified shoulder, sequela +S41021A Laceration with foreign body of right shoulder, initial encounter +S41021D Laceration with foreign body of right shoulder, subsequent encounter +S41021S Laceration with foreign body of right shoulder, sequela +S41022A Laceration with foreign body of left shoulder, initial encounter +S41022D Laceration with foreign body of left shoulder, subsequent encounter +S41022S Laceration with foreign body of left shoulder, sequela +S41029A Laceration with foreign body of unspecified shoulder, initial encounter +S41029D Laceration with foreign body of unspecified shoulder, subsequent encounter +S41029S Laceration with foreign body of unspecified shoulder, sequela +S41031A Puncture wound without foreign body of right shoulder, initial encounter +S41031D Puncture wound without foreign body of right shoulder, subsequent encounter +S41031S Puncture wound without foreign body of right shoulder, sequela +S41032A Puncture wound without foreign body of left shoulder, initial encounter +S41032D Puncture wound without foreign body of left shoulder, subsequent encounter +S41032S Puncture wound without foreign body of left shoulder, sequela +S41039A Puncture wound without foreign body of unspecified shoulder, initial encounter +S41039D Puncture wound without foreign body of unspecified shoulder, subsequent encounter +S41039S Puncture wound without foreign body of unspecified shoulder, sequela +S41041A Puncture wound with foreign body of right shoulder, initial encounter +S41041D Puncture wound with foreign body of right shoulder, subsequent encounter +S41041S Puncture wound with foreign body of right shoulder, sequela +S41042A Puncture wound with foreign body of left shoulder, initial encounter +S41042D Puncture wound with foreign body of left shoulder, subsequent encounter +S41042S Puncture wound with foreign body of left shoulder, sequela +S41049A Puncture wound with foreign body of unspecified shoulder, initial encounter +S41049D Puncture wound with foreign body of unspecified shoulder, subsequent encounter +S41049S Puncture wound with foreign body of unspecified shoulder, sequela +S41051A Open bite of right shoulder, initial encounter +S41051D Open bite of right shoulder, subsequent encounter +S41051S Open bite of right shoulder, sequela +S41052A Open bite of left shoulder, initial encounter +S41052D Open bite of left shoulder, subsequent encounter +S41052S Open bite of left shoulder, sequela +S41059A Open bite of unspecified shoulder, initial encounter +S41059D Open bite of unspecified shoulder, subsequent encounter +S41059S Open bite of unspecified shoulder, sequela +S41101A Unspecified open wound of right upper arm, initial encounter +S41101D Unspecified open wound of right upper arm, subsequent encounter +S41101S Unspecified open wound of right upper arm, sequela +S41102A Unspecified open wound of left upper arm, initial encounter +S41102D Unspecified open wound of left upper arm, subsequent encounter +S41102S Unspecified open wound of left upper arm, sequela +S41109A Unspecified open wound of unspecified upper arm, initial encounter +S41109D Unspecified open wound of unspecified upper arm, subsequent encounter +S41109S Unspecified open wound of unspecified upper arm, sequela +S41111A Laceration without foreign body of right upper arm, initial encounter +S41111D Laceration without foreign body of right upper arm, subsequent encounter +S41111S Laceration without foreign body of right upper arm, sequela +S41112A Laceration without foreign body of left upper arm, initial encounter +S41112D Laceration without foreign body of left upper arm, subsequent encounter +S41112S Laceration without foreign body of left upper arm, sequela +S41119A Laceration without foreign body of unspecified upper arm, initial encounter +S41119D Laceration without foreign body of unspecified upper arm, subsequent encounter +S41119S Laceration without foreign body of unspecified upper arm, sequela +S41121A Laceration with foreign body of right upper arm, initial encounter +S41121D Laceration with foreign body of right upper arm, subsequent encounter +S41121S Laceration with foreign body of right upper arm, sequela +S41122A Laceration with foreign body of left upper arm, initial encounter +S41122D Laceration with foreign body of left upper arm, subsequent encounter +S41122S Laceration with foreign body of left upper arm, sequela +S41129A Laceration with foreign body of unspecified upper arm, initial encounter +S41129D Laceration with foreign body of unspecified upper arm, subsequent encounter +S41129S Laceration with foreign body of unspecified upper arm, sequela +S41131A Puncture wound without foreign body of right upper arm, initial encounter +S41131D Puncture wound without foreign body of right upper arm, subsequent encounter +S41131S Puncture wound without foreign body of right upper arm, sequela +S41132A Puncture wound without foreign body of left upper arm, initial encounter +S41132D Puncture wound without foreign body of left upper arm, subsequent encounter +S41132S Puncture wound without foreign body of left upper arm, sequela +S41139A Puncture wound without foreign body of unspecified upper arm, initial encounter +S41139D Puncture wound without foreign body of unspecified upper arm, subsequent encounter +S41139S Puncture wound without foreign body of unspecified upper arm, sequela +S41141A Puncture wound with foreign body of right upper arm, initial encounter +S41141D Puncture wound with foreign body of right upper arm, subsequent encounter +S41141S Puncture wound with foreign body of right upper arm, sequela +S41142A Puncture wound with foreign body of left upper arm, initial encounter +S41142D Puncture wound with foreign body of left upper arm, subsequent encounter +S41142S Puncture wound with foreign body of left upper arm, sequela +S41149A Puncture wound with foreign body of unspecified upper arm, initial encounter +S41149D Puncture wound with foreign body of unspecified upper arm, subsequent encounter +S41149S Puncture wound with foreign body of unspecified upper arm, sequela +S41151A Open bite of right upper arm, initial encounter +S41151D Open bite of right upper arm, subsequent encounter +S41151S Open bite of right upper arm, sequela +S41152A Open bite of left upper arm, initial encounter +S41152D Open bite of left upper arm, subsequent encounter +S41152S Open bite of left upper arm, sequela +S41159A Open bite of unspecified upper arm, initial encounter +S41159D Open bite of unspecified upper arm, subsequent encounter +S41159S Open bite of unspecified upper arm, sequela +S42001A Fracture of unspecified part of right clavicle, initial encounter for closed fracture +S42001B Fracture of unspecified part of right clavicle, initial encounter for open fracture +S42001D Fracture of unspecified part of right clavicle, subsequent encounter for fracture with routine healing +S42001G Fracture of unspecified part of right clavicle, subsequent encounter for fracture with delayed healing +S42001K Fracture of unspecified part of right clavicle, subsequent encounter for fracture with nonunion +S42001P Fracture of unspecified part of right clavicle, subsequent encounter for fracture with malunion +S42001S Fracture of unspecified part of right clavicle, sequela +S42002A Fracture of unspecified part of left clavicle, initial encounter for closed fracture +S42002B Fracture of unspecified part of left clavicle, initial encounter for open fracture +S42002D Fracture of unspecified part of left clavicle, subsequent encounter for fracture with routine healing +S42002G Fracture of unspecified part of left clavicle, subsequent encounter for fracture with delayed healing +S42002K Fracture of unspecified part of left clavicle, subsequent encounter for fracture with nonunion +S42002P Fracture of unspecified part of left clavicle, subsequent encounter for fracture with malunion +S42002S Fracture of unspecified part of left clavicle, sequela +S42009A Fracture of unspecified part of unspecified clavicle, initial encounter for closed fracture +S42009B Fracture of unspecified part of unspecified clavicle, initial encounter for open fracture +S42009D Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with routine healing +S42009G Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with delayed healing +S42009K Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with nonunion +S42009P Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with malunion +S42009S Fracture of unspecified part of unspecified clavicle, sequela +S42011A Anterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture +S42011B Anterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture +S42011D Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing +S42011G Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing +S42011K Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion +S42011P Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion +S42011S Anterior displaced fracture of sternal end of right clavicle, sequela +S42012A Anterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture +S42012B Anterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture +S42012D Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing +S42012G Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing +S42012K Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion +S42012P Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion +S42012S Anterior displaced fracture of sternal end of left clavicle, sequela +S42013A Anterior displaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture +S42013B Anterior displaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture +S42013D Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing +S42013G Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing +S42013K Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion +S42013P Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion +S42013S Anterior displaced fracture of sternal end of unspecified clavicle, sequela +S42014A Posterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture +S42014B Posterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture +S42014D Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing +S42014G Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing +S42014K Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion +S42014P Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion +S42014S Posterior displaced fracture of sternal end of right clavicle, sequela +S42015A Posterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture +S42015B Posterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture +S42015D Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing +S42015G Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing +S42015K Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion +S42015P Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion +S42015S Posterior displaced fracture of sternal end of left clavicle, sequela +S42016A Posterior displaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture +S42016B Posterior displaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture +S42016D Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing +S42016G Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing +S42016K Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion +S42016P Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion +S42016S Posterior displaced fracture of sternal end of unspecified clavicle, sequela +S42017A Nondisplaced fracture of sternal end of right clavicle, initial encounter for closed fracture +S42017B Nondisplaced fracture of sternal end of right clavicle, initial encounter for open fracture +S42017D Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing +S42017G Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing +S42017K Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion +S42017P Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion +S42017S Nondisplaced fracture of sternal end of right clavicle, sequela +S42018A Nondisplaced fracture of sternal end of left clavicle, initial encounter for closed fracture +S42018B Nondisplaced fracture of sternal end of left clavicle, initial encounter for open fracture +S42018D Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing +S42018G Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing +S42018K Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion +S42018P Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion +S42018S Nondisplaced fracture of sternal end of left clavicle, sequela +S42019A Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture +S42019B Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture +S42019D Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing +S42019G Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing +S42019K Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion +S42019P Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion +S42019S Nondisplaced fracture of sternal end of unspecified clavicle, sequela +S42021A Displaced fracture of shaft of right clavicle, initial encounter for closed fracture +S42021B Displaced fracture of shaft of right clavicle, initial encounter for open fracture +S42021D Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with routine healing +S42021G Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with delayed healing +S42021K Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion +S42021P Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion +S42021S Displaced fracture of shaft of right clavicle, sequela +S42022A Displaced fracture of shaft of left clavicle, initial encounter for closed fracture +S42022B Displaced fracture of shaft of left clavicle, initial encounter for open fracture +S42022D Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with routine healing +S42022G Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with delayed healing +S42022K Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion +S42022P Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion +S42022S Displaced fracture of shaft of left clavicle, sequela +S42023A Displaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture +S42023B Displaced fracture of shaft of unspecified clavicle, initial encounter for open fracture +S42023D Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with routine healing +S42023G Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with delayed healing +S42023K Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with nonunion +S42023P Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with malunion +S42023S Displaced fracture of shaft of unspecified clavicle, sequela +S42024A Nondisplaced fracture of shaft of right clavicle, initial encounter for closed fracture +S42024B Nondisplaced fracture of shaft of right clavicle, initial encounter for open fracture +S42024D Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with routine healing +S42024G Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with delayed healing +S42024K Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion +S42024P Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion +S42024S Nondisplaced fracture of shaft of right clavicle, sequela +S42025A Nondisplaced fracture of shaft of left clavicle, initial encounter for closed fracture +S42025B Nondisplaced fracture of shaft of left clavicle, initial encounter for open fracture +S42025D Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with routine healing +S42025G Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with delayed healing +S42025K Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion +S42025P Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion +S42025S Nondisplaced fracture of shaft of left clavicle, sequela +S42026A Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture +S42026B Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for open fracture +S42026D Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with routine healing +S42026G Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with delayed healing +S42026K Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with nonunion +S42026P Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with malunion +S42026S Nondisplaced fracture of shaft of unspecified clavicle, sequela +S42031A Displaced fracture of lateral end of right clavicle, initial encounter for closed fracture +S42031B Displaced fracture of lateral end of right clavicle, initial encounter for open fracture +S42031D Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with routine healing +S42031G Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with delayed healing +S42031K Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with nonunion +S42031P Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with malunion +S42031S Displaced fracture of lateral end of right clavicle, sequela +S42032A Displaced fracture of lateral end of left clavicle, initial encounter for closed fracture +S42032B Displaced fracture of lateral end of left clavicle, initial encounter for open fracture +S42032D Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with routine healing +S42032G Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with delayed healing +S42032K Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with nonunion +S42032P Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with malunion +S42032S Displaced fracture of lateral end of left clavicle, sequela +S42033A Displaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture +S42033B Displaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture +S42033D Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with routine healing +S42033G Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with delayed healing +S42033K Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with nonunion +S42033P Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with malunion +S42033S Displaced fracture of lateral end of unspecified clavicle, sequela +S42034A Nondisplaced fracture of lateral end of right clavicle, initial encounter for closed fracture +S42034B Nondisplaced fracture of lateral end of right clavicle, initial encounter for open fracture +S42034D Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with routine healing +S42034G Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with delayed healing +S42034K Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with nonunion +S42034P Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with malunion +S42034S Nondisplaced fracture of lateral end of right clavicle, sequela +S42035A Nondisplaced fracture of lateral end of left clavicle, initial encounter for closed fracture +S42035B Nondisplaced fracture of lateral end of left clavicle, initial encounter for open fracture +S42035D Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with routine healing +S42035G Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with delayed healing +S42035K Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with nonunion +S42035P Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with malunion +S42035S Nondisplaced fracture of lateral end of left clavicle, sequela +S42036A Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture +S42036B Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture +S42036D Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with routine healing +S42036G Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with delayed healing +S42036K Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with nonunion +S42036P Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with malunion +S42036S Nondisplaced fracture of lateral end of unspecified clavicle, sequela +S42101A Fracture of unspecified part of scapula, right shoulder, initial encounter for closed fracture +S42101B Fracture of unspecified part of scapula, right shoulder, initial encounter for open fracture +S42101D Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with routine healing +S42101G Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with delayed healing +S42101K Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with nonunion +S42101P Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with malunion +S42101S Fracture of unspecified part of scapula, right shoulder, sequela +S42102A Fracture of unspecified part of scapula, left shoulder, initial encounter for closed fracture +S42102B Fracture of unspecified part of scapula, left shoulder, initial encounter for open fracture +S42102D Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with routine healing +S42102G Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with delayed healing +S42102K Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with nonunion +S42102P Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with malunion +S42102S Fracture of unspecified part of scapula, left shoulder, sequela +S42109A Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for closed fracture +S42109B Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for open fracture +S42109D Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing +S42109G Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42109K Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion +S42109P Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with malunion +S42109S Fracture of unspecified part of scapula, unspecified shoulder, sequela +S42111A Displaced fracture of body of scapula, right shoulder, initial encounter for closed fracture +S42111B Displaced fracture of body of scapula, right shoulder, initial encounter for open fracture +S42111D Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with routine healing +S42111G Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with delayed healing +S42111K Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with nonunion +S42111P Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with malunion +S42111S Displaced fracture of body of scapula, right shoulder, sequela +S42112A Displaced fracture of body of scapula, left shoulder, initial encounter for closed fracture +S42112B Displaced fracture of body of scapula, left shoulder, initial encounter for open fracture +S42112D Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with routine healing +S42112G Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with delayed healing +S42112K Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with nonunion +S42112P Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with malunion +S42112S Displaced fracture of body of scapula, left shoulder, sequela +S42113A Displaced fracture of body of scapula, unspecified shoulder, initial encounter for closed fracture +S42113B Displaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture +S42113D Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing +S42113G Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42113K Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion +S42113P Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with malunion +S42113S Displaced fracture of body of scapula, unspecified shoulder, sequela +S42114A Nondisplaced fracture of body of scapula, right shoulder, initial encounter for closed fracture +S42114B Nondisplaced fracture of body of scapula, right shoulder, initial encounter for open fracture +S42114D Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with routine healing +S42114G Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with delayed healing +S42114K Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with nonunion +S42114P Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with malunion +S42114S Nondisplaced fracture of body of scapula, right shoulder, sequela +S42115A Nondisplaced fracture of body of scapula, left shoulder, initial encounter for closed fracture +S42115B Nondisplaced fracture of body of scapula, left shoulder, initial encounter for open fracture +S42115D Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with routine healing +S42115G Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with delayed healing +S42115K Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with nonunion +S42115P Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with malunion +S42115S Nondisplaced fracture of body of scapula, left shoulder, sequela +S42116A Nondisplaced fracture of body of scapula, unspecified shoulder, initial encounter for closed fracture +S42116B Nondisplaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture +S42116D Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing +S42116G Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42116K Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion +S42116P Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with malunion +S42116S Nondisplaced fracture of body of scapula, unspecified shoulder, sequela +S42121A Displaced fracture of acromial process, right shoulder, initial encounter for closed fracture +S42121B Displaced fracture of acromial process, right shoulder, initial encounter for open fracture +S42121D Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with routine healing +S42121G Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with delayed healing +S42121K Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with nonunion +S42121P Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with malunion +S42121S Displaced fracture of acromial process, right shoulder, sequela +S42122A Displaced fracture of acromial process, left shoulder, initial encounter for closed fracture +S42122B Displaced fracture of acromial process, left shoulder, initial encounter for open fracture +S42122D Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with routine healing +S42122G Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with delayed healing +S42122K Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with nonunion +S42122P Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with malunion +S42122S Displaced fracture of acromial process, left shoulder, sequela +S42123A Displaced fracture of acromial process, unspecified shoulder, initial encounter for closed fracture +S42123B Displaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture +S42123D Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with routine healing +S42123G Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42123K Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with nonunion +S42123P Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with malunion +S42123S Displaced fracture of acromial process, unspecified shoulder, sequela +S42124A Nondisplaced fracture of acromial process, right shoulder, initial encounter for closed fracture +S42124B Nondisplaced fracture of acromial process, right shoulder, initial encounter for open fracture +S42124D Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with routine healing +S42124G Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with delayed healing +S42124K Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with nonunion +S42124P Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with malunion +S42124S Nondisplaced fracture of acromial process, right shoulder, sequela +S42125A Nondisplaced fracture of acromial process, left shoulder, initial encounter for closed fracture +S42125B Nondisplaced fracture of acromial process, left shoulder, initial encounter for open fracture +S42125D Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with routine healing +S42125G Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with delayed healing +S42125K Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with nonunion +S42125P Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with malunion +S42125S Nondisplaced fracture of acromial process, left shoulder, sequela +S42126A Nondisplaced fracture of acromial process, unspecified shoulder, initial encounter for closed fracture +S42126B Nondisplaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture +S42126D Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with routine healing +S42126G Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42126K Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with nonunion +S42126P Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with malunion +S42126S Nondisplaced fracture of acromial process, unspecified shoulder, sequela +S42131A Displaced fracture of coracoid process, right shoulder, initial encounter for closed fracture +S42131B Displaced fracture of coracoid process, right shoulder, initial encounter for open fracture +S42131D Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with routine healing +S42131G Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with delayed healing +S42131K Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with nonunion +S42131P Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with malunion +S42131S Displaced fracture of coracoid process, right shoulder, sequela +S42132A Displaced fracture of coracoid process, left shoulder, initial encounter for closed fracture +S42132B Displaced fracture of coracoid process, left shoulder, initial encounter for open fracture +S42132D Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with routine healing +S42132G Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with delayed healing +S42132K Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with nonunion +S42132P Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with malunion +S42132S Displaced fracture of coracoid process, left shoulder, sequela +S42133A Displaced fracture of coracoid process, unspecified shoulder, initial encounter for closed fracture +S42133B Displaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture +S42133D Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with routine healing +S42133G Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42133K Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with nonunion +S42133P Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with malunion +S42133S Displaced fracture of coracoid process, unspecified shoulder, sequela +S42134A Nondisplaced fracture of coracoid process, right shoulder, initial encounter for closed fracture +S42134B Nondisplaced fracture of coracoid process, right shoulder, initial encounter for open fracture +S42134D Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with routine healing +S42134G Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with delayed healing +S42134K Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with nonunion +S42134P Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with malunion +S42134S Nondisplaced fracture of coracoid process, right shoulder, sequela +S42135A Nondisplaced fracture of coracoid process, left shoulder, initial encounter for closed fracture +S42135B Nondisplaced fracture of coracoid process, left shoulder, initial encounter for open fracture +S42135D Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with routine healing +S42135G Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with delayed healing +S42135K Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with nonunion +S42135P Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with malunion +S42135S Nondisplaced fracture of coracoid process, left shoulder, sequela +S42136A Nondisplaced fracture of coracoid process, unspecified shoulder, initial encounter for closed fracture +S42136B Nondisplaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture +S42136D Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with routine healing +S42136G Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42136K Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with nonunion +S42136P Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with malunion +S42136S Nondisplaced fracture of coracoid process, unspecified shoulder, sequela +S42141A Displaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for closed fracture +S42141B Displaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for open fracture +S42141D Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with routine healing +S42141G Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with delayed healing +S42141K Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with nonunion +S42141P Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with malunion +S42141S Displaced fracture of glenoid cavity of scapula, right shoulder, sequela +S42142A Displaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for closed fracture +S42142B Displaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for open fracture +S42142D Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with routine healing +S42142G Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with delayed healing +S42142K Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with nonunion +S42142P Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with malunion +S42142S Displaced fracture of glenoid cavity of scapula, left shoulder, sequela +S42143A Displaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for closed fracture +S42143B Displaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for open fracture +S42143D Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing +S42143G Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42143K Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion +S42143P Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with malunion +S42143S Displaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela +S42144A Nondisplaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for closed fracture +S42144B Nondisplaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for open fracture +S42144D Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with routine healing +S42144G Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with delayed healing +S42144K Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with nonunion +S42144P Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with malunion +S42144S Nondisplaced fracture of glenoid cavity of scapula, right shoulder, sequela +S42145A Nondisplaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for closed fracture +S42145B Nondisplaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for open fracture +S42145D Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with routine healing +S42145G Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with delayed healing +S42145K Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with nonunion +S42145P Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with malunion +S42145S Nondisplaced fracture of glenoid cavity of scapula, left shoulder, sequela +S42146A Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for closed fracture +S42146B Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for open fracture +S42146D Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing +S42146G Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42146K Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion +S42146P Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with malunion +S42146S Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela +S42151A Displaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture +S42151B Displaced fracture of neck of scapula, right shoulder, initial encounter for open fracture +S42151D Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with routine healing +S42151G Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with delayed healing +S42151K Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with nonunion +S42151P Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with malunion +S42151S Displaced fracture of neck of scapula, right shoulder, sequela +S42152A Displaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture +S42152B Displaced fracture of neck of scapula, left shoulder, initial encounter for open fracture +S42152D Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with routine healing +S42152G Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with delayed healing +S42152K Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with nonunion +S42152P Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with malunion +S42152S Displaced fracture of neck of scapula, left shoulder, sequela +S42153A Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for closed fracture +S42153B Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture +S42153D Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing +S42153G Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42153K Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion +S42153P Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with malunion +S42153S Displaced fracture of neck of scapula, unspecified shoulder, sequela +S42154A Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture +S42154B Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for open fracture +S42154D Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with routine healing +S42154G Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with delayed healing +S42154K Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with nonunion +S42154P Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with malunion +S42154S Nondisplaced fracture of neck of scapula, right shoulder, sequela +S42155A Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture +S42155B Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for open fracture +S42155D Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with routine healing +S42155G Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with delayed healing +S42155K Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with nonunion +S42155P Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with malunion +S42155S Nondisplaced fracture of neck of scapula, left shoulder, sequela +S42156A Nondisplaced fracture of neck of scapula, unspecified shoulder, initial encounter for closed fracture +S42156B Nondisplaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture +S42156D Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing +S42156G Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42156K Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion +S42156P Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with malunion +S42156S Nondisplaced fracture of neck of scapula, unspecified shoulder, sequela +S42191A Fracture of other part of scapula, right shoulder, initial encounter for closed fracture +S42191B Fracture of other part of scapula, right shoulder, initial encounter for open fracture +S42191D Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with routine healing +S42191G Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with delayed healing +S42191K Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with nonunion +S42191P Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with malunion +S42191S Fracture of other part of scapula, right shoulder, sequela +S42192A Fracture of other part of scapula, left shoulder, initial encounter for closed fracture +S42192B Fracture of other part of scapula, left shoulder, initial encounter for open fracture +S42192D Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with routine healing +S42192G Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with delayed healing +S42192K Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with nonunion +S42192P Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with malunion +S42192S Fracture of other part of scapula, left shoulder, sequela +S42199A Fracture of other part of scapula, unspecified shoulder, initial encounter for closed fracture +S42199B Fracture of other part of scapula, unspecified shoulder, initial encounter for open fracture +S42199D Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing +S42199G Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing +S42199K Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion +S42199P Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with malunion +S42199S Fracture of other part of scapula, unspecified shoulder, sequela +S42201A Unspecified fracture of upper end of right humerus, initial encounter for closed fracture +S42201B Unspecified fracture of upper end of right humerus, initial encounter for open fracture +S42201D Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with routine healing +S42201G Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing +S42201K Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with nonunion +S42201P Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with malunion +S42201S Unspecified fracture of upper end of right humerus, sequela +S42202A Unspecified fracture of upper end of left humerus, initial encounter for closed fracture +S42202B Unspecified fracture of upper end of left humerus, initial encounter for open fracture +S42202D Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with routine healing +S42202G Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing +S42202K Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with nonunion +S42202P Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with malunion +S42202S Unspecified fracture of upper end of left humerus, sequela +S42209A Unspecified fracture of upper end of unspecified humerus, initial encounter for closed fracture +S42209B Unspecified fracture of upper end of unspecified humerus, initial encounter for open fracture +S42209D Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing +S42209G Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing +S42209K Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion +S42209P Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion +S42209S Unspecified fracture of upper end of unspecified humerus, sequela +S42211A Unspecified displaced fracture of surgical neck of right humerus, initial encounter for closed fracture +S42211B Unspecified displaced fracture of surgical neck of right humerus, initial encounter for open fracture +S42211D Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing +S42211G Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing +S42211K Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion +S42211P Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion +S42211S Unspecified displaced fracture of surgical neck of right humerus, sequela +S42212A Unspecified displaced fracture of surgical neck of left humerus, initial encounter for closed fracture +S42212B Unspecified displaced fracture of surgical neck of left humerus, initial encounter for open fracture +S42212D Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing +S42212G Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing +S42212K Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion +S42212P Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion +S42212S Unspecified displaced fracture of surgical neck of left humerus, sequela +S42213A Unspecified displaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture +S42213B Unspecified displaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture +S42213D Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing +S42213G Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing +S42213K Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion +S42213P Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion +S42213S Unspecified displaced fracture of surgical neck of unspecified humerus, sequela +S42214A Unspecified nondisplaced fracture of surgical neck of right humerus, initial encounter for closed fracture +S42214B Unspecified nondisplaced fracture of surgical neck of right humerus, initial encounter for open fracture +S42214D Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing +S42214G Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing +S42214K Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion +S42214P Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion +S42214S Unspecified nondisplaced fracture of surgical neck of right humerus, sequela +S42215A Unspecified nondisplaced fracture of surgical neck of left humerus, initial encounter for closed fracture +S42215B Unspecified nondisplaced fracture of surgical neck of left humerus, initial encounter for open fracture +S42215D Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing +S42215G Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing +S42215K Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion +S42215P Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion +S42215S Unspecified nondisplaced fracture of surgical neck of left humerus, sequela +S42216A Unspecified nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture +S42216B Unspecified nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture +S42216D Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing +S42216G Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing +S42216K Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion +S42216P Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion +S42216S Unspecified nondisplaced fracture of surgical neck of unspecified humerus, sequela +S42221A 2-part displaced fracture of surgical neck of right humerus, initial encounter for closed fracture +S42221B 2-part displaced fracture of surgical neck of right humerus, initial encounter for open fracture +S42221D 2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing +S42221G 2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing +S42221K 2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion +S42221P 2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion +S42221S 2-part displaced fracture of surgical neck of right humerus, sequela +S42222A 2-part displaced fracture of surgical neck of left humerus, initial encounter for closed fracture +S42222B 2-part displaced fracture of surgical neck of left humerus, initial encounter for open fracture +S42222D 2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing +S42222G 2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing +S42222K 2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion +S42222P 2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion +S42222S 2-part displaced fracture of surgical neck of left humerus, sequela +S42223A 2-part displaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture +S42223B 2-part displaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture +S42223D 2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing +S42223G 2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing +S42223K 2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion +S42223P 2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion +S42223S 2-part displaced fracture of surgical neck of unspecified humerus, sequela +S42224A 2-part nondisplaced fracture of surgical neck of right humerus, initial encounter for closed fracture +S42224B 2-part nondisplaced fracture of surgical neck of right humerus, initial encounter for open fracture +S42224D 2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing +S42224G 2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing +S42224K 2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion +S42224P 2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion +S42224S 2-part nondisplaced fracture of surgical neck of right humerus, sequela +S42225A 2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for closed fracture +S42225B 2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for open fracture +S42225D 2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing +S42225G 2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing +S42225K 2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion +S42225P 2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion +S42225S 2-part nondisplaced fracture of surgical neck of left humerus, sequela +S42226A 2-part nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture +S42226B 2-part nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture +S42226D 2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing +S42226G 2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing +S42226K 2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion +S42226P 2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion +S42226S 2-part nondisplaced fracture of surgical neck of unspecified humerus, sequela +S42231A 3-part fracture of surgical neck of right humerus, initial encounter for closed fracture +S42231B 3-part fracture of surgical neck of right humerus, initial encounter for open fracture +S42231D 3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing +S42231G 3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing +S42231K 3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion +S42231P 3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion +S42231S 3-part fracture of surgical neck of right humerus, sequela +S42232A 3-part fracture of surgical neck of left humerus, initial encounter for closed fracture +S42232B 3-part fracture of surgical neck of left humerus, initial encounter for open fracture +S42232D 3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing +S42232G 3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing +S42232K 3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion +S42232P 3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion +S42232S 3-part fracture of surgical neck of left humerus, sequela +S42239A 3-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture +S42239B 3-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture +S42239D 3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing +S42239G 3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing +S42239K 3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion +S42239P 3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion +S42239S 3-part fracture of surgical neck of unspecified humerus, sequela +S42241A 4-part fracture of surgical neck of right humerus, initial encounter for closed fracture +S42241B 4-part fracture of surgical neck of right humerus, initial encounter for open fracture +S42241D 4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing +S42241G 4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing +S42241K 4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion +S42241P 4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion +S42241S 4-part fracture of surgical neck of right humerus, sequela +S42242A 4-part fracture of surgical neck of left humerus, initial encounter for closed fracture +S42242B 4-part fracture of surgical neck of left humerus, initial encounter for open fracture +S42242D 4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing +S42242G 4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing +S42242K 4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion +S42242P 4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion +S42242S 4-part fracture of surgical neck of left humerus, sequela +S42249A 4-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture +S42249B 4-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture +S42249D 4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing +S42249G 4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing +S42249K 4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion +S42249P 4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion +S42249S 4-part fracture of surgical neck of unspecified humerus, sequela +S42251A Displaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture +S42251B Displaced fracture of greater tuberosity of right humerus, initial encounter for open fracture +S42251D Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with routine healing +S42251G Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with delayed healing +S42251K Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with nonunion +S42251P Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with malunion +S42251S Displaced fracture of greater tuberosity of right humerus, sequela +S42252A Displaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture +S42252B Displaced fracture of greater tuberosity of left humerus, initial encounter for open fracture +S42252D Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with routine healing +S42252G Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with delayed healing +S42252K Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with nonunion +S42252P Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with malunion +S42252S Displaced fracture of greater tuberosity of left humerus, sequela +S42253A Displaced fracture of greater tuberosity of unspecified humerus, initial encounter for closed fracture +S42253B Displaced fracture of greater tuberosity of unspecified humerus, initial encounter for open fracture +S42253D Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing +S42253G Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing +S42253K Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion +S42253P Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with malunion +S42253S Displaced fracture of greater tuberosity of unspecified humerus, sequela +S42254A Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture +S42254B Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for open fracture +S42254D Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with routine healing +S42254G Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with delayed healing +S42254K Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with nonunion +S42254P Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with malunion +S42254S Nondisplaced fracture of greater tuberosity of right humerus, sequela +S42255A Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture +S42255B Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for open fracture +S42255D Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with routine healing +S42255G Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with delayed healing +S42255K Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with nonunion +S42255P Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with malunion +S42255S Nondisplaced fracture of greater tuberosity of left humerus, sequela +S42256A Nondisplaced fracture of greater tuberosity of unspecified humerus, initial encounter for closed fracture +S42256B Nondisplaced fracture of greater tuberosity of unspecified humerus, initial encounter for open fracture +S42256D Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing +S42256G Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing +S42256K Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion +S42256P Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with malunion +S42256S Nondisplaced fracture of greater tuberosity of unspecified humerus, sequela +S42261A Displaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture +S42261B Displaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture +S42261D Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with routine healing +S42261G Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with delayed healing +S42261K Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with nonunion +S42261P Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with malunion +S42261S Displaced fracture of lesser tuberosity of right humerus, sequela +S42262A Displaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture +S42262B Displaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture +S42262D Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with routine healing +S42262G Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with delayed healing +S42262K Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with nonunion +S42262P Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with malunion +S42262S Displaced fracture of lesser tuberosity of left humerus, sequela +S42263A Displaced fracture of lesser tuberosity of unspecified humerus, initial encounter for closed fracture +S42263B Displaced fracture of lesser tuberosity of unspecified humerus, initial encounter for open fracture +S42263D Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing +S42263G Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing +S42263K Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion +S42263P Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with malunion +S42263S Displaced fracture of lesser tuberosity of unspecified humerus, sequela +S42264A Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture +S42264B Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture +S42264D Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with routine healing +S42264G Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with delayed healing +S42264K Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with nonunion +S42264P Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with malunion +S42264S Nondisplaced fracture of lesser tuberosity of right humerus, sequela +S42265A Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture +S42265B Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture +S42265D Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with routine healing +S42265G Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with delayed healing +S42265K Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with nonunion +S42265P Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with malunion +S42265S Nondisplaced fracture of lesser tuberosity of left humerus, sequela +S42266A Nondisplaced fracture of lesser tuberosity of unspecified humerus, initial encounter for closed fracture +S42266B Nondisplaced fracture of lesser tuberosity of unspecified humerus, initial encounter for open fracture +S42266D Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing +S42266G Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing +S42266K Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion +S42266P Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with malunion +S42266S Nondisplaced fracture of lesser tuberosity of unspecified humerus, sequela +S42271A Torus fracture of upper end of right humerus, initial encounter for closed fracture +S42271D Torus fracture of upper end of right humerus, subsequent encounter for fracture with routine healing +S42271G Torus fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing +S42271K Torus fracture of upper end of right humerus, subsequent encounter for fracture with nonunion +S42271P Torus fracture of upper end of right humerus, subsequent encounter for fracture with malunion +S42271S Torus fracture of upper end of right humerus, sequela +S42272A Torus fracture of upper end of left humerus, initial encounter for closed fracture +S42272D Torus fracture of upper end of left humerus, subsequent encounter for fracture with routine healing +S42272G Torus fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing +S42272K Torus fracture of upper end of left humerus, subsequent encounter for fracture with nonunion +S42272P Torus fracture of upper end of left humerus, subsequent encounter for fracture with malunion +S42272S Torus fracture of upper end of left humerus, sequela +S42279A Torus fracture of upper end of unspecified humerus, initial encounter for closed fracture +S42279D Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing +S42279G Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing +S42279K Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion +S42279P Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion +S42279S Torus fracture of upper end of unspecified humerus, sequela +S42291A Other displaced fracture of upper end of right humerus, initial encounter for closed fracture +S42291B Other displaced fracture of upper end of right humerus, initial encounter for open fracture +S42291D Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with routine healing +S42291G Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing +S42291K Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with nonunion +S42291P Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with malunion +S42291S Other displaced fracture of upper end of right humerus, sequela +S42292A Other displaced fracture of upper end of left humerus, initial encounter for closed fracture +S42292B Other displaced fracture of upper end of left humerus, initial encounter for open fracture +S42292D Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with routine healing +S42292G Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing +S42292K Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with nonunion +S42292P Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with malunion +S42292S Other displaced fracture of upper end of left humerus, sequela +S42293A Other displaced fracture of upper end of unspecified humerus, initial encounter for closed fracture +S42293B Other displaced fracture of upper end of unspecified humerus, initial encounter for open fracture +S42293D Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing +S42293G Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing +S42293K Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion +S42293P Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion +S42293S Other displaced fracture of upper end of unspecified humerus, sequela +S42294A Other nondisplaced fracture of upper end of right humerus, initial encounter for closed fracture +S42294B Other nondisplaced fracture of upper end of right humerus, initial encounter for open fracture +S42294D Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with routine healing +S42294G Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing +S42294K Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with nonunion +S42294P Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with malunion +S42294S Other nondisplaced fracture of upper end of right humerus, sequela +S42295A Other nondisplaced fracture of upper end of left humerus, initial encounter for closed fracture +S42295B Other nondisplaced fracture of upper end of left humerus, initial encounter for open fracture +S42295D Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with routine healing +S42295G Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing +S42295K Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with nonunion +S42295P Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with malunion +S42295S Other nondisplaced fracture of upper end of left humerus, sequela +S42296A Other nondisplaced fracture of upper end of unspecified humerus, initial encounter for closed fracture +S42296B Other nondisplaced fracture of upper end of unspecified humerus, initial encounter for open fracture +S42296D Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing +S42296G Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing +S42296K Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion +S42296P Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion +S42296S Other nondisplaced fracture of upper end of unspecified humerus, sequela +S42301A Unspecified fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42301B Unspecified fracture of shaft of humerus, right arm, initial encounter for open fracture +S42301D Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42301G Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42301K Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42301P Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42301S Unspecified fracture of shaft of humerus, right arm, sequela +S42302A Unspecified fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42302B Unspecified fracture of shaft of humerus, left arm, initial encounter for open fracture +S42302D Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42302G Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42302K Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42302P Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42302S Unspecified fracture of shaft of humerus, left arm, sequela +S42309A Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42309B Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +S42309D Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42309G Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42309K Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42309P Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42309S Unspecified fracture of shaft of humerus, unspecified arm, sequela +S42311A Greenstick fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42311D Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42311G Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42311K Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42311P Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42311S Greenstick fracture of shaft of humerus, right arm, sequela +S42312A Greenstick fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42312D Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42312G Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42312K Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42312P Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42312S Greenstick fracture of shaft of humerus, left arm, sequela +S42319A Greenstick fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42319D Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42319G Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42319K Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42319P Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42319S Greenstick fracture of shaft of humerus, unspecified arm, sequela +S42321A Displaced transverse fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42321B Displaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture +S42321D Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42321G Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42321K Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42321P Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42321S Displaced transverse fracture of shaft of humerus, right arm, sequela +S42322A Displaced transverse fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42322B Displaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture +S42322D Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42322G Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42322K Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42322P Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42322S Displaced transverse fracture of shaft of humerus, left arm, sequela +S42323A Displaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42323B Displaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +S42323D Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42323G Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42323K Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42323P Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42323S Displaced transverse fracture of shaft of humerus, unspecified arm, sequela +S42324A Nondisplaced transverse fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42324B Nondisplaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture +S42324D Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42324G Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42324K Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42324P Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42324S Nondisplaced transverse fracture of shaft of humerus, right arm, sequela +S42325A Nondisplaced transverse fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42325B Nondisplaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture +S42325D Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42325G Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42325K Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42325P Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42325S Nondisplaced transverse fracture of shaft of humerus, left arm, sequela +S42326A Nondisplaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42326B Nondisplaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +S42326D Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42326G Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42326K Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42326P Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42326S Nondisplaced transverse fracture of shaft of humerus, unspecified arm, sequela +S42331A Displaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42331B Displaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture +S42331D Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42331G Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42331K Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42331P Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42331S Displaced oblique fracture of shaft of humerus, right arm, sequela +S42332A Displaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42332B Displaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture +S42332D Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42332G Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42332K Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42332P Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42332S Displaced oblique fracture of shaft of humerus, left arm, sequela +S42333A Displaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42333B Displaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +S42333D Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42333G Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42333K Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42333P Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42333S Displaced oblique fracture of shaft of humerus, unspecified arm, sequela +S42334A Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42334B Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture +S42334D Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42334G Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42334K Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42334P Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42334S Nondisplaced oblique fracture of shaft of humerus, right arm, sequela +S42335A Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42335B Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture +S42335D Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42335G Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42335K Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42335P Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42335S Nondisplaced oblique fracture of shaft of humerus, left arm, sequela +S42336A Nondisplaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42336B Nondisplaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +S42336D Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42336G Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42336K Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42336P Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42336S Nondisplaced oblique fracture of shaft of humerus, unspecified arm, sequela +S42341A Displaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42341B Displaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture +S42341D Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42341G Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42341K Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42341P Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42341S Displaced spiral fracture of shaft of humerus, right arm, sequela +S42342A Displaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42342B Displaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture +S42342D Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42342G Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42342K Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42342P Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42342S Displaced spiral fracture of shaft of humerus, left arm, sequela +S42343A Displaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42343B Displaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +S42343D Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42343G Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42343K Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42343P Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42343S Displaced spiral fracture of shaft of humerus, unspecified arm, sequela +S42344A Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42344B Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture +S42344D Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42344G Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42344K Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42344P Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42344S Nondisplaced spiral fracture of shaft of humerus, right arm, sequela +S42345A Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42345B Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture +S42345D Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42345G Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42345K Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42345P Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42345S Nondisplaced spiral fracture of shaft of humerus, left arm, sequela +S42346A Nondisplaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42346B Nondisplaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +S42346D Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42346G Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42346K Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42346P Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42346S Nondisplaced spiral fracture of shaft of humerus, unspecified arm, sequela +S42351A Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42351B Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture +S42351D Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42351G Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42351K Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42351P Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42351S Displaced comminuted fracture of shaft of humerus, right arm, sequela +S42352A Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42352B Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture +S42352D Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42352G Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42352K Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42352P Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42352S Displaced comminuted fracture of shaft of humerus, left arm, sequela +S42353A Displaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42353B Displaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +S42353D Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42353G Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42353K Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42353P Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42353S Displaced comminuted fracture of shaft of humerus, unspecified arm, sequela +S42354A Nondisplaced comminuted fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42354B Nondisplaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture +S42354D Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42354G Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42354K Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42354P Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42354S Nondisplaced comminuted fracture of shaft of humerus, right arm, sequela +S42355A Nondisplaced comminuted fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42355B Nondisplaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture +S42355D Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42355G Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42355K Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42355P Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42355S Nondisplaced comminuted fracture of shaft of humerus, left arm, sequela +S42356A Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42356B Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +S42356D Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42356G Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42356K Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42356P Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42356S Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, sequela +S42361A Displaced segmental fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42361B Displaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture +S42361D Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42361G Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42361K Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42361P Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42361S Displaced segmental fracture of shaft of humerus, right arm, sequela +S42362A Displaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42362B Displaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture +S42362D Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42362G Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42362K Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42362P Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42362S Displaced segmental fracture of shaft of humerus, left arm, sequela +S42363A Displaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42363B Displaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +S42363D Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42363G Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42363K Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42363P Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42363S Displaced segmental fracture of shaft of humerus, unspecified arm, sequela +S42364A Nondisplaced segmental fracture of shaft of humerus, right arm, initial encounter for closed fracture +S42364B Nondisplaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture +S42364D Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing +S42364G Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing +S42364K Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +S42364P Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +S42364S Nondisplaced segmental fracture of shaft of humerus, right arm, sequela +S42365A Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture +S42365B Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture +S42365D Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing +S42365G Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing +S42365K Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +S42365P Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +S42365S Nondisplaced segmental fracture of shaft of humerus, left arm, sequela +S42366A Nondisplaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +S42366B Nondisplaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +S42366D Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S42366G Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S42366K Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S42366P Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion +S42366S Nondisplaced segmental fracture of shaft of humerus, unspecified arm, sequela +S42391A Other fracture of shaft of right humerus, initial encounter for closed fracture +S42391B Other fracture of shaft of right humerus, initial encounter for open fracture +S42391D Other fracture of shaft of right humerus, subsequent encounter for fracture with routine healing +S42391G Other fracture of shaft of right humerus, subsequent encounter for fracture with delayed healing +S42391K Other fracture of shaft of right humerus, subsequent encounter for fracture with nonunion +S42391P Other fracture of shaft of right humerus, subsequent encounter for fracture with malunion +S42391S Other fracture of shaft of right humerus, sequela +S42392A Other fracture of shaft of left humerus, initial encounter for closed fracture +S42392B Other fracture of shaft of left humerus, initial encounter for open fracture +S42392D Other fracture of shaft of left humerus, subsequent encounter for fracture with routine healing +S42392G Other fracture of shaft of left humerus, subsequent encounter for fracture with delayed healing +S42392K Other fracture of shaft of left humerus, subsequent encounter for fracture with nonunion +S42392P Other fracture of shaft of left humerus, subsequent encounter for fracture with malunion +S42392S Other fracture of shaft of left humerus, sequela +S42399A Other fracture of shaft of unspecified humerus, initial encounter for closed fracture +S42399B Other fracture of shaft of unspecified humerus, initial encounter for open fracture +S42399D Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with routine healing +S42399G Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with delayed healing +S42399K Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with nonunion +S42399P Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with malunion +S42399S Other fracture of shaft of unspecified humerus, sequela +S42401A Unspecified fracture of lower end of right humerus, initial encounter for closed fracture +S42401B Unspecified fracture of lower end of right humerus, initial encounter for open fracture +S42401D Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with routine healing +S42401G Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing +S42401K Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with nonunion +S42401P Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with malunion +S42401S Unspecified fracture of lower end of right humerus, sequela +S42402A Unspecified fracture of lower end of left humerus, initial encounter for closed fracture +S42402B Unspecified fracture of lower end of left humerus, initial encounter for open fracture +S42402D Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with routine healing +S42402G Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing +S42402K Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with nonunion +S42402P Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with malunion +S42402S Unspecified fracture of lower end of left humerus, sequela +S42409A Unspecified fracture of lower end of unspecified humerus, initial encounter for closed fracture +S42409B Unspecified fracture of lower end of unspecified humerus, initial encounter for open fracture +S42409D Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing +S42409G Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing +S42409K Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion +S42409P Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion +S42409S Unspecified fracture of lower end of unspecified humerus, sequela +S42411A Displaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture +S42411B Displaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture +S42411D Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing +S42411G Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing +S42411K Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion +S42411P Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion +S42411S Displaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela +S42412A Displaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture +S42412B Displaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture +S42412D Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing +S42412G Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing +S42412K Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion +S42412P Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion +S42412S Displaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela +S42413A Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture +S42413B Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture +S42413D Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing +S42413G Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing +S42413K Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion +S42413P Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion +S42413S Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, sequela +S42414A Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture +S42414B Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture +S42414D Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing +S42414G Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing +S42414K Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion +S42414P Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion +S42414S Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela +S42415A Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture +S42415B Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture +S42415D Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing +S42415G Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing +S42415K Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion +S42415P Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion +S42415S Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela +S42416A Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture +S42416B Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture +S42416D Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing +S42416G Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing +S42416K Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion +S42416P Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion +S42416S Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, sequela +S42421A Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture +S42421B Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture +S42421D Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing +S42421G Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing +S42421K Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion +S42421P Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion +S42421S Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, sequela +S42422A Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture +S42422B Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture +S42422D Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing +S42422G Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing +S42422K Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion +S42422P Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion +S42422S Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, sequela +S42423A Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture +S42423B Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture +S42423D Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing +S42423G Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing +S42423K Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion +S42423P Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion +S42423S Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, sequela +S42424A Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture +S42424B Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture +S42424D Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing +S42424G Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing +S42424K Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion +S42424P Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion +S42424S Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, sequela +S42425A Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture +S42425B Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture +S42425D Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing +S42425G Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing +S42425K Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion +S42425P Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion +S42425S Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, sequela +S42426A Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture +S42426B Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture +S42426D Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing +S42426G Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing +S42426K Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion +S42426P Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion +S42426S Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, sequela +S42431A Displaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for closed fracture +S42431B Displaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for open fracture +S42431D Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with routine healing +S42431G Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with delayed healing +S42431K Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with nonunion +S42431P Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with malunion +S42431S Displaced fracture (avulsion) of lateral epicondyle of right humerus, sequela +S42432A Displaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for closed fracture +S42432B Displaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for open fracture +S42432D Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with routine healing +S42432G Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with delayed healing +S42432K Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with nonunion +S42432P Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with malunion +S42432S Displaced fracture (avulsion) of lateral epicondyle of left humerus, sequela +S42433A Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for closed fracture +S42433B Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for open fracture +S42433D Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing +S42433G Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing +S42433K Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion +S42433P Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with malunion +S42433S Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela +S42434A Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for closed fracture +S42434B Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for open fracture +S42434D Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with routine healing +S42434G Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with delayed healing +S42434K Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with nonunion +S42434P Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with malunion +S42434S Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, sequela +S42435A Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for closed fracture +S42435B Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for open fracture +S42435D Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with routine healing +S42435G Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with delayed healing +S42435K Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with nonunion +S42435P Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with malunion +S42435S Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, sequela +S42436A Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for closed fracture +S42436B Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for open fracture +S42436D Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing +S42436G Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing +S42436K Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion +S42436P Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with malunion +S42436S Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela +S42441A Displaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture +S42441B Displaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture +S42441D Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing +S42441G Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing +S42441K Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion +S42441P Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion +S42441S Displaced fracture (avulsion) of medial epicondyle of right humerus, sequela +S42442A Displaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture +S42442B Displaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture +S42442D Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing +S42442G Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing +S42442K Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion +S42442P Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion +S42442S Displaced fracture (avulsion) of medial epicondyle of left humerus, sequela +S42443A Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture +S42443B Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture +S42443D Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing +S42443G Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing +S42443K Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion +S42443P Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion +S42443S Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela +S42444A Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture +S42444B Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture +S42444D Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing +S42444G Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing +S42444K Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion +S42444P Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion +S42444S Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, sequela +S42445A Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture +S42445B Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture +S42445D Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing +S42445G Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing +S42445K Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion +S42445P Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion +S42445S Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, sequela +S42446A Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture +S42446B Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture +S42446D Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing +S42446G Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing +S42446K Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion +S42446P Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion +S42446S Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela +S42447A Incarcerated fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture +S42447B Incarcerated fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture +S42447D Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing +S42447G Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing +S42447K Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion +S42447P Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion +S42447S Incarcerated fracture (avulsion) of medial epicondyle of right humerus, sequela +S42448A Incarcerated fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture +S42448B Incarcerated fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture +S42448D Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing +S42448G Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing +S42448K Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion +S42448P Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion +S42448S Incarcerated fracture (avulsion) of medial epicondyle of left humerus, sequela +S42449A Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture +S42449B Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture +S42449D Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing +S42449G Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing +S42449K Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion +S42449P Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion +S42449S Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, sequela +S42451A Displaced fracture of lateral condyle of right humerus, initial encounter for closed fracture +S42451B Displaced fracture of lateral condyle of right humerus, initial encounter for open fracture +S42451D Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with routine healing +S42451G Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with delayed healing +S42451K Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with nonunion +S42451P Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with malunion +S42451S Displaced fracture of lateral condyle of right humerus, sequela +S42452A Displaced fracture of lateral condyle of left humerus, initial encounter for closed fracture +S42452B Displaced fracture of lateral condyle of left humerus, initial encounter for open fracture +S42452D Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with routine healing +S42452G Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with delayed healing +S42452K Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with nonunion +S42452P Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with malunion +S42452S Displaced fracture of lateral condyle of left humerus, sequela +S42453A Displaced fracture of lateral condyle of unspecified humerus, initial encounter for closed fracture +S42453B Displaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture +S42453D Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with routine healing +S42453G Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with delayed healing +S42453K Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with nonunion +S42453P Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with malunion +S42453S Displaced fracture of lateral condyle of unspecified humerus, sequela +S42454A Nondisplaced fracture of lateral condyle of right humerus, initial encounter for closed fracture +S42454B Nondisplaced fracture of lateral condyle of right humerus, initial encounter for open fracture +S42454D Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with routine healing +S42454G Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with delayed healing +S42454K Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with nonunion +S42454P Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with malunion +S42454S Nondisplaced fracture of lateral condyle of right humerus, sequela +S42455A Nondisplaced fracture of lateral condyle of left humerus, initial encounter for closed fracture +S42455B Nondisplaced fracture of lateral condyle of left humerus, initial encounter for open fracture +S42455D Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with routine healing +S42455G Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with delayed healing +S42455K Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with nonunion +S42455P Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with malunion +S42455S Nondisplaced fracture of lateral condyle of left humerus, sequela +S42456A Nondisplaced fracture of lateral condyle of unspecified humerus, initial encounter for closed fracture +S42456B Nondisplaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture +S42456D Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with routine healing +S42456G Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with delayed healing +S42456K Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with nonunion +S42456P Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with malunion +S42456S Nondisplaced fracture of lateral condyle of unspecified humerus, sequela +S42461A Displaced fracture of medial condyle of right humerus, initial encounter for closed fracture +S42461B Displaced fracture of medial condyle of right humerus, initial encounter for open fracture +S42461D Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with routine healing +S42461G Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with delayed healing +S42461K Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with nonunion +S42461P Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with malunion +S42461S Displaced fracture of medial condyle of right humerus, sequela +S42462A Displaced fracture of medial condyle of left humerus, initial encounter for closed fracture +S42462B Displaced fracture of medial condyle of left humerus, initial encounter for open fracture +S42462D Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with routine healing +S42462G Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with delayed healing +S42462K Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with nonunion +S42462P Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with malunion +S42462S Displaced fracture of medial condyle of left humerus, sequela +S42463A Displaced fracture of medial condyle of unspecified humerus, initial encounter for closed fracture +S42463B Displaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture +S42463D Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with routine healing +S42463G Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with delayed healing +S42463K Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with nonunion +S42463P Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with malunion +S42463S Displaced fracture of medial condyle of unspecified humerus, sequela +S42464A Nondisplaced fracture of medial condyle of right humerus, initial encounter for closed fracture +S42464B Nondisplaced fracture of medial condyle of right humerus, initial encounter for open fracture +S42464D Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with routine healing +S42464G Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with delayed healing +S42464K Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with nonunion +S42464P Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with malunion +S42464S Nondisplaced fracture of medial condyle of right humerus, sequela +S42465A Nondisplaced fracture of medial condyle of left humerus, initial encounter for closed fracture +S42465B Nondisplaced fracture of medial condyle of left humerus, initial encounter for open fracture +S42465D Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with routine healing +S42465G Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with delayed healing +S42465K Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with nonunion +S42465P Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with malunion +S42465S Nondisplaced fracture of medial condyle of left humerus, sequela +S42466A Nondisplaced fracture of medial condyle of unspecified humerus, initial encounter for closed fracture +S42466B Nondisplaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture +S42466D Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with routine healing +S42466G Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with delayed healing +S42466K Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with nonunion +S42466P Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with malunion +S42466S Nondisplaced fracture of medial condyle of unspecified humerus, sequela +S42471A Displaced transcondylar fracture of right humerus, initial encounter for closed fracture +S42471B Displaced transcondylar fracture of right humerus, initial encounter for open fracture +S42471D Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with routine healing +S42471G Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with delayed healing +S42471K Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with nonunion +S42471P Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with malunion +S42471S Displaced transcondylar fracture of right humerus, sequela +S42472A Displaced transcondylar fracture of left humerus, initial encounter for closed fracture +S42472B Displaced transcondylar fracture of left humerus, initial encounter for open fracture +S42472D Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with routine healing +S42472G Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with delayed healing +S42472K Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion +S42472P Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion +S42472S Displaced transcondylar fracture of left humerus, sequela +S42473A Displaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture +S42473B Displaced transcondylar fracture of unspecified humerus, initial encounter for open fracture +S42473D Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing +S42473G Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing +S42473K Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion +S42473P Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion +S42473S Displaced transcondylar fracture of unspecified humerus, sequela +S42474A Nondisplaced transcondylar fracture of right humerus, initial encounter for closed fracture +S42474B Nondisplaced transcondylar fracture of right humerus, initial encounter for open fracture +S42474D Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with routine healing +S42474G Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with delayed healing +S42474K Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with nonunion +S42474P Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with malunion +S42474S Nondisplaced transcondylar fracture of right humerus, sequela +S42475A Nondisplaced transcondylar fracture of left humerus, initial encounter for closed fracture +S42475B Nondisplaced transcondylar fracture of left humerus, initial encounter for open fracture +S42475D Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with routine healing +S42475G Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with delayed healing +S42475K Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion +S42475P Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion +S42475S Nondisplaced transcondylar fracture of left humerus, sequela +S42476A Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture +S42476B Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for open fracture +S42476D Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing +S42476G Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing +S42476K Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion +S42476P Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion +S42476S Nondisplaced transcondylar fracture of unspecified humerus, sequela +S42481A Torus fracture of lower end of right humerus, initial encounter for closed fracture +S42481D Torus fracture of lower end of right humerus, subsequent encounter for fracture with routine healing +S42481G Torus fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing +S42481K Torus fracture of lower end of right humerus, subsequent encounter for fracture with nonunion +S42481P Torus fracture of lower end of right humerus, subsequent encounter for fracture with malunion +S42481S Torus fracture of lower end of right humerus, sequela +S42482A Torus fracture of lower end of left humerus, initial encounter for closed fracture +S42482D Torus fracture of lower end of left humerus, subsequent encounter for fracture with routine healing +S42482G Torus fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing +S42482K Torus fracture of lower end of left humerus, subsequent encounter for fracture with nonunion +S42482P Torus fracture of lower end of left humerus, subsequent encounter for fracture with malunion +S42482S Torus fracture of lower end of left humerus, sequela +S42489A Torus fracture of lower end of unspecified humerus, initial encounter for closed fracture +S42489D Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing +S42489G Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing +S42489K Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion +S42489P Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion +S42489S Torus fracture of lower end of unspecified humerus, sequela +S42491A Other displaced fracture of lower end of right humerus, initial encounter for closed fracture +S42491B Other displaced fracture of lower end of right humerus, initial encounter for open fracture +S42491D Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with routine healing +S42491G Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing +S42491K Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with nonunion +S42491P Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with malunion +S42491S Other displaced fracture of lower end of right humerus, sequela +S42492A Other displaced fracture of lower end of left humerus, initial encounter for closed fracture +S42492B Other displaced fracture of lower end of left humerus, initial encounter for open fracture +S42492D Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with routine healing +S42492G Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing +S42492K Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with nonunion +S42492P Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with malunion +S42492S Other displaced fracture of lower end of left humerus, sequela +S42493A Other displaced fracture of lower end of unspecified humerus, initial encounter for closed fracture +S42493B Other displaced fracture of lower end of unspecified humerus, initial encounter for open fracture +S42493D Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing +S42493G Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing +S42493K Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion +S42493P Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion +S42493S Other displaced fracture of lower end of unspecified humerus, sequela +S42494A Other nondisplaced fracture of lower end of right humerus, initial encounter for closed fracture +S42494B Other nondisplaced fracture of lower end of right humerus, initial encounter for open fracture +S42494D Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with routine healing +S42494G Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing +S42494K Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with nonunion +S42494P Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with malunion +S42494S Other nondisplaced fracture of lower end of right humerus, sequela +S42495A Other nondisplaced fracture of lower end of left humerus, initial encounter for closed fracture +S42495B Other nondisplaced fracture of lower end of left humerus, initial encounter for open fracture +S42495D Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with routine healing +S42495G Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing +S42495K Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with nonunion +S42495P Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with malunion +S42495S Other nondisplaced fracture of lower end of left humerus, sequela +S42496A Other nondisplaced fracture of lower end of unspecified humerus, initial encounter for closed fracture +S42496B Other nondisplaced fracture of lower end of unspecified humerus, initial encounter for open fracture +S42496D Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing +S42496G Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing +S42496K Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion +S42496P Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion +S42496S Other nondisplaced fracture of lower end of unspecified humerus, sequela +S4290XA Fracture of unspecified shoulder girdle, part unspecified, initial encounter for closed fracture +S4290XB Fracture of unspecified shoulder girdle, part unspecified, initial encounter for open fracture +S4290XD Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing +S4290XG Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing +S4290XK Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion +S4290XP Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with malunion +S4290XS Fracture of unspecified shoulder girdle, part unspecified, sequela +S4291XA Fracture of right shoulder girdle, part unspecified, initial encounter for closed fracture +S4291XB Fracture of right shoulder girdle, part unspecified, initial encounter for open fracture +S4291XD Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing +S4291XG Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing +S4291XK Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion +S4291XP Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with malunion +S4291XS Fracture of right shoulder girdle, part unspecified, sequela +S4292XA Fracture of left shoulder girdle, part unspecified, initial encounter for closed fracture +S4292XB Fracture of left shoulder girdle, part unspecified, initial encounter for open fracture +S4292XD Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing +S4292XG Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing +S4292XK Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion +S4292XP Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with malunion +S4292XS Fracture of left shoulder girdle, part unspecified, sequela +S43001A Unspecified subluxation of right shoulder joint, initial encounter +S43001D Unspecified subluxation of right shoulder joint, subsequent encounter +S43001S Unspecified subluxation of right shoulder joint, sequela +S43002A Unspecified subluxation of left shoulder joint, initial encounter +S43002D Unspecified subluxation of left shoulder joint, subsequent encounter +S43002S Unspecified subluxation of left shoulder joint, sequela +S43003A Unspecified subluxation of unspecified shoulder joint, initial encounter +S43003D Unspecified subluxation of unspecified shoulder joint, subsequent encounter +S43003S Unspecified subluxation of unspecified shoulder joint, sequela +S43004A Unspecified dislocation of right shoulder joint, initial encounter +S43004D Unspecified dislocation of right shoulder joint, subsequent encounter +S43004S Unspecified dislocation of right shoulder joint, sequela +S43005A Unspecified dislocation of left shoulder joint, initial encounter +S43005D Unspecified dislocation of left shoulder joint, subsequent encounter +S43005S Unspecified dislocation of left shoulder joint, sequela +S43006A Unspecified dislocation of unspecified shoulder joint, initial encounter +S43006D Unspecified dislocation of unspecified shoulder joint, subsequent encounter +S43006S Unspecified dislocation of unspecified shoulder joint, sequela +S43011A Anterior subluxation of right humerus, initial encounter +S43011D Anterior subluxation of right humerus, subsequent encounter +S43011S Anterior subluxation of right humerus, sequela +S43012A Anterior subluxation of left humerus, initial encounter +S43012D Anterior subluxation of left humerus, subsequent encounter +S43012S Anterior subluxation of left humerus, sequela +S43013A Anterior subluxation of unspecified humerus, initial encounter +S43013D Anterior subluxation of unspecified humerus, subsequent encounter +S43013S Anterior subluxation of unspecified humerus, sequela +S43014A Anterior dislocation of right humerus, initial encounter +S43014D Anterior dislocation of right humerus, subsequent encounter +S43014S Anterior dislocation of right humerus, sequela +S43015A Anterior dislocation of left humerus, initial encounter +S43015D Anterior dislocation of left humerus, subsequent encounter +S43015S Anterior dislocation of left humerus, sequela +S43016A Anterior dislocation of unspecified humerus, initial encounter +S43016D Anterior dislocation of unspecified humerus, subsequent encounter +S43016S Anterior dislocation of unspecified humerus, sequela +S43021A Posterior subluxation of right humerus, initial encounter +S43021D Posterior subluxation of right humerus, subsequent encounter +S43021S Posterior subluxation of right humerus, sequela +S43022A Posterior subluxation of left humerus, initial encounter +S43022D Posterior subluxation of left humerus, subsequent encounter +S43022S Posterior subluxation of left humerus, sequela +S43023A Posterior subluxation of unspecified humerus, initial encounter +S43023D Posterior subluxation of unspecified humerus, subsequent encounter +S43023S Posterior subluxation of unspecified humerus, sequela +S43024A Posterior dislocation of right humerus, initial encounter +S43024D Posterior dislocation of right humerus, subsequent encounter +S43024S Posterior dislocation of right humerus, sequela +S43025A Posterior dislocation of left humerus, initial encounter +S43025D Posterior dislocation of left humerus, subsequent encounter +S43025S Posterior dislocation of left humerus, sequela +S43026A Posterior dislocation of unspecified humerus, initial encounter +S43026D Posterior dislocation of unspecified humerus, subsequent encounter +S43026S Posterior dislocation of unspecified humerus, sequela +S43031A Inferior subluxation of right humerus, initial encounter +S43031D Inferior subluxation of right humerus, subsequent encounter +S43031S Inferior subluxation of right humerus, sequela +S43032A Inferior subluxation of left humerus, initial encounter +S43032D Inferior subluxation of left humerus, subsequent encounter +S43032S Inferior subluxation of left humerus, sequela +S43033A Inferior subluxation of unspecified humerus, initial encounter +S43033D Inferior subluxation of unspecified humerus, subsequent encounter +S43033S Inferior subluxation of unspecified humerus, sequela +S43034A Inferior dislocation of right humerus, initial encounter +S43034D Inferior dislocation of right humerus, subsequent encounter +S43034S Inferior dislocation of right humerus, sequela +S43035A Inferior dislocation of left humerus, initial encounter +S43035D Inferior dislocation of left humerus, subsequent encounter +S43035S Inferior dislocation of left humerus, sequela +S43036A Inferior dislocation of unspecified humerus, initial encounter +S43036D Inferior dislocation of unspecified humerus, subsequent encounter +S43036S Inferior dislocation of unspecified humerus, sequela +S43081A Other subluxation of right shoulder joint, initial encounter +S43081D Other subluxation of right shoulder joint, subsequent encounter +S43081S Other subluxation of right shoulder joint, sequela +S43082A Other subluxation of left shoulder joint, initial encounter +S43082D Other subluxation of left shoulder joint, subsequent encounter +S43082S Other subluxation of left shoulder joint, sequela +S43083A Other subluxation of unspecified shoulder joint, initial encounter +S43083D Other subluxation of unspecified shoulder joint, subsequent encounter +S43083S Other subluxation of unspecified shoulder joint, sequela +S43084A Other dislocation of right shoulder joint, initial encounter +S43084D Other dislocation of right shoulder joint, subsequent encounter +S43084S Other dislocation of right shoulder joint, sequela +S43085A Other dislocation of left shoulder joint, initial encounter +S43085D Other dislocation of left shoulder joint, subsequent encounter +S43085S Other dislocation of left shoulder joint, sequela +S43086A Other dislocation of unspecified shoulder joint, initial encounter +S43086D Other dislocation of unspecified shoulder joint, subsequent encounter +S43086S Other dislocation of unspecified shoulder joint, sequela +S43101A Unspecified dislocation of right acromioclavicular joint, initial encounter +S43101D Unspecified dislocation of right acromioclavicular joint, subsequent encounter +S43101S Unspecified dislocation of right acromioclavicular joint, sequela +S43102A Unspecified dislocation of left acromioclavicular joint, initial encounter +S43102D Unspecified dislocation of left acromioclavicular joint, subsequent encounter +S43102S Unspecified dislocation of left acromioclavicular joint, sequela +S43109A Unspecified dislocation of unspecified acromioclavicular joint, initial encounter +S43109D Unspecified dislocation of unspecified acromioclavicular joint, subsequent encounter +S43109S Unspecified dislocation of unspecified acromioclavicular joint, sequela +S43111A Subluxation of right acromioclavicular joint, initial encounter +S43111D Subluxation of right acromioclavicular joint, subsequent encounter +S43111S Subluxation of right acromioclavicular joint, sequela +S43112A Subluxation of left acromioclavicular joint, initial encounter +S43112D Subluxation of left acromioclavicular joint, subsequent encounter +S43112S Subluxation of left acromioclavicular joint, sequela +S43119A Subluxation of unspecified acromioclavicular joint, initial encounter +S43119D Subluxation of unspecified acromioclavicular joint, subsequent encounter +S43119S Subluxation of unspecified acromioclavicular joint, sequela +S43121A Dislocation of right acromioclavicular joint, 100%-200% displacement, initial encounter +S43121D Dislocation of right acromioclavicular joint, 100%-200% displacement, subsequent encounter +S43121S Dislocation of right acromioclavicular joint, 100%-200% displacement, sequela +S43122A Dislocation of left acromioclavicular joint, 100%-200% displacement, initial encounter +S43122D Dislocation of left acromioclavicular joint, 100%-200% displacement, subsequent encounter +S43122S Dislocation of left acromioclavicular joint, 100%-200% displacement, sequela +S43129A Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, initial encounter +S43129D Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, subsequent encounter +S43129S Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, sequela +S43131A Dislocation of right acromioclavicular joint, greater than 200% displacement, initial encounter +S43131D Dislocation of right acromioclavicular joint, greater than 200% displacement, subsequent encounter +S43131S Dislocation of right acromioclavicular joint, greater than 200% displacement, sequela +S43132A Dislocation of left acromioclavicular joint, greater than 200% displacement, initial encounter +S43132D Dislocation of left acromioclavicular joint, greater than 200% displacement, subsequent encounter +S43132S Dislocation of left acromioclavicular joint, greater than 200% displacement, sequela +S43139A Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, initial encounter +S43139D Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, subsequent encounter +S43139S Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, sequela +S43141A Inferior dislocation of right acromioclavicular joint, initial encounter +S43141D Inferior dislocation of right acromioclavicular joint, subsequent encounter +S43141S Inferior dislocation of right acromioclavicular joint, sequela +S43142A Inferior dislocation of left acromioclavicular joint, initial encounter +S43142D Inferior dislocation of left acromioclavicular joint, subsequent encounter +S43142S Inferior dislocation of left acromioclavicular joint, sequela +S43149A Inferior dislocation of unspecified acromioclavicular joint, initial encounter +S43149D Inferior dislocation of unspecified acromioclavicular joint, subsequent encounter +S43149S Inferior dislocation of unspecified acromioclavicular joint, sequela +S43151A Posterior dislocation of right acromioclavicular joint, initial encounter +S43151D Posterior dislocation of right acromioclavicular joint, subsequent encounter +S43151S Posterior dislocation of right acromioclavicular joint, sequela +S43152A Posterior dislocation of left acromioclavicular joint, initial encounter +S43152D Posterior dislocation of left acromioclavicular joint, subsequent encounter +S43152S Posterior dislocation of left acromioclavicular joint, sequela +S43159A Posterior dislocation of unspecified acromioclavicular joint, initial encounter +S43159D Posterior dislocation of unspecified acromioclavicular joint, subsequent encounter +S43159S Posterior dislocation of unspecified acromioclavicular joint, sequela +S43201A Unspecified subluxation of right sternoclavicular joint, initial encounter +S43201D Unspecified subluxation of right sternoclavicular joint, subsequent encounter +S43201S Unspecified subluxation of right sternoclavicular joint, sequela +S43202A Unspecified subluxation of left sternoclavicular joint, initial encounter +S43202D Unspecified subluxation of left sternoclavicular joint, subsequent encounter +S43202S Unspecified subluxation of left sternoclavicular joint, sequela +S43203A Unspecified subluxation of unspecified sternoclavicular joint, initial encounter +S43203D Unspecified subluxation of unspecified sternoclavicular joint, subsequent encounter +S43203S Unspecified subluxation of unspecified sternoclavicular joint, sequela +S43204A Unspecified dislocation of right sternoclavicular joint, initial encounter +S43204D Unspecified dislocation of right sternoclavicular joint, subsequent encounter +S43204S Unspecified dislocation of right sternoclavicular joint, sequela +S43205A Unspecified dislocation of left sternoclavicular joint, initial encounter +S43205D Unspecified dislocation of left sternoclavicular joint, subsequent encounter +S43205S Unspecified dislocation of left sternoclavicular joint, sequela +S43206A Unspecified dislocation of unspecified sternoclavicular joint, initial encounter +S43206D Unspecified dislocation of unspecified sternoclavicular joint, subsequent encounter +S43206S Unspecified dislocation of unspecified sternoclavicular joint, sequela +S43211A Anterior subluxation of right sternoclavicular joint, initial encounter +S43211D Anterior subluxation of right sternoclavicular joint, subsequent encounter +S43211S Anterior subluxation of right sternoclavicular joint, sequela +S43212A Anterior subluxation of left sternoclavicular joint, initial encounter +S43212D Anterior subluxation of left sternoclavicular joint, subsequent encounter +S43212S Anterior subluxation of left sternoclavicular joint, sequela +S43213A Anterior subluxation of unspecified sternoclavicular joint, initial encounter +S43213D Anterior subluxation of unspecified sternoclavicular joint, subsequent encounter +S43213S Anterior subluxation of unspecified sternoclavicular joint, sequela +S43214A Anterior dislocation of right sternoclavicular joint, initial encounter +S43214D Anterior dislocation of right sternoclavicular joint, subsequent encounter +S43214S Anterior dislocation of right sternoclavicular joint, sequela +S43215A Anterior dislocation of left sternoclavicular joint, initial encounter +S43215D Anterior dislocation of left sternoclavicular joint, subsequent encounter +S43215S Anterior dislocation of left sternoclavicular joint, sequela +S43216A Anterior dislocation of unspecified sternoclavicular joint, initial encounter +S43216D Anterior dislocation of unspecified sternoclavicular joint, subsequent encounter +S43216S Anterior dislocation of unspecified sternoclavicular joint, sequela +S43221A Posterior subluxation of right sternoclavicular joint, initial encounter +S43221D Posterior subluxation of right sternoclavicular joint, subsequent encounter +S43221S Posterior subluxation of right sternoclavicular joint, sequela +S43222A Posterior subluxation of left sternoclavicular joint, initial encounter +S43222D Posterior subluxation of left sternoclavicular joint, subsequent encounter +S43222S Posterior subluxation of left sternoclavicular joint, sequela +S43223A Posterior subluxation of unspecified sternoclavicular joint, initial encounter +S43223D Posterior subluxation of unspecified sternoclavicular joint, subsequent encounter +S43223S Posterior subluxation of unspecified sternoclavicular joint, sequela +S43224A Posterior dislocation of right sternoclavicular joint, initial encounter +S43224D Posterior dislocation of right sternoclavicular joint, subsequent encounter +S43224S Posterior dislocation of right sternoclavicular joint, sequela +S43225A Posterior dislocation of left sternoclavicular joint, initial encounter +S43225D Posterior dislocation of left sternoclavicular joint, subsequent encounter +S43225S Posterior dislocation of left sternoclavicular joint, sequela +S43226A Posterior dislocation of unspecified sternoclavicular joint, initial encounter +S43226D Posterior dislocation of unspecified sternoclavicular joint, subsequent encounter +S43226S Posterior dislocation of unspecified sternoclavicular joint, sequela +S43301A Subluxation of unspecified parts of right shoulder girdle, initial encounter +S43301D Subluxation of unspecified parts of right shoulder girdle, subsequent encounter +S43301S Subluxation of unspecified parts of right shoulder girdle, sequela +S43302A Subluxation of unspecified parts of left shoulder girdle, initial encounter +S43302D Subluxation of unspecified parts of left shoulder girdle, subsequent encounter +S43302S Subluxation of unspecified parts of left shoulder girdle, sequela +S43303A Subluxation of unspecified parts of unspecified shoulder girdle, initial encounter +S43303D Subluxation of unspecified parts of unspecified shoulder girdle, subsequent encounter +S43303S Subluxation of unspecified parts of unspecified shoulder girdle, sequela +S43304A Dislocation of unspecified parts of right shoulder girdle, initial encounter +S43304D Dislocation of unspecified parts of right shoulder girdle, subsequent encounter +S43304S Dislocation of unspecified parts of right shoulder girdle, sequela +S43305A Dislocation of unspecified parts of left shoulder girdle, initial encounter +S43305D Dislocation of unspecified parts of left shoulder girdle, subsequent encounter +S43305S Dislocation of unspecified parts of left shoulder girdle, sequela +S43306A Dislocation of unspecified parts of unspecified shoulder girdle, initial encounter +S43306D Dislocation of unspecified parts of unspecified shoulder girdle, subsequent encounter +S43306S Dislocation of unspecified parts of unspecified shoulder girdle, sequela +S43311A Subluxation of right scapula, initial encounter +S43311D Subluxation of right scapula, subsequent encounter +S43311S Subluxation of right scapula, sequela +S43312A Subluxation of left scapula, initial encounter +S43312D Subluxation of left scapula, subsequent encounter +S43312S Subluxation of left scapula, sequela +S43313A Subluxation of unspecified scapula, initial encounter +S43313D Subluxation of unspecified scapula, subsequent encounter +S43313S Subluxation of unspecified scapula, sequela +S43314A Dislocation of right scapula, initial encounter +S43314D Dislocation of right scapula, subsequent encounter +S43314S Dislocation of right scapula, sequela +S43315A Dislocation of left scapula, initial encounter +S43315D Dislocation of left scapula, subsequent encounter +S43315S Dislocation of left scapula, sequela +S43316A Dislocation of unspecified scapula, initial encounter +S43316D Dislocation of unspecified scapula, subsequent encounter +S43316S Dislocation of unspecified scapula, sequela +S43391A Subluxation of other parts of right shoulder girdle, initial encounter +S43391D Subluxation of other parts of right shoulder girdle, subsequent encounter +S43391S Subluxation of other parts of right shoulder girdle, sequela +S43392A Subluxation of other parts of left shoulder girdle, initial encounter +S43392D Subluxation of other parts of left shoulder girdle, subsequent encounter +S43392S Subluxation of other parts of left shoulder girdle, sequela +S43393A Subluxation of other parts of unspecified shoulder girdle, initial encounter +S43393D Subluxation of other parts of unspecified shoulder girdle, subsequent encounter +S43393S Subluxation of other parts of unspecified shoulder girdle, sequela +S43394A Dislocation of other parts of right shoulder girdle, initial encounter +S43394D Dislocation of other parts of right shoulder girdle, subsequent encounter +S43394S Dislocation of other parts of right shoulder girdle, sequela +S43395A Dislocation of other parts of left shoulder girdle, initial encounter +S43395D Dislocation of other parts of left shoulder girdle, subsequent encounter +S43395S Dislocation of other parts of left shoulder girdle, sequela +S43396A Dislocation of other parts of unspecified shoulder girdle, initial encounter +S43396D Dislocation of other parts of unspecified shoulder girdle, subsequent encounter +S43396S Dislocation of other parts of unspecified shoulder girdle, sequela +S43401A Unspecified sprain of right shoulder joint, initial encounter +S43401D Unspecified sprain of right shoulder joint, subsequent encounter +S43401S Unspecified sprain of right shoulder joint, sequela +S43402A Unspecified sprain of left shoulder joint, initial encounter +S43402D Unspecified sprain of left shoulder joint, subsequent encounter +S43402S Unspecified sprain of left shoulder joint, sequela +S43409A Unspecified sprain of unspecified shoulder joint, initial encounter +S43409D Unspecified sprain of unspecified shoulder joint, subsequent encounter +S43409S Unspecified sprain of unspecified shoulder joint, sequela +S43411A Sprain of right coracohumeral (ligament), initial encounter +S43411D Sprain of right coracohumeral (ligament), subsequent encounter +S43411S Sprain of right coracohumeral (ligament), sequela +S43412A Sprain of left coracohumeral (ligament), initial encounter +S43412D Sprain of left coracohumeral (ligament), subsequent encounter +S43412S Sprain of left coracohumeral (ligament), sequela +S43419A Sprain of unspecified coracohumeral (ligament), initial encounter +S43419D Sprain of unspecified coracohumeral (ligament), subsequent encounter +S43419S Sprain of unspecified coracohumeral (ligament), sequela +S43421A Sprain of right rotator cuff capsule, initial encounter +S43421D Sprain of right rotator cuff capsule, subsequent encounter +S43421S Sprain of right rotator cuff capsule, sequela +S43422A Sprain of left rotator cuff capsule, initial encounter +S43422D Sprain of left rotator cuff capsule, subsequent encounter +S43422S Sprain of left rotator cuff capsule, sequela +S43429A Sprain of unspecified rotator cuff capsule, initial encounter +S43429D Sprain of unspecified rotator cuff capsule, subsequent encounter +S43429S Sprain of unspecified rotator cuff capsule, sequela +S43431A Superior glenoid labrum lesion of right shoulder, initial encounter +S43431D Superior glenoid labrum lesion of right shoulder, subsequent encounter +S43431S Superior glenoid labrum lesion of right shoulder, sequela +S43432A Superior glenoid labrum lesion of left shoulder, initial encounter +S43432D Superior glenoid labrum lesion of left shoulder, subsequent encounter +S43432S Superior glenoid labrum lesion of left shoulder, sequela +S43439A Superior glenoid labrum lesion of unspecified shoulder, initial encounter +S43439D Superior glenoid labrum lesion of unspecified shoulder, subsequent encounter +S43439S Superior glenoid labrum lesion of unspecified shoulder, sequela +S43491A Other sprain of right shoulder joint, initial encounter +S43491D Other sprain of right shoulder joint, subsequent encounter +S43491S Other sprain of right shoulder joint, sequela +S43492A Other sprain of left shoulder joint, initial encounter +S43492D Other sprain of left shoulder joint, subsequent encounter +S43492S Other sprain of left shoulder joint, sequela +S43499A Other sprain of unspecified shoulder joint, initial encounter +S43499D Other sprain of unspecified shoulder joint, subsequent encounter +S43499S Other sprain of unspecified shoulder joint, sequela +S4350XA Sprain of unspecified acromioclavicular joint, initial encounter +S4350XD Sprain of unspecified acromioclavicular joint, subsequent encounter +S4350XS Sprain of unspecified acromioclavicular joint, sequela +S4351XA Sprain of right acromioclavicular joint, initial encounter +S4351XD Sprain of right acromioclavicular joint, subsequent encounter +S4351XS Sprain of right acromioclavicular joint, sequela +S4352XA Sprain of left acromioclavicular joint, initial encounter +S4352XD Sprain of left acromioclavicular joint, subsequent encounter +S4352XS Sprain of left acromioclavicular joint, sequela +S4360XA Sprain of unspecified sternoclavicular joint, initial encounter +S4360XD Sprain of unspecified sternoclavicular joint, subsequent encounter +S4360XS Sprain of unspecified sternoclavicular joint, sequela +S4361XA Sprain of right sternoclavicular joint, initial encounter +S4361XD Sprain of right sternoclavicular joint, subsequent encounter +S4361XS Sprain of right sternoclavicular joint, sequela +S4362XA Sprain of left sternoclavicular joint, initial encounter +S4362XD Sprain of left sternoclavicular joint, subsequent encounter +S4362XS Sprain of left sternoclavicular joint, sequela +S4380XA Sprain of other specified parts of unspecified shoulder girdle, initial encounter +S4380XD Sprain of other specified parts of unspecified shoulder girdle, subsequent encounter +S4380XS Sprain of other specified parts of unspecified shoulder girdle, sequela +S4381XA Sprain of other specified parts of right shoulder girdle, initial encounter +S4381XD Sprain of other specified parts of right shoulder girdle, subsequent encounter +S4381XS Sprain of other specified parts of right shoulder girdle, sequela +S4382XA Sprain of other specified parts of left shoulder girdle, initial encounter +S4382XD Sprain of other specified parts of left shoulder girdle, subsequent encounter +S4382XS Sprain of other specified parts of left shoulder girdle, sequela +S4390XA Sprain of unspecified parts of unspecified shoulder girdle, initial encounter +S4390XD Sprain of unspecified parts of unspecified shoulder girdle, subsequent encounter +S4390XS Sprain of unspecified parts of unspecified shoulder girdle, sequela +S4391XA Sprain of unspecified parts of right shoulder girdle, initial encounter +S4391XD Sprain of unspecified parts of right shoulder girdle, subsequent encounter +S4391XS Sprain of unspecified parts of right shoulder girdle, sequela +S4392XA Sprain of unspecified parts of left shoulder girdle, initial encounter +S4392XD Sprain of unspecified parts of left shoulder girdle, subsequent encounter +S4392XS Sprain of unspecified parts of left shoulder girdle, sequela +S4400XA Injury of ulnar nerve at upper arm level, unspecified arm, initial encounter +S4400XD Injury of ulnar nerve at upper arm level, unspecified arm, subsequent encounter +S4400XS Injury of ulnar nerve at upper arm level, unspecified arm, sequela +S4401XA Injury of ulnar nerve at upper arm level, right arm, initial encounter +S4401XD Injury of ulnar nerve at upper arm level, right arm, subsequent encounter +S4401XS Injury of ulnar nerve at upper arm level, right arm, sequela +S4402XA Injury of ulnar nerve at upper arm level, left arm, initial encounter +S4402XD Injury of ulnar nerve at upper arm level, left arm, subsequent encounter +S4402XS Injury of ulnar nerve at upper arm level, left arm, sequela +S4410XA Injury of median nerve at upper arm level, unspecified arm, initial encounter +S4410XD Injury of median nerve at upper arm level, unspecified arm, subsequent encounter +S4410XS Injury of median nerve at upper arm level, unspecified arm, sequela +S4411XA Injury of median nerve at upper arm level, right arm, initial encounter +S4411XD Injury of median nerve at upper arm level, right arm, subsequent encounter +S4411XS Injury of median nerve at upper arm level, right arm, sequela +S4412XA Injury of median nerve at upper arm level, left arm, initial encounter +S4412XD Injury of median nerve at upper arm level, left arm, subsequent encounter +S4412XS Injury of median nerve at upper arm level, left arm, sequela +S4420XA Injury of radial nerve at upper arm level, unspecified arm, initial encounter +S4420XD Injury of radial nerve at upper arm level, unspecified arm, subsequent encounter +S4420XS Injury of radial nerve at upper arm level, unspecified arm, sequela +S4421XA Injury of radial nerve at upper arm level, right arm, initial encounter +S4421XD Injury of radial nerve at upper arm level, right arm, subsequent encounter +S4421XS Injury of radial nerve at upper arm level, right arm, sequela +S4422XA Injury of radial nerve at upper arm level, left arm, initial encounter +S4422XD Injury of radial nerve at upper arm level, left arm, subsequent encounter +S4422XS Injury of radial nerve at upper arm level, left arm, sequela +S4430XA Injury of axillary nerve, unspecified arm, initial encounter +S4430XD Injury of axillary nerve, unspecified arm, subsequent encounter +S4430XS Injury of axillary nerve, unspecified arm, sequela +S4431XA Injury of axillary nerve, right arm, initial encounter +S4431XD Injury of axillary nerve, right arm, subsequent encounter +S4431XS Injury of axillary nerve, right arm, sequela +S4432XA Injury of axillary nerve, left arm, initial encounter +S4432XD Injury of axillary nerve, left arm, subsequent encounter +S4432XS Injury of axillary nerve, left arm, sequela +S4440XA Injury of musculocutaneous nerve, unspecified arm, initial encounter +S4440XD Injury of musculocutaneous nerve, unspecified arm, subsequent encounter +S4440XS Injury of musculocutaneous nerve, unspecified arm, sequela +S4441XA Injury of musculocutaneous nerve, right arm, initial encounter +S4441XD Injury of musculocutaneous nerve, right arm, subsequent encounter +S4441XS Injury of musculocutaneous nerve, right arm, sequela +S4442XA Injury of musculocutaneous nerve, left arm, initial encounter +S4442XD Injury of musculocutaneous nerve, left arm, subsequent encounter +S4442XS Injury of musculocutaneous nerve, left arm, sequela +S4450XA Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, initial encounter +S4450XD Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, subsequent encounter +S4450XS Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, sequela +S4451XA Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, initial encounter +S4451XD Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, subsequent encounter +S4451XS Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, sequela +S4452XA Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, initial encounter +S4452XD Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, subsequent encounter +S4452XS Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, sequela +S448X1A Injury of other nerves at shoulder and upper arm level, right arm, initial encounter +S448X1D Injury of other nerves at shoulder and upper arm level, right arm, subsequent encounter +S448X1S Injury of other nerves at shoulder and upper arm level, right arm, sequela +S448X2A Injury of other nerves at shoulder and upper arm level, left arm, initial encounter +S448X2D Injury of other nerves at shoulder and upper arm level, left arm, subsequent encounter +S448X2S Injury of other nerves at shoulder and upper arm level, left arm, sequela +S448X9A Injury of other nerves at shoulder and upper arm level, unspecified arm, initial encounter +S448X9D Injury of other nerves at shoulder and upper arm level, unspecified arm, subsequent encounter +S448X9S Injury of other nerves at shoulder and upper arm level, unspecified arm, sequela +S4490XA Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, initial encounter +S4490XD Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, subsequent encounter +S4490XS Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, sequela +S4491XA Injury of unspecified nerve at shoulder and upper arm level, right arm, initial encounter +S4491XD Injury of unspecified nerve at shoulder and upper arm level, right arm, subsequent encounter +S4491XS Injury of unspecified nerve at shoulder and upper arm level, right arm, sequela +S4492XA Injury of unspecified nerve at shoulder and upper arm level, left arm, initial encounter +S4492XD Injury of unspecified nerve at shoulder and upper arm level, left arm, subsequent encounter +S4492XS Injury of unspecified nerve at shoulder and upper arm level, left arm, sequela +S45001A Unspecified injury of axillary artery, right side, initial encounter +S45001D Unspecified injury of axillary artery, right side, subsequent encounter +S45001S Unspecified injury of axillary artery, right side, sequela +S45002A Unspecified injury of axillary artery, left side, initial encounter +S45002D Unspecified injury of axillary artery, left side, subsequent encounter +S45002S Unspecified injury of axillary artery, left side, sequela +S45009A Unspecified injury of axillary artery, unspecified side, initial encounter +S45009D Unspecified injury of axillary artery, unspecified side, subsequent encounter +S45009S Unspecified injury of axillary artery, unspecified side, sequela +S45011A Laceration of axillary artery, right side, initial encounter +S45011D Laceration of axillary artery, right side, subsequent encounter +S45011S Laceration of axillary artery, right side, sequela +S45012A Laceration of axillary artery, left side, initial encounter +S45012D Laceration of axillary artery, left side, subsequent encounter +S45012S Laceration of axillary artery, left side, sequela +S45019A Laceration of axillary artery, unspecified side, initial encounter +S45019D Laceration of axillary artery, unspecified side, subsequent encounter +S45019S Laceration of axillary artery, unspecified side, sequela +S45091A Other specified injury of axillary artery, right side, initial encounter +S45091D Other specified injury of axillary artery, right side, subsequent encounter +S45091S Other specified injury of axillary artery, right side, sequela +S45092A Other specified injury of axillary artery, left side, initial encounter +S45092D Other specified injury of axillary artery, left side, subsequent encounter +S45092S Other specified injury of axillary artery, left side, sequela +S45099A Other specified injury of axillary artery, unspecified side, initial encounter +S45099D Other specified injury of axillary artery, unspecified side, subsequent encounter +S45099S Other specified injury of axillary artery, unspecified side, sequela +S45101A Unspecified injury of brachial artery, right side, initial encounter +S45101D Unspecified injury of brachial artery, right side, subsequent encounter +S45101S Unspecified injury of brachial artery, right side, sequela +S45102A Unspecified injury of brachial artery, left side, initial encounter +S45102D Unspecified injury of brachial artery, left side, subsequent encounter +S45102S Unspecified injury of brachial artery, left side, sequela +S45109A Unspecified injury of brachial artery, unspecified side, initial encounter +S45109D Unspecified injury of brachial artery, unspecified side, subsequent encounter +S45109S Unspecified injury of brachial artery, unspecified side, sequela +S45111A Laceration of brachial artery, right side, initial encounter +S45111D Laceration of brachial artery, right side, subsequent encounter +S45111S Laceration of brachial artery, right side, sequela +S45112A Laceration of brachial artery, left side, initial encounter +S45112D Laceration of brachial artery, left side, subsequent encounter +S45112S Laceration of brachial artery, left side, sequela +S45119A Laceration of brachial artery, unspecified side, initial encounter +S45119D Laceration of brachial artery, unspecified side, subsequent encounter +S45119S Laceration of brachial artery, unspecified side, sequela +S45191A Other specified injury of brachial artery, right side, initial encounter +S45191D Other specified injury of brachial artery, right side, subsequent encounter +S45191S Other specified injury of brachial artery, right side, sequela +S45192A Other specified injury of brachial artery, left side, initial encounter +S45192D Other specified injury of brachial artery, left side, subsequent encounter +S45192S Other specified injury of brachial artery, left side, sequela +S45199A Other specified injury of brachial artery, unspecified side, initial encounter +S45199D Other specified injury of brachial artery, unspecified side, subsequent encounter +S45199S Other specified injury of brachial artery, unspecified side, sequela +S45201A Unspecified injury of axillary or brachial vein, right side, initial encounter +S45201D Unspecified injury of axillary or brachial vein, right side, subsequent encounter +S45201S Unspecified injury of axillary or brachial vein, right side, sequela +S45202A Unspecified injury of axillary or brachial vein, left side, initial encounter +S45202D Unspecified injury of axillary or brachial vein, left side, subsequent encounter +S45202S Unspecified injury of axillary or brachial vein, left side, sequela +S45209A Unspecified injury of axillary or brachial vein, unspecified side, initial encounter +S45209D Unspecified injury of axillary or brachial vein, unspecified side, subsequent encounter +S45209S Unspecified injury of axillary or brachial vein, unspecified side, sequela +S45211A Laceration of axillary or brachial vein, right side, initial encounter +S45211D Laceration of axillary or brachial vein, right side, subsequent encounter +S45211S Laceration of axillary or brachial vein, right side, sequela +S45212A Laceration of axillary or brachial vein, left side, initial encounter +S45212D Laceration of axillary or brachial vein, left side, subsequent encounter +S45212S Laceration of axillary or brachial vein, left side, sequela +S45219A Laceration of axillary or brachial vein, unspecified side, initial encounter +S45219D Laceration of axillary or brachial vein, unspecified side, subsequent encounter +S45219S Laceration of axillary or brachial vein, unspecified side, sequela +S45291A Other specified injury of axillary or brachial vein, right side, initial encounter +S45291D Other specified injury of axillary or brachial vein, right side, subsequent encounter +S45291S Other specified injury of axillary or brachial vein, right side, sequela +S45292A Other specified injury of axillary or brachial vein, left side, initial encounter +S45292D Other specified injury of axillary or brachial vein, left side, subsequent encounter +S45292S Other specified injury of axillary or brachial vein, left side, sequela +S45299A Other specified injury of axillary or brachial vein, unspecified side, initial encounter +S45299D Other specified injury of axillary or brachial vein, unspecified side, subsequent encounter +S45299S Other specified injury of axillary or brachial vein, unspecified side, sequela +S45301A Unspecified injury of superficial vein at shoulder and upper arm level, right arm, initial encounter +S45301D Unspecified injury of superficial vein at shoulder and upper arm level, right arm, subsequent encounter +S45301S Unspecified injury of superficial vein at shoulder and upper arm level, right arm, sequela +S45302A Unspecified injury of superficial vein at shoulder and upper arm level, left arm, initial encounter +S45302D Unspecified injury of superficial vein at shoulder and upper arm level, left arm, subsequent encounter +S45302S Unspecified injury of superficial vein at shoulder and upper arm level, left arm, sequela +S45309A Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter +S45309D Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter +S45309S Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela +S45311A Laceration of superficial vein at shoulder and upper arm level, right arm, initial encounter +S45311D Laceration of superficial vein at shoulder and upper arm level, right arm, subsequent encounter +S45311S Laceration of superficial vein at shoulder and upper arm level, right arm, sequela +S45312A Laceration of superficial vein at shoulder and upper arm level, left arm, initial encounter +S45312D Laceration of superficial vein at shoulder and upper arm level, left arm, subsequent encounter +S45312S Laceration of superficial vein at shoulder and upper arm level, left arm, sequela +S45319A Laceration of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter +S45319D Laceration of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter +S45319S Laceration of superficial vein at shoulder and upper arm level, unspecified arm, sequela +S45391A Other specified injury of superficial vein at shoulder and upper arm level, right arm, initial encounter +S45391D Other specified injury of superficial vein at shoulder and upper arm level, right arm, subsequent encounter +S45391S Other specified injury of superficial vein at shoulder and upper arm level, right arm, sequela +S45392A Other specified injury of superficial vein at shoulder and upper arm level, left arm, initial encounter +S45392D Other specified injury of superficial vein at shoulder and upper arm level, left arm, subsequent encounter +S45392S Other specified injury of superficial vein at shoulder and upper arm level, left arm, sequela +S45399A Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter +S45399D Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter +S45399S Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela +S45801A Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter +S45801D Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter +S45801S Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, sequela +S45802A Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter +S45802D Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter +S45802S Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, sequela +S45809A Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter +S45809D Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter +S45809S Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela +S45811A Laceration of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter +S45811D Laceration of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter +S45811S Laceration of other specified blood vessels at shoulder and upper arm level, right arm, sequela +S45812A Laceration of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter +S45812D Laceration of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter +S45812S Laceration of other specified blood vessels at shoulder and upper arm level, left arm, sequela +S45819A Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter +S45819D Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter +S45819S Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela +S45891A Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter +S45891D Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter +S45891S Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, sequela +S45892A Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter +S45892D Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter +S45892S Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, sequela +S45899A Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter +S45899D Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter +S45899S Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela +S45901A Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter +S45901D Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter +S45901S Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, sequela +S45902A Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter +S45902D Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter +S45902S Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, sequela +S45909A Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter +S45909D Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter +S45909S Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela +S45911A Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter +S45911D Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter +S45911S Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, sequela +S45912A Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter +S45912D Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter +S45912S Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, sequela +S45919A Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter +S45919D Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter +S45919S Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela +S45991A Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter +S45991D Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter +S45991S Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, sequela +S45992A Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter +S45992D Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter +S45992S Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, sequela +S45999A Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter +S45999D Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter +S45999S Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela +S46001A Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter +S46001D Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter +S46001S Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela +S46002A Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter +S46002D Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter +S46002S Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela +S46009A Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter +S46009D Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter +S46009S Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela +S46011A Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter +S46011D Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter +S46011S Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela +S46012A Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter +S46012D Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter +S46012S Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela +S46019A Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter +S46019D Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter +S46019S Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela +S46021A Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter +S46021D Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter +S46021S Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela +S46022A Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter +S46022D Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter +S46022S Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela +S46029A Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter +S46029D Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter +S46029S Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela +S46091A Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter +S46091D Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter +S46091S Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela +S46092A Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter +S46092D Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter +S46092S Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela +S46099A Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter +S46099D Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter +S46099S Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela +S46101A Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter +S46101D Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter +S46101S Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, sequela +S46102A Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter +S46102D Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter +S46102S Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, sequela +S46109A Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter +S46109D Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter +S46109S Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela +S46111A Strain of muscle, fascia and tendon of long head of biceps, right arm, initial encounter +S46111D Strain of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter +S46111S Strain of muscle, fascia and tendon of long head of biceps, right arm, sequela +S46112A Strain of muscle, fascia and tendon of long head of biceps, left arm, initial encounter +S46112D Strain of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter +S46112S Strain of muscle, fascia and tendon of long head of biceps, left arm, sequela +S46119A Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter +S46119D Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter +S46119S Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela +S46121A Laceration of muscle, fascia and tendon of long head of biceps, right arm, initial encounter +S46121D Laceration of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter +S46121S Laceration of muscle, fascia and tendon of long head of biceps, right arm, sequela +S46122A Laceration of muscle, fascia and tendon of long head of biceps, left arm, initial encounter +S46122D Laceration of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter +S46122S Laceration of muscle, fascia and tendon of long head of biceps, left arm, sequela +S46129A Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter +S46129D Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter +S46129S Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela +S46191A Other injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter +S46191D Other injury of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter +S46191S Other injury of muscle, fascia and tendon of long head of biceps, right arm, sequela +S46192A Other injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter +S46192D Other injury of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter +S46192S Other injury of muscle, fascia and tendon of long head of biceps, left arm, sequela +S46199A Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter +S46199D Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter +S46199S Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela +S46201A Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter +S46201D Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter +S46201S Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela +S46202A Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter +S46202D Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter +S46202S Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela +S46209A Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter +S46209D Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter +S46209S Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela +S46211A Strain of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter +S46211D Strain of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter +S46211S Strain of muscle, fascia and tendon of other parts of biceps, right arm, sequela +S46212A Strain of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter +S46212D Strain of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter +S46212S Strain of muscle, fascia and tendon of other parts of biceps, left arm, sequela +S46219A Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter +S46219D Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter +S46219S Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela +S46221A Laceration of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter +S46221D Laceration of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter +S46221S Laceration of muscle, fascia and tendon of other parts of biceps, right arm, sequela +S46222A Laceration of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter +S46222D Laceration of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter +S46222S Laceration of muscle, fascia and tendon of other parts of biceps, left arm, sequela +S46229A Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter +S46229D Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter +S46229S Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela +S46291A Other injury of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter +S46291D Other injury of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter +S46291S Other injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela +S46292A Other injury of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter +S46292D Other injury of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter +S46292S Other injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela +S46299A Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter +S46299D Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter +S46299S Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela +S46301A Unspecified injury of muscle, fascia and tendon of triceps, right arm, initial encounter +S46301D Unspecified injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter +S46301S Unspecified injury of muscle, fascia and tendon of triceps, right arm, sequela +S46302A Unspecified injury of muscle, fascia and tendon of triceps, left arm, initial encounter +S46302D Unspecified injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter +S46302S Unspecified injury of muscle, fascia and tendon of triceps, left arm, sequela +S46309A Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter +S46309D Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter +S46309S Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, sequela +S46311A Strain of muscle, fascia and tendon of triceps, right arm, initial encounter +S46311D Strain of muscle, fascia and tendon of triceps, right arm, subsequent encounter +S46311S Strain of muscle, fascia and tendon of triceps, right arm, sequela +S46312A Strain of muscle, fascia and tendon of triceps, left arm, initial encounter +S46312D Strain of muscle, fascia and tendon of triceps, left arm, subsequent encounter +S46312S Strain of muscle, fascia and tendon of triceps, left arm, sequela +S46319A Strain of muscle, fascia and tendon of triceps, unspecified arm, initial encounter +S46319D Strain of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter +S46319S Strain of muscle, fascia and tendon of triceps, unspecified arm, sequela +S46321A Laceration of muscle, fascia and tendon of triceps, right arm, initial encounter +S46321D Laceration of muscle, fascia and tendon of triceps, right arm, subsequent encounter +S46321S Laceration of muscle, fascia and tendon of triceps, right arm, sequela +S46322A Laceration of muscle, fascia and tendon of triceps, left arm, initial encounter +S46322D Laceration of muscle, fascia and tendon of triceps, left arm, subsequent encounter +S46322S Laceration of muscle, fascia and tendon of triceps, left arm, sequela +S46329A Laceration of muscle, fascia and tendon of triceps, unspecified arm, initial encounter +S46329D Laceration of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter +S46329S Laceration of muscle, fascia and tendon of triceps, unspecified arm, sequela +S46391A Other injury of muscle, fascia and tendon of triceps, right arm, initial encounter +S46391D Other injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter +S46391S Other injury of muscle, fascia and tendon of triceps, right arm, sequela +S46392A Other injury of muscle, fascia and tendon of triceps, left arm, initial encounter +S46392D Other injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter +S46392S Other injury of muscle, fascia and tendon of triceps, left arm, sequela +S46399A Other injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter +S46399D Other injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter +S46399S Other injury of muscle, fascia and tendon of triceps, unspecified arm, sequela +S46801A Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter +S46801D Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter +S46801S Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela +S46802A Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter +S46802D Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter +S46802S Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela +S46809A Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter +S46809D Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter +S46809S Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela +S46811A Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter +S46811D Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter +S46811S Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela +S46812A Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter +S46812D Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter +S46812S Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela +S46819A Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter +S46819D Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter +S46819S Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela +S46821A Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter +S46821D Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter +S46821S Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela +S46822A Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter +S46822D Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter +S46822S Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela +S46829A Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter +S46829D Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter +S46829S Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela +S46891A Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter +S46891D Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter +S46891S Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela +S46892A Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter +S46892D Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter +S46892S Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela +S46899A Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter +S46899D Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter +S46899S Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela +S46901A Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter +S46901D Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter +S46901S Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela +S46902A Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter +S46902D Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter +S46902S Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela +S46909A Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter +S46909D Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter +S46909S Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela +S46911A Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter +S46911D Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter +S46911S Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela +S46912A Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter +S46912D Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter +S46912S Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela +S46919A Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter +S46919D Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter +S46919S Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela +S46921A Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter +S46921D Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter +S46921S Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela +S46922A Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter +S46922D Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter +S46922S Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela +S46929A Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter +S46929D Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter +S46929S Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela +S46991A Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter +S46991D Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter +S46991S Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela +S46992A Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter +S46992D Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter +S46992S Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela +S46999A Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter +S46999D Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter +S46999S Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela +S471XXA Crushing injury of right shoulder and upper arm, initial encounter +S471XXD Crushing injury of right shoulder and upper arm, subsequent encounter +S471XXS Crushing injury of right shoulder and upper arm, sequela +S472XXA Crushing injury of left shoulder and upper arm, initial encounter +S472XXD Crushing injury of left shoulder and upper arm, subsequent encounter +S472XXS Crushing injury of left shoulder and upper arm, sequela +S479XXA Crushing injury of shoulder and upper arm, unspecified arm, initial encounter +S479XXD Crushing injury of shoulder and upper arm, unspecified arm, subsequent encounter +S479XXS Crushing injury of shoulder and upper arm, unspecified arm, sequela +S48011A Complete traumatic amputation at right shoulder joint, initial encounter +S48011D Complete traumatic amputation at right shoulder joint, subsequent encounter +S48011S Complete traumatic amputation at right shoulder joint, sequela +S48012A Complete traumatic amputation at left shoulder joint, initial encounter +S48012D Complete traumatic amputation at left shoulder joint, subsequent encounter +S48012S Complete traumatic amputation at left shoulder joint, sequela +S48019A Complete traumatic amputation at unspecified shoulder joint, initial encounter +S48019D Complete traumatic amputation at unspecified shoulder joint, subsequent encounter +S48019S Complete traumatic amputation at unspecified shoulder joint, sequela +S48021A Partial traumatic amputation at right shoulder joint, initial encounter +S48021D Partial traumatic amputation at right shoulder joint, subsequent encounter +S48021S Partial traumatic amputation at right shoulder joint, sequela +S48022A Partial traumatic amputation at left shoulder joint, initial encounter +S48022D Partial traumatic amputation at left shoulder joint, subsequent encounter +S48022S Partial traumatic amputation at left shoulder joint, sequela +S48029A Partial traumatic amputation at unspecified shoulder joint, initial encounter +S48029D Partial traumatic amputation at unspecified shoulder joint, subsequent encounter +S48029S Partial traumatic amputation at unspecified shoulder joint, sequela +S48111A Complete traumatic amputation at level between right shoulder and elbow, initial encounter +S48111D Complete traumatic amputation at level between right shoulder and elbow, subsequent encounter +S48111S Complete traumatic amputation at level between right shoulder and elbow, sequela +S48112A Complete traumatic amputation at level between left shoulder and elbow, initial encounter +S48112D Complete traumatic amputation at level between left shoulder and elbow, subsequent encounter +S48112S Complete traumatic amputation at level between left shoulder and elbow, sequela +S48119A Complete traumatic amputation at level between unspecified shoulder and elbow, initial encounter +S48119D Complete traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter +S48119S Complete traumatic amputation at level between unspecified shoulder and elbow, sequela +S48121A Partial traumatic amputation at level between right shoulder and elbow, initial encounter +S48121D Partial traumatic amputation at level between right shoulder and elbow, subsequent encounter +S48121S Partial traumatic amputation at level between right shoulder and elbow, sequela +S48122A Partial traumatic amputation at level between left shoulder and elbow, initial encounter +S48122D Partial traumatic amputation at level between left shoulder and elbow, subsequent encounter +S48122S Partial traumatic amputation at level between left shoulder and elbow, sequela +S48129A Partial traumatic amputation at level between unspecified shoulder and elbow, initial encounter +S48129D Partial traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter +S48129S Partial traumatic amputation at level between unspecified shoulder and elbow, sequela +S48911A Complete traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter +S48911D Complete traumatic amputation of right shoulder and upper arm, level unspecified, subsequent encounter +S48911S Complete traumatic amputation of right shoulder and upper arm, level unspecified, sequela +S48912A Complete traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter +S48912D Complete traumatic amputation of left shoulder and upper arm, level unspecified, subsequent encounter +S48912S Complete traumatic amputation of left shoulder and upper arm, level unspecified, sequela +S48919A Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, initial encounter +S48919D Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, subsequent encounter +S48919S Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela +S48921A Partial traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter +S48921D Partial traumatic amputation of right shoulder and upper arm, level unspecified, subsequent encounter +S48921S Partial traumatic amputation of right shoulder and upper arm, level unspecified, sequela +S48922A Partial traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter +S48922D Partial traumatic amputation of left shoulder and upper arm, level unspecified, subsequent encounter +S48922S Partial traumatic amputation of left shoulder and upper arm, level unspecified, sequela +S48929A Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, initial encounter +S48929D Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, subsequent encounter +S48929S Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela +S49001A Unspecified physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture +S49001D Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing +S49001G Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49001K Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion +S49001P Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion +S49001S Unspecified physeal fracture of upper end of humerus, right arm, sequela +S49002A Unspecified physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture +S49002D Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing +S49002G Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49002K Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion +S49002P Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion +S49002S Unspecified physeal fracture of upper end of humerus, left arm, sequela +S49009A Unspecified physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture +S49009D Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49009G Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49009K Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49009P Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49009S Unspecified physeal fracture of upper end of humerus, unspecified arm, sequela +S49011A Salter-Harris Type I physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture +S49011D Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing +S49011G Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49011K Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion +S49011P Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion +S49011S Salter-Harris Type I physeal fracture of upper end of humerus, right arm, sequela +S49012A Salter-Harris Type I physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture +S49012D Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing +S49012G Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49012K Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion +S49012P Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion +S49012S Salter-Harris Type I physeal fracture of upper end of humerus, left arm, sequela +S49019A Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture +S49019D Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49019G Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49019K Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49019P Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49019S Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, sequela +S49021A Salter-Harris Type II physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture +S49021D Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing +S49021G Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49021K Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion +S49021P Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion +S49021S Salter-Harris Type II physeal fracture of upper end of humerus, right arm, sequela +S49022A Salter-Harris Type II physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture +S49022D Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing +S49022G Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49022K Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion +S49022P Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion +S49022S Salter-Harris Type II physeal fracture of upper end of humerus, left arm, sequela +S49029A Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture +S49029D Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49029G Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49029K Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49029P Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49029S Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, sequela +S49031A Salter-Harris Type III physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture +S49031D Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing +S49031G Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49031K Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion +S49031P Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion +S49031S Salter-Harris Type III physeal fracture of upper end of humerus, right arm, sequela +S49032A Salter-Harris Type III physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture +S49032D Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing +S49032G Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49032K Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion +S49032P Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion +S49032S Salter-Harris Type III physeal fracture of upper end of humerus, left arm, sequela +S49039A Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture +S49039D Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49039G Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49039K Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49039P Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49039S Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, sequela +S49041A Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture +S49041D Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing +S49041G Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49041K Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion +S49041P Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion +S49041S Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, sequela +S49042A Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture +S49042D Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing +S49042G Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49042K Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion +S49042P Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion +S49042S Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, sequela +S49049A Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture +S49049D Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49049G Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49049K Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49049P Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49049S Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, sequela +S49091A Other physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture +S49091D Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing +S49091G Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49091K Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion +S49091P Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion +S49091S Other physeal fracture of upper end of humerus, right arm, sequela +S49092A Other physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture +S49092D Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing +S49092G Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49092K Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion +S49092P Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion +S49092S Other physeal fracture of upper end of humerus, left arm, sequela +S49099A Other physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture +S49099D Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49099G Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49099K Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49099P Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49099S Other physeal fracture of upper end of humerus, unspecified arm, sequela +S49101A Unspecified physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture +S49101D Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing +S49101G Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49101K Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion +S49101P Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion +S49101S Unspecified physeal fracture of lower end of humerus, right arm, sequela +S49102A Unspecified physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture +S49102D Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing +S49102G Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49102K Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion +S49102P Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion +S49102S Unspecified physeal fracture of lower end of humerus, left arm, sequela +S49109A Unspecified physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture +S49109D Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49109G Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49109K Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49109P Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49109S Unspecified physeal fracture of lower end of humerus, unspecified arm, sequela +S49111A Salter-Harris Type I physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture +S49111D Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing +S49111G Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49111K Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion +S49111P Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion +S49111S Salter-Harris Type I physeal fracture of lower end of humerus, right arm, sequela +S49112A Salter-Harris Type I physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture +S49112D Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing +S49112G Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49112K Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion +S49112P Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion +S49112S Salter-Harris Type I physeal fracture of lower end of humerus, left arm, sequela +S49119A Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture +S49119D Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49119G Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49119K Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49119P Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49119S Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, sequela +S49121A Salter-Harris Type II physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture +S49121D Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing +S49121G Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49121K Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion +S49121P Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion +S49121S Salter-Harris Type II physeal fracture of lower end of humerus, right arm, sequela +S49122A Salter-Harris Type II physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture +S49122D Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing +S49122G Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49122K Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion +S49122P Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion +S49122S Salter-Harris Type II physeal fracture of lower end of humerus, left arm, sequela +S49129A Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture +S49129D Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49129G Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49129K Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49129P Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49129S Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, sequela +S49131A Salter Harris Type III physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture +S49131D Salter Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing +S49131G Salter Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49131K Salter Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion +S49131P Salter Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion +S49131S Salter Harris Type III physeal fracture of lower end of humerus, right arm, sequela +S49132A Salter Harris Type III physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture +S49132D Salter Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing +S49132G Salter Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49132K Salter Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion +S49132P Salter Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion +S49132S Salter Harris Type III physeal fracture of lower end of humerus, left arm, sequela +S49139A Salter Harris Type III physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture +S49139D Salter Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49139G Salter Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49139K Salter Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49139P Salter Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49139S Salter Harris Type III physeal fracture of lower end of humerus, unspecified arm, sequela +S49141A Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture +S49141D Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing +S49141G Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49141K Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion +S49141P Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion +S49141S Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, sequela +S49142A Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture +S49142D Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing +S49142G Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49142K Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion +S49142P Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion +S49142S Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, sequela +S49149A Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture +S49149D Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49149G Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49149K Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49149P Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49149S Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, sequela +S49191A Other physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture +S49191D Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing +S49191G Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing +S49191K Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion +S49191P Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion +S49191S Other physeal fracture of lower end of humerus, right arm, sequela +S49192A Other physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture +S49192D Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing +S49192G Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing +S49192K Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion +S49192P Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion +S49192S Other physeal fracture of lower end of humerus, left arm, sequela +S49199A Other physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture +S49199D Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing +S49199G Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing +S49199K Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion +S49199P Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion +S49199S Other physeal fracture of lower end of humerus, unspecified arm, sequela +S4980XA Other specified injuries of shoulder and upper arm, unspecified arm, initial encounter +S4980XD Other specified injuries of shoulder and upper arm, unspecified arm, subsequent encounter +S4980XS Other specified injuries of shoulder and upper arm, unspecified arm, sequela +S4981XA Other specified injuries of right shoulder and upper arm, initial encounter +S4981XD Other specified injuries of right shoulder and upper arm, subsequent encounter +S4981XS Other specified injuries of right shoulder and upper arm, sequela +S4982XA Other specified injuries of left shoulder and upper arm, initial encounter +S4982XD Other specified injuries of left shoulder and upper arm, subsequent encounter +S4982XS Other specified injuries of left shoulder and upper arm, sequela +S4990XA Unspecified injury of shoulder and upper arm, unspecified arm, initial encounter +S4990XD Unspecified injury of shoulder and upper arm, unspecified arm, subsequent encounter +S4990XS Unspecified injury of shoulder and upper arm, unspecified arm, sequela +S4991XA Unspecified injury of right shoulder and upper arm, initial encounter +S4991XD Unspecified injury of right shoulder and upper arm, subsequent encounter +S4991XS Unspecified injury of right shoulder and upper arm, sequela +S4992XA Unspecified injury of left shoulder and upper arm, initial encounter +S4992XD Unspecified injury of left shoulder and upper arm, subsequent encounter +S4992XS Unspecified injury of left shoulder and upper arm, sequela +S5000XA Contusion of unspecified elbow, initial encounter +S5000XD Contusion of unspecified elbow, subsequent encounter +S5000XS Contusion of unspecified elbow, sequela +S5001XA Contusion of right elbow, initial encounter +S5001XD Contusion of right elbow, subsequent encounter +S5001XS Contusion of right elbow, sequela +S5002XA Contusion of left elbow, initial encounter +S5002XD Contusion of left elbow, subsequent encounter +S5002XS Contusion of left elbow, sequela +S5010XA Contusion of unspecified forearm, initial encounter +S5010XD Contusion of unspecified forearm, subsequent encounter +S5010XS Contusion of unspecified forearm, sequela +S5011XA Contusion of right forearm, initial encounter +S5011XD Contusion of right forearm, subsequent encounter +S5011XS Contusion of right forearm, sequela +S5012XA Contusion of left forearm, initial encounter +S5012XD Contusion of left forearm, subsequent encounter +S5012XS Contusion of left forearm, sequela +S50311A Abrasion of right elbow, initial encounter +S50311D Abrasion of right elbow, subsequent encounter +S50311S Abrasion of right elbow, sequela +S50312A Abrasion of left elbow, initial encounter +S50312D Abrasion of left elbow, subsequent encounter +S50312S Abrasion of left elbow, sequela +S50319A Abrasion of unspecified elbow, initial encounter +S50319D Abrasion of unspecified elbow, subsequent encounter +S50319S Abrasion of unspecified elbow, sequela +S50321A Blister (nonthermal) of right elbow, initial encounter +S50321D Blister (nonthermal) of right elbow, subsequent encounter +S50321S Blister (nonthermal) of right elbow, sequela +S50322A Blister (nonthermal) of left elbow, initial encounter +S50322D Blister (nonthermal) of left elbow, subsequent encounter +S50322S Blister (nonthermal) of left elbow, sequela +S50329A Blister (nonthermal) of unspecified elbow, initial encounter +S50329D Blister (nonthermal) of unspecified elbow, subsequent encounter +S50329S Blister (nonthermal) of unspecified elbow, sequela +S50341A External constriction of right elbow, initial encounter +S50341D External constriction of right elbow, subsequent encounter +S50341S External constriction of right elbow, sequela +S50342A External constriction of left elbow, initial encounter +S50342D External constriction of left elbow, subsequent encounter +S50342S External constriction of left elbow, sequela +S50349A External constriction of unspecified elbow, initial encounter +S50349D External constriction of unspecified elbow, subsequent encounter +S50349S External constriction of unspecified elbow, sequela +S50351A Superficial foreign body of right elbow, initial encounter +S50351D Superficial foreign body of right elbow, subsequent encounter +S50351S Superficial foreign body of right elbow, sequela +S50352A Superficial foreign body of left elbow, initial encounter +S50352D Superficial foreign body of left elbow, subsequent encounter +S50352S Superficial foreign body of left elbow, sequela +S50359A Superficial foreign body of unspecified elbow, initial encounter +S50359D Superficial foreign body of unspecified elbow, subsequent encounter +S50359S Superficial foreign body of unspecified elbow, sequela +S50361A Insect bite (nonvenomous) of right elbow, initial encounter +S50361D Insect bite (nonvenomous) of right elbow, subsequent encounter +S50361S Insect bite (nonvenomous) of right elbow, sequela +S50362A Insect bite (nonvenomous) of left elbow, initial encounter +S50362D Insect bite (nonvenomous) of left elbow, subsequent encounter +S50362S Insect bite (nonvenomous) of left elbow, sequela +S50369A Insect bite (nonvenomous) of unspecified elbow, initial encounter +S50369D Insect bite (nonvenomous) of unspecified elbow, subsequent encounter +S50369S Insect bite (nonvenomous) of unspecified elbow, sequela +S50371A Other superficial bite of right elbow, initial encounter +S50371D Other superficial bite of right elbow, subsequent encounter +S50371S Other superficial bite of right elbow, sequela +S50372A Other superficial bite of left elbow, initial encounter +S50372D Other superficial bite of left elbow, subsequent encounter +S50372S Other superficial bite of left elbow, sequela +S50379A Other superficial bite of unspecified elbow, initial encounter +S50379D Other superficial bite of unspecified elbow, subsequent encounter +S50379S Other superficial bite of unspecified elbow, sequela +S50811A Abrasion of right forearm, initial encounter +S50811D Abrasion of right forearm, subsequent encounter +S50811S Abrasion of right forearm, sequela +S50812A Abrasion of left forearm, initial encounter +S50812D Abrasion of left forearm, subsequent encounter +S50812S Abrasion of left forearm, sequela +S50819A Abrasion of unspecified forearm, initial encounter +S50819D Abrasion of unspecified forearm, subsequent encounter +S50819S Abrasion of unspecified forearm, sequela +S50821A Blister (nonthermal) of right forearm, initial encounter +S50821D Blister (nonthermal) of right forearm, subsequent encounter +S50821S Blister (nonthermal) of right forearm, sequela +S50822A Blister (nonthermal) of left forearm, initial encounter +S50822D Blister (nonthermal) of left forearm, subsequent encounter +S50822S Blister (nonthermal) of left forearm, sequela +S50829A Blister (nonthermal) of unspecified forearm, initial encounter +S50829D Blister (nonthermal) of unspecified forearm, subsequent encounter +S50829S Blister (nonthermal) of unspecified forearm, sequela +S50841A External constriction of right forearm, initial encounter +S50841D External constriction of right forearm, subsequent encounter +S50841S External constriction of right forearm, sequela +S50842A External constriction of left forearm, initial encounter +S50842D External constriction of left forearm, subsequent encounter +S50842S External constriction of left forearm, sequela +S50849A External constriction of unspecified forearm, initial encounter +S50849D External constriction of unspecified forearm, subsequent encounter +S50849S External constriction of unspecified forearm, sequela +S50851A Superficial foreign body of right forearm, initial encounter +S50851D Superficial foreign body of right forearm, subsequent encounter +S50851S Superficial foreign body of right forearm, sequela +S50852A Superficial foreign body of left forearm, initial encounter +S50852D Superficial foreign body of left forearm, subsequent encounter +S50852S Superficial foreign body of left forearm, sequela +S50859A Superficial foreign body of unspecified forearm, initial encounter +S50859D Superficial foreign body of unspecified forearm, subsequent encounter +S50859S Superficial foreign body of unspecified forearm, sequela +S50861A Insect bite (nonvenomous) of right forearm, initial encounter +S50861D Insect bite (nonvenomous) of right forearm, subsequent encounter +S50861S Insect bite (nonvenomous) of right forearm, sequela +S50862A Insect bite (nonvenomous) of left forearm, initial encounter +S50862D Insect bite (nonvenomous) of left forearm, subsequent encounter +S50862S Insect bite (nonvenomous) of left forearm, sequela +S50869A Insect bite (nonvenomous) of unspecified forearm, initial encounter +S50869D Insect bite (nonvenomous) of unspecified forearm, subsequent encounter +S50869S Insect bite (nonvenomous) of unspecified forearm, sequela +S50871A Other superficial bite of right forearm, initial encounter +S50871D Other superficial bite of right forearm, subsequent encounter +S50871S Other superficial bite of right forearm, sequela +S50872A Other superficial bite of left forearm, initial encounter +S50872D Other superficial bite of left forearm, subsequent encounter +S50872S Other superficial bite of left forearm, sequela +S50879A Other superficial bite of unspecified forearm, initial encounter +S50879D Other superficial bite of unspecified forearm, subsequent encounter +S50879S Other superficial bite of unspecified forearm, sequela +S50901A Unspecified superficial injury of right elbow, initial encounter +S50901D Unspecified superficial injury of right elbow, subsequent encounter +S50901S Unspecified superficial injury of right elbow, sequela +S50902A Unspecified superficial injury of left elbow, initial encounter +S50902D Unspecified superficial injury of left elbow, subsequent encounter +S50902S Unspecified superficial injury of left elbow, sequela +S50909A Unspecified superficial injury of unspecified elbow, initial encounter +S50909D Unspecified superficial injury of unspecified elbow, subsequent encounter +S50909S Unspecified superficial injury of unspecified elbow, sequela +S50911A Unspecified superficial injury of right forearm, initial encounter +S50911D Unspecified superficial injury of right forearm, subsequent encounter +S50911S Unspecified superficial injury of right forearm, sequela +S50912A Unspecified superficial injury of left forearm, initial encounter +S50912D Unspecified superficial injury of left forearm, subsequent encounter +S50912S Unspecified superficial injury of left forearm, sequela +S50919A Unspecified superficial injury of unspecified forearm, initial encounter +S50919D Unspecified superficial injury of unspecified forearm, subsequent encounter +S50919S Unspecified superficial injury of unspecified forearm, sequela +S51001A Unspecified open wound of right elbow, initial encounter +S51001D Unspecified open wound of right elbow, subsequent encounter +S51001S Unspecified open wound of right elbow, sequela +S51002A Unspecified open wound of left elbow, initial encounter +S51002D Unspecified open wound of left elbow, subsequent encounter +S51002S Unspecified open wound of left elbow, sequela +S51009A Unspecified open wound of unspecified elbow, initial encounter +S51009D Unspecified open wound of unspecified elbow, subsequent encounter +S51009S Unspecified open wound of unspecified elbow, sequela +S51011A Laceration without foreign body of right elbow, initial encounter +S51011D Laceration without foreign body of right elbow, subsequent encounter +S51011S Laceration without foreign body of right elbow, sequela +S51012A Laceration without foreign body of left elbow, initial encounter +S51012D Laceration without foreign body of left elbow, subsequent encounter +S51012S Laceration without foreign body of left elbow, sequela +S51019A Laceration without foreign body of unspecified elbow, initial encounter +S51019D Laceration without foreign body of unspecified elbow, subsequent encounter +S51019S Laceration without foreign body of unspecified elbow, sequela +S51021A Laceration with foreign body of right elbow, initial encounter +S51021D Laceration with foreign body of right elbow, subsequent encounter +S51021S Laceration with foreign body of right elbow, sequela +S51022A Laceration with foreign body of left elbow, initial encounter +S51022D Laceration with foreign body of left elbow, subsequent encounter +S51022S Laceration with foreign body of left elbow, sequela +S51029A Laceration with foreign body of unspecified elbow, initial encounter +S51029D Laceration with foreign body of unspecified elbow, subsequent encounter +S51029S Laceration with foreign body of unspecified elbow, sequela +S51031A Puncture wound without foreign body of right elbow, initial encounter +S51031D Puncture wound without foreign body of right elbow, subsequent encounter +S51031S Puncture wound without foreign body of right elbow, sequela +S51032A Puncture wound without foreign body of left elbow, initial encounter +S51032D Puncture wound without foreign body of left elbow, subsequent encounter +S51032S Puncture wound without foreign body of left elbow, sequela +S51039A Puncture wound without foreign body of unspecified elbow, initial encounter +S51039D Puncture wound without foreign body of unspecified elbow, subsequent encounter +S51039S Puncture wound without foreign body of unspecified elbow, sequela +S51041A Puncture wound with foreign body of right elbow, initial encounter +S51041D Puncture wound with foreign body of right elbow, subsequent encounter +S51041S Puncture wound with foreign body of right elbow, sequela +S51042A Puncture wound with foreign body of left elbow, initial encounter +S51042D Puncture wound with foreign body of left elbow, subsequent encounter +S51042S Puncture wound with foreign body of left elbow, sequela +S51049A Puncture wound with foreign body of unspecified elbow, initial encounter +S51049D Puncture wound with foreign body of unspecified elbow, subsequent encounter +S51049S Puncture wound with foreign body of unspecified elbow, sequela +S51051A Open bite, right elbow, initial encounter +S51051D Open bite, right elbow, subsequent encounter +S51051S Open bite, right elbow, sequela +S51052A Open bite, left elbow, initial encounter +S51052D Open bite, left elbow, subsequent encounter +S51052S Open bite, left elbow, sequela +S51059A Open bite, unspecified elbow, initial encounter +S51059D Open bite, unspecified elbow, subsequent encounter +S51059S Open bite, unspecified elbow, sequela +S51801A Unspecified open wound of right forearm, initial encounter +S51801D Unspecified open wound of right forearm, subsequent encounter +S51801S Unspecified open wound of right forearm, sequela +S51802A Unspecified open wound of left forearm, initial encounter +S51802D Unspecified open wound of left forearm, subsequent encounter +S51802S Unspecified open wound of left forearm, sequela +S51809A Unspecified open wound of unspecified forearm, initial encounter +S51809D Unspecified open wound of unspecified forearm, subsequent encounter +S51809S Unspecified open wound of unspecified forearm, sequela +S51811A Laceration without foreign body of right forearm, initial encounter +S51811D Laceration without foreign body of right forearm, subsequent encounter +S51811S Laceration without foreign body of right forearm, sequela +S51812A Laceration without foreign body of left forearm, initial encounter +S51812D Laceration without foreign body of left forearm, subsequent encounter +S51812S Laceration without foreign body of left forearm, sequela +S51819A Laceration without foreign body of unspecified forearm, initial encounter +S51819D Laceration without foreign body of unspecified forearm, subsequent encounter +S51819S Laceration without foreign body of unspecified forearm, sequela +S51821A Laceration with foreign body of right forearm, initial encounter +S51821D Laceration with foreign body of right forearm, subsequent encounter +S51821S Laceration with foreign body of right forearm, sequela +S51822A Laceration with foreign body of left forearm, initial encounter +S51822D Laceration with foreign body of left forearm, subsequent encounter +S51822S Laceration with foreign body of left forearm, sequela +S51829A Laceration with foreign body of unspecified forearm, initial encounter +S51829D Laceration with foreign body of unspecified forearm, subsequent encounter +S51829S Laceration with foreign body of unspecified forearm, sequela +S51831A Puncture wound without foreign body of right forearm, initial encounter +S51831D Puncture wound without foreign body of right forearm, subsequent encounter +S51831S Puncture wound without foreign body of right forearm, sequela +S51832A Puncture wound without foreign body of left forearm, initial encounter +S51832D Puncture wound without foreign body of left forearm, subsequent encounter +S51832S Puncture wound without foreign body of left forearm, sequela +S51839A Puncture wound without foreign body of unspecified forearm, initial encounter +S51839D Puncture wound without foreign body of unspecified forearm, subsequent encounter +S51839S Puncture wound without foreign body of unspecified forearm, sequela +S51841A Puncture wound with foreign body of right forearm, initial encounter +S51841D Puncture wound with foreign body of right forearm, subsequent encounter +S51841S Puncture wound with foreign body of right forearm, sequela +S51842A Puncture wound with foreign body of left forearm, initial encounter +S51842D Puncture wound with foreign body of left forearm, subsequent encounter +S51842S Puncture wound with foreign body of left forearm, sequela +S51849A Puncture wound with foreign body of unspecified forearm, initial encounter +S51849D Puncture wound with foreign body of unspecified forearm, subsequent encounter +S51849S Puncture wound with foreign body of unspecified forearm, sequela +S51851A Open bite of right forearm, initial encounter +S51851D Open bite of right forearm, subsequent encounter +S51851S Open bite of right forearm, sequela +S51852A Open bite of left forearm, initial encounter +S51852D Open bite of left forearm, subsequent encounter +S51852S Open bite of left forearm, sequela +S51859A Open bite of unspecified forearm, initial encounter +S51859D Open bite of unspecified forearm, subsequent encounter +S51859S Open bite of unspecified forearm, sequela +S52001A Unspecified fracture of upper end of right ulna, initial encounter for closed fracture +S52001B Unspecified fracture of upper end of right ulna, initial encounter for open fracture type I or II +S52001C Unspecified fracture of upper end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52001D Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with routine healing +S52001E Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52001F Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52001G Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with delayed healing +S52001H Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52001J Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52001K Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with nonunion +S52001M Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52001N Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52001P Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with malunion +S52001Q Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with malunion +S52001R Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52001S Unspecified fracture of upper end of right ulna, sequela +S52002A Unspecified fracture of upper end of left ulna, initial encounter for closed fracture +S52002B Unspecified fracture of upper end of left ulna, initial encounter for open fracture type I or II +S52002C Unspecified fracture of upper end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52002D Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with routine healing +S52002E Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52002F Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52002G Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with delayed healing +S52002H Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52002J Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52002K Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with nonunion +S52002M Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52002N Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52002P Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with malunion +S52002Q Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with malunion +S52002R Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52002S Unspecified fracture of upper end of left ulna, sequela +S52009A Unspecified fracture of upper end of unspecified ulna, initial encounter for closed fracture +S52009B Unspecified fracture of upper end of unspecified ulna, initial encounter for open fracture type I or II +S52009C Unspecified fracture of upper end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52009D Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52009E Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52009F Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52009G Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52009H Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52009J Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52009K Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52009M Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52009N Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52009P Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with malunion +S52009Q Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52009R Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52009S Unspecified fracture of upper end of unspecified ulna, sequela +S52011A Torus fracture of upper end of right ulna, initial encounter for closed fracture +S52011D Torus fracture of upper end of right ulna, subsequent encounter for fracture with routine healing +S52011G Torus fracture of upper end of right ulna, subsequent encounter for fracture with delayed healing +S52011K Torus fracture of upper end of right ulna, subsequent encounter for fracture with nonunion +S52011P Torus fracture of upper end of right ulna, subsequent encounter for fracture with malunion +S52011S Torus fracture of upper end of right ulna, sequela +S52012A Torus fracture of upper end of left ulna, initial encounter for closed fracture +S52012D Torus fracture of upper end of left ulna, subsequent encounter for fracture with routine healing +S52012G Torus fracture of upper end of left ulna, subsequent encounter for fracture with delayed healing +S52012K Torus fracture of upper end of left ulna, subsequent encounter for fracture with nonunion +S52012P Torus fracture of upper end of left ulna, subsequent encounter for fracture with malunion +S52012S Torus fracture of upper end of left ulna, sequela +S52019A Torus fracture of upper end of unspecified ulna, initial encounter for closed fracture +S52019D Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with routine healing +S52019G Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with delayed healing +S52019K Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with nonunion +S52019P Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with malunion +S52019S Torus fracture of upper end of unspecified ulna, sequela +S52021A Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for closed fracture +S52021B Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type I or II +S52021C Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52021D Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing +S52021E Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52021F Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52021G Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing +S52021H Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52021J Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52021K Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion +S52021M Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52021N Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52021P Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion +S52021Q Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion +S52021R Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52021S Displaced fracture of olecranon process without intraarticular extension of right ulna, sequela +S52022A Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for closed fracture +S52022B Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type I or II +S52022C Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52022D Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing +S52022E Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52022F Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52022G Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing +S52022H Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52022J Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52022K Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion +S52022M Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52022N Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52022P Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion +S52022Q Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion +S52022R Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52022S Displaced fracture of olecranon process without intraarticular extension of left ulna, sequela +S52023A Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for closed fracture +S52023B Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II +S52023C Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52023D Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52023E Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52023F Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52023G Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52023H Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52023J Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52023K Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52023M Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52023N Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52023P Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion +S52023Q Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52023R Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52023S Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, sequela +S52024A Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for closed fracture +S52024B Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type I or II +S52024C Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52024D Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing +S52024E Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52024F Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52024G Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing +S52024H Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52024J Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52024K Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion +S52024M Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52024N Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52024P Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion +S52024Q Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion +S52024R Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52024S Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, sequela +S52025A Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for closed fracture +S52025B Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type I or II +S52025C Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52025D Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing +S52025E Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52025F Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52025G Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing +S52025H Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52025J Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52025K Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion +S52025M Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52025N Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52025P Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion +S52025Q Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion +S52025R Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52025S Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, sequela +S52026A Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for closed fracture +S52026B Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II +S52026C Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52026D Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52026E Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52026F Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52026G Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52026H Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52026J Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52026K Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52026M Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52026N Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52026P Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion +S52026Q Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52026R Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52026S Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, sequela +S52031A Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for closed fracture +S52031B Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type I or II +S52031C Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52031D Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing +S52031E Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52031F Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52031G Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing +S52031H Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52031J Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52031K Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion +S52031M Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52031N Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52031P Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion +S52031Q Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion +S52031R Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52031S Displaced fracture of olecranon process with intraarticular extension of right ulna, sequela +S52032A Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for closed fracture +S52032B Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type I or II +S52032C Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52032D Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing +S52032E Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52032F Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52032G Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing +S52032H Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52032J Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52032K Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion +S52032M Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52032N Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52032P Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion +S52032Q Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion +S52032R Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52032S Displaced fracture of olecranon process with intraarticular extension of left ulna, sequela +S52033A Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for closed fracture +S52033B Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II +S52033C Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52033D Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52033E Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52033F Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52033G Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52033H Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52033J Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52033K Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52033M Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52033N Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52033P Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion +S52033Q Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52033R Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52033S Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, sequela +S52034A Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for closed fracture +S52034B Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type I or II +S52034C Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52034D Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing +S52034E Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52034F Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52034G Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing +S52034H Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52034J Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52034K Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion +S52034M Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52034N Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52034P Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion +S52034Q Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion +S52034R Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52034S Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, sequela +S52035A Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for closed fracture +S52035B Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type I or II +S52035C Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52035D Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing +S52035E Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52035F Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52035G Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing +S52035H Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52035J Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52035K Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion +S52035M Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52035N Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52035P Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion +S52035Q Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion +S52035R Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52035S Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, sequela +S52036A Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for closed fracture +S52036B Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II +S52036C Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52036D Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52036E Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52036F Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52036G Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52036H Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52036J Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52036K Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52036M Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52036N Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52036P Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion +S52036Q Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52036R Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52036S Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, sequela +S52041A Displaced fracture of coronoid process of right ulna, initial encounter for closed fracture +S52041B Displaced fracture of coronoid process of right ulna, initial encounter for open fracture type I or II +S52041C Displaced fracture of coronoid process of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52041D Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with routine healing +S52041E Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52041F Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52041G Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with delayed healing +S52041H Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52041J Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52041K Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with nonunion +S52041M Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52041N Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52041P Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with malunion +S52041Q Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with malunion +S52041R Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52041S Displaced fracture of coronoid process of right ulna, sequela +S52042A Displaced fracture of coronoid process of left ulna, initial encounter for closed fracture +S52042B Displaced fracture of coronoid process of left ulna, initial encounter for open fracture type I or II +S52042C Displaced fracture of coronoid process of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52042D Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with routine healing +S52042E Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52042F Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52042G Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with delayed healing +S52042H Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52042J Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52042K Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with nonunion +S52042M Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52042N Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52042P Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with malunion +S52042Q Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with malunion +S52042R Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52042S Displaced fracture of coronoid process of left ulna, sequela +S52043A Displaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture +S52043B Displaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type I or II +S52043C Displaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52043D Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52043E Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52043F Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52043G Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52043H Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52043J Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52043K Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52043M Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52043N Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52043P Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with malunion +S52043Q Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52043R Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52043S Displaced fracture of coronoid process of unspecified ulna, sequela +S52044A Nondisplaced fracture of coronoid process of right ulna, initial encounter for closed fracture +S52044B Nondisplaced fracture of coronoid process of right ulna, initial encounter for open fracture type I or II +S52044C Nondisplaced fracture of coronoid process of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52044D Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with routine healing +S52044E Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52044F Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52044G Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with delayed healing +S52044H Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52044J Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52044K Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with nonunion +S52044M Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52044N Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52044P Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with malunion +S52044Q Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with malunion +S52044R Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52044S Nondisplaced fracture of coronoid process of right ulna, sequela +S52045A Nondisplaced fracture of coronoid process of left ulna, initial encounter for closed fracture +S52045B Nondisplaced fracture of coronoid process of left ulna, initial encounter for open fracture type I or II +S52045C Nondisplaced fracture of coronoid process of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52045D Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with routine healing +S52045E Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52045F Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52045G Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with delayed healing +S52045H Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52045J Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52045K Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with nonunion +S52045M Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52045N Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52045P Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with malunion +S52045Q Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with malunion +S52045R Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52045S Nondisplaced fracture of coronoid process of left ulna, sequela +S52046A Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture +S52046B Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type I or II +S52046C Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52046D Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52046E Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52046F Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52046G Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52046H Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52046J Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52046K Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52046M Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52046N Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52046P Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with malunion +S52046Q Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52046R Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52046S Nondisplaced fracture of coronoid process of unspecified ulna, sequela +S52091A Other fracture of upper end of right ulna, initial encounter for closed fracture +S52091B Other fracture of upper end of right ulna, initial encounter for open fracture type I or II +S52091C Other fracture of upper end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52091D Other fracture of upper end of right ulna, subsequent encounter for closed fracture with routine healing +S52091E Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52091F Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52091G Other fracture of upper end of right ulna, subsequent encounter for closed fracture with delayed healing +S52091H Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52091J Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52091K Other fracture of upper end of right ulna, subsequent encounter for closed fracture with nonunion +S52091M Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52091N Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52091P Other fracture of upper end of right ulna, subsequent encounter for closed fracture with malunion +S52091Q Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with malunion +S52091R Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52091S Other fracture of upper end of right ulna, sequela +S52092A Other fracture of upper end of left ulna, initial encounter for closed fracture +S52092B Other fracture of upper end of left ulna, initial encounter for open fracture type I or II +S52092C Other fracture of upper end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52092D Other fracture of upper end of left ulna, subsequent encounter for closed fracture with routine healing +S52092E Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52092F Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52092G Other fracture of upper end of left ulna, subsequent encounter for closed fracture with delayed healing +S52092H Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52092J Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52092K Other fracture of upper end of left ulna, subsequent encounter for closed fracture with nonunion +S52092M Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52092N Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52092P Other fracture of upper end of left ulna, subsequent encounter for closed fracture with malunion +S52092Q Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with malunion +S52092R Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52092S Other fracture of upper end of left ulna, sequela +S52099A Other fracture of upper end of unspecified ulna, initial encounter for closed fracture +S52099B Other fracture of upper end of unspecified ulna, initial encounter for open fracture type I or II +S52099C Other fracture of upper end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52099D Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52099E Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52099F Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52099G Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52099H Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52099J Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52099K Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52099M Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52099N Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52099P Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with malunion +S52099Q Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52099R Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52099S Other fracture of upper end of unspecified ulna, sequela +S52101A Unspecified fracture of upper end of right radius, initial encounter for closed fracture +S52101B Unspecified fracture of upper end of right radius, initial encounter for open fracture type I or II +S52101C Unspecified fracture of upper end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52101D Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with routine healing +S52101E Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with routine healing +S52101F Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52101G Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with delayed healing +S52101H Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52101J Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52101K Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with nonunion +S52101M Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with nonunion +S52101N Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52101P Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with malunion +S52101Q Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with malunion +S52101R Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52101S Unspecified fracture of upper end of right radius, sequela +S52102A Unspecified fracture of upper end of left radius, initial encounter for closed fracture +S52102B Unspecified fracture of upper end of left radius, initial encounter for open fracture type I or II +S52102C Unspecified fracture of upper end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52102D Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with routine healing +S52102E Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with routine healing +S52102F Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52102G Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with delayed healing +S52102H Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52102J Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52102K Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with nonunion +S52102M Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with nonunion +S52102N Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52102P Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with malunion +S52102Q Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with malunion +S52102R Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52102S Unspecified fracture of upper end of left radius, sequela +S52109A Unspecified fracture of upper end of unspecified radius, initial encounter for closed fracture +S52109B Unspecified fracture of upper end of unspecified radius, initial encounter for open fracture type I or II +S52109C Unspecified fracture of upper end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52109D Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with routine healing +S52109E Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52109F Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52109G Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52109H Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52109J Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52109K Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with nonunion +S52109M Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52109N Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52109P Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with malunion +S52109Q Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52109R Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52109S Unspecified fracture of upper end of unspecified radius, sequela +S52111A Torus fracture of upper end of right radius, initial encounter for closed fracture +S52111D Torus fracture of upper end of right radius, subsequent encounter for fracture with routine healing +S52111G Torus fracture of upper end of right radius, subsequent encounter for fracture with delayed healing +S52111K Torus fracture of upper end of right radius, subsequent encounter for fracture with nonunion +S52111P Torus fracture of upper end of right radius, subsequent encounter for fracture with malunion +S52111S Torus fracture of upper end of right radius, sequela +S52112A Torus fracture of upper end of left radius, initial encounter for closed fracture +S52112D Torus fracture of upper end of left radius, subsequent encounter for fracture with routine healing +S52112G Torus fracture of upper end of left radius, subsequent encounter for fracture with delayed healing +S52112K Torus fracture of upper end of left radius, subsequent encounter for fracture with nonunion +S52112P Torus fracture of upper end of left radius, subsequent encounter for fracture with malunion +S52112S Torus fracture of upper end of left radius, sequela +S52119A Torus fracture of upper end of unspecified radius, initial encounter for closed fracture +S52119D Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with routine healing +S52119G Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with delayed healing +S52119K Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with nonunion +S52119P Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with malunion +S52119S Torus fracture of upper end of unspecified radius, sequela +S52121A Displaced fracture of head of right radius, initial encounter for closed fracture +S52121B Displaced fracture of head of right radius, initial encounter for open fracture type I or II +S52121C Displaced fracture of head of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52121D Displaced fracture of head of right radius, subsequent encounter for closed fracture with routine healing +S52121E Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with routine healing +S52121F Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52121G Displaced fracture of head of right radius, subsequent encounter for closed fracture with delayed healing +S52121H Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52121J Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52121K Displaced fracture of head of right radius, subsequent encounter for closed fracture with nonunion +S52121M Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with nonunion +S52121N Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52121P Displaced fracture of head of right radius, subsequent encounter for closed fracture with malunion +S52121Q Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with malunion +S52121R Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52121S Displaced fracture of head of right radius, sequela +S52122A Displaced fracture of head of left radius, initial encounter for closed fracture +S52122B Displaced fracture of head of left radius, initial encounter for open fracture type I or II +S52122C Displaced fracture of head of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52122D Displaced fracture of head of left radius, subsequent encounter for closed fracture with routine healing +S52122E Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with routine healing +S52122F Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52122G Displaced fracture of head of left radius, subsequent encounter for closed fracture with delayed healing +S52122H Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52122J Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52122K Displaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion +S52122M Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with nonunion +S52122N Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52122P Displaced fracture of head of left radius, subsequent encounter for closed fracture with malunion +S52122Q Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with malunion +S52122R Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52122S Displaced fracture of head of left radius, sequela +S52123A Displaced fracture of head of unspecified radius, initial encounter for closed fracture +S52123B Displaced fracture of head of unspecified radius, initial encounter for open fracture type I or II +S52123C Displaced fracture of head of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52123D Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with routine healing +S52123E Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52123F Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52123G Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52123H Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52123J Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52123K Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with nonunion +S52123M Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52123N Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52123P Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with malunion +S52123Q Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52123R Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52123S Displaced fracture of head of unspecified radius, sequela +S52124A Nondisplaced fracture of head of right radius, initial encounter for closed fracture +S52124B Nondisplaced fracture of head of right radius, initial encounter for open fracture type I or II +S52124C Nondisplaced fracture of head of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52124D Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with routine healing +S52124E Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with routine healing +S52124F Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52124G Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with delayed healing +S52124H Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52124J Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52124K Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with nonunion +S52124M Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with nonunion +S52124N Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52124P Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with malunion +S52124Q Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with malunion +S52124R Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52124S Nondisplaced fracture of head of right radius, sequela +S52125A Nondisplaced fracture of head of left radius, initial encounter for closed fracture +S52125B Nondisplaced fracture of head of left radius, initial encounter for open fracture type I or II +S52125C Nondisplaced fracture of head of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52125D Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with routine healing +S52125E Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with routine healing +S52125F Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52125G Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with delayed healing +S52125H Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52125J Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52125K Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion +S52125M Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with nonunion +S52125N Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52125P Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with malunion +S52125Q Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with malunion +S52125R Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52125S Nondisplaced fracture of head of left radius, sequela +S52126A Nondisplaced fracture of head of unspecified radius, initial encounter for closed fracture +S52126B Nondisplaced fracture of head of unspecified radius, initial encounter for open fracture type I or II +S52126C Nondisplaced fracture of head of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52126D Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with routine healing +S52126E Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52126F Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52126G Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52126H Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52126J Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52126K Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with nonunion +S52126M Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52126N Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52126P Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with malunion +S52126Q Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52126R Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52126S Nondisplaced fracture of head of unspecified radius, sequela +S52131A Displaced fracture of neck of right radius, initial encounter for closed fracture +S52131B Displaced fracture of neck of right radius, initial encounter for open fracture type I or II +S52131C Displaced fracture of neck of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52131D Displaced fracture of neck of right radius, subsequent encounter for closed fracture with routine healing +S52131E Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with routine healing +S52131F Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52131G Displaced fracture of neck of right radius, subsequent encounter for closed fracture with delayed healing +S52131H Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52131J Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52131K Displaced fracture of neck of right radius, subsequent encounter for closed fracture with nonunion +S52131M Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with nonunion +S52131N Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52131P Displaced fracture of neck of right radius, subsequent encounter for closed fracture with malunion +S52131Q Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with malunion +S52131R Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52131S Displaced fracture of neck of right radius, sequela +S52132A Displaced fracture of neck of left radius, initial encounter for closed fracture +S52132B Displaced fracture of neck of left radius, initial encounter for open fracture type I or II +S52132C Displaced fracture of neck of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52132D Displaced fracture of neck of left radius, subsequent encounter for closed fracture with routine healing +S52132E Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with routine healing +S52132F Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52132G Displaced fracture of neck of left radius, subsequent encounter for closed fracture with delayed healing +S52132H Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52132J Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52132K Displaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion +S52132M Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with nonunion +S52132N Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52132P Displaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion +S52132Q Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with malunion +S52132R Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52132S Displaced fracture of neck of left radius, sequela +S52133A Displaced fracture of neck of unspecified radius, initial encounter for closed fracture +S52133B Displaced fracture of neck of unspecified radius, initial encounter for open fracture type I or II +S52133C Displaced fracture of neck of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52133D Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with routine healing +S52133E Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52133F Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52133G Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52133H Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52133J Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52133K Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with nonunion +S52133M Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52133N Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52133P Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with malunion +S52133Q Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52133R Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52133S Displaced fracture of neck of unspecified radius, sequela +S52134A Nondisplaced fracture of neck of right radius, initial encounter for closed fracture +S52134B Nondisplaced fracture of neck of right radius, initial encounter for open fracture type I or II +S52134C Nondisplaced fracture of neck of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52134D Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with routine healing +S52134E Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with routine healing +S52134F Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52134G Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with delayed healing +S52134H Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52134J Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52134K Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with nonunion +S52134M Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with nonunion +S52134N Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52134P Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with malunion +S52134Q Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with malunion +S52134R Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52134S Nondisplaced fracture of neck of right radius, sequela +S52135A Nondisplaced fracture of neck of left radius, initial encounter for closed fracture +S52135B Nondisplaced fracture of neck of left radius, initial encounter for open fracture type I or II +S52135C Nondisplaced fracture of neck of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52135D Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with routine healing +S52135E Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with routine healing +S52135F Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52135G Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with delayed healing +S52135H Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52135J Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52135K Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion +S52135M Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with nonunion +S52135N Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52135P Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion +S52135Q Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with malunion +S52135R Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52135S Nondisplaced fracture of neck of left radius, sequela +S52136A Nondisplaced fracture of neck of unspecified radius, initial encounter for closed fracture +S52136B Nondisplaced fracture of neck of unspecified radius, initial encounter for open fracture type I or II +S52136C Nondisplaced fracture of neck of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52136D Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with routine healing +S52136E Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52136F Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52136G Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52136H Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52136J Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52136K Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with nonunion +S52136M Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52136N Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52136P Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with malunion +S52136Q Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52136R Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52136S Nondisplaced fracture of neck of unspecified radius, sequela +S52181A Other fracture of upper end of right radius, initial encounter for closed fracture +S52181B Other fracture of upper end of right radius, initial encounter for open fracture type I or II +S52181C Other fracture of upper end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52181D Other fracture of upper end of right radius, subsequent encounter for closed fracture with routine healing +S52181E Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with routine healing +S52181F Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52181G Other fracture of upper end of right radius, subsequent encounter for closed fracture with delayed healing +S52181H Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52181J Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52181K Other fracture of upper end of right radius, subsequent encounter for closed fracture with nonunion +S52181M Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with nonunion +S52181N Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52181P Other fracture of upper end of right radius, subsequent encounter for closed fracture with malunion +S52181Q Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with malunion +S52181R Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52181S Other fracture of upper end of right radius, sequela +S52182A Other fracture of upper end of left radius, initial encounter for closed fracture +S52182B Other fracture of upper end of left radius, initial encounter for open fracture type I or II +S52182C Other fracture of upper end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52182D Other fracture of upper end of left radius, subsequent encounter for closed fracture with routine healing +S52182E Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with routine healing +S52182F Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52182G Other fracture of upper end of left radius, subsequent encounter for closed fracture with delayed healing +S52182H Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52182J Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52182K Other fracture of upper end of left radius, subsequent encounter for closed fracture with nonunion +S52182M Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with nonunion +S52182N Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52182P Other fracture of upper end of left radius, subsequent encounter for closed fracture with malunion +S52182Q Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with malunion +S52182R Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52182S Other fracture of upper end of left radius, sequela +S52189A Other fracture of upper end of unspecified radius, initial encounter for closed fracture +S52189B Other fracture of upper end of unspecified radius, initial encounter for open fracture type I or II +S52189C Other fracture of upper end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52189D Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with routine healing +S52189E Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52189F Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52189G Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52189H Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52189J Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52189K Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with nonunion +S52189M Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52189N Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52189P Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with malunion +S52189Q Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52189R Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52189S Other fracture of upper end of unspecified radius, sequela +S52201A Unspecified fracture of shaft of right ulna, initial encounter for closed fracture +S52201B Unspecified fracture of shaft of right ulna, initial encounter for open fracture type I or II +S52201C Unspecified fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52201D Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing +S52201E Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52201F Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52201G Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing +S52201H Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52201J Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52201K Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion +S52201M Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52201N Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52201P Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion +S52201Q Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion +S52201R Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52201S Unspecified fracture of shaft of right ulna, sequela +S52202A Unspecified fracture of shaft of left ulna, initial encounter for closed fracture +S52202B Unspecified fracture of shaft of left ulna, initial encounter for open fracture type I or II +S52202C Unspecified fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52202D Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing +S52202E Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52202F Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52202G Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing +S52202H Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52202J Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52202K Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion +S52202M Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52202N Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52202P Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion +S52202Q Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion +S52202R Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52202S Unspecified fracture of shaft of left ulna, sequela +S52209A Unspecified fracture of shaft of unspecified ulna, initial encounter for closed fracture +S52209B Unspecified fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II +S52209C Unspecified fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52209D Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52209E Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52209F Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52209G Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52209H Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52209J Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52209K Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52209M Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52209N Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52209P Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion +S52209Q Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52209R Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52209S Unspecified fracture of shaft of unspecified ulna, sequela +S52211A Greenstick fracture of shaft of right ulna, initial encounter for closed fracture +S52211D Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with routine healing +S52211G Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with delayed healing +S52211K Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with nonunion +S52211P Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with malunion +S52211S Greenstick fracture of shaft of right ulna, sequela +S52212A Greenstick fracture of shaft of left ulna, initial encounter for closed fracture +S52212D Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with routine healing +S52212G Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with delayed healing +S52212K Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with nonunion +S52212P Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with malunion +S52212S Greenstick fracture of shaft of left ulna, sequela +S52219A Greenstick fracture of shaft of unspecified ulna, initial encounter for closed fracture +S52219D Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with routine healing +S52219G Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with delayed healing +S52219K Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with nonunion +S52219P Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with malunion +S52219S Greenstick fracture of shaft of unspecified ulna, sequela +S52221A Displaced transverse fracture of shaft of right ulna, initial encounter for closed fracture +S52221B Displaced transverse fracture of shaft of right ulna, initial encounter for open fracture type I or II +S52221C Displaced transverse fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52221D Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing +S52221E Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52221F Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52221G Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing +S52221H Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52221J Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52221K Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion +S52221M Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52221N Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52221P Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion +S52221Q Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion +S52221R Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52221S Displaced transverse fracture of shaft of right ulna, sequela +S52222A Displaced transverse fracture of shaft of left ulna, initial encounter for closed fracture +S52222B Displaced transverse fracture of shaft of left ulna, initial encounter for open fracture type I or II +S52222C Displaced transverse fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52222D Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing +S52222E Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52222F Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52222G Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing +S52222H Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52222J Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52222K Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion +S52222M Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52222N Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52222P Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion +S52222Q Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion +S52222R Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52222S Displaced transverse fracture of shaft of left ulna, sequela +S52223A Displaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture +S52223B Displaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II +S52223C Displaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52223D Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52223E Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52223F Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52223G Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52223H Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52223J Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52223K Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52223M Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52223N Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52223P Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion +S52223Q Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52223R Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52223S Displaced transverse fracture of shaft of unspecified ulna, sequela +S52224A Nondisplaced transverse fracture of shaft of right ulna, initial encounter for closed fracture +S52224B Nondisplaced transverse fracture of shaft of right ulna, initial encounter for open fracture type I or II +S52224C Nondisplaced transverse fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52224D Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing +S52224E Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52224F Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52224G Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing +S52224H Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52224J Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52224K Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion +S52224M Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52224N Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52224P Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion +S52224Q Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion +S52224R Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52224S Nondisplaced transverse fracture of shaft of right ulna, sequela +S52225A Nondisplaced transverse fracture of shaft of left ulna, initial encounter for closed fracture +S52225B Nondisplaced transverse fracture of shaft of left ulna, initial encounter for open fracture type I or II +S52225C Nondisplaced transverse fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52225D Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing +S52225E Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52225F Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52225G Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing +S52225H Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52225J Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52225K Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion +S52225M Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52225N Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52225P Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion +S52225Q Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion +S52225R Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52225S Nondisplaced transverse fracture of shaft of left ulna, sequela +S52226A Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture +S52226B Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II +S52226C Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52226D Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52226E Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52226F Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52226G Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52226H Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52226J Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52226K Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52226M Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52226N Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52226P Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion +S52226Q Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52226R Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52226S Nondisplaced transverse fracture of shaft of unspecified ulna, sequela +S52231A Displaced oblique fracture of shaft of right ulna, initial encounter for closed fracture +S52231B Displaced oblique fracture of shaft of right ulna, initial encounter for open fracture type I or II +S52231C Displaced oblique fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52231D Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing +S52231E Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52231F Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52231G Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing +S52231H Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52231J Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52231K Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion +S52231M Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52231N Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52231P Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion +S52231Q Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion +S52231R Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52231S Displaced oblique fracture of shaft of right ulna, sequela +S52232A Displaced oblique fracture of shaft of left ulna, initial encounter for closed fracture +S52232B Displaced oblique fracture of shaft of left ulna, initial encounter for open fracture type I or II +S52232C Displaced oblique fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52232D Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing +S52232E Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52232F Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52232G Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing +S52232H Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52232J Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52232K Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion +S52232M Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52232N Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52232P Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion +S52232Q Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion +S52232R Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52232S Displaced oblique fracture of shaft of left ulna, sequela +S52233A Displaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture +S52233B Displaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II +S52233C Displaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52233D Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52233E Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52233F Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52233G Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52233H Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52233J Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52233K Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52233M Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52233N Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52233P Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion +S52233Q Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52233R Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52233S Displaced oblique fracture of shaft of unspecified ulna, sequela +S52234A Nondisplaced oblique fracture of shaft of right ulna, initial encounter for closed fracture +S52234B Nondisplaced oblique fracture of shaft of right ulna, initial encounter for open fracture type I or II +S52234C Nondisplaced oblique fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52234D Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing +S52234E Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52234F Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52234G Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing +S52234H Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52234J Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52234K Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion +S52234M Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52234N Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52234P Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion +S52234Q Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion +S52234R Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52234S Nondisplaced oblique fracture of shaft of right ulna, sequela +S52235A Nondisplaced oblique fracture of shaft of left ulna, initial encounter for closed fracture +S52235B Nondisplaced oblique fracture of shaft of left ulna, initial encounter for open fracture type I or II +S52235C Nondisplaced oblique fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52235D Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing +S52235E Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52235F Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52235G Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing +S52235H Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52235J Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52235K Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion +S52235M Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52235N Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52235P Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion +S52235Q Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion +S52235R Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52235S Nondisplaced oblique fracture of shaft of left ulna, sequela +S52236A Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture +S52236B Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II +S52236C Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52236D Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52236E Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52236F Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52236G Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52236H Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52236J Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52236K Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52236M Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52236N Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52236P Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion +S52236Q Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52236R Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52236S Nondisplaced oblique fracture of shaft of unspecified ulna, sequela +S52241A Displaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture +S52241B Displaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II +S52241C Displaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52241D Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing +S52241E Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing +S52241F Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52241G Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing +S52241H Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52241J Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52241K Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion +S52241M Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion +S52241N Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52241P Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion +S52241Q Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion +S52241R Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52241S Displaced spiral fracture of shaft of ulna, right arm, sequela +S52242A Displaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture +S52242B Displaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II +S52242C Displaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52242D Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing +S52242E Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing +S52242F Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52242G Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing +S52242H Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52242J Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52242K Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion +S52242M Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion +S52242N Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52242P Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion +S52242Q Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion +S52242R Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52242S Displaced spiral fracture of shaft of ulna, left arm, sequela +S52243A Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture +S52243B Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II +S52243C Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52243D Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing +S52243E Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52243F Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52243G Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52243H Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52243J Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52243K Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion +S52243M Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52243N Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52243P Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion +S52243Q Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52243R Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52243S Displaced spiral fracture of shaft of ulna, unspecified arm, sequela +S52244A Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture +S52244B Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II +S52244C Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52244D Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing +S52244E Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing +S52244F Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52244G Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing +S52244H Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52244J Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52244K Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion +S52244M Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion +S52244N Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52244P Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion +S52244Q Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion +S52244R Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52244S Nondisplaced spiral fracture of shaft of ulna, right arm, sequela +S52245A Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture +S52245B Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II +S52245C Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52245D Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing +S52245E Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing +S52245F Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52245G Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing +S52245H Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52245J Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52245K Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion +S52245M Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion +S52245N Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52245P Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion +S52245Q Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion +S52245R Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52245S Nondisplaced spiral fracture of shaft of ulna, left arm, sequela +S52246A Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture +S52246B Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II +S52246C Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52246D Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing +S52246E Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52246F Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52246G Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52246H Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52246J Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52246K Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion +S52246M Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52246N Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52246P Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion +S52246Q Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52246R Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52246S Nondisplaced spiral fracture of shaft of ulna, unspecified arm, sequela +S52251A Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture +S52251B Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II +S52251C Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52251D Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing +S52251E Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing +S52251F Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52251G Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing +S52251H Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52251J Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52251K Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion +S52251M Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion +S52251N Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52251P Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion +S52251Q Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion +S52251R Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52251S Displaced comminuted fracture of shaft of ulna, right arm, sequela +S52252A Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture +S52252B Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II +S52252C Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52252D Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing +S52252E Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing +S52252F Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52252G Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing +S52252H Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52252J Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52252K Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion +S52252M Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion +S52252N Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52252P Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion +S52252Q Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion +S52252R Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52252S Displaced comminuted fracture of shaft of ulna, left arm, sequela +S52253A Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture +S52253B Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II +S52253C Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52253D Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing +S52253E Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52253F Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52253G Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52253H Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52253J Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52253K Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion +S52253M Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52253N Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52253P Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion +S52253Q Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52253R Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52253S Displaced comminuted fracture of shaft of ulna, unspecified arm, sequela +S52254A Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture +S52254B Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II +S52254C Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52254D Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing +S52254E Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing +S52254F Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52254G Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing +S52254H Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52254J Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52254K Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion +S52254M Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion +S52254N Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52254P Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion +S52254Q Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion +S52254R Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52254S Nondisplaced comminuted fracture of shaft of ulna, right arm, sequela +S52255A Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture +S52255B Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II +S52255C Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52255D Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing +S52255E Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing +S52255F Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52255G Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing +S52255H Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52255J Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52255K Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion +S52255M Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion +S52255N Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52255P Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion +S52255Q Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion +S52255R Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52255S Nondisplaced comminuted fracture of shaft of ulna, left arm, sequela +S52256A Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture +S52256B Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II +S52256C Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52256D Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing +S52256E Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52256F Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52256G Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52256H Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52256J Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52256K Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion +S52256M Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52256N Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52256P Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion +S52256Q Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52256R Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52256S Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, sequela +S52261A Displaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture +S52261B Displaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II +S52261C Displaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52261D Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing +S52261E Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing +S52261F Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52261G Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing +S52261H Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52261J Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52261K Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion +S52261M Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion +S52261N Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52261P Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion +S52261Q Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion +S52261R Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52261S Displaced segmental fracture of shaft of ulna, right arm, sequela +S52262A Displaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture +S52262B Displaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II +S52262C Displaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52262D Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing +S52262E Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing +S52262F Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52262G Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing +S52262H Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52262J Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52262K Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion +S52262M Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion +S52262N Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52262P Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion +S52262Q Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion +S52262R Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52262S Displaced segmental fracture of shaft of ulna, left arm, sequela +S52263A Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture +S52263B Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II +S52263C Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52263D Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing +S52263E Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52263F Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52263G Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52263H Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52263J Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52263K Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion +S52263M Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52263N Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52263P Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion +S52263Q Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52263R Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52263S Displaced segmental fracture of shaft of ulna, unspecified arm, sequela +S52264A Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture +S52264B Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II +S52264C Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52264D Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing +S52264E Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing +S52264F Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52264G Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing +S52264H Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52264J Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52264K Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion +S52264M Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion +S52264N Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52264P Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion +S52264Q Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion +S52264R Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52264S Nondisplaced segmental fracture of shaft of ulna, right arm, sequela +S52265A Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture +S52265B Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II +S52265C Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52265D Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing +S52265E Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing +S52265F Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52265G Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing +S52265H Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52265J Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52265K Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion +S52265M Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion +S52265N Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52265P Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion +S52265Q Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion +S52265R Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52265S Nondisplaced segmental fracture of shaft of ulna, left arm, sequela +S52266A Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture +S52266B Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II +S52266C Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52266D Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing +S52266E Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52266F Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52266G Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52266H Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52266J Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52266K Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion +S52266M Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52266N Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52266P Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion +S52266Q Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52266R Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52266S Nondisplaced segmental fracture of shaft of ulna, unspecified arm, sequela +S52271A Monteggia's fracture of right ulna, initial encounter for closed fracture +S52271B Monteggia's fracture of right ulna, initial encounter for open fracture type I or II +S52271C Monteggia's fracture of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52271D Monteggia's fracture of right ulna, subsequent encounter for closed fracture with routine healing +S52271E Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52271F Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52271G Monteggia's fracture of right ulna, subsequent encounter for closed fracture with delayed healing +S52271H Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52271J Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52271K Monteggia's fracture of right ulna, subsequent encounter for closed fracture with nonunion +S52271M Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52271N Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52271P Monteggia's fracture of right ulna, subsequent encounter for closed fracture with malunion +S52271Q Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with malunion +S52271R Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52271S Monteggia's fracture of right ulna, sequela +S52272A Monteggia's fracture of left ulna, initial encounter for closed fracture +S52272B Monteggia's fracture of left ulna, initial encounter for open fracture type I or II +S52272C Monteggia's fracture of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52272D Monteggia's fracture of left ulna, subsequent encounter for closed fracture with routine healing +S52272E Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52272F Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52272G Monteggia's fracture of left ulna, subsequent encounter for closed fracture with delayed healing +S52272H Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52272J Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52272K Monteggia's fracture of left ulna, subsequent encounter for closed fracture with nonunion +S52272M Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52272N Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52272P Monteggia's fracture of left ulna, subsequent encounter for closed fracture with malunion +S52272Q Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with malunion +S52272R Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52272S Monteggia's fracture of left ulna, sequela +S52279A Monteggia's fracture of unspecified ulna, initial encounter for closed fracture +S52279B Monteggia's fracture of unspecified ulna, initial encounter for open fracture type I or II +S52279C Monteggia's fracture of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52279D Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52279E Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52279F Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52279G Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52279H Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52279J Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52279K Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52279M Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52279N Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52279P Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with malunion +S52279Q Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52279R Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52279S Monteggia's fracture of unspecified ulna, sequela +S52281A Bent bone of right ulna, initial encounter for closed fracture +S52281B Bent bone of right ulna, initial encounter for open fracture type I or II +S52281C Bent bone of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52281D Bent bone of right ulna, subsequent encounter for closed fracture with routine healing +S52281E Bent bone of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52281F Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52281G Bent bone of right ulna, subsequent encounter for closed fracture with delayed healing +S52281H Bent bone of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52281J Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52281K Bent bone of right ulna, subsequent encounter for closed fracture with nonunion +S52281M Bent bone of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52281N Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52281P Bent bone of right ulna, subsequent encounter for closed fracture with malunion +S52281Q Bent bone of right ulna, subsequent encounter for open fracture type I or II with malunion +S52281R Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52281S Bent bone of right ulna, sequela +S52282A Bent bone of left ulna, initial encounter for closed fracture +S52282B Bent bone of left ulna, initial encounter for open fracture type I or II +S52282C Bent bone of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52282D Bent bone of left ulna, subsequent encounter for closed fracture with routine healing +S52282E Bent bone of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52282F Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52282G Bent bone of left ulna, subsequent encounter for closed fracture with delayed healing +S52282H Bent bone of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52282J Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52282K Bent bone of left ulna, subsequent encounter for closed fracture with nonunion +S52282M Bent bone of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52282N Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52282P Bent bone of left ulna, subsequent encounter for closed fracture with malunion +S52282Q Bent bone of left ulna, subsequent encounter for open fracture type I or II with malunion +S52282R Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52282S Bent bone of left ulna, sequela +S52283A Bent bone of unspecified ulna, initial encounter for closed fracture +S52283B Bent bone of unspecified ulna, initial encounter for open fracture type I or II +S52283C Bent bone of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52283D Bent bone of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52283E Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52283F Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52283G Bent bone of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52283H Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52283J Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52283K Bent bone of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52283M Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52283N Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52283P Bent bone of unspecified ulna, subsequent encounter for closed fracture with malunion +S52283Q Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52283R Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52283S Bent bone of unspecified ulna, sequela +S52291A Other fracture of shaft of right ulna, initial encounter for closed fracture +S52291B Other fracture of shaft of right ulna, initial encounter for open fracture type I or II +S52291C Other fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52291D Other fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing +S52291E Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52291F Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52291G Other fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing +S52291H Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52291J Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52291K Other fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion +S52291M Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52291N Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52291P Other fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion +S52291Q Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion +S52291R Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52291S Other fracture of shaft of right ulna, sequela +S52292A Other fracture of shaft of left ulna, initial encounter for closed fracture +S52292B Other fracture of shaft of left ulna, initial encounter for open fracture type I or II +S52292C Other fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52292D Other fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing +S52292E Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52292F Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52292G Other fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing +S52292H Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52292J Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52292K Other fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion +S52292M Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52292N Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52292P Other fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion +S52292Q Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion +S52292R Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52292S Other fracture of shaft of left ulna, sequela +S52299A Other fracture of shaft of unspecified ulna, initial encounter for closed fracture +S52299B Other fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II +S52299C Other fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52299D Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52299E Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52299F Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52299G Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52299H Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52299J Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52299K Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52299M Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52299N Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52299P Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion +S52299Q Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52299R Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52299S Other fracture of shaft of unspecified ulna, sequela +S52301A Unspecified fracture of shaft of right radius, initial encounter for closed fracture +S52301B Unspecified fracture of shaft of right radius, initial encounter for open fracture type I or II +S52301C Unspecified fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52301D Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing +S52301E Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing +S52301F Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52301G Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing +S52301H Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52301J Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52301K Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion +S52301M Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion +S52301N Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52301P Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with malunion +S52301Q Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion +S52301R Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52301S Unspecified fracture of shaft of right radius, sequela +S52302A Unspecified fracture of shaft of left radius, initial encounter for closed fracture +S52302B Unspecified fracture of shaft of left radius, initial encounter for open fracture type I or II +S52302C Unspecified fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52302D Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing +S52302E Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing +S52302F Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52302G Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing +S52302H Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52302J Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52302K Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion +S52302M Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion +S52302N Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52302P Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with malunion +S52302Q Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion +S52302R Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52302S Unspecified fracture of shaft of left radius, sequela +S52309A Unspecified fracture of shaft of unspecified radius, initial encounter for closed fracture +S52309B Unspecified fracture of shaft of unspecified radius, initial encounter for open fracture type I or II +S52309C Unspecified fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52309D Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing +S52309E Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52309F Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52309G Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52309H Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52309J Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52309K Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion +S52309M Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52309N Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52309P Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion +S52309Q Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52309R Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52309S Unspecified fracture of shaft of unspecified radius, sequela +S52311A Greenstick fracture of shaft of radius, right arm, initial encounter for closed fracture +S52311D Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with routine healing +S52311G Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with delayed healing +S52311K Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with nonunion +S52311P Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with malunion +S52311S Greenstick fracture of shaft of radius, right arm, sequela +S52312A Greenstick fracture of shaft of radius, left arm, initial encounter for closed fracture +S52312D Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with routine healing +S52312G Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with delayed healing +S52312K Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with nonunion +S52312P Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with malunion +S52312S Greenstick fracture of shaft of radius, left arm, sequela +S52319A Greenstick fracture of shaft of radius, unspecified arm, initial encounter for closed fracture +S52319D Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with routine healing +S52319G Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S52319K Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with nonunion +S52319P Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with malunion +S52319S Greenstick fracture of shaft of radius, unspecified arm, sequela +S52321A Displaced transverse fracture of shaft of right radius, initial encounter for closed fracture +S52321B Displaced transverse fracture of shaft of right radius, initial encounter for open fracture type I or II +S52321C Displaced transverse fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52321D Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing +S52321E Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing +S52321F Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52321G Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing +S52321H Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52321J Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52321K Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion +S52321M Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion +S52321N Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52321P Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with malunion +S52321Q Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion +S52321R Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52321S Displaced transverse fracture of shaft of right radius, sequela +S52322A Displaced transverse fracture of shaft of left radius, initial encounter for closed fracture +S52322B Displaced transverse fracture of shaft of left radius, initial encounter for open fracture type I or II +S52322C Displaced transverse fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52322D Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing +S52322E Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing +S52322F Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52322G Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing +S52322H Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52322J Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52322K Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion +S52322M Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion +S52322N Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52322P Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with malunion +S52322Q Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion +S52322R Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52322S Displaced transverse fracture of shaft of left radius, sequela +S52323A Displaced transverse fracture of shaft of unspecified radius, initial encounter for closed fracture +S52323B Displaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type I or II +S52323C Displaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52323D Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing +S52323E Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52323F Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52323G Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52323H Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52323J Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52323K Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion +S52323M Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52323N Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52323P Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion +S52323Q Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52323R Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52323S Displaced transverse fracture of shaft of unspecified radius, sequela +S52324A Nondisplaced transverse fracture of shaft of right radius, initial encounter for closed fracture +S52324B Nondisplaced transverse fracture of shaft of right radius, initial encounter for open fracture type I or II +S52324C Nondisplaced transverse fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52324D Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing +S52324E Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing +S52324F Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52324G Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing +S52324H Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52324J Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52324K Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion +S52324M Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion +S52324N Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52324P Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with malunion +S52324Q Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion +S52324R Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52324S Nondisplaced transverse fracture of shaft of right radius, sequela +S52325A Nondisplaced transverse fracture of shaft of left radius, initial encounter for closed fracture +S52325B Nondisplaced transverse fracture of shaft of left radius, initial encounter for open fracture type I or II +S52325C Nondisplaced transverse fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52325D Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing +S52325E Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing +S52325F Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52325G Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing +S52325H Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52325J Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52325K Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion +S52325M Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion +S52325N Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52325P Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with malunion +S52325Q Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion +S52325R Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52325S Nondisplaced transverse fracture of shaft of left radius, sequela +S52326A Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for closed fracture +S52326B Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type I or II +S52326C Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52326D Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing +S52326E Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52326F Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52326G Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52326H Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52326J Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52326K Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion +S52326M Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52326N Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52326P Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion +S52326Q Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52326R Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52326S Nondisplaced transverse fracture of shaft of unspecified radius, sequela +S52331A Displaced oblique fracture of shaft of right radius, initial encounter for closed fracture +S52331B Displaced oblique fracture of shaft of right radius, initial encounter for open fracture type I or II +S52331C Displaced oblique fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52331D Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing +S52331E Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing +S52331F Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52331G Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing +S52331H Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52331J Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52331K Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion +S52331M Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion +S52331N Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52331P Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with malunion +S52331Q Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion +S52331R Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52331S Displaced oblique fracture of shaft of right radius, sequela +S52332A Displaced oblique fracture of shaft of left radius, initial encounter for closed fracture +S52332B Displaced oblique fracture of shaft of left radius, initial encounter for open fracture type I or II +S52332C Displaced oblique fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52332D Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing +S52332E Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing +S52332F Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52332G Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing +S52332H Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52332J Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52332K Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion +S52332M Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion +S52332N Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52332P Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with malunion +S52332Q Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion +S52332R Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52332S Displaced oblique fracture of shaft of left radius, sequela +S52333A Displaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture +S52333B Displaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type I or II +S52333C Displaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52333D Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing +S52333E Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52333F Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52333G Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52333H Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52333J Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52333K Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion +S52333M Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52333N Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52333P Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion +S52333Q Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52333R Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52333S Displaced oblique fracture of shaft of unspecified radius, sequela +S52334A Nondisplaced oblique fracture of shaft of right radius, initial encounter for closed fracture +S52334B Nondisplaced oblique fracture of shaft of right radius, initial encounter for open fracture type I or II +S52334C Nondisplaced oblique fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52334D Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing +S52334E Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing +S52334F Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52334G Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing +S52334H Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52334J Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52334K Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion +S52334M Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion +S52334N Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52334P Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with malunion +S52334Q Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion +S52334R Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52334S Nondisplaced oblique fracture of shaft of right radius, sequela +S52335A Nondisplaced oblique fracture of shaft of left radius, initial encounter for closed fracture +S52335B Nondisplaced oblique fracture of shaft of left radius, initial encounter for open fracture type I or II +S52335C Nondisplaced oblique fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52335D Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing +S52335E Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing +S52335F Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52335G Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing +S52335H Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52335J Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52335K Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion +S52335M Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion +S52335N Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52335P Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with malunion +S52335Q Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion +S52335R Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52335S Nondisplaced oblique fracture of shaft of left radius, sequela +S52336A Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture +S52336B Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type I or II +S52336C Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52336D Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing +S52336E Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52336F Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52336G Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52336H Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52336J Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52336K Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion +S52336M Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52336N Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52336P Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion +S52336Q Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52336R Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52336S Nondisplaced oblique fracture of shaft of unspecified radius, sequela +S52341A Displaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture +S52341B Displaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type I or II +S52341C Displaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52341D Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing +S52341E Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing +S52341F Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52341G Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing +S52341H Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52341J Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52341K Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion +S52341M Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion +S52341N Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52341P Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion +S52341Q Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion +S52341R Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52341S Displaced spiral fracture of shaft of radius, right arm, sequela +S52342A Displaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture +S52342B Displaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type I or II +S52342C Displaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52342D Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing +S52342E Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing +S52342F Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52342G Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing +S52342H Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52342J Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52342K Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion +S52342M Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion +S52342N Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52342P Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion +S52342Q Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion +S52342R Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52342S Displaced spiral fracture of shaft of radius, left arm, sequela +S52343A Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for closed fracture +S52343B Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II +S52343C Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52343D Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing +S52343E Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52343F Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52343G Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52343H Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52343J Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52343K Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion +S52343M Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52343N Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52343P Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion +S52343Q Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52343R Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52343S Displaced spiral fracture of shaft of radius, unspecified arm, sequela +S52344A Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture +S52344B Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type I or II +S52344C Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52344D Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing +S52344E Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing +S52344F Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52344G Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing +S52344H Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52344J Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52344K Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion +S52344M Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion +S52344N Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52344P Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion +S52344Q Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion +S52344R Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52344S Nondisplaced spiral fracture of shaft of radius, right arm, sequela +S52345A Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture +S52345B Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type I or II +S52345C Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52345D Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing +S52345E Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing +S52345F Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52345G Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing +S52345H Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52345J Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52345K Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion +S52345M Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion +S52345N Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52345P Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion +S52345Q Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion +S52345R Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52345S Nondisplaced spiral fracture of shaft of radius, left arm, sequela +S52346A Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for closed fracture +S52346B Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II +S52346C Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52346D Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing +S52346E Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52346F Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52346G Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52346H Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52346J Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52346K Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion +S52346M Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52346N Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52346P Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion +S52346Q Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52346R Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52346S Nondisplaced spiral fracture of shaft of radius, unspecified arm, sequela +S52351A Displaced comminuted fracture of shaft of radius, right arm, initial encounter for closed fracture +S52351B Displaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type I or II +S52351C Displaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52351D Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing +S52351E Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing +S52351F Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52351G Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing +S52351H Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52351J Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52351K Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion +S52351M Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion +S52351N Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52351P Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion +S52351Q Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion +S52351R Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52351S Displaced comminuted fracture of shaft of radius, right arm, sequela +S52352A Displaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture +S52352B Displaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type I or II +S52352C Displaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52352D Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing +S52352E Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing +S52352F Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52352G Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing +S52352H Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52352J Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52352K Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion +S52352M Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion +S52352N Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52352P Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion +S52352Q Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion +S52352R Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52352S Displaced comminuted fracture of shaft of radius, left arm, sequela +S52353A Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for closed fracture +S52353B Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II +S52353C Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52353D Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing +S52353E Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52353F Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52353G Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52353H Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52353J Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52353K Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion +S52353M Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52353N Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52353P Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion +S52353Q Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52353R Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52353S Displaced comminuted fracture of shaft of radius, unspecified arm, sequela +S52354A Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for closed fracture +S52354B Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type I or II +S52354C Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52354D Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing +S52354E Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing +S52354F Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52354G Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing +S52354H Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52354J Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52354K Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion +S52354M Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion +S52354N Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52354P Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion +S52354Q Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion +S52354R Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52354S Nondisplaced comminuted fracture of shaft of radius, right arm, sequela +S52355A Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture +S52355B Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type I or II +S52355C Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52355D Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing +S52355E Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing +S52355F Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52355G Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing +S52355H Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52355J Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52355K Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion +S52355M Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion +S52355N Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52355P Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion +S52355Q Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion +S52355R Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52355S Nondisplaced comminuted fracture of shaft of radius, left arm, sequela +S52356A Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for closed fracture +S52356B Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II +S52356C Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52356D Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing +S52356E Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52356F Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52356G Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52356H Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52356J Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52356K Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion +S52356M Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52356N Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52356P Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion +S52356Q Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52356R Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52356S Nondisplaced comminuted fracture of shaft of radius, unspecified arm, sequela +S52361A Displaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture +S52361B Displaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type I or II +S52361C Displaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52361D Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing +S52361E Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing +S52361F Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52361G Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing +S52361H Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52361J Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52361K Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion +S52361M Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion +S52361N Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52361P Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion +S52361Q Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion +S52361R Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52361S Displaced segmental fracture of shaft of radius, right arm, sequela +S52362A Displaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture +S52362B Displaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type I or II +S52362C Displaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52362D Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing +S52362E Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing +S52362F Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52362G Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing +S52362H Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52362J Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52362K Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion +S52362M Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion +S52362N Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52362P Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion +S52362Q Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion +S52362R Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52362S Displaced segmental fracture of shaft of radius, left arm, sequela +S52363A Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for closed fracture +S52363B Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II +S52363C Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52363D Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing +S52363E Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52363F Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52363G Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52363H Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52363J Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52363K Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion +S52363M Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52363N Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52363P Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion +S52363Q Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52363R Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52363S Displaced segmental fracture of shaft of radius, unspecified arm, sequela +S52364A Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture +S52364B Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type I or II +S52364C Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52364D Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing +S52364E Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing +S52364F Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52364G Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing +S52364H Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52364J Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52364K Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion +S52364M Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion +S52364N Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52364P Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion +S52364Q Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion +S52364R Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52364S Nondisplaced segmental fracture of shaft of radius, right arm, sequela +S52365A Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture +S52365B Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type I or II +S52365C Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52365D Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing +S52365E Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing +S52365F Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52365G Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing +S52365H Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52365J Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52365K Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion +S52365M Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion +S52365N Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52365P Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion +S52365Q Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion +S52365R Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52365S Nondisplaced segmental fracture of shaft of radius, left arm, sequela +S52366A Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for closed fracture +S52366B Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II +S52366C Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52366D Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing +S52366E Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52366F Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52366G Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52366H Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52366J Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52366K Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion +S52366M Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52366N Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52366P Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion +S52366Q Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52366R Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52366S Nondisplaced segmental fracture of shaft of radius, unspecified arm, sequela +S52371A Galeazzi's fracture of right radius, initial encounter for closed fracture +S52371B Galeazzi's fracture of right radius, initial encounter for open fracture type I or II +S52371C Galeazzi's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52371D Galeazzi's fracture of right radius, subsequent encounter for closed fracture with routine healing +S52371E Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with routine healing +S52371F Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52371G Galeazzi's fracture of right radius, subsequent encounter for closed fracture with delayed healing +S52371H Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52371J Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52371K Galeazzi's fracture of right radius, subsequent encounter for closed fracture with nonunion +S52371M Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion +S52371N Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52371P Galeazzi's fracture of right radius, subsequent encounter for closed fracture with malunion +S52371Q Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with malunion +S52371R Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52371S Galeazzi's fracture of right radius, sequela +S52372A Galeazzi's fracture of left radius, initial encounter for closed fracture +S52372B Galeazzi's fracture of left radius, initial encounter for open fracture type I or II +S52372C Galeazzi's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52372D Galeazzi's fracture of left radius, subsequent encounter for closed fracture with routine healing +S52372E Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with routine healing +S52372F Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52372G Galeazzi's fracture of left radius, subsequent encounter for closed fracture with delayed healing +S52372H Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52372J Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52372K Galeazzi's fracture of left radius, subsequent encounter for closed fracture with nonunion +S52372M Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion +S52372N Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52372P Galeazzi's fracture of left radius, subsequent encounter for closed fracture with malunion +S52372Q Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with malunion +S52372R Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52372S Galeazzi's fracture of left radius, sequela +S52379A Galeazzi's fracture of unspecified radius, initial encounter for closed fracture +S52379B Galeazzi's fracture of unspecified radius, initial encounter for open fracture type I or II +S52379C Galeazzi's fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52379D Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with routine healing +S52379E Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52379F Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52379G Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52379H Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52379J Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52379K Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion +S52379M Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52379N Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52379P Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with malunion +S52379Q Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52379R Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52379S Galeazzi's fracture of unspecified radius, sequela +S52381A Bent bone of right radius, initial encounter for closed fracture +S52381B Bent bone of right radius, initial encounter for open fracture type I or II +S52381C Bent bone of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52381D Bent bone of right radius, subsequent encounter for closed fracture with routine healing +S52381E Bent bone of right radius, subsequent encounter for open fracture type I or II with routine healing +S52381F Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52381G Bent bone of right radius, subsequent encounter for closed fracture with delayed healing +S52381H Bent bone of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52381J Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52381K Bent bone of right radius, subsequent encounter for closed fracture with nonunion +S52381M Bent bone of right radius, subsequent encounter for open fracture type I or II with nonunion +S52381N Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52381P Bent bone of right radius, subsequent encounter for closed fracture with malunion +S52381Q Bent bone of right radius, subsequent encounter for open fracture type I or II with malunion +S52381R Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52381S Bent bone of right radius, sequela +S52382A Bent bone of left radius, initial encounter for closed fracture +S52382B Bent bone of left radius, initial encounter for open fracture type I or II +S52382C Bent bone of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52382D Bent bone of left radius, subsequent encounter for closed fracture with routine healing +S52382E Bent bone of left radius, subsequent encounter for open fracture type I or II with routine healing +S52382F Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52382G Bent bone of left radius, subsequent encounter for closed fracture with delayed healing +S52382H Bent bone of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52382J Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52382K Bent bone of left radius, subsequent encounter for closed fracture with nonunion +S52382M Bent bone of left radius, subsequent encounter for open fracture type I or II with nonunion +S52382N Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52382P Bent bone of left radius, subsequent encounter for closed fracture with malunion +S52382Q Bent bone of left radius, subsequent encounter for open fracture type I or II with malunion +S52382R Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52382S Bent bone of left radius, sequela +S52389A Bent bone of unspecified radius, initial encounter for closed fracture +S52389B Bent bone of unspecified radius, initial encounter for open fracture type I or II +S52389C Bent bone of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52389D Bent bone of unspecified radius, subsequent encounter for closed fracture with routine healing +S52389E Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52389F Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52389G Bent bone of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52389H Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52389J Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52389K Bent bone of unspecified radius, subsequent encounter for closed fracture with nonunion +S52389M Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52389N Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52389P Bent bone of unspecified radius, subsequent encounter for closed fracture with malunion +S52389Q Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52389R Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52389S Bent bone of unspecified radius, sequela +S52391A Other fracture of shaft of radius, right arm, initial encounter for closed fracture +S52391B Other fracture of shaft of radius, right arm, initial encounter for open fracture type I or II +S52391C Other fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52391D Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing +S52391E Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing +S52391F Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52391G Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing +S52391H Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing +S52391J Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52391K Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion +S52391M Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion +S52391N Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52391P Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion +S52391Q Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion +S52391R Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52391S Other fracture of shaft of radius, right arm, sequela +S52392A Other fracture of shaft of radius, left arm, initial encounter for closed fracture +S52392B Other fracture of shaft of radius, left arm, initial encounter for open fracture type I or II +S52392C Other fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52392D Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing +S52392E Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing +S52392F Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52392G Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing +S52392H Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing +S52392J Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52392K Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion +S52392M Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion +S52392N Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52392P Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion +S52392Q Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion +S52392R Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52392S Other fracture of shaft of radius, left arm, sequela +S52399A Other fracture of shaft of radius, unspecified arm, initial encounter for closed fracture +S52399B Other fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II +S52399C Other fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52399D Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing +S52399E Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing +S52399F Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52399G Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing +S52399H Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing +S52399J Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52399K Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion +S52399M Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion +S52399N Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52399P Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion +S52399Q Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion +S52399R Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52399S Other fracture of shaft of radius, unspecified arm, sequela +S52501A Unspecified fracture of the lower end of right radius, initial encounter for closed fracture +S52501B Unspecified fracture of the lower end of right radius, initial encounter for open fracture type I or II +S52501C Unspecified fracture of the lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52501D Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with routine healing +S52501E Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with routine healing +S52501F Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52501G Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with delayed healing +S52501H Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52501J Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52501K Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with nonunion +S52501M Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with nonunion +S52501N Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52501P Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with malunion +S52501Q Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with malunion +S52501R Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52501S Unspecified fracture of the lower end of right radius, sequela +S52502A Unspecified fracture of the lower end of left radius, initial encounter for closed fracture +S52502B Unspecified fracture of the lower end of left radius, initial encounter for open fracture type I or II +S52502C Unspecified fracture of the lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52502D Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with routine healing +S52502E Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with routine healing +S52502F Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52502G Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with delayed healing +S52502H Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52502J Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52502K Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with nonunion +S52502M Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with nonunion +S52502N Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52502P Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with malunion +S52502Q Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with malunion +S52502R Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52502S Unspecified fracture of the lower end of left radius, sequela +S52509A Unspecified fracture of the lower end of unspecified radius, initial encounter for closed fracture +S52509B Unspecified fracture of the lower end of unspecified radius, initial encounter for open fracture type I or II +S52509C Unspecified fracture of the lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52509D Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with routine healing +S52509E Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52509F Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52509G Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52509H Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52509J Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52509K Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with nonunion +S52509M Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52509N Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52509P Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with malunion +S52509Q Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52509R Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52509S Unspecified fracture of the lower end of unspecified radius, sequela +S52511A Displaced fracture of right radial styloid process, initial encounter for closed fracture +S52511B Displaced fracture of right radial styloid process, initial encounter for open fracture type I or II +S52511C Displaced fracture of right radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52511D Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with routine healing +S52511E Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with routine healing +S52511F Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52511G Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with delayed healing +S52511H Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52511J Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52511K Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with nonunion +S52511M Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with nonunion +S52511N Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52511P Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with malunion +S52511Q Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with malunion +S52511R Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52511S Displaced fracture of right radial styloid process, sequela +S52512A Displaced fracture of left radial styloid process, initial encounter for closed fracture +S52512B Displaced fracture of left radial styloid process, initial encounter for open fracture type I or II +S52512C Displaced fracture of left radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52512D Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with routine healing +S52512E Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with routine healing +S52512F Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52512G Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with delayed healing +S52512H Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52512J Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52512K Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with nonunion +S52512M Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with nonunion +S52512N Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52512P Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with malunion +S52512Q Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with malunion +S52512R Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52512S Displaced fracture of left radial styloid process, sequela +S52513A Displaced fracture of unspecified radial styloid process, initial encounter for closed fracture +S52513B Displaced fracture of unspecified radial styloid process, initial encounter for open fracture type I or II +S52513C Displaced fracture of unspecified radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52513D Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with routine healing +S52513E Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with routine healing +S52513F Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52513G Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with delayed healing +S52513H Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52513J Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52513K Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with nonunion +S52513M Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with nonunion +S52513N Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52513P Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with malunion +S52513Q Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with malunion +S52513R Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52513S Displaced fracture of unspecified radial styloid process, sequela +S52514A Nondisplaced fracture of right radial styloid process, initial encounter for closed fracture +S52514B Nondisplaced fracture of right radial styloid process, initial encounter for open fracture type I or II +S52514C Nondisplaced fracture of right radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52514D Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with routine healing +S52514E Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with routine healing +S52514F Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52514G Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with delayed healing +S52514H Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52514J Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52514K Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with nonunion +S52514M Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with nonunion +S52514N Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52514P Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with malunion +S52514Q Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with malunion +S52514R Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52514S Nondisplaced fracture of right radial styloid process, sequela +S52515A Nondisplaced fracture of left radial styloid process, initial encounter for closed fracture +S52515B Nondisplaced fracture of left radial styloid process, initial encounter for open fracture type I or II +S52515C Nondisplaced fracture of left radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52515D Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with routine healing +S52515E Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with routine healing +S52515F Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52515G Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with delayed healing +S52515H Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52515J Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52515K Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with nonunion +S52515M Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with nonunion +S52515N Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52515P Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with malunion +S52515Q Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with malunion +S52515R Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52515S Nondisplaced fracture of left radial styloid process, sequela +S52516A Nondisplaced fracture of unspecified radial styloid process, initial encounter for closed fracture +S52516B Nondisplaced fracture of unspecified radial styloid process, initial encounter for open fracture type I or II +S52516C Nondisplaced fracture of unspecified radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52516D Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with routine healing +S52516E Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with routine healing +S52516F Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52516G Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with delayed healing +S52516H Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52516J Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52516K Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with nonunion +S52516M Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with nonunion +S52516N Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52516P Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with malunion +S52516Q Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with malunion +S52516R Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52516S Nondisplaced fracture of unspecified radial styloid process, sequela +S52521A Torus fracture of lower end of right radius, initial encounter for closed fracture +S52521D Torus fracture of lower end of right radius, subsequent encounter for fracture with routine healing +S52521G Torus fracture of lower end of right radius, subsequent encounter for fracture with delayed healing +S52521K Torus fracture of lower end of right radius, subsequent encounter for fracture with nonunion +S52521P Torus fracture of lower end of right radius, subsequent encounter for fracture with malunion +S52521S Torus fracture of lower end of right radius, sequela +S52522A Torus fracture of lower end of left radius, initial encounter for closed fracture +S52522D Torus fracture of lower end of left radius, subsequent encounter for fracture with routine healing +S52522G Torus fracture of lower end of left radius, subsequent encounter for fracture with delayed healing +S52522K Torus fracture of lower end of left radius, subsequent encounter for fracture with nonunion +S52522P Torus fracture of lower end of left radius, subsequent encounter for fracture with malunion +S52522S Torus fracture of lower end of left radius, sequela +S52529A Torus fracture of lower end of unspecified radius, initial encounter for closed fracture +S52529D Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with routine healing +S52529G Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with delayed healing +S52529K Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with nonunion +S52529P Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with malunion +S52529S Torus fracture of lower end of unspecified radius, sequela +S52531A Colles' fracture of right radius, initial encounter for closed fracture +S52531B Colles' fracture of right radius, initial encounter for open fracture type I or II +S52531C Colles' fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52531D Colles' fracture of right radius, subsequent encounter for closed fracture with routine healing +S52531E Colles' fracture of right radius, subsequent encounter for open fracture type I or II with routine healing +S52531F Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52531G Colles' fracture of right radius, subsequent encounter for closed fracture with delayed healing +S52531H Colles' fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52531J Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52531K Colles' fracture of right radius, subsequent encounter for closed fracture with nonunion +S52531M Colles' fracture of right radius, subsequent encounter for open fracture type I or II with nonunion +S52531N Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52531P Colles' fracture of right radius, subsequent encounter for closed fracture with malunion +S52531Q Colles' fracture of right radius, subsequent encounter for open fracture type I or II with malunion +S52531R Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52531S Colles' fracture of right radius, sequela +S52532A Colles' fracture of left radius, initial encounter for closed fracture +S52532B Colles' fracture of left radius, initial encounter for open fracture type I or II +S52532C Colles' fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52532D Colles' fracture of left radius, subsequent encounter for closed fracture with routine healing +S52532E Colles' fracture of left radius, subsequent encounter for open fracture type I or II with routine healing +S52532F Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52532G Colles' fracture of left radius, subsequent encounter for closed fracture with delayed healing +S52532H Colles' fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52532J Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52532K Colles' fracture of left radius, subsequent encounter for closed fracture with nonunion +S52532M Colles' fracture of left radius, subsequent encounter for open fracture type I or II with nonunion +S52532N Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52532P Colles' fracture of left radius, subsequent encounter for closed fracture with malunion +S52532Q Colles' fracture of left radius, subsequent encounter for open fracture type I or II with malunion +S52532R Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52532S Colles' fracture of left radius, sequela +S52539A Colles' fracture of unspecified radius, initial encounter for closed fracture +S52539B Colles' fracture of unspecified radius, initial encounter for open fracture type I or II +S52539C Colles' fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52539D Colles' fracture of unspecified radius, subsequent encounter for closed fracture with routine healing +S52539E Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52539F Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52539G Colles' fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52539H Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52539J Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52539K Colles' fracture of unspecified radius, subsequent encounter for closed fracture with nonunion +S52539M Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52539N Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52539P Colles' fracture of unspecified radius, subsequent encounter for closed fracture with malunion +S52539Q Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52539R Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52539S Colles' fracture of unspecified radius, sequela +S52541A Smith's fracture of right radius, initial encounter for closed fracture +S52541B Smith's fracture of right radius, initial encounter for open fracture type I or II +S52541C Smith's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52541D Smith's fracture of right radius, subsequent encounter for closed fracture with routine healing +S52541E Smith's fracture of right radius, subsequent encounter for open fracture type I or II with routine healing +S52541F Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52541G Smith's fracture of right radius, subsequent encounter for closed fracture with delayed healing +S52541H Smith's fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52541J Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52541K Smith's fracture of right radius, subsequent encounter for closed fracture with nonunion +S52541M Smith's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion +S52541N Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52541P Smith's fracture of right radius, subsequent encounter for closed fracture with malunion +S52541Q Smith's fracture of right radius, subsequent encounter for open fracture type I or II with malunion +S52541R Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52541S Smith's fracture of right radius, sequela +S52542A Smith's fracture of left radius, initial encounter for closed fracture +S52542B Smith's fracture of left radius, initial encounter for open fracture type I or II +S52542C Smith's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52542D Smith's fracture of left radius, subsequent encounter for closed fracture with routine healing +S52542E Smith's fracture of left radius, subsequent encounter for open fracture type I or II with routine healing +S52542F Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52542G Smith's fracture of left radius, subsequent encounter for closed fracture with delayed healing +S52542H Smith's fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52542J Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52542K Smith's fracture of left radius, subsequent encounter for closed fracture with nonunion +S52542M Smith's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion +S52542N Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52542P Smith's fracture of left radius, subsequent encounter for closed fracture with malunion +S52542Q Smith's fracture of left radius, subsequent encounter for open fracture type I or II with malunion +S52542R Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52542S Smith's fracture of left radius, sequela +S52549A Smith's fracture of unspecified radius, initial encounter for closed fracture +S52549B Smith's fracture of unspecified radius, initial encounter for open fracture type I or II +S52549C Smith's fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52549D Smith's fracture of unspecified radius, subsequent encounter for closed fracture with routine healing +S52549E Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52549F Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52549G Smith's fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52549H Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52549J Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52549K Smith's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion +S52549M Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52549N Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52549P Smith's fracture of unspecified radius, subsequent encounter for closed fracture with malunion +S52549Q Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52549R Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52549S Smith's fracture of unspecified radius, sequela +S52551A Other extraarticular fracture of lower end of right radius, initial encounter for closed fracture +S52551B Other extraarticular fracture of lower end of right radius, initial encounter for open fracture type I or II +S52551C Other extraarticular fracture of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52551D Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with routine healing +S52551E Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing +S52551F Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52551G Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with delayed healing +S52551H Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52551J Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52551K Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with nonunion +S52551M Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion +S52551N Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52551P Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with malunion +S52551Q Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with malunion +S52551R Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52551S Other extraarticular fracture of lower end of right radius, sequela +S52552A Other extraarticular fracture of lower end of left radius, initial encounter for closed fracture +S52552B Other extraarticular fracture of lower end of left radius, initial encounter for open fracture type I or II +S52552C Other extraarticular fracture of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52552D Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with routine healing +S52552E Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing +S52552F Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52552G Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with delayed healing +S52552H Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52552J Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52552K Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with nonunion +S52552M Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion +S52552N Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52552P Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with malunion +S52552Q Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with malunion +S52552R Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52552S Other extraarticular fracture of lower end of left radius, sequela +S52559A Other extraarticular fracture of lower end of unspecified radius, initial encounter for closed fracture +S52559B Other extraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type I or II +S52559C Other extraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52559D Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing +S52559E Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52559F Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52559G Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52559H Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52559J Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52559K Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion +S52559M Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52559N Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52559P Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with malunion +S52559Q Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52559R Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52559S Other extraarticular fracture of lower end of unspecified radius, sequela +S52561A Barton's fracture of right radius, initial encounter for closed fracture +S52561B Barton's fracture of right radius, initial encounter for open fracture type I or II +S52561C Barton's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52561D Barton's fracture of right radius, subsequent encounter for closed fracture with routine healing +S52561E Barton's fracture of right radius, subsequent encounter for open fracture type I or II with routine healing +S52561F Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52561G Barton's fracture of right radius, subsequent encounter for closed fracture with delayed healing +S52561H Barton's fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52561J Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52561K Barton's fracture of right radius, subsequent encounter for closed fracture with nonunion +S52561M Barton's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion +S52561N Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52561P Barton's fracture of right radius, subsequent encounter for closed fracture with malunion +S52561Q Barton's fracture of right radius, subsequent encounter for open fracture type I or II with malunion +S52561R Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52561S Barton's fracture of right radius, sequela +S52562A Barton's fracture of left radius, initial encounter for closed fracture +S52562B Barton's fracture of left radius, initial encounter for open fracture type I or II +S52562C Barton's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52562D Barton's fracture of left radius, subsequent encounter for closed fracture with routine healing +S52562E Barton's fracture of left radius, subsequent encounter for open fracture type I or II with routine healing +S52562F Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52562G Barton's fracture of left radius, subsequent encounter for closed fracture with delayed healing +S52562H Barton's fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52562J Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52562K Barton's fracture of left radius, subsequent encounter for closed fracture with nonunion +S52562M Barton's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion +S52562N Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52562P Barton's fracture of left radius, subsequent encounter for closed fracture with malunion +S52562Q Barton's fracture of left radius, subsequent encounter for open fracture type I or II with malunion +S52562R Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52562S Barton's fracture of left radius, sequela +S52569A Barton's fracture of unspecified radius, initial encounter for closed fracture +S52569B Barton's fracture of unspecified radius, initial encounter for open fracture type I or II +S52569C Barton's fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52569D Barton's fracture of unspecified radius, subsequent encounter for closed fracture with routine healing +S52569E Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52569F Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52569G Barton's fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52569H Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52569J Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52569K Barton's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion +S52569M Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52569N Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52569P Barton's fracture of unspecified radius, subsequent encounter for closed fracture with malunion +S52569Q Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52569R Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52569S Barton's fracture of unspecified radius, sequela +S52571A Other intraarticular fracture of lower end of right radius, initial encounter for closed fracture +S52571B Other intraarticular fracture of lower end of right radius, initial encounter for open fracture type I or II +S52571C Other intraarticular fracture of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52571D Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with routine healing +S52571E Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing +S52571F Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52571G Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with delayed healing +S52571H Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52571J Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52571K Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with nonunion +S52571M Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion +S52571N Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52571P Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with malunion +S52571Q Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with malunion +S52571R Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52571S Other intraarticular fracture of lower end of right radius, sequela +S52572A Other intraarticular fracture of lower end of left radius, initial encounter for closed fracture +S52572B Other intraarticular fracture of lower end of left radius, initial encounter for open fracture type I or II +S52572C Other intraarticular fracture of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52572D Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with routine healing +S52572E Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing +S52572F Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52572G Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with delayed healing +S52572H Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52572J Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52572K Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with nonunion +S52572M Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion +S52572N Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52572P Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with malunion +S52572Q Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with malunion +S52572R Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52572S Other intraarticular fracture of lower end of left radius, sequela +S52579A Other intraarticular fracture of lower end of unspecified radius, initial encounter for closed fracture +S52579B Other intraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type I or II +S52579C Other intraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52579D Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing +S52579E Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52579F Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52579G Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52579H Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52579J Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52579K Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion +S52579M Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52579N Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52579P Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with malunion +S52579Q Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52579R Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52579S Other intraarticular fracture of lower end of unspecified radius, sequela +S52591A Other fractures of lower end of right radius, initial encounter for closed fracture +S52591B Other fractures of lower end of right radius, initial encounter for open fracture type I or II +S52591C Other fractures of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52591D Other fractures of lower end of right radius, subsequent encounter for closed fracture with routine healing +S52591E Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing +S52591F Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52591G Other fractures of lower end of right radius, subsequent encounter for closed fracture with delayed healing +S52591H Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing +S52591J Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52591K Other fractures of lower end of right radius, subsequent encounter for closed fracture with nonunion +S52591M Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion +S52591N Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52591P Other fractures of lower end of right radius, subsequent encounter for closed fracture with malunion +S52591Q Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with malunion +S52591R Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52591S Other fractures of lower end of right radius, sequela +S52592A Other fractures of lower end of left radius, initial encounter for closed fracture +S52592B Other fractures of lower end of left radius, initial encounter for open fracture type I or II +S52592C Other fractures of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52592D Other fractures of lower end of left radius, subsequent encounter for closed fracture with routine healing +S52592E Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing +S52592F Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52592G Other fractures of lower end of left radius, subsequent encounter for closed fracture with delayed healing +S52592H Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing +S52592J Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52592K Other fractures of lower end of left radius, subsequent encounter for closed fracture with nonunion +S52592M Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion +S52592N Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52592P Other fractures of lower end of left radius, subsequent encounter for closed fracture with malunion +S52592Q Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with malunion +S52592R Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52592S Other fractures of lower end of left radius, sequela +S52599A Other fractures of lower end of unspecified radius, initial encounter for closed fracture +S52599B Other fractures of lower end of unspecified radius, initial encounter for open fracture type I or II +S52599C Other fractures of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52599D Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing +S52599E Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing +S52599F Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52599G Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing +S52599H Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing +S52599J Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52599K Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion +S52599M Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +S52599N Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52599P Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with malunion +S52599Q Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion +S52599R Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52599S Other fractures of lower end of unspecified radius, sequela +S52601A Unspecified fracture of lower end of right ulna, initial encounter for closed fracture +S52601B Unspecified fracture of lower end of right ulna, initial encounter for open fracture type I or II +S52601C Unspecified fracture of lower end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52601D Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with routine healing +S52601E Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52601F Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52601G Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with delayed healing +S52601H Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52601J Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52601K Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with nonunion +S52601M Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52601N Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52601P Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with malunion +S52601Q Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with malunion +S52601R Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52601S Unspecified fracture of lower end of right ulna, sequela +S52602A Unspecified fracture of lower end of left ulna, initial encounter for closed fracture +S52602B Unspecified fracture of lower end of left ulna, initial encounter for open fracture type I or II +S52602C Unspecified fracture of lower end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52602D Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with routine healing +S52602E Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52602F Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52602G Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with delayed healing +S52602H Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52602J Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52602K Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with nonunion +S52602M Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52602N Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52602P Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with malunion +S52602Q Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with malunion +S52602R Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52602S Unspecified fracture of lower end of left ulna, sequela +S52609A Unspecified fracture of lower end of unspecified ulna, initial encounter for closed fracture +S52609B Unspecified fracture of lower end of unspecified ulna, initial encounter for open fracture type I or II +S52609C Unspecified fracture of lower end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52609D Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52609E Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52609F Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52609G Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52609H Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52609J Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52609K Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52609M Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52609N Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52609P Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with malunion +S52609Q Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52609R Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52609S Unspecified fracture of lower end of unspecified ulna, sequela +S52611A Displaced fracture of right ulna styloid process, initial encounter for closed fracture +S52611B Displaced fracture of right ulna styloid process, initial encounter for open fracture type I or II +S52611C Displaced fracture of right ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52611D Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with routine healing +S52611E Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with routine healing +S52611F Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52611G Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with delayed healing +S52611H Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52611J Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52611K Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with nonunion +S52611M Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with nonunion +S52611N Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52611P Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with malunion +S52611Q Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with malunion +S52611R Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52611S Displaced fracture of right ulna styloid process, sequela +S52612A Displaced fracture of left ulna styloid process, initial encounter for closed fracture +S52612B Displaced fracture of left ulna styloid process, initial encounter for open fracture type I or II +S52612C Displaced fracture of left ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52612D Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with routine healing +S52612E Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with routine healing +S52612F Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52612G Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with delayed healing +S52612H Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52612J Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52612K Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with nonunion +S52612M Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with nonunion +S52612N Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52612P Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with malunion +S52612Q Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with malunion +S52612R Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52612S Displaced fracture of left ulna styloid process, sequela +S52613A Displaced fracture of unspecified ulna styloid process, initial encounter for closed fracture +S52613B Displaced fracture of unspecified ulna styloid process, initial encounter for open fracture type I or II +S52613C Displaced fracture of unspecified ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52613D Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with routine healing +S52613E Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with routine healing +S52613F Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52613G Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with delayed healing +S52613H Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52613J Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52613K Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with nonunion +S52613M Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with nonunion +S52613N Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52613P Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with malunion +S52613Q Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with malunion +S52613R Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52613S Displaced fracture of unspecified ulna styloid process, sequela +S52614A Nondisplaced fracture of right ulna styloid process, initial encounter for closed fracture +S52614B Nondisplaced fracture of right ulna styloid process, initial encounter for open fracture type I or II +S52614C Nondisplaced fracture of right ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52614D Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with routine healing +S52614E Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with routine healing +S52614F Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52614G Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with delayed healing +S52614H Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52614J Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52614K Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with nonunion +S52614M Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with nonunion +S52614N Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52614P Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with malunion +S52614Q Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with malunion +S52614R Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52614S Nondisplaced fracture of right ulna styloid process, sequela +S52615A Nondisplaced fracture of left ulna styloid process, initial encounter for closed fracture +S52615B Nondisplaced fracture of left ulna styloid process, initial encounter for open fracture type I or II +S52615C Nondisplaced fracture of left ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52615D Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with routine healing +S52615E Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with routine healing +S52615F Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52615G Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with delayed healing +S52615H Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52615J Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52615K Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with nonunion +S52615M Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with nonunion +S52615N Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52615P Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with malunion +S52615Q Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with malunion +S52615R Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52615S Nondisplaced fracture of left ulna styloid process, sequela +S52616A Nondisplaced fracture of unspecified ulna styloid process, initial encounter for closed fracture +S52616B Nondisplaced fracture of unspecified ulna styloid process, initial encounter for open fracture type I or II +S52616C Nondisplaced fracture of unspecified ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52616D Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with routine healing +S52616E Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with routine healing +S52616F Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52616G Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with delayed healing +S52616H Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing +S52616J Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52616K Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with nonunion +S52616M Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with nonunion +S52616N Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52616P Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with malunion +S52616Q Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with malunion +S52616R Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52616S Nondisplaced fracture of unspecified ulna styloid process, sequela +S52621A Torus fracture of lower end of right ulna, initial encounter for closed fracture +S52621D Torus fracture of lower end of right ulna, subsequent encounter for fracture with routine healing +S52621G Torus fracture of lower end of right ulna, subsequent encounter for fracture with delayed healing +S52621K Torus fracture of lower end of right ulna, subsequent encounter for fracture with nonunion +S52621P Torus fracture of lower end of right ulna, subsequent encounter for fracture with malunion +S52621S Torus fracture of lower end of right ulna, sequela +S52622A Torus fracture of lower end of left ulna, initial encounter for closed fracture +S52622D Torus fracture of lower end of left ulna, subsequent encounter for fracture with routine healing +S52622G Torus fracture of lower end of left ulna, subsequent encounter for fracture with delayed healing +S52622K Torus fracture of lower end of left ulna, subsequent encounter for fracture with nonunion +S52622P Torus fracture of lower end of left ulna, subsequent encounter for fracture with malunion +S52622S Torus fracture of lower end of left ulna, sequela +S52629A Torus fracture of lower end of unspecified ulna, initial encounter for closed fracture +S52629D Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with routine healing +S52629G Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with delayed healing +S52629K Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with nonunion +S52629P Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with malunion +S52629S Torus fracture of lower end of unspecified ulna, sequela +S52691A Other fracture of lower end of right ulna, initial encounter for closed fracture +S52691B Other fracture of lower end of right ulna, initial encounter for open fracture type I or II +S52691C Other fracture of lower end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52691D Other fracture of lower end of right ulna, subsequent encounter for closed fracture with routine healing +S52691E Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with routine healing +S52691F Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52691G Other fracture of lower end of right ulna, subsequent encounter for closed fracture with delayed healing +S52691H Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with delayed healing +S52691J Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52691K Other fracture of lower end of right ulna, subsequent encounter for closed fracture with nonunion +S52691M Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with nonunion +S52691N Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52691P Other fracture of lower end of right ulna, subsequent encounter for closed fracture with malunion +S52691Q Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with malunion +S52691R Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52691S Other fracture of lower end of right ulna, sequela +S52692A Other fracture of lower end of left ulna, initial encounter for closed fracture +S52692B Other fracture of lower end of left ulna, initial encounter for open fracture type I or II +S52692C Other fracture of lower end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52692D Other fracture of lower end of left ulna, subsequent encounter for closed fracture with routine healing +S52692E Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with routine healing +S52692F Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52692G Other fracture of lower end of left ulna, subsequent encounter for closed fracture with delayed healing +S52692H Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with delayed healing +S52692J Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52692K Other fracture of lower end of left ulna, subsequent encounter for closed fracture with nonunion +S52692M Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with nonunion +S52692N Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52692P Other fracture of lower end of left ulna, subsequent encounter for closed fracture with malunion +S52692Q Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with malunion +S52692R Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52692S Other fracture of lower end of left ulna, sequela +S52699A Other fracture of lower end of unspecified ulna, initial encounter for closed fracture +S52699B Other fracture of lower end of unspecified ulna, initial encounter for open fracture type I or II +S52699C Other fracture of lower end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +S52699D Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with routine healing +S52699E Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing +S52699F Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S52699G Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with delayed healing +S52699H Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing +S52699J Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S52699K Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with nonunion +S52699M Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +S52699N Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S52699P Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with malunion +S52699Q Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +S52699R Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S52699S Other fracture of lower end of unspecified ulna, sequela +S5290XA Unspecified fracture of unspecified forearm, initial encounter for closed fracture +S5290XB Unspecified fracture of unspecified forearm, initial encounter for open fracture type I or II +S5290XC Unspecified fracture of unspecified forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S5290XD Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with routine healing +S5290XE Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with routine healing +S5290XF Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S5290XG Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with delayed healing +S5290XH Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with delayed healing +S5290XJ Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S5290XK Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with nonunion +S5290XM Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with nonunion +S5290XN Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S5290XP Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with malunion +S5290XQ Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with malunion +S5290XR Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S5290XS Unspecified fracture of unspecified forearm, sequela +S5291XA Unspecified fracture of right forearm, initial encounter for closed fracture +S5291XB Unspecified fracture of right forearm, initial encounter for open fracture type I or II +S5291XC Unspecified fracture of right forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S5291XD Unspecified fracture of right forearm, subsequent encounter for closed fracture with routine healing +S5291XE Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with routine healing +S5291XF Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S5291XG Unspecified fracture of right forearm, subsequent encounter for closed fracture with delayed healing +S5291XH Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with delayed healing +S5291XJ Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S5291XK Unspecified fracture of right forearm, subsequent encounter for closed fracture with nonunion +S5291XM Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with nonunion +S5291XN Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S5291XP Unspecified fracture of right forearm, subsequent encounter for closed fracture with malunion +S5291XQ Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with malunion +S5291XR Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S5291XS Unspecified fracture of right forearm, sequela +S5292XA Unspecified fracture of left forearm, initial encounter for closed fracture +S5292XB Unspecified fracture of left forearm, initial encounter for open fracture type I or II +S5292XC Unspecified fracture of left forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC +S5292XD Unspecified fracture of left forearm, subsequent encounter for closed fracture with routine healing +S5292XE Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with routine healing +S5292XF Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S5292XG Unspecified fracture of left forearm, subsequent encounter for closed fracture with delayed healing +S5292XH Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with delayed healing +S5292XJ Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S5292XK Unspecified fracture of left forearm, subsequent encounter for closed fracture with nonunion +S5292XM Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with nonunion +S5292XN Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S5292XP Unspecified fracture of left forearm, subsequent encounter for closed fracture with malunion +S5292XQ Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with malunion +S5292XR Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S5292XS Unspecified fracture of left forearm, sequela +S53001A Unspecified subluxation of right radial head, initial encounter +S53001D Unspecified subluxation of right radial head, subsequent encounter +S53001S Unspecified subluxation of right radial head, sequela +S53002A Unspecified subluxation of left radial head, initial encounter +S53002D Unspecified subluxation of left radial head, subsequent encounter +S53002S Unspecified subluxation of left radial head, sequela +S53003A Unspecified subluxation of unspecified radial head, initial encounter +S53003D Unspecified subluxation of unspecified radial head, subsequent encounter +S53003S Unspecified subluxation of unspecified radial head, sequela +S53004A Unspecified dislocation of right radial head, initial encounter +S53004D Unspecified dislocation of right radial head, subsequent encounter +S53004S Unspecified dislocation of right radial head, sequela +S53005A Unspecified dislocation of left radial head, initial encounter +S53005D Unspecified dislocation of left radial head, subsequent encounter +S53005S Unspecified dislocation of left radial head, sequela +S53006A Unspecified dislocation of unspecified radial head, initial encounter +S53006D Unspecified dislocation of unspecified radial head, subsequent encounter +S53006S Unspecified dislocation of unspecified radial head, sequela +S53011A Anterior subluxation of right radial head, initial encounter +S53011D Anterior subluxation of right radial head, subsequent encounter +S53011S Anterior subluxation of right radial head, sequela +S53012A Anterior subluxation of left radial head, initial encounter +S53012D Anterior subluxation of left radial head, subsequent encounter +S53012S Anterior subluxation of left radial head, sequela +S53013A Anterior subluxation of unspecified radial head, initial encounter +S53013D Anterior subluxation of unspecified radial head, subsequent encounter +S53013S Anterior subluxation of unspecified radial head, sequela +S53014A Anterior dislocation of right radial head, initial encounter +S53014D Anterior dislocation of right radial head, subsequent encounter +S53014S Anterior dislocation of right radial head, sequela +S53015A Anterior dislocation of left radial head, initial encounter +S53015D Anterior dislocation of left radial head, subsequent encounter +S53015S Anterior dislocation of left radial head, sequela +S53016A Anterior dislocation of unspecified radial head, initial encounter +S53016D Anterior dislocation of unspecified radial head, subsequent encounter +S53016S Anterior dislocation of unspecified radial head, sequela +S53021A Posterior subluxation of right radial head, initial encounter +S53021D Posterior subluxation of right radial head, subsequent encounter +S53021S Posterior subluxation of right radial head, sequela +S53022A Posterior subluxation of left radial head, initial encounter +S53022D Posterior subluxation of left radial head, subsequent encounter +S53022S Posterior subluxation of left radial head, sequela +S53023A Posterior subluxation of unspecified radial head, initial encounter +S53023D Posterior subluxation of unspecified radial head, subsequent encounter +S53023S Posterior subluxation of unspecified radial head, sequela +S53024A Posterior dislocation of right radial head, initial encounter +S53024D Posterior dislocation of right radial head, subsequent encounter +S53024S Posterior dislocation of right radial head, sequela +S53025A Posterior dislocation of left radial head, initial encounter +S53025D Posterior dislocation of left radial head, subsequent encounter +S53025S Posterior dislocation of left radial head, sequela +S53026A Posterior dislocation of unspecified radial head, initial encounter +S53026D Posterior dislocation of unspecified radial head, subsequent encounter +S53026S Posterior dislocation of unspecified radial head, sequela +S53031A Nursemaid's elbow, right elbow, initial encounter +S53031D Nursemaid's elbow, right elbow, subsequent encounter +S53031S Nursemaid's elbow, right elbow, sequela +S53032A Nursemaid's elbow, left elbow, initial encounter +S53032D Nursemaid's elbow, left elbow, subsequent encounter +S53032S Nursemaid's elbow, left elbow, sequela +S53033A Nursemaid's elbow, unspecified elbow, initial encounter +S53033D Nursemaid's elbow, unspecified elbow, subsequent encounter +S53033S Nursemaid's elbow, unspecified elbow, sequela +S53091A Other subluxation of right radial head, initial encounter +S53091D Other subluxation of right radial head, subsequent encounter +S53091S Other subluxation of right radial head, sequela +S53092A Other subluxation of left radial head, initial encounter +S53092D Other subluxation of left radial head, subsequent encounter +S53092S Other subluxation of left radial head, sequela +S53093A Other subluxation of unspecified radial head, initial encounter +S53093D Other subluxation of unspecified radial head, subsequent encounter +S53093S Other subluxation of unspecified radial head, sequela +S53094A Other dislocation of right radial head, initial encounter +S53094D Other dislocation of right radial head, subsequent encounter +S53094S Other dislocation of right radial head, sequela +S53095A Other dislocation of left radial head, initial encounter +S53095D Other dislocation of left radial head, subsequent encounter +S53095S Other dislocation of left radial head, sequela +S53096A Other dislocation of unspecified radial head, initial encounter +S53096D Other dislocation of unspecified radial head, subsequent encounter +S53096S Other dislocation of unspecified radial head, sequela +S53101A Unspecified subluxation of right ulnohumeral joint, initial encounter +S53101D Unspecified subluxation of right ulnohumeral joint, subsequent encounter +S53101S Unspecified subluxation of right ulnohumeral joint, sequela +S53102A Unspecified subluxation of left ulnohumeral joint, initial encounter +S53102D Unspecified subluxation of left ulnohumeral joint, subsequent encounter +S53102S Unspecified subluxation of left ulnohumeral joint, sequela +S53103A Unspecified subluxation of unspecified ulnohumeral joint, initial encounter +S53103D Unspecified subluxation of unspecified ulnohumeral joint, subsequent encounter +S53103S Unspecified subluxation of unspecified ulnohumeral joint, sequela +S53104A Unspecified dislocation of right ulnohumeral joint, initial encounter +S53104D Unspecified dislocation of right ulnohumeral joint, subsequent encounter +S53104S Unspecified dislocation of right ulnohumeral joint, sequela +S53105A Unspecified dislocation of left ulnohumeral joint, initial encounter +S53105D Unspecified dislocation of left ulnohumeral joint, subsequent encounter +S53105S Unspecified dislocation of left ulnohumeral joint, sequela +S53106A Unspecified dislocation of unspecified ulnohumeral joint, initial encounter +S53106D Unspecified dislocation of unspecified ulnohumeral joint, subsequent encounter +S53106S Unspecified dislocation of unspecified ulnohumeral joint, sequela +S53111A Anterior subluxation of right ulnohumeral joint, initial encounter +S53111D Anterior subluxation of right ulnohumeral joint, subsequent encounter +S53111S Anterior subluxation of right ulnohumeral joint, sequela +S53112A Anterior subluxation of left ulnohumeral joint, initial encounter +S53112D Anterior subluxation of left ulnohumeral joint, subsequent encounter +S53112S Anterior subluxation of left ulnohumeral joint, sequela +S53113A Anterior subluxation of unspecified ulnohumeral joint, initial encounter +S53113D Anterior subluxation of unspecified ulnohumeral joint, subsequent encounter +S53113S Anterior subluxation of unspecified ulnohumeral joint, sequela +S53114A Anterior dislocation of right ulnohumeral joint, initial encounter +S53114D Anterior dislocation of right ulnohumeral joint, subsequent encounter +S53114S Anterior dislocation of right ulnohumeral joint, sequela +S53115A Anterior dislocation of left ulnohumeral joint, initial encounter +S53115D Anterior dislocation of left ulnohumeral joint, subsequent encounter +S53115S Anterior dislocation of left ulnohumeral joint, sequela +S53116A Anterior dislocation of unspecified ulnohumeral joint, initial encounter +S53116D Anterior dislocation of unspecified ulnohumeral joint, subsequent encounter +S53116S Anterior dislocation of unspecified ulnohumeral joint, sequela +S53121A Posterior subluxation of right ulnohumeral joint, initial encounter +S53121D Posterior subluxation of right ulnohumeral joint, subsequent encounter +S53121S Posterior subluxation of right ulnohumeral joint, sequela +S53122A Posterior subluxation of left ulnohumeral joint, initial encounter +S53122D Posterior subluxation of left ulnohumeral joint, subsequent encounter +S53122S Posterior subluxation of left ulnohumeral joint, sequela +S53123A Posterior subluxation of unspecified ulnohumeral joint, initial encounter +S53123D Posterior subluxation of unspecified ulnohumeral joint, subsequent encounter +S53123S Posterior subluxation of unspecified ulnohumeral joint, sequela +S53124A Posterior dislocation of right ulnohumeral joint, initial encounter +S53124D Posterior dislocation of right ulnohumeral joint, subsequent encounter +S53124S Posterior dislocation of right ulnohumeral joint, sequela +S53125A Posterior dislocation of left ulnohumeral joint, initial encounter +S53125D Posterior dislocation of left ulnohumeral joint, subsequent encounter +S53125S Posterior dislocation of left ulnohumeral joint, sequela +S53126A Posterior dislocation of unspecified ulnohumeral joint, initial encounter +S53126D Posterior dislocation of unspecified ulnohumeral joint, subsequent encounter +S53126S Posterior dislocation of unspecified ulnohumeral joint, sequela +S53131A Medial subluxation of right ulnohumeral joint, initial encounter +S53131D Medial subluxation of right ulnohumeral joint, subsequent encounter +S53131S Medial subluxation of right ulnohumeral joint, sequela +S53132A Medial subluxation of left ulnohumeral joint, initial encounter +S53132D Medial subluxation of left ulnohumeral joint, subsequent encounter +S53132S Medial subluxation of left ulnohumeral joint, sequela +S53133A Medial subluxation of unspecified ulnohumeral joint, initial encounter +S53133D Medial subluxation of unspecified ulnohumeral joint, subsequent encounter +S53133S Medial subluxation of unspecified ulnohumeral joint, sequela +S53134A Medial dislocation of right ulnohumeral joint, initial encounter +S53134D Medial dislocation of right ulnohumeral joint, subsequent encounter +S53134S Medial dislocation of right ulnohumeral joint, sequela +S53135A Medial dislocation of left ulnohumeral joint, initial encounter +S53135D Medial dislocation of left ulnohumeral joint, subsequent encounter +S53135S Medial dislocation of left ulnohumeral joint, sequela +S53136A Medial dislocation of unspecified ulnohumeral joint, initial encounter +S53136D Medial dislocation of unspecified ulnohumeral joint, subsequent encounter +S53136S Medial dislocation of unspecified ulnohumeral joint, sequela +S53141A Lateral subluxation of right ulnohumeral joint, initial encounter +S53141D Lateral subluxation of right ulnohumeral joint, subsequent encounter +S53141S Lateral subluxation of right ulnohumeral joint, sequela +S53142A Lateral subluxation of left ulnohumeral joint, initial encounter +S53142D Lateral subluxation of left ulnohumeral joint, subsequent encounter +S53142S Lateral subluxation of left ulnohumeral joint, sequela +S53143A Lateral subluxation of unspecified ulnohumeral joint, initial encounter +S53143D Lateral subluxation of unspecified ulnohumeral joint, subsequent encounter +S53143S Lateral subluxation of unspecified ulnohumeral joint, sequela +S53144A Lateral dislocation of right ulnohumeral joint, initial encounter +S53144D Lateral dislocation of right ulnohumeral joint, subsequent encounter +S53144S Lateral dislocation of right ulnohumeral joint, sequela +S53145A Lateral dislocation of left ulnohumeral joint, initial encounter +S53145D Lateral dislocation of left ulnohumeral joint, subsequent encounter +S53145S Lateral dislocation of left ulnohumeral joint, sequela +S53146A Lateral dislocation of unspecified ulnohumeral joint, initial encounter +S53146D Lateral dislocation of unspecified ulnohumeral joint, subsequent encounter +S53146S Lateral dislocation of unspecified ulnohumeral joint, sequela +S53191A Other subluxation of right ulnohumeral joint, initial encounter +S53191D Other subluxation of right ulnohumeral joint, subsequent encounter +S53191S Other subluxation of right ulnohumeral joint, sequela +S53192A Other subluxation of left ulnohumeral joint, initial encounter +S53192D Other subluxation of left ulnohumeral joint, subsequent encounter +S53192S Other subluxation of left ulnohumeral joint, sequela +S53193A Other subluxation of unspecified ulnohumeral joint, initial encounter +S53193D Other subluxation of unspecified ulnohumeral joint, subsequent encounter +S53193S Other subluxation of unspecified ulnohumeral joint, sequela +S53194A Other dislocation of right ulnohumeral joint, initial encounter +S53194D Other dislocation of right ulnohumeral joint, subsequent encounter +S53194S Other dislocation of right ulnohumeral joint, sequela +S53195A Other dislocation of left ulnohumeral joint, initial encounter +S53195D Other dislocation of left ulnohumeral joint, subsequent encounter +S53195S Other dislocation of left ulnohumeral joint, sequela +S53196A Other dislocation of unspecified ulnohumeral joint, initial encounter +S53196D Other dislocation of unspecified ulnohumeral joint, subsequent encounter +S53196S Other dislocation of unspecified ulnohumeral joint, sequela +S5320XA Traumatic rupture of unspecified radial collateral ligament, initial encounter +S5320XD Traumatic rupture of unspecified radial collateral ligament, subsequent encounter +S5320XS Traumatic rupture of unspecified radial collateral ligament, sequela +S5321XA Traumatic rupture of right radial collateral ligament, initial encounter +S5321XD Traumatic rupture of right radial collateral ligament, subsequent encounter +S5321XS Traumatic rupture of right radial collateral ligament, sequela +S5322XA Traumatic rupture of left radial collateral ligament, initial encounter +S5322XD Traumatic rupture of left radial collateral ligament, subsequent encounter +S5322XS Traumatic rupture of left radial collateral ligament, sequela +S5330XA Traumatic rupture of unspecified ulnar collateral ligament, initial encounter +S5330XD Traumatic rupture of unspecified ulnar collateral ligament, subsequent encounter +S5330XS Traumatic rupture of unspecified ulnar collateral ligament, sequela +S5331XA Traumatic rupture of right ulnar collateral ligament, initial encounter +S5331XD Traumatic rupture of right ulnar collateral ligament, subsequent encounter +S5331XS Traumatic rupture of right ulnar collateral ligament, sequela +S5332XA Traumatic rupture of left ulnar collateral ligament, initial encounter +S5332XD Traumatic rupture of left ulnar collateral ligament, subsequent encounter +S5332XS Traumatic rupture of left ulnar collateral ligament, sequela +S53401A Unspecified sprain of right elbow, initial encounter +S53401D Unspecified sprain of right elbow, subsequent encounter +S53401S Unspecified sprain of right elbow, sequela +S53402A Unspecified sprain of left elbow, initial encounter +S53402D Unspecified sprain of left elbow, subsequent encounter +S53402S Unspecified sprain of left elbow, sequela +S53409A Unspecified sprain of unspecified elbow, initial encounter +S53409D Unspecified sprain of unspecified elbow, subsequent encounter +S53409S Unspecified sprain of unspecified elbow, sequela +S53411A Radiohumeral (joint) sprain of right elbow, initial encounter +S53411D Radiohumeral (joint) sprain of right elbow, subsequent encounter +S53411S Radiohumeral (joint) sprain of right elbow, sequela +S53412A Radiohumeral (joint) sprain of left elbow, initial encounter +S53412D Radiohumeral (joint) sprain of left elbow, subsequent encounter +S53412S Radiohumeral (joint) sprain of left elbow, sequela +S53419A Radiohumeral (joint) sprain of unspecified elbow, initial encounter +S53419D Radiohumeral (joint) sprain of unspecified elbow, subsequent encounter +S53419S Radiohumeral (joint) sprain of unspecified elbow, sequela +S53421A Ulnohumeral (joint) sprain of right elbow, initial encounter +S53421D Ulnohumeral (joint) sprain of right elbow, subsequent encounter +S53421S Ulnohumeral (joint) sprain of right elbow, sequela +S53422A Ulnohumeral (joint) sprain of left elbow, initial encounter +S53422D Ulnohumeral (joint) sprain of left elbow, subsequent encounter +S53422S Ulnohumeral (joint) sprain of left elbow, sequela +S53429A Ulnohumeral (joint) sprain of unspecified elbow, initial encounter +S53429D Ulnohumeral (joint) sprain of unspecified elbow, subsequent encounter +S53429S Ulnohumeral (joint) sprain of unspecified elbow, sequela +S53431A Radial collateral ligament sprain of right elbow, initial encounter +S53431D Radial collateral ligament sprain of right elbow, subsequent encounter +S53431S Radial collateral ligament sprain of right elbow, sequela +S53432A Radial collateral ligament sprain of left elbow, initial encounter +S53432D Radial collateral ligament sprain of left elbow, subsequent encounter +S53432S Radial collateral ligament sprain of left elbow, sequela +S53439A Radial collateral ligament sprain of unspecified elbow, initial encounter +S53439D Radial collateral ligament sprain of unspecified elbow, subsequent encounter +S53439S Radial collateral ligament sprain of unspecified elbow, sequela +S53441A Ulnar collateral ligament sprain of right elbow, initial encounter +S53441D Ulnar collateral ligament sprain of right elbow, subsequent encounter +S53441S Ulnar collateral ligament sprain of right elbow, sequela +S53442A Ulnar collateral ligament sprain of left elbow, initial encounter +S53442D Ulnar collateral ligament sprain of left elbow, subsequent encounter +S53442S Ulnar collateral ligament sprain of left elbow, sequela +S53449A Ulnar collateral ligament sprain of unspecified elbow, initial encounter +S53449D Ulnar collateral ligament sprain of unspecified elbow, subsequent encounter +S53449S Ulnar collateral ligament sprain of unspecified elbow, sequela +S53491A Other sprain of right elbow, initial encounter +S53491D Other sprain of right elbow, subsequent encounter +S53491S Other sprain of right elbow, sequela +S53492A Other sprain of left elbow, initial encounter +S53492D Other sprain of left elbow, subsequent encounter +S53492S Other sprain of left elbow, sequela +S53499A Other sprain of unspecified elbow, initial encounter +S53499D Other sprain of unspecified elbow, subsequent encounter +S53499S Other sprain of unspecified elbow, sequela +S5400XA Injury of ulnar nerve at forearm level, unspecified arm, initial encounter +S5400XD Injury of ulnar nerve at forearm level, unspecified arm, subsequent encounter +S5400XS Injury of ulnar nerve at forearm level, unspecified arm, sequela +S5401XA Injury of ulnar nerve at forearm level, right arm, initial encounter +S5401XD Injury of ulnar nerve at forearm level, right arm, subsequent encounter +S5401XS Injury of ulnar nerve at forearm level, right arm, sequela +S5402XA Injury of ulnar nerve at forearm level, left arm, initial encounter +S5402XD Injury of ulnar nerve at forearm level, left arm, subsequent encounter +S5402XS Injury of ulnar nerve at forearm level, left arm, sequela +S5410XA Injury of median nerve at forearm level, unspecified arm, initial encounter +S5410XD Injury of median nerve at forearm level, unspecified arm, subsequent encounter +S5410XS Injury of median nerve at forearm level, unspecified arm, sequela +S5411XA Injury of median nerve at forearm level, right arm, initial encounter +S5411XD Injury of median nerve at forearm level, right arm, subsequent encounter +S5411XS Injury of median nerve at forearm level, right arm, sequela +S5412XA Injury of median nerve at forearm level, left arm, initial encounter +S5412XD Injury of median nerve at forearm level, left arm, subsequent encounter +S5412XS Injury of median nerve at forearm level, left arm, sequela +S5420XA Injury of radial nerve at forearm level, unspecified arm, initial encounter +S5420XD Injury of radial nerve at forearm level, unspecified arm, subsequent encounter +S5420XS Injury of radial nerve at forearm level, unspecified arm, sequela +S5421XA Injury of radial nerve at forearm level, right arm, initial encounter +S5421XD Injury of radial nerve at forearm level, right arm, subsequent encounter +S5421XS Injury of radial nerve at forearm level, right arm, sequela +S5422XA Injury of radial nerve at forearm level, left arm, initial encounter +S5422XD Injury of radial nerve at forearm level, left arm, subsequent encounter +S5422XS Injury of radial nerve at forearm level, left arm, sequela +S5430XA Injury of cutaneous sensory nerve at forearm level, unspecified arm, initial encounter +S5430XD Injury of cutaneous sensory nerve at forearm level, unspecified arm, subsequent encounter +S5430XS Injury of cutaneous sensory nerve at forearm level, unspecified arm, sequela +S5431XA Injury of cutaneous sensory nerve at forearm level, right arm, initial encounter +S5431XD Injury of cutaneous sensory nerve at forearm level, right arm, subsequent encounter +S5431XS Injury of cutaneous sensory nerve at forearm level, right arm, sequela +S5432XA Injury of cutaneous sensory nerve at forearm level, left arm, initial encounter +S5432XD Injury of cutaneous sensory nerve at forearm level, left arm, subsequent encounter +S5432XS Injury of cutaneous sensory nerve at forearm level, left arm, sequela +S548X1A Injury of other nerves at forearm level, right arm, initial encounter +S548X1D Injury of other nerves at forearm level, right arm, subsequent encounter +S548X1S Injury Injury of other nerves at forearm level, right arm, sequela +S548X2A Injury of other nerves at forearm level, left arm, initial encounter +S548X2D Injury of other nerves at forearm level, left arm, subsequent encounter +S548X2S Injury of other nerves at forearm level, left arm, sequela +S548X9A Injury of other nerves at forearm level, unspecified arm, initial encounter +S548X9D Injury of other nerves at forearm level, unspecified arm, subsequent encounter +S548X9S Injury of other nerves at forearm level, unspecified arm, sequela +S5490XA Injury of unspecified nerve at forearm level, unspecified arm, initial encounter +S5490XD Injury of unspecified nerve at forearm level, unspecified arm, subsequent encounter +S5490XS Injury of unspecified nerve at forearm level, unspecified arm, sequela +S5491XA Injury of unspecified nerve at forearm level, right arm, initial encounter +S5491XD Injury of unspecified nerve at forearm level, right arm, subsequent encounter +S5491XS Injury of unspecified nerve at forearm level, right arm, sequela +S5492XA Injury of unspecified nerve at forearm level, left arm, initial encounter +S5492XD Injury of unspecified nerve at forearm level, left arm, subsequent encounter +S5492XS Injury of unspecified nerve at forearm level, left arm, sequela +S55001A Unspecified injury of ulnar artery at forearm level, right arm, initial encounter +S55001D Unspecified injury of ulnar artery at forearm level, right arm, subsequent encounter +S55001S Unspecified injury of ulnar artery at forearm level, right arm, sequela +S55002A Unspecified injury of ulnar artery at forearm level, left arm, initial encounter +S55002D Unspecified injury of ulnar artery at forearm level, left arm, subsequent encounter +S55002S Unspecified injury of ulnar artery at forearm level, left arm, sequela +S55009A Unspecified injury of ulnar artery at forearm level, unspecified arm, initial encounter +S55009D Unspecified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter +S55009S Unspecified injury of ulnar artery at forearm level, unspecified arm, sequela +S55011A Laceration of ulnar artery at forearm level, right arm, initial encounter +S55011D Laceration of ulnar artery at forearm level, right arm, subsequent encounter +S55011S Laceration of ulnar artery at forearm level, right arm, sequela +S55012A Laceration of ulnar artery at forearm level, left arm, initial encounter +S55012D Laceration of ulnar artery at forearm level, left arm, subsequent encounter +S55012S Laceration of ulnar artery at forearm level, left arm, sequela +S55019A Laceration of ulnar artery at forearm level, unspecified arm, initial encounter +S55019D Laceration of ulnar artery at forearm level, unspecified arm, subsequent encounter +S55019S Laceration of ulnar artery at forearm level, unspecified arm, sequela +S55091A Other specified injury of ulnar artery at forearm level, right arm, initial encounter +S55091D Other specified injury of ulnar artery at forearm level, right arm, subsequent encounter +S55091S Other specified injury of ulnar artery at forearm level, right arm, sequela +S55092A Other specified injury of ulnar artery at forearm level, left arm, initial encounter +S55092D Other specified injury of ulnar artery at forearm level, left arm, subsequent encounter +S55092S Other specified injury of ulnar artery at forearm level, left arm, sequela +S55099A Other specified injury of ulnar artery at forearm level, unspecified arm, initial encounter +S55099D Other specified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter +S55099S Other specified injury of ulnar artery at forearm level, unspecified arm, sequela +S55101A Unspecified injury of radial artery at forearm level, right arm, initial encounter +S55101D Unspecified injury of radial artery at forearm level, right arm, subsequent encounter +S55101S Unspecified injury of radial artery at forearm level, right arm, sequela +S55102A Unspecified injury of radial artery at forearm level, left arm, initial encounter +S55102D Unspecified injury of radial artery at forearm level, left arm, subsequent encounter +S55102S Unspecified injury of radial artery at forearm level, left arm, sequela +S55109A Unspecified injury of radial artery at forearm level, unspecified arm, initial encounter +S55109D Unspecified injury of radial artery at forearm level, unspecified arm, subsequent encounter +S55109S Unspecified injury of radial artery at forearm level, unspecified arm, sequela +S55111A Laceration of radial artery at forearm level, right arm, initial encounter +S55111D Laceration of radial artery at forearm level, right arm, subsequent encounter +S55111S Laceration of radial artery at forearm level, right arm, sequela +S55112A Laceration of radial artery at forearm level, left arm, initial encounter +S55112D Laceration of radial artery at forearm level, left arm, subsequent encounter +S55112S Laceration of radial artery at forearm level, left arm, sequela +S55119A Laceration of radial artery at forearm level, unspecified arm, initial encounter +S55119D Laceration of radial artery at forearm level, unspecified arm, subsequent encounter +S55119S Laceration of radial artery at forearm level, unspecified arm, sequela +S55191A Other specified injury of radial artery at forearm level, right arm, initial encounter +S55191D Other specified injury of radial artery at forearm level, right arm, subsequent encounter +S55191S Other specified injury of radial artery at forearm level, right arm, sequela +S55192A Other specified injury of radial artery at forearm level, left arm, initial encounter +S55192D Other specified injury of radial artery at forearm level, left arm, subsequent encounter +S55192S Other specified injury of radial artery at forearm level, left arm, sequela +S55199A Other specified injury of radial artery at forearm level, unspecified arm, initial encounter +S55199D Other specified injury of radial artery at forearm level, unspecified arm, subsequent encounter +S55199S Other specified injury of radial artery at forearm level, unspecified arm, sequela +S55201A Unspecified injury of vein at forearm level, right arm, initial encounter +S55201D Unspecified injury of vein at forearm level, right arm, subsequent encounter +S55201S Unspecified injury of vein at forearm level, right arm, sequela +S55202A Unspecified injury of vein at forearm level, left arm, initial encounter +S55202D Unspecified injury of vein at forearm level, left arm, subsequent encounter +S55202S Unspecified injury of vein at forearm level, left arm, sequela +S55209A Unspecified injury of vein at forearm level, unspecified arm, initial encounter +S55209D Unspecified injury of vein at forearm level, unspecified arm, subsequent encounter +S55209S Unspecified injury of vein at forearm level, unspecified arm, sequela +S55211A Laceration of vein at forearm level, right arm, initial encounter +S55211D Laceration of vein at forearm level, right arm, subsequent encounter +S55211S Laceration of vein at forearm level, right arm, sequela +S55212A Laceration of vein at forearm level, left arm, initial encounter +S55212D Laceration of vein at forearm level, left arm, subsequent encounter +S55212S Laceration of vein at forearm level, left arm, sequela +S55219A Laceration of vein at forearm level, unspecified arm, initial encounter +S55219D Laceration of vein at forearm level, unspecified arm, subsequent encounter +S55219S Laceration of vein at forearm level, unspecified arm, sequela +S55291A Other specified injury of vein at forearm level, right arm, initial encounter +S55291D Other specified injury of vein at forearm level, right arm, subsequent encounter +S55291S Other specified injury of vein at forearm level, right arm, sequela +S55292A Other specified injury of vein at forearm level, left arm, initial encounter +S55292D Other specified injury of vein at forearm level, left arm, subsequent encounter +S55292S Other specified injury of vein at forearm level, left arm, sequela +S55299A Other specified injury of vein at forearm level, unspecified arm, initial encounter +S55299D Other specified injury of vein at forearm level, unspecified arm, subsequent encounter +S55299S Other specified injury of vein at forearm level, unspecified arm, sequela +S55801A Unspecified injury of other blood vessels at forearm level, right arm, initial encounter +S55801D Unspecified injury of other blood vessels at forearm level, right arm, subsequent encounter +S55801S Unspecified injury of other blood vessels at forearm level, right arm, sequela +S55802A Unspecified injury of other blood vessels at forearm level, left arm, initial encounter +S55802D Unspecified injury of other blood vessels at forearm level, left arm, subsequent encounter +S55802S Unspecified injury of other blood vessels at forearm level, left arm, sequela +S55809A Unspecified injury of other blood vessels at forearm level, unspecified arm, initial encounter +S55809D Unspecified injury of other blood vessels at forearm level, unspecified arm, subsequent encounter +S55809S Unspecified injury of other blood vessels at forearm level, unspecified arm, sequela +S55811A Laceration of other blood vessels at forearm level, right arm, initial encounter +S55811D Laceration of other blood vessels at forearm level, right arm, subsequent encounter +S55811S Laceration of other blood vessels at forearm level, right arm, sequela +S55812A Laceration of other blood vessels at forearm level, left arm, initial encounter +S55812D Laceration of other blood vessels at forearm level, left arm, subsequent encounter +S55812S Laceration of other blood vessels at forearm level, left arm, sequela +S55819A Laceration of other blood vessels at forearm level, unspecified arm, initial encounter +S55819D Laceration of other blood vessels at forearm level, unspecified arm, subsequent encounter +S55819S Laceration of other blood vessels at forearm level, unspecified arm, sequela +S55891A Other specified injury of other blood vessels at forearm level, right arm, initial encounter +S55891D Other specified injury of other blood vessels at forearm level, right arm, subsequent encounter +S55891S Other specified injury of other blood vessels at forearm level, right arm, sequela +S55892A Other specified injury of other blood vessels at forearm level, left arm, initial encounter +S55892D Other specified injury of other blood vessels at forearm level, left arm, subsequent encounter +S55892S Other specified injury of other blood vessels at forearm level, left arm, sequela +S55899A Other specified injury of other blood vessels at forearm level, unspecified arm, initial encounter +S55899D Other specified injury of other blood vessels at forearm level, unspecified arm, subsequent encounter +S55899S Other specified injury of other blood vessels at forearm level, unspecified arm, sequela +S55901A Unspecified injury of unspecified blood vessel at forearm level, right arm, initial encounter +S55901D Unspecified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter +S55901S Unspecified injury of unspecified blood vessel at forearm level, right arm, sequela +S55902A Unspecified injury of unspecified blood vessel at forearm level, left arm, initial encounter +S55902D Unspecified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter +S55902S Unspecified injury of unspecified blood vessel at forearm level, left arm, sequela +S55909A Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, initial encounter +S55909D Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter +S55909S Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, sequela +S55911A Laceration of unspecified blood vessel at forearm level, right arm, initial encounter +S55911D Laceration of unspecified blood vessel at forearm level, right arm, subsequent encounter +S55911S Laceration of unspecified blood vessel at forearm level, right arm, sequela +S55912A Laceration of unspecified blood vessel at forearm level, left arm, initial encounter +S55912D Laceration of unspecified blood vessel at forearm level, left arm, subsequent encounter +S55912S Laceration of unspecified blood vessel at forearm level, left arm, sequela +S55919A Laceration of unspecified blood vessel at forearm level, unspecified arm, initial encounter +S55919D Laceration of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter +S55919S Laceration of unspecified blood vessel at forearm level, unspecified arm, sequela +S55991A Other specified injury of unspecified blood vessel at forearm level, right arm, initial encounter +S55991D Other specified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter +S55991S Other specified injury of unspecified blood vessel at forearm level, right arm, sequela +S55992A Other specified injury of unspecified blood vessel at forearm level, left arm, initial encounter +S55992D Other specified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter +S55992S Other specified injury of unspecified blood vessel at forearm level, left arm, sequela +S55999A Other specified injury of unspecified blood vessel at forearm level, unspecified arm, initial encounter +S55999D Other specified injury of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter +S55999S Other specified injury of unspecified blood vessel at forearm level, unspecified arm, sequela +S56001A Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter +S56001D Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter +S56001S Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela +S56002A Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter +S56002D Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter +S56002S Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela +S56009A Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter +S56009D Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter +S56009S Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela +S56011A Strain of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter +S56011D Strain of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter +S56011S Strain of flexor muscle, fascia and tendon of right thumb at forearm level, sequela +S56012A Strain of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter +S56012D Strain of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter +S56012S Strain of flexor muscle, fascia and tendon of left thumb at forearm level, sequela +S56019A Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter +S56019D Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter +S56019S Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela +S56021A Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter +S56021D Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter +S56021S Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, sequela +S56022A Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter +S56022D Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter +S56022S Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, sequela +S56029A Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter +S56029D Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter +S56029S Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela +S56091A Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter +S56091D Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter +S56091S Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela +S56092A Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter +S56092D Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter +S56092S Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela +S56099A Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter +S56099D Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter +S56099S Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela +S56101A Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter +S56101D Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter +S56101S Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, sequela +S56102A Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter +S56102D Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter +S56102S Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, sequela +S56103A Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter +S56103D Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter +S56103S Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela +S56104A Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter +S56104D Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter +S56104S Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela +S56105A Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter +S56105D Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter +S56105S Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela +S56106A Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter +S56106D Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter +S56106S Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela +S56107A Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter +S56107D Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter +S56107S Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, sequela +S56108A Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter +S56108D Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter +S56108S Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, sequela +S56109A Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter +S56109D Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter +S56109S Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela +S56111A Strain of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter +S56111D Strain of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter +S56111S Strain of flexor muscle, fascia and tendon of right index finger at forearm level, sequela +S56112A Strain of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter +S56112D Strain of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter +S56112S Strain of flexor muscle, fascia and tendon of left index finger at forearm level, sequela +S56113A Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter +S56113D Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter +S56113S Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela +S56114A Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter +S56114D Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter +S56114S Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela +S56115A Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter +S56115D Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter +S56115S Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela +S56116A Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter +S56116D Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter +S56116S Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela +S56117A Strain of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter +S56117D Strain of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter +S56117S Strain of flexor muscle, fascia and tendon of right little finger at forearm level, sequela +S56118A Strain of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter +S56118D Strain of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter +S56118S Strain of flexor muscle, fascia and tendon of left little finger at forearm level, sequela +S56119A Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, initial encounter +S56119D Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, subsequent encounter +S56119S Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, sequela +S56121A Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter +S56121D Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter +S56121S Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, sequela +S56122A Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter +S56122D Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter +S56122S Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, sequela +S56123A Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter +S56123D Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter +S56123S Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela +S56124A Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter +S56124D Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter +S56124S Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela +S56125A Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter +S56125D Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter +S56125S Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela +S56126A Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter +S56126D Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter +S56126S Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela +S56127A Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter +S56127D Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter +S56127S Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, sequela +S56128A Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter +S56128D Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter +S56128S Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, sequela +S56129A Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter +S56129D Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter +S56129S Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela +S56191A Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter +S56191D Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter +S56191S Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, sequela +S56192A Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter +S56192D Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter +S56192S Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, sequela +S56193A Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter +S56193D Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter +S56193S Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela +S56194A Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter +S56194D Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter +S56194S Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela +S56195A Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter +S56195D Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter +S56195S Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela +S56196A Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter +S56196D Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter +S56196S Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela +S56197A Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter +S56197D Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter +S56197S Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, sequela +S56198A Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter +S56198D Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter +S56198S Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, sequela +S56199A Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter +S56199D Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter +S56199S Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela +S56201A Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter +S56201D Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter +S56201S Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela +S56202A Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter +S56202D Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter +S56202S Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela +S56209A Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter +S56209D Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter +S56209S Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela +S56211A Strain of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter +S56211D Strain of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter +S56211S Strain of other flexor muscle, fascia and tendon at forearm level, right arm, sequela +S56212A Strain of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter +S56212D Strain of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter +S56212S Strain of other flexor muscle, fascia and tendon at forearm level, left arm, sequela +S56219A Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter +S56219D Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter +S56219S Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela +S56221A Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter +S56221D Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter +S56221S Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, sequela +S56222A Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter +S56222D Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter +S56222S Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, sequela +S56229A Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter +S56229D Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter +S56229S Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela +S56291A Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter +S56291D Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter +S56291S Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela +S56292A Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter +S56292D Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter +S56292S Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela +S56299A Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter +S56299D Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter +S56299S Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela +S56301A Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter +S56301D Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter +S56301S Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela +S56302A Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter +S56302D Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter +S56302S Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela +S56309A Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter +S56309D Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter +S56309S Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela +S56311A Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter +S56311D Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter +S56311S Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela +S56312A Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter +S56312D Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter +S56312S Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela +S56319A Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter +S56319D Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter +S56319S Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela +S56321A Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter +S56321D Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter +S56321S Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela +S56322A Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter +S56322D Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter +S56322S Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela +S56329A Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter +S56329D Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter +S56329S Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela +S56391A Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter +S56391D Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter +S56391S Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela +S56392A Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter +S56392D Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter +S56392S Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela +S56399A Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter +S56399D Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter +S56399S Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela +S56401A Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter +S56401D Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter +S56401S Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, sequela +S56402A Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter +S56402D Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter +S56402S Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, sequela +S56403A Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter +S56403D Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter +S56403S Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela +S56404A Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter +S56404D Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter +S56404S Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela +S56405A Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter +S56405D Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter +S56405S Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela +S56406A Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter +S56406D Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter +S56406S Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela +S56407A Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter +S56407D Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter +S56407S Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, sequela +S56408A Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter +S56408D Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter +S56408S Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, sequela +S56409A Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter +S56409D Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter +S56409S Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela +S56411A Strain of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter +S56411D Strain of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter +S56411S Strain of extensor muscle, fascia and tendon of right index finger at forearm level, sequela +S56412A Strain of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter +S56412D Strain of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter +S56412S Strain of extensor muscle, fascia and tendon of left index finger at forearm level, sequela +S56413A Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter +S56413D Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter +S56413S Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela +S56414A Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter +S56414D Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter +S56414S Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela +S56415A Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter +S56415D Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter +S56415S Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela +S56416A Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter +S56416D Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter +S56416S Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela +S56417A Strain of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter +S56417D Strain of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter +S56417S Strain of extensor muscle, fascia and tendon of right little finger at forearm level, sequela +S56418A Strain of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter +S56418D Strain of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter +S56418S Strain of extensor muscle, fascia and tendon of left little finger at forearm level, sequela +S56419A Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, initial encounter +S56419D Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, subsequent encounter +S56419S Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, sequela +S56421A Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter +S56421D Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter +S56421S Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, sequela +S56422A Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter +S56422D Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter +S56422S Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, sequela +S56423A Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter +S56423D Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter +S56423S Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela +S56424A Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter +S56424D Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter +S56424S Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela +S56425A Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter +S56425D Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter +S56425S Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela +S56426A Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter +S56426D Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter +S56426S Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela +S56427A Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter +S56427D Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter +S56427S Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, sequela +S56428A Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter +S56428D Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter +S56428S Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, sequela +S56429A Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter +S56429D Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter +S56429S Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela +S56491A Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter +S56491D Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter +S56491S Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, sequela +S56492A Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter +S56492D Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter +S56492S Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, sequela +S56493A Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter +S56493D Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter +S56493S Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela +S56494A Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter +S56494D Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter +S56494S Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela +S56495A Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter +S56495D Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter +S56495S Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela +S56496A Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter +S56496D Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter +S56496S Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela +S56497A Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter +S56497D Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter +S56497S Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, sequela +S56498A Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter +S56498D Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter +S56498S Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, sequela +S56499A Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter +S56499D Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter +S56499S Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela +S56501A Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter +S56501D Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter +S56501S Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela +S56502A Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter +S56502D Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter +S56502S Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela +S56509A Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter +S56509D Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter +S56509S Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela +S56511A Strain of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter +S56511D Strain of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter +S56511S Strain of other extensor muscle, fascia and tendon at forearm level, right arm, sequela +S56512A Strain of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter +S56512D Strain of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter +S56512S Strain of other extensor muscle, fascia and tendon at forearm level, left arm, sequela +S56519A Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter +S56519D Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter +S56519S Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela +S56521A Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter +S56521D Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter +S56521S Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, sequela +S56522A Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter +S56522D Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter +S56522S Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, sequela +S56529A Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter +S56529D Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter +S56529S Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela +S56591A Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter +S56591D Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter +S56591S Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela +S56592A Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter +S56592D Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter +S56592S Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela +S56599A Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter +S56599D Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter +S56599S Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela +S56801A Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, initial encounter +S56801D Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter +S56801S Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, sequela +S56802A Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, initial encounter +S56802D Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter +S56802S Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, sequela +S56809A Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter +S56809D Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter +S56809S Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela +S56811A Strain of other muscles, fascia and tendons at forearm level, right arm, initial encounter +S56811D Strain of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter +S56811S Strain of other muscles, fascia and tendons at forearm level, right arm, sequela +S56812A Strain of other muscles, fascia and tendons at forearm level, left arm, initial encounter +S56812D Strain of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter +S56812S Strain of other muscles, fascia and tendons at forearm level, left arm, sequela +S56819A Strain of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter +S56819D Strain of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter +S56819S Strain of other muscles, fascia and tendons at forearm level, unspecified arm, sequela +S56821A Laceration of other muscles, fascia and tendons at forearm level, right arm, initial encounter +S56821D Laceration of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter +S56821S Laceration of other muscles, fascia and tendons at forearm level, right arm, sequela +S56822A Laceration of other muscles, fascia and tendons at forearm level, left arm, initial encounter +S56822D Laceration of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter +S56822S Laceration of other muscles, fascia and tendons at forearm level, left arm, sequela +S56829A Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter +S56829D Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter +S56829S Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, sequela +S56891A Other injury of other muscles, fascia and tendons at forearm level, right arm, initial encounter +S56891D Other injury of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter +S56891S Other injury of other muscles, fascia and tendons at forearm level, right arm, sequela +S56892A Other injury of other muscles, fascia and tendons at forearm level, left arm, initial encounter +S56892D Other injury of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter +S56892S Other injury of other muscles, fascia and tendons at forearm level, left arm, sequela +S56899A Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter +S56899D Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter +S56899S Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela +S56901A Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter +S56901D Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter +S56901S Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela +S56902A Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter +S56902D Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter +S56902S Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela +S56909A Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter +S56909D Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter +S56909S Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela +S56911A Strain of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter +S56911D Strain of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter +S56911S Strain of unspecified muscles, fascia and tendons at forearm level, right arm, sequela +S56912A Strain of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter +S56912D Strain of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter +S56912S Strain of unspecified muscles, fascia and tendons at forearm level, left arm, sequela +S56919A Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter +S56919D Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter +S56919S Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela +S56921A Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter +S56921D Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter +S56921S Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, sequela +S56922A Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter +S56922D Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter +S56922S Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, sequela +S56929A Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter +S56929D Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter +S56929S Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela +S56991A Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter +S56991D Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter +S56991S Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela +S56992A Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter +S56992D Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter +S56992S Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela +S56999A Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter +S56999D Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter +S56999S Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela +S5700XA Crushing injury of unspecified elbow, initial encounter +S5700XD Crushing injury of unspecified elbow, subsequent encounter +S5700XS Crushing injury of unspecified elbow, sequela +S5701XA Crushing injury of right elbow, initial encounter +S5701XD Crushing injury of right elbow, subsequent encounter +S5701XS Crushing injury of right elbow, sequela +S5702XA Crushing injury of left elbow, initial encounter +S5702XD Crushing injury of left elbow, subsequent encounter +S5702XS Crushing injury of left elbow, sequela +S5780XA Crushing injury of unspecified forearm, initial encounter +S5780XD Crushing injury of unspecified forearm, subsequent encounter +S5780XS Crushing injury of unspecified forearm, sequela +S5781XA Crushing injury of right forearm, initial encounter +S5781XD Crushing injury of right forearm, subsequent encounter +S5781XS Crushing injury of right forearm, sequela +S5782XA Crushing injury of left forearm, initial encounter +S5782XD Crushing injury of left forearm, subsequent encounter +S5782XS Crushing injury of left forearm, sequela +S58011A Complete traumatic amputation at elbow level, right arm, initial encounter +S58011D Complete traumatic amputation at elbow level, right arm, subsequent encounter +S58011S Complete traumatic amputation at elbow level, right arm, sequela +S58012A Complete traumatic amputation at elbow level, left arm, initial encounter +S58012D Complete traumatic amputation at elbow level, left arm, subsequent encounter +S58012S Complete traumatic amputation at elbow level, left arm, sequela +S58019A Complete traumatic amputation at elbow level, unspecified arm, initial encounter +S58019D Complete traumatic amputation at elbow level, unspecified arm, subsequent encounter +S58019S Complete traumatic amputation at elbow level, unspecified arm, sequela +S58021A Partial traumatic amputation at elbow level, right arm, initial encounter +S58021D Partial traumatic amputation at elbow level, right arm, subsequent encounter +S58021S Partial traumatic amputation at elbow level, right arm, sequela +S58022A Partial traumatic amputation at elbow level, left arm, initial encounter +S58022D Partial traumatic amputation at elbow level, left arm, subsequent encounter +S58022S Partial traumatic amputation at elbow level, left arm, sequela +S58029A Partial traumatic amputation at elbow level, unspecified arm, initial encounter +S58029D Partial traumatic amputation at elbow level, unspecified arm, subsequent encounter +S58029S Partial traumatic amputation at elbow level, unspecified arm, sequela +S58111A Complete traumatic amputation at level between elbow and wrist, right arm, initial encounter +S58111D Complete traumatic amputation at level between elbow and wrist, right arm, subsequent encounter +S58111S Complete traumatic amputation at level between elbow and wrist, right arm, sequela +S58112A Complete traumatic amputation at level between elbow and wrist, left arm, initial encounter +S58112D Complete traumatic amputation at level between elbow and wrist, left arm, subsequent encounter +S58112S Complete traumatic amputation at level between elbow and wrist, left arm, sequela +S58119A Complete traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter +S58119D Complete traumatic amputation at level between elbow and wrist, unspecified arm, subsequent encounter +S58119S Complete traumatic amputation at level between elbow and wrist, unspecified arm, sequela +S58121A Partial traumatic amputation at level between elbow and wrist, right arm, initial encounter +S58121D Partial traumatic amputation at level between elbow and wrist, right arm, subsequent encounter +S58121S Partial traumatic amputation at level between elbow and wrist, right arm, sequela +S58122A Partial traumatic amputation at level between elbow and wrist, left arm, initial encounter +S58122D Partial traumatic amputation at level between elbow and wrist, left arm, subsequent encounter +S58122S Partial traumatic amputation at level between elbow and wrist, left arm, sequela +S58129A Partial traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter +S58129D Partial traumatic amputation at level between elbow and wrist, unspecified arm, subsequent encounter +S58129S Partial traumatic amputation at level between elbow and wrist, unspecified arm, sequela +S58911A Complete traumatic amputation of right forearm, level unspecified, initial encounter +S58911D Complete traumatic amputation of right forearm, level unspecified, subsequent encounter +S58911S Complete traumatic amputation of right forearm, level unspecified, sequela +S58912A Complete traumatic amputation of left forearm, level unspecified, initial encounter +S58912D Complete traumatic amputation of left forearm, level unspecified, subsequent encounter +S58912S Complete traumatic amputation of left forearm, level unspecified, sequela +S58919A Complete traumatic amputation of unspecified forearm, level unspecified, initial encounter +S58919D Complete traumatic amputation of unspecified forearm, level unspecified, subsequent encounter +S58919S Complete traumatic amputation of unspecified forearm, level unspecified, sequela +S58921A Partial traumatic amputation of right forearm, level unspecified, initial encounter +S58921D Partial traumatic amputation of right forearm, level unspecified, subsequent encounter +S58921S Partial traumatic amputation of right forearm, level unspecified, sequela +S58922A Partial traumatic amputation of left forearm, level unspecified, initial encounter +S58922D Partial traumatic amputation of left forearm, level unspecified, subsequent encounter +S58922S Partial traumatic amputation of left forearm, level unspecified, sequela +S58929A Partial traumatic amputation of unspecified forearm, level unspecified, initial encounter +S58929D Partial traumatic amputation of unspecified forearm, level unspecified, subsequent encounter +S58929S Partial traumatic amputation of unspecified forearm, level unspecified, sequela +S59001A Unspecified physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture +S59001D Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing +S59001G Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing +S59001K Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion +S59001P Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion +S59001S Unspecified physeal fracture of lower end of ulna, right arm, sequela +S59002A Unspecified physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture +S59002D Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing +S59002G Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing +S59002K Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion +S59002P Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion +S59002S Unspecified physeal fracture of lower end of ulna, left arm, sequela +S59009A Unspecified physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture +S59009D Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing +S59009G Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing +S59009K Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion +S59009P Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion +S59009S Unspecified physeal fracture of lower end of ulna, unspecified arm, sequela +S59011A Salter-Harris Type I physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture +S59011D Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing +S59011G Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing +S59011K Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion +S59011P Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion +S59011S Salter-Harris Type I physeal fracture of lower end of ulna, right arm, sequela +S59012A Salter-Harris Type I physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture +S59012D Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing +S59012G Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing +S59012K Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion +S59012P Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion +S59012S Salter-Harris Type I physeal fracture of lower end of ulna, left arm, sequela +S59019A Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture +S59019D Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing +S59019G Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing +S59019K Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion +S59019P Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion +S59019S Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, sequela +S59021A Salter-Harris Type II physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture +S59021D Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing +S59021G Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing +S59021K Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion +S59021P Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion +S59021S Salter-Harris Type II physeal fracture of lower end of ulna, right arm, sequela +S59022A Salter-Harris Type II physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture +S59022D Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing +S59022G Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing +S59022K Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion +S59022P Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion +S59022S Salter-Harris Type II physeal fracture of lower end of ulna, left arm, sequela +S59029A Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture +S59029D Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing +S59029G Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing +S59029K Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion +S59029P Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion +S59029S Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, sequela +S59031A Salter-Harris Type III physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture +S59031D Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing +S59031G Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing +S59031K Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion +S59031P Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion +S59031S Salter-Harris Type III physeal fracture of lower end of ulna, right arm, sequela +S59032A Salter-Harris Type III physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture +S59032D Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing +S59032G Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing +S59032K Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion +S59032P Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion +S59032S Salter-Harris Type III physeal fracture of lower end of ulna, left arm, sequela +S59039A Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture +S59039D Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing +S59039G Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing +S59039K Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion +S59039P Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion +S59039S Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, sequela +S59041A Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture +S59041D Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing +S59041G Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing +S59041K Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion +S59041P Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion +S59041S Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, sequela +S59042A Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture +S59042D Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing +S59042G Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing +S59042K Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion +S59042P Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion +S59042S Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, sequela +S59049A Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture +S59049D Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing +S59049G Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing +S59049K Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion +S59049P Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion +S59049S Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, sequela +S59091A Other physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture +S59091D Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing +S59091G Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing +S59091K Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion +S59091P Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion +S59091S Other physeal fracture of lower end of ulna, right arm, sequela +S59092A Other physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture +S59092D Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing +S59092G Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing +S59092K Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion +S59092P Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion +S59092S Other physeal fracture of lower end of ulna, left arm, sequela +S59099A Other physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture +S59099D Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing +S59099G Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing +S59099K Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion +S59099P Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion +S59099S Other physeal fracture of lower end of ulna, unspecified arm, sequela +S59101A Unspecified physeal fracture of upper end of radius, right arm, initial encounter for closed fracture +S59101D Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing +S59101G Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing +S59101K Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion +S59101P Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion +S59101S Unspecified physeal fracture of upper end of radius, right arm, sequela +S59102A Unspecified physeal fracture of upper end of radius, left arm, initial encounter for closed fracture +S59102D Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing +S59102G Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing +S59102K Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion +S59102P Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion +S59102S Unspecified physeal fracture of upper end of radius, left arm, sequela +S59109A Unspecified physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture +S59109D Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59109G Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59109K Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59109P Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59109S Unspecified physeal fracture of upper end of radius, unspecified arm, sequela +S59111A Salter-Harris Type I physeal fracture of upper end of radius, right arm, initial encounter for closed fracture +S59111D Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing +S59111G Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing +S59111K Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion +S59111P Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion +S59111S Salter-Harris Type I physeal fracture of upper end of radius, right arm, sequela +S59112A Salter-Harris Type I physeal fracture of upper end of radius, left arm, initial encounter for closed fracture +S59112D Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing +S59112G Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing +S59112K Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion +S59112P Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion +S59112S Salter-Harris Type I physeal fracture of upper end of radius, left arm, sequela +S59119A Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture +S59119D Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59119G Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59119K Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59119P Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59119S Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, sequela +S59121A Salter-Harris Type II physeal fracture of upper end of radius, right arm, initial encounter for closed fracture +S59121D Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing +S59121G Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing +S59121K Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion +S59121P Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion +S59121S Salter-Harris Type II physeal fracture of upper end of radius, right arm, sequela +S59122A Salter-Harris Type II physeal fracture of upper end of radius, left arm, initial encounter for closed fracture +S59122D Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing +S59122G Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing +S59122K Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion +S59122P Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion +S59122S Salter-Harris Type II physeal fracture of upper end of radius, left arm, sequela +S59129A Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture +S59129D Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59129G Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59129K Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59129P Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59129S Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, sequela +S59131A Salter-Harris Type III physeal fracture of upper end of radius, right arm, initial encounter for closed fracture +S59131D Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing +S59131G Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing +S59131K Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion +S59131P Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion +S59131S Salter-Harris Type III physeal fracture of upper end of radius, right arm, sequela +S59132A Salter-Harris Type III physeal fracture of upper end of radius, left arm, initial encounter for closed fracture +S59132D Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing +S59132G Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing +S59132K Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion +S59132P Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion +S59132S Salter-Harris Type III physeal fracture of upper end of radius, left arm, sequela +S59139A Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture +S59139D Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59139G Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59139K Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59139P Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59139S Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, sequela +S59141A Salter-Harris Type IV physeal fracture of upper end of radius, right arm, initial encounter for closed fracture +S59141D Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing +S59141G Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing +S59141K Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion +S59141P Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion +S59141S Salter-Harris Type IV physeal fracture of upper end of radius, right arm, sequela +S59142A Salter-Harris Type IV physeal fracture of upper end of radius, left arm, initial encounter for closed fracture +S59142D Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing +S59142G Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing +S59142K Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion +S59142P Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion +S59142S Salter-Harris Type IV physeal fracture of upper end of radius, left arm, sequela +S59149A Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture +S59149D Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59149G Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59149K Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59149P Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59149S Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, sequela +S59191A Other physeal fracture of upper end of radius, right arm, initial encounter for closed fracture +S59191D Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing +S59191G Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing +S59191K Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion +S59191P Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion +S59191S Other physeal fracture of upper end of radius, right arm, sequela +S59192A Other physeal fracture of upper end of radius, left arm, initial encounter for closed fracture +S59192D Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing +S59192G Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing +S59192K Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion +S59192P Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion +S59192S Other physeal fracture of upper end of radius, left arm, sequela +S59199A Other physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture +S59199D Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59199G Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59199K Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59199P Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59199S Other physeal fracture of upper end of radius, unspecified arm, sequela +S59201A Unspecified physeal fracture of lower end of radius, right arm, initial encounter for closed fracture +S59201D Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing +S59201G Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing +S59201K Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion +S59201P Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion +S59201S Unspecified physeal fracture of lower end of radius, right arm, sequela +S59202A Unspecified physeal fracture of lower end of radius, left arm, initial encounter for closed fracture +S59202D Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing +S59202G Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing +S59202K Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion +S59202P Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion +S59202S Unspecified physeal fracture of lower end of radius, left arm, sequela +S59209A Unspecified physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture +S59209D Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59209G Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59209K Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59209P Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59209S Unspecified physeal fracture of lower end of radius, unspecified arm, sequela +S59211A Salter-Harris Type I physeal fracture of lower end of radius, right arm, initial encounter for closed fracture +S59211D Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing +S59211G Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing +S59211K Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion +S59211P Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion +S59211S Salter-Harris Type I physeal fracture of lower end of radius, right arm, sequela +S59212A Salter-Harris Type I physeal fracture of lower end of radius, left arm, initial encounter for closed fracture +S59212D Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing +S59212G Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing +S59212K Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion +S59212P Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion +S59212S Salter-Harris Type I physeal fracture of lower end of radius, left arm, sequela +S59219A Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture +S59219D Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59219G Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59219K Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59219P Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59219S Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, sequela +S59221A Salter-Harris Type II physeal fracture of lower end of radius, right arm, initial encounter for closed fracture +S59221D Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing +S59221G Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing +S59221K Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion +S59221P Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion +S59221S Salter-Harris Type II physeal fracture of lower end of radius, right arm, sequela +S59222A Salter-Harris Type II physeal fracture of lower end of radius, left arm, initial encounter for closed fracture +S59222D Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing +S59222G Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing +S59222K Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion +S59222P Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion +S59222S Salter-Harris Type II physeal fracture of lower end of radius, left arm, sequela +S59229A Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture +S59229D Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59229G Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59229K Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59229P Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59229S Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, sequela +S59231A Salter-Harris Type III physeal fracture of lower end of radius, right arm, initial encounter for closed fracture +S59231D Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing +S59231G Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing +S59231K Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion +S59231P Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion +S59231S Salter-Harris Type III physeal fracture of lower end of radius, right arm, sequela +S59232A Salter-Harris Type III physeal fracture of lower end of radius, left arm, initial encounter for closed fracture +S59232D Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing +S59232G Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing +S59232K Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion +S59232P Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion +S59232S Salter-Harris Type III physeal fracture of lower end of radius, left arm, sequela +S59239A Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture +S59239D Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59239G Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59239K Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59239P Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59239S Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, sequela +S59241A Salter-Harris Type IV physeal fracture of lower end of radius, right arm, initial encounter for closed fracture +S59241D Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing +S59241G Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing +S59241K Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion +S59241P Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion +S59241S Salter-Harris Type IV physeal fracture of lower end of radius, right arm, sequela +S59242A Salter-Harris Type IV physeal fracture of lower end of radius, left arm, initial encounter for closed fracture +S59242D Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing +S59242G Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing +S59242K Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion +S59242P Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion +S59242S Salter-Harris Type IV physeal fracture of lower end of radius, left arm, sequela +S59249A Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture +S59249D Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59249G Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59249K Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59249P Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59249S Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, sequela +S59291A Other physeal fracture of lower end of radius, right arm, initial encounter for closed fracture +S59291D Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing +S59291G Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing +S59291K Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion +S59291P Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion +S59291S Other physeal fracture of lower end of radius, right arm, sequela +S59292A Other physeal fracture of lower end of radius, left arm, initial encounter for closed fracture +S59292D Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing +S59292G Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing +S59292K Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion +S59292P Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion +S59292S Other physeal fracture of lower end of radius, left arm, sequela +S59299A Other physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture +S59299D Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing +S59299G Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing +S59299K Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion +S59299P Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion +S59299S Other physeal fracture of lower end of radius, unspecified arm, sequela +S59801A Other specified injuries of right elbow, initial encounter +S59801D Other specified injuries of right elbow, subsequent encounter +S59801S Other specified injuries of right elbow, sequela +S59802A Other specified injuries of left elbow, initial encounter +S59802D Other specified injuries of left elbow, subsequent encounter +S59802S Other specified injuries of left elbow, sequela +S59809A Other specified injuries of unspecified elbow, initial encounter +S59809D Other specified injuries of unspecified elbow, subsequent encounter +S59809S Other specified injuries of unspecified elbow, sequela +S59811A Other specified injuries right forearm, initial encounter +S59811D Other specified injuries right forearm, subsequent encounter +S59811S Other specified injuries right forearm, sequela +S59812A Other specified injuries left forearm, initial encounter +S59812D Other specified injuries left forearm, subsequent encounter +S59812S Other specified injuries left forearm, sequela +S59819A Other specified injuries unspecified forearm, initial encounter +S59819D Other specified injuries unspecified forearm, subsequent encounter +S59819S Other specified injuries unspecified forearm, sequela +S59901A Unspecified injury of right elbow, initial encounter +S59901D Unspecified injury of right elbow, subsequent encounter +S59901S Unspecified injury of right elbow, sequela +S59902A Unspecified injury of left elbow, initial encounter +S59902D Unspecified injury of left elbow, subsequent encounter +S59902S Unspecified injury of left elbow, sequela +S59909A Unspecified injury of unspecified elbow, initial encounter +S59909D Unspecified injury of unspecified elbow, subsequent encounter +S59909S Unspecified injury of unspecified elbow, sequela +S59911A Unspecified injury of right forearm, initial encounter +S59911D Unspecified injury of right forearm, subsequent encounter +S59911S Unspecified injury of right forearm, sequela +S59912A Unspecified injury of left forearm, initial encounter +S59912D Unspecified injury of left forearm, subsequent encounter +S59912S Unspecified injury of left forearm, sequela +S59919A Unspecified injury of unspecified forearm, initial encounter +S59919D Unspecified injury of unspecified forearm, subsequent encounter +S59919S Unspecified injury of unspecified forearm, sequela +S6000XA Contusion of unspecified finger without damage to nail, initial encounter +S6000XD Contusion of unspecified finger without damage to nail, subsequent encounter +S6000XS Contusion of unspecified finger without damage to nail, sequela +S60011A Contusion of right thumb without damage to nail, initial encounter +S60011D Contusion of right thumb without damage to nail, subsequent encounter +S60011S Contusion of right thumb without damage to nail, sequela +S60012A Contusion of left thumb without damage to nail, initial encounter +S60012D Contusion of left thumb without damage to nail, subsequent encounter +S60012S Contusion of left thumb without damage to nail, sequela +S60019A Contusion of unspecified thumb without damage to nail, initial encounter +S60019D Contusion of unspecified thumb without damage to nail, subsequent encounter +S60019S Contusion of unspecified thumb without damage to nail, sequela +S60021A Contusion of right index finger without damage to nail, initial encounter +S60021D Contusion of right index finger without damage to nail, subsequent encounter +S60021S Contusion of right index finger without damage to nail, sequela +S60022A Contusion of left index finger without damage to nail, initial encounter +S60022D Contusion of left index finger without damage to nail, subsequent encounter +S60022S Contusion of left index finger without damage to nail, sequela +S60029A Contusion of unspecified index finger without damage to nail, initial encounter +S60029D Contusion of unspecified index finger without damage to nail, subsequent encounter +S60029S Contusion of unspecified index finger without damage to nail, sequela +S60031A Contusion of right middle finger without damage to nail, initial encounter +S60031D Contusion of right middle finger without damage to nail, subsequent encounter +S60031S Contusion of right middle finger without damage to nail, sequela +S60032A Contusion of left middle finger without damage to nail, initial encounter +S60032D Contusion of left middle finger without damage to nail, subsequent encounter +S60032S Contusion of left middle finger without damage to nail, sequela +S60039A Contusion of unspecified middle finger without damage to nail, initial encounter +S60039D Contusion of unspecified middle finger without damage to nail, subsequent encounter +S60039S Contusion of unspecified middle finger without damage to nail, sequela +S60041A Contusion of right ring finger without damage to nail, initial encounter +S60041D Contusion of right ring finger without damage to nail, subsequent encounter +S60041S Contusion of right ring finger without damage to nail, sequela +S60042A Contusion of left ring finger without damage to nail, initial encounter +S60042D Contusion of left ring finger without damage to nail, subsequent encounter +S60042S Contusion of left ring finger without damage to nail, sequela +S60049A Contusion of unspecified ring finger without damage to nail, initial encounter +S60049D Contusion of unspecified ring finger without damage to nail, subsequent encounter +S60049S Contusion of unspecified ring finger without damage to nail, sequela +S60051A Contusion of right little finger without damage to nail, initial encounter +S60051D Contusion of right little finger without damage to nail, subsequent encounter +S60051S Contusion of right little finger without damage to nail, sequela +S60052A Contusion of left little finger without damage to nail, initial encounter +S60052D Contusion of left little finger without damage to nail, subsequent encounter +S60052S Contusion of left little finger without damage to nail, sequela +S60059A Contusion of unspecified little finger without damage to nail, initial encounter +S60059D Contusion of unspecified little finger without damage to nail, subsequent encounter +S60059S Contusion of unspecified little finger without damage to nail, sequela +S6010XA Contusion of unspecified finger with damage to nail, initial encounter +S6010XD Contusion of unspecified finger with damage to nail, subsequent encounter +S6010XS Contusion of unspecified finger with damage to nail, sequela +S60111A Contusion of right thumb with damage to nail, initial encounter +S60111D Contusion of right thumb with damage to nail, subsequent encounter +S60111S Contusion of right thumb with damage to nail, sequela +S60112A Contusion of left thumb with damage to nail, initial encounter +S60112D Contusion of left thumb with damage to nail, subsequent encounter +S60112S Contusion of left thumb with damage to nail, sequela +S60119A Contusion of unspecified thumb with damage to nail, initial encounter +S60119D Contusion of unspecified thumb with damage to nail, subsequent encounter +S60119S Contusion of unspecified thumb with damage to nail, sequela +S60121A Contusion of right index finger with damage to nail, initial encounter +S60121D Contusion of right index finger with damage to nail, subsequent encounter +S60121S Contusion of right index finger with damage to nail, sequela +S60122A Contusion of left index finger with damage to nail, initial encounter +S60122D Contusion of left index finger with damage to nail, subsequent encounter +S60122S Contusion of left index finger with damage to nail, sequela +S60129A Contusion of unspecified index finger with damage to nail, initial encounter +S60129D Contusion of unspecified index finger with damage to nail, subsequent encounter +S60129S Contusion of unspecified index finger with damage to nail, sequela +S60131A Contusion of right middle finger with damage to nail, initial encounter +S60131D Contusion of right middle finger with damage to nail, subsequent encounter +S60131S Contusion of right middle finger with damage to nail, sequela +S60132A Contusion of left middle finger with damage to nail, initial encounter +S60132D Contusion of left middle finger with damage to nail, subsequent encounter +S60132S Contusion of left middle finger with damage to nail, sequela +S60139A Contusion of unspecified middle finger with damage to nail, initial encounter +S60139D Contusion of unspecified middle finger with damage to nail, subsequent encounter +S60139S Contusion of unspecified middle finger with damage to nail, sequela +S60141A Contusion of right ring finger with damage to nail, initial encounter +S60141D Contusion of right ring finger with damage to nail, subsequent encounter +S60141S Contusion of right ring finger with damage to nail, sequela +S60142A Contusion of left ring finger with damage to nail, initial encounter +S60142D Contusion of left ring finger with damage to nail, subsequent encounter +S60142S Contusion of left ring finger with damage to nail, sequela +S60149A Contusion of unspecified ring finger with damage to nail, initial encounter +S60149D Contusion of unspecified ring finger with damage to nail, subsequent encounter +S60149S Contusion of unspecified ring finger with damage to nail, sequela +S60151A Contusion of right little finger with damage to nail, initial encounter +S60151D Contusion of right little finger with damage to nail, subsequent encounter +S60151S Contusion of right little finger with damage to nail, sequela +S60152A Contusion of left little finger with damage to nail, initial encounter +S60152D Contusion of left little finger with damage to nail, subsequent encounter +S60152S Contusion of left little finger with damage to nail, sequela +S60159A Contusion of unspecified little finger with damage to nail, initial encounter +S60159D Contusion of unspecified little finger with damage to nail, subsequent encounter +S60159S Contusion of unspecified little finger with damage to nail, sequela +S60211A Contusion of right wrist, initial encounter +S60211D Contusion of right wrist, subsequent encounter +S60211S Contusion of right wrist, sequela +S60212A Contusion of left wrist, initial encounter +S60212D Contusion of left wrist, subsequent encounter +S60212S Contusion of left wrist, sequela +S60219A Contusion of unspecified wrist, initial encounter +S60219D Contusion of unspecified wrist, subsequent encounter +S60219S Contusion of unspecified wrist, sequela +S60221A Contusion of right hand, initial encounter +S60221D Contusion of right hand, subsequent encounter +S60221S Contusion of right hand, sequela +S60222A Contusion of left hand, initial encounter +S60222D Contusion of left hand, subsequent encounter +S60222S Contusion of left hand, sequela +S60229A Contusion of unspecified hand, initial encounter +S60229D Contusion of unspecified hand, subsequent encounter +S60229S Contusion of unspecified hand, sequela +S60311A Abrasion of right thumb, initial encounter +S60311D Abrasion of right thumb, subsequent encounter +S60311S Abrasion of right thumb, sequela +S60312A Abrasion of left thumb, initial encounter +S60312D Abrasion of left thumb, subsequent encounter +S60312S Abrasion of left thumb, sequela +S60319A Abrasion of unspecified thumb, initial encounter +S60319D Abrasion of unspecified thumb, subsequent encounter +S60319S Abrasion of unspecified thumb, sequela +S60321A Blister (nonthermal) of right thumb, initial encounter +S60321D Blister (nonthermal) of right thumb, subsequent encounter +S60321S Blister (nonthermal) of right thumb, sequela +S60322A Blister (nonthermal) of left thumb, initial encounter +S60322D Blister (nonthermal) of left thumb, subsequent encounter +S60322S Blister (nonthermal) of left thumb, sequela +S60329A Blister (nonthermal) of unspecified thumb, initial encounter +S60329D Blister (nonthermal) of unspecified thumb, subsequent encounter +S60329S Blister (nonthermal) of unspecified thumb, sequela +S60341A External constriction of right thumb, initial encounter +S60341D External constriction of right thumb, subsequent encounter +S60341S External constriction of right thumb, sequela +S60342A External constriction of left thumb, initial encounter +S60342D External constriction of left thumb, subsequent encounter +S60342S External constriction of left thumb, sequela +S60349A External constriction of unspecified thumb, initial encounter +S60349D External constriction of unspecified thumb, subsequent encounter +S60349S External constriction of unspecified thumb, sequela +S60351A Superficial foreign body of right thumb, initial encounter +S60351D Superficial foreign body of right thumb, subsequent encounter +S60351S Superficial foreign body of right thumb, sequela +S60352A Superficial foreign body of left thumb, initial encounter +S60352D Superficial foreign body of left thumb, subsequent encounter +S60352S Superficial foreign body of left thumb, sequela +S60359A Superficial foreign body of unspecified thumb, initial encounter +S60359D Superficial foreign body of unspecified thumb, subsequent encounter +S60359S Superficial foreign body of unspecified thumb, sequela +S60361A Insect bite (nonvenomous) of right thumb, initial encounter +S60361D Insect bite (nonvenomous) of right thumb, subsequent encounter +S60361S Insect bite (nonvenomous) of right thumb, sequela +S60362A Insect bite (nonvenomous) of left thumb, initial encounter +S60362D Insect bite (nonvenomous) of left thumb, subsequent encounter +S60362S Insect bite (nonvenomous) of left thumb, sequela +S60369A Insect bite (nonvenomous) of unspecified thumb, initial encounter +S60369D Insect bite (nonvenomous) of unspecified thumb, subsequent encounter +S60369S Insect bite (nonvenomous) of unspecified thumb, sequela +S60371A Other superficial bite of right thumb, initial encounter +S60371D Other superficial bite of right thumb, subsequent encounter +S60371S Other superficial bite of right thumb, sequela +S60372A Other superficial bite of left thumb, initial encounter +S60372D Other superficial bite of left thumb, subsequent encounter +S60372S Other superficial bite of left thumb, sequela +S60379A Other superficial bite of unspecified thumb, initial encounter +S60379D Other superficial bite of unspecified thumb, subsequent encounter +S60379S Other superficial bite of unspecified thumb, sequela +S60391A Other superficial injuries of right thumb, initial encounter +S60391D Other superficial injuries of right thumb, subsequent encounter +S60391S Other superficial injuries of right thumb, sequela +S60392A Other superficial injuries of left thumb, initial encounter +S60392D Other superficial injuries of left thumb, subsequent encounter +S60392S Other superficial injuries of left thumb, sequela +S60399A Other superficial injuries of unspecified thumb, initial encounter +S60399D Other superficial injuries of unspecified thumb, subsequent encounter +S60399S Other superficial injuries of unspecified thumb, sequela +S60410A Abrasion of right index finger, initial encounter +S60410D Abrasion of right index finger, subsequent encounter +S60410S Abrasion of right index finger, sequela +S60411A Abrasion of left index finger, initial encounter +S60411D Abrasion of left index finger, subsequent encounter +S60411S Abrasion of left index finger, sequela +S60412A Abrasion of right middle finger, initial encounter +S60412D Abrasion of right middle finger, subsequent encounter +S60412S Abrasion of right middle finger, sequela +S60413A Abrasion of left middle finger, initial encounter +S60413D Abrasion of left middle finger, subsequent encounter +S60413S Abrasion of left middle finger, sequela +S60414A Abrasion of right ring finger, initial encounter +S60414D Abrasion of right ring finger, subsequent encounter +S60414S Abrasion of right ring finger, sequela +S60415A Abrasion of left ring finger, initial encounter +S60415D Abrasion of left ring finger, subsequent encounter +S60415S Abrasion of left ring finger, sequela +S60416A Abrasion of right little finger, initial encounter +S60416D Abrasion of right little finger, subsequent encounter +S60416S Abrasion of right little finger, sequela +S60417A Abrasion of left little finger, initial encounter +S60417D Abrasion of left little finger, subsequent encounter +S60417S Abrasion of left little finger, sequela +S60418A Abrasion of other finger, initial encounter +S60418D Abrasion of other finger, subsequent encounter +S60418S Abrasion of other finger, sequela +S60419A Abrasion of unspecified finger, initial encounter +S60419D Abrasion of unspecified finger, subsequent encounter +S60419S Abrasion of unspecified finger, sequela +S60420A Blister (nonthermal) of right index finger, initial encounter +S60420D Blister (nonthermal) of right index finger, subsequent encounter +S60420S Blister (nonthermal) of right index finger, sequela +S60421A Blister (nonthermal) of left index finger, initial encounter +S60421D Blister (nonthermal) of left index finger, subsequent encounter +S60421S Blister (nonthermal) of left index finger, sequela +S60422A Blister (nonthermal) of right middle finger, initial encounter +S60422D Blister (nonthermal) of right middle finger, subsequent encounter +S60422S Blister (nonthermal) of right middle finger, sequela +S60423A Blister (nonthermal) of left middle finger, initial encounter +S60423D Blister (nonthermal) of left middle finger, subsequent encounter +S60423S Blister (nonthermal) of left middle finger, sequela +S60424A Blister (nonthermal) of right ring finger, initial encounter +S60424D Blister (nonthermal) of right ring finger, subsequent encounter +S60424S Blister (nonthermal) of right ring finger, sequela +S60425A Blister (nonthermal) of left ring finger, initial encounter +S60425D Blister (nonthermal) of left ring finger, subsequent encounter +S60425S Blister (nonthermal) of left ring finger, sequela +S60426A Blister (nonthermal) of right little finger, initial encounter +S60426D Blister (nonthermal) of right little finger, subsequent encounter +S60426S Blister (nonthermal) of right little finger, sequela +S60427A Blister (nonthermal) of left little finger, initial encounter +S60427D Blister (nonthermal) of left little finger, subsequent encounter +S60427S Blister (nonthermal) of left little finger, sequela +S60428A Blister (nonthermal) of other finger, initial encounter +S60428D Blister (nonthermal) of other finger, subsequent encounter +S60428S Blister (nonthermal) of other finger, sequela +S60429A Blister (nonthermal) of unspecified finger, initial encounter +S60429D Blister (nonthermal) of unspecified finger, subsequent encounter +S60429S Blister (nonthermal) of unspecified finger, sequela +S60440A External constriction of right index finger, initial encounter +S60440D External constriction of right index finger, subsequent encounter +S60440S External constriction of right index finger, sequela +S60441A External constriction of left index finger, initial encounter +S60441D External constriction of left index finger, subsequent encounter +S60441S External constriction of left index finger, sequela +S60442A External constriction of right middle finger, initial encounter +S60442D External constriction of right middle finger, subsequent encounter +S60442S External constriction of right middle finger, sequela +S60443A External constriction of left middle finger, initial encounter +S60443D External constriction of left middle finger, subsequent encounter +S60443S External constriction of left middle finger, sequela +S60444A External constriction of right ring finger, initial encounter +S60444D External constriction of right ring finger, subsequent encounter +S60444S External constriction of right ring finger, sequela +S60445A External constriction of left ring finger, initial encounter +S60445D External constriction of left ring finger, subsequent encounter +S60445S External constriction of left ring finger, sequela +S60446A External constriction of right little finger, initial encounter +S60446D External constriction of right little finger, subsequent encounter +S60446S External constriction of right little finger, sequela +S60447A External constriction of left little finger, initial encounter +S60447D External constriction of left little finger, subsequent encounter +S60447S External constriction of left little finger, sequela +S60448A External constriction of other finger, initial encounter +S60448D External constriction of other finger, subsequent encounter +S60448S External constriction of other finger, sequela +S60449A External constriction of unspecified finger, initial encounter +S60449D External constriction of unspecified finger, subsequent encounter +S60449S External constriction of unspecified finger, sequela +S60450A Superficial foreign body of right index finger, initial encounter +S60450D Superficial foreign body of right index finger, subsequent encounter +S60450S Superficial foreign body of right index finger, sequela +S60451A Superficial foreign body of left index finger, initial encounter +S60451D Superficial foreign body of left index finger, subsequent encounter +S60451S Superficial foreign body of left index finger, sequela +S60452A Superficial foreign body of right middle finger, initial encounter +S60452D Superficial foreign body of right middle finger, subsequent encounter +S60452S Superficial foreign body of right middle finger, sequela +S60453A Superficial foreign body of left middle finger, initial encounter +S60453D Superficial foreign body of left middle finger, subsequent encounter +S60453S Superficial foreign body of left middle finger, sequela +S60454A Superficial foreign body of right ring finger, initial encounter +S60454D Superficial foreign body of right ring finger, subsequent encounter +S60454S Superficial foreign body of right ring finger, sequela +S60455A Superficial foreign body of left ring finger, initial encounter +S60455D Superficial foreign body of left ring finger, subsequent encounter +S60455S Superficial foreign body of left ring finger, sequela +S60456A Superficial foreign body of right little finger, initial encounter +S60456D Superficial foreign body of right little finger, subsequent encounter +S60456S Superficial foreign body of right little finger, sequela +S60457A Superficial foreign body of left little finger, initial encounter +S60457D Superficial foreign body of left little finger, subsequent encounter +S60457S Superficial foreign body of left little finger, sequela +S60458A Superficial foreign body of other finger, initial encounter +S60458D Superficial foreign body of other finger, subsequent encounter +S60458S Superficial foreign body of other finger, sequela +S60459A Superficial foreign body of unspecified finger, initial encounter +S60459D Superficial foreign body of unspecified finger, subsequent encounter +S60459S Superficial foreign body of unspecified finger, sequela +S60460A Insect bite (nonvenomous) of right index finger, initial encounter +S60460D Insect bite (nonvenomous) of right index finger, subsequent encounter +S60460S Insect bite (nonvenomous) of right index finger, sequela +S60461A Insect bite (nonvenomous) of left index finger, initial encounter +S60461D Insect bite (nonvenomous) of left index finger, subsequent encounter +S60461S Insect bite (nonvenomous) of left index finger, sequela +S60462A Insect bite (nonvenomous) of right middle finger, initial encounter +S60462D Insect bite (nonvenomous) of right middle finger, subsequent encounter +S60462S Insect bite (nonvenomous) of right middle finger, sequela +S60463A Insect bite (nonvenomous) of left middle finger, initial encounter +S60463D Insect bite (nonvenomous) of left middle finger, subsequent encounter +S60463S Insect bite (nonvenomous) of left middle finger, sequela +S60464A Insect bite (nonvenomous) of right ring finger, initial encounter +S60464D Insect bite (nonvenomous) of right ring finger, subsequent encounter +S60464S Insect bite (nonvenomous) of right ring finger, sequela +S60465A Insect bite (nonvenomous) of left ring finger, initial encounter +S60465D Insect bite (nonvenomous) of left ring finger, subsequent encounter +S60465S Insect bite (nonvenomous) of left ring finger, sequela +S60466A Insect bite (nonvenomous) of right little finger, initial encounter +S60466D Insect bite (nonvenomous) of right little finger, subsequent encounter +S60466S Insect bite (nonvenomous) of right little finger, sequela +S60467A Insect bite (nonvenomous) of left little finger, initial encounter +S60467D Insect bite (nonvenomous) of left little finger, subsequent encounter +S60467S Insect bite (nonvenomous) of left little finger, sequela +S60468A Insect bite (nonvenomous) of other finger, initial encounter +S60468D Insect bite (nonvenomous) of other finger, subsequent encounter +S60468S Insect bite (nonvenomous) of other finger, sequela +S60469A Insect bite (nonvenomous) of unspecified finger, initial encounter +S60469D Insect bite (nonvenomous) of unspecified finger, subsequent encounter +S60469S Insect bite (nonvenomous) of unspecified finger, sequela +S60470A Other superficial bite of right index finger, initial encounter +S60470D Other superficial bite of right index finger, subsequent encounter +S60470S Other superficial bite of right index finger, sequela +S60471A Other superficial bite of left index finger, initial encounter +S60471D Other superficial bite of left index finger, subsequent encounter +S60471S Other superficial bite of left index finger, sequela +S60472A Other superficial bite of right middle finger, initial encounter +S60472D Other superficial bite of right middle finger, subsequent encounter +S60472S Other superficial bite of right middle finger, sequela +S60473A Other superficial bite of left middle finger, initial encounter +S60473D Other superficial bite of left middle finger, subsequent encounter +S60473S Other superficial bite of left middle finger, sequela +S60474A Other superficial bite of right ring finger, initial encounter +S60474D Other superficial bite of right ring finger, subsequent encounter +S60474S Other superficial bite of right ring finger, sequela +S60475A Other superficial bite of left ring finger, initial encounter +S60475D Other superficial bite of left ring finger, subsequent encounter +S60475S Other superficial bite of left ring finger, sequela +S60476A Other superficial bite of right little finger, initial encounter +S60476D Other superficial bite of right little finger, subsequent encounter +S60476S Other superficial bite of right little finger, sequela +S60477A Other superficial bite of left little finger, initial encounter +S60477D Other superficial bite of left little finger, subsequent encounter +S60477S Other superficial bite of left little finger, sequela +S60478A Other superficial bite of other finger, initial encounter +S60478D Other superficial bite of other finger, subsequent encounter +S60478S Other superficial bite of other finger, sequela +S60479A Other superficial bite of unspecified finger, initial encounter +S60479D Other superficial bite of unspecified finger, subsequent encounter +S60479S Other superficial bite of unspecified finger, sequela +S60511A Abrasion of right hand, initial encounter +S60511D Abrasion of right hand, subsequent encounter +S60511S Abrasion of right hand, sequela +S60512A Abrasion of left hand, initial encounter +S60512D Abrasion of left hand, subsequent encounter +S60512S Abrasion of left hand, sequela +S60519A Abrasion of unspecified hand, initial encounter +S60519D Abrasion of unspecified hand, subsequent encounter +S60519S Abrasion of unspecified hand, sequela +S60521A Blister (nonthermal) of right hand, initial encounter +S60521D Blister (nonthermal) of right hand, subsequent encounter +S60521S Blister (nonthermal) of right hand, sequela +S60522A Blister (nonthermal) of left hand, initial encounter +S60522D Blister (nonthermal) of left hand, subsequent encounter +S60522S Blister (nonthermal) of left hand, sequela +S60529A Blister (nonthermal) of unspecified hand, initial encounter +S60529D Blister (nonthermal) of unspecified hand, subsequent encounter +S60529S Blister (nonthermal) of unspecified hand, sequela +S60541A External constriction of right hand, initial encounter +S60541D External constriction of right hand, subsequent encounter +S60541S External constriction of right hand, sequela +S60542A External constriction of left hand, initial encounter +S60542D External constriction of left hand, subsequent encounter +S60542S External constriction of left hand, sequela +S60549A External constriction of unspecified hand, initial encounter +S60549D External constriction of unspecified hand, subsequent encounter +S60549S External constriction of unspecified hand, sequela +S60551A Superficial foreign body of right hand, initial encounter +S60551D Superficial foreign body of right hand, subsequent encounter +S60551S Superficial foreign body of right hand, sequela +S60552A Superficial foreign body of left hand, initial encounter +S60552D Superficial foreign body of left hand, subsequent encounter +S60552S Superficial foreign body of left hand, sequela +S60559A Superficial foreign body of unspecified hand, initial encounter +S60559D Superficial foreign body of unspecified hand, subsequent encounter +S60559S Superficial foreign body of unspecified hand, sequela +S60561A Insect bite (nonvenomous) of right hand, initial encounter +S60561D Insect bite (nonvenomous) of right hand, subsequent encounter +S60561S Insect bite (nonvenomous) of right hand, sequela +S60562A Insect bite (nonvenomous) of left hand, initial encounter +S60562D Insect bite (nonvenomous) of left hand, subsequent encounter +S60562S Insect bite (nonvenomous) of left hand, sequela +S60569A Insect bite (nonvenomous) of unspecified hand, initial encounter +S60569D Insect bite (nonvenomous) of unspecified hand, subsequent encounter +S60569S Insect bite (nonvenomous) of unspecified hand, sequela +S60571A Other superficial bite of hand of right hand, initial encounter +S60571D Other superficial bite of hand of right hand, subsequent encounter +S60571S Other superficial bite of hand of right hand, sequela +S60572A Other superficial bite of hand of left hand, initial encounter +S60572D Other superficial bite of hand of left hand, subsequent encounter +S60572S Other superficial bite of hand of left hand, sequela +S60579A Other superficial bite of hand of unspecified hand, initial encounter +S60579D Other superficial bite of hand of unspecified hand, subsequent encounter +S60579S Other superficial bite of hand of unspecified hand, sequela +S60811A Abrasion of right wrist, initial encounter +S60811D Abrasion of right wrist, subsequent encounter +S60811S Abrasion of right wrist, sequela +S60812A Abrasion of left wrist, initial encounter +S60812D Abrasion of left wrist, subsequent encounter +S60812S Abrasion of left wrist, sequela +S60819A Abrasion of unspecified wrist, initial encounter +S60819D Abrasion of unspecified wrist, subsequent encounter +S60819S Abrasion of unspecified wrist, sequela +S60821A Blister (nonthermal) of right wrist, initial encounter +S60821D Blister (nonthermal) of right wrist, subsequent encounter +S60821S Blister (nonthermal) of right wrist, sequela +S60822A Blister (nonthermal) of left wrist, initial encounter +S60822D Blister (nonthermal) of left wrist, subsequent encounter +S60822S Blister (nonthermal) of left wrist, sequela +S60829A Blister (nonthermal) of unspecified wrist, initial encounter +S60829D Blister (nonthermal) of unspecified wrist, subsequent encounter +S60829S Blister (nonthermal) of unspecified wrist, sequela +S60841A External constriction of right wrist, initial encounter +S60841D External constriction of right wrist, subsequent encounter +S60841S External constriction of right wrist, sequela +S60842A External constriction of left wrist, initial encounter +S60842D External constriction of left wrist, subsequent encounter +S60842S External constriction of left wrist, sequela +S60849A External constriction of unspecified wrist, initial encounter +S60849D External constriction of unspecified wrist, subsequent encounter +S60849S External constriction of unspecified wrist, sequela +S60851A Superficial foreign body of right wrist, initial encounter +S60851D Superficial foreign body of right wrist, subsequent encounter +S60851S Superficial foreign body of right wrist, sequela +S60852A Superficial foreign body of left wrist, initial encounter +S60852D Superficial foreign body of left wrist, subsequent encounter +S60852S Superficial foreign body of left wrist, sequela +S60859A Superficial foreign body of unspecified wrist, initial encounter +S60859D Superficial foreign body of unspecified wrist, subsequent encounter +S60859S Superficial foreign body of unspecified wrist, sequela +S60861A Insect bite (nonvenomous) of right wrist, initial encounter +S60861D Insect bite (nonvenomous) of right wrist, subsequent encounter +S60861S Insect bite (nonvenomous) of right wrist, sequela +S60862A Insect bite (nonvenomous) of left wrist, initial encounter +S60862D Insect bite (nonvenomous) of left wrist, subsequent encounter +S60862S Insect bite (nonvenomous) of left wrist, sequela +S60869A Insect bite (nonvenomous) of unspecified wrist, initial encounter +S60869D Insect bite (nonvenomous) of unspecified wrist, subsequent encounter +S60869S Insect bite (nonvenomous) of unspecified wrist, sequela +S60871A Other superficial bite of right wrist, initial encounter +S60871D Other superficial bite of right wrist, subsequent encounter +S60871S Other superficial bite of right wrist, sequela +S60872A Other superficial bite of left wrist, initial encounter +S60872D Other superficial bite of left wrist, subsequent encounter +S60872S Other superficial bite of left wrist, sequela +S60879A Other superficial bite of unspecified wrist, initial encounter +S60879D Other superficial bite of unspecified wrist, subsequent encounter +S60879S Other superficial bite of unspecified wrist, sequela +S60911A Unspecified superficial injury of right wrist, initial encounter +S60911D Unspecified superficial injury of right wrist, subsequent encounter +S60911S Unspecified superficial injury of right wrist, sequela +S60912A Unspecified superficial injury of left wrist, initial encounter +S60912D Unspecified superficial injury of left wrist, subsequent encounter +S60912S Unspecified superficial injury of left wrist, sequela +S60919A Unspecified superficial injury of unspecified wrist, initial encounter +S60919D Unspecified superficial injury of unspecified wrist, subsequent encounter +S60919S Unspecified superficial injury of unspecified wrist, sequela +S60921A Unspecified superficial injury of right hand, initial encounter +S60921D Unspecified superficial injury of right hand, subsequent encounter +S60921S Unspecified superficial injury of right hand, sequela +S60922A Unspecified superficial injury of left hand, initial encounter +S60922D Unspecified superficial injury of left hand, subsequent encounter +S60922S Unspecified superficial injury of left hand, sequela +S60929A Unspecified superficial injury of unspecified hand, initial encounter +S60929D Unspecified superficial injury of unspecified hand, subsequent encounter +S60929S Unspecified superficial injury of unspecified hand, sequela +S60931A Unspecified superficial injury of right thumb, initial encounter +S60931D Unspecified superficial injury of right thumb, subsequent encounter +S60931S Unspecified superficial injury of right thumb, sequela +S60932A Unspecified superficial injury of left thumb, initial encounter +S60932D Unspecified superficial injury of left thumb, subsequent encounter +S60932S Unspecified superficial injury of left thumb, sequela +S60939A Unspecified superficial injury of unspecified thumb, initial encounter +S60939D Unspecified superficial injury of unspecified thumb, subsequent encounter +S60939S Unspecified superficial injury of unspecified thumb, sequela +S60940A Unspecified superficial injury of right index finger, initial encounter +S60940D Unspecified superficial injury of right index finger, subsequent encounter +S60940S Unspecified superficial injury of right index finger, sequela +S60941A Unspecified superficial injury of left index finger, initial encounter +S60941D Unspecified superficial injury of left index finger, subsequent encounter +S60941S Unspecified superficial injury of left index finger, sequela +S60942A Unspecified superficial injury of right middle finger, initial encounter +S60942D Unspecified superficial injury of right middle finger, subsequent encounter +S60942S Unspecified superficial injury of right middle finger, sequela +S60943A Unspecified superficial injury of left middle finger, initial encounter +S60943D Unspecified superficial injury of left middle finger, subsequent encounter +S60943S Unspecified superficial injury of left middle finger, sequela +S60944A Unspecified superficial injury of right ring finger, initial encounter +S60944D Unspecified superficial injury of right ring finger, subsequent encounter +S60944S Unspecified superficial injury of right ring finger, sequela +S60945A Unspecified superficial injury of left ring finger, initial encounter +S60945D Unspecified superficial injury of left ring finger, subsequent encounter +S60945S Unspecified superficial injury of left ring finger, sequela +S60946A Unspecified superficial injury of right little finger, initial encounter +S60946D Unspecified superficial injury of right little finger, subsequent encounter +S60946S Unspecified superficial injury of right little finger, sequela +S60947A Unspecified superficial injury of left little finger, initial encounter +S60947D Unspecified superficial injury of left little finger, subsequent encounter +S60947S Unspecified superficial injury of left little finger, sequela +S60948A Unspecified superficial injury of other finger, initial encounter +S60948D Unspecified superficial injury of other finger, subsequent encounter +S60948S Unspecified superficial injury of other finger, sequela +S60949A Unspecified superficial injury of unspecified finger, initial encounter +S60949D Unspecified superficial injury of unspecified finger, subsequent encounter +S60949S Unspecified superficial injury of unspecified finger, sequela +S61001A Unspecified open wound of right thumb without damage to nail, initial encounter +S61001D Unspecified open wound of right thumb without damage to nail, subsequent encounter +S61001S Unspecified open wound of right thumb without damage to nail, sequela +S61002A Unspecified open wound of left thumb without damage to nail, initial encounter +S61002D Unspecified open wound of left thumb without damage to nail, subsequent encounter +S61002S Unspecified open wound of left thumb without damage to nail, sequela +S61009A Unspecified open wound of unspecified thumb without damage to nail, initial encounter +S61009D Unspecified open wound of unspecified thumb without damage to nail, subsequent encounter +S61009S Unspecified open wound of unspecified thumb without damage to nail, sequela +S61011A Laceration without foreign body of right thumb without damage to nail, initial encounter +S61011D Laceration without foreign body of right thumb without damage to nail, subsequent encounter +S61011S Laceration without foreign body of right thumb without damage to nail, sequela +S61012A Laceration without foreign body of left thumb without damage to nail, initial encounter +S61012D Laceration without foreign body of left thumb without damage to nail, subsequent encounter +S61012S Laceration without foreign body of left thumb without damage to nail, sequela +S61019A Laceration without foreign body of unspecified thumb without damage to nail, initial encounter +S61019D Laceration without foreign body of unspecified thumb without damage to nail, subsequent encounter +S61019S Laceration without foreign body of unspecified thumb without damage to nail, sequela +S61021A Laceration with foreign body of right thumb without damage to nail, initial encounter +S61021D Laceration with foreign body of right thumb without damage to nail, subsequent encounter +S61021S Laceration with foreign body of right thumb without damage to nail, sequela +S61022A Laceration with foreign body of left thumb without damage to nail, initial encounter +S61022D Laceration with foreign body of left thumb without damage to nail, subsequent encounter +S61022S Laceration with foreign body of left thumb without damage to nail, sequela +S61029A Laceration with foreign body of unspecified thumb without damage to nail, initial encounter +S61029D Laceration with foreign body of unspecified thumb without damage to nail, subsequent encounter +S61029S Laceration with foreign body of unspecified thumb without damage to nail, sequela +S61031A Puncture wound without foreign body of right thumb without damage to nail, initial encounter +S61031D Puncture wound without foreign body of right thumb without damage to nail, subsequent encounter +S61031S Puncture wound without foreign body of right thumb without damage to nail, sequela +S61032A Puncture wound without foreign body of left thumb without damage to nail, initial encounter +S61032D Puncture wound without foreign body of left thumb without damage to nail, subsequent encounter +S61032S Puncture wound without foreign body of left thumb without damage to nail, sequela +S61039A Puncture wound without foreign body of unspecified thumb without damage to nail, initial encounter +S61039D Puncture wound without foreign body of unspecified thumb without damage to nail, subsequent encounter +S61039S Puncture wound without foreign body of unspecified thumb without damage to nail, sequela +S61041A Puncture wound with foreign body of right thumb without damage to nail, initial encounter +S61041D Puncture wound with foreign body of right thumb without damage to nail, subsequent encounter +S61041S Puncture wound with foreign body of right thumb without damage to nail, sequela +S61042A Puncture wound with foreign body of left thumb without damage to nail, initial encounter +S61042D Puncture wound with foreign body of left thumb without damage to nail, subsequent encounter +S61042S Puncture wound with foreign body of left thumb without damage to nail, sequela +S61049A Puncture wound with foreign body of unspecified thumb without damage to nail, initial encounter +S61049D Puncture wound with foreign body of unspecified thumb without damage to nail, subsequent encounter +S61049S Puncture wound with foreign body of unspecified thumb without damage to nail, sequela +S61051A Open bite of right thumb without damage to nail, initial encounter +S61051D Open bite of right thumb without damage to nail, subsequent encounter +S61051S Open bite of right thumb without damage to nail, sequela +S61052A Open bite of left thumb without damage to nail, initial encounter +S61052D Open bite of left thumb without damage to nail, subsequent encounter +S61052S Open bite of left thumb without damage to nail, sequela +S61059A Open bite of unspecified thumb without damage to nail, initial encounter +S61059D Open bite of unspecified thumb without damage to nail, subsequent encounter +S61059S Open bite of unspecified thumb without damage to nail, sequela +S61101A Unspecified open wound of right thumb with damage to nail, initial encounter +S61101D Unspecified open wound of right thumb with damage to nail, subsequent encounter +S61101S Unspecified open wound of right thumb with damage to nail, sequela +S61102A Unspecified open wound of left thumb with damage to nail, initial encounter +S61102D Unspecified open wound of left thumb with damage to nail, subsequent encounter +S61102S Unspecified open wound of left thumb with damage to nail, sequela +S61109A Unspecified open wound of unspecified thumb with damage to nail, initial encounter +S61109D Unspecified open wound of unspecified thumb with damage to nail, subsequent encounter +S61109S Unspecified open wound of unspecified thumb with damage to nail, sequela +S61111A Laceration without foreign body of right thumb with damage to nail, initial encounter +S61111D Laceration without foreign body of right thumb with damage to nail, subsequent encounter +S61111S Laceration without foreign body of right thumb with damage to nail, sequela +S61112A Laceration without foreign body of left thumb with damage to nail, initial encounter +S61112D Laceration without foreign body of left thumb with damage to nail, subsequent encounter +S61112S Laceration without foreign body of left thumb with damage to nail, sequela +S61119A Laceration without foreign body of unspecified thumb with damage to nail, initial encounter +S61119D Laceration without foreign body of unspecified thumb with damage to nail, subsequent encounter +S61119S Laceration without foreign body of unspecified thumb with damage to nail, sequela +S61121A Laceration with foreign body of right thumb with damage to nail, initial encounter +S61121D Laceration with foreign body of right thumb with damage to nail, subsequent encounter +S61121S Laceration with foreign body of right thumb with damage to nail, sequela +S61122A Laceration with foreign body of left thumb with damage to nail, initial encounter +S61122D Laceration with foreign body of left thumb with damage to nail, subsequent encounter +S61122S Laceration with foreign body of left thumb with damage to nail, sequela +S61129A Laceration with foreign body of unspecified thumb with damage to nail, initial encounter +S61129D Laceration with foreign body of unspecified thumb with damage to nail, subsequent encounter +S61129S Laceration with foreign body of unspecified thumb with damage to nail, sequela +S61131A Puncture wound without foreign body of right thumb with damage to nail, initial encounter +S61131D Puncture wound without foreign body of right thumb with damage to nail, subsequent encounter +S61131S Puncture wound without foreign body of right thumb with damage to nail, sequela +S61132A Puncture wound without foreign body of left thumb with damage to nail, initial encounter +S61132D Puncture wound without foreign body of left thumb with damage to nail, subsequent encounter +S61132S Puncture wound without foreign body of left thumb with damage to nail, sequela +S61139A Puncture wound without foreign body of unspecified thumb with damage to nail, initial encounter +S61139D Puncture wound without foreign body of unspecified thumb with damage to nail, subsequent encounter +S61139S Puncture wound without foreign body of unspecified thumb with damage to nail, sequela +S61141A Puncture wound with foreign body of right thumb with damage to nail, initial encounter +S61141D Puncture wound with foreign body of right thumb with damage to nail, subsequent encounter +S61141S Puncture wound with foreign body of right thumb with damage to nail, sequela +S61142A Puncture wound with foreign body of left thumb with damage to nail, initial encounter +S61142D Puncture wound with foreign body of left thumb with damage to nail, subsequent encounter +S61142S Puncture wound with foreign body of left thumb with damage to nail, sequela +S61149A Puncture wound with foreign body of unspecified thumb with damage to nail, initial encounter +S61149D Puncture wound with foreign body of unspecified thumb with damage to nail, subsequent encounter +S61149S Puncture wound with foreign body of unspecified thumb with damage to nail, sequela +S61151A Open bite of right thumb with damage to nail, initial encounter +S61151D Open bite of right thumb with damage to nail, subsequent encounter +S61151S Open bite of right thumb with damage to nail, sequela +S61152A Open bite of left thumb with damage to nail, initial encounter +S61152D Open bite of left thumb with damage to nail, subsequent encounter +S61152S Open bite of left thumb with damage to nail, sequela +S61159A Open bite of unspecified thumb with damage to nail, initial encounter +S61159D Open bite of unspecified thumb with damage to nail, subsequent encounter +S61159S Open bite of unspecified thumb with damage to nail, sequela +S61200A Unspecified open wound of right index finger without damage to nail, initial encounter +S61200D Unspecified open wound of right index finger without damage to nail, subsequent encounter +S61200S Unspecified open wound of right index finger without damage to nail, sequela +S61201A Unspecified open wound of left index finger without damage to nail, initial encounter +S61201D Unspecified open wound of left index finger without damage to nail, subsequent encounter +S61201S Unspecified open wound of left index finger without damage to nail, sequela +S61202A Unspecified open wound of right middle finger without damage to nail, initial encounter +S61202D Unspecified open wound of right middle finger without damage to nail, subsequent encounter +S61202S Unspecified open wound of right middle finger without damage to nail, sequela +S61203A Unspecified open wound of left middle finger without damage to nail, initial encounter +S61203D Unspecified open wound of left middle finger without damage to nail, subsequent encounter +S61203S Unspecified open wound of left middle finger without damage to nail, sequela +S61204A Unspecified open wound of right ring finger without damage to nail, initial encounter +S61204D Unspecified open wound of right ring finger without damage to nail, subsequent encounter +S61204S Unspecified open wound of right ring finger without damage to nail, sequela +S61205A Unspecified open wound of left ring finger without damage to nail, initial encounter +S61205D Unspecified open wound of left ring finger without damage to nail, subsequent encounter +S61205S Unspecified open wound of left ring finger without damage to nail, sequela +S61206A Unspecified open wound of right little finger without damage to nail, initial encounter +S61206D Unspecified open wound of right little finger without damage to nail, subsequent encounter +S61206S Unspecified open wound of right little finger without damage to nail, sequela +S61207A Unspecified open wound of left little finger without damage to nail, initial encounter +S61207D Unspecified open wound of left little finger without damage to nail, subsequent encounter +S61207S Unspecified open wound of left little finger without damage to nail, sequela +S61208A Unspecified open wound of other finger without damage to nail, initial encounter +S61208D Unspecified open wound of other finger without damage to nail, subsequent encounter +S61208S Unspecified open wound of other finger without damage to nail, sequela +S61209A Unspecified open wound of unspecified finger without damage to nail, initial encounter +S61209D Unspecified open wound of unspecified finger without damage to nail, subsequent encounter +S61209S Unspecified open wound of unspecified finger without damage to nail, sequela +S61210A Laceration without foreign body of right index finger without damage to nail, initial encounter +S61210D Laceration without foreign body of right index finger without damage to nail, subsequent encounter +S61210S Laceration without foreign body of right index finger without damage to nail, sequela +S61211A Laceration without foreign body of left index finger without damage to nail, initial encounter +S61211D Laceration without foreign body of left index finger without damage to nail, subsequent encounter +S61211S Laceration without foreign body of left index finger without damage to nail, sequela +S61212A Laceration without foreign body of right middle finger without damage to nail, initial encounter +S61212D Laceration without foreign body of right middle finger without damage to nail, subsequent encounter +S61212S Laceration without foreign body of right middle finger without damage to nail, sequela +S61213A Laceration without foreign body of left middle finger without damage to nail, initial encounter +S61213D Laceration without foreign body of left middle finger without damage to nail, subsequent encounter +S61213S Laceration without foreign body of left middle finger without damage to nail, sequela +S61214A Laceration without foreign body of right ring finger without damage to nail, initial encounter +S61214D Laceration without foreign body of right ring finger without damage to nail, subsequent encounter +S61214S Laceration without foreign body of right ring finger without damage to nail, sequela +S61215A Laceration without foreign body of left ring finger without damage to nail, initial encounter +S61215D Laceration without foreign body of left ring finger without damage to nail, subsequent encounter +S61215S Laceration without foreign body of left ring finger without damage to nail, sequela +S61216A Laceration without foreign body of right little finger without damage to nail, initial encounter +S61216D Laceration without foreign body of right little finger without damage to nail, subsequent encounter +S61216S Laceration without foreign body of right little finger without damage to nail, sequela +S61217A Laceration without foreign body of left little finger without damage to nail, initial encounter +S61217D Laceration without foreign body of left little finger without damage to nail, subsequent encounter +S61217S Laceration without foreign body of left little finger without damage to nail, sequela +S61218A Laceration without foreign body of other finger without damage to nail, initial encounter +S61218D Laceration without foreign body of other finger without damage to nail, subsequent encounter +S61218S Laceration without foreign body of other finger without damage to nail, sequela +S61219A Laceration without foreign body of unspecified finger without damage to nail, initial encounter +S61219D Laceration without foreign body of unspecified finger without damage to nail, subsequent encounter +S61219S Laceration without foreign body of unspecified finger without damage to nail, sequela +S61220A Laceration with foreign body of right index finger without damage to nail, initial encounter +S61220D Laceration with foreign body of right index finger without damage to nail, subsequent encounter +S61220S Laceration with foreign body of right index finger without damage to nail, sequela +S61221A Laceration with foreign body of left index finger without damage to nail, initial encounter +S61221D Laceration with foreign body of left index finger without damage to nail, subsequent encounter +S61221S Laceration with foreign body of left index finger without damage to nail, sequela +S61222A Laceration with foreign body of right middle finger without damage to nail, initial encounter +S61222D Laceration with foreign body of right middle finger without damage to nail, subsequent encounter +S61222S Laceration with foreign body of right middle finger without damage to nail, sequela +S61223A Laceration with foreign body of left middle finger without damage to nail, initial encounter +S61223D Laceration with foreign body of left middle finger without damage to nail, subsequent encounter +S61223S Laceration with foreign body of left middle finger without damage to nail, sequela +S61224A Laceration with foreign body of right ring finger without damage to nail, initial encounter +S61224D Laceration with foreign body of right ring finger without damage to nail, subsequent encounter +S61224S Laceration with foreign body of right ring finger without damage to nail, sequela +S61225A Laceration with foreign body of left ring finger without damage to nail, initial encounter +S61225D Laceration with foreign body of left ring finger without damage to nail, subsequent encounter +S61225S Laceration with foreign body of left ring finger without damage to nail, sequela +S61226A Laceration with foreign body of right little finger without damage to nail, initial encounter +S61226D Laceration with foreign body of right little finger without damage to nail, subsequent encounter +S61226S Laceration with foreign body of right little finger without damage to nail, sequela +S61227A Laceration with foreign body of left little finger without damage to nail, initial encounter +S61227D Laceration with foreign body of left little finger without damage to nail, subsequent encounter +S61227S Laceration with foreign body of left little finger without damage to nail, sequela +S61228A Laceration with foreign body of other finger without damage to nail, initial encounter +S61228D Laceration with foreign body of other finger without damage to nail, subsequent encounter +S61228S Laceration with foreign body of other finger without damage to nail, sequela +S61229A Laceration with foreign body of unspecified finger without damage to nail, initial encounter +S61229D Laceration with foreign body of unspecified finger without damage to nail, subsequent encounter +S61229S Laceration with foreign body of unspecified finger without damage to nail, sequela +S61230A Puncture wound without foreign body of right index finger without damage to nail, initial encounter +S61230D Puncture wound without foreign body of right index finger without damage to nail, subsequent encounter +S61230S Puncture wound without foreign body of right index finger without damage to nail, sequela +S61231A Puncture wound without foreign body of left index finger without damage to nail, initial encounter +S61231D Puncture wound without foreign body of left index finger without damage to nail, subsequent encounter +S61231S Puncture wound without foreign body of left index finger without damage to nail, sequela +S61232A Puncture wound without foreign body of right middle finger without damage to nail, initial encounter +S61232D Puncture wound without foreign body of right middle finger without damage to nail, subsequent encounter +S61232S Puncture wound without foreign body of right middle finger without damage to nail, sequela +S61233A Puncture wound without foreign body of left middle finger without damage to nail, initial encounter +S61233D Puncture wound without foreign body of left middle finger without damage to nail, subsequent encounter +S61233S Puncture wound without foreign body of left middle finger without damage to nail, sequela +S61234A Puncture wound without foreign body of right ring finger without damage to nail, initial encounter +S61234D Puncture wound without foreign body of right ring finger without damage to nail, subsequent encounter +S61234S Puncture wound without foreign body of right ring finger without damage to nail, sequela +S61235A Puncture wound without foreign body of left ring finger without damage to nail, initial encounter +S61235D Puncture wound without foreign body of left ring finger without damage to nail, subsequent encounter +S61235S Puncture wound without foreign body of left ring finger without damage to nail, sequela +S61236A Puncture wound without foreign body of right little finger without damage to nail, initial encounter +S61236D Puncture wound without foreign body of right little finger without damage to nail, subsequent encounter +S61236S Puncture wound without foreign body of right little finger without damage to nail, sequela +S61237A Puncture wound without foreign body of left little finger without damage to nail, initial encounter +S61237D Puncture wound without foreign body of left little finger without damage to nail, subsequent encounter +S61237S Puncture wound without foreign body of left little finger without damage to nail, sequela +S61238A Puncture wound without foreign body of other finger without damage to nail, initial encounter +S61238D Puncture wound without foreign body of other finger without damage to nail, subsequent encounter +S61238S Puncture wound without foreign body of other finger without damage to nail, sequela +S61239A Puncture wound without foreign body of unspecified finger without damage to nail, initial encounter +S61239D Puncture wound without foreign body of unspecified finger without damage to nail, subsequent encounter +S61239S Puncture wound without foreign body of unspecified finger without damage to nail, sequela +S61240A Puncture wound with foreign body of right index finger without damage to nail, initial encounter +S61240D Puncture wound with foreign body of right index finger without damage to nail, subsequent encounter +S61240S Puncture wound with foreign body of right index finger without damage to nail, sequela +S61241A Puncture wound with foreign body of left index finger without damage to nail, initial encounter +S61241D Puncture wound with foreign body of left index finger without damage to nail, subsequent encounter +S61241S Puncture wound with foreign body of left index finger without damage to nail, sequela +S61242A Puncture wound with foreign body of right middle finger without damage to nail, initial encounter +S61242D Puncture wound with foreign body of right middle finger without damage to nail, subsequent encounter +S61242S Puncture wound with foreign body of right middle finger without damage to nail, sequela +S61243A Puncture wound with foreign body of left middle finger without damage to nail, initial encounter +S61243D Puncture wound with foreign body of left middle finger without damage to nail, subsequent encounter +S61243S Puncture wound with foreign body of left middle finger without damage to nail, sequela +S61244A Puncture wound with foreign body of right ring finger without damage to nail, initial encounter +S61244D Puncture wound with foreign body of right ring finger without damage to nail, subsequent encounter +S61244S Puncture wound with foreign body of right ring finger without damage to nail, sequela +S61245A Puncture wound with foreign body of left ring finger without damage to nail, initial encounter +S61245D Puncture wound with foreign body of left ring finger without damage to nail, subsequent encounter +S61245S Puncture wound with foreign body of left ring finger without damage to nail, sequela +S61246A Puncture wound with foreign body of right little finger without damage to nail, initial encounter +S61246D Puncture wound with foreign body of right little finger without damage to nail, subsequent encounter +S61246S Puncture wound with foreign body of right little finger without damage to nail, sequela +S61247A Puncture wound with foreign body of left little finger without damage to nail, initial encounter +S61247D Puncture wound with foreign body of left little finger without damage to nail, subsequent encounter +S61247S Puncture wound with foreign body of left little finger without damage to nail, sequela +S61248A Puncture wound with foreign body of other finger without damage to nail, initial encounter +S61248D Puncture wound with foreign body of other finger without damage to nail, subsequent encounter +S61248S Puncture wound with foreign body of other finger without damage to nail, sequela +S61249A Puncture wound with foreign body of unspecified finger without damage to nail, initial encounter +S61249D Puncture wound with foreign body of unspecified finger without damage to nail, subsequent encounter +S61249S Puncture wound with foreign body of unspecified finger without damage to nail, sequela +S61250A Open bite of right index finger without damage to nail, initial encounter +S61250D Open bite of right index finger without damage to nail, subsequent encounter +S61250S Open bite of right index finger without damage to nail, sequela +S61251A Open bite of left index finger without damage to nail, initial encounter +S61251D Open bite of left index finger without damage to nail, subsequent encounter +S61251S Open bite of left index finger without damage to nail, sequela +S61252A Open bite of right middle finger without damage to nail, initial encounter +S61252D Open bite of right middle finger without damage to nail, subsequent encounter +S61252S Open bite of right middle finger without damage to nail, sequela +S61253A Open bite of left middle finger without damage to nail, initial encounter +S61253D Open bite of left middle finger without damage to nail, subsequent encounter +S61253S Open bite of left middle finger without damage to nail, sequela +S61254A Open bite of right ring finger without damage to nail, initial encounter +S61254D Open bite of right ring finger without damage to nail, subsequent encounter +S61254S Open bite of right ring finger without damage to nail, sequela +S61255A Open bite of left ring finger without damage to nail, initial encounter +S61255D Open bite of left ring finger without damage to nail, subsequent encounter +S61255S Open bite of left ring finger without damage to nail, sequela +S61256A Open bite of right little finger without damage to nail, initial encounter +S61256D Open bite of right little finger without damage to nail, subsequent encounter +S61256S Open bite of right little finger without damage to nail, sequela +S61257A Open bite of left little finger without damage to nail, initial encounter +S61257D Open bite of left little finger without damage to nail, subsequent encounter +S61257S Open bite of left little finger without damage to nail, sequela +S61258A Open bite of other finger without damage to nail, initial encounter +S61258D Open bite of other finger without damage to nail, subsequent encounter +S61258S Open bite of other finger without damage to nail, sequela +S61259A Open bite of unspecified finger without damage to nail, initial encounter +S61259D Open bite of unspecified finger without damage to nail, subsequent encounter +S61259S Open bite of unspecified finger without damage to nail, sequela +S61300A Unspecified open wound of right index finger with damage to nail, initial encounter +S61300D Unspecified open wound of right index finger with damage to nail, subsequent encounter +S61300S Unspecified open wound of right index finger with damage to nail, sequela +S61301A Unspecified open wound of left index finger with damage to nail, initial encounter +S61301D Unspecified open wound of left index finger with damage to nail, subsequent encounter +S61301S Unspecified open wound of left index finger with damage to nail, sequela +S61302A Unspecified open wound of right middle finger with damage to nail, initial encounter +S61302D Unspecified open wound of right middle finger with damage to nail, subsequent encounter +S61302S Unspecified open wound of right middle finger with damage to nail, sequela +S61303A Unspecified open wound of left middle finger with damage to nail, initial encounter +S61303D Unspecified open wound of left middle finger with damage to nail, subsequent encounter +S61303S Unspecified open wound of left middle finger with damage to nail, sequela +S61304A Unspecified open wound of right ring finger with damage to nail, initial encounter +S61304D Unspecified open wound of right ring finger with damage to nail, subsequent encounter +S61304S Unspecified open wound of right ring finger with damage to nail, sequela +S61305A Unspecified open wound of left ring finger with damage to nail, initial encounter +S61305D Unspecified open wound of left ring finger with damage to nail, subsequent encounter +S61305S Unspecified open wound of left ring finger with damage to nail, sequela +S61306A Unspecified open wound of right little finger with damage to nail, initial encounter +S61306D Unspecified open wound of right little finger with damage to nail, subsequent encounter +S61306S Unspecified open wound of right little finger with damage to nail, sequela +S61307A Unspecified open wound of left little finger with damage to nail, initial encounter +S61307D Unspecified open wound of left little finger with damage to nail, subsequent encounter +S61307S Unspecified open wound of left little finger with damage to nail, sequela +S61308A Unspecified open wound of other finger with damage to nail, initial encounter +S61308D Unspecified open wound of other finger with damage to nail, subsequent encounter +S61308S Unspecified open wound of other finger with damage to nail, sequela +S61309A Unspecified open wound of unspecified finger with damage to nail, initial encounter +S61309D Unspecified open wound of unspecified finger with damage to nail, subsequent encounter +S61309S Unspecified open wound of unspecified finger with damage to nail, sequela +S61310A Laceration without foreign body of right index finger with damage to nail, initial encounter +S61310D Laceration without foreign body of right index finger with damage to nail, subsequent encounter +S61310S Laceration without foreign body of right index finger with damage to nail, sequela +S61311A Laceration without foreign body of left index finger with damage to nail, initial encounter +S61311D Laceration without foreign body of left index finger with damage to nail, subsequent encounter +S61311S Laceration without foreign body of left index finger with damage to nail, sequela +S61312A Laceration without foreign body of right middle finger with damage to nail, initial encounter +S61312D Laceration without foreign body of right middle finger with damage to nail, subsequent encounter +S61312S Laceration without foreign body of right middle finger with damage to nail, sequela +S61313A Laceration without foreign body of left middle finger with damage to nail, initial encounter +S61313D Laceration without foreign body of left middle finger with damage to nail, subsequent encounter +S61313S Laceration without foreign body of left middle finger with damage to nail, sequela +S61314A Laceration without foreign body of right ring finger with damage to nail, initial encounter +S61314D Laceration without foreign body of right ring finger with damage to nail, subsequent encounter +S61314S Laceration without foreign body of right ring finger with damage to nail, sequela +S61315A Laceration without foreign body of left ring finger with damage to nail, initial encounter +S61315D Laceration without foreign body of left ring finger with damage to nail, subsequent encounter +S61315S Laceration without foreign body of left ring finger with damage to nail, sequela +S61316A Laceration without foreign body of right little finger with damage to nail, initial encounter +S61316D Laceration without foreign body of right little finger with damage to nail, subsequent encounter +S61316S Laceration without foreign body of right little finger with damage to nail, sequela +S61317A Laceration without foreign body of left little finger with damage to nail, initial encounter +S61317D Laceration without foreign body of left little finger with damage to nail, subsequent encounter +S61317S Laceration without foreign body of left little finger with damage to nail, sequela +S61318A Laceration without foreign body of other finger with damage to nail, initial encounter +S61318D Laceration without foreign body of other finger with damage to nail, subsequent encounter +S61318S Laceration without foreign body of other finger with damage to nail, sequela +S61319A Laceration without foreign body of unspecified finger with damage to nail, initial encounter +S61319D Laceration without foreign body of unspecified finger with damage to nail, subsequent encounter +S61319S Laceration without foreign body of unspecified finger with damage to nail, sequela +S61320A Laceration with foreign body of right index finger with damage to nail, initial encounter +S61320D Laceration with foreign body of right index finger with damage to nail, subsequent encounter +S61320S Laceration with foreign body of right index finger with damage to nail, sequela +S61321A Laceration with foreign body of left index finger with damage to nail, initial encounter +S61321D Laceration with foreign body of left index finger with damage to nail, subsequent encounter +S61321S Laceration with foreign body of left index finger with damage to nail, sequela +S61322A Laceration with foreign body of right middle finger with damage to nail, initial encounter +S61322D Laceration with foreign body of right middle finger with damage to nail, subsequent encounter +S61322S Laceration with foreign body of right middle finger with damage to nail, sequela +S61323A Laceration with foreign body of left middle finger with damage to nail, initial encounter +S61323D Laceration with foreign body of left middle finger with damage to nail, subsequent encounter +S61323S Laceration with foreign body of left middle finger with damage to nail, sequela +S61324A Laceration with foreign body of right ring finger with damage to nail, initial encounter +S61324D Laceration with foreign body of right ring finger with damage to nail, subsequent encounter +S61324S Laceration with foreign body of right ring finger with damage to nail, sequela +S61325A Laceration with foreign body of left ring finger with damage to nail, initial encounter +S61325D Laceration with foreign body of left ring finger with damage to nail, subsequent encounter +S61325S Laceration with foreign body of left ring finger with damage to nail, sequela +S61326A Laceration with foreign body of right little finger with damage to nail, initial encounter +S61326D Laceration with foreign body of right little finger with damage to nail, subsequent encounter +S61326S Laceration with foreign body of right little finger with damage to nail, sequela +S61327A Laceration with foreign body of left little finger with damage to nail, initial encounter +S61327D Laceration with foreign body of left little finger with damage to nail, subsequent encounter +S61327S Laceration with foreign body of left little finger with damage to nail, sequela +S61328A Laceration with foreign body of other finger with damage to nail, initial encounter +S61328D Laceration with foreign body of other finger with damage to nail, subsequent encounter +S61328S Laceration with foreign body of other finger with damage to nail, sequela +S61329A Laceration with foreign body of unspecified finger with damage to nail, initial encounter +S61329D Laceration with foreign body of unspecified finger with damage to nail, subsequent encounter +S61329S Laceration with foreign body of unspecified finger with damage to nail, sequela +S61330A Puncture wound without foreign body of right index finger with damage to nail, initial encounter +S61330D Puncture wound without foreign body of right index finger with damage to nail, subsequent encounter +S61330S Puncture wound without foreign body of right index finger with damage to nail, sequela +S61331A Puncture wound without foreign body of left index finger with damage to nail, initial encounter +S61331D Puncture wound without foreign body of left index finger with damage to nail, subsequent encounter +S61331S Puncture wound without foreign body of left index finger with damage to nail, sequela +S61332A Puncture wound without foreign body of right middle finger with damage to nail, initial encounter +S61332D Puncture wound without foreign body of right middle finger with damage to nail, subsequent encounter +S61332S Puncture wound without foreign body of right middle finger with damage to nail, sequela +S61333A Puncture wound without foreign body of left middle finger with damage to nail, initial encounter +S61333D Puncture wound without foreign body of left middle finger with damage to nail, subsequent encounter +S61333S Puncture wound without foreign body of left middle finger with damage to nail, sequela +S61334A Puncture wound without foreign body of right ring finger with damage to nail, initial encounter +S61334D Puncture wound without foreign body of right ring finger with damage to nail, subsequent encounter +S61334S Puncture wound without foreign body of right ring finger with damage to nail, sequela +S61335A Puncture wound without foreign body of left ring finger with damage to nail, initial encounter +S61335D Puncture wound without foreign body of left ring finger with damage to nail, subsequent encounter +S61335S Puncture wound without foreign body of left ring finger with damage to nail, sequela +S61336A Puncture wound without foreign body of right little finger with damage to nail, initial encounter +S61336D Puncture wound without foreign body of right little finger with damage to nail, subsequent encounter +S61336S Puncture wound without foreign body of right little finger with damage to nail, sequela +S61337A Puncture wound without foreign body of left little finger with damage to nail, initial encounter +S61337D Puncture wound without foreign body of left little finger with damage to nail, subsequent encounter +S61337S Puncture wound without foreign body of left little finger with damage to nail, sequela +S61338A Puncture wound without foreign body of other finger with damage to nail, initial encounter +S61338D Puncture wound without foreign body of other finger with damage to nail, subsequent encounter +S61338S Puncture wound without foreign body of other finger with damage to nail, sequela +S61339A Puncture wound without foreign body of unspecified finger with damage to nail, initial encounter +S61339D Puncture wound without foreign body of unspecified finger with damage to nail, subsequent encounter +S61339S Puncture wound without foreign body of unspecified finger with damage to nail, sequela +S61340A Puncture wound with foreign body of right index finger with damage to nail, initial encounter +S61340D Puncture wound with foreign body of right index finger with damage to nail, subsequent encounter +S61340S Puncture wound with foreign body of right index finger with damage to nail, sequela +S61341A Puncture wound with foreign body of left index finger with damage to nail, initial encounter +S61341D Puncture wound with foreign body of left index finger with damage to nail, subsequent encounter +S61341S Puncture wound with foreign body of left index finger with damage to nail, sequela +S61342A Puncture wound with foreign body of right middle finger with damage to nail, initial encounter +S61342D Puncture wound with foreign body of right middle finger with damage to nail, subsequent encounter +S61342S Puncture wound with foreign body of right middle finger with damage to nail, sequela +S61343A Puncture wound with foreign body of left middle finger with damage to nail, initial encounter +S61343D Puncture wound with foreign body of left middle finger with damage to nail, subsequent encounter +S61343S Puncture wound with foreign body of left middle finger with damage to nail, sequela +S61344A Puncture wound with foreign body of right ring finger with damage to nail, initial encounter +S61344D Puncture wound with foreign body of right ring finger with damage to nail, subsequent encounter +S61344S Puncture wound with foreign body of right ring finger with damage to nail, sequela +S61345A Puncture wound with foreign body of left ring finger with damage to nail, initial encounter +S61345D Puncture wound with foreign body of left ring finger with damage to nail, subsequent encounter +S61345S Puncture wound with foreign body of left ring finger with damage to nail, sequela +S61346A Puncture wound with foreign body of right little finger with damage to nail, initial encounter +S61346D Puncture wound with foreign body of right little finger with damage to nail, subsequent encounter +S61346S Puncture wound with foreign body of right little finger with damage to nail, sequela +S61347A Puncture wound with foreign body of left little finger with damage to nail, initial encounter +S61347D Puncture wound with foreign body of left little finger with damage to nail, subsequent encounter +S61347S Puncture wound with foreign body of left little finger with damage to nail, sequela +S61348A Puncture wound with foreign body of other finger with damage to nail, initial encounter +S61348D Puncture wound with foreign body of other finger with damage to nail, subsequent encounter +S61348S Puncture wound with foreign body of other finger with damage to nail, sequela +S61349A Puncture wound with foreign body of unspecified finger with damage to nail, initial encounter +S61349D Puncture wound with foreign body of unspecified finger with damage to nail, subsequent encounter +S61349S Puncture wound with foreign body of unspecified finger with damage to nail, sequela +S61350A Open bite of right index finger with damage to nail, initial encounter +S61350D Open bite of right index finger with damage to nail, subsequent encounter +S61350S Open bite of right index finger with damage to nail, sequela +S61351A Open bite of left index finger with damage to nail, initial encounter +S61351D Open bite of left index finger with damage to nail, subsequent encounter +S61351S Open bite of left index finger with damage to nail, sequela +S61352A Open bite of right middle finger with damage to nail, initial encounter +S61352D Open bite of right middle finger with damage to nail, subsequent encounter +S61352S Open bite of right middle finger with damage to nail, sequela +S61353A Open bite of left middle finger with damage to nail, initial encounter +S61353D Open bite of left middle finger with damage to nail, subsequent encounter +S61353S Open bite of left middle finger with damage to nail, sequela +S61354A Open bite of right ring finger with damage to nail, initial encounter +S61354D Open bite of right ring finger with damage to nail, subsequent encounter +S61354S Open bite of right ring finger with damage to nail, sequela +S61355A Open bite of left ring finger with damage to nail, initial encounter +S61355D Open bite of left ring finger with damage to nail, subsequent encounter +S61355S Open bite of left ring finger with damage to nail, sequela +S61356A Open bite of right little finger with damage to nail, initial encounter +S61356D Open bite of right little finger with damage to nail, subsequent encounter +S61356S Open bite of right little finger with damage to nail, sequela +S61357A Open bite of left little finger with damage to nail, initial encounter +S61357D Open bite of left little finger with damage to nail, subsequent encounter +S61357S Open bite of left little finger with damage to nail, sequela +S61358A Open bite of other finger with damage to nail, initial encounter +S61358D Open bite of other finger with damage to nail, subsequent encounter +S61358S Open bite of other finger with damage to nail, sequela +S61359A Open bite of unspecified finger with damage to nail, initial encounter +S61359D Open bite of unspecified finger with damage to nail, subsequent encounter +S61359S Open bite of unspecified finger with damage to nail, sequela +S61401A Unspecified open wound of right hand, initial encounter +S61401D Unspecified open wound of right hand, subsequent encounter +S61401S Unspecified open wound of right hand, sequela +S61402A Unspecified open wound of left hand, initial encounter +S61402D Unspecified open wound of left hand, subsequent encounter +S61402S Unspecified open wound of left hand, sequela +S61409A Unspecified open wound of unspecified hand, initial encounter +S61409D Unspecified open wound of unspecified hand, subsequent encounter +S61409S Unspecified open wound of unspecified hand, sequela +S61411A Laceration without foreign body of right hand, initial encounter +S61411D Laceration without foreign body of right hand, subsequent encounter +S61411S Laceration without foreign body of right hand, sequela +S61412A Laceration without foreign body of left hand, initial encounter +S61412D Laceration without foreign body of left hand, subsequent encounter +S61412S Laceration without foreign body of left hand, sequela +S61419A Laceration without foreign body of unspecified hand, initial encounter +S61419D Laceration without foreign body of unspecified hand, subsequent encounter +S61419S Laceration without foreign body of unspecified hand, sequela +S61421A Laceration with foreign body of right hand, initial encounter +S61421D Laceration with foreign body of right hand, subsequent encounter +S61421S Laceration with foreign body of right hand, sequela +S61422A Laceration with foreign body of left hand, initial encounter +S61422D Laceration with foreign body of left hand, subsequent encounter +S61422S Laceration with foreign body of left hand, sequela +S61429A Laceration with foreign body of unspecified hand, initial encounter +S61429D Laceration with foreign body of unspecified hand, subsequent encounter +S61429S Laceration with foreign body of unspecified hand, sequela +S61431A Puncture wound without foreign body of right hand, initial encounter +S61431D Puncture wound without foreign body of right hand, subsequent encounter +S61431S Puncture wound without foreign body of right hand, sequela +S61432A Puncture wound without foreign body of left hand, initial encounter +S61432D Puncture wound without foreign body of left hand, subsequent encounter +S61432S Puncture wound without foreign body of left hand, sequela +S61439A Puncture wound without foreign body of unspecified hand, initial encounter +S61439D Puncture wound without foreign body of unspecified hand, subsequent encounter +S61439S Puncture wound without foreign body of unspecified hand, sequela +S61441A Puncture wound with foreign body of right hand, initial encounter +S61441D Puncture wound with foreign body of right hand, subsequent encounter +S61441S Puncture wound with foreign body of right hand, sequela +S61442A Puncture wound with foreign body of left hand, initial encounter +S61442D Puncture wound with foreign body of left hand, subsequent encounter +S61442S Puncture wound with foreign body of left hand, sequela +S61449A Puncture wound with foreign body of unspecified hand, initial encounter +S61449D Puncture wound with foreign body of unspecified hand, subsequent encounter +S61449S Puncture wound with foreign body of unspecified hand, sequela +S61451A Open bite of right hand, initial encounter +S61451D Open bite of right hand, subsequent encounter +S61451S Open bite of right hand, sequela +S61452A Open bite of left hand, initial encounter +S61452D Open bite of left hand, subsequent encounter +S61452S Open bite of left hand, sequela +S61459A Open bite of unspecified hand, initial encounter +S61459D Open bite of unspecified hand, subsequent encounter +S61459S Open bite of unspecified hand, sequela +S61501A Unspecified open wound of right wrist, initial encounter +S61501D Unspecified open wound of right wrist, subsequent encounter +S61501S Unspecified open wound of right wrist, sequela +S61502A Unspecified open wound of left wrist, initial encounter +S61502D Unspecified open wound of left wrist, subsequent encounter +S61502S Unspecified open wound of left wrist, sequela +S61509A Unspecified open wound of unspecified wrist, initial encounter +S61509D Unspecified open wound of unspecified wrist, subsequent encounter +S61509S Unspecified open wound of unspecified wrist, sequela +S61511A Laceration without foreign body of right wrist, initial encounter +S61511D Laceration without foreign body of right wrist, subsequent encounter +S61511S Laceration without foreign body of right wrist, sequela +S61512A Laceration without foreign body of left wrist, initial encounter +S61512D Laceration without foreign body of left wrist, subsequent encounter +S61512S Laceration without foreign body of left wrist, sequela +S61519A Laceration without foreign body of unspecified wrist, initial encounter +S61519D Laceration without foreign body of unspecified wrist, subsequent encounter +S61519S Laceration without foreign body of unspecified wrist, sequela +S61521A Laceration with foreign body of right wrist, initial encounter +S61521D Laceration with foreign body of right wrist, subsequent encounter +S61521S Laceration with foreign body of right wrist, sequela +S61522A Laceration with foreign body of left wrist, initial encounter +S61522D Laceration with foreign body of left wrist, subsequent encounter +S61522S Laceration with foreign body of left wrist, sequela +S61529A Laceration with foreign body of unspecified wrist, initial encounter +S61529D Laceration with foreign body of unspecified wrist, subsequent encounter +S61529S Laceration with foreign body of unspecified wrist, sequela +S61531A Puncture wound without foreign body of right wrist, initial encounter +S61531D Puncture wound without foreign body of right wrist, subsequent encounter +S61531S Puncture wound without foreign body of right wrist, sequela +S61532A Puncture wound without foreign body of left wrist, initial encounter +S61532D Puncture wound without foreign body of left wrist, subsequent encounter +S61532S Puncture wound without foreign body of left wrist, sequela +S61539A Puncture wound without foreign body of unspecified wrist, initial encounter +S61539D Puncture wound without foreign body of unspecified wrist, subsequent encounter +S61539S Puncture wound without foreign body of unspecified wrist, sequela +S61541A Puncture wound with foreign body of right wrist, initial encounter +S61541D Puncture wound with foreign body of right wrist, subsequent encounter +S61541S Puncture wound with foreign body of right wrist, sequela +S61542A Puncture wound with foreign body of left wrist, initial encounter +S61542D Puncture wound with foreign body of left wrist, subsequent encounter +S61542S Puncture wound with foreign body of left wrist, sequela +S61549A Puncture wound with foreign body of unspecified wrist, initial encounter +S61549D Puncture wound with foreign body of unspecified wrist, subsequent encounter +S61549S Puncture wound with foreign body of unspecified wrist, sequela +S61551A Open bite of right wrist, initial encounter +S61551D Open bite of right wrist, subsequent encounter +S61551S Open bite of right wrist, sequela +S61552A Open bite of left wrist, initial encounter +S61552D Open bite of left wrist, subsequent encounter +S61552S Open bite of left wrist, sequela +S61559A Open bite of unspecified wrist, initial encounter +S61559D Open bite of unspecified wrist, subsequent encounter +S61559S Open bite of unspecified wrist, sequela +S62001A Unspecified fracture of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture +S62001B Unspecified fracture of navicular [scaphoid] bone of right wrist, initial encounter for open fracture +S62001D Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing +S62001G Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing +S62001K Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion +S62001P Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion +S62001S Unspecified fracture of navicular [scaphoid] bone of right wrist, sequela +S62002A Unspecified fracture of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture +S62002B Unspecified fracture of navicular [scaphoid] bone of left wrist, initial encounter for open fracture +S62002D Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing +S62002G Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing +S62002K Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion +S62002P Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion +S62002S Unspecified fracture of navicular [scaphoid] bone of left wrist, sequela +S62009A Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture +S62009B Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture +S62009D Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing +S62009G Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing +S62009K Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion +S62009P Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion +S62009S Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, sequela +S62011A Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture +S62011B Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for open fracture +S62011D Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing +S62011G Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing +S62011K Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion +S62011P Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion +S62011S Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, sequela +S62012A Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture +S62012B Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for open fracture +S62012D Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing +S62012G Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing +S62012K Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion +S62012P Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion +S62012S Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, sequela +S62013A Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture +S62013B Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture +S62013D Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing +S62013G Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing +S62013K Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion +S62013P Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion +S62013S Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, sequela +S62014A Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture +S62014B Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for open fracture +S62014D Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing +S62014G Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing +S62014K Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion +S62014P Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion +S62014S Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, sequela +S62015A Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture +S62015B Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for open fracture +S62015D Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing +S62015G Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing +S62015K Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion +S62015P Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion +S62015S Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, sequela +S62016A Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture +S62016B Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture +S62016D Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing +S62016G Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing +S62016K Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion +S62016P Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion +S62016S Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, sequela +S62021A Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture +S62021B Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture +S62021D Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing +S62021G Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing +S62021K Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion +S62021P Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion +S62021S Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, sequela +S62022A Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture +S62022B Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture +S62022D Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing +S62022G Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing +S62022K Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion +S62022P Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion +S62022S Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, sequela +S62023A Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture +S62023B Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture +S62023D Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing +S62023G Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing +S62023K Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion +S62023P Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion +S62023S Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, sequela +S62024A Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture +S62024B Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture +S62024D Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing +S62024G Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing +S62024K Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion +S62024P Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion +S62024S Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, sequela +S62025A Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture +S62025B Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture +S62025D Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing +S62025G Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing +S62025K Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion +S62025P Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion +S62025S Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, sequela +S62026A Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture +S62026B Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture +S62026D Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing +S62026G Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing +S62026K Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion +S62026P Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion +S62026S Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, sequela +S62031A Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture +S62031B Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture +S62031D Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing +S62031G Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing +S62031K Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion +S62031P Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion +S62031S Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, sequela +S62032A Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture +S62032B Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture +S62032D Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing +S62032G Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing +S62032K Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion +S62032P Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion +S62032S Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, sequela +S62033A Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture +S62033B Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture +S62033D Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing +S62033G Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing +S62033K Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion +S62033P Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion +S62033S Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, sequela +S62034A Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture +S62034B Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture +S62034D Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing +S62034G Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing +S62034K Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion +S62034P Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion +S62034S Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, sequela +S62035A Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture +S62035B Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture +S62035D Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing +S62035G Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing +S62035K Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion +S62035P Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion +S62035S Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, sequela +S62036A Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture +S62036B Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture +S62036D Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing +S62036G Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing +S62036K Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion +S62036P Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion +S62036S Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, sequela +S62101A Fracture of unspecified carpal bone, right wrist, initial encounter for closed fracture +S62101B Fracture of unspecified carpal bone, right wrist, initial encounter for open fracture +S62101D Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with routine healing +S62101G Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with delayed healing +S62101K Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with nonunion +S62101P Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with malunion +S62101S Fracture of unspecified carpal bone, right wrist, sequela +S62102A Fracture of unspecified carpal bone, left wrist, initial encounter for closed fracture +S62102B Fracture of unspecified carpal bone, left wrist, initial encounter for open fracture +S62102D Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with routine healing +S62102G Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with delayed healing +S62102K Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with nonunion +S62102P Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with malunion +S62102S Fracture of unspecified carpal bone, left wrist, sequela +S62109A Fracture of unspecified carpal bone, unspecified wrist, initial encounter for closed fracture +S62109B Fracture of unspecified carpal bone, unspecified wrist, initial encounter for open fracture +S62109D Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with routine healing +S62109G Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with delayed healing +S62109K Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with nonunion +S62109P Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with malunion +S62109S Fracture of unspecified carpal bone, unspecified wrist, sequela +S62111A Displaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for closed fracture +S62111B Displaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for open fracture +S62111D Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with routine healing +S62111G Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with delayed healing +S62111K Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with nonunion +S62111P Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with malunion +S62111S Displaced fracture of triquetrum [cuneiform] bone, right wrist, sequela +S62112A Displaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for closed fracture +S62112B Displaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for open fracture +S62112D Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with routine healing +S62112G Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with delayed healing +S62112K Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with nonunion +S62112P Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with malunion +S62112S Displaced fracture of triquetrum [cuneiform] bone, left wrist, sequela +S62113A Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for closed fracture +S62113B Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for open fracture +S62113D Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with routine healing +S62113G Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing +S62113K Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with nonunion +S62113P Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with malunion +S62113S Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, sequela +S62114A Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for closed fracture +S62114B Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for open fracture +S62114D Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with routine healing +S62114G Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with delayed healing +S62114K Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with nonunion +S62114P Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with malunion +S62114S Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, sequela +S62115A Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for closed fracture +S62115B Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for open fracture +S62115D Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with routine healing +S62115G Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with delayed healing +S62115K Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with nonunion +S62115P Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with malunion +S62115S Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, sequela +S62116A Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for closed fracture +S62116B Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for open fracture +S62116D Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with routine healing +S62116G Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing +S62116K Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with nonunion +S62116P Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with malunion +S62116S Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, sequela +S62121A Displaced fracture of lunate [semilunar], right wrist, initial encounter for closed fracture +S62121B Displaced fracture of lunate [semilunar], right wrist, initial encounter for open fracture +S62121D Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with routine healing +S62121G Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with delayed healing +S62121K Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with nonunion +S62121P Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with malunion +S62121S Displaced fracture of lunate [semilunar], right wrist, sequela +S62122A Displaced fracture of lunate [semilunar], left wrist, initial encounter for closed fracture +S62122B Displaced fracture of lunate [semilunar], left wrist, initial encounter for open fracture +S62122D Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with routine healing +S62122G Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with delayed healing +S62122K Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with nonunion +S62122P Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with malunion +S62122S Displaced fracture of lunate [semilunar], left wrist, sequela +S62123A Displaced fracture of lunate [semilunar], unspecified wrist, initial encounter for closed fracture +S62123B Displaced fracture of lunate [semilunar], unspecified wrist, initial encounter for open fracture +S62123D Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with routine healing +S62123G Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with delayed healing +S62123K Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with nonunion +S62123P Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with malunion +S62123S Displaced fracture of lunate [semilunar], unspecified wrist, sequela +S62124A Nondisplaced fracture of lunate [semilunar], right wrist, initial encounter for closed fracture +S62124B Nondisplaced fracture of lunate [semilunar], right wrist, initial encounter for open fracture +S62124D Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with routine healing +S62124G Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with delayed healing +S62124K Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with nonunion +S62124P Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with malunion +S62124S Nondisplaced fracture of lunate [semilunar], right wrist, sequela +S62125A Nondisplaced fracture of lunate [semilunar], left wrist, initial encounter for closed fracture +S62125B Nondisplaced fracture of lunate [semilunar], left wrist, initial encounter for open fracture +S62125D Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with routine healing +S62125G Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with delayed healing +S62125K Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with nonunion +S62125P Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with malunion +S62125S Nondisplaced fracture of lunate [semilunar], left wrist, sequela +S62126A Nondisplaced fracture of lunate [semilunar], unspecified wrist, initial encounter for closed fracture +S62126B Nondisplaced fracture of lunate [semilunar], unspecified wrist, initial encounter for open fracture +S62126D Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with routine healing +S62126G Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with delayed healing +S62126K Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with nonunion +S62126P Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with malunion +S62126S Nondisplaced fracture of lunate [semilunar], unspecified wrist, sequela +S62131A Displaced fracture of capitate [os magnum] bone, right wrist, initial encounter for closed fracture +S62131B Displaced fracture of capitate [os magnum] bone, right wrist, initial encounter for open fracture +S62131D Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with routine healing +S62131G Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with delayed healing +S62131K Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with nonunion +S62131P Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with malunion +S62131S Displaced fracture of capitate [os magnum] bone, right wrist, sequela +S62132A Displaced fracture of capitate [os magnum] bone, left wrist, initial encounter for closed fracture +S62132B Displaced fracture of capitate [os magnum] bone, left wrist, initial encounter for open fracture +S62132D Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with routine healing +S62132G Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with delayed healing +S62132K Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with nonunion +S62132P Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with malunion +S62132S Displaced fracture of capitate [os magnum] bone, left wrist, sequela +S62133A Displaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for closed fracture +S62133B Displaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for open fracture +S62133D Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with routine healing +S62133G Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with delayed healing +S62133K Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with nonunion +S62133P Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with malunion +S62133S Displaced fracture of capitate [os magnum] bone, unspecified wrist, sequela +S62134A Nondisplaced fracture of capitate [os magnum] bone, right wrist, initial encounter for closed fracture +S62134B Nondisplaced fracture of capitate [os magnum] bone, right wrist, initial encounter for open fracture +S62134D Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with routine healing +S62134G Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with delayed healing +S62134K Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with nonunion +S62134P Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with malunion +S62134S Nondisplaced fracture of capitate [os magnum] bone, right wrist, sequela +S62135A Nondisplaced fracture of capitate [os magnum] bone, left wrist, initial encounter for closed fracture +S62135B Nondisplaced fracture of capitate [os magnum] bone, left wrist, initial encounter for open fracture +S62135D Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with routine healing +S62135G Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with delayed healing +S62135K Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with nonunion +S62135P Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with malunion +S62135S Nondisplaced fracture of capitate [os magnum] bone, left wrist, sequela +S62136A Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for closed fracture +S62136B Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for open fracture +S62136D Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with routine healing +S62136G Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with delayed healing +S62136K Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with nonunion +S62136P Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with malunion +S62136S Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, sequela +S62141A Displaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for closed fracture +S62141B Displaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for open fracture +S62141D Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing +S62141G Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing +S62141K Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion +S62141P Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion +S62141S Displaced fracture of body of hamate [unciform] bone, right wrist, sequela +S62142A Displaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for closed fracture +S62142B Displaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for open fracture +S62142D Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing +S62142G Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing +S62142K Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion +S62142P Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion +S62142S Displaced fracture of body of hamate [unciform] bone, left wrist, sequela +S62143A Displaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture +S62143B Displaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture +S62143D Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing +S62143G Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing +S62143K Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion +S62143P Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion +S62143S Displaced fracture of body of hamate [unciform] bone, unspecified wrist, sequela +S62144A Nondisplaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for closed fracture +S62144B Nondisplaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for open fracture +S62144D Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing +S62144G Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing +S62144K Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion +S62144P Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion +S62144S Nondisplaced fracture of body of hamate [unciform] bone, right wrist, sequela +S62145A Nondisplaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for closed fracture +S62145B Nondisplaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for open fracture +S62145D Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing +S62145G Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing +S62145K Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion +S62145P Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion +S62145S Nondisplaced fracture of body of hamate [unciform] bone, left wrist, sequela +S62146A Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture +S62146B Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture +S62146D Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing +S62146G Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing +S62146K Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion +S62146P Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion +S62146S Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, sequela +S62151A Displaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for closed fracture +S62151B Displaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for open fracture +S62151D Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing +S62151G Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing +S62151K Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion +S62151P Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion +S62151S Displaced fracture of hook process of hamate [unciform] bone, right wrist, sequela +S62152A Displaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for closed fracture +S62152B Displaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for open fracture +S62152D Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing +S62152G Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing +S62152K Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion +S62152P Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion +S62152S Displaced fracture of hook process of hamate [unciform] bone, left wrist, sequela +S62153A Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture +S62153B Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture +S62153D Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing +S62153G Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing +S62153K Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion +S62153P Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion +S62153S Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, sequela +S62154A Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for closed fracture +S62154B Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for open fracture +S62154D Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing +S62154G Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing +S62154K Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion +S62154P Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion +S62154S Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, sequela +S62155A Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for closed fracture +S62155B Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for open fracture +S62155D Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing +S62155G Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing +S62155K Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion +S62155P Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion +S62155S Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, sequela +S62156A Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture +S62156B Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture +S62156D Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing +S62156G Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing +S62156K Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion +S62156P Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion +S62156S Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, sequela +S62161A Displaced fracture of pisiform, right wrist, initial encounter for closed fracture +S62161B Displaced fracture of pisiform, right wrist, initial encounter for open fracture +S62161D Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with routine healing +S62161G Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with delayed healing +S62161K Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with nonunion +S62161P Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with malunion +S62161S Displaced fracture of pisiform, right wrist, sequela +S62162A Displaced fracture of pisiform, left wrist, initial encounter for closed fracture +S62162B Displaced fracture of pisiform, left wrist, initial encounter for open fracture +S62162D Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with routine healing +S62162G Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with delayed healing +S62162K Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with nonunion +S62162P Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with malunion +S62162S Displaced fracture of pisiform, left wrist, sequela +S62163A Displaced fracture of pisiform, unspecified wrist, initial encounter for closed fracture +S62163B Displaced fracture of pisiform, unspecified wrist, initial encounter for open fracture +S62163D Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with routine healing +S62163G Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with delayed healing +S62163K Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with nonunion +S62163P Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with malunion +S62163S Displaced fracture of pisiform, unspecified wrist, sequela +S62164A Nondisplaced fracture of pisiform, right wrist, initial encounter for closed fracture +S62164B Nondisplaced fracture of pisiform, right wrist, initial encounter for open fracture +S62164D Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with routine healing +S62164G Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with delayed healing +S62164K Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with nonunion +S62164P Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with malunion +S62164S Nondisplaced fracture of pisiform, right wrist, sequela +S62165A Nondisplaced fracture of pisiform, left wrist, initial encounter for closed fracture +S62165B Nondisplaced fracture of pisiform, left wrist, initial encounter for open fracture +S62165D Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with routine healing +S62165G Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with delayed healing +S62165K Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with nonunion +S62165P Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with malunion +S62165S Nondisplaced fracture of pisiform, left wrist, sequela +S62166A Nondisplaced fracture of pisiform, unspecified wrist, initial encounter for closed fracture +S62166B Nondisplaced fracture of pisiform, unspecified wrist, initial encounter for open fracture +S62166D Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with routine healing +S62166G Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with delayed healing +S62166K Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with nonunion +S62166P Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with malunion +S62166S Nondisplaced fracture of pisiform, unspecified wrist, sequela +S62171A Displaced fracture of trapezium [larger multangular], right wrist, initial encounter for closed fracture +S62171B Displaced fracture of trapezium [larger multangular], right wrist, initial encounter for open fracture +S62171D Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with routine healing +S62171G Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with delayed healing +S62171K Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with nonunion +S62171P Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with malunion +S62171S Displaced fracture of trapezium [larger multangular], right wrist, sequela +S62172A Displaced fracture of trapezium [larger multangular], left wrist, initial encounter for closed fracture +S62172B Displaced fracture of trapezium [larger multangular], left wrist, initial encounter for open fracture +S62172D Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with routine healing +S62172G Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with delayed healing +S62172K Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with nonunion +S62172P Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with malunion +S62172S Displaced fracture of trapezium [larger multangular], left wrist, sequela +S62173A Displaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for closed fracture +S62173B Displaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for open fracture +S62173D Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with routine healing +S62173G Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with delayed healing +S62173K Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with nonunion +S62173P Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with malunion +S62173S Displaced fracture of trapezium [larger multangular], unspecified wrist, sequela +S62174A Nondisplaced fracture of trapezium [larger multangular], right wrist, initial encounter for closed fracture +S62174B Nondisplaced fracture of trapezium [larger multangular], right wrist, initial encounter for open fracture +S62174D Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with routine healing +S62174G Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with delayed healing +S62174K Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with nonunion +S62174P Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with malunion +S62174S Nondisplaced fracture of trapezium [larger multangular], right wrist, sequela +S62175A Nondisplaced fracture of trapezium [larger multangular], left wrist, initial encounter for closed fracture +S62175B Nondisplaced fracture of trapezium [larger multangular], left wrist, initial encounter for open fracture +S62175D Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with routine healing +S62175G Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with delayed healing +S62175K Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with nonunion +S62175P Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with malunion +S62175S Nondisplaced fracture of trapezium [larger multangular], left wrist, sequela +S62176A Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for closed fracture +S62176B Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for open fracture +S62176D Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with routine healing +S62176G Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with delayed healing +S62176K Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with nonunion +S62176P Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with malunion +S62176S Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, sequela +S62181A Displaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for closed fracture +S62181B Displaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for open fracture +S62181D Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with routine healing +S62181G Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with delayed healing +S62181K Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with nonunion +S62181P Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with malunion +S62181S Displaced fracture of trapezoid [smaller multangular], right wrist, sequela +S62182A Displaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for closed fracture +S62182B Displaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for open fracture +S62182D Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with routine healing +S62182G Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with delayed healing +S62182K Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with nonunion +S62182P Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with malunion +S62182S Displaced fracture of trapezoid [smaller multangular], left wrist, sequela +S62183A Displaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for closed fracture +S62183B Displaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for open fracture +S62183D Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with routine healing +S62183G Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with delayed healing +S62183K Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with nonunion +S62183P Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with malunion +S62183S Displaced fracture of trapezoid [smaller multangular], unspecified wrist, sequela +S62184A Nondisplaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for closed fracture +S62184B Nondisplaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for open fracture +S62184D Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with routine healing +S62184G Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with delayed healing +S62184K Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with nonunion +S62184P Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with malunion +S62184S Nondisplaced fracture of trapezoid [smaller multangular], right wrist, sequela +S62185A Nondisplaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for closed fracture +S62185B Nondisplaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for open fracture +S62185D Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with routine healing +S62185G Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with delayed healing +S62185K Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with nonunion +S62185P Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with malunion +S62185S Nondisplaced fracture of trapezoid [smaller multangular], left wrist, sequela +S62186A Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for closed fracture +S62186B Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for open fracture +S62186D Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with routine healing +S62186G Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with delayed healing +S62186K Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with nonunion +S62186P Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with malunion +S62186S Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, sequela +S62201A Unspecified fracture of first metacarpal bone, right hand, initial encounter for closed fracture +S62201B Unspecified fracture of first metacarpal bone, right hand, initial encounter for open fracture +S62201D Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62201G Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62201K Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62201P Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62201S Unspecified fracture of first metacarpal bone, right hand, sequela +S62202A Unspecified fracture of first metacarpal bone, left hand, initial encounter for closed fracture +S62202B Unspecified fracture of first metacarpal bone, left hand, initial encounter for open fracture +S62202D Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62202G Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62202K Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62202P Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62202S Unspecified fracture of first metacarpal bone, left hand, sequela +S62209A Unspecified fracture of first metacarpal bone, unspecified hand, initial encounter for closed fracture +S62209B Unspecified fracture of first metacarpal bone, unspecified hand, initial encounter for open fracture +S62209D Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing +S62209G Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing +S62209K Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion +S62209P Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion +S62209S Unspecified fracture of first metacarpal bone, unspecified hand, sequela +S62211A Bennett's fracture, right hand, initial encounter for closed fracture +S62211B Bennett's fracture, right hand, initial encounter for open fracture +S62211D Bennett's fracture, right hand, subsequent encounter for fracture with routine healing +S62211G Bennett's fracture, right hand, subsequent encounter for fracture with delayed healing +S62211K Bennett's fracture, right hand, subsequent encounter for fracture with nonunion +S62211P Bennett's fracture, right hand, subsequent encounter for fracture with malunion +S62211S Bennett's fracture, right hand, sequela +S62212A Bennett's fracture, left hand, initial encounter for closed fracture +S62212B Bennett's fracture, left hand, initial encounter for open fracture +S62212D Bennett's fracture, left hand, subsequent encounter for fracture with routine healing +S62212G Bennett's fracture, left hand, subsequent encounter for fracture with delayed healing +S62212K Bennett's fracture, left hand, subsequent encounter for fracture with nonunion +S62212P Bennett's fracture, left hand, subsequent encounter for fracture with malunion +S62212S Bennett's fracture, left hand, sequela +S62213A Bennett's fracture, unspecified hand, initial encounter for closed fracture +S62213B Bennett's fracture, unspecified hand, initial encounter for open fracture +S62213D Bennett's fracture, unspecified hand, subsequent encounter for fracture with routine healing +S62213G Bennett's fracture, unspecified hand, subsequent encounter for fracture with delayed healing +S62213K Bennett's fracture, unspecified hand, subsequent encounter for fracture with nonunion +S62213P Bennett's fracture, unspecified hand, subsequent encounter for fracture with malunion +S62213S Bennett's fracture, unspecified hand, sequela +S62221A Displaced Rolando's fracture, right hand, initial encounter for closed fracture +S62221B Displaced Rolando's fracture, right hand, initial encounter for open fracture +S62221D Displaced Rolando's fracture, right hand, subsequent encounter for fracture with routine healing +S62221G Displaced Rolando's fracture, right hand, subsequent encounter for fracture with delayed healing +S62221K Displaced Rolando's fracture, right hand, subsequent encounter for fracture with nonunion +S62221P Displaced Rolando's fracture, right hand, subsequent encounter for fracture with malunion +S62221S Displaced Rolando's fracture, right hand, sequela +S62222A Displaced Rolando's fracture, left hand, initial encounter for closed fracture +S62222B Displaced Rolando's fracture, left hand, initial encounter for open fracture +S62222D Displaced Rolando's fracture, left hand, subsequent encounter for fracture with routine healing +S62222G Displaced Rolando's fracture, left hand, subsequent encounter for fracture with delayed healing +S62222K Displaced Rolando's fracture, left hand, subsequent encounter for fracture with nonunion +S62222P Displaced Rolando's fracture, left hand, subsequent encounter for fracture with malunion +S62222S Displaced Rolando's fracture, left hand, sequela +S62223A Displaced Rolando's fracture, unspecified hand, initial encounter for closed fracture +S62223B Displaced Rolando's fracture, unspecified hand, initial encounter for open fracture +S62223D Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with routine healing +S62223G Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with delayed healing +S62223K Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with nonunion +S62223P Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with malunion +S62223S Displaced Rolando's fracture, unspecified hand, sequela +S62224A Nondisplaced Rolando's fracture, right hand, initial encounter for closed fracture +S62224B Nondisplaced Rolando's fracture, right hand, initial encounter for open fracture +S62224D Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with routine healing +S62224G Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with delayed healing +S62224K Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with nonunion +S62224P Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with malunion +S62224S Nondisplaced Rolando's fracture, right hand, sequela +S62225A Nondisplaced Rolando's fracture, left hand, initial encounter for closed fracture +S62225B Nondisplaced Rolando's fracture, left hand, initial encounter for open fracture +S62225D Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with routine healing +S62225G Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with delayed healing +S62225K Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with nonunion +S62225P Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with malunion +S62225S Nondisplaced Rolando's fracture, left hand, sequela +S62226A Nondisplaced Rolando's fracture, unspecified hand, initial encounter for closed fracture +S62226B Nondisplaced Rolando's fracture, unspecified hand, initial encounter for open fracture +S62226D Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with routine healing +S62226G Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with delayed healing +S62226K Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with nonunion +S62226P Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with malunion +S62226S Nondisplaced Rolando's fracture, unspecified hand, sequela +S62231A Other displaced fracture of base of first metacarpal bone, right hand, initial encounter for closed fracture +S62231B Other displaced fracture of base of first metacarpal bone, right hand, initial encounter for open fracture +S62231D Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62231G Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62231K Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62231P Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62231S Other displaced fracture of base of first metacarpal bone, right hand, sequela +S62232A Other displaced fracture of base of first metacarpal bone, left hand, initial encounter for closed fracture +S62232B Other displaced fracture of base of first metacarpal bone, left hand, initial encounter for open fracture +S62232D Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62232G Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62232K Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62232P Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62232S Other displaced fracture of base of first metacarpal bone, left hand, sequela +S62233A Other displaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for closed fracture +S62233B Other displaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for open fracture +S62233D Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing +S62233G Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing +S62233K Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion +S62233P Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion +S62233S Other displaced fracture of base of first metacarpal bone, unspecified hand, sequela +S62234A Other nondisplaced fracture of base of first metacarpal bone, right hand, initial encounter for closed fracture +S62234B Other nondisplaced fracture of base of first metacarpal bone, right hand, initial encounter for open fracture +S62234D Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62234G Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62234K Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62234P Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62234S Other nondisplaced fracture of base of first metacarpal bone, right hand, sequela +S62235A Other nondisplaced fracture of base of first metacarpal bone, left hand, initial encounter for closed fracture +S62235B Other nondisplaced fracture of base of first metacarpal bone, left hand, initial encounter for open fracture +S62235D Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62235G Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62235K Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62235P Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62235S Other nondisplaced fracture of base of first metacarpal bone, left hand, sequela +S62236A Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for closed fracture +S62236B Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for open fracture +S62236D Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing +S62236G Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing +S62236K Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion +S62236P Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion +S62236S Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, sequela +S62241A Displaced fracture of shaft of first metacarpal bone, right hand, initial encounter for closed fracture +S62241B Displaced fracture of shaft of first metacarpal bone, right hand, initial encounter for open fracture +S62241D Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62241G Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62241K Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62241P Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62241S Displaced fracture of shaft of first metacarpal bone, right hand, sequela +S62242A Displaced fracture of shaft of first metacarpal bone, left hand, initial encounter for closed fracture +S62242B Displaced fracture of shaft of first metacarpal bone, left hand, initial encounter for open fracture +S62242D Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62242G Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62242K Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62242P Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62242S Displaced fracture of shaft of first metacarpal bone, left hand, sequela +S62243A Displaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for closed fracture +S62243B Displaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for open fracture +S62243D Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing +S62243G Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing +S62243K Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion +S62243P Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion +S62243S Displaced fracture of shaft of first metacarpal bone, unspecified hand, sequela +S62244A Nondisplaced fracture of shaft of first metacarpal bone, right hand, initial encounter for closed fracture +S62244B Nondisplaced fracture of shaft of first metacarpal bone, right hand, initial encounter for open fracture +S62244D Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62244G Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62244K Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62244P Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62244S Nondisplaced fracture of shaft of first metacarpal bone, right hand, sequela +S62245A Nondisplaced fracture of shaft of first metacarpal bone, left hand, initial encounter for closed fracture +S62245B Nondisplaced fracture of shaft of first metacarpal bone, left hand, initial encounter for open fracture +S62245D Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62245G Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62245K Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62245P Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62245S Nondisplaced fracture of shaft of first metacarpal bone, left hand, sequela +S62246A Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for closed fracture +S62246B Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for open fracture +S62246D Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing +S62246G Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing +S62246K Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion +S62246P Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion +S62246S Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, sequela +S62251A Displaced fracture of neck of first metacarpal bone, right hand, initial encounter for closed fracture +S62251B Displaced fracture of neck of first metacarpal bone, right hand, initial encounter for open fracture +S62251D Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62251G Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62251K Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62251P Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62251S Displaced fracture of neck of first metacarpal bone, right hand, sequela +S62252A Displaced fracture of neck of first metacarpal bone, left hand, initial encounter for closed fracture +S62252B Displaced fracture of neck of first metacarpal bone, left hand, initial encounter for open fracture +S62252D Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62252G Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62252K Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62252P Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62252S Displaced fracture of neck of first metacarpal bone, left hand, sequela +S62253A Displaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for closed fracture +S62253B Displaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for open fracture +S62253D Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing +S62253G Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing +S62253K Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion +S62253P Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion +S62253S Displaced fracture of neck of first metacarpal bone, unspecified hand, sequela +S62254A Nondisplaced fracture of neck of first metacarpal bone, right hand, initial encounter for closed fracture +S62254B Nondisplaced fracture of neck of first metacarpal bone, right hand, initial encounter for open fracture +S62254D Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62254G Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62254K Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62254P Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62254S Nondisplaced fracture of neck of first metacarpal bone, right hand, sequela +S62255A Nondisplaced fracture of neck of first metacarpal bone, left hand, initial encounter for closed fracture +S62255B Nondisplaced fracture of neck of first metacarpal bone, left hand, initial encounter for open fracture +S62255D Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62255G Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62255K Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62255P Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62255S Nondisplaced fracture of neck of first metacarpal bone, left hand, sequela +S62256A Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for closed fracture +S62256B Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for open fracture +S62256D Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing +S62256G Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing +S62256K Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion +S62256P Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion +S62256S Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, sequela +S62291A Other fracture of first metacarpal bone, right hand, initial encounter for closed fracture +S62291B Other fracture of first metacarpal bone, right hand, initial encounter for open fracture +S62291D Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62291G Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62291K Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62291P Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62291S Other fracture of first metacarpal bone, right hand, sequela +S62292A Other fracture of first metacarpal bone, left hand, initial encounter for closed fracture +S62292B Other fracture of first metacarpal bone, left hand, initial encounter for open fracture +S62292D Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62292G Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62292K Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62292P Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62292S Other fracture of first metacarpal bone, left hand, sequela +S62299A Other fracture of first metacarpal bone, unspecified hand, initial encounter for closed fracture +S62299B Other fracture of first metacarpal bone, unspecified hand, initial encounter for open fracture +S62299D Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing +S62299G Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing +S62299K Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion +S62299P Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion +S62299S Other fracture of first metacarpal bone, unspecified hand, sequela +S62300A Unspecified fracture of second metacarpal bone, right hand, initial encounter for closed fracture +S62300B Unspecified fracture of second metacarpal bone, right hand, initial encounter for open fracture +S62300D Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62300G Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62300K Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62300P Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62300S Unspecified fracture of second metacarpal bone, right hand, sequela +S62301A Unspecified fracture of second metacarpal bone, left hand, initial encounter for closed fracture +S62301B Unspecified fracture of second metacarpal bone, left hand, initial encounter for open fracture +S62301D Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62301G Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62301K Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62301P Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62301S Unspecified fracture of second metacarpal bone, left hand, sequela +S62302A Unspecified fracture of third metacarpal bone, right hand, initial encounter for closed fracture +S62302B Unspecified fracture of third metacarpal bone, right hand, initial encounter for open fracture +S62302D Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62302G Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62302K Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62302P Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62302S Unspecified fracture of third metacarpal bone, right hand, sequela +S62303A Unspecified fracture of third metacarpal bone, left hand, initial encounter for closed fracture +S62303B Unspecified fracture of third metacarpal bone, left hand, initial encounter for open fracture +S62303D Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62303G Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62303K Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62303P Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62303S Unspecified fracture of third metacarpal bone, left hand, sequela +S62304A Unspecified fracture of fourth metacarpal bone, right hand, initial encounter for closed fracture +S62304B Unspecified fracture of fourth metacarpal bone, right hand, initial encounter for open fracture +S62304D Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62304G Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62304K Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62304P Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62304S Unspecified fracture of fourth metacarpal bone, right hand, sequela +S62305A Unspecified fracture of fourth metacarpal bone, left hand, initial encounter for closed fracture +S62305B Unspecified fracture of fourth metacarpal bone, left hand, initial encounter for open fracture +S62305D Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62305G Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62305K Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62305P Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62305S Unspecified fracture of fourth metacarpal bone, left hand, sequela +S62306A Unspecified fracture of fifth metacarpal bone, right hand, initial encounter for closed fracture +S62306B Unspecified fracture of fifth metacarpal bone, right hand, initial encounter for open fracture +S62306D Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62306G Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62306K Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62306P Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62306S Unspecified fracture of fifth metacarpal bone, right hand, sequela +S62307A Unspecified fracture of fifth metacarpal bone, left hand, initial encounter for closed fracture +S62307B Unspecified fracture of fifth metacarpal bone, left hand, initial encounter for open fracture +S62307D Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62307G Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62307K Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62307P Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62307S Unspecified fracture of fifth metacarpal bone, left hand, sequela +S62308A Unspecified fracture of other metacarpal bone, initial encounter for closed fracture +S62308B Unspecified fracture of other metacarpal bone, initial encounter for open fracture +S62308D Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with routine healing +S62308G Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with delayed healing +S62308K Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with nonunion +S62308P Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with malunion +S62308S Unspecified fracture of other metacarpal bone, sequela +S62309A Unspecified fracture of unspecified metacarpal bone, initial encounter for closed fracture +S62309B Unspecified fracture of unspecified metacarpal bone, initial encounter for open fracture +S62309D Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with routine healing +S62309G Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing +S62309K Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with nonunion +S62309P Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with malunion +S62309S Unspecified fracture of unspecified metacarpal bone, sequela +S62310A Displaced fracture of base of second metacarpal bone, right hand, initial encounter for closed fracture +S62310B Displaced fracture of base of second metacarpal bone, right hand, initial encounter for open fracture +S62310D Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62310G Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62310K Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62310P Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62310S Displaced fracture of base of second metacarpal bone, right hand, sequela +S62311A Displaced fracture of base of second metacarpal bone, left hand, initial encounter for closed fracture +S62311B Displaced fracture of base of second metacarpal bone, left hand, initial encounter for open fracture +S62311D Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62311G Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62311K Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62311P Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62311S Displaced fracture of base of second metacarpal bone, left hand, sequela +S62312A Displaced fracture of base of third metacarpal bone, right hand, initial encounter for closed fracture +S62312B Displaced fracture of base of third metacarpal bone, right hand, initial encounter for open fracture +S62312D Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62312G Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62312K Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62312P Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62312S Displaced fracture of base of third metacarpal bone, right hand, sequela +S62313A Displaced fracture of base of third metacarpal bone, left hand, initial encounter for closed fracture +S62313B Displaced fracture of base of third metacarpal bone, left hand, initial encounter for open fracture +S62313D Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62313G Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62313K Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62313P Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62313S Displaced fracture of base of third metacarpal bone, left hand, sequela +S62314A Displaced fracture of base of fourth metacarpal bone, right hand, initial encounter for closed fracture +S62314B Displaced fracture of base of fourth metacarpal bone, right hand, initial encounter for open fracture +S62314D Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62314G Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62314K Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62314P Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62314S Displaced fracture of base of fourth metacarpal bone, right hand, sequela +S62315A Displaced fracture of base of fourth metacarpal bone, left hand, initial encounter for closed fracture +S62315B Displaced fracture of base of fourth metacarpal bone, left hand, initial encounter for open fracture +S62315D Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62315G Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62315K Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62315P Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62315S Displaced fracture of base of fourth metacarpal bone, left hand, sequela +S62316A Displaced fracture of base of fifth metacarpal bone, right hand, initial encounter for closed fracture +S62316B Displaced fracture of base of fifth metacarpal bone, right hand, initial encounter for open fracture +S62316D Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62316G Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62316K Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62316P Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62316S Displaced fracture of base of fifth metacarpal bone, right hand, sequela +S62317A Displaced fracture of base of fifth metacarpal bone, left hand, initial encounter for closed fracture +S62317B Displaced fracture of base of fifth metacarpal bone, left hand, initial encounter for open fracture +S62317D Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62317G Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62317K Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62317P Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62317S Displaced fracture of base of fifth metacarpal bone, left hand, sequela +S62318A Displaced fracture of base of other metacarpal bone, initial encounter for closed fracture +S62318B Displaced fracture of base of other metacarpal bone, initial encounter for open fracture +S62318D Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with routine healing +S62318G Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with delayed healing +S62318K Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with nonunion +S62318P Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with malunion +S62318S Displaced fracture of base of other metacarpal bone, sequela +S62319A Displaced fracture of base of unspecified metacarpal bone, initial encounter for closed fracture +S62319B Displaced fracture of base of unspecified metacarpal bone, initial encounter for open fracture +S62319D Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with routine healing +S62319G Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing +S62319K Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with nonunion +S62319P Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with malunion +S62319S Displaced fracture of base of unspecified metacarpal bone, sequela +S62320A Displaced fracture of shaft of second metacarpal bone, right hand, initial encounter for closed fracture +S62320B Displaced fracture of shaft of second metacarpal bone, right hand, initial encounter for open fracture +S62320D Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62320G Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62320K Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62320P Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62320S Displaced fracture of shaft of second metacarpal bone, right hand, sequela +S62321A Displaced fracture of shaft of second metacarpal bone, left hand, initial encounter for closed fracture +S62321B Displaced fracture of shaft of second metacarpal bone, left hand, initial encounter for open fracture +S62321D Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62321G Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62321K Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62321P Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62321S Displaced fracture of shaft of second metacarpal bone, left hand, sequela +S62322A Displaced fracture of shaft of third metacarpal bone, right hand, initial encounter for closed fracture +S62322B Displaced fracture of shaft of third metacarpal bone, right hand, initial encounter for open fracture +S62322D Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62322G Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62322K Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62322P Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62322S Displaced fracture of shaft of third metacarpal bone, right hand, sequela +S62323A Displaced fracture of shaft of third metacarpal bone, left hand, initial encounter for closed fracture +S62323B Displaced fracture of shaft of third metacarpal bone, left hand, initial encounter for open fracture +S62323D Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62323G Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62323K Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62323P Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62323S Displaced fracture of shaft of third metacarpal bone, left hand, sequela +S62324A Displaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for closed fracture +S62324B Displaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for open fracture +S62324D Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62324G Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62324K Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62324P Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62324S Displaced fracture of shaft of fourth metacarpal bone, right hand, sequela +S62325A Displaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for closed fracture +S62325B Displaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for open fracture +S62325D Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62325G Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62325K Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62325P Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62325S Displaced fracture of shaft of fourth metacarpal bone, left hand, sequela +S62326A Displaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for closed fracture +S62326B Displaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for open fracture +S62326D Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62326G Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62326K Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62326P Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62326S Displaced fracture of shaft of fifth metacarpal bone, right hand, sequela +S62327A Displaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for closed fracture +S62327B Displaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for open fracture +S62327D Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62327G Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62327K Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62327P Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62327S Displaced fracture of shaft of fifth metacarpal bone, left hand, sequela +S62328A Displaced fracture of shaft of other metacarpal bone, initial encounter for closed fracture +S62328B Displaced fracture of shaft of other metacarpal bone, initial encounter for open fracture +S62328D Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with routine healing +S62328G Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with delayed healing +S62328K Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with nonunion +S62328P Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with malunion +S62328S Displaced fracture of shaft of other metacarpal bone, sequela +S62329A Displaced fracture of shaft of unspecified metacarpal bone, initial encounter for closed fracture +S62329B Displaced fracture of shaft of unspecified metacarpal bone, initial encounter for open fracture +S62329D Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with routine healing +S62329G Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing +S62329K Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with nonunion +S62329P Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with malunion +S62329S Displaced fracture of shaft of unspecified metacarpal bone, sequela +S62330A Displaced fracture of neck of second metacarpal bone, right hand, initial encounter for closed fracture +S62330B Displaced fracture of neck of second metacarpal bone, right hand, initial encounter for open fracture +S62330D Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62330G Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62330K Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62330P Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62330S Displaced fracture of neck of second metacarpal bone, right hand, sequela +S62331A Displaced fracture of neck of second metacarpal bone, left hand, initial encounter for closed fracture +S62331B Displaced fracture of neck of second metacarpal bone, left hand, initial encounter for open fracture +S62331D Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62331G Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62331K Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62331P Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62331S Displaced fracture of neck of second metacarpal bone, left hand, sequela +S62332A Displaced fracture of neck of third metacarpal bone, right hand, initial encounter for closed fracture +S62332B Displaced fracture of neck of third metacarpal bone, right hand, initial encounter for open fracture +S62332D Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62332G Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62332K Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62332P Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62332S Displaced fracture of neck of third metacarpal bone, right hand, sequela +S62333A Displaced fracture of neck of third metacarpal bone, left hand, initial encounter for closed fracture +S62333B Displaced fracture of neck of third metacarpal bone, left hand, initial encounter for open fracture +S62333D Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62333G Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62333K Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62333P Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62333S Displaced fracture of neck of third metacarpal bone, left hand, sequela +S62334A Displaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for closed fracture +S62334B Displaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for open fracture +S62334D Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62334G Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62334K Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62334P Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62334S Displaced fracture of neck of fourth metacarpal bone, right hand, sequela +S62335A Displaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for closed fracture +S62335B Displaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for open fracture +S62335D Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62335G Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62335K Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62335P Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62335S Displaced fracture of neck of fourth metacarpal bone, left hand, sequela +S62336A Displaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for closed fracture +S62336B Displaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for open fracture +S62336D Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62336G Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62336K Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62336P Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62336S Displaced fracture of neck of fifth metacarpal bone, right hand, sequela +S62337A Displaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for closed fracture +S62337B Displaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for open fracture +S62337D Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62337G Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62337K Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62337P Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62337S Displaced fracture of neck of fifth metacarpal bone, left hand, sequela +S62338A Displaced fracture of neck of other metacarpal bone, initial encounter for closed fracture +S62338B Displaced fracture of neck of other metacarpal bone, initial encounter for open fracture +S62338D Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with routine healing +S62338G Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with delayed healing +S62338K Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with nonunion +S62338P Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with malunion +S62338S Displaced fracture of neck of other metacarpal bone, sequela +S62339A Displaced fracture of neck of unspecified metacarpal bone, initial encounter for closed fracture +S62339B Displaced fracture of neck of unspecified metacarpal bone, initial encounter for open fracture +S62339D Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with routine healing +S62339G Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing +S62339K Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with nonunion +S62339P Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with malunion +S62339S Displaced fracture of neck of unspecified metacarpal bone, sequela +S62340A Nondisplaced fracture of base of second metacarpal bone, right hand, initial encounter for closed fracture +S62340B Nondisplaced fracture of base of second metacarpal bone, right hand, initial encounter for open fracture +S62340D Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62340G Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62340K Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62340P Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62340S Nondisplaced fracture of base of second metacarpal bone, right hand, sequela +S62341A Nondisplaced fracture of base of second metacarpal bone, left hand, initial encounter for closed fracture +S62341B Nondisplaced fracture of base of second metacarpal bone, left hand, initial encounter for open fracture +S62341D Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62341G Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62341K Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62341P Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62341S Nondisplaced fracture of base of second metacarpal bone, left hand, sequela +S62342A Nondisplaced fracture of base of third metacarpal bone, right hand, initial encounter for closed fracture +S62342B Nondisplaced fracture of base of third metacarpal bone, right hand, initial encounter for open fracture +S62342D Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62342G Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62342K Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62342P Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62342S Nondisplaced fracture of base of third metacarpal bone, right hand, sequela +S62343A Nondisplaced fracture of base of third metacarpal bone, left hand, initial encounter for closed fracture +S62343B Nondisplaced fracture of base of third metacarpal bone, left hand, initial encounter for open fracture +S62343D Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62343G Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62343K Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62343P Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62343S Nondisplaced fracture of base of third metacarpal bone, left hand, sequela +S62344A Nondisplaced fracture of base of fourth metacarpal bone, right hand, initial encounter for closed fracture +S62344B Nondisplaced fracture of base of fourth metacarpal bone, right hand, initial encounter for open fracture +S62344D Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62344G Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62344K Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62344P Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62344S Nondisplaced fracture of base of fourth metacarpal bone, right hand, sequela +S62345A Nondisplaced fracture of base of fourth metacarpal bone, left hand, initial encounter for closed fracture +S62345B Nondisplaced fracture of base of fourth metacarpal bone, left hand, initial encounter for open fracture +S62345D Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62345G Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62345K Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62345P Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62345S Nondisplaced fracture of base of fourth metacarpal bone, left hand, sequela +S62346A Nondisplaced fracture of base of fifth metacarpal bone, right hand, initial encounter for closed fracture +S62346B Nondisplaced fracture of base of fifth metacarpal bone, right hand, initial encounter for open fracture +S62346D Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62346G Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62346K Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62346P Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62346S Nondisplaced fracture of base of fifth metacarpal bone, right hand, sequela +S62347A Nondisplaced fracture of base of fifth metacarpal bone, left hand, initial encounter for closed fracture +S62347B Nondisplaced fracture of base of fifth metacarpal bone, left hand, initial encounter for open fracture +S62347D Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62347G Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62347K Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62347P Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62347S Nondisplaced fracture of base of fifth metacarpal bone, left hand, sequela +S62348A Nondisplaced fracture of base of other metacarpal bone, initial encounter for closed fracture +S62348B Nondisplaced fracture of base of other metacarpal bone, initial encounter for open fracture +S62348D Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with routine healing +S62348G Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with delayed healing +S62348K Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with nonunion +S62348P Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with malunion +S62348S Nondisplaced fracture of base of other metacarpal bone, sequela +S62349A Nondisplaced fracture of base of unspecified metacarpal bone, initial encounter for closed fracture +S62349B Nondisplaced fracture of base of unspecified metacarpal bone, initial encounter for open fracture +S62349D Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with routine healing +S62349G Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing +S62349K Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with nonunion +S62349P Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with malunion +S62349S Nondisplaced fracture of base of unspecified metacarpal bone, sequela +S62350A Nondisplaced fracture of shaft of second metacarpal bone, right hand, initial encounter for closed fracture +S62350B Nondisplaced fracture of shaft of second metacarpal bone, right hand, initial encounter for open fracture +S62350D Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62350G Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62350K Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62350P Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62350S Nondisplaced fracture of shaft of second metacarpal bone, right hand, sequela +S62351A Nondisplaced fracture of shaft of second metacarpal bone, left hand, initial encounter for closed fracture +S62351B Nondisplaced fracture of shaft of second metacarpal bone, left hand, initial encounter for open fracture +S62351D Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62351G Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62351K Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62351P Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62351S Nondisplaced fracture of shaft of second metacarpal bone, left hand, sequela +S62352A Nondisplaced fracture of shaft of third metacarpal bone, right hand, initial encounter for closed fracture +S62352B Nondisplaced fracture of shaft of third metacarpal bone, right hand, initial encounter for open fracture +S62352D Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62352G Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62352K Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62352P Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62352S Nondisplaced fracture of shaft of third metacarpal bone, right hand, sequela +S62353A Nondisplaced fracture of shaft of third metacarpal bone, left hand, initial encounter for closed fracture +S62353B Nondisplaced fracture of shaft of third metacarpal bone, left hand, initial encounter for open fracture +S62353D Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62353G Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62353K Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62353P Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62353S Nondisplaced fracture of shaft of third metacarpal bone, left hand, sequela +S62354A Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for closed fracture +S62354B Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for open fracture +S62354D Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62354G Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62354K Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62354P Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62354S Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, sequela +S62355A Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for closed fracture +S62355B Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for open fracture +S62355D Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62355G Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62355K Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62355P Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62355S Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, sequela +S62356A Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for closed fracture +S62356B Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for open fracture +S62356D Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62356G Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62356K Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62356P Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62356S Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, sequela +S62357A Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for closed fracture +S62357B Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for open fracture +S62357D Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62357G Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62357K Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62357P Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62357S Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, sequela +S62358A Nondisplaced fracture of shaft of other metacarpal bone, initial encounter for closed fracture +S62358B Nondisplaced fracture of shaft of other metacarpal bone, initial encounter for open fracture +S62358D Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with routine healing +S62358G Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with delayed healing +S62358K Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with nonunion +S62358P Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with malunion +S62358S Nondisplaced fracture of shaft of other metacarpal bone, sequela +S62359A Nondisplaced fracture of shaft of unspecified metacarpal bone, initial encounter for closed fracture +S62359B Nondisplaced fracture of shaft of unspecified metacarpal bone, initial encounter for open fracture +S62359D Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with routine healing +S62359G Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing +S62359K Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with nonunion +S62359P Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with malunion +S62359S Nondisplaced fracture of shaft of unspecified metacarpal bone, sequela +S62360A Nondisplaced fracture of neck of second metacarpal bone, right hand, initial encounter for closed fracture +S62360B Nondisplaced fracture of neck of second metacarpal bone, right hand, initial encounter for open fracture +S62360D Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62360G Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62360K Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62360P Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62360S Nondisplaced fracture of neck of second metacarpal bone, right hand, sequela +S62361A Nondisplaced fracture of neck of second metacarpal bone, left hand, initial encounter for closed fracture +S62361B Nondisplaced fracture of neck of second metacarpal bone, left hand, initial encounter for open fracture +S62361D Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62361G Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62361K Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62361P Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62361S Nondisplaced fracture of neck of second metacarpal bone, left hand, sequela +S62362A Nondisplaced fracture of neck of third metacarpal bone, right hand, initial encounter for closed fracture +S62362B Nondisplaced fracture of neck of third metacarpal bone, right hand, initial encounter for open fracture +S62362D Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62362G Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62362K Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62362P Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62362S Nondisplaced fracture of neck of third metacarpal bone, right hand, sequela +S62363A Nondisplaced fracture of neck of third metacarpal bone, left hand, initial encounter for closed fracture +S62363B Nondisplaced fracture of neck of third metacarpal bone, left hand, initial encounter for open fracture +S62363D Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62363G Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62363K Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62363P Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62363S Nondisplaced fracture of neck of third metacarpal bone, left hand, sequela +S62364A Nondisplaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for closed fracture +S62364B Nondisplaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for open fracture +S62364D Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62364G Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62364K Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62364P Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62364S Nondisplaced fracture of neck of fourth metacarpal bone, right hand, sequela +S62365A Nondisplaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for closed fracture +S62365B Nondisplaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for open fracture +S62365D Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62365G Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62365K Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62365P Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62365S Nondisplaced fracture of neck of fourth metacarpal bone, left hand, sequela +S62366A Nondisplaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for closed fracture +S62366B Nondisplaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for open fracture +S62366D Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62366G Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62366K Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62366P Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62366S Nondisplaced fracture of neck of fifth metacarpal bone, right hand, sequela +S62367A Nondisplaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for closed fracture +S62367B Nondisplaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for open fracture +S62367D Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62367G Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62367K Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62367P Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62367S Nondisplaced fracture of neck of fifth metacarpal bone, left hand, sequela +S62368A Nondisplaced fracture of neck of other metacarpal bone, initial encounter for closed fracture +S62368B Nondisplaced fracture of neck of other metacarpal bone, initial encounter for open fracture +S62368D Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with routine healing +S62368G Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with delayed healing +S62368K Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with nonunion +S62368P Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with malunion +S62368S Nondisplaced fracture of neck of other metacarpal bone, sequela +S62369A Nondisplaced fracture of neck of unspecified metacarpal bone, initial encounter for closed fracture +S62369B Nondisplaced fracture of neck of unspecified metacarpal bone, initial encounter for open fracture +S62369D Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with routine healing +S62369G Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing +S62369K Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with nonunion +S62369P Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with malunion +S62369S Nondisplaced fracture of neck of unspecified metacarpal bone, sequela +S62390A Other fracture of second metacarpal bone, right hand, initial encounter for closed fracture +S62390B Other fracture of second metacarpal bone, right hand, initial encounter for open fracture +S62390D Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62390G Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62390K Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62390P Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62390S Other fracture of second metacarpal bone, right hand, sequela +S62391A Other fracture of second metacarpal bone, left hand, initial encounter for closed fracture +S62391B Other fracture of second metacarpal bone, left hand, initial encounter for open fracture +S62391D Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62391G Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62391K Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62391P Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62391S Other fracture of second metacarpal bone, left hand, sequela +S62392A Other fracture of third metacarpal bone, right hand, initial encounter for closed fracture +S62392B Other fracture of third metacarpal bone, right hand, initial encounter for open fracture +S62392D Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62392G Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62392K Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62392P Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62392S Other fracture of third metacarpal bone, right hand, sequela +S62393A Other fracture of third metacarpal bone, left hand, initial encounter for closed fracture +S62393B Other fracture of third metacarpal bone, left hand, initial encounter for open fracture +S62393D Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62393G Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62393K Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62393P Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62393S Other fracture of third metacarpal bone, left hand, sequela +S62394A Other fracture of fourth metacarpal bone, right hand, initial encounter for closed fracture +S62394B Other fracture of fourth metacarpal bone, right hand, initial encounter for open fracture +S62394D Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62394G Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62394K Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62394P Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62394S Other fracture of fourth metacarpal bone, right hand, sequela +S62395A Other fracture of fourth metacarpal bone, left hand, initial encounter for closed fracture +S62395B Other fracture of fourth metacarpal bone, left hand, initial encounter for open fracture +S62395D Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62395G Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62395K Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62395P Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62395S Other fracture of fourth metacarpal bone, left hand, sequela +S62396A Other fracture of fifth metacarpal bone, right hand, initial encounter for closed fracture +S62396B Other fracture of fifth metacarpal bone, right hand, initial encounter for open fracture +S62396D Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing +S62396G Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing +S62396K Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +S62396P Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion +S62396S Other fracture of fifth metacarpal bone, right hand, sequela +S62397A Other fracture of fifth metacarpal bone, left hand, initial encounter for closed fracture +S62397B Other fracture of fifth metacarpal bone, left hand, initial encounter for open fracture +S62397D Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing +S62397G Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing +S62397K Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +S62397P Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion +S62397S Other fracture of fifth metacarpal bone, left hand, sequela +S62398A Other fracture of other metacarpal bone, initial encounter for closed fracture +S62398B Other fracture of other metacarpal bone, initial encounter for open fracture +S62398D Other fracture of other metacarpal bone, subsequent encounter for fracture with routine healing +S62398G Other fracture of other metacarpal bone, subsequent encounter for fracture with delayed healing +S62398K Other fracture of other metacarpal bone, subsequent encounter for fracture with nonunion +S62398P Other fracture of other metacarpal bone, subsequent encounter for fracture with malunion +S62398S Other fracture of other metacarpal bone, sequela +S62399A Other fracture of unspecified metacarpal bone, initial encounter for closed fracture +S62399B Other fracture of unspecified metacarpal bone, initial encounter for open fracture +S62399D Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with routine healing +S62399G Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing +S62399K Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with nonunion +S62399P Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with malunion +S62399S Other fracture of unspecified metacarpal bone, sequela +S62501A Fracture of unspecified phalanx of right thumb, initial encounter for closed fracture +S62501B Fracture of unspecified phalanx of right thumb, initial encounter for open fracture +S62501D Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with routine healing +S62501G Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with delayed healing +S62501K Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with nonunion +S62501P Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with malunion +S62501S Fracture of unspecified phalanx of right thumb, sequela +S62502A Fracture of unspecified phalanx of left thumb, initial encounter for closed fracture +S62502B Fracture of unspecified phalanx of left thumb, initial encounter for open fracture +S62502D Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with routine healing +S62502G Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with delayed healing +S62502K Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with nonunion +S62502P Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with malunion +S62502S Fracture of unspecified phalanx of left thumb, sequela +S62509A Fracture of unspecified phalanx of unspecified thumb, initial encounter for closed fracture +S62509B Fracture of unspecified phalanx of unspecified thumb, initial encounter for open fracture +S62509D Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with routine healing +S62509G Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing +S62509K Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with nonunion +S62509P Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with malunion +S62509S Fracture of unspecified phalanx of unspecified thumb, sequela +S62511A Displaced fracture of proximal phalanx of right thumb, initial encounter for closed fracture +S62511B Displaced fracture of proximal phalanx of right thumb, initial encounter for open fracture +S62511D Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with routine healing +S62511G Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with delayed healing +S62511K Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with nonunion +S62511P Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with malunion +S62511S Displaced fracture of proximal phalanx of right thumb, sequela +S62512A Displaced fracture of proximal phalanx of left thumb, initial encounter for closed fracture +S62512B Displaced fracture of proximal phalanx of left thumb, initial encounter for open fracture +S62512D Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with routine healing +S62512G Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with delayed healing +S62512K Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with nonunion +S62512P Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with malunion +S62512S Displaced fracture of proximal phalanx of left thumb, sequela +S62513A Displaced fracture of proximal phalanx of unspecified thumb, initial encounter for closed fracture +S62513B Displaced fracture of proximal phalanx of unspecified thumb, initial encounter for open fracture +S62513D Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing +S62513G Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing +S62513K Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion +S62513P Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with malunion +S62513S Displaced fracture of proximal phalanx of unspecified thumb, sequela +S62514A Nondisplaced fracture of proximal phalanx of right thumb, initial encounter for closed fracture +S62514B Nondisplaced fracture of proximal phalanx of right thumb, initial encounter for open fracture +S62514D Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with routine healing +S62514G Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with delayed healing +S62514K Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with nonunion +S62514P Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with malunion +S62514S Nondisplaced fracture of proximal phalanx of right thumb, sequela +S62515A Nondisplaced fracture of proximal phalanx of left thumb, initial encounter for closed fracture +S62515B Nondisplaced fracture of proximal phalanx of left thumb, initial encounter for open fracture +S62515D Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with routine healing +S62515G Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with delayed healing +S62515K Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with nonunion +S62515P Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with malunion +S62515S Nondisplaced fracture of proximal phalanx of left thumb, sequela +S62516A Nondisplaced fracture of proximal phalanx of unspecified thumb, initial encounter for closed fracture +S62516B Nondisplaced fracture of proximal phalanx of unspecified thumb, initial encounter for open fracture +S62516D Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing +S62516G Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing +S62516K Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion +S62516P Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with malunion +S62516S Nondisplaced fracture of proximal phalanx of unspecified thumb, sequela +S62521A Displaced fracture of distal phalanx of right thumb, initial encounter for closed fracture +S62521B Displaced fracture of distal phalanx of right thumb, initial encounter for open fracture +S62521D Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with routine healing +S62521G Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with delayed healing +S62521K Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with nonunion +S62521P Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with malunion +S62521S Displaced fracture of distal phalanx of right thumb, sequela +S62522A Displaced fracture of distal phalanx of left thumb, initial encounter for closed fracture +S62522B Displaced fracture of distal phalanx of left thumb, initial encounter for open fracture +S62522D Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with routine healing +S62522G Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with delayed healing +S62522K Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with nonunion +S62522P Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with malunion +S62522S Displaced fracture of distal phalanx of left thumb, sequela +S62523A Displaced fracture of distal phalanx of unspecified thumb, initial encounter for closed fracture +S62523B Displaced fracture of distal phalanx of unspecified thumb, initial encounter for open fracture +S62523D Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing +S62523G Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing +S62523K Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion +S62523P Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with malunion +S62523S Displaced fracture of distal phalanx of unspecified thumb, sequela +S62524A Nondisplaced fracture of distal phalanx of right thumb, initial encounter for closed fracture +S62524B Nondisplaced fracture of distal phalanx of right thumb, initial encounter for open fracture +S62524D Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with routine healing +S62524G Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with delayed healing +S62524K Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with nonunion +S62524P Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with malunion +S62524S Nondisplaced fracture of distal phalanx of right thumb, sequela +S62525A Nondisplaced fracture of distal phalanx of left thumb, initial encounter for closed fracture +S62525B Nondisplaced fracture of distal phalanx of left thumb, initial encounter for open fracture +S62525D Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with routine healing +S62525G Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with delayed healing +S62525K Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with nonunion +S62525P Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with malunion +S62525S Nondisplaced fracture of distal phalanx of left thumb, sequela +S62526A Nondisplaced fracture of distal phalanx of unspecified thumb, initial encounter for closed fracture +S62526B Nondisplaced fracture of distal phalanx of unspecified thumb, initial encounter for open fracture +S62526D Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing +S62526G Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing +S62526K Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion +S62526P Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with malunion +S62526S Nondisplaced fracture of distal phalanx of unspecified thumb, sequela +S62600A Fracture of unspecified phalanx of right index finger, initial encounter for closed fracture +S62600B Fracture of unspecified phalanx of right index finger, initial encounter for open fracture +S62600D Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with routine healing +S62600G Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with delayed healing +S62600K Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with nonunion +S62600P Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with malunion +S62600S Fracture of unspecified phalanx of right index finger, sequela +S62601A Fracture of unspecified phalanx of left index finger, initial encounter for closed fracture +S62601B Fracture of unspecified phalanx of left index finger, initial encounter for open fracture +S62601D Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with routine healing +S62601G Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with delayed healing +S62601K Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with nonunion +S62601P Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with malunion +S62601S Fracture of unspecified phalanx of left index finger, sequela +S62602A Fracture of unspecified phalanx of right middle finger, initial encounter for closed fracture +S62602B Fracture of unspecified phalanx of right middle finger, initial encounter for open fracture +S62602D Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with routine healing +S62602G Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with delayed healing +S62602K Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with nonunion +S62602P Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with malunion +S62602S Fracture of unspecified phalanx of right middle finger, sequela +S62603A Fracture of unspecified phalanx of left middle finger, initial encounter for closed fracture +S62603B Fracture of unspecified phalanx of left middle finger, initial encounter for open fracture +S62603D Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with routine healing +S62603G Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with delayed healing +S62603K Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with nonunion +S62603P Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with malunion +S62603S Fracture of unspecified phalanx of left middle finger, sequela +S62604A Fracture of unspecified phalanx of right ring finger, initial encounter for closed fracture +S62604B Fracture of unspecified phalanx of right ring finger, initial encounter for open fracture +S62604D Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with routine healing +S62604G Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with delayed healing +S62604K Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with nonunion +S62604P Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with malunion +S62604S Fracture of unspecified phalanx of right ring finger, sequela +S62605A Fracture of unspecified phalanx of left ring finger, initial encounter for closed fracture +S62605B Fracture of unspecified phalanx of left ring finger, initial encounter for open fracture +S62605D Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with routine healing +S62605G Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with delayed healing +S62605K Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with nonunion +S62605P Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with malunion +S62605S Fracture of unspecified phalanx of left ring finger, sequela +S62606A Fracture of unspecified phalanx of right little finger, initial encounter for closed fracture +S62606B Fracture of unspecified phalanx of right little finger, initial encounter for open fracture +S62606D Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with routine healing +S62606G Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with delayed healing +S62606K Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with nonunion +S62606P Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with malunion +S62606S Fracture of unspecified phalanx of right little finger, sequela +S62607A Fracture of unspecified phalanx of left little finger, initial encounter for closed fracture +S62607B Fracture of unspecified phalanx of left little finger, initial encounter for open fracture +S62607D Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with routine healing +S62607G Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with delayed healing +S62607K Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with nonunion +S62607P Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with malunion +S62607S Fracture of unspecified phalanx of left little finger, sequela +S62608A Fracture of unspecified phalanx of other finger, initial encounter for closed fracture +S62608B Fracture of unspecified phalanx of other finger, initial encounter for open fracture +S62608D Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with routine healing +S62608G Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with delayed healing +S62608K Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with nonunion +S62608P Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with malunion +S62608S Fracture of unspecified phalanx of other finger, sequela +S62609A Fracture of unspecified phalanx of unspecified finger, initial encounter for closed fracture +S62609B Fracture of unspecified phalanx of unspecified finger, initial encounter for open fracture +S62609D Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with routine healing +S62609G Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with delayed healing +S62609K Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with nonunion +S62609P Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with malunion +S62609S Fracture of unspecified phalanx of unspecified finger, sequela +S62610A Displaced fracture of proximal phalanx of right index finger, initial encounter for closed fracture +S62610B Displaced fracture of proximal phalanx of right index finger, initial encounter for open fracture +S62610D Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with routine healing +S62610G Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with delayed healing +S62610K Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with nonunion +S62610P Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with malunion +S62610S Displaced fracture of proximal phalanx of right index finger, sequela +S62611A Displaced fracture of proximal phalanx of left index finger, initial encounter for closed fracture +S62611B Displaced fracture of proximal phalanx of left index finger, initial encounter for open fracture +S62611D Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with routine healing +S62611G Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with delayed healing +S62611K Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with nonunion +S62611P Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with malunion +S62611S Displaced fracture of proximal phalanx of left index finger, sequela +S62612A Displaced fracture of proximal phalanx of right middle finger, initial encounter for closed fracture +S62612B Displaced fracture of proximal phalanx of right middle finger, initial encounter for open fracture +S62612D Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with routine healing +S62612G Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with delayed healing +S62612K Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with nonunion +S62612P Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with malunion +S62612S Displaced fracture of proximal phalanx of right middle finger, sequela +S62613A Displaced fracture of proximal phalanx of left middle finger, initial encounter for closed fracture +S62613B Displaced fracture of proximal phalanx of left middle finger, initial encounter for open fracture +S62613D Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with routine healing +S62613G Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with delayed healing +S62613K Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with nonunion +S62613P Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with malunion +S62613S Displaced fracture of proximal phalanx of left middle finger, sequela +S62614A Displaced fracture of proximal phalanx of right ring finger, initial encounter for closed fracture +S62614B Displaced fracture of proximal phalanx of right ring finger, initial encounter for open fracture +S62614D Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with routine healing +S62614G Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with delayed healing +S62614K Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with nonunion +S62614P Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with malunion +S62614S Displaced fracture of proximal phalanx of right ring finger, sequela +S62615A Displaced fracture of proximal phalanx of left ring finger, initial encounter for closed fracture +S62615B Displaced fracture of proximal phalanx of left ring finger, initial encounter for open fracture +S62615D Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with routine healing +S62615G Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with delayed healing +S62615K Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with nonunion +S62615P Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with malunion +S62615S Displaced fracture of proximal phalanx of left ring finger, sequela +S62616A Displaced fracture of proximal phalanx of right little finger, initial encounter for closed fracture +S62616B Displaced fracture of proximal phalanx of right little finger, initial encounter for open fracture +S62616D Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with routine healing +S62616G Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with delayed healing +S62616K Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with nonunion +S62616P Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with malunion +S62616S Displaced fracture of proximal phalanx of right little finger, sequela +S62617A Displaced fracture of proximal phalanx of left little finger, initial encounter for closed fracture +S62617B Displaced fracture of proximal phalanx of left little finger, initial encounter for open fracture +S62617D Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with routine healing +S62617G Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with delayed healing +S62617K Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with nonunion +S62617P Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with malunion +S62617S Displaced fracture of proximal phalanx of left little finger, sequela +S62618A Displaced fracture of proximal phalanx of other finger, initial encounter for closed fracture +S62618B Displaced fracture of proximal phalanx of other finger, initial encounter for open fracture +S62618D Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with routine healing +S62618G Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with delayed healing +S62618K Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with nonunion +S62618P Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with malunion +S62618S Displaced fracture of proximal phalanx of other finger, sequela +S62619A Displaced fracture of proximal phalanx of unspecified finger, initial encounter for closed fracture +S62619B Displaced fracture of proximal phalanx of unspecified finger, initial encounter for open fracture +S62619D Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with routine healing +S62619G Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing +S62619K Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with nonunion +S62619P Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with malunion +S62619S Displaced fracture of proximal phalanx of unspecified finger, sequela +S62620A Displaced fracture of middle phalanx of right index finger, initial encounter for closed fracture +S62620B Displaced fracture of middle phalanx of right index finger, initial encounter for open fracture +S62620D Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with routine healing +S62620G Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with delayed healing +S62620K Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with nonunion +S62620P Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with malunion +S62620S Displaced fracture of middle phalanx of right index finger, sequela +S62621A Displaced fracture of middle phalanx of left index finger, initial encounter for closed fracture +S62621B Displaced fracture of middle phalanx of left index finger, initial encounter for open fracture +S62621D Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with routine healing +S62621G Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with delayed healing +S62621K Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with nonunion +S62621P Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with malunion +S62621S Displaced fracture of middle phalanx of left index finger, sequela +S62622A Displaced fracture of middle phalanx of right middle finger, initial encounter for closed fracture +S62622B Displaced fracture of middle phalanx of right middle finger, initial encounter for open fracture +S62622D Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with routine healing +S62622G Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with delayed healing +S62622K Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with nonunion +S62622P Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with malunion +S62622S Displaced fracture of middle phalanx of right middle finger, sequela +S62623A Displaced fracture of middle phalanx of left middle finger, initial encounter for closed fracture +S62623B Displaced fracture of middle phalanx of left middle finger, initial encounter for open fracture +S62623D Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with routine healing +S62623G Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with delayed healing +S62623K Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with nonunion +S62623P Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with malunion +S62623S Displaced fracture of middle phalanx of left middle finger, sequela +S62624A Displaced fracture of middle phalanx of right ring finger, initial encounter for closed fracture +S62624B Displaced fracture of middle phalanx of right ring finger, initial encounter for open fracture +S62624D Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with routine healing +S62624G Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with delayed healing +S62624K Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with nonunion +S62624P Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with malunion +S62624S Displaced fracture of middle phalanx of right ring finger, sequela +S62625A Displaced fracture of middle phalanx of left ring finger, initial encounter for closed fracture +S62625B Displaced fracture of middle phalanx of left ring finger, initial encounter for open fracture +S62625D Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with routine healing +S62625G Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with delayed healing +S62625K Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with nonunion +S62625P Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with malunion +S62625S Displaced fracture of middle phalanx of left ring finger, sequela +S62626A Displaced fracture of middle phalanx of right little finger, initial encounter for closed fracture +S62626B Displaced fracture of middle phalanx of right little finger, initial encounter for open fracture +S62626D Displaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with routine healing +S62626G Displaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with delayed healing +S62626K Displaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with nonunion +S62626P Displaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with malunion +S62626S Displaced fracture of middle phalanx of right little finger, sequela +S62627A Displaced fracture of middle phalanx of left little finger, initial encounter for closed fracture +S62627B Displaced fracture of middle phalanx of left little finger, initial encounter for open fracture +S62627D Displaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with routine healing +S62627G Displaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with delayed healing +S62627K Displaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with nonunion +S62627P Displaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with malunion +S62627S Displaced fracture of middle phalanx of left little finger, sequela +S62628A Displaced fracture of middle phalanx of other finger, initial encounter for closed fracture +S62628B Displaced fracture of middle phalanx of other finger, initial encounter for open fracture +S62628D Displaced fracture of middle phalanx of other finger, subsequent encounter for fracture with routine healing +S62628G Displaced fracture of middle phalanx of other finger, subsequent encounter for fracture with delayed healing +S62628K Displaced fracture of middle phalanx of other finger, subsequent encounter for fracture with nonunion +S62628P Displaced fracture of middle phalanx of other finger, subsequent encounter for fracture with malunion +S62628S Displaced fracture of middle phalanx of other finger, sequela +S62629A Displaced fracture of middle phalanx of unspecified finger, initial encounter for closed fracture +S62629B Displaced fracture of middle phalanx of unspecified finger, initial encounter for open fracture +S62629D Displaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with routine healing +S62629G Displaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with delayed healing +S62629K Displaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with nonunion +S62629P Displaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with malunion +S62629S Displaced fracture of middle phalanx of unspecified finger, sequela +S62630A Displaced fracture of distal phalanx of right index finger, initial encounter for closed fracture +S62630B Displaced fracture of distal phalanx of right index finger, initial encounter for open fracture +S62630D Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with routine healing +S62630G Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with delayed healing +S62630K Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with nonunion +S62630P Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with malunion +S62630S Displaced fracture of distal phalanx of right index finger, sequela +S62631A Displaced fracture of distal phalanx of left index finger, initial encounter for closed fracture +S62631B Displaced fracture of distal phalanx of left index finger, initial encounter for open fracture +S62631D Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with routine healing +S62631G Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with delayed healing +S62631K Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with nonunion +S62631P Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with malunion +S62631S Displaced fracture of distal phalanx of left index finger, sequela +S62632A Displaced fracture of distal phalanx of right middle finger, initial encounter for closed fracture +S62632B Displaced fracture of distal phalanx of right middle finger, initial encounter for open fracture +S62632D Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with routine healing +S62632G Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with delayed healing +S62632K Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with nonunion +S62632P Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with malunion +S62632S Displaced fracture of distal phalanx of right middle finger, sequela +S62633A Displaced fracture of distal phalanx of left middle finger, initial encounter for closed fracture +S62633B Displaced fracture of distal phalanx of left middle finger, initial encounter for open fracture +S62633D Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with routine healing +S62633G Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with delayed healing +S62633K Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with nonunion +S62633P Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with malunion +S62633S Displaced fracture of distal phalanx of left middle finger, sequela +S62634A Displaced fracture of distal phalanx of right ring finger, initial encounter for closed fracture +S62634B Displaced fracture of distal phalanx of right ring finger, initial encounter for open fracture +S62634D Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with routine healing +S62634G Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with delayed healing +S62634K Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with nonunion +S62634P Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with malunion +S62634S Displaced fracture of distal phalanx of right ring finger, sequela +S62635A Displaced fracture of distal phalanx of left ring finger, initial encounter for closed fracture +S62635B Displaced fracture of distal phalanx of left ring finger, initial encounter for open fracture +S62635D Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with routine healing +S62635G Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with delayed healing +S62635K Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with nonunion +S62635P Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with malunion +S62635S Displaced fracture of distal phalanx of left ring finger, sequela +S62636A Displaced fracture of distal phalanx of right little finger, initial encounter for closed fracture +S62636B Displaced fracture of distal phalanx of right little finger, initial encounter for open fracture +S62636D Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with routine healing +S62636G Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with delayed healing +S62636K Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with nonunion +S62636P Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with malunion +S62636S Displaced fracture of distal phalanx of right little finger, sequela +S62637A Displaced fracture of distal phalanx of left little finger, initial encounter for closed fracture +S62637B Displaced fracture of distal phalanx of left little finger, initial encounter for open fracture +S62637D Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with routine healing +S62637G Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with delayed healing +S62637K Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with nonunion +S62637P Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with malunion +S62637S Displaced fracture of distal phalanx of left little finger, sequela +S62638A Displaced fracture of distal phalanx of other finger, initial encounter for closed fracture +S62638B Displaced fracture of distal phalanx of other finger, initial encounter for open fracture +S62638D Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with routine healing +S62638G Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with delayed healing +S62638K Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with nonunion +S62638P Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with malunion +S62638S Displaced fracture of distal phalanx of other finger, sequela +S62639A Displaced fracture of distal phalanx of unspecified finger, initial encounter for closed fracture +S62639B Displaced fracture of distal phalanx of unspecified finger, initial encounter for open fracture +S62639D Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with routine healing +S62639G Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing +S62639K Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with nonunion +S62639P Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with malunion +S62639S Displaced fracture of distal phalanx of unspecified finger, sequela +S62640A Nondisplaced fracture of proximal phalanx of right index finger, initial encounter for closed fracture +S62640B Nondisplaced fracture of proximal phalanx of right index finger, initial encounter for open fracture +S62640D Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with routine healing +S62640G Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with delayed healing +S62640K Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with nonunion +S62640P Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with malunion +S62640S Nondisplaced fracture of proximal phalanx of right index finger, sequela +S62641A Nondisplaced fracture of proximal phalanx of left index finger, initial encounter for closed fracture +S62641B Nondisplaced fracture of proximal phalanx of left index finger, initial encounter for open fracture +S62641D Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with routine healing +S62641G Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with delayed healing +S62641K Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with nonunion +S62641P Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with malunion +S62641S Nondisplaced fracture of proximal phalanx of left index finger, sequela +S62642A Nondisplaced fracture of proximal phalanx of right middle finger, initial encounter for closed fracture +S62642B Nondisplaced fracture of proximal phalanx of right middle finger, initial encounter for open fracture +S62642D Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with routine healing +S62642G Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with delayed healing +S62642K Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with nonunion +S62642P Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with malunion +S62642S Nondisplaced fracture of proximal phalanx of right middle finger, sequela +S62643A Nondisplaced fracture of proximal phalanx of left middle finger, initial encounter for closed fracture +S62643B Nondisplaced fracture of proximal phalanx of left middle finger, initial encounter for open fracture +S62643D Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with routine healing +S62643G Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with delayed healing +S62643K Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with nonunion +S62643P Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with malunion +S62643S Nondisplaced fracture of proximal phalanx of left middle finger, sequela +S62644A Nondisplaced fracture of proximal phalanx of right ring finger, initial encounter for closed fracture +S62644B Nondisplaced fracture of proximal phalanx of right ring finger, initial encounter for open fracture +S62644D Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with routine healing +S62644G Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with delayed healing +S62644K Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with nonunion +S62644P Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with malunion +S62644S Nondisplaced fracture of proximal phalanx of right ring finger, sequela +S62645A Nondisplaced fracture of proximal phalanx of left ring finger, initial encounter for closed fracture +S62645B Nondisplaced fracture of proximal phalanx of left ring finger, initial encounter for open fracture +S62645D Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with routine healing +S62645G Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with delayed healing +S62645K Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with nonunion +S62645P Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with malunion +S62645S Nondisplaced fracture of proximal phalanx of left ring finger, sequela +S62646A Nondisplaced fracture of proximal phalanx of right little finger, initial encounter for closed fracture +S62646B Nondisplaced fracture of proximal phalanx of right little finger, initial encounter for open fracture +S62646D Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with routine healing +S62646G Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with delayed healing +S62646K Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with nonunion +S62646P Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with malunion +S62646S Nondisplaced fracture of proximal phalanx of right little finger, sequela +S62647A Nondisplaced fracture of proximal phalanx of left little finger, initial encounter for closed fracture +S62647B Nondisplaced fracture of proximal phalanx of left little finger, initial encounter for open fracture +S62647D Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with routine healing +S62647G Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with delayed healing +S62647K Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with nonunion +S62647P Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with malunion +S62647S Nondisplaced fracture of proximal phalanx of left little finger, sequela +S62648A Nondisplaced fracture of proximal phalanx of other finger, initial encounter for closed fracture +S62648B Nondisplaced fracture of proximal phalanx of other finger, initial encounter for open fracture +S62648D Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with routine healing +S62648G Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with delayed healing +S62648K Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with nonunion +S62648P Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with malunion +S62648S Nondisplaced fracture of proximal phalanx of other finger, sequela +S62649A Nondisplaced fracture of proximal phalanx of unspecified finger, initial encounter for closed fracture +S62649B Nondisplaced fracture of proximal phalanx of unspecified finger, initial encounter for open fracture +S62649D Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with routine healing +S62649G Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing +S62649K Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with nonunion +S62649P Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with malunion +S62649S Nondisplaced fracture of proximal phalanx of unspecified finger, sequela +S62650A Nondisplaced fracture of middle phalanx of right index finger, initial encounter for closed fracture +S62650B Nondisplaced fracture of middle phalanx of right index finger, initial encounter for open fracture +S62650D Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with routine healing +S62650G Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with delayed healing +S62650K Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with nonunion +S62650P Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with malunion +S62650S Nondisplaced fracture of middle phalanx of right index finger, sequela +S62651A Nondisplaced fracture of middle phalanx of left index finger, initial encounter for closed fracture +S62651B Nondisplaced fracture of middle phalanx of left index finger, initial encounter for open fracture +S62651D Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with routine healing +S62651G Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with delayed healing +S62651K Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with nonunion +S62651P Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with malunion +S62651S Nondisplaced fracture of middle phalanx of left index finger, sequela +S62652A Nondisplaced fracture of middle phalanx of right middle finger, initial encounter for closed fracture +S62652B Nondisplaced fracture of middle phalanx of right middle finger, initial encounter for open fracture +S62652D Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with routine healing +S62652G Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with delayed healing +S62652K Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with nonunion +S62652P Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with malunion +S62652S Nondisplaced fracture of middle phalanx of right middle finger, sequela +S62653A Nondisplaced fracture of middle phalanx of left middle finger, initial encounter for closed fracture +S62653B Nondisplaced fracture of middle phalanx of left middle finger, initial encounter for open fracture +S62653D Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with routine healing +S62653G Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with delayed healing +S62653K Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with nonunion +S62653P Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with malunion +S62653S Nondisplaced fracture of middle phalanx of left middle finger, sequela +S62654A Nondisplaced fracture of middle phalanx of right ring finger, initial encounter for closed fracture +S62654B Nondisplaced fracture of middle phalanx of right ring finger, initial encounter for open fracture +S62654D Nondisplaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with routine healing +S62654G Nondisplaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with delayed healing +S62654K Nondisplaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with nonunion +S62654P Nondisplaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with malunion +S62654S Nondisplaced fracture of middle phalanx of right ring finger, sequela +S62655A Nondisplaced fracture of middle phalanx of left ring finger, initial encounter for closed fracture +S62655B Nondisplaced fracture of middle phalanx of left ring finger, initial encounter for open fracture +S62655D Nondisplaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with routine healing +S62655G Nondisplaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with delayed healing +S62655K Nondisplaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with nonunion +S62655P Nondisplaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with malunion +S62655S Nondisplaced fracture of middle phalanx of left ring finger, sequela +S62656A Nondisplaced fracture of middle phalanx of right little finger, initial encounter for closed fracture +S62656B Nondisplaced fracture of middle phalanx of right little finger, initial encounter for open fracture +S62656D Nondisplaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with routine healing +S62656G Nondisplaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with delayed healing +S62656K Nondisplaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with nonunion +S62656P Nondisplaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with malunion +S62656S Nondisplaced fracture of middle phalanx of right little finger, sequela +S62657A Nondisplaced fracture of middle phalanx of left little finger, initial encounter for closed fracture +S62657B Nondisplaced fracture of middle phalanx of left little finger, initial encounter for open fracture +S62657D Nondisplaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with routine healing +S62657G Nondisplaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with delayed healing +S62657K Nondisplaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with nonunion +S62657P Nondisplaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with malunion +S62657S Nondisplaced fracture of middle phalanx of left little finger, sequela +S62658A Nondisplaced fracture of middle phalanx of other finger, initial encounter for closed fracture +S62658B Nondisplaced fracture of middle phalanx of other finger, initial encounter for open fracture +S62658D Nondisplaced fracture of middle phalanx of other finger, subsequent encounter for fracture with routine healing +S62658G Nondisplaced fracture of middle phalanx of other finger, subsequent encounter for fracture with delayed healing +S62658K Nondisplaced fracture of middle phalanx of other finger, subsequent encounter for fracture with nonunion +S62658P Nondisplaced fracture of middle phalanx of other finger, subsequent encounter for fracture with malunion +S62658S Nondisplaced fracture of middle phalanx of other finger, sequela +S62659A Nondisplaced fracture of middle phalanx of unspecified finger, initial encounter for closed fracture +S62659B Nondisplaced fracture of middle phalanx of unspecified finger, initial encounter for open fracture +S62659D Nondisplaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with routine healing +S62659G Nondisplaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with delayed healing +S62659K Nondisplaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with nonunion +S62659P Nondisplaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with malunion +S62659S Nondisplaced fracture of middle phalanx of unspecified finger, sequela +S62660A Nondisplaced fracture of distal phalanx of right index finger, initial encounter for closed fracture +S62660B Nondisplaced fracture of distal phalanx of right index finger, initial encounter for open fracture +S62660D Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with routine healing +S62660G Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with delayed healing +S62660K Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with nonunion +S62660P Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with malunion +S62660S Nondisplaced fracture of distal phalanx of right index finger, sequela +S62661A Nondisplaced fracture of distal phalanx of left index finger, initial encounter for closed fracture +S62661B Nondisplaced fracture of distal phalanx of left index finger, initial encounter for open fracture +S62661D Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with routine healing +S62661G Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with delayed healing +S62661K Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with nonunion +S62661P Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with malunion +S62661S Nondisplaced fracture of distal phalanx of left index finger, sequela +S62662A Nondisplaced fracture of distal phalanx of right middle finger, initial encounter for closed fracture +S62662B Nondisplaced fracture of distal phalanx of right middle finger, initial encounter for open fracture +S62662D Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with routine healing +S62662G Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with delayed healing +S62662K Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with nonunion +S62662P Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with malunion +S62662S Nondisplaced fracture of distal phalanx of right middle finger, sequela +S62663A Nondisplaced fracture of distal phalanx of left middle finger, initial encounter for closed fracture +S62663B Nondisplaced fracture of distal phalanx of left middle finger, initial encounter for open fracture +S62663D Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with routine healing +S62663G Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with delayed healing +S62663K Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with nonunion +S62663P Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with malunion +S62663S Nondisplaced fracture of distal phalanx of left middle finger, sequela +S62664A Nondisplaced fracture of distal phalanx of right ring finger, initial encounter for closed fracture +S62664B Nondisplaced fracture of distal phalanx of right ring finger, initial encounter for open fracture +S62664D Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with routine healing +S62664G Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with delayed healing +S62664K Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with nonunion +S62664P Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with malunion +S62664S Nondisplaced fracture of distal phalanx of right ring finger, sequela +S62665A Nondisplaced fracture of distal phalanx of left ring finger, initial encounter for closed fracture +S62665B Nondisplaced fracture of distal phalanx of left ring finger, initial encounter for open fracture +S62665D Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with routine healing +S62665G Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with delayed healing +S62665K Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with nonunion +S62665P Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with malunion +S62665S Nondisplaced fracture of distal phalanx of left ring finger, sequela +S62666A Nondisplaced fracture of distal phalanx of right little finger, initial encounter for closed fracture +S62666B Nondisplaced fracture of distal phalanx of right little finger, initial encounter for open fracture +S62666D Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with routine healing +S62666G Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with delayed healing +S62666K Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with nonunion +S62666P Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with malunion +S62666S Nondisplaced fracture of distal phalanx of right little finger, sequela +S62667A Nondisplaced fracture of distal phalanx of left little finger, initial encounter for closed fracture +S62667B Nondisplaced fracture of distal phalanx of left little finger, initial encounter for open fracture +S62667D Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with routine healing +S62667G Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with delayed healing +S62667K Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with nonunion +S62667P Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with malunion +S62667S Nondisplaced fracture of distal phalanx of left little finger, sequela +S62668A Nondisplaced fracture of distal phalanx of other finger, initial encounter for closed fracture +S62668B Nondisplaced fracture of distal phalanx of other finger, initial encounter for open fracture +S62668D Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with routine healing +S62668G Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with delayed healing +S62668K Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with nonunion +S62668P Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with malunion +S62668S Nondisplaced fracture of distal phalanx of other finger, sequela +S62669A Nondisplaced fracture of distal phalanx of unspecified finger, initial encounter for closed fracture +S62669B Nondisplaced fracture of distal phalanx of unspecified finger, initial encounter for open fracture +S62669D Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with routine healing +S62669G Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing +S62669K Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with nonunion +S62669P Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with malunion +S62669S Nondisplaced fracture of distal phalanx of unspecified finger, sequela +S6290XA Unspecified fracture of unspecified wrist and hand, initial encounter for closed fracture +S6290XB Unspecified fracture of unspecified wrist and hand, initial encounter for open fracture +S6290XD Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with routine healing +S6290XG Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with delayed healing +S6290XK Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with nonunion +S6290XP Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with malunion +S6290XS Unspecified fracture of unspecified wrist and hand, sequela +S6291XA Unspecified fracture of right wrist and hand, initial encounter for closed fracture +S6291XB Unspecified fracture of right wrist and hand, initial encounter for open fracture +S6291XD Unspecified fracture of right wrist and hand, subsequent encounter for fracture with routine healing +S6291XG Unspecified fracture of right wrist and hand, subsequent encounter for fracture with delayed healing +S6291XK Unspecified fracture of right wrist and hand, subsequent encounter for fracture with nonunion +S6291XP Unspecified fracture of right wrist and hand, subsequent encounter for fracture with malunion +S6291XS Unspecified fracture of right wrist and hand, sequela +S6292XA Unspecified fracture of left wrist and hand, initial encounter for closed fracture +S6292XB Unspecified fracture of left wrist and hand, initial encounter for open fracture +S6292XD Unspecified fracture of left wrist and hand, subsequent encounter for fracture with routine healing +S6292XG Unspecified fracture of left wrist and hand, subsequent encounter for fracture with delayed healing +S6292XK Unspecified fracture of left wrist and hand, subsequent encounter for fracture with nonunion +S6292XP Unspecified fracture of left wrist and hand, subsequent encounter for fracture with malunion +S6292XS Unspecified fracture of left wrist and hand, sequela +S63001A Unspecified subluxation of right wrist and hand, initial encounter +S63001D Unspecified subluxation of right wrist and hand, subsequent encounter +S63001S Unspecified subluxation of right wrist and hand, sequela +S63002A Unspecified subluxation of left wrist and hand, initial encounter +S63002D Unspecified subluxation of left wrist and hand, subsequent encounter +S63002S Unspecified subluxation of left wrist and hand, sequela +S63003A Unspecified subluxation of unspecified wrist and hand, initial encounter +S63003D Unspecified subluxation of unspecified wrist and hand, subsequent encounter +S63003S Unspecified subluxation of unspecified wrist and hand, sequela +S63004A Unspecified dislocation of right wrist and hand, initial encounter +S63004D Unspecified dislocation of right wrist and hand, subsequent encounter +S63004S Unspecified dislocation of right wrist and hand, sequela +S63005A Unspecified dislocation of left wrist and hand, initial encounter +S63005D Unspecified dislocation of left wrist and hand, subsequent encounter +S63005S Unspecified dislocation of left wrist and hand, sequela +S63006A Unspecified dislocation of unspecified wrist and hand, initial encounter +S63006D Unspecified dislocation of unspecified wrist and hand, subsequent encounter +S63006S Unspecified dislocation of unspecified wrist and hand, sequela +S63011A Subluxation of distal radioulnar joint of right wrist, initial encounter +S63011D Subluxation of distal radioulnar joint of right wrist, subsequent encounter +S63011S Subluxation of distal radioulnar joint of right wrist, sequela +S63012A Subluxation of distal radioulnar joint of left wrist, initial encounter +S63012D Subluxation of distal radioulnar joint of left wrist, subsequent encounter +S63012S Subluxation of distal radioulnar joint of left wrist, sequela +S63013A Subluxation of distal radioulnar joint of unspecified wrist, initial encounter +S63013D Subluxation of distal radioulnar joint of unspecified wrist, subsequent encounter +S63013S Subluxation of distal radioulnar joint of unspecified wrist, sequela +S63014A Dislocation of distal radioulnar joint of right wrist, initial encounter +S63014D Dislocation of distal radioulnar joint of right wrist, subsequent encounter +S63014S Dislocation of distal radioulnar joint of right wrist, sequela +S63015A Dislocation of distal radioulnar joint of left wrist, initial encounter +S63015D Dislocation of distal radioulnar joint of left wrist, subsequent encounter +S63015S Dislocation of distal radioulnar joint of left wrist, sequela +S63016A Dislocation of distal radioulnar joint of unspecified wrist, initial encounter +S63016D Dislocation of distal radioulnar joint of unspecified wrist, subsequent encounter +S63016S Dislocation of distal radioulnar joint of unspecified wrist, sequela +S63021A Subluxation of radiocarpal joint of right wrist, initial encounter +S63021D Subluxation of radiocarpal joint of right wrist, subsequent encounter +S63021S Subluxation of radiocarpal joint of right wrist, sequela +S63022A Subluxation of radiocarpal joint of left wrist, initial encounter +S63022D Subluxation of radiocarpal joint of left wrist, subsequent encounter +S63022S Subluxation of radiocarpal joint of left wrist, sequela +S63023A Subluxation of radiocarpal joint of unspecified wrist, initial encounter +S63023D Subluxation of radiocarpal joint of unspecified wrist, subsequent encounter +S63023S Subluxation of radiocarpal joint of unspecified wrist, sequela +S63024A Dislocation of radiocarpal joint of right wrist, initial encounter +S63024D Dislocation of radiocarpal joint of right wrist, subsequent encounter +S63024S Dislocation of radiocarpal joint of right wrist, sequela +S63025A Dislocation of radiocarpal joint of left wrist, initial encounter +S63025D Dislocation of radiocarpal joint of left wrist, subsequent encounter +S63025S Dislocation of radiocarpal joint of left wrist, sequela +S63026A Dislocation of radiocarpal joint of unspecified wrist, initial encounter +S63026D Dislocation of radiocarpal joint of unspecified wrist, subsequent encounter +S63026S Dislocation of radiocarpal joint of unspecified wrist, sequela +S63031A Subluxation of midcarpal joint of right wrist, initial encounter +S63031D Subluxation of midcarpal joint of right wrist, subsequent encounter +S63031S Subluxation of midcarpal joint of right wrist, sequela +S63032A Subluxation of midcarpal joint of left wrist, initial encounter +S63032D Subluxation of midcarpal joint of left wrist, subsequent encounter +S63032S Subluxation of midcarpal joint of left wrist, sequela +S63033A Subluxation of midcarpal joint of unspecified wrist, initial encounter +S63033D Subluxation of midcarpal joint of unspecified wrist, subsequent encounter +S63033S Subluxation of midcarpal joint of unspecified wrist, sequela +S63034A Dislocation of midcarpal joint of right wrist, initial encounter +S63034D Dislocation of midcarpal joint of right wrist, subsequent encounter +S63034S Dislocation of midcarpal joint of right wrist, sequela +S63035A Dislocation of midcarpal joint of left wrist, initial encounter +S63035D Dislocation of midcarpal joint of left wrist, subsequent encounter +S63035S Dislocation of midcarpal joint of left wrist, sequela +S63036A Dislocation of midcarpal joint of unspecified wrist, initial encounter +S63036D Dislocation of midcarpal joint of unspecified wrist, subsequent encounter +S63036S Dislocation of midcarpal joint of unspecified wrist, sequela +S63041A Subluxation of carpometacarpal joint of right thumb, initial encounter +S63041D Subluxation of carpometacarpal joint of right thumb, subsequent encounter +S63041S Subluxation of carpometacarpal joint of right thumb, sequela +S63042A Subluxation of carpometacarpal joint of left thumb, initial encounter +S63042D Subluxation of carpometacarpal joint of left thumb, subsequent encounter +S63042S Subluxation of carpometacarpal joint of left thumb, sequela +S63043A Subluxation of carpometacarpal joint of unspecified thumb, initial encounter +S63043D Subluxation of carpometacarpal joint of unspecified thumb, subsequent encounter +S63043S Subluxation of carpometacarpal joint of unspecified thumb, sequela +S63044A Dislocation of carpometacarpal joint of right thumb, initial encounter +S63044D Dislocation of carpometacarpal joint of right thumb, subsequent encounter +S63044S Dislocation of carpometacarpal joint of right thumb, sequela +S63045A Dislocation of carpometacarpal joint of left thumb, initial encounter +S63045D Dislocation of carpometacarpal joint of left thumb, subsequent encounter +S63045S Dislocation of carpometacarpal joint of left thumb, sequela +S63046A Dislocation of carpometacarpal joint of unspecified thumb, initial encounter +S63046D Dislocation of carpometacarpal joint of unspecified thumb, subsequent encounter +S63046S Dislocation of carpometacarpal joint of unspecified thumb, sequela +S63051A Subluxation of other carpometacarpal joint of right hand, initial encounter +S63051D Subluxation of other carpometacarpal joint of right hand, subsequent encounter +S63051S Subluxation of other carpometacarpal joint of right hand, sequela +S63052A Subluxation of other carpometacarpal joint of left hand, initial encounter +S63052D Subluxation of other carpometacarpal joint of left hand, subsequent encounter +S63052S Subluxation of other carpometacarpal joint of left hand, sequela +S63053A Subluxation of other carpometacarpal joint of unspecified hand, initial encounter +S63053D Subluxation of other carpometacarpal joint of unspecified hand, subsequent encounter +S63053S Subluxation of other carpometacarpal joint of unspecified hand, sequela +S63054A Dislocation of other carpometacarpal joint of right hand, initial encounter +S63054D Dislocation of other carpometacarpal joint of right hand, subsequent encounter +S63054S Dislocation of other carpometacarpal joint of right hand, sequela +S63055A Dislocation of other carpometacarpal joint of left hand, initial encounter +S63055D Dislocation of other carpometacarpal joint of left hand, subsequent encounter +S63055S Dislocation of other carpometacarpal joint of left hand, sequela +S63056A Dislocation of other carpometacarpal joint of unspecified hand, initial encounter +S63056D Dislocation of other carpometacarpal joint of unspecified hand, subsequent encounter +S63056S Dislocation of other carpometacarpal joint of unspecified hand, sequela +S63061A Subluxation of metacarpal (bone), proximal end of right hand, initial encounter +S63061D Subluxation of metacarpal (bone), proximal end of right hand, subsequent encounter +S63061S Subluxation of metacarpal (bone), proximal end of right hand, sequela +S63062A Subluxation of metacarpal (bone), proximal end of left hand, initial encounter +S63062D Subluxation of metacarpal (bone), proximal end of left hand, subsequent encounter +S63062S Subluxation of metacarpal (bone), proximal end of left hand, sequela +S63063A Subluxation of metacarpal (bone), proximal end of unspecified hand, initial encounter +S63063D Subluxation of metacarpal (bone), proximal end of unspecified hand, subsequent encounter +S63063S Subluxation of metacarpal (bone), proximal end of unspecified hand, sequela +S63064A Dislocation of metacarpal (bone), proximal end of right hand, initial encounter +S63064D Dislocation of metacarpal (bone), proximal end of right hand, subsequent encounter +S63064S Dislocation of metacarpal (bone), proximal end of right hand, sequela +S63065A Dislocation of metacarpal (bone), proximal end of left hand, initial encounter +S63065D Dislocation of metacarpal (bone), proximal end of left hand, subsequent encounter +S63065S Dislocation of metacarpal (bone), proximal end of left hand, sequela +S63066A Dislocation of metacarpal (bone), proximal end of unspecified hand, initial encounter +S63066D Dislocation of metacarpal (bone), proximal end of unspecified hand, subsequent encounter +S63066S Dislocation of metacarpal (bone), proximal end of unspecified hand, sequela +S63071A Subluxation of distal end of right ulna, initial encounter +S63071D Subluxation of distal end of right ulna, subsequent encounter +S63071S Subluxation of distal end of right ulna, sequela +S63072A Subluxation of distal end of left ulna, initial encounter +S63072D Subluxation of distal end of left ulna, subsequent encounter +S63072S Subluxation of distal end of left ulna, sequela +S63073A Subluxation of distal end of unspecified ulna, initial encounter +S63073D Subluxation of distal end of unspecified ulna, subsequent encounter +S63073S Subluxation of distal end of unspecified ulna, sequela +S63074A Dislocation of distal end of right ulna, initial encounter +S63074D Dislocation of distal end of right ulna, subsequent encounter +S63074S Dislocation of distal end of right ulna, sequela +S63075A Dislocation of distal end of left ulna, initial encounter +S63075D Dislocation of distal end of left ulna, subsequent encounter +S63075S Dislocation of distal end of left ulna, sequela +S63076A Dislocation of distal end of unspecified ulna, initial encounter +S63076D Dislocation of distal end of unspecified ulna, subsequent encounter +S63076S Dislocation of distal end of unspecified ulna, sequela +S63091A Other subluxation of right wrist and hand, initial encounter +S63091D Other subluxation of right wrist and hand, subsequent encounter +S63091S Other subluxation of right wrist and hand, sequela +S63092A Other subluxation of left wrist and hand, initial encounter +S63092D Other subluxation of left wrist and hand, subsequent encounter +S63092S Other subluxation of left wrist and hand, sequela +S63093A Other subluxation of unspecified wrist and hand, initial encounter +S63093D Other subluxation of unspecified wrist and hand, subsequent encounter +S63093S Other subluxation of unspecified wrist and hand, sequela +S63094A Other dislocation of right wrist and hand, initial encounter +S63094D Other dislocation of right wrist and hand, subsequent encounter +S63094S Other dislocation of right wrist and hand, sequela +S63095A Other dislocation of left wrist and hand, initial encounter +S63095D Other dislocation of left wrist and hand, subsequent encounter +S63095S Other dislocation of left wrist and hand, sequela +S63096A Other dislocation of unspecified wrist and hand, initial encounter +S63096D Other dislocation of unspecified wrist and hand, subsequent encounter +S63096S Other dislocation of unspecified wrist and hand, sequela +S63101A Unspecified subluxation of right thumb, initial encounter +S63101D Unspecified subluxation of right thumb, subsequent encounter +S63101S Unspecified subluxation of right thumb, sequela +S63102A Unspecified subluxation of left thumb, initial encounter +S63102D Unspecified subluxation of left thumb, subsequent encounter +S63102S Unspecified subluxation of left thumb, sequela +S63103A Unspecified subluxation of unspecified thumb, initial encounter +S63103D Unspecified subluxation of unspecified thumb, subsequent encounter +S63103S Unspecified subluxation of unspecified thumb, sequela +S63104A Unspecified dislocation of right thumb, initial encounter +S63104D Unspecified dislocation of right thumb, subsequent encounter +S63104S Unspecified dislocation of right thumb, sequela +S63105A Unspecified dislocation of left thumb, initial encounter +S63105D Unspecified dislocation of left thumb, subsequent encounter +S63105S Unspecified dislocation of left thumb, sequela +S63106A Unspecified dislocation of unspecified thumb, initial encounter +S63106D Unspecified dislocation of unspecified thumb, subsequent encounter +S63106S Unspecified dislocation of unspecified thumb, sequela +S63111A Subluxation of metacarpophalangeal joint of right thumb, initial encounter +S63111D Subluxation of metacarpophalangeal joint of right thumb, subsequent encounter +S63111S Subluxation of metacarpophalangeal joint of right thumb, sequela +S63112A Subluxation of metacarpophalangeal joint of left thumb, initial encounter +S63112D Subluxation of metacarpophalangeal joint of left thumb, subsequent encounter +S63112S Subluxation of metacarpophalangeal joint of left thumb, sequela +S63113A Subluxation of metacarpophalangeal joint of unspecified thumb, initial encounter +S63113D Subluxation of metacarpophalangeal joint of unspecified thumb, subsequent encounter +S63113S Subluxation of metacarpophalangeal joint of unspecified thumb, sequela +S63114A Dislocation of metacarpophalangeal joint of right thumb, initial encounter +S63114D Dislocation of metacarpophalangeal joint of right thumb, subsequent encounter +S63114S Dislocation of metacarpophalangeal joint of right thumb, sequela +S63115A Dislocation of metacarpophalangeal joint of left thumb, initial encounter +S63115D Dislocation of metacarpophalangeal joint of left thumb, subsequent encounter +S63115S Dislocation of metacarpophalangeal joint of left thumb, sequela +S63116A Dislocation of metacarpophalangeal joint of unspecified thumb, initial encounter +S63116D Dislocation of metacarpophalangeal joint of unspecified thumb, subsequent encounter +S63116S Dislocation of metacarpophalangeal joint of unspecified thumb, sequela +S63121A Subluxation of interphalangeal joint of right thumb, initial encounter +S63121D Subluxation of interphalangeal joint of right thumb, subsequent encounter +S63121S Subluxation of interphalangeal joint of right thumb, sequela +S63122A Subluxation of interphalangeal joint of left thumb, initial encounter +S63122D Subluxation of interphalangeal joint of left thumb, subsequent encounter +S63122S Subluxation of interphalangeal joint of left thumb, sequela +S63123A Subluxation of interphalangeal joint of thumb, initial encounter +S63123D Subluxation of interphalangeal joint of thumb, subsequent encounter +S63123S Subluxation of interphalangeal joint of thumb, sequela +S63124A Dislocation of interphalangeal joint of right thumb, initial encounter +S63124D Dislocation of interphalangeal joint of right thumb, subsequent encounter +S63124S Dislocation of interphalangeal joint of right thumb, sequela +S63125A Dislocation of interphalangeal joint of left thumb, initial encounter +S63125D Dislocation of interphalangeal joint of left thumb, subsequent encounter +S63125S Dislocation of interphalangeal joint of left thumb, sequela +S63126A Dislocation of interphalangeal joint of unspecified thumb, initial encounter +S63126D Dislocation of interphalangeal joint of unspecified thumb, subsequent encounter +S63126S Dislocation of interphalangeal joint of unspecified thumb, sequela +S63131A Subluxation of proximal interphalangeal joint of right thumb, initial encounter +S63131D Subluxation of proximal interphalangeal joint of right thumb, subsequent encounter +S63131S Subluxation of proximal interphalangeal joint of right thumb, sequela +S63132A Subluxation of proximal interphalangeal joint of left thumb, initial encounter +S63132D Subluxation of proximal interphalangeal joint of left thumb, subsequent encounter +S63132S Subluxation of proximal interphalangeal joint of left thumb, sequela +S63133A Subluxation of proximal interphalangeal joint of unspecified thumb, initial encounter +S63133D Subluxation of proximal interphalangeal joint of unspecified thumb, subsequent encounter +S63133S Subluxation of proximal interphalangeal joint of unspecified thumb, sequela +S63134A Dislocation of proximal interphalangeal joint of right thumb, initial encounter +S63134D Dislocation of proximal interphalangeal joint of right thumb, subsequent encounter +S63134S Dislocation of proximal interphalangeal joint of right thumb, sequela +S63135A Dislocation of proximal interphalangeal joint of left thumb, initial encounter +S63135D Dislocation of proximal interphalangeal joint of left thumb, subsequent encounter +S63135S Dislocation of proximal interphalangeal joint of left thumb, sequela +S63136A Dislocation of proximal interphalangeal joint of unspecified thumb, initial encounter +S63136D Dislocation of proximal interphalangeal joint of unspecified thumb, subsequent encounter +S63136S Dislocation of proximal interphalangeal joint of unspecified thumb, sequela +S63141A Subluxation of distal interphalangeal joint of right thumb, initial encounter +S63141D Subluxation of distal interphalangeal joint of right thumb, subsequent encounter +S63141S Subluxation of distal interphalangeal joint of right thumb, sequela +S63142A Subluxation of distal interphalangeal joint of left thumb, initial encounter +S63142D Subluxation of distal interphalangeal joint of left thumb, subsequent encounter +S63142S Subluxation of distal interphalangeal joint of left thumb, sequela +S63143A Subluxation of distal interphalangeal joint of unspecified thumb, initial encounter +S63143D Subluxation of distal interphalangeal joint of unspecified thumb, subsequent encounter +S63143S Subluxation of distal interphalangeal joint of unspecified thumb, sequela +S63144A Dislocation of distal interphalangeal joint of right thumb, initial encounter +S63144D Dislocation of distal interphalangeal joint of right thumb, subsequent encounter +S63144S Dislocation of distal interphalangeal joint of right thumb, sequela +S63145A Dislocation of distal interphalangeal joint of left thumb, initial encounter +S63145D Dislocation of distal interphalangeal joint of left thumb, subsequent encounter +S63145S Dislocation of distal interphalangeal joint of left thumb, sequela +S63146A Dislocation of distal interphalangeal joint of unspecified thumb, initial encounter +S63146D Dislocation of distal interphalangeal joint of unspecified thumb, subsequent encounter +S63146S Dislocation of distal interphalangeal joint of unspecified thumb, sequela +S63200A Unspecified subluxation of right index finger, initial encounter +S63200D Unspecified subluxation of right index finger, subsequent encounter +S63200S Unspecified subluxation of right index finger, sequela +S63201A Unspecified subluxation of left index finger, initial encounter +S63201D Unspecified subluxation of left index finger, subsequent encounter +S63201S Unspecified subluxation of left index finger, sequela +S63202A Unspecified subluxation of right middle finger, initial encounter +S63202D Unspecified subluxation of right middle finger, subsequent encounter +S63202S Unspecified subluxation of right middle finger, sequela +S63203A Unspecified subluxation of left middle finger, initial encounter +S63203D Unspecified subluxation of left middle finger, subsequent encounter +S63203S Unspecified subluxation of left middle finger, sequela +S63204A Unspecified subluxation of right ring finger, initial encounter +S63204D Unspecified subluxation of right ring finger, subsequent encounter +S63204S Unspecified subluxation of right ring finger, sequela +S63205A Unspecified subluxation of left ring finger, initial encounter +S63205D Unspecified subluxation of left ring finger, subsequent encounter +S63205S Unspecified subluxation of left ring finger, sequela +S63206A Unspecified subluxation of right little finger, initial encounter +S63206D Unspecified subluxation of right little finger, subsequent encounter +S63206S Unspecified subluxation of right little finger, sequela +S63207A Unspecified subluxation of left little finger, initial encounter +S63207D Unspecified subluxation of left little finger, subsequent encounter +S63207S Unspecified subluxation of left little finger, sequela +S63208A Unspecified subluxation of other finger, initial encounter +S63208D Unspecified subluxation of other finger, subsequent encounter +S63208S Unspecified subluxation of other finger, sequela +S63209A Unspecified subluxation of unspecified finger, initial encounter +S63209D Unspecified subluxation of unspecified finger, subsequent encounter +S63209S Unspecified subluxation of unspecified finger, sequela +S63210A Subluxation of metacarpophalangeal joint of right index finger, initial encounter +S63210D Subluxation of metacarpophalangeal joint of right index finger, subsequent encounter +S63210S Subluxation of metacarpophalangeal joint of right index finger, sequela +S63211A Subluxation of metacarpophalangeal joint of left index finger, initial encounter +S63211D Subluxation of metacarpophalangeal joint of left index finger, subsequent encounter +S63211S Subluxation of metacarpophalangeal joint of left index finger, sequela +S63212A Subluxation of metacarpophalangeal joint of right middle finger, initial encounter +S63212D Subluxation of metacarpophalangeal joint of right middle finger, subsequent encounter +S63212S Subluxation of metacarpophalangeal joint of right middle finger, sequela +S63213A Subluxation of metacarpophalangeal joint of left middle finger, initial encounter +S63213D Subluxation of metacarpophalangeal joint of left middle finger, subsequent encounter +S63213S Subluxation of metacarpophalangeal joint of left middle finger, sequela +S63214A Subluxation of metacarpophalangeal joint of right ring finger, initial encounter +S63214D Subluxation of metacarpophalangeal joint of right ring finger, subsequent encounter +S63214S Subluxation of metacarpophalangeal joint of right ring finger, sequela +S63215A Subluxation of metacarpophalangeal joint of left ring finger, initial encounter +S63215D Subluxation of metacarpophalangeal joint of left ring finger, subsequent encounter +S63215S Subluxation of metacarpophalangeal joint of left ring finger, sequela +S63216A Subluxation of metacarpophalangeal joint of right little finger, initial encounter +S63216D Subluxation of metacarpophalangeal joint of right little finger, subsequent encounter +S63216S Subluxation of metacarpophalangeal joint of right little finger, sequela +S63217A Subluxation of metacarpophalangeal joint of left little finger, initial encounter +S63217D Subluxation of metacarpophalangeal joint of left little finger, subsequent encounter +S63217S Subluxation of metacarpophalangeal joint of left little finger, sequela +S63218A Subluxation of metacarpophalangeal joint of other finger, initial encounter +S63218D Subluxation of metacarpophalangeal joint of other finger, subsequent encounter +S63218S Subluxation of metacarpophalangeal joint of other finger, sequela +S63219A Subluxation of metacarpophalangeal joint of unspecified finger, initial encounter +S63219D Subluxation of metacarpophalangeal joint of unspecified finger, subsequent encounter +S63219S Subluxation of metacarpophalangeal joint of unspecified finger, sequela +S63220A Subluxation of unspecified interphalangeal joint of right index finger, initial encounter +S63220D Subluxation of unspecified interphalangeal joint of right index finger, subsequent encounter +S63220S Subluxation of unspecified interphalangeal joint of right index finger, sequela +S63221A Subluxation of unspecified interphalangeal joint of left index finger, initial encounter +S63221D Subluxation of unspecified interphalangeal joint of left index finger, subsequent encounter +S63221S Subluxation of unspecified interphalangeal joint of left index finger, sequela +S63222A Subluxation of unspecified interphalangeal joint of right middle finger, initial encounter +S63222D Subluxation of unspecified interphalangeal joint of right middle finger, subsequent encounter +S63222S Subluxation of unspecified interphalangeal joint of right middle finger, sequela +S63223A Subluxation of unspecified interphalangeal joint of left middle finger, initial encounter +S63223D Subluxation of unspecified interphalangeal joint of left middle finger, subsequent encounter +S63223S Subluxation of unspecified interphalangeal joint of left middle finger, sequela +S63224A Subluxation of unspecified interphalangeal joint of right ring finger, initial encounter +S63224D Subluxation of unspecified interphalangeal joint of right ring finger, subsequent encounter +S63224S Subluxation of unspecified interphalangeal joint of right ring finger, sequela +S63225A Subluxation of unspecified interphalangeal joint of left ring finger, initial encounter +S63225D Subluxation of unspecified interphalangeal joint of left ring finger, subsequent encounter +S63225S Subluxation of unspecified interphalangeal joint of left ring finger, sequela +S63226A Subluxation of unspecified interphalangeal joint of right little finger, initial encounter +S63226D Subluxation of unspecified interphalangeal joint of right little finger, subsequent encounter +S63226S Subluxation of unspecified interphalangeal joint of right little finger, sequela +S63227A Subluxation of unspecified interphalangeal joint of left little finger, initial encounter +S63227D Subluxation of unspecified interphalangeal joint of left little finger, subsequent encounter +S63227S Subluxation of unspecified interphalangeal joint of left little finger, sequela +S63228A Subluxation of unspecified interphalangeal joint of other finger, initial encounter +S63228D Subluxation of unspecified interphalangeal joint of other finger, subsequent encounter +S63228S Subluxation of unspecified interphalangeal joint of other finger, sequela +S63229A Subluxation of unspecified interphalangeal joint of unspecified finger, initial encounter +S63229D Subluxation of unspecified interphalangeal joint of unspecified finger, subsequent encounter +S63229S Subluxation of unspecified interphalangeal joint of unspecified finger, sequela +S63230A Subluxation of proximal interphalangeal joint of right index finger, initial encounter +S63230D Subluxation of proximal interphalangeal joint of right index finger, subsequent encounter +S63230S Subluxation of proximal interphalangeal joint of right index finger, sequela +S63231A Subluxation of proximal interphalangeal joint of left index finger, initial encounter +S63231D Subluxation of proximal interphalangeal joint of left index finger, subsequent encounter +S63231S Subluxation of proximal interphalangeal joint of left index finger, sequela +S63232A Subluxation of proximal interphalangeal joint of right middle finger, initial encounter +S63232D Subluxation of proximal interphalangeal joint of right middle finger, subsequent encounter +S63232S Subluxation of proximal interphalangeal joint of right middle finger, sequela +S63233A Subluxation of proximal interphalangeal joint of left middle finger, initial encounter +S63233D Subluxation of proximal interphalangeal joint of left middle finger, subsequent encounter +S63233S Subluxation of proximal interphalangeal joint of left middle finger, sequela +S63234A Subluxation of proximal interphalangeal joint of right ring finger, initial encounter +S63234D Subluxation of proximal interphalangeal joint of right ring finger, subsequent encounter +S63234S Subluxation of proximal interphalangeal joint of right ring finger, sequela +S63235A Subluxation of proximal interphalangeal joint of left ring finger, initial encounter +S63235D Subluxation of proximal interphalangeal joint of left ring finger, subsequent encounter +S63235S Subluxation of proximal interphalangeal joint of left ring finger, sequela +S63236A Subluxation of proximal interphalangeal joint of right little finger, initial encounter +S63236D Subluxation of proximal interphalangeal joint of right little finger, subsequent encounter +S63236S Subluxation of proximal interphalangeal joint of right little finger, sequela +S63237A Subluxation of proximal interphalangeal joint of left little finger, initial encounter +S63237D Subluxation of proximal interphalangeal joint of left little finger, subsequent encounter +S63237S Subluxation of proximal interphalangeal joint of left little finger, sequela +S63238A Subluxation of proximal interphalangeal joint of other finger, initial encounter +S63238D Subluxation of proximal interphalangeal joint of other finger, subsequent encounter +S63238S Subluxation of proximal interphalangeal joint of other finger, sequela +S63239A Subluxation of proximal interphalangeal joint of unspecified finger, initial encounter +S63239D Subluxation of proximal interphalangeal joint of unspecified finger, subsequent encounter +S63239S Subluxation of proximal interphalangeal joint of unspecified finger, sequela +S63240A Subluxation of distal interphalangeal joint of right index finger, initial encounter +S63240D Subluxation of distal interphalangeal joint of right index finger, subsequent encounter +S63240S Subluxation of distal interphalangeal joint of right index finger, sequela +S63241A Subluxation of distal interphalangeal joint of left index finger, initial encounter +S63241D Subluxation of distal interphalangeal joint of left index finger, subsequent encounter +S63241S Subluxation of distal interphalangeal joint of left index finger, sequela +S63242A Subluxation of distal interphalangeal joint of right middle finger, initial encounter +S63242D Subluxation of distal interphalangeal joint of right middle finger, subsequent encounter +S63242S Subluxation of distal interphalangeal joint of right middle finger, sequela +S63243A Subluxation of distal interphalangeal joint of left middle finger, initial encounter +S63243D Subluxation of distal interphalangeal joint of left middle finger, subsequent encounter +S63243S Subluxation of distal interphalangeal joint of left middle finger, sequela +S63244A Subluxation of distal interphalangeal joint of right ring finger, initial encounter +S63244D Subluxation of distal interphalangeal joint of right ring finger, subsequent encounter +S63244S Subluxation of distal interphalangeal joint of right ring finger, sequela +S63245A Subluxation of distal interphalangeal joint of left ring finger, initial encounter +S63245D Subluxation of distal interphalangeal joint of left ring finger, subsequent encounter +S63245S Subluxation of distal interphalangeal joint of left ring finger, sequela +S63246A Subluxation of distal interphalangeal joint of right little finger, initial encounter +S63246D Subluxation of distal interphalangeal joint of right little finger, subsequent encounter +S63246S Subluxation of distal interphalangeal joint of right little finger, sequela +S63247A Subluxation of distal interphalangeal joint of left little finger, initial encounter +S63247D Subluxation of distal interphalangeal joint of left little finger, subsequent encounter +S63247S Subluxation of distal interphalangeal joint of left little finger, sequela +S63248A Subluxation of distal interphalangeal joint of other finger, initial encounter +S63248D Subluxation of distal interphalangeal joint of other finger, subsequent encounter +S63248S Subluxation of distal interphalangeal joint of other finger, sequela +S63249A Subluxation of distal interphalangeal joint of unspecified finger, initial encounter +S63249D Subluxation of distal interphalangeal joint of unspecified finger, subsequent encounter +S63249S Subluxation of distal interphalangeal joint of unspecified finger, sequela +S63250A Unspecified dislocation of right index finger, initial encounter +S63250D Unspecified dislocation of right index finger, subsequent encounter +S63250S Unspecified dislocation of right index finger, sequela +S63251A Unspecified dislocation of left index finger, initial encounter +S63251D Unspecified dislocation of left index finger, subsequent encounter +S63251S Unspecified dislocation of left index finger, sequela +S63252A Unspecified dislocation of right middle finger, initial encounter +S63252D Unspecified dislocation of right middle finger, subsequent encounter +S63252S Unspecified dislocation of right middle finger, sequela +S63253A Unspecified dislocation of left middle finger, initial encounter +S63253D Unspecified dislocation of left middle finger, subsequent encounter +S63253S Unspecified dislocation of left middle finger, sequela +S63254A Unspecified dislocation of right ring finger, initial encounter +S63254D Unspecified dislocation of right ring finger, subsequent encounter +S63254S Unspecified dislocation of right ring finger, sequela +S63255A Unspecified dislocation of left ring finger, initial encounter +S63255D Unspecified dislocation of left ring finger, subsequent encounter +S63255S Unspecified dislocation of left ring finger, sequela +S63256A Unspecified dislocation of right little finger, initial encounter +S63256D Unspecified dislocation of right little finger, subsequent encounter +S63256S Unspecified dislocation of right little finger, sequela +S63257A Unspecified dislocation of left little finger, initial encounter +S63257D Unspecified dislocation of left little finger, subsequent encounter +S63257S Unspecified dislocation of left little finger, sequela +S63258A Unspecified dislocation of other finger, initial encounter +S63258D Unspecified dislocation of other finger, subsequent encounter +S63258S Unspecified dislocation of other finger, sequela +S63259A Unspecified dislocation of unspecified finger, initial encounter +S63259D Unspecified dislocation of unspecified finger, subsequent encounter +S63259S Unspecified dislocation of unspecified finger, sequela +S63260A Dislocation of metacarpophalangeal joint of right index finger, initial encounter +S63260D Dislocation of metacarpophalangeal joint of right index finger, subsequent encounter +S63260S Dislocation of metacarpophalangeal joint of right index finger, sequela +S63261A Dislocation of metacarpophalangeal joint of left index finger, initial encounter +S63261D Dislocation of metacarpophalangeal joint of left index finger, subsequent encounter +S63261S Dislocation of metacarpophalangeal joint of left index finger, sequela +S63262A Dislocation of metacarpophalangeal joint of right middle finger, initial encounter +S63262D Dislocation of metacarpophalangeal joint of right middle finger, subsequent encounter +S63262S Dislocation of metacarpophalangeal joint of right middle finger, sequela +S63263A Dislocation of metacarpophalangeal joint of left middle finger, initial encounter +S63263D Dislocation of metacarpophalangeal joint of left middle finger, subsequent encounter +S63263S Dislocation of metacarpophalangeal joint of left middle finger, sequela +S63264A Dislocation of metacarpophalangeal joint of right ring finger, initial encounter +S63264D Dislocation of metacarpophalangeal joint of right ring finger, subsequent encounter +S63264S Dislocation of metacarpophalangeal joint of right ring finger, sequela +S63265A Dislocation of metacarpophalangeal joint of left ring finger, initial encounter +S63265D Dislocation of metacarpophalangeal joint of left ring finger, subsequent encounter +S63265S Dislocation of metacarpophalangeal joint of left ring finger, sequela +S63266A Dislocation of metacarpophalangeal joint of right little finger, initial encounter +S63266D Dislocation of metacarpophalangeal joint of right little finger, subsequent encounter +S63266S Dislocation of metacarpophalangeal joint of right little finger, sequela +S63267A Dislocation of metacarpophalangeal joint of left little finger, initial encounter +S63267D Dislocation of metacarpophalangeal joint of left little finger, subsequent encounter +S63267S Dislocation of metacarpophalangeal joint of left little finger, sequela +S63268A Dislocation of metacarpophalangeal joint of other finger, initial encounter +S63268D Dislocation of metacarpophalangeal joint of other finger, subsequent encounter +S63268S Dislocation of metacarpophalangeal joint of other finger, sequela +S63269A Dislocation of metacarpophalangeal joint of unspecified finger, initial encounter +S63269D Dislocation of metacarpophalangeal joint of unspecified finger, subsequent encounter +S63269S Dislocation of metacarpophalangeal joint of unspecified finger, sequela +S63270A Dislocation of unspecified interphalangeal joint of right index finger, initial encounter +S63270D Dislocation of unspecified interphalangeal joint of right index finger, subsequent encounter +S63270S Dislocation of unspecified interphalangeal joint of right index finger, sequela +S63271A Dislocation of unspecified interphalangeal joint of left index finger, initial encounter +S63271D Dislocation of unspecified interphalangeal joint of left index finger, subsequent encounter +S63271S Dislocation of unspecified interphalangeal joint of left index finger, sequela +S63272A Dislocation of unspecified interphalangeal joint of right middle finger, initial encounter +S63272D Dislocation of unspecified interphalangeal joint of right middle finger, subsequent encounter +S63272S Dislocation of unspecified interphalangeal joint of right middle finger, sequela +S63273A Dislocation of unspecified interphalangeal joint of left middle finger, initial encounter +S63273D Dislocation of unspecified interphalangeal joint of left middle finger, subsequent encounter +S63273S Dislocation of unspecified interphalangeal joint of left middle finger, sequela +S63274A Dislocation of unspecified interphalangeal joint of right ring finger, initial encounter +S63274D Dislocation of unspecified interphalangeal joint of right ring finger, subsequent encounter +S63274S Dislocation of unspecified interphalangeal joint of right ring finger, sequela +S63275A Dislocation of unspecified interphalangeal joint of left ring finger, initial encounter +S63275D Dislocation of unspecified interphalangeal joint of left ring finger, subsequent encounter +S63275S Dislocation of unspecified interphalangeal joint of left ring finger, sequela +S63276A Dislocation of unspecified interphalangeal joint of right little finger, initial encounter +S63276D Dislocation of unspecified interphalangeal joint of right little finger, subsequent encounter +S63276S Dislocation of unspecified interphalangeal joint of right little finger, sequela +S63277A Dislocation of unspecified interphalangeal joint of left little finger, initial encounter +S63277D Dislocation of unspecified interphalangeal joint of left little finger, subsequent encounter +S63277S Dislocation of unspecified interphalangeal joint of left little finger, sequela +S63278A Dislocation of unspecified interphalangeal joint of other finger, initial encounter +S63278D Dislocation of unspecified interphalangeal joint of other finger, subsequent encounter +S63278S Dislocation of unspecified interphalangeal joint of other finger, sequela +S63279A Dislocation of unspecified interphalangeal joint of unspecified finger, initial encounter +S63279D Dislocation of unspecified interphalangeal joint of unspecified finger, subsequent encounter +S63279S Dislocation of unspecified interphalangeal joint of unspecified finger, sequela +S63280A Dislocation of proximal interphalangeal joint of right index finger, initial encounter +S63280D Dislocation of proximal interphalangeal joint of right index finger, subsequent encounter +S63280S Dislocation of proximal interphalangeal joint of right index finger, sequela +S63281A Dislocation of proximal interphalangeal joint of left index finger, initial encounter +S63281D Dislocation of proximal interphalangeal joint of left index finger, subsequent encounter +S63281S Dislocation of proximal interphalangeal joint of left index finger, sequela +S63282A Dislocation of proximal interphalangeal joint of right middle finger, initial encounter +S63282D Dislocation of proximal interphalangeal joint of right middle finger, subsequent encounter +S63282S Dislocation of proximal interphalangeal joint of right middle finger, sequela +S63283A Dislocation of proximal interphalangeal joint of left middle finger, initial encounter +S63283D Dislocation of proximal interphalangeal joint of left middle finger, subsequent encounter +S63283S Dislocation of proximal interphalangeal joint of left middle finger, sequela +S63284A Dislocation of proximal interphalangeal joint of right ring finger, initial encounter +S63284D Dislocation of proximal interphalangeal joint of right ring finger, subsequent encounter +S63284S Dislocation of proximal interphalangeal joint of right ring finger, sequela +S63285A Dislocation of proximal interphalangeal joint of left ring finger, initial encounter +S63285D Dislocation of proximal interphalangeal joint of left ring finger, subsequent encounter +S63285S Dislocation of proximal interphalangeal joint of left ring finger, sequela +S63286A Dislocation of proximal interphalangeal joint of right little finger, initial encounter +S63286D Dislocation of proximal interphalangeal joint of right little finger, subsequent encounter +S63286S Dislocation of proximal interphalangeal joint of right little finger, sequela +S63287A Dislocation of proximal interphalangeal joint of left little finger, initial encounter +S63287D Dislocation of proximal interphalangeal joint of left little finger, subsequent encounter +S63287S Dislocation of proximal interphalangeal joint of left little finger, sequela +S63288A Dislocation of proximal interphalangeal joint of other finger, initial encounter +S63288D Dislocation of proximal interphalangeal joint of other finger, subsequent encounter +S63288S Dislocation of proximal interphalangeal joint of other finger, sequela +S63289A Dislocation of proximal interphalangeal joint of unspecified finger, initial encounter +S63289D Dislocation of proximal interphalangeal joint of unspecified finger, subsequent encounter +S63289S Dislocation of proximal interphalangeal joint of unspecified finger, sequela +S63290A Dislocation of distal interphalangeal joint of right index finger, initial encounter +S63290D Dislocation of distal interphalangeal joint of right index finger, subsequent encounter +S63290S Dislocation of distal interphalangeal joint of right index finger, sequela +S63291A Dislocation of distal interphalangeal joint of left index finger, initial encounter +S63291D Dislocation of distal interphalangeal joint of left index finger, subsequent encounter +S63291S Dislocation of distal interphalangeal joint of left index finger, sequela +S63292A Dislocation of distal interphalangeal joint of right middle finger, initial encounter +S63292D Dislocation of distal interphalangeal joint of right middle finger, subsequent encounter +S63292S Dislocation of distal interphalangeal joint of right middle finger, sequela +S63293A Dislocation of distal interphalangeal joint of left middle finger, initial encounter +S63293D Dislocation of distal interphalangeal joint of left middle finger, subsequent encounter +S63293S Dislocation of distal interphalangeal joint of left middle finger, sequela +S63294A Dislocation of distal interphalangeal joint of right ring finger, initial encounter +S63294D Dislocation of distal interphalangeal joint of right ring finger, subsequent encounter +S63294S Dislocation of distal interphalangeal joint of right ring finger, sequela +S63295A Dislocation of distal interphalangeal joint of left ring finger, initial encounter +S63295D Dislocation of distal interphalangeal joint of left ring finger, subsequent encounter +S63295S Dislocation of distal interphalangeal joint of left ring finger, sequela +S63296A Dislocation of distal interphalangeal joint of right little finger, initial encounter +S63296D Dislocation of distal interphalangeal joint of right little finger, subsequent encounter +S63296S Dislocation of distal interphalangeal joint of right little finger, sequela +S63297A Dislocation of distal interphalangeal joint of left little finger, initial encounter +S63297D Dislocation of distal interphalangeal joint of left little finger, subsequent encounter +S63297S Dislocation of distal interphalangeal joint of left little finger, sequela +S63298A Dislocation of distal interphalangeal joint of other finger, initial encounter +S63298D Dislocation of distal interphalangeal joint of other finger, subsequent encounter +S63298S Dislocation of distal interphalangeal joint of other finger, sequela +S63299A Dislocation of distal interphalangeal joint of unspecified finger, initial encounter +S63299D Dislocation of distal interphalangeal joint of unspecified finger, subsequent encounter +S63299S Dislocation of distal interphalangeal joint of unspecified finger, sequela +S63301A Traumatic rupture of unspecified ligament of right wrist, initial encounter +S63301D Traumatic rupture of unspecified ligament of right wrist, subsequent encounter +S63301S Traumatic rupture of unspecified ligament of right wrist, sequela +S63302A Traumatic rupture of unspecified ligament of left wrist, initial encounter +S63302D Traumatic rupture of unspecified ligament of left wrist, subsequent encounter +S63302S Traumatic rupture of unspecified ligament of left wrist, sequela +S63309A Traumatic rupture of unspecified ligament of unspecified wrist, initial encounter +S63309D Traumatic rupture of unspecified ligament of unspecified wrist, subsequent encounter +S63309S Traumatic rupture of unspecified ligament of unspecified wrist, sequela +S63311A Traumatic rupture of collateral ligament of right wrist, initial encounter +S63311D Traumatic rupture of collateral ligament of right wrist, subsequent encounter +S63311S Traumatic rupture of collateral ligament of right wrist, sequela +S63312A Traumatic rupture of collateral ligament of left wrist, initial encounter +S63312D Traumatic rupture of collateral ligament of left wrist, subsequent encounter +S63312S Traumatic rupture of collateral ligament of left wrist, sequela +S63319A Traumatic rupture of collateral ligament of unspecified wrist, initial encounter +S63319D Traumatic rupture of collateral ligament of unspecified wrist, subsequent encounter +S63319S Traumatic rupture of collateral ligament of unspecified wrist, sequela +S63321A Traumatic rupture of right radiocarpal ligament, initial encounter +S63321D Traumatic rupture of right radiocarpal ligament, subsequent encounter +S63321S Traumatic rupture of right radiocarpal ligament, sequela +S63322A Traumatic rupture of left radiocarpal ligament, initial encounter +S63322D Traumatic rupture of left radiocarpal ligament, subsequent encounter +S63322S Traumatic rupture of left radiocarpal ligament, sequela +S63329A Traumatic rupture of unspecified radiocarpal ligament, initial encounter +S63329D Traumatic rupture of unspecified radiocarpal ligament, subsequent encounter +S63329S Traumatic rupture of unspecified radiocarpal ligament, sequela +S63331A Traumatic rupture of right ulnocarpal (palmar) ligament, initial encounter +S63331D Traumatic rupture of right ulnocarpal (palmar) ligament, subsequent encounter +S63331S Traumatic rupture of right ulnocarpal (palmar) ligament, sequela +S63332A Traumatic rupture of left ulnocarpal (palmar) ligament, initial encounter +S63332D Traumatic rupture of left ulnocarpal (palmar) ligament, subsequent encounter +S63332S Traumatic rupture of left ulnocarpal (palmar) ligament, sequela +S63339A Traumatic rupture of unspecified ulnocarpal (palmar) ligament, initial encounter +S63339D Traumatic rupture of unspecified ulnocarpal (palmar) ligament, subsequent encounter +S63339S Traumatic rupture of unspecified ulnocarpal (palmar) ligament, sequela +S63391A Traumatic rupture of other ligament of right wrist, initial encounter +S63391D Traumatic rupture of other ligament of right wrist, subsequent encounter +S63391S Traumatic rupture of other ligament of right wrist, sequela +S63392A Traumatic rupture of other ligament of left wrist, initial encounter +S63392D Traumatic rupture of other ligament of left wrist, subsequent encounter +S63392S Traumatic rupture of other ligament of left wrist, sequela +S63399A Traumatic rupture of other ligament of unspecified wrist, initial encounter +S63399D Traumatic rupture of other ligament of unspecified wrist, subsequent encounter +S63399S Traumatic rupture of other ligament of unspecified wrist, sequela +S63400A Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63400D Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63400S Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela +S63401A Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63401D Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63401S Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela +S63402A Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63402D Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63402S Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela +S63403A Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63403D Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63403S Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela +S63404A Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63404D Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63404S Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela +S63405A Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63405D Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63405S Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela +S63406A Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63406D Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63406S Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela +S63407A Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63407D Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63407S Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela +S63408A Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63408D Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63408S Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela +S63409A Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63409D Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63409S Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela +S63410A Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63410D Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63410S Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela +S63411A Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63411D Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63411S Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela +S63412A Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63412D Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63412S Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela +S63413A Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63413D Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63413S Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela +S63414A Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63414D Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63414S Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela +S63415A Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63415D Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63415S Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela +S63416A Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63416D Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63416S Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela +S63417A Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63417D Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63417S Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela +S63418A Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63418D Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63418S Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela +S63419A Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63419D Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63419S Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela +S63420A Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63420D Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63420S Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela +S63421A Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63421D Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63421S Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela +S63422A Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63422D Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63422S Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela +S63423A Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63423D Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63423S Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela +S63424A Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63424D Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63424S Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela +S63425A Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63425D Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63425S Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela +S63426A Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63426D Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63426S Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela +S63427A Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63427D Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63427S Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela +S63428A Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63428D Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63428S Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela +S63429A Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63429D Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63429S Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela +S63430A Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63430D Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63430S Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint, sequela +S63431A Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63431D Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63431S Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint, sequela +S63432A Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63432D Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63432S Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint, sequela +S63433A Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63433D Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63433S Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint, sequela +S63434A Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63434D Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63434S Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint, sequela +S63435A Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63435D Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63435S Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint, sequela +S63436A Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63436D Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63436S Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint, sequela +S63437A Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63437D Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63437S Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint, sequela +S63438A Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63438D Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63438S Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint, sequela +S63439A Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63439D Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63439S Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela +S63490A Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63490D Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63490S Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela +S63491A Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63491D Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63491S Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela +S63492A Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63492D Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63492S Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela +S63493A Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63493D Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63493S Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela +S63494A Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63494D Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63494S Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela +S63495A Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63495D Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63495S Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela +S63496A Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63496D Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63496S Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela +S63497A Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63497D Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63497S Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela +S63498A Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63498D Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63498S Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela +S63499A Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter +S63499D Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter +S63499S Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela +S63501A Unspecified sprain of right wrist, initial encounter +S63501D Unspecified sprain of right wrist, subsequent encounter +S63501S Unspecified sprain of right wrist, sequela +S63502A Unspecified sprain of left wrist, initial encounter +S63502D Unspecified sprain of left wrist, subsequent encounter +S63502S Unspecified sprain of left wrist, sequela +S63509A Unspecified sprain of unspecified wrist, initial encounter +S63509D Unspecified sprain of unspecified wrist, subsequent encounter +S63509S Unspecified sprain of unspecified wrist, sequela +S63511A Sprain of carpal joint of right wrist, initial encounter +S63511D Sprain of carpal joint of right wrist, subsequent encounter +S63511S Sprain of carpal joint of right wrist, sequela +S63512A Sprain of carpal joint of left wrist, initial encounter +S63512D Sprain of carpal joint of left wrist, subsequent encounter +S63512S Sprain of carpal joint of left wrist, sequela +S63519A Sprain of carpal joint of unspecified wrist, initial encounter +S63519D Sprain of carpal joint of unspecified wrist, subsequent encounter +S63519S Sprain of carpal joint of unspecified wrist, sequela +S63521A Sprain of radiocarpal joint of right wrist, initial encounter +S63521D Sprain of radiocarpal joint of right wrist, subsequent encounter +S63521S Sprain of radiocarpal joint of right wrist, sequela +S63522A Sprain of radiocarpal joint of left wrist, initial encounter +S63522D Sprain of radiocarpal joint of left wrist, subsequent encounter +S63522S Sprain of radiocarpal joint of left wrist, sequela +S63529A Sprain of radiocarpal joint of unspecified wrist, initial encounter +S63529D Sprain of radiocarpal joint of unspecified wrist, subsequent encounter +S63529S Sprain of radiocarpal joint of unspecified wrist, sequela +S63591A Other specified sprain of right wrist, initial encounter +S63591D Other specified sprain of right wrist, subsequent encounter +S63591S Other specified sprain of right wrist, sequela +S63592A Other specified sprain of left wrist, initial encounter +S63592D Other specified sprain of left wrist, subsequent encounter +S63592S Other specified sprain of left wrist, sequela +S63599A Other specified sprain of unspecified wrist, initial encounter +S63599D Other specified sprain of unspecified wrist, subsequent encounter +S63599S Other specified sprain of unspecified wrist, sequela +S63601A Unspecified sprain of right thumb, initial encounter +S63601D Unspecified sprain of right thumb, subsequent encounter +S63601S Unspecified sprain of right thumb, sequela +S63602A Unspecified sprain of left thumb, initial encounter +S63602D Unspecified sprain of left thumb, subsequent encounter +S63602S Unspecified sprain of left thumb, sequela +S63609A Unspecified sprain of unspecified thumb, initial encounter +S63609D Unspecified sprain of unspecified thumb, subsequent encounter +S63609S Unspecified sprain of unspecified thumb, sequela +S63610A Unspecified sprain of right index finger, initial encounter +S63610D Unspecified sprain of right index finger, subsequent encounter +S63610S Unspecified sprain of right index finger, sequela +S63611A Unspecified sprain of left index finger, initial encounter +S63611D Unspecified sprain of left index finger, subsequent encounter +S63611S Unspecified sprain of left index finger, sequela +S63612A Unspecified sprain of right middle finger, initial encounter +S63612D Unspecified sprain of right middle finger, subsequent encounter +S63612S Unspecified sprain of right middle finger, sequela +S63613A Unspecified sprain of left middle finger, initial encounter +S63613D Unspecified sprain of left middle finger, subsequent encounter +S63613S Unspecified sprain of left middle finger, sequela +S63614A Unspecified sprain of right ring finger, initial encounter +S63614D Unspecified sprain of right ring finger, subsequent encounter +S63614S Unspecified sprain of right ring finger, sequela +S63615A Unspecified sprain of left ring finger, initial encounter +S63615D Unspecified sprain of left ring finger, subsequent encounter +S63615S Unspecified sprain of left ring finger, sequela +S63616A Unspecified sprain of right little finger, initial encounter +S63616D Unspecified sprain of right little finger, subsequent encounter +S63616S Unspecified sprain of right little finger, sequela +S63617A Unspecified sprain of left little finger, initial encounter +S63617D Unspecified sprain of left little finger, subsequent encounter +S63617S Unspecified sprain of left little finger, sequela +S63618A Unspecified sprain of other finger, initial encounter +S63618D Unspecified sprain of other finger, subsequent encounter +S63618S Unspecified sprain of other finger, sequela +S63619A Unspecified sprain of unspecified finger, initial encounter +S63619D Unspecified sprain of unspecified finger, subsequent encounter +S63619S Unspecified sprain of unspecified finger, sequela +S63621A Sprain of interphalangeal joint of right thumb, initial encounter +S63621D Sprain of interphalangeal joint of right thumb, subsequent encounter +S63621S Sprain of interphalangeal joint of right thumb, sequela +S63622A Sprain of interphalangeal joint of left thumb, initial encounter +S63622D Sprain of interphalangeal joint of left thumb, subsequent encounter +S63622S Sprain of interphalangeal joint of left thumb, sequela +S63629A Sprain of interphalangeal joint of unspecified thumb, initial encounter +S63629D Sprain of interphalangeal joint of unspecified thumb, subsequent encounter +S63629S Sprain of interphalangeal joint of unspecified thumb, sequela +S63630A Sprain of interphalangeal joint of right index finger, initial encounter +S63630D Sprain of interphalangeal joint of right index finger, subsequent encounter +S63630S Sprain of interphalangeal joint of right index finger, sequela +S63631A Sprain of interphalangeal joint of left index finger, initial encounter +S63631D Sprain of interphalangeal joint of left index finger, subsequent encounter +S63631S Sprain of interphalangeal joint of left index finger, sequela +S63632A Sprain of interphalangeal joint of right middle finger, initial encounter +S63632D Sprain of interphalangeal joint of right middle finger, subsequent encounter +S63632S Sprain of interphalangeal joint of right middle finger, sequela +S63633A Sprain of interphalangeal joint of left middle finger, initial encounter +S63633D Sprain of interphalangeal joint of left middle finger, subsequent encounter +S63633S Sprain of interphalangeal joint of left middle finger, sequela +S63634A Sprain of interphalangeal joint of right ring finger, initial encounter +S63634D Sprain of interphalangeal joint of right ring finger, subsequent encounter +S63634S Sprain of interphalangeal joint of right ring finger, sequela +S63635A Sprain of interphalangeal joint of left ring finger, initial encounter +S63635D Sprain of interphalangeal joint of left ring finger, subsequent encounter +S63635S Sprain of interphalangeal joint of left ring finger, sequela +S63636A Sprain of interphalangeal joint of right little finger, initial encounter +S63636D Sprain of interphalangeal joint of right little finger, subsequent encounter +S63636S Sprain of interphalangeal joint of right little finger, sequela +S63637A Sprain of interphalangeal joint of left little finger, initial encounter +S63637D Sprain of interphalangeal joint of left little finger, subsequent encounter +S63637S Sprain of interphalangeal joint of left little finger, sequela +S63638A Sprain of interphalangeal joint of other finger, initial encounter +S63638D Sprain of interphalangeal joint of other finger, subsequent encounter +S63638S Sprain of interphalangeal joint of other finger, sequela +S63639A Sprain of interphalangeal joint of unspecified finger, initial encounter +S63639D Sprain of interphalangeal joint of unspecified finger, subsequent encounter +S63639S Sprain of interphalangeal joint of unspecified finger, sequela +S63641A Sprain of metacarpophalangeal joint of right thumb, initial encounter +S63641D Sprain of metacarpophalangeal joint of right thumb, subsequent encounter +S63641S Sprain of metacarpophalangeal joint of right thumb, sequela +S63642A Sprain of metacarpophalangeal joint of left thumb, initial encounter +S63642D Sprain of metacarpophalangeal joint of left thumb, subsequent encounter +S63642S Sprain of metacarpophalangeal joint of left thumb, sequela +S63649A Sprain of metacarpophalangeal joint of unspecified thumb, initial encounter +S63649D Sprain of metacarpophalangeal joint of unspecified thumb, subsequent encounter +S63649S Sprain of metacarpophalangeal joint of unspecified thumb, sequela +S63650A Sprain of metacarpophalangeal joint of right index finger, initial encounter +S63650D Sprain of metacarpophalangeal joint of right index finger, subsequent encounter +S63650S Sprain of metacarpophalangeal joint of right index finger, sequela +S63651A Sprain of metacarpophalangeal joint of left index finger, initial encounter +S63651D Sprain of metacarpophalangeal joint of left index finger, subsequent encounter +S63651S Sprain of metacarpophalangeal joint of left index finger, sequela +S63652A Sprain of metacarpophalangeal joint of right middle finger, initial encounter +S63652D Sprain of metacarpophalangeal joint of right middle finger, subsequent encounter +S63652S Sprain of metacarpophalangeal joint of right middle finger, sequela +S63653A Sprain of metacarpophalangeal joint of left middle finger, initial encounter +S63653D Sprain of metacarpophalangeal joint of left middle finger, subsequent encounter +S63653S Sprain of metacarpophalangeal joint of left middle finger, sequela +S63654A Sprain of metacarpophalangeal joint of right ring finger, initial encounter +S63654D Sprain of metacarpophalangeal joint of right ring finger, subsequent encounter +S63654S Sprain of metacarpophalangeal joint of right ring finger, sequela +S63655A Sprain of metacarpophalangeal joint of left ring finger, initial encounter +S63655D Sprain of metacarpophalangeal joint of left ring finger, subsequent encounter +S63655S Sprain of metacarpophalangeal joint of left ring finger, sequela +S63656A Sprain of metacarpophalangeal joint of right little finger, initial encounter +S63656D Sprain of metacarpophalangeal joint of right little finger, subsequent encounter +S63656S Sprain of metacarpophalangeal joint of right little finger, sequela +S63657A Sprain of metacarpophalangeal joint of left little finger, initial encounter +S63657D Sprain of metacarpophalangeal joint of left little finger, subsequent encounter +S63657S Sprain of metacarpophalangeal joint of left little finger, sequela +S63658A Sprain of metacarpophalangeal joint of other finger, initial encounter +S63658D Sprain of metacarpophalangeal joint of other finger, subsequent encounter +S63658S Sprain of metacarpophalangeal joint of other finger, sequela +S63659A Sprain of metacarpophalangeal joint of unspecified finger, initial encounter +S63659D Sprain of metacarpophalangeal joint of unspecified finger, subsequent encounter +S63659S Sprain of metacarpophalangeal joint of unspecified finger, sequela +S63681A Other sprain of right thumb, initial encounter +S63681D Other sprain of right thumb, subsequent encounter +S63681S Other sprain of right thumb, sequela +S63682A Other sprain of left thumb, initial encounter +S63682D Other sprain of left thumb, subsequent encounter +S63682S Other sprain of left thumb, sequela +S63689A Other sprain of unspecified thumb, initial encounter +S63689D Other sprain of unspecified thumb, subsequent encounter +S63689S Other sprain of unspecified thumb, sequela +S63690A Other sprain of right index finger, initial encounter +S63690D Other sprain of right index finger, subsequent encounter +S63690S Other sprain of right index finger, sequela +S63691A Other sprain of left index finger, initial encounter +S63691D Other sprain of left index finger, subsequent encounter +S63691S Other sprain of left index finger, sequela +S63692A Other sprain of right middle finger, initial encounter +S63692D Other sprain of right middle finger, subsequent encounter +S63692S Other sprain of right middle finger, sequela +S63693A Other sprain of left middle finger, initial encounter +S63693D Other sprain of left middle finger, subsequent encounter +S63693S Other sprain of left middle finger, sequela +S63694A Other sprain of right ring finger, initial encounter +S63694D Other sprain of right ring finger, subsequent encounter +S63694S Other sprain of right ring finger, sequela +S63695A Other sprain of left ring finger, initial encounter +S63695D Other sprain of left ring finger, subsequent encounter +S63695S Other sprain of left ring finger, sequela +S63696A Other sprain of right little finger, initial encounter +S63696D Other sprain of right little finger, subsequent encounter +S63696S Other sprain of right little finger, sequela +S63697A Other sprain of left little finger, initial encounter +S63697D Other sprain of left little finger, subsequent encounter +S63697S Other sprain of left little finger, sequela +S63698A Other sprain of other finger, initial encounter +S63698D Other sprain of other finger, subsequent encounter +S63698S Other sprain of other finger, sequela +S63699A Other sprain of unspecified finger, initial encounter +S63699D Other sprain of unspecified finger, subsequent encounter +S63699S Other sprain of unspecified finger, sequela +S638X1A Sprain of other part of right wrist and hand, initial encounter +S638X1D Sprain of other part of right wrist and hand, subsequent encounter +S638X1S Sprain of other part of right wrist and hand, sequela +S638X2A Sprain of other part of left wrist and hand, initial encounter +S638X2D Sprain of other part of left wrist and hand, subsequent encounter +S638X2S Sprain of other part of left wrist and hand, sequela +S638X9A Sprain of other part of unspecified wrist and hand, initial encounter +S638X9D Sprain of other part of unspecified wrist and hand, subsequent encounter +S638X9S Sprain of other part of unspecified wrist and hand, sequela +S6390XA Sprain of unspecified part of unspecified wrist and hand, initial encounter +S6390XD Sprain of unspecified part of unspecified wrist and hand, subsequent encounter +S6390XS Sprain of unspecified part of unspecified wrist and hand, sequela +S6391XA Sprain of unspecified part of right wrist and hand, initial encounter +S6391XD Sprain of unspecified part of right wrist and hand, subsequent encounter +S6391XS Sprain of unspecified part of right wrist and hand, sequela +S6392XA Sprain of unspecified part of left wrist and hand, initial encounter +S6392XD Sprain of unspecified part of left wrist and hand, subsequent encounter +S6392XS Sprain of unspecified part of left wrist and hand, sequela +S6400XA Injury of ulnar nerve at wrist and hand level of unspecified arm, initial encounter +S6400XD Injury of ulnar nerve at wrist and hand level of unspecified arm, subsequent encounter +S6400XS Injury of ulnar nerve at wrist and hand level of unspecified arm, sequela +S6401XA Injury of ulnar nerve at wrist and hand level of right arm, initial encounter +S6401XD Injury of ulnar nerve at wrist and hand level of right arm, subsequent encounter +S6401XS Injury of ulnar nerve at wrist and hand level of right arm, sequela +S6402XA Injury of ulnar nerve at wrist and hand level of left arm, initial encounter +S6402XD Injury of ulnar nerve at wrist and hand level of left arm, subsequent encounter +S6402XS Injury of ulnar nerve at wrist and hand level of left arm, sequela +S6410XA Injury of median nerve at wrist and hand level of unspecified arm, initial encounter +S6410XD Injury of median nerve at wrist and hand level of unspecified arm, subsequent encounter +S6410XS Injury of median nerve at wrist and hand level of unspecified arm, sequela +S6411XA Injury of median nerve at wrist and hand level of right arm, initial encounter +S6411XD Injury of median nerve at wrist and hand level of right arm, subsequent encounter +S6411XS Injury of median nerve at wrist and hand level of right arm, sequela +S6412XA Injury of median nerve at wrist and hand level of left arm, initial encounter +S6412XD Injury of median nerve at wrist and hand level of left arm, subsequent encounter +S6412XS Injury of median nerve at wrist and hand level of left arm, sequela +S6420XA Injury of radial nerve at wrist and hand level of unspecified arm, initial encounter +S6420XD Injury of radial nerve at wrist and hand level of unspecified arm, subsequent encounter +S6420XS Injury of radial nerve at wrist and hand level of unspecified arm, sequela +S6421XA Injury of radial nerve at wrist and hand level of right arm, initial encounter +S6421XD Injury of radial nerve at wrist and hand level of right arm, subsequent encounter +S6421XS Injury of radial nerve at wrist and hand level of right arm, sequela +S6422XA Injury of radial nerve at wrist and hand level of left arm, initial encounter +S6422XD Injury of radial nerve at wrist and hand level of left arm, subsequent encounter +S6422XS Injury of radial nerve at wrist and hand level of left arm, sequela +S6430XA Injury of digital nerve of unspecified thumb, initial encounter +S6430XD Injury of digital nerve of unspecified thumb, subsequent encounter +S6430XS Injury of digital nerve of unspecified thumb, sequela +S6431XA Injury of digital nerve of right thumb, initial encounter +S6431XD Injury of digital nerve of right thumb, subsequent encounter +S6431XS Injury of digital nerve of right thumb, sequela +S6432XA Injury of digital nerve of left thumb, initial encounter +S6432XD Injury of digital nerve of left thumb, subsequent encounter +S6432XS Injury of digital nerve of left thumb, sequela +S6440XA Injury of digital nerve of unspecified finger, initial encounter +S6440XD Injury of digital nerve of unspecified finger, subsequent encounter +S6440XS Injury of digital nerve of unspecified finger, sequela +S64490A Injury of digital nerve of right index finger, initial encounter +S64490D Injury of digital nerve of right index finger, subsequent encounter +S64490S Injury of digital nerve of right index finger, sequela +S64491A Injury of digital nerve of left index finger, initial encounter +S64491D Injury of digital nerve of left index finger, subsequent encounter +S64491S Injury of digital nerve of left index finger, sequela +S64492A Injury of digital nerve of right middle finger, initial encounter +S64492D Injury of digital nerve of right middle finger, subsequent encounter +S64492S Injury of digital nerve of right middle finger, sequela +S64493A Injury of digital nerve of left middle finger, initial encounter +S64493D Injury of digital nerve of left middle finger, subsequent encounter +S64493S Injury of digital nerve of left middle finger, sequela +S64494A Injury of digital nerve of right ring finger, initial encounter +S64494D Injury of digital nerve of right ring finger, subsequent encounter +S64494S Injury of digital nerve of right ring finger, sequela +S64495A Injury of digital nerve of left ring finger, initial encounter +S64495D Injury of digital nerve of left ring finger, subsequent encounter +S64495S Injury of digital nerve of left ring finger, sequela +S64496A Injury of digital nerve of right little finger, initial encounter +S64496D Injury of digital nerve of right little finger, subsequent encounter +S64496S Injury of digital nerve of right little finger, sequela +S64497A Injury of digital nerve of left little finger, initial encounter +S64497D Injury of digital nerve of left little finger, subsequent encounter +S64497S Injury of digital nerve of left little finger, sequela +S64498A Injury of digital nerve of other finger, initial encounter +S64498D Injury of digital nerve of other finger, subsequent encounter +S64498S Injury of digital nerve of other finger, sequela +S648X1A Injury of other nerves at wrist and hand level of right arm, initial encounter +S648X1D Injury of other nerves at wrist and hand level of right arm, subsequent encounter +S648X1S Injury of other nerves at wrist and hand level of right arm, sequela +S648X2A Injury of other nerves at wrist and hand level of left arm, initial encounter +S648X2D Injury of other nerves at wrist and hand level of left arm, subsequent encounter +S648X2S Injury of other nerves at wrist and hand level of left arm, sequela +S648X9A Injury of other nerves at wrist and hand level of unspecified arm, initial encounter +S648X9D Injury of other nerves at wrist and hand level of unspecified arm, subsequent encounter +S648X9S Injury of other nerves at wrist and hand level of unspecified arm, sequela +S6490XA Injury of unspecified nerve at wrist and hand level of unspecified arm, initial encounter +S6490XD Injury of unspecified nerve at wrist and hand level of unspecified arm, subsequent encounter +S6490XS Injury of unspecified nerve at wrist and hand level of unspecified arm, sequela +S6491XA Injury of unspecified nerve at wrist and hand level of right arm, initial encounter +S6491XD Injury of unspecified nerve at wrist and hand level of right arm, subsequent encounter +S6491XS Injury of unspecified nerve at wrist and hand level of right arm, sequela +S6492XA Injury of unspecified nerve at wrist and hand level of left arm, initial encounter +S6492XD Injury of unspecified nerve at wrist and hand level of left arm, subsequent encounter +S6492XS Injury of unspecified nerve at wrist and hand level of left arm, sequela +S65001A Unspecified injury of ulnar artery at wrist and hand level of right arm, initial encounter +S65001D Unspecified injury of ulnar artery at wrist and hand level of right arm, subsequent encounter +S65001S Unspecified injury of ulnar artery at wrist and hand level of right arm, sequela +S65002A Unspecified injury of ulnar artery at wrist and hand level of left arm, initial encounter +S65002D Unspecified injury of ulnar artery at wrist and hand level of left arm, subsequent encounter +S65002S Unspecified injury of ulnar artery at wrist and hand level of left arm, sequela +S65009A Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, initial encounter +S65009D Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter +S65009S Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, sequela +S65011A Laceration of ulnar artery at wrist and hand level of right arm, initial encounter +S65011D Laceration of ulnar artery at wrist and hand level of right arm, subsequent encounter +S65011S Laceration of ulnar artery at wrist and hand level of right arm, sequela +S65012A Laceration of ulnar artery at wrist and hand level of left arm, initial encounter +S65012D Laceration of ulnar artery at wrist and hand level of left arm, subsequent encounter +S65012S Laceration of ulnar artery at wrist and hand level of left arm, sequela +S65019A Laceration of ulnar artery at wrist and hand level of unspecified arm, initial encounter +S65019D Laceration of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter +S65019S Laceration of ulnar artery at wrist and hand level of unspecified arm, sequela +S65091A Other specified injury of ulnar artery at wrist and hand level of right arm, initial encounter +S65091D Other specified injury of ulnar artery at wrist and hand level of right arm, subsequent encounter +S65091S Other specified injury of ulnar artery at wrist and hand level of right arm, sequela +S65092A Other specified injury of ulnar artery at wrist and hand level of left arm, initial encounter +S65092D Other specified injury of ulnar artery at wrist and hand level of left arm, subsequent encounter +S65092S Other specified injury of ulnar artery at wrist and hand level of left arm, sequela +S65099A Other specified injury of ulnar artery at wrist and hand level of unspecified arm, initial encounter +S65099D Other specified injury of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter +S65099S Other specified injury of ulnar artery at wrist and hand level of unspecified arm, sequela +S65101A Unspecified injury of radial artery at wrist and hand level of right arm, initial encounter +S65101D Unspecified injury of radial artery at wrist and hand level of right arm, subsequent encounter +S65101S Unspecified injury of radial artery at wrist and hand level of right arm, sequela +S65102A Unspecified injury of radial artery at wrist and hand level of left arm, initial encounter +S65102D Unspecified injury of radial artery at wrist and hand level of left arm, subsequent encounter +S65102S Unspecified injury of radial artery at wrist and hand level of left arm, sequela +S65109A Unspecified injury of radial artery at wrist and hand level of unspecified arm, initial encounter +S65109D Unspecified injury of radial artery at wrist and hand level of unspecified arm, subsequent encounter +S65109S Unspecified injury of radial artery at wrist and hand level of unspecified arm, sequela +S65111A Laceration of radial artery at wrist and hand level of right arm, initial encounter +S65111D Laceration of radial artery at wrist and hand level of right arm, subsequent encounter +S65111S Laceration of radial artery at wrist and hand level of right arm, sequela +S65112A Laceration of radial artery at wrist and hand level of left arm, initial encounter +S65112D Laceration of radial artery at wrist and hand level of left arm, subsequent encounter +S65112S Laceration of radial artery at wrist and hand level of left arm, sequela +S65119A Laceration of radial artery at wrist and hand level of unspecified arm, initial encounter +S65119D Laceration of radial artery at wrist and hand level of unspecified arm, subsequent encounter +S65119S Laceration of radial artery at wrist and hand level of unspecified arm, sequela +S65191A Other specified injury of radial artery at wrist and hand level of right arm, initial encounter +S65191D Other specified injury of radial artery at wrist and hand level of right arm, subsequent encounter +S65191S Other specified injury of radial artery at wrist and hand level of right arm, sequela +S65192A Other specified injury of radial artery at wrist and hand level of left arm, initial encounter +S65192D Other specified injury of radial artery at wrist and hand level of left arm, subsequent encounter +S65192S Other specified injury of radial artery at wrist and hand level of left arm, sequela +S65199A Other specified injury of radial artery at wrist and hand level of unspecified arm, initial encounter +S65199D Other specified injury of radial artery at wrist and hand level of unspecified arm, subsequent encounter +S65199S Other specified injury of radial artery at wrist and hand level of unspecified arm, sequela +S65201A Unspecified injury of superficial palmar arch of right hand, initial encounter +S65201D Unspecified injury of superficial palmar arch of right hand, subsequent encounter +S65201S Unspecified injury of superficial palmar arch of right hand, sequela +S65202A Unspecified injury of superficial palmar arch of left hand, initial encounter +S65202D Unspecified injury of superficial palmar arch of left hand, subsequent encounter +S65202S Unspecified injury of superficial palmar arch of left hand, sequela +S65209A Unspecified injury of superficial palmar arch of unspecified hand, initial encounter +S65209D Unspecified injury of superficial palmar arch of unspecified hand, subsequent encounter +S65209S Unspecified injury of superficial palmar arch of unspecified hand, sequela +S65211A Laceration of superficial palmar arch of right hand, initial encounter +S65211D Laceration of superficial palmar arch of right hand, subsequent encounter +S65211S Laceration of superficial palmar arch of right hand, sequela +S65212A Laceration of superficial palmar arch of left hand, initial encounter +S65212D Laceration of superficial palmar arch of left hand, subsequent encounter +S65212S Laceration of superficial palmar arch of left hand, sequela +S65219A Laceration of superficial palmar arch of unspecified hand, initial encounter +S65219D Laceration of superficial palmar arch of unspecified hand, subsequent encounter +S65219S Laceration of superficial palmar arch of unspecified hand, sequela +S65291A Other specified injury of superficial palmar arch of right hand, initial encounter +S65291D Other specified injury of superficial palmar arch of right hand, subsequent encounter +S65291S Other specified injury of superficial palmar arch of right hand, sequela +S65292A Other specified injury of superficial palmar arch of left hand, initial encounter +S65292D Other specified injury of superficial palmar arch of left hand, subsequent encounter +S65292S Other specified injury of superficial palmar arch of left hand, sequela +S65299A Other specified injury of superficial palmar arch of unspecified hand, initial encounter +S65299D Other specified injury of superficial palmar arch of unspecified hand, subsequent encounter +S65299S Other specified injury of superficial palmar arch of unspecified hand, sequela +S65301A Unspecified injury of deep palmar arch of right hand, initial encounter +S65301D Unspecified injury of deep palmar arch of right hand, subsequent encounter +S65301S Unspecified injury of deep palmar arch of right hand, sequela +S65302A Unspecified injury of deep palmar arch of left hand, initial encounter +S65302D Unspecified injury of deep palmar arch of left hand, subsequent encounter +S65302S Unspecified injury of deep palmar arch of left hand, sequela +S65309A Unspecified injury of deep palmar arch of unspecified hand, initial encounter +S65309D Unspecified injury of deep palmar arch of unspecified hand, subsequent encounter +S65309S Unspecified injury of deep palmar arch of unspecified hand, sequela +S65311A Laceration of deep palmar arch of right hand, initial encounter +S65311D Laceration of deep palmar arch of right hand, subsequent encounter +S65311S Laceration of deep palmar arch of right hand, sequela +S65312A Laceration of deep palmar arch of left hand, initial encounter +S65312D Laceration of deep palmar arch of left hand, subsequent encounter +S65312S Laceration of deep palmar arch of left hand, sequela +S65319A Laceration of deep palmar arch of unspecified hand, initial encounter +S65319D Laceration of deep palmar arch of unspecified hand, subsequent encounter +S65319S Laceration of deep palmar arch of unspecified hand, sequela +S65391A Other specified injury of deep palmar arch of right hand, initial encounter +S65391D Other specified injury of deep palmar arch of right hand, subsequent encounter +S65391S Other specified injury of deep palmar arch of right hand, sequela +S65392A Other specified injury of deep palmar arch of left hand, initial encounter +S65392D Other specified injury of deep palmar arch of left hand, subsequent encounter +S65392S Other specified injury of deep palmar arch of left hand, sequela +S65399A Other specified injury of deep palmar arch of unspecified hand, initial encounter +S65399D Other specified injury of deep palmar arch of unspecified hand, subsequent encounter +S65399S Other specified injury of deep palmar arch of unspecified hand, sequela +S65401A Unspecified injury of blood vessel of right thumb, initial encounter +S65401D Unspecified injury of blood vessel of right thumb, subsequent encounter +S65401S Unspecified injury of blood vessel of right thumb, sequela +S65402A Unspecified injury of blood vessel of left thumb, initial encounter +S65402D Unspecified injury of blood vessel of left thumb, subsequent encounter +S65402S Unspecified injury of blood vessel of left thumb, sequela +S65409A Unspecified injury of blood vessel of unspecified thumb, initial encounter +S65409D Unspecified injury of blood vessel of unspecified thumb, subsequent encounter +S65409S Unspecified injury of blood vessel of unspecified thumb, sequela +S65411A Laceration of blood vessel of right thumb, initial encounter +S65411D Laceration of blood vessel of right thumb, subsequent encounter +S65411S Laceration of blood vessel of right thumb, sequela +S65412A Laceration of blood vessel of left thumb, initial encounter +S65412D Laceration of blood vessel of left thumb, subsequent encounter +S65412S Laceration of blood vessel of left thumb, sequela +S65419A Laceration of blood vessel of unspecified thumb, initial encounter +S65419D Laceration of blood vessel of unspecified thumb, subsequent encounter +S65419S Laceration of blood vessel of unspecified thumb, sequela +S65491A Other specified injury of blood vessel of right thumb, initial encounter +S65491D Other specified injury of blood vessel of right thumb, subsequent encounter +S65491S Other specified injury of blood vessel of right thumb, sequela +S65492A Other specified injury of blood vessel of left thumb, initial encounter +S65492D Other specified injury of blood vessel of left thumb, subsequent encounter +S65492S Other specified injury of blood vessel of left thumb, sequela +S65499A Other specified injury of blood vessel of unspecified thumb, initial encounter +S65499D Other specified injury of blood vessel of unspecified thumb, subsequent encounter +S65499S Other specified injury of blood vessel of unspecified thumb, sequela +S65500A Unspecified injury of blood vessel of right index finger, initial encounter +S65500D Unspecified injury of blood vessel of right index finger, subsequent encounter +S65500S Unspecified injury of blood vessel of right index finger, sequela +S65501A Unspecified injury of blood vessel of left index finger, initial encounter +S65501D Unspecified injury of blood vessel of left index finger, subsequent encounter +S65501S Unspecified injury of blood vessel of left index finger, sequela +S65502A Unspecified injury of blood vessel of right middle finger, initial encounter +S65502D Unspecified injury of blood vessel of right middle finger, subsequent encounter +S65502S Unspecified injury of blood vessel of right middle finger, sequela +S65503A Unspecified injury of blood vessel of left middle finger, initial encounter +S65503D Unspecified injury of blood vessel of left middle finger, subsequent encounter +S65503S Unspecified injury of blood vessel of left middle finger, sequela +S65504A Unspecified injury of blood vessel of right ring finger, initial encounter +S65504D Unspecified injury of blood vessel of right ring finger, subsequent encounter +S65504S Unspecified injury of blood vessel of right ring finger, sequela +S65505A Unspecified injury of blood vessel of left ring finger, initial encounter +S65505D Unspecified injury of blood vessel of left ring finger, subsequent encounter +S65505S Unspecified injury of blood vessel of left ring finger, sequela +S65506A Unspecified injury of blood vessel of right little finger, initial encounter +S65506D Unspecified injury of blood vessel of right little finger, subsequent encounter +S65506S Unspecified injury of blood vessel of right little finger, sequela +S65507A Unspecified injury of blood vessel of left little finger, initial encounter +S65507D Unspecified injury of blood vessel of left little finger, subsequent encounter +S65507S Unspecified injury of blood vessel of left little finger, sequela +S65508A Unspecified injury of blood vessel of other finger, initial encounter +S65508D Unspecified injury of blood vessel of other finger, subsequent encounter +S65508S Unspecified injury of blood vessel of other finger, sequela +S65509A Unspecified injury of blood vessel of unspecified finger, initial encounter +S65509D Unspecified injury of blood vessel of unspecified finger, subsequent encounter +S65509S Unspecified injury of blood vessel of unspecified finger, sequela +S65510A Laceration of blood vessel of right index finger, initial encounter +S65510D Laceration of blood vessel of right index finger, subsequent encounter +S65510S Laceration of blood vessel of right index finger, sequela +S65511A Laceration of blood vessel of left index finger, initial encounter +S65511D Laceration of blood vessel of left index finger, subsequent encounter +S65511S Laceration of blood vessel of left index finger, sequela +S65512A Laceration of blood vessel of right middle finger, initial encounter +S65512D Laceration of blood vessel of right middle finger, subsequent encounter +S65512S Laceration of blood vessel of right middle finger, sequela +S65513A Laceration of blood vessel of left middle finger, initial encounter +S65513D Laceration of blood vessel of left middle finger, subsequent encounter +S65513S Laceration of blood vessel of left middle finger, sequela +S65514A Laceration of blood vessel of right ring finger, initial encounter +S65514D Laceration of blood vessel of right ring finger, subsequent encounter +S65514S Laceration of blood vessel of right ring finger, sequela +S65515A Laceration of blood vessel of left ring finger, initial encounter +S65515D Laceration of blood vessel of left ring finger, subsequent encounter +S65515S Laceration of blood vessel of left ring finger, sequela +S65516A Laceration of blood vessel of right little finger, initial encounter +S65516D Laceration of blood vessel of right little finger, subsequent encounter +S65516S Laceration of blood vessel of right little finger, sequela +S65517A Laceration of blood vessel of left little finger, initial encounter +S65517D Laceration of blood vessel of left little finger, subsequent encounter +S65517S Laceration of blood vessel of left little finger, sequela +S65518A Laceration of blood vessel of other finger, initial encounter +S65518D Laceration of blood vessel of other finger, subsequent encounter +S65518S Laceration of blood vessel of other finger, sequela +S65519A Laceration of blood vessel of unspecified finger, initial encounter +S65519D Laceration of blood vessel of unspecified finger, subsequent encounter +S65519S Laceration of blood vessel of unspecified finger, sequela +S65590A Other specified injury of blood vessel of right index finger, initial encounter +S65590D Other specified injury of blood vessel of right index finger, subsequent encounter +S65590S Other specified injury of blood vessel of right index finger, sequela +S65591A Other specified injury of blood vessel of left index finger, initial encounter +S65591D Other specified injury of blood vessel of left index finger, subsequent encounter +S65591S Other specified injury of blood vessel of left index finger, sequela +S65592A Other specified injury of blood vessel of right middle finger, initial encounter +S65592D Other specified injury of blood vessel of right middle finger, subsequent encounter +S65592S Other specified injury of blood vessel of right middle finger, sequela +S65593A Other specified injury of blood vessel of left middle finger, initial encounter +S65593D Other specified injury of blood vessel of left middle finger, subsequent encounter +S65593S Other specified injury of blood vessel of left middle finger, sequela +S65594A Other specified injury of blood vessel of right ring finger, initial encounter +S65594D Other specified injury of blood vessel of right ring finger, subsequent encounter +S65594S Other specified injury of blood vessel of right ring finger, sequela +S65595A Other specified injury of blood vessel of left ring finger, initial encounter +S65595D Other specified injury of blood vessel of left ring finger, subsequent encounter +S65595S Other specified injury of blood vessel of left ring finger, sequela +S65596A Other specified injury of blood vessel of right little finger, initial encounter +S65596D Other specified injury of blood vessel of right little finger, subsequent encounter +S65596S Other specified injury of blood vessel of right little finger, sequela +S65597A Other specified injury of blood vessel of left little finger, initial encounter +S65597D Other specified injury of blood vessel of left little finger, subsequent encounter +S65597S Other specified injury of blood vessel of left little finger, sequela +S65598A Other specified injury of blood vessel of other finger, initial encounter +S65598D Other specified injury of blood vessel of other finger, subsequent encounter +S65598S Other specified injury of blood vessel of other finger, sequela +S65599A Other specified injury of blood vessel of unspecified finger, initial encounter +S65599D Other specified injury of blood vessel of unspecified finger, subsequent encounter +S65599S Other specified injury of blood vessel of unspecified finger, sequela +S65801A Unspecified injury of other blood vessels at wrist and hand level of right arm, initial encounter +S65801D Unspecified injury of other blood vessels at wrist and hand level of right arm, subsequent encounter +S65801S Unspecified injury of other blood vessels at wrist and hand level of right arm, sequela +S65802A Unspecified injury of other blood vessels at wrist and hand level of left arm, initial encounter +S65802D Unspecified injury of other blood vessels at wrist and hand level of left arm, subsequent encounter +S65802S Unspecified injury of other blood vessels at wrist and hand level of left arm, sequela +S65809A Unspecified injury of other blood vessels at wrist and hand level of unspecified arm, initial encounter +S65809D Unspecified injury of other blood vessels at wrist and hand level of unspecified arm, subsequent encounter +S65809S Unspecified injury of other blood vessels at wrist and hand level of unspecified arm, sequela +S65811A Laceration of other blood vessels at wrist and hand level of right arm, initial encounter +S65811D Laceration of other blood vessels at wrist and hand level of right arm, subsequent encounter +S65811S Laceration of other blood vessels at wrist and hand level of right arm, sequela +S65812A Laceration of other blood vessels at wrist and hand level of left arm, initial encounter +S65812D Laceration of other blood vessels at wrist and hand level of left arm, subsequent encounter +S65812S Laceration of other blood vessels at wrist and hand level of left arm, sequela +S65819A Laceration of other blood vessels at wrist and hand level of unspecified arm, initial encounter +S65819D Laceration of other blood vessels at wrist and hand level of unspecified arm, subsequent encounter +S65819S Laceration of other blood vessels at wrist and hand level of unspecified arm, sequela +S65891A Other specified injury of other blood vessels at wrist and hand level of right arm, initial encounter +S65891D Other specified injury of other blood vessels at wrist and hand level of right arm, subsequent encounter +S65891S Other specified injury of other blood vessels at wrist and hand level of right arm, sequela +S65892A Other specified injury of other blood vessels at wrist and hand level of left arm, initial encounter +S65892D Other specified injury of other blood vessels at wrist and hand level of left arm, subsequent encounter +S65892S Other specified injury of other blood vessels at wrist and hand level of left arm, sequela +S65899A Other specified injury of other blood vessels at wrist and hand level of unspecified arm, initial encounter +S65899D Other specified injury of other blood vessels at wrist and hand level of unspecified arm, subsequent encounter +S65899S Other specified injury of other blood vessels at wrist and hand level of unspecified arm, sequela +S65901A Unspecified injury of unspecified blood vessel at wrist and hand level of right arm, initial encounter +S65901D Unspecified injury of unspecified blood vessel at wrist and hand level of right arm, subsequent encounter +S65901S Unspecified injury of unspecified blood vessel at wrist and hand level of right arm, sequela +S65902A Unspecified injury of unspecified blood vessel at wrist and hand level of left arm, initial encounter +S65902D Unspecified injury of unspecified blood vessel at wrist and hand level of left arm, subsequent encounter +S65902S Unspecified injury of unspecified blood vessel at wrist and hand level of left arm, sequela +S65909A Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm, initial encounter +S65909D Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm, subsequent encounter +S65909S Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm, sequela +S65911A Laceration of unspecified blood vessel at wrist and hand level of right arm, initial encounter +S65911D Laceration of unspecified blood vessel at wrist and hand level of right arm, subsequent encounter +S65911S Laceration of unspecified blood vessel at wrist and hand level of right arm, sequela +S65912A Laceration of unspecified blood vessel at wrist and hand level of left arm, initial encounter +S65912D Laceration of unspecified blood vessel at wrist and hand level of left arm, subsequent encounter +S65912S Laceration of unspecified blood vessel at wrist and hand level of left arm, sequela +S65919A Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, initial encounter +S65919D Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, subsequent encounter +S65919S Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, sequela +S65991A Other specified injury of unspecified blood vessel at wrist and hand of right arm, initial encounter +S65991D Other specified injury of unspecified blood vessel at wrist and hand of right arm, subsequent encounter +S65991S Other specified injury of unspecified blood vessel at wrist and hand of right arm, sequela +S65992A Other specified injury of unspecified blood vessel at wrist and hand of left arm, initial encounter +S65992D Other specified injury of unspecified blood vessel at wrist and hand of left arm, subsequent encounter +S65992S Other specified injury of unspecified blood vessel at wrist and hand of left arm, sequela +S65999A Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm, initial encounter +S65999D Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm, subsequent encounter +S65999S Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm, sequela +S66001A Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66001D Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66001S Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66002A Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66002D Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66002S Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66009A Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66009D Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66009S Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66011A Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66011D Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66011S Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66012A Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66012D Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66012S Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66019A Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66019D Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66019S Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66021A Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66021D Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66021S Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66022A Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66022D Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66022S Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66029A Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66029D Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66029S Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66091A Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66091D Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66091S Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66092A Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66092D Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66092S Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66099A Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66099D Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66099S Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66100A Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66100D Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66100S Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66101A Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66101D Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66101S Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66102A Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66102D Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66102S Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66103A Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66103D Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66103S Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66104A Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66104D Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66104S Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66105A Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66105D Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66105S Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66106A Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66106D Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66106S Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66107A Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66107D Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66107S Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66108A Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66108D Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66108S Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66109A Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66109D Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66109S Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66110A Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66110D Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66110S Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66111A Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66111D Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66111S Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66112A Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66112D Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66112S Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66113A Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66113D Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66113S Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66114A Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66114D Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66114S Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66115A Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66115D Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66115S Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66116A Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66116D Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66116S Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66117A Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66117D Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66117S Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66118A Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66118D Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66118S Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66119A Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66119D Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66119S Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66120A Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66120D Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66120S Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66121A Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66121D Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66121S Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66122A Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66122D Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66122S Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66123A Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66123D Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66123S Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66124A Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66124D Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66124S Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66125A Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66125D Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66125S Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66126A Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66126D Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66126S Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66127A Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66127D Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66127S Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66128A Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66128D Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66128S Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66129A Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66129D Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66129S Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66190A Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66190D Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66190S Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66191A Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66191D Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66191S Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66192A Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66192D Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66192S Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66193A Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66193D Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66193S Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66194A Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66194D Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66194S Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66195A Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66195D Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66195S Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66196A Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66196D Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66196S Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66197A Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66197D Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66197S Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66198A Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66198D Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66198S Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66199A Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66199D Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66199S Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66201A Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66201D Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66201S Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66202A Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66202D Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66202S Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66209A Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66209D Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66209S Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66211A Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66211D Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66211S Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66212A Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66212D Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66212S Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66219A Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66219D Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66219S Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66221A Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66221D Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66221S Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66222A Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66222D Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66222S Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66229A Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66229D Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66229S Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66291A Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66291D Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66291S Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66292A Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66292D Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66292S Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66299A Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66299D Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66299S Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66300A Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66300D Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66300S Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66301A Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66301D Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66301S Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66302A Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66302D Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66302S Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66303A Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66303D Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66303S Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66304A Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66304D Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66304S Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66305A Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66305D Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66305S Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66306A Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66306D Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66306S Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66307A Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66307D Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66307S Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66308A Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66308D Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66308S Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66309A Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66309D Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66309S Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66310A Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66310D Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66310S Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66311A Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66311D Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66311S Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66312A Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66312D Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66312S Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66313A Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66313D Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66313S Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66314A Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66314D Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66314S Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66315A Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66315D Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66315S Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66316A Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66316D Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66316S Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66317A Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66317D Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66317S Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66318A Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66318D Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66318S Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66319A Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66319D Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66319S Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66320A Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66320D Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66320S Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66321A Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66321D Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66321S Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66322A Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66322D Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66322S Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66323A Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66323D Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66323S Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66324A Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66324D Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66324S Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66325A Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66325D Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66325S Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66326A Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66326D Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66326S Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66327A Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66327D Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66327S Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66328A Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66328D Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66328S Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66329A Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66329D Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66329S Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66390A Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66390D Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66390S Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66391A Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66391D Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66391S Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66392A Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66392D Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66392S Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66393A Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66393D Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66393S Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66394A Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66394D Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66394S Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66395A Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66395D Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66395S Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66396A Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66396D Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66396S Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66397A Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66397D Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66397S Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66398A Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66398D Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66398S Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66399A Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66399D Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66399S Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66401A Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66401D Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66401S Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66402A Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66402D Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66402S Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66409A Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66409D Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66409S Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66411A Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66411D Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66411S Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66412A Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66412D Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66412S Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66419A Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66419D Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66419S Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66421A Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66421D Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66421S Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66422A Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66422D Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66422S Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66429A Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66429D Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66429S Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66491A Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter +S66491D Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter +S66491S Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela +S66492A Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter +S66492D Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter +S66492S Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela +S66499A Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter +S66499D Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter +S66499S Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +S66500A Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66500D Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66500S Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66501A Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66501D Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66501S Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66502A Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66502D Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66502S Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66503A Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66503D Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66503S Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66504A Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66504D Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66504S Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66505A Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66505D Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66505S Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66506A Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66506D Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66506S Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66507A Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66507D Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66507S Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66508A Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66508D Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66508S Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66509A Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66509D Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66509S Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66510A Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66510D Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66510S Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66511A Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66511D Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66511S Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66512A Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66512D Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66512S Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66513A Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66513D Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66513S Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66514A Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66514D Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66514S Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66515A Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66515D Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66515S Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66516A Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66516D Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66516S Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66517A Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66517D Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66517S Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66518A Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66518D Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66518S Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66519A Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66519D Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66519S Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66520A Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66520D Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66520S Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66521A Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66521D Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66521S Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66522A Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66522D Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66522S Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66523A Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66523D Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66523S Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66524A Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66524D Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66524S Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66525A Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66525D Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66525S Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66526A Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66526D Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66526S Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66527A Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66527D Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66527S Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66528A Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66528D Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66528S Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66529A Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66529D Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66529S Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66590A Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter +S66590D Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter +S66590S Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela +S66591A Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter +S66591D Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter +S66591S Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela +S66592A Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter +S66592D Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter +S66592S Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +S66593A Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter +S66593D Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter +S66593S Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +S66594A Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter +S66594D Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter +S66594S Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +S66595A Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter +S66595D Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter +S66595S Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +S66596A Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter +S66596D Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter +S66596S Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela +S66597A Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter +S66597D Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter +S66597S Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela +S66598A Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter +S66598D Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter +S66598S Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela +S66599A Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter +S66599D Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter +S66599S Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +S66801A Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter +S66801D Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter +S66801S Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela +S66802A Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter +S66802D Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter +S66802S Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela +S66809A Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter +S66809D Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter +S66809S Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela +S66811A Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter +S66811D Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter +S66811S Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela +S66812A Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter +S66812D Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter +S66812S Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela +S66819A Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter +S66819D Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter +S66819S Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela +S66821A Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter +S66821D Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter +S66821S Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela +S66822A Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter +S66822D Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter +S66822S Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela +S66829A Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter +S66829D Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter +S66829S Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela +S66891A Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter +S66891D Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter +S66891S Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela +S66892A Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter +S66892D Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter +S66892S Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela +S66899A Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter +S66899D Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter +S66899S Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela +S66901A Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter +S66901D Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter +S66901S Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela +S66902A Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter +S66902D Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter +S66902S Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela +S66909A Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter +S66909D Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter +S66909S Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela +S66911A Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter +S66911D Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter +S66911S Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela +S66912A Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter +S66912D Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter +S66912S Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela +S66919A Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter +S66919D Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter +S66919S Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela +S66921A Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter +S66921D Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter +S66921S Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela +S66922A Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter +S66922D Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter +S66922S Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela +S66929A Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter +S66929D Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter +S66929S Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela +S66991A Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter +S66991D Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter +S66991S Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela +S66992A Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter +S66992D Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter +S66992S Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela +S66999A Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter +S66999D Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter +S66999S Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela +S6700XA Crushing injury of unspecified thumb, initial encounter +S6700XD Crushing injury of unspecified thumb, subsequent encounter +S6700XS Crushing injury of unspecified thumb, sequela +S6701XA Crushing injury of right thumb, initial encounter +S6701XD Crushing injury of right thumb, subsequent encounter +S6701XS Crushing injury of right thumb, sequela +S6702XA Crushing injury of left thumb, initial encounter +S6702XD Crushing injury of left thumb, subsequent encounter +S6702XS Crushing injury of left thumb, sequela +S6710XA Crushing injury of unspecified finger(s), initial encounter +S6710XD Crushing injury of unspecified finger(s), subsequent encounter +S6710XS Crushing injury of unspecified finger(s), sequela +S67190A Crushing injury of right index finger, initial encounter +S67190D Crushing injury of right index finger, subsequent encounter +S67190S Crushing injury of right index finger, sequela +S67191A Crushing injury of left index finger, initial encounter +S67191D Crushing injury of left index finger, subsequent encounter +S67191S Crushing injury of left index finger, sequela +S67192A Crushing injury of right middle finger, initial encounter +S67192D Crushing injury of right middle finger, subsequent encounter +S67192S Crushing injury of right middle finger, sequela +S67193A Crushing injury of left middle finger, initial encounter +S67193D Crushing injury of left middle finger, subsequent encounter +S67193S Crushing injury of left middle finger, sequela +S67194A Crushing injury of right ring finger, initial encounter +S67194D Crushing injury of right ring finger, subsequent encounter +S67194S Crushing injury of right ring finger, sequela +S67195A Crushing injury of left ring finger, initial encounter +S67195D Crushing injury of left ring finger, subsequent encounter +S67195S Crushing injury of left ring finger, sequela +S67196A Crushing injury of right little finger, initial encounter +S67196D Crushing injury of right little finger, subsequent encounter +S67196S Crushing injury of right little finger, sequela +S67197A Crushing injury of left little finger, initial encounter +S67197D Crushing injury of left little finger, subsequent encounter +S67197S Crushing injury of left little finger, sequela +S67198A Crushing injury of other finger, initial encounter +S67198D Crushing injury of other finger, subsequent encounter +S67198S Crushing injury of other finger, sequela +S6720XA Crushing injury of unspecified hand, initial encounter +S6720XD Crushing injury of unspecified hand, subsequent encounter +S6720XS Crushing injury of unspecified hand, sequela +S6721XA Crushing injury of right hand, initial encounter +S6721XD Crushing injury of right hand, subsequent encounter +S6721XS Crushing injury of right hand, sequela +S6722XA Crushing injury of left hand, initial encounter +S6722XD Crushing injury of left hand, subsequent encounter +S6722XS Crushing injury of left hand, sequela +S6730XA Crushing injury of unspecified wrist, initial encounter +S6730XD Crushing injury of unspecified wrist, subsequent encounter +S6730XS Crushing injury of unspecified wrist, sequela +S6731XA Crushing injury of right wrist, initial encounter +S6731XD Crushing injury of right wrist, subsequent encounter +S6731XS Crushing injury of right wrist, sequela +S6732XA Crushing injury of left wrist, initial encounter +S6732XD Crushing injury of left wrist, subsequent encounter +S6732XS Crushing injury of left wrist, sequela +S6740XA Crushing injury of unspecified wrist and hand, initial encounter +S6740XD Crushing injury of unspecified wrist and hand, subsequent encounter +S6740XS Crushing injury of unspecified wrist and hand, sequela +S6741XA Crushing injury of right wrist and hand, initial encounter +S6741XD Crushing injury of right wrist and hand, subsequent encounter +S6741XS Crushing injury of right wrist and hand, sequela +S6742XA Crushing injury of left wrist and hand, initial encounter +S6742XD Crushing injury of left wrist and hand, subsequent encounter +S6742XS Crushing injury of left wrist and hand, sequela +S6790XA Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, initial encounter +S6790XD Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, subsequent encounter +S6790XS Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, sequela +S6791XA Crushing injury of unspecified part(s) of right wrist, hand and fingers, initial encounter +S6791XD Crushing injury of unspecified part(s) of right wrist, hand and fingers, subsequent encounter +S6791XS Crushing injury of unspecified part(s) of right wrist, hand and fingers, sequela +S6792XA Crushing injury of unspecified part(s) of left wrist, hand and fingers, initial encounter +S6792XD Crushing injury of unspecified part(s) of left wrist, hand and fingers, subsequent encounter +S6792XS Crushing injury of unspecified part(s) of left wrist, hand and fingers, sequela +S68011A Complete traumatic metacarpophalangeal amputation of right thumb, initial encounter +S68011D Complete traumatic metacarpophalangeal amputation of right thumb, subsequent encounter +S68011S Complete traumatic metacarpophalangeal amputation of right thumb, sequela +S68012A Complete traumatic metacarpophalangeal amputation of left thumb, initial encounter +S68012D Complete traumatic metacarpophalangeal amputation of left thumb, subsequent encounter +S68012S Complete traumatic metacarpophalangeal amputation of left thumb, sequela +S68019A Complete traumatic metacarpophalangeal amputation of unspecified thumb, initial encounter +S68019D Complete traumatic metacarpophalangeal amputation of unspecified thumb, subsequent encounter +S68019S Complete traumatic metacarpophalangeal amputation of unspecified thumb, sequela +S68021A Partial traumatic metacarpophalangeal amputation of right thumb, initial encounter +S68021D Partial traumatic metacarpophalangeal amputation of right thumb, subsequent encounter +S68021S Partial traumatic metacarpophalangeal amputation of right thumb, sequela +S68022A Partial traumatic metacarpophalangeal amputation of left thumb, initial encounter +S68022D Partial traumatic metacarpophalangeal amputation of left thumb, subsequent encounter +S68022S Partial traumatic metacarpophalangeal amputation of left thumb, sequela +S68029A Partial traumatic metacarpophalangeal amputation of unspecified thumb, initial encounter +S68029D Partial traumatic metacarpophalangeal amputation of unspecified thumb, subsequent encounter +S68029S Partial traumatic metacarpophalangeal amputation of unspecified thumb, sequela +S68110A Complete traumatic metacarpophalangeal amputation of right index finger, initial encounter +S68110D Complete traumatic metacarpophalangeal amputation of right index finger, subsequent encounter +S68110S Complete traumatic metacarpophalangeal amputation of right index finger, sequela +S68111A Complete traumatic metacarpophalangeal amputation of left index finger, initial encounter +S68111D Complete traumatic metacarpophalangeal amputation of left index finger, subsequent encounter +S68111S Complete traumatic metacarpophalangeal amputation of left index finger, sequela +S68112A Complete traumatic metacarpophalangeal amputation of right middle finger, initial encounter +S68112D Complete traumatic metacarpophalangeal amputation of right middle finger, subsequent encounter +S68112S Complete traumatic metacarpophalangeal amputation of right middle finger, sequela +S68113A Complete traumatic metacarpophalangeal amputation of left middle finger, initial encounter +S68113D Complete traumatic metacarpophalangeal amputation of left middle finger, subsequent encounter +S68113S Complete traumatic metacarpophalangeal amputation of left middle finger, sequela +S68114A Complete traumatic metacarpophalangeal amputation of right ring finger, initial encounter +S68114D Complete traumatic metacarpophalangeal amputation of right ring finger, subsequent encounter +S68114S Complete traumatic metacarpophalangeal amputation of right ring finger, sequela +S68115A Complete traumatic metacarpophalangeal amputation of left ring finger, initial encounter +S68115D Complete traumatic metacarpophalangeal amputation of left ring finger, subsequent encounter +S68115S Complete traumatic metacarpophalangeal amputation of left ring finger, sequela +S68116A Complete traumatic metacarpophalangeal amputation of right little finger, initial encounter +S68116D Complete traumatic metacarpophalangeal amputation of right little finger, subsequent encounter +S68116S Complete traumatic metacarpophalangeal amputation of right little finger, sequela +S68117A Complete traumatic metacarpophalangeal amputation of left little finger, initial encounter +S68117D Complete traumatic metacarpophalangeal amputation of left little finger, subsequent encounter +S68117S Complete traumatic metacarpophalangeal amputation of left little finger, sequela +S68118A Complete traumatic metacarpophalangeal amputation of other finger, initial encounter +S68118D Complete traumatic metacarpophalangeal amputation of other finger, subsequent encounter +S68118S Complete traumatic metacarpophalangeal amputation of other finger, sequela +S68119A Complete traumatic metacarpophalangeal amputation of unspecified finger, initial encounter +S68119D Complete traumatic metacarpophalangeal amputation of unspecified finger, subsequent encounter +S68119S Complete traumatic metacarpophalangeal amputation of unspecified finger, sequela +S68120A Partial traumatic metacarpophalangeal amputation of right index finger, initial encounter +S68120D Partial traumatic metacarpophalangeal amputation of right index finger, subsequent encounter +S68120S Partial traumatic metacarpophalangeal amputation of right index finger, sequela +S68121A Partial traumatic metacarpophalangeal amputation of left index finger, initial encounter +S68121D Partial traumatic metacarpophalangeal amputation of left index finger, subsequent encounter +S68121S Partial traumatic metacarpophalangeal amputation of left index finger, sequela +S68122A Partial traumatic metacarpophalangeal amputation of right middle finger, initial encounter +S68122D Partial traumatic metacarpophalangeal amputation of right middle finger, subsequent encounter +S68122S Partial traumatic metacarpophalangeal amputation of right middle finger, sequela +S68123A Partial traumatic metacarpophalangeal amputation of left middle finger, initial encounter +S68123D Partial traumatic metacarpophalangeal amputation of left middle finger, subsequent encounter +S68123S Partial traumatic metacarpophalangeal amputation of left middle finger, sequela +S68124A Partial traumatic metacarpophalangeal amputation of right ring finger, initial encounter +S68124D Partial traumatic metacarpophalangeal amputation of right ring finger, subsequent encounter +S68124S Partial traumatic metacarpophalangeal amputation of right ring finger, sequela +S68125A Partial traumatic metacarpophalangeal amputation of left ring finger, initial encounter +S68125D Partial traumatic metacarpophalangeal amputation of left ring finger, subsequent encounter +S68125S Partial traumatic metacarpophalangeal amputation of left ring finger, sequela +S68126A Partial traumatic metacarpophalangeal amputation of right little finger, initial encounter +S68126D Partial traumatic metacarpophalangeal amputation of right little finger, subsequent encounter +S68126S Partial traumatic metacarpophalangeal amputation of right little finger, sequela +S68127A Partial traumatic metacarpophalangeal amputation of left little finger, initial encounter +S68127D Partial traumatic metacarpophalangeal amputation of left little finger, subsequent encounter +S68127S Partial traumatic metacarpophalangeal amputation of left little finger, sequela +S68128A Partial traumatic metacarpophalangeal amputation of other finger, initial encounter +S68128D Partial traumatic metacarpophalangeal amputation of other finger, subsequent encounter +S68128S Partial traumatic metacarpophalangeal amputation of other finger, sequela +S68129A Partial traumatic metacarpophalangeal amputation of unspecified finger, initial encounter +S68129D Partial traumatic metacarpophalangeal amputation of unspecified finger, subsequent encounter +S68129S Partial traumatic metacarpophalangeal amputation of unspecified finger, sequela +S68411A Complete traumatic amputation of right hand at wrist level, initial encounter +S68411D Complete traumatic amputation of right hand at wrist level, subsequent encounter +S68411S Complete traumatic amputation of right hand at wrist level, sequela +S68412A Complete traumatic amputation of left hand at wrist level, initial encounter +S68412D Complete traumatic amputation of left hand at wrist level, subsequent encounter +S68412S Complete traumatic amputation of left hand at wrist level, sequela +S68419A Complete traumatic amputation of unspecified hand at wrist level, initial encounter +S68419D Complete traumatic amputation of unspecified hand at wrist level, subsequent encounter +S68419S Complete traumatic amputation of unspecified hand at wrist level, sequela +S68421A Partial traumatic amputation of right hand at wrist level, initial encounter +S68421D Partial traumatic amputation of right hand at wrist level, subsequent encounter +S68421S Partial traumatic amputation of right hand at wrist level, sequela +S68422A Partial traumatic amputation of left hand at wrist level, initial encounter +S68422D Partial traumatic amputation of left hand at wrist level, subsequent encounter +S68422S Partial traumatic amputation of left hand at wrist level, sequela +S68429A Partial traumatic amputation of unspecified hand at wrist level, initial encounter +S68429D Partial traumatic amputation of unspecified hand at wrist level, subsequent encounter +S68429S Partial traumatic amputation of unspecified hand at wrist level, sequela +S68511A Complete traumatic transphalangeal amputation of right thumb, initial encounter +S68511D Complete traumatic transphalangeal amputation of right thumb, subsequent encounter +S68511S Complete traumatic transphalangeal amputation of right thumb, sequela +S68512A Complete traumatic transphalangeal amputation of left thumb, initial encounter +S68512D Complete traumatic transphalangeal amputation of left thumb, subsequent encounter +S68512S Complete traumatic transphalangeal amputation of left thumb, sequela +S68519A Complete traumatic transphalangeal amputation of unspecified thumb, initial encounter +S68519D Complete traumatic transphalangeal amputation of unspecified thumb, subsequent encounter +S68519S Complete traumatic transphalangeal amputation of unspecified thumb, sequela +S68521A Partial traumatic transphalangeal amputation of right thumb, initial encounter +S68521D Partial traumatic transphalangeal amputation of right thumb, subsequent encounter +S68521S Partial traumatic transphalangeal amputation of right thumb, sequela +S68522A Partial traumatic transphalangeal amputation of left thumb, initial encounter +S68522D Partial traumatic transphalangeal amputation of left thumb, subsequent encounter +S68522S Partial traumatic transphalangeal amputation of left thumb, sequela +S68529A Partial traumatic transphalangeal amputation of unspecified thumb, initial encounter +S68529D Partial traumatic transphalangeal amputation of unspecified thumb, subsequent encounter +S68529S Partial traumatic transphalangeal amputation of unspecified thumb, sequela +S68610A Complete traumatic transphalangeal amputation of right index finger, initial encounter +S68610D Complete traumatic transphalangeal amputation of right index finger, subsequent encounter +S68610S Complete traumatic transphalangeal amputation of right index finger, sequela +S68611A Complete traumatic transphalangeal amputation of left index finger, initial encounter +S68611D Complete traumatic transphalangeal amputation of left index finger, subsequent encounter +S68611S Complete traumatic transphalangeal amputation of left index finger, sequela +S68612A Complete traumatic transphalangeal amputation of right middle finger, initial encounter +S68612D Complete traumatic transphalangeal amputation of right middle finger, subsequent encounter +S68612S Complete traumatic transphalangeal amputation of right middle finger, sequela +S68613A Complete traumatic transphalangeal amputation of left middle finger, initial encounter +S68613D Complete traumatic transphalangeal amputation of left middle finger, subsequent encounter +S68613S Complete traumatic transphalangeal amputation of left middle finger, sequela +S68614A Complete traumatic transphalangeal amputation of right ring finger, initial encounter +S68614D Complete traumatic transphalangeal amputation of right ring finger, subsequent encounter +S68614S Complete traumatic transphalangeal amputation of right ring finger, sequela +S68615A Complete traumatic transphalangeal amputation of left ring finger, initial encounter +S68615D Complete traumatic transphalangeal amputation of left ring finger, subsequent encounter +S68615S Complete traumatic transphalangeal amputation of left ring finger, sequela +S68616A Complete traumatic transphalangeal amputation of right little finger, initial encounter +S68616D Complete traumatic transphalangeal amputation of right little finger, subsequent encounter +S68616S Complete traumatic transphalangeal amputation of right little finger, sequela +S68617A Complete traumatic transphalangeal amputation of left little finger, initial encounter +S68617D Complete traumatic transphalangeal amputation of left little finger, subsequent encounter +S68617S Complete traumatic transphalangeal amputation of left little finger, sequela +S68618A Complete traumatic transphalangeal amputation of other finger, initial encounter +S68618D Complete traumatic transphalangeal amputation of other finger, subsequent encounter +S68618S Complete traumatic transphalangeal amputation of other finger, sequela +S68619A Complete traumatic transphalangeal amputation of unspecified finger, initial encounter +S68619D Complete traumatic transphalangeal amputation of unspecified finger, subsequent encounter +S68619S Complete traumatic transphalangeal amputation of unspecified finger, sequela +S68620A Partial traumatic transphalangeal amputation of right index finger, initial encounter +S68620D Partial traumatic transphalangeal amputation of right index finger, subsequent encounter +S68620S Partial traumatic transphalangeal amputation of right index finger, sequela +S68621A Partial traumatic transphalangeal amputation of left index finger, initial encounter +S68621D Partial traumatic transphalangeal amputation of left index finger, subsequent encounter +S68621S Partial traumatic transphalangeal amputation of left index finger, sequela +S68622A Partial traumatic transphalangeal amputation of right middle finger, initial encounter +S68622D Partial traumatic transphalangeal amputation of right middle finger, subsequent encounter +S68622S Partial traumatic transphalangeal amputation of right middle finger, sequela +S68623A Partial traumatic transphalangeal amputation of left middle finger, initial encounter +S68623D Partial traumatic transphalangeal amputation of left middle finger, subsequent encounter +S68623S Partial traumatic transphalangeal amputation of left middle finger, sequela +S68624A Partial traumatic transphalangeal amputation of right ring finger, initial encounter +S68624D Partial traumatic transphalangeal amputation of right ring finger, subsequent encounter +S68624S Partial traumatic transphalangeal amputation of right ring finger, sequela +S68625A Partial traumatic transphalangeal amputation of left ring finger, initial encounter +S68625D Partial traumatic transphalangeal amputation of left ring finger, subsequent encounter +S68625S Partial traumatic transphalangeal amputation of left ring finger, sequela +S68626A Partial traumatic transphalangeal amputation of right little finger, initial encounter +S68626D Partial traumatic transphalangeal amputation of right little finger, subsequent encounter +S68626S Partial traumatic transphalangeal amputation of right little finger, sequela +S68627A Partial traumatic transphalangeal amputation of left little finger, initial encounter +S68627D Partial traumatic transphalangeal amputation of left little finger, subsequent encounter +S68627S Partial traumatic transphalangeal amputation of left little finger, sequela +S68628A Partial traumatic transphalangeal amputation of other finger, initial encounter +S68628D Partial traumatic transphalangeal amputation of other finger, subsequent encounter +S68628S Partial traumatic transphalangeal amputation of other finger, sequela +S68629A Partial traumatic transphalangeal amputation of unspecified finger, initial encounter +S68629D Partial traumatic transphalangeal amputation of unspecified finger, subsequent encounter +S68629S Partial traumatic transphalangeal amputation of unspecified finger, sequela +S68711A Complete traumatic transmetacarpal amputation of right hand, initial encounter +S68711D Complete traumatic transmetacarpal amputation of right hand, subsequent encounter +S68711S Complete traumatic transmetacarpal amputation of right hand, sequela +S68712A Complete traumatic transmetacarpal amputation of left hand, initial encounter +S68712D Complete traumatic transmetacarpal amputation of left hand, subsequent encounter +S68712S Complete traumatic transmetacarpal amputation of left hand, sequela +S68719A Complete traumatic transmetacarpal amputation of unspecified hand, initial encounter +S68719D Complete traumatic transmetacarpal amputation of unspecified hand, subsequent encounter +S68719S Complete traumatic transmetacarpal amputation of unspecified hand, sequela +S68721A Partial traumatic transmetacarpal amputation of right hand, initial encounter +S68721D Partial traumatic transmetacarpal amputation of right hand, subsequent encounter +S68721S Partial traumatic transmetacarpal amputation of right hand, sequela +S68722A Partial traumatic transmetacarpal amputation of left hand, initial encounter +S68722D Partial traumatic transmetacarpal amputation of left hand, subsequent encounter +S68722S Partial traumatic transmetacarpal amputation of left hand, sequela +S68729A Partial traumatic transmetacarpal amputation of unspecified hand, initial encounter +S68729D Partial traumatic transmetacarpal amputation of unspecified hand, subsequent encounter +S68729S Partial traumatic transmetacarpal amputation of unspecified hand, sequela +S6980XA Other specified injuries of unspecified wrist, hand and finger(s), initial encounter +S6980XD Other specified injuries of unspecified wrist, hand and finger(s), subsequent encounter +S6980XS Other specified injuries of unspecified wrist, hand and finger(s), sequela +S6981XA Other specified injuries of right wrist, hand and finger(s), initial encounter +S6981XD Other specified injuries of right wrist, hand and finger(s), subsequent encounter +S6981XS Other specified injuries of right wrist, hand and finger(s), sequela +S6982XA Other specified injuries of left wrist, hand and finger(s), initial encounter +S6982XD Other specified injuries of left wrist, hand and finger(s), subsequent encounter +S6982XS Other specified injuries of left wrist, hand and finger(s), sequela +S6990XA Unspecified injury of unspecified wrist, hand and finger(s), initial encounter +S6990XD Unspecified injury of unspecified wrist, hand and finger(s), subsequent encounter +S6990XS Unspecified injury of unspecified wrist, hand and finger(s), sequela +S6991XA Unspecified injury of right wrist, hand and finger(s), initial encounter +S6991XD Unspecified injury of right wrist, hand and finger(s), subsequent encounter +S6991XS Unspecified injury of right wrist, hand and finger(s), sequela +S6992XA Unspecified injury of left wrist, hand and finger(s), initial encounter +S6992XD Unspecified injury of left wrist, hand and finger(s), subsequent encounter +S6992XS Unspecified injury of left wrist, hand and finger(s), sequela +S7000XA Contusion of unspecified hip, initial encounter +S7000XD Contusion of unspecified hip, subsequent encounter +S7000XS Contusion of unspecified hip, sequela +S7001XA Contusion of right hip, initial encounter +S7001XD Contusion of right hip, subsequent encounter +S7001XS Contusion of right hip, sequela +S7002XA Contusion of left hip, initial encounter +S7002XD Contusion of left hip, subsequent encounter +S7002XS Contusion of left hip, sequela +S7010XA Contusion of unspecified thigh, initial encounter +S7010XD Contusion of unspecified thigh, subsequent encounter +S7010XS Contusion of unspecified thigh, sequela +S7011XA Contusion of right thigh, initial encounter +S7011XD Contusion of right thigh, subsequent encounter +S7011XS Contusion of right thigh, sequela +S7012XA Contusion of left thigh, initial encounter +S7012XD Contusion of left thigh, subsequent encounter +S7012XS Contusion of left thigh, sequela +S70211A Abrasion, right hip, initial encounter +S70211D Abrasion, right hip, subsequent encounter +S70211S Abrasion, right hip, sequela +S70212A Abrasion, left hip, initial encounter +S70212D Abrasion, left hip, subsequent encounter +S70212S Abrasion, left hip, sequela +S70219A Abrasion, unspecified hip, initial encounter +S70219D Abrasion, unspecified hip, subsequent encounter +S70219S Abrasion, unspecified hip, sequela +S70221A Blister (nonthermal), right hip, initial encounter +S70221D Blister (nonthermal), right hip, subsequent encounter +S70221S Blister (nonthermal), right hip, sequela +S70222A Blister (nonthermal), left hip, initial encounter +S70222D Blister (nonthermal), left hip, subsequent encounter +S70222S Blister (nonthermal), left hip, sequela +S70229A Blister (nonthermal), unspecified hip, initial encounter +S70229D Blister (nonthermal), unspecified hip, subsequent encounter +S70229S Blister (nonthermal), unspecified hip, sequela +S70241A External constriction, right hip, initial encounter +S70241D External constriction, right hip, subsequent encounter +S70241S External constriction, right hip, sequela +S70242A External constriction, left hip, initial encounter +S70242D External constriction, left hip, subsequent encounter +S70242S External constriction, left hip, sequela +S70249A External constriction, unspecified hip, initial encounter +S70249D External constriction, unspecified hip, subsequent encounter +S70249S External constriction, unspecified hip, sequela +S70251A Superficial foreign body, right hip, initial encounter +S70251D Superficial foreign body, right hip, subsequent encounter +S70251S Superficial foreign body, right hip, sequela +S70252A Superficial foreign body, left hip, initial encounter +S70252D Superficial foreign body, left hip, subsequent encounter +S70252S Superficial foreign body, left hip, sequela +S70259A Superficial foreign body, unspecified hip, initial encounter +S70259D Superficial foreign body, unspecified hip, subsequent encounter +S70259S Superficial foreign body, unspecified hip, sequela +S70261A Insect bite (nonvenomous), right hip, initial encounter +S70261D Insect bite (nonvenomous), right hip, subsequent encounter +S70261S Insect bite (nonvenomous), right hip, sequela +S70262A Insect bite (nonvenomous), left hip, initial encounter +S70262D Insect bite (nonvenomous), left hip, subsequent encounter +S70262S Insect bite (nonvenomous), left hip, sequela +S70269A Insect bite (nonvenomous), unspecified hip, initial encounter +S70269D Insect bite (nonvenomous), unspecified hip, subsequent encounter +S70269S Insect bite (nonvenomous), unspecified hip, sequela +S70271A Other superficial bite of hip, right hip, initial encounter +S70271D Other superficial bite of hip, right hip, subsequent encounter +S70271S Other superficial bite of hip, right hip, sequela +S70272A Other superficial bite of hip, left hip, initial encounter +S70272D Other superficial bite of hip, left hip, subsequent encounter +S70272S Other superficial bite of hip, left hip, sequela +S70279A Other superficial bite of hip, unspecified hip, initial encounter +S70279D Other superficial bite of hip, unspecified hip, subsequent encounter +S70279S Other superficial bite of hip, unspecified hip, sequela +S70311A Abrasion, right thigh, initial encounter +S70311D Abrasion, right thigh, subsequent encounter +S70311S Abrasion, right thigh, sequela +S70312A Abrasion, left thigh, initial encounter +S70312D Abrasion, left thigh, subsequent encounter +S70312S Abrasion, left thigh, sequela +S70319A Abrasion, unspecified thigh, initial encounter +S70319D Abrasion, unspecified thigh, subsequent encounter +S70319S Abrasion, unspecified thigh, sequela +S70321A Blister (nonthermal), right thigh, initial encounter +S70321D Blister (nonthermal), right thigh, subsequent encounter +S70321S Blister (nonthermal), right thigh, sequela +S70322A Blister (nonthermal), left thigh, initial encounter +S70322D Blister (nonthermal), left thigh, subsequent encounter +S70322S Blister (nonthermal), left thigh, sequela +S70329A Blister (nonthermal), unspecified thigh, initial encounter +S70329D Blister (nonthermal), unspecified thigh, subsequent encounter +S70329S Blister (nonthermal), unspecified thigh, sequela +S70341A External constriction, right thigh, initial encounter +S70341D External constriction, right thigh, subsequent encounter +S70341S External constriction, right thigh, sequela +S70342A External constriction, left thigh, initial encounter +S70342D External constriction, left thigh, subsequent encounter +S70342S External constriction, left thigh, sequela +S70349A External constriction, unspecified thigh, initial encounter +S70349D External constriction, unspecified thigh, subsequent encounter +S70349S External constriction, unspecified thigh, sequela +S70351A Superficial foreign body, right thigh, initial encounter +S70351D Superficial foreign body, right thigh, subsequent encounter +S70351S Superficial foreign body, right thigh, sequela +S70352A Superficial foreign body, left thigh, initial encounter +S70352D Superficial foreign body, left thigh, subsequent encounter +S70352S Superficial foreign body, left thigh, sequela +S70359A Superficial foreign body, unspecified thigh, initial encounter +S70359D Superficial foreign body, unspecified thigh, subsequent encounter +S70359S Superficial foreign body, unspecified thigh, sequela +S70361A Insect bite (nonvenomous), right thigh, initial encounter +S70361D Insect bite (nonvenomous), right thigh, subsequent encounter +S70361S Insect bite (nonvenomous), right thigh, sequela +S70362A Insect bite (nonvenomous), left thigh, initial encounter +S70362D Insect bite (nonvenomous), left thigh, subsequent encounter +S70362S Insect bite (nonvenomous), left thigh, sequela +S70369A Insect bite (nonvenomous), unspecified thigh, initial encounter +S70369D Insect bite (nonvenomous), unspecified thigh, subsequent encounter +S70369S Insect bite (nonvenomous), unspecified thigh, sequela +S70371A Other superficial bite of right thigh, initial encounter +S70371D Other superficial bite of right thigh, subsequent encounter +S70371S Other superficial bite of right thigh, sequela +S70372A Other superficial bite of left thigh, initial encounter +S70372D Other superficial bite of left thigh, subsequent encounter +S70372S Other superficial bite of left thigh, sequela +S70379A Other superficial bite of unspecified thigh, initial encounter +S70379D Other superficial bite of unspecified thigh, subsequent encounter +S70379S Other superficial bite of unspecified thigh, sequela +S70911A Unspecified superficial injury of right hip, initial encounter +S70911D Unspecified superficial injury of right hip, subsequent encounter +S70911S Unspecified superficial injury of right hip, sequela +S70912A Unspecified superficial injury of left hip, initial encounter +S70912D Unspecified superficial injury of left hip, subsequent encounter +S70912S Unspecified superficial injury of left hip, sequela +S70919A Unspecified superficial injury of unspecified hip, initial encounter +S70919D Unspecified superficial injury of unspecified hip, subsequent encounter +S70919S Unspecified superficial injury of unspecified hip, sequela +S70921A Unspecified superficial injury of right thigh, initial encounter +S70921D Unspecified superficial injury of right thigh, subsequent encounter +S70921S Unspecified superficial injury of right thigh, sequela +S70922A Unspecified superficial injury of left thigh, initial encounter +S70922D Unspecified superficial injury of left thigh, subsequent encounter +S70922S Unspecified superficial injury of left thigh, sequela +S70929A Unspecified superficial injury of unspecified thigh, initial encounter +S70929D Unspecified superficial injury of unspecified thigh, subsequent encounter +S70929S Unspecified superficial injury of unspecified thigh, sequela +S71001A Unspecified open wound, right hip, initial encounter +S71001D Unspecified open wound, right hip, subsequent encounter +S71001S Unspecified open wound, right hip, sequela +S71002A Unspecified open wound, left hip, initial encounter +S71002D Unspecified open wound, left hip, subsequent encounter +S71002S Unspecified open wound, left hip, sequela +S71009A Unspecified open wound, unspecified hip, initial encounter +S71009D Unspecified open wound, unspecified hip, subsequent encounter +S71009S Unspecified open wound, unspecified hip, sequela +S71011A Laceration without foreign body, right hip, initial encounter +S71011D Laceration without foreign body, right hip, subsequent encounter +S71011S Laceration without foreign body, right hip, sequela +S71012A Laceration without foreign body, left hip, initial encounter +S71012D Laceration without foreign body, left hip, subsequent encounter +S71012S Laceration without foreign body, left hip, sequela +S71019A Laceration without foreign body, unspecified hip, initial encounter +S71019D Laceration without foreign body, unspecified hip, subsequent encounter +S71019S Laceration without foreign body, unspecified hip, sequela +S71021A Laceration with foreign body, right hip, initial encounter +S71021D Laceration with foreign body, right hip, subsequent encounter +S71021S Laceration with foreign body, right hip, sequela +S71022A Laceration with foreign body, left hip, initial encounter +S71022D Laceration with foreign body, left hip, subsequent encounter +S71022S Laceration with foreign body, left hip, sequela +S71029A Laceration with foreign body, unspecified hip, initial encounter +S71029D Laceration with foreign body, unspecified hip, subsequent encounter +S71029S Laceration with foreign body, unspecified hip, sequela +S71031A Puncture wound without foreign body, right hip, initial encounter +S71031D Puncture wound without foreign body, right hip, subsequent encounter +S71031S Puncture wound without foreign body, right hip, sequela +S71032A Puncture wound without foreign body, left hip, initial encounter +S71032D Puncture wound without foreign body, left hip, subsequent encounter +S71032S Puncture wound without foreign body, left hip, sequela +S71039A Puncture wound without foreign body, unspecified hip, initial encounter +S71039D Puncture wound without foreign body, unspecified hip, subsequent encounter +S71039S Puncture wound without foreign body, unspecified hip, sequela +S71041A Puncture wound with foreign body, right hip, initial encounter +S71041D Puncture wound with foreign body, right hip, subsequent encounter +S71041S Puncture wound with foreign body, right hip, sequela +S71042A Puncture wound with foreign body, left hip, initial encounter +S71042D Puncture wound with foreign body, left hip, subsequent encounter +S71042S Puncture wound with foreign body, left hip, sequela +S71049A Puncture wound with foreign body, unspecified hip, initial encounter +S71049D Puncture wound with foreign body, unspecified hip, subsequent encounter +S71049S Puncture wound with foreign body, unspecified hip, sequela +S71051A Open bite, right hip, initial encounter +S71051D Open bite, right hip, subsequent encounter +S71051S Open bite, right hip, sequela +S71052A Open bite, left hip, initial encounter +S71052D Open bite, left hip, subsequent encounter +S71052S Open bite, left hip, sequela +S71059A Open bite, unspecified hip, initial encounter +S71059D Open bite, unspecified hip, subsequent encounter +S71059S Open bite, unspecified hip, sequela +S71101A Unspecified open wound, right thigh, initial encounter +S71101D Unspecified open wound, right thigh, subsequent encounter +S71101S Unspecified open wound, right thigh, sequela +S71102A Unspecified open wound, left thigh, initial encounter +S71102D Unspecified open wound, left thigh, subsequent encounter +S71102S Unspecified open wound, left thigh, sequela +S71109A Unspecified open wound, unspecified thigh, initial encounter +S71109D Unspecified open wound, unspecified thigh, subsequent encounter +S71109S Unspecified open wound, unspecified thigh, sequela +S71111A Laceration without foreign body, right thigh, initial encounter +S71111D Laceration without foreign body, right thigh, subsequent encounter +S71111S Laceration without foreign body, right thigh, sequela +S71112A Laceration without foreign body, left thigh, initial encounter +S71112D Laceration without foreign body, left thigh, subsequent encounter +S71112S Laceration without foreign body, left thigh, sequela +S71119A Laceration without foreign body, unspecified thigh, initial encounter +S71119D Laceration without foreign body, unspecified thigh, subsequent encounter +S71119S Laceration without foreign body, unspecified thigh, sequela +S71121A Laceration with foreign body, right thigh, initial encounter +S71121D Laceration with foreign body, right thigh, subsequent encounter +S71121S Laceration with foreign body, right thigh, sequela +S71122A Laceration with foreign body, left thigh, initial encounter +S71122D Laceration with foreign body, left thigh, subsequent encounter +S71122S Laceration with foreign body, left thigh, sequela +S71129A Laceration with foreign body, unspecified thigh, initial encounter +S71129D Laceration with foreign body, unspecified thigh, subsequent encounter +S71129S Laceration with foreign body, unspecified thigh, sequela +S71131A Puncture wound without foreign body, right thigh, initial encounter +S71131D Puncture wound without foreign body, right thigh, subsequent encounter +S71131S Puncture wound without foreign body, right thigh, sequela +S71132A Puncture wound without foreign body, left thigh, initial encounter +S71132D Puncture wound without foreign body, left thigh, subsequent encounter +S71132S Puncture wound without foreign body, left thigh, sequela +S71139A Puncture wound without foreign body, unspecified thigh, initial encounter +S71139D Puncture wound without foreign body, unspecified thigh, subsequent encounter +S71139S Puncture wound without foreign body, unspecified thigh, sequela +S71141A Puncture wound with foreign body, right thigh, initial encounter +S71141D Puncture wound with foreign body, right thigh, subsequent encounter +S71141S Puncture wound with foreign body, right thigh, sequela +S71142A Puncture wound with foreign body, left thigh, initial encounter +S71142D Puncture wound with foreign body, left thigh, subsequent encounter +S71142S Puncture wound with foreign body, left thigh, sequela +S71149A Puncture wound with foreign body, unspecified thigh, initial encounter +S71149D Puncture wound with foreign body, unspecified thigh, subsequent encounter +S71149S Puncture wound with foreign body, unspecified thigh, sequela +S71151A Open bite, right thigh, initial encounter +S71151D Open bite, right thigh, subsequent encounter +S71151S Open bite, right thigh, sequela +S71152A Open bite, left thigh, initial encounter +S71152D Open bite, left thigh, subsequent encounter +S71152S Open bite, left thigh, sequela +S71159A Open bite, unspecified thigh, initial encounter +S71159D Open bite, unspecified thigh, subsequent encounter +S71159S Open bite, unspecified thigh, sequela +S72001A Fracture of unspecified part of neck of right femur, initial encounter for closed fracture +S72001B Fracture of unspecified part of neck of right femur, initial encounter for open fracture type I or II +S72001C Fracture of unspecified part of neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72001D Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with routine healing +S72001E Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with routine healing +S72001F Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72001G Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with delayed healing +S72001H Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72001J Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72001K Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with nonunion +S72001M Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with nonunion +S72001N Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72001P Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with malunion +S72001Q Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with malunion +S72001R Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72001S Fracture of unspecified part of neck of right femur, sequela +S72002A Fracture of unspecified part of neck of left femur, initial encounter for closed fracture +S72002B Fracture of unspecified part of neck of left femur, initial encounter for open fracture type I or II +S72002C Fracture of unspecified part of neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72002D Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with routine healing +S72002E Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with routine healing +S72002F Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72002G Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with delayed healing +S72002H Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72002J Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72002K Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with nonunion +S72002M Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with nonunion +S72002N Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72002P Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with malunion +S72002Q Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with malunion +S72002R Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72002S Fracture of unspecified part of neck of left femur, sequela +S72009A Fracture of unspecified part of neck of unspecified femur, initial encounter for closed fracture +S72009B Fracture of unspecified part of neck of unspecified femur, initial encounter for open fracture type I or II +S72009C Fracture of unspecified part of neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72009D Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with routine healing +S72009E Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72009F Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72009G Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72009H Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72009J Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72009K Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with nonunion +S72009M Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72009N Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72009P Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with malunion +S72009Q Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72009R Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72009S Fracture of unspecified part of neck of unspecified femur, sequela +S72011A Unspecified intracapsular fracture of right femur, initial encounter for closed fracture +S72011B Unspecified intracapsular fracture of right femur, initial encounter for open fracture type I or II +S72011C Unspecified intracapsular fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72011D Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with routine healing +S72011E Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S72011F Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72011G Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with delayed healing +S72011H Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72011J Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72011K Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with nonunion +S72011M Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S72011N Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72011P Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with malunion +S72011Q Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S72011R Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72011S Unspecified intracapsular fracture of right femur, sequela +S72012A Unspecified intracapsular fracture of left femur, initial encounter for closed fracture +S72012B Unspecified intracapsular fracture of left femur, initial encounter for open fracture type I or II +S72012C Unspecified intracapsular fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72012D Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with routine healing +S72012E Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S72012F Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72012G Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with delayed healing +S72012H Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72012J Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72012K Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with nonunion +S72012M Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S72012N Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72012P Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with malunion +S72012Q Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S72012R Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72012S Unspecified intracapsular fracture of left femur, sequela +S72019A Unspecified intracapsular fracture of unspecified femur, initial encounter for closed fracture +S72019B Unspecified intracapsular fracture of unspecified femur, initial encounter for open fracture type I or II +S72019C Unspecified intracapsular fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72019D Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S72019E Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72019F Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72019G Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72019H Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72019J Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72019K Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S72019M Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72019N Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72019P Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S72019Q Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72019R Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72019S Unspecified intracapsular fracture of unspecified femur, sequela +S72021A Displaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for closed fracture +S72021B Displaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type I or II +S72021C Displaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72021D Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with routine healing +S72021E Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with routine healing +S72021F Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72021G Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with delayed healing +S72021H Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72021J Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72021K Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with nonunion +S72021M Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with nonunion +S72021N Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72021P Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with malunion +S72021Q Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with malunion +S72021R Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72021S Displaced fracture of epiphysis (separation) (upper) of right femur, sequela +S72022A Displaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for closed fracture +S72022B Displaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type I or II +S72022C Displaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72022D Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with routine healing +S72022E Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with routine healing +S72022F Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72022G Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with delayed healing +S72022H Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72022J Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72022K Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with nonunion +S72022M Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with nonunion +S72022N Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72022P Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with malunion +S72022Q Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with malunion +S72022R Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72022S Displaced fracture of epiphysis (separation) (upper) of left femur, sequela +S72023A Displaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for closed fracture +S72023B Displaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type I or II +S72023C Displaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72023D Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with routine healing +S72023E Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72023F Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72023G Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72023H Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72023J Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72023K Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with nonunion +S72023M Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72023N Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72023P Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with malunion +S72023Q Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72023R Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72023S Displaced fracture of epiphysis (separation) (upper) of unspecified femur, sequela +S72024A Nondisplaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for closed fracture +S72024B Nondisplaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type I or II +S72024C Nondisplaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72024D Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with routine healing +S72024E Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with routine healing +S72024F Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72024G Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with delayed healing +S72024H Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72024J Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72024K Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with nonunion +S72024M Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with nonunion +S72024N Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72024P Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with malunion +S72024Q Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with malunion +S72024R Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72024S Nondisplaced fracture of epiphysis (separation) (upper) of right femur, sequela +S72025A Nondisplaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for closed fracture +S72025B Nondisplaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type I or II +S72025C Nondisplaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72025D Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with routine healing +S72025E Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with routine healing +S72025F Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72025G Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with delayed healing +S72025H Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72025J Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72025K Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with nonunion +S72025M Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with nonunion +S72025N Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72025P Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with malunion +S72025Q Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with malunion +S72025R Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72025S Nondisplaced fracture of epiphysis (separation) (upper) of left femur, sequela +S72026A Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for closed fracture +S72026B Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type I or II +S72026C Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72026D Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with routine healing +S72026E Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72026F Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72026G Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72026H Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72026J Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72026K Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with nonunion +S72026M Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72026N Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72026P Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with malunion +S72026Q Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72026R Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72026S Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, sequela +S72031A Displaced midcervical fracture of right femur, initial encounter for closed fracture +S72031B Displaced midcervical fracture of right femur, initial encounter for open fracture type I or II +S72031C Displaced midcervical fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72031D Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with routine healing +S72031E Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S72031F Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72031G Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with delayed healing +S72031H Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72031J Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72031K Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with nonunion +S72031M Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S72031N Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72031P Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with malunion +S72031Q Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S72031R Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72031S Displaced midcervical fracture of right femur, sequela +S72032A Displaced midcervical fracture of left femur, initial encounter for closed fracture +S72032B Displaced midcervical fracture of left femur, initial encounter for open fracture type I or II +S72032C Displaced midcervical fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72032D Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with routine healing +S72032E Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S72032F Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72032G Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with delayed healing +S72032H Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72032J Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72032K Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with nonunion +S72032M Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S72032N Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72032P Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with malunion +S72032Q Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S72032R Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72032S Displaced midcervical fracture of left femur, sequela +S72033A Displaced midcervical fracture of unspecified femur, initial encounter for closed fracture +S72033B Displaced midcervical fracture of unspecified femur, initial encounter for open fracture type I or II +S72033C Displaced midcervical fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72033D Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S72033E Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72033F Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72033G Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72033H Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72033J Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72033K Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S72033M Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72033N Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72033P Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S72033Q Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72033R Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72033S Displaced midcervical fracture of unspecified femur, sequela +S72034A Nondisplaced midcervical fracture of right femur, initial encounter for closed fracture +S72034B Nondisplaced midcervical fracture of right femur, initial encounter for open fracture type I or II +S72034C Nondisplaced midcervical fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72034D Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with routine healing +S72034E Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S72034F Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72034G Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with delayed healing +S72034H Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72034J Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72034K Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with nonunion +S72034M Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S72034N Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72034P Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with malunion +S72034Q Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S72034R Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72034S Nondisplaced midcervical fracture of right femur, sequela +S72035A Nondisplaced midcervical fracture of left femur, initial encounter for closed fracture +S72035B Nondisplaced midcervical fracture of left femur, initial encounter for open fracture type I or II +S72035C Nondisplaced midcervical fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72035D Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with routine healing +S72035E Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S72035F Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72035G Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with delayed healing +S72035H Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72035J Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72035K Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with nonunion +S72035M Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S72035N Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72035P Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with malunion +S72035Q Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S72035R Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72035S Nondisplaced midcervical fracture of left femur, sequela +S72036A Nondisplaced midcervical fracture of unspecified femur, initial encounter for closed fracture +S72036B Nondisplaced midcervical fracture of unspecified femur, initial encounter for open fracture type I or II +S72036C Nondisplaced midcervical fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72036D Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S72036E Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72036F Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72036G Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72036H Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72036J Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72036K Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S72036M Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72036N Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72036P Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S72036Q Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72036R Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72036S Nondisplaced midcervical fracture of unspecified femur, sequela +S72041A Displaced fracture of base of neck of right femur, initial encounter for closed fracture +S72041B Displaced fracture of base of neck of right femur, initial encounter for open fracture type I or II +S72041C Displaced fracture of base of neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72041D Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with routine healing +S72041E Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with routine healing +S72041F Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72041G Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with delayed healing +S72041H Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72041J Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72041K Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with nonunion +S72041M Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with nonunion +S72041N Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72041P Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with malunion +S72041Q Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with malunion +S72041R Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72041S Displaced fracture of base of neck of right femur, sequela +S72042A Displaced fracture of base of neck of left femur, initial encounter for closed fracture +S72042B Displaced fracture of base of neck of left femur, initial encounter for open fracture type I or II +S72042C Displaced fracture of base of neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72042D Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with routine healing +S72042E Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with routine healing +S72042F Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72042G Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with delayed healing +S72042H Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72042J Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72042K Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with nonunion +S72042M Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with nonunion +S72042N Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72042P Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with malunion +S72042Q Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with malunion +S72042R Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72042S Displaced fracture of base of neck of left femur, sequela +S72043A Displaced fracture of base of neck of unspecified femur, initial encounter for closed fracture +S72043B Displaced fracture of base of neck of unspecified femur, initial encounter for open fracture type I or II +S72043C Displaced fracture of base of neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72043D Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with routine healing +S72043E Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72043F Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72043G Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72043H Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72043J Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72043K Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with nonunion +S72043M Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72043N Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72043P Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with malunion +S72043Q Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72043R Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72043S Displaced fracture of base of neck of unspecified femur, sequela +S72044A Nondisplaced fracture of base of neck of right femur, initial encounter for closed fracture +S72044B Nondisplaced fracture of base of neck of right femur, initial encounter for open fracture type I or II +S72044C Nondisplaced fracture of base of neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72044D Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with routine healing +S72044E Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with routine healing +S72044F Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72044G Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with delayed healing +S72044H Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72044J Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72044K Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with nonunion +S72044M Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with nonunion +S72044N Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72044P Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with malunion +S72044Q Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with malunion +S72044R Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72044S Nondisplaced fracture of base of neck of right femur, sequela +S72045A Nondisplaced fracture of base of neck of left femur, initial encounter for closed fracture +S72045B Nondisplaced fracture of base of neck of left femur, initial encounter for open fracture type I or II +S72045C Nondisplaced fracture of base of neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72045D Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with routine healing +S72045E Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with routine healing +S72045F Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72045G Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with delayed healing +S72045H Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72045J Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72045K Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with nonunion +S72045M Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with nonunion +S72045N Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72045P Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with malunion +S72045Q Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with malunion +S72045R Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72045S Nondisplaced fracture of base of neck of left femur, sequela +S72046A Nondisplaced fracture of base of neck of unspecified femur, initial encounter for closed fracture +S72046B Nondisplaced fracture of base of neck of unspecified femur, initial encounter for open fracture type I or II +S72046C Nondisplaced fracture of base of neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72046D Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with routine healing +S72046E Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72046F Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72046G Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72046H Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72046J Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72046K Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with nonunion +S72046M Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72046N Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72046P Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with malunion +S72046Q Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72046R Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72046S Nondisplaced fracture of base of neck of unspecified femur, sequela +S72051A Unspecified fracture of head of right femur, initial encounter for closed fracture +S72051B Unspecified fracture of head of right femur, initial encounter for open fracture type I or II +S72051C Unspecified fracture of head of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72051D Unspecified fracture of head of right femur, subsequent encounter for closed fracture with routine healing +S72051E Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with routine healing +S72051F Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72051G Unspecified fracture of head of right femur, subsequent encounter for closed fracture with delayed healing +S72051H Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72051J Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72051K Unspecified fracture of head of right femur, subsequent encounter for closed fracture with nonunion +S72051M Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with nonunion +S72051N Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72051P Unspecified fracture of head of right femur, subsequent encounter for closed fracture with malunion +S72051Q Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with malunion +S72051R Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72051S Unspecified fracture of head of right femur, sequela +S72052A Unspecified fracture of head of left femur, initial encounter for closed fracture +S72052B Unspecified fracture of head of left femur, initial encounter for open fracture type I or II +S72052C Unspecified fracture of head of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72052D Unspecified fracture of head of left femur, subsequent encounter for closed fracture with routine healing +S72052E Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with routine healing +S72052F Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72052G Unspecified fracture of head of left femur, subsequent encounter for closed fracture with delayed healing +S72052H Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72052J Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72052K Unspecified fracture of head of left femur, subsequent encounter for closed fracture with nonunion +S72052M Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with nonunion +S72052N Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72052P Unspecified fracture of head of left femur, subsequent encounter for closed fracture with malunion +S72052Q Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with malunion +S72052R Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72052S Unspecified fracture of head of left femur, sequela +S72059A Unspecified fracture of head of unspecified femur, initial encounter for closed fracture +S72059B Unspecified fracture of head of unspecified femur, initial encounter for open fracture type I or II +S72059C Unspecified fracture of head of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72059D Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with routine healing +S72059E Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72059F Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72059G Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72059H Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72059J Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72059K Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with nonunion +S72059M Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72059N Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72059P Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with malunion +S72059Q Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72059R Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72059S Unspecified fracture of head of unspecified femur, sequela +S72061A Displaced articular fracture of head of right femur, initial encounter for closed fracture +S72061B Displaced articular fracture of head of right femur, initial encounter for open fracture type I or II +S72061C Displaced articular fracture of head of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72061D Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with routine healing +S72061E Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with routine healing +S72061F Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72061G Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with delayed healing +S72061H Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72061J Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72061K Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with nonunion +S72061M Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with nonunion +S72061N Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72061P Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with malunion +S72061Q Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with malunion +S72061R Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72061S Displaced articular fracture of head of right femur, sequela +S72062A Displaced articular fracture of head of left femur, initial encounter for closed fracture +S72062B Displaced articular fracture of head of left femur, initial encounter for open fracture type I or II +S72062C Displaced articular fracture of head of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72062D Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with routine healing +S72062E Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with routine healing +S72062F Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72062G Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with delayed healing +S72062H Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72062J Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72062K Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with nonunion +S72062M Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with nonunion +S72062N Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72062P Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with malunion +S72062Q Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with malunion +S72062R Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72062S Displaced articular fracture of head of left femur, sequela +S72063A Displaced articular fracture of head of unspecified femur, initial encounter for closed fracture +S72063B Displaced articular fracture of head of unspecified femur, initial encounter for open fracture type I or II +S72063C Displaced articular fracture of head of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72063D Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with routine healing +S72063E Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72063F Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72063G Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72063H Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72063J Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72063K Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with nonunion +S72063M Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72063N Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72063P Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with malunion +S72063Q Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72063R Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72063S Displaced articular fracture of head of unspecified femur, sequela +S72064A Nondisplaced articular fracture of head of right femur, initial encounter for closed fracture +S72064B Nondisplaced articular fracture of head of right femur, initial encounter for open fracture type I or II +S72064C Nondisplaced articular fracture of head of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72064D Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with routine healing +S72064E Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with routine healing +S72064F Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72064G Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with delayed healing +S72064H Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72064J Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72064K Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with nonunion +S72064M Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with nonunion +S72064N Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72064P Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with malunion +S72064Q Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with malunion +S72064R Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72064S Nondisplaced articular fracture of head of right femur, sequela +S72065A Nondisplaced articular fracture of head of left femur, initial encounter for closed fracture +S72065B Nondisplaced articular fracture of head of left femur, initial encounter for open fracture type I or II +S72065C Nondisplaced articular fracture of head of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72065D Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with routine healing +S72065E Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with routine healing +S72065F Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72065G Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with delayed healing +S72065H Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72065J Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72065K Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with nonunion +S72065M Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with nonunion +S72065N Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72065P Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with malunion +S72065Q Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with malunion +S72065R Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72065S Nondisplaced articular fracture of head of left femur, sequela +S72066A Nondisplaced articular fracture of head of unspecified femur, initial encounter for closed fracture +S72066B Nondisplaced articular fracture of head of unspecified femur, initial encounter for open fracture type I or II +S72066C Nondisplaced articular fracture of head of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72066D Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with routine healing +S72066E Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72066F Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72066G Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72066H Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72066J Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72066K Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with nonunion +S72066M Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72066N Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72066P Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with malunion +S72066Q Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72066R Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72066S Nondisplaced articular fracture of head of unspecified femur, sequela +S72091A Other fracture of head and neck of right femur, initial encounter for closed fracture +S72091B Other fracture of head and neck of right femur, initial encounter for open fracture type I or II +S72091C Other fracture of head and neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72091D Other fracture of head and neck of right femur, subsequent encounter for closed fracture with routine healing +S72091E Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with routine healing +S72091F Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72091G Other fracture of head and neck of right femur, subsequent encounter for closed fracture with delayed healing +S72091H Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72091J Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72091K Other fracture of head and neck of right femur, subsequent encounter for closed fracture with nonunion +S72091M Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with nonunion +S72091N Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72091P Other fracture of head and neck of right femur, subsequent encounter for closed fracture with malunion +S72091Q Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with malunion +S72091R Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72091S Other fracture of head and neck of right femur, sequela +S72092A Other fracture of head and neck of left femur, initial encounter for closed fracture +S72092B Other fracture of head and neck of left femur, initial encounter for open fracture type I or II +S72092C Other fracture of head and neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72092D Other fracture of head and neck of left femur, subsequent encounter for closed fracture with routine healing +S72092E Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with routine healing +S72092F Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72092G Other fracture of head and neck of left femur, subsequent encounter for closed fracture with delayed healing +S72092H Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72092J Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72092K Other fracture of head and neck of left femur, subsequent encounter for closed fracture with nonunion +S72092M Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with nonunion +S72092N Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72092P Other fracture of head and neck of left femur, subsequent encounter for closed fracture with malunion +S72092Q Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with malunion +S72092R Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72092S Other fracture of head and neck of left femur, sequela +S72099A Other fracture of head and neck of unspecified femur, initial encounter for closed fracture +S72099B Other fracture of head and neck of unspecified femur, initial encounter for open fracture type I or II +S72099C Other fracture of head and neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72099D Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with routine healing +S72099E Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72099F Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72099G Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72099H Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72099J Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72099K Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with nonunion +S72099M Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72099N Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72099P Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with malunion +S72099Q Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72099R Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72099S Other fracture of head and neck of unspecified femur, sequela +S72101A Unspecified trochanteric fracture of right femur, initial encounter for closed fracture +S72101B Unspecified trochanteric fracture of right femur, initial encounter for open fracture type I or II +S72101C Unspecified trochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72101D Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing +S72101E Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S72101F Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72101G Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing +S72101H Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72101J Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72101K Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion +S72101M Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S72101N Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72101P Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with malunion +S72101Q Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S72101R Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72101S Unspecified trochanteric fracture of right femur, sequela +S72102A Unspecified trochanteric fracture of left femur, initial encounter for closed fracture +S72102B Unspecified trochanteric fracture of left femur, initial encounter for open fracture type I or II +S72102C Unspecified trochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72102D Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing +S72102E Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S72102F Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72102G Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing +S72102H Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72102J Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72102K Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion +S72102M Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S72102N Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72102P Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with malunion +S72102Q Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S72102R Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72102S Unspecified trochanteric fracture of left femur, sequela +S72109A Unspecified trochanteric fracture of unspecified femur, initial encounter for closed fracture +S72109B Unspecified trochanteric fracture of unspecified femur, initial encounter for open fracture type I or II +S72109C Unspecified trochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72109D Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S72109E Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72109F Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72109G Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72109H Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72109J Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72109K Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S72109M Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72109N Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72109P Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S72109Q Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72109R Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72109S Unspecified trochanteric fracture of unspecified femur, sequela +S72111A Displaced fracture of greater trochanter of right femur, initial encounter for closed fracture +S72111B Displaced fracture of greater trochanter of right femur, initial encounter for open fracture type I or II +S72111C Displaced fracture of greater trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72111D Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with routine healing +S72111E Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing +S72111F Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72111G Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with delayed healing +S72111H Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72111J Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72111K Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with nonunion +S72111M Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion +S72111N Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72111P Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with malunion +S72111Q Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with malunion +S72111R Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72111S Displaced fracture of greater trochanter of right femur, sequela +S72112A Displaced fracture of greater trochanter of left femur, initial encounter for closed fracture +S72112B Displaced fracture of greater trochanter of left femur, initial encounter for open fracture type I or II +S72112C Displaced fracture of greater trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72112D Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with routine healing +S72112E Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing +S72112F Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72112G Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with delayed healing +S72112H Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72112J Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72112K Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with nonunion +S72112M Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion +S72112N Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72112P Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with malunion +S72112Q Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with malunion +S72112R Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72112S Displaced fracture of greater trochanter of left femur, sequela +S72113A Displaced fracture of greater trochanter of unspecified femur, initial encounter for closed fracture +S72113B Displaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type I or II +S72113C Displaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72113D Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing +S72113E Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72113F Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72113G Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72113H Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72113J Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72113K Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion +S72113M Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72113N Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72113P Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with malunion +S72113Q Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72113R Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72113S Displaced fracture of greater trochanter of unspecified femur, sequela +S72114A Nondisplaced fracture of greater trochanter of right femur, initial encounter for closed fracture +S72114B Nondisplaced fracture of greater trochanter of right femur, initial encounter for open fracture type I or II +S72114C Nondisplaced fracture of greater trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72114D Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with routine healing +S72114E Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing +S72114F Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72114G Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with delayed healing +S72114H Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72114J Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72114K Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with nonunion +S72114M Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion +S72114N Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72114P Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with malunion +S72114Q Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with malunion +S72114R Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72114S Nondisplaced fracture of greater trochanter of right femur, sequela +S72115A Nondisplaced fracture of greater trochanter of left femur, initial encounter for closed fracture +S72115B Nondisplaced fracture of greater trochanter of left femur, initial encounter for open fracture type I or II +S72115C Nondisplaced fracture of greater trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72115D Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with routine healing +S72115E Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing +S72115F Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72115G Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with delayed healing +S72115H Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72115J Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72115K Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with nonunion +S72115M Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion +S72115N Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72115P Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with malunion +S72115Q Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with malunion +S72115R Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72115S Nondisplaced fracture of greater trochanter of left femur, sequela +S72116A Nondisplaced fracture of greater trochanter of unspecified femur, initial encounter for closed fracture +S72116B Nondisplaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type I or II +S72116C Nondisplaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72116D Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing +S72116E Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72116F Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72116G Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72116H Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72116J Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72116K Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion +S72116M Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72116N Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72116P Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with malunion +S72116Q Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72116R Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72116S Nondisplaced fracture of greater trochanter of unspecified femur, sequela +S72121A Displaced fracture of lesser trochanter of right femur, initial encounter for closed fracture +S72121B Displaced fracture of lesser trochanter of right femur, initial encounter for open fracture type I or II +S72121C Displaced fracture of lesser trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72121D Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with routine healing +S72121E Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing +S72121F Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72121G Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with delayed healing +S72121H Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72121J Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72121K Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with nonunion +S72121M Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion +S72121N Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72121P Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with malunion +S72121Q Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with malunion +S72121R Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72121S Displaced fracture of lesser trochanter of right femur, sequela +S72122A Displaced fracture of lesser trochanter of left femur, initial encounter for closed fracture +S72122B Displaced fracture of lesser trochanter of left femur, initial encounter for open fracture type I or II +S72122C Displaced fracture of lesser trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72122D Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with routine healing +S72122E Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing +S72122F Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72122G Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with delayed healing +S72122H Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72122J Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72122K Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with nonunion +S72122M Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion +S72122N Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72122P Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with malunion +S72122Q Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with malunion +S72122R Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72122S Displaced fracture of lesser trochanter of left femur, sequela +S72123A Displaced fracture of lesser trochanter of unspecified femur, initial encounter for closed fracture +S72123B Displaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type I or II +S72123C Displaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72123D Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing +S72123E Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72123F Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72123G Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72123H Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72123J Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72123K Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion +S72123M Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72123N Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72123P Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with malunion +S72123Q Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72123R Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72123S Displaced fracture of lesser trochanter of unspecified femur, sequela +S72124A Nondisplaced fracture of lesser trochanter of right femur, initial encounter for closed fracture +S72124B Nondisplaced fracture of lesser trochanter of right femur, initial encounter for open fracture type I or II +S72124C Nondisplaced fracture of lesser trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72124D Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with routine healing +S72124E Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing +S72124F Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72124G Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with delayed healing +S72124H Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72124J Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72124K Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with nonunion +S72124M Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion +S72124N Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72124P Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with malunion +S72124Q Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with malunion +S72124R Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72124S Nondisplaced fracture of lesser trochanter of right femur, sequela +S72125A Nondisplaced fracture of lesser trochanter of left femur, initial encounter for closed fracture +S72125B Nondisplaced fracture of lesser trochanter of left femur, initial encounter for open fracture type I or II +S72125C Nondisplaced fracture of lesser trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72125D Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with routine healing +S72125E Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing +S72125F Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72125G Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with delayed healing +S72125H Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72125J Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72125K Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with nonunion +S72125M Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion +S72125N Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72125P Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with malunion +S72125Q Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with malunion +S72125R Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72125S Nondisplaced fracture of lesser trochanter of left femur, sequela +S72126A Nondisplaced fracture of lesser trochanter of unspecified femur, initial encounter for closed fracture +S72126B Nondisplaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type I or II +S72126C Nondisplaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72126D Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing +S72126E Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72126F Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72126G Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72126H Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72126J Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72126K Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion +S72126M Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72126N Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72126P Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with malunion +S72126Q Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72126R Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72126S Nondisplaced fracture of lesser trochanter of unspecified femur, sequela +S72131A Displaced apophyseal fracture of right femur, initial encounter for closed fracture +S72131B Displaced apophyseal fracture of right femur, initial encounter for open fracture type I or II +S72131C Displaced apophyseal fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72131D Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with routine healing +S72131E Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S72131F Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72131G Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with delayed healing +S72131H Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72131J Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72131K Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with nonunion +S72131M Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S72131N Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72131P Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with malunion +S72131Q Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S72131R Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72131S Displaced apophyseal fracture of right femur, sequela +S72132A Displaced apophyseal fracture of left femur, initial encounter for closed fracture +S72132B Displaced apophyseal fracture of left femur, initial encounter for open fracture type I or II +S72132C Displaced apophyseal fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72132D Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with routine healing +S72132E Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S72132F Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72132G Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with delayed healing +S72132H Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72132J Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72132K Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with nonunion +S72132M Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S72132N Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72132P Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with malunion +S72132Q Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S72132R Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72132S Displaced apophyseal fracture of left femur, sequela +S72133A Displaced apophyseal fracture of unspecified femur, initial encounter for closed fracture +S72133B Displaced apophyseal fracture of unspecified femur, initial encounter for open fracture type I or II +S72133C Displaced apophyseal fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72133D Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S72133E Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72133F Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72133G Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72133H Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72133J Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72133K Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S72133M Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72133N Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72133P Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S72133Q Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72133R Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72133S Displaced apophyseal fracture of unspecified femur, sequela +S72134A Nondisplaced apophyseal fracture of right femur, initial encounter for closed fracture +S72134B Nondisplaced apophyseal fracture of right femur, initial encounter for open fracture type I or II +S72134C Nondisplaced apophyseal fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72134D Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with routine healing +S72134E Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S72134F Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72134G Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with delayed healing +S72134H Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72134J Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72134K Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with nonunion +S72134M Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S72134N Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72134P Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with malunion +S72134Q Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S72134R Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72134S Nondisplaced apophyseal fracture of right femur, sequela +S72135A Nondisplaced apophyseal fracture of left femur, initial encounter for closed fracture +S72135B Nondisplaced apophyseal fracture of left femur, initial encounter for open fracture type I or II +S72135C Nondisplaced apophyseal fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72135D Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with routine healing +S72135E Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S72135F Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72135G Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with delayed healing +S72135H Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72135J Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72135K Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with nonunion +S72135M Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S72135N Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72135P Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with malunion +S72135Q Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S72135R Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72135S Nondisplaced apophyseal fracture of left femur, sequela +S72136A Nondisplaced apophyseal fracture of unspecified femur, initial encounter for closed fracture +S72136B Nondisplaced apophyseal fracture of unspecified femur, initial encounter for open fracture type I or II +S72136C Nondisplaced apophyseal fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72136D Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S72136E Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72136F Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72136G Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72136H Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72136J Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72136K Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S72136M Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72136N Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72136P Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S72136Q Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72136R Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72136S Nondisplaced apophyseal fracture of unspecified femur, sequela +S72141A Displaced intertrochanteric fracture of right femur, initial encounter for closed fracture +S72141B Displaced intertrochanteric fracture of right femur, initial encounter for open fracture type I or II +S72141C Displaced intertrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72141D Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing +S72141E Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S72141F Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72141G Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing +S72141H Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72141J Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72141K Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion +S72141M Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S72141N Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72141P Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion +S72141Q Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S72141R Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72141S Displaced intertrochanteric fracture of right femur, sequela +S72142A Displaced intertrochanteric fracture of left femur, initial encounter for closed fracture +S72142B Displaced intertrochanteric fracture of left femur, initial encounter for open fracture type I or II +S72142C Displaced intertrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72142D Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing +S72142E Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S72142F Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72142G Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing +S72142H Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72142J Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72142K Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion +S72142M Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S72142N Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72142P Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion +S72142Q Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S72142R Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72142S Displaced intertrochanteric fracture of left femur, sequela +S72143A Displaced intertrochanteric fracture of unspecified femur, initial encounter for closed fracture +S72143B Displaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II +S72143C Displaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72143D Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S72143E Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72143F Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72143G Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72143H Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72143J Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72143K Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S72143M Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72143N Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72143P Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S72143Q Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72143R Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72143S Displaced intertrochanteric fracture of unspecified femur, sequela +S72144A Nondisplaced intertrochanteric fracture of right femur, initial encounter for closed fracture +S72144B Nondisplaced intertrochanteric fracture of right femur, initial encounter for open fracture type I or II +S72144C Nondisplaced intertrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72144D Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing +S72144E Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S72144F Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72144G Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing +S72144H Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72144J Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72144K Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion +S72144M Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S72144N Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72144P Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion +S72144Q Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S72144R Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72144S Nondisplaced intertrochanteric fracture of right femur, sequela +S72145A Nondisplaced intertrochanteric fracture of left femur, initial encounter for closed fracture +S72145B Nondisplaced intertrochanteric fracture of left femur, initial encounter for open fracture type I or II +S72145C Nondisplaced intertrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72145D Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing +S72145E Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S72145F Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72145G Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing +S72145H Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72145J Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72145K Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion +S72145M Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S72145N Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72145P Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion +S72145Q Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S72145R Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72145S Nondisplaced intertrochanteric fracture of left femur, sequela +S72146A Nondisplaced intertrochanteric fracture of unspecified femur, initial encounter for closed fracture +S72146B Nondisplaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II +S72146C Nondisplaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72146D Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S72146E Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72146F Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72146G Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72146H Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72146J Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72146K Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S72146M Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72146N Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72146P Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S72146Q Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72146R Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72146S Nondisplaced intertrochanteric fracture of unspecified femur, sequela +S7221XA Displaced subtrochanteric fracture of right femur, initial encounter for closed fracture +S7221XB Displaced subtrochanteric fracture of right femur, initial encounter for open fracture type I or II +S7221XC Displaced subtrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S7221XD Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing +S7221XE Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S7221XF Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S7221XG Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing +S7221XH Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S7221XJ Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S7221XK Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion +S7221XM Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S7221XN Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S7221XP Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion +S7221XQ Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S7221XR Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S7221XS Displaced subtrochanteric fracture of right femur, sequela +S7222XA Displaced subtrochanteric fracture of left femur, initial encounter for closed fracture +S7222XB Displaced subtrochanteric fracture of left femur, initial encounter for open fracture type I or II +S7222XC Displaced subtrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S7222XD Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing +S7222XE Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S7222XF Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S7222XG Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing +S7222XH Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S7222XJ Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S7222XK Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion +S7222XM Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S7222XN Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S7222XP Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion +S7222XQ Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S7222XR Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S7222XS Displaced subtrochanteric fracture of left femur, sequela +S7223XA Displaced subtrochanteric fracture of unspecified femur, initial encounter for closed fracture +S7223XB Displaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II +S7223XC Displaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S7223XD Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S7223XE Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S7223XF Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S7223XG Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S7223XH Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S7223XJ Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S7223XK Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S7223XM Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S7223XN Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S7223XP Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S7223XQ Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S7223XR Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S7223XS Displaced subtrochanteric fracture of unspecified femur, sequela +S7224XA Nondisplaced subtrochanteric fracture of right femur, initial encounter for closed fracture +S7224XB Nondisplaced subtrochanteric fracture of right femur, initial encounter for open fracture type I or II +S7224XC Nondisplaced subtrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S7224XD Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing +S7224XE Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S7224XF Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S7224XG Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing +S7224XH Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S7224XJ Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S7224XK Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion +S7224XM Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S7224XN Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S7224XP Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion +S7224XQ Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S7224XR Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S7224XS Nondisplaced subtrochanteric fracture of right femur, sequela +S7225XA Nondisplaced subtrochanteric fracture of left femur, initial encounter for closed fracture +S7225XB Nondisplaced subtrochanteric fracture of left femur, initial encounter for open fracture type I or II +S7225XC Nondisplaced subtrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S7225XD Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing +S7225XE Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S7225XF Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S7225XG Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing +S7225XH Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S7225XJ Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S7225XK Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion +S7225XM Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S7225XN Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S7225XP Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion +S7225XQ Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S7225XR Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S7225XS Nondisplaced subtrochanteric fracture of left femur, sequela +S7226XA Nondisplaced subtrochanteric fracture of unspecified femur, initial encounter for closed fracture +S7226XB Nondisplaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II +S7226XC Nondisplaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S7226XD Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S7226XE Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S7226XF Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S7226XG Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S7226XH Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S7226XJ Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S7226XK Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S7226XM Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S7226XN Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S7226XP Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S7226XQ Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S7226XR Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S7226XS Nondisplaced subtrochanteric fracture of unspecified femur, sequela +S72301A Unspecified fracture of shaft of right femur, initial encounter for closed fracture +S72301B Unspecified fracture of shaft of right femur, initial encounter for open fracture type I or II +S72301C Unspecified fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72301D Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72301E Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72301F Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72301G Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72301H Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72301J Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72301K Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72301M Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72301N Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72301P Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72301Q Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72301R Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72301S Unspecified fracture of shaft of right femur, sequela +S72302A Unspecified fracture of shaft of left femur, initial encounter for closed fracture +S72302B Unspecified fracture of shaft of left femur, initial encounter for open fracture type I or II +S72302C Unspecified fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72302D Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72302E Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72302F Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72302G Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72302H Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72302J Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72302K Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72302M Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72302N Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72302P Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72302Q Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72302R Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72302S Unspecified fracture of shaft of left femur, sequela +S72309A Unspecified fracture of shaft of unspecified femur, initial encounter for closed fracture +S72309B Unspecified fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72309C Unspecified fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72309D Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72309E Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72309F Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72309G Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72309H Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72309J Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72309K Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72309M Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72309N Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72309P Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72309Q Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72309R Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72309S Unspecified fracture of shaft of unspecified femur, sequela +S72321A Displaced transverse fracture of shaft of right femur, initial encounter for closed fracture +S72321B Displaced transverse fracture of shaft of right femur, initial encounter for open fracture type I or II +S72321C Displaced transverse fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72321D Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72321E Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72321F Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72321G Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72321H Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72321J Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72321K Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72321M Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72321N Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72321P Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72321Q Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72321R Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72321S Displaced transverse fracture of shaft of right femur, sequela +S72322A Displaced transverse fracture of shaft of left femur, initial encounter for closed fracture +S72322B Displaced transverse fracture of shaft of left femur, initial encounter for open fracture type I or II +S72322C Displaced transverse fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72322D Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72322E Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72322F Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72322G Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72322H Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72322J Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72322K Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72322M Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72322N Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72322P Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72322Q Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72322R Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72322S Displaced transverse fracture of shaft of left femur, sequela +S72323A Displaced transverse fracture of shaft of unspecified femur, initial encounter for closed fracture +S72323B Displaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72323C Displaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72323D Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72323E Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72323F Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72323G Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72323H Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72323J Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72323K Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72323M Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72323N Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72323P Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72323Q Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72323R Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72323S Displaced transverse fracture of shaft of unspecified femur, sequela +S72324A Nondisplaced transverse fracture of shaft of right femur, initial encounter for closed fracture +S72324B Nondisplaced transverse fracture of shaft of right femur, initial encounter for open fracture type I or II +S72324C Nondisplaced transverse fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72324D Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72324E Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72324F Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72324G Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72324H Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72324J Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72324K Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72324M Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72324N Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72324P Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72324Q Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72324R Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72324S Nondisplaced transverse fracture of shaft of right femur, sequela +S72325A Nondisplaced transverse fracture of shaft of left femur, initial encounter for closed fracture +S72325B Nondisplaced transverse fracture of shaft of left femur, initial encounter for open fracture type I or II +S72325C Nondisplaced transverse fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72325D Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72325E Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72325F Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72325G Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72325H Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72325J Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72325K Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72325M Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72325N Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72325P Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72325Q Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72325R Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72325S Nondisplaced transverse fracture of shaft of left femur, sequela +S72326A Nondisplaced transverse fracture of shaft of unspecified femur, initial encounter for closed fracture +S72326B Nondisplaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72326C Nondisplaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72326D Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72326E Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72326F Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72326G Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72326H Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72326J Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72326K Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72326M Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72326N Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72326P Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72326Q Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72326R Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72326S Nondisplaced transverse fracture of shaft of unspecified femur, sequela +S72331A Displaced oblique fracture of shaft of right femur, initial encounter for closed fracture +S72331B Displaced oblique fracture of shaft of right femur, initial encounter for open fracture type I or II +S72331C Displaced oblique fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72331D Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72331E Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72331F Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72331G Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72331H Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72331J Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72331K Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72331M Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72331N Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72331P Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72331Q Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72331R Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72331S Displaced oblique fracture of shaft of right femur, sequela +S72332A Displaced oblique fracture of shaft of left femur, initial encounter for closed fracture +S72332B Displaced oblique fracture of shaft of left femur, initial encounter for open fracture type I or II +S72332C Displaced oblique fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72332D Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72332E Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72332F Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72332G Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72332H Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72332J Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72332K Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72332M Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72332N Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72332P Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72332Q Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72332R Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72332S Displaced oblique fracture of shaft of left femur, sequela +S72333A Displaced oblique fracture of shaft of unspecified femur, initial encounter for closed fracture +S72333B Displaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72333C Displaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72333D Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72333E Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72333F Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72333G Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72333H Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72333J Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72333K Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72333M Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72333N Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72333P Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72333Q Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72333R Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72333S Displaced oblique fracture of shaft of unspecified femur, sequela +S72334A Nondisplaced oblique fracture of shaft of right femur, initial encounter for closed fracture +S72334B Nondisplaced oblique fracture of shaft of right femur, initial encounter for open fracture type I or II +S72334C Nondisplaced oblique fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72334D Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72334E Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72334F Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72334G Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72334H Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72334J Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72334K Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72334M Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72334N Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72334P Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72334Q Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72334R Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72334S Nondisplaced oblique fracture of shaft of right femur, sequela +S72335A Nondisplaced oblique fracture of shaft of left femur, initial encounter for closed fracture +S72335B Nondisplaced oblique fracture of shaft of left femur, initial encounter for open fracture type I or II +S72335C Nondisplaced oblique fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72335D Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72335E Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72335F Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72335G Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72335H Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72335J Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72335K Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72335M Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72335N Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72335P Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72335Q Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72335R Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72335S Nondisplaced oblique fracture of shaft of left femur, sequela +S72336A Nondisplaced oblique fracture of shaft of unspecified femur, initial encounter for closed fracture +S72336B Nondisplaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72336C Nondisplaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72336D Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72336E Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72336F Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72336G Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72336H Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72336J Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72336K Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72336M Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72336N Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72336P Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72336Q Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72336R Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72336S Nondisplaced oblique fracture of shaft of unspecified femur, sequela +S72341A Displaced spiral fracture of shaft of right femur, initial encounter for closed fracture +S72341B Displaced spiral fracture of shaft of right femur, initial encounter for open fracture type I or II +S72341C Displaced spiral fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72341D Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72341E Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72341F Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72341G Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72341H Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72341J Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72341K Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72341M Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72341N Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72341P Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72341Q Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72341R Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72341S Displaced spiral fracture of shaft of right femur, sequela +S72342A Displaced spiral fracture of shaft of left femur, initial encounter for closed fracture +S72342B Displaced spiral fracture of shaft of left femur, initial encounter for open fracture type I or II +S72342C Displaced spiral fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72342D Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72342E Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72342F Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72342G Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72342H Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72342J Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72342K Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72342M Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72342N Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72342P Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72342Q Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72342R Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72342S Displaced spiral fracture of shaft of left femur, sequela +S72343A Displaced spiral fracture of shaft of unspecified femur, initial encounter for closed fracture +S72343B Displaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72343C Displaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72343D Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72343E Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72343F Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72343G Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72343H Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72343J Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72343K Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72343M Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72343N Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72343P Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72343Q Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72343R Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72343S Displaced spiral fracture of shaft of unspecified femur, sequela +S72344A Nondisplaced spiral fracture of shaft of right femur, initial encounter for closed fracture +S72344B Nondisplaced spiral fracture of shaft of right femur, initial encounter for open fracture type I or II +S72344C Nondisplaced spiral fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72344D Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72344E Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72344F Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72344G Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72344H Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72344J Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72344K Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72344M Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72344N Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72344P Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72344Q Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72344R Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72344S Nondisplaced spiral fracture of shaft of right femur, sequela +S72345A Nondisplaced spiral fracture of shaft of left femur, initial encounter for closed fracture +S72345B Nondisplaced spiral fracture of shaft of left femur, initial encounter for open fracture type I or II +S72345C Nondisplaced spiral fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72345D Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72345E Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72345F Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72345G Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72345H Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72345J Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72345K Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72345M Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72345N Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72345P Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72345Q Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72345R Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72345S Nondisplaced spiral fracture of shaft of left femur, sequela +S72346A Nondisplaced spiral fracture of shaft of unspecified femur, initial encounter for closed fracture +S72346B Nondisplaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72346C Nondisplaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72346D Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72346E Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72346F Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72346G Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72346H Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72346J Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72346K Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72346M Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72346N Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72346P Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72346Q Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72346R Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72346S Nondisplaced spiral fracture of shaft of unspecified femur, sequela +S72351A Displaced comminuted fracture of shaft of right femur, initial encounter for closed fracture +S72351B Displaced comminuted fracture of shaft of right femur, initial encounter for open fracture type I or II +S72351C Displaced comminuted fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72351D Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72351E Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72351F Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72351G Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72351H Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72351J Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72351K Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72351M Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72351N Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72351P Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72351Q Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72351R Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72351S Displaced comminuted fracture of shaft of right femur, sequela +S72352A Displaced comminuted fracture of shaft of left femur, initial encounter for closed fracture +S72352B Displaced comminuted fracture of shaft of left femur, initial encounter for open fracture type I or II +S72352C Displaced comminuted fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72352D Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72352E Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72352F Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72352G Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72352H Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72352J Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72352K Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72352M Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72352N Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72352P Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72352Q Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72352R Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72352S Displaced comminuted fracture of shaft of left femur, sequela +S72353A Displaced comminuted fracture of shaft of unspecified femur, initial encounter for closed fracture +S72353B Displaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72353C Displaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72353D Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72353E Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72353F Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72353G Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72353H Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72353J Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72353K Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72353M Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72353N Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72353P Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72353Q Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72353R Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72353S Displaced comminuted fracture of shaft of unspecified femur, sequela +S72354A Nondisplaced comminuted fracture of shaft of right femur, initial encounter for closed fracture +S72354B Nondisplaced comminuted fracture of shaft of right femur, initial encounter for open fracture type I or II +S72354C Nondisplaced comminuted fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72354D Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72354E Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72354F Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72354G Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72354H Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72354J Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72354K Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72354M Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72354N Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72354P Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72354Q Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72354R Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72354S Nondisplaced comminuted fracture of shaft of right femur, sequela +S72355A Nondisplaced comminuted fracture of shaft of left femur, initial encounter for closed fracture +S72355B Nondisplaced comminuted fracture of shaft of left femur, initial encounter for open fracture type I or II +S72355C Nondisplaced comminuted fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72355D Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72355E Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72355F Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72355G Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72355H Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72355J Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72355K Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72355M Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72355N Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72355P Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72355Q Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72355R Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72355S Nondisplaced comminuted fracture of shaft of left femur, sequela +S72356A Nondisplaced comminuted fracture of shaft of unspecified femur, initial encounter for closed fracture +S72356B Nondisplaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72356C Nondisplaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72356D Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72356E Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72356F Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72356G Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72356H Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72356J Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72356K Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72356M Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72356N Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72356P Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72356Q Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72356R Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72356S Nondisplaced comminuted fracture of shaft of unspecified femur, sequela +S72361A Displaced segmental fracture of shaft of right femur, initial encounter for closed fracture +S72361B Displaced segmental fracture of shaft of right femur, initial encounter for open fracture type I or II +S72361C Displaced segmental fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72361D Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72361E Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72361F Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72361G Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72361H Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72361J Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72361K Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72361M Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72361N Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72361P Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72361Q Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72361R Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72361S Displaced segmental fracture of shaft of right femur, sequela +S72362A Displaced segmental fracture of shaft of left femur, initial encounter for closed fracture +S72362B Displaced segmental fracture of shaft of left femur, initial encounter for open fracture type I or II +S72362C Displaced segmental fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72362D Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72362E Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72362F Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72362G Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72362H Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72362J Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72362K Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72362M Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72362N Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72362P Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72362Q Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72362R Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72362S Displaced segmental fracture of shaft of left femur, sequela +S72363A Displaced segmental fracture of shaft of unspecified femur, initial encounter for closed fracture +S72363B Displaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72363C Displaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72363D Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72363E Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72363F Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72363G Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72363H Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72363J Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72363K Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72363M Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72363N Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72363P Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72363Q Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72363R Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72363S Displaced segmental fracture of shaft of unspecified femur, sequela +S72364A Nondisplaced segmental fracture of shaft of right femur, initial encounter for closed fracture +S72364B Nondisplaced segmental fracture of shaft of right femur, initial encounter for open fracture type I or II +S72364C Nondisplaced segmental fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72364D Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72364E Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72364F Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72364G Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72364H Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72364J Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72364K Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72364M Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72364N Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72364P Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72364Q Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72364R Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72364S Nondisplaced segmental fracture of shaft of right femur, sequela +S72365A Nondisplaced segmental fracture of shaft of left femur, initial encounter for closed fracture +S72365B Nondisplaced segmental fracture of shaft of left femur, initial encounter for open fracture type I or II +S72365C Nondisplaced segmental fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72365D Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72365E Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72365F Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72365G Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72365H Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72365J Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72365K Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72365M Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72365N Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72365P Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72365Q Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72365R Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72365S Nondisplaced segmental fracture of shaft of left femur, sequela +S72366A Nondisplaced segmental fracture of shaft of unspecified femur, initial encounter for closed fracture +S72366B Nondisplaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72366C Nondisplaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72366D Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72366E Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72366F Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72366G Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72366H Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72366J Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72366K Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72366M Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72366N Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72366P Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72366Q Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72366R Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72366S Nondisplaced segmental fracture of shaft of unspecified femur, sequela +S72391A Other fracture of shaft of right femur, initial encounter for closed fracture +S72391B Other fracture of shaft of right femur, initial encounter for open fracture type I or II +S72391C Other fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72391D Other fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing +S72391E Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing +S72391F Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72391G Other fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing +S72391H Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72391J Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72391K Other fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +S72391M Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion +S72391N Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72391P Other fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +S72391Q Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion +S72391R Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72391S Other fracture of shaft of right femur, sequela +S72392A Other fracture of shaft of left femur, initial encounter for closed fracture +S72392B Other fracture of shaft of left femur, initial encounter for open fracture type I or II +S72392C Other fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72392D Other fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +S72392E Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing +S72392F Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72392G Other fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +S72392H Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72392J Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72392K Other fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +S72392M Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion +S72392N Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72392P Other fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +S72392Q Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion +S72392R Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72392S Other fracture of shaft of left femur, sequela +S72399A Other fracture of shaft of unspecified femur, initial encounter for closed fracture +S72399B Other fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +S72399C Other fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72399D Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing +S72399E Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72399F Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72399G Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72399H Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72399J Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72399K Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +S72399M Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72399N Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72399P Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +S72399Q Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72399R Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72399S Other fracture of shaft of unspecified femur, sequela +S72401A Unspecified fracture of lower end of right femur, initial encounter for closed fracture +S72401B Unspecified fracture of lower end of right femur, initial encounter for open fracture type I or II +S72401C Unspecified fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72401D Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing +S72401E Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing +S72401F Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72401G Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing +S72401H Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72401J Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72401K Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion +S72401M Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion +S72401N Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72401P Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with malunion +S72401Q Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion +S72401R Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72401S Unspecified fracture of lower end of right femur, sequela +S72402A Unspecified fracture of lower end of left femur, initial encounter for closed fracture +S72402B Unspecified fracture of lower end of left femur, initial encounter for open fracture type I or II +S72402C Unspecified fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72402D Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing +S72402E Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing +S72402F Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72402G Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing +S72402H Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72402J Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72402K Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion +S72402M Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion +S72402N Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72402P Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with malunion +S72402Q Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion +S72402R Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72402S Unspecified fracture of lower end of left femur, sequela +S72409A Unspecified fracture of lower end of unspecified femur, initial encounter for closed fracture +S72409B Unspecified fracture of lower end of unspecified femur, initial encounter for open fracture type I or II +S72409C Unspecified fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72409D Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing +S72409E Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72409F Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72409G Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72409H Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72409J Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72409K Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion +S72409M Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72409N Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72409P Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion +S72409Q Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72409R Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72409S Unspecified fracture of lower end of unspecified femur, sequela +S72411A Displaced unspecified condyle fracture of lower end of right femur, initial encounter for closed fracture +S72411B Displaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type I or II +S72411C Displaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72411D Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing +S72411E Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing +S72411F Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72411G Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing +S72411H Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72411J Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72411K Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion +S72411M Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion +S72411N Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72411P Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with malunion +S72411Q Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion +S72411R Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72411S Displaced unspecified condyle fracture of lower end of right femur, sequela +S72412A Displaced unspecified condyle fracture of lower end of left femur, initial encounter for closed fracture +S72412B Displaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type I or II +S72412C Displaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72412D Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing +S72412E Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing +S72412F Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72412G Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing +S72412H Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72412J Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72412K Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion +S72412M Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion +S72412N Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72412P Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with malunion +S72412Q Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion +S72412R Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72412S Displaced unspecified condyle fracture of lower end of left femur, sequela +S72413A Displaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for closed fracture +S72413B Displaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type I or II +S72413C Displaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72413D Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing +S72413E Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72413F Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72413G Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72413H Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72413J Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72413K Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion +S72413M Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72413N Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72413P Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion +S72413Q Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72413R Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72413S Displaced unspecified condyle fracture of lower end of unspecified femur, sequela +S72414A Nondisplaced unspecified condyle fracture of lower end of right femur, initial encounter for closed fracture +S72414B Nondisplaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type I or II +S72414C Nondisplaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72414D Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing +S72414E Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing +S72414F Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72414G Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing +S72414H Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72414J Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72414K Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion +S72414M Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion +S72414N Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72414P Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with malunion +S72414Q Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion +S72414R Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72414S Nondisplaced unspecified condyle fracture of lower end of right femur, sequela +S72415A Nondisplaced unspecified condyle fracture of lower end of left femur, initial encounter for closed fracture +S72415B Nondisplaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type I or II +S72415C Nondisplaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72415D Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing +S72415E Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing +S72415F Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72415G Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing +S72415H Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72415J Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72415K Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion +S72415M Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion +S72415N Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72415P Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with malunion +S72415Q Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion +S72415R Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72415S Nondisplaced unspecified condyle fracture of lower end of left femur, sequela +S72416A Nondisplaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for closed fracture +S72416B Nondisplaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type I or II +S72416C Nondisplaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72416D Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing +S72416E Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72416F Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72416G Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72416H Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72416J Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72416K Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion +S72416M Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72416N Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72416P Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion +S72416Q Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72416R Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72416S Nondisplaced unspecified condyle fracture of lower end of unspecified femur, sequela +S72421A Displaced fracture of lateral condyle of right femur, initial encounter for closed fracture +S72421B Displaced fracture of lateral condyle of right femur, initial encounter for open fracture type I or II +S72421C Displaced fracture of lateral condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72421D Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with routine healing +S72421E Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with routine healing +S72421F Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72421G Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with delayed healing +S72421H Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72421J Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72421K Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with nonunion +S72421M Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with nonunion +S72421N Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72421P Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with malunion +S72421Q Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with malunion +S72421R Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72421S Displaced fracture of lateral condyle of right femur, sequela +S72422A Displaced fracture of lateral condyle of left femur, initial encounter for closed fracture +S72422B Displaced fracture of lateral condyle of left femur, initial encounter for open fracture type I or II +S72422C Displaced fracture of lateral condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72422D Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with routine healing +S72422E Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with routine healing +S72422F Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72422G Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with delayed healing +S72422H Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72422J Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72422K Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with nonunion +S72422M Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with nonunion +S72422N Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72422P Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with malunion +S72422Q Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with malunion +S72422R Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72422S Displaced fracture of lateral condyle of left femur, sequela +S72423A Displaced fracture of lateral condyle of unspecified femur, initial encounter for closed fracture +S72423B Displaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type I or II +S72423C Displaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72423D Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with routine healing +S72423E Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72423F Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72423G Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72423H Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72423J Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72423K Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with nonunion +S72423M Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72423N Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72423P Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with malunion +S72423Q Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72423R Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72423S Displaced fracture of lateral condyle of unspecified femur, sequela +S72424A Nondisplaced fracture of lateral condyle of right femur, initial encounter for closed fracture +S72424B Nondisplaced fracture of lateral condyle of right femur, initial encounter for open fracture type I or II +S72424C Nondisplaced fracture of lateral condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72424D Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with routine healing +S72424E Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with routine healing +S72424F Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72424G Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with delayed healing +S72424H Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72424J Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72424K Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with nonunion +S72424M Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with nonunion +S72424N Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72424P Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with malunion +S72424Q Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with malunion +S72424R Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72424S Nondisplaced fracture of lateral condyle of right femur, sequela +S72425A Nondisplaced fracture of lateral condyle of left femur, initial encounter for closed fracture +S72425B Nondisplaced fracture of lateral condyle of left femur, initial encounter for open fracture type I or II +S72425C Nondisplaced fracture of lateral condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72425D Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with routine healing +S72425E Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with routine healing +S72425F Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72425G Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with delayed healing +S72425H Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72425J Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72425K Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with nonunion +S72425M Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with nonunion +S72425N Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72425P Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with malunion +S72425Q Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with malunion +S72425R Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72425S Nondisplaced fracture of lateral condyle of left femur, sequela +S72426A Nondisplaced fracture of lateral condyle of unspecified femur, initial encounter for closed fracture +S72426B Nondisplaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type I or II +S72426C Nondisplaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72426D Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with routine healing +S72426E Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72426F Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72426G Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72426H Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72426J Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72426K Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with nonunion +S72426M Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72426N Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72426P Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with malunion +S72426Q Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72426R Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72426S Nondisplaced fracture of lateral condyle of unspecified femur, sequela +S72431A Displaced fracture of medial condyle of right femur, initial encounter for closed fracture +S72431B Displaced fracture of medial condyle of right femur, initial encounter for open fracture type I or II +S72431C Displaced fracture of medial condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72431D Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with routine healing +S72431E Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with routine healing +S72431F Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72431G Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with delayed healing +S72431H Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72431J Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72431K Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with nonunion +S72431M Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with nonunion +S72431N Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72431P Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with malunion +S72431Q Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with malunion +S72431R Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72431S Displaced fracture of medial condyle of right femur, sequela +S72432A Displaced fracture of medial condyle of left femur, initial encounter for closed fracture +S72432B Displaced fracture of medial condyle of left femur, initial encounter for open fracture type I or II +S72432C Displaced fracture of medial condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72432D Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with routine healing +S72432E Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with routine healing +S72432F Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72432G Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with delayed healing +S72432H Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72432J Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72432K Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with nonunion +S72432M Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with nonunion +S72432N Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72432P Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with malunion +S72432Q Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with malunion +S72432R Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72432S Displaced fracture of medial condyle of left femur, sequela +S72433A Displaced fracture of medial condyle of unspecified femur, initial encounter for closed fracture +S72433B Displaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type I or II +S72433C Displaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72433D Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with routine healing +S72433E Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72433F Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72433G Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72433H Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72433J Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72433K Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with nonunion +S72433M Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72433N Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72433P Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with malunion +S72433Q Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72433R Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72433S Displaced fracture of medial condyle of unspecified femur, sequela +S72434A Nondisplaced fracture of medial condyle of right femur, initial encounter for closed fracture +S72434B Nondisplaced fracture of medial condyle of right femur, initial encounter for open fracture type I or II +S72434C Nondisplaced fracture of medial condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72434D Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with routine healing +S72434E Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with routine healing +S72434F Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72434G Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with delayed healing +S72434H Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72434J Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72434K Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with nonunion +S72434M Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with nonunion +S72434N Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72434P Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with malunion +S72434Q Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with malunion +S72434R Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72434S Nondisplaced fracture of medial condyle of right femur, sequela +S72435A Nondisplaced fracture of medial condyle of left femur, initial encounter for closed fracture +S72435B Nondisplaced fracture of medial condyle of left femur, initial encounter for open fracture type I or II +S72435C Nondisplaced fracture of medial condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72435D Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with routine healing +S72435E Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with routine healing +S72435F Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72435G Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with delayed healing +S72435H Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72435J Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72435K Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with nonunion +S72435M Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with nonunion +S72435N Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72435P Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with malunion +S72435Q Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with malunion +S72435R Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72435S Nondisplaced fracture of medial condyle of left femur, sequela +S72436A Nondisplaced fracture of medial condyle of unspecified femur, initial encounter for closed fracture +S72436B Nondisplaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type I or II +S72436C Nondisplaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72436D Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with routine healing +S72436E Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72436F Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72436G Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72436H Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72436J Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72436K Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with nonunion +S72436M Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72436N Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72436P Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with malunion +S72436Q Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72436R Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72436S Nondisplaced fracture of medial condyle of unspecified femur, sequela +S72441A Displaced fracture of lower epiphysis (separation) of right femur, initial encounter for closed fracture +S72441B Displaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type I or II +S72441C Displaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72441D Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with routine healing +S72441E Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with routine healing +S72441F Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72441G Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with delayed healing +S72441H Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72441J Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72441K Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with nonunion +S72441M Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with nonunion +S72441N Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72441P Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with malunion +S72441Q Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with malunion +S72441R Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72441S Displaced fracture of lower epiphysis (separation) of right femur, sequela +S72442A Displaced fracture of lower epiphysis (separation) of left femur, initial encounter for closed fracture +S72442B Displaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type I or II +S72442C Displaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72442D Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with routine healing +S72442E Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with routine healing +S72442F Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72442G Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with delayed healing +S72442H Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72442J Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72442K Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with nonunion +S72442M Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with nonunion +S72442N Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72442P Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with malunion +S72442Q Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with malunion +S72442R Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72442S Displaced fracture of lower epiphysis (separation) of left femur, sequela +S72443A Displaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for closed fracture +S72443B Displaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type I or II +S72443C Displaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72443D Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with routine healing +S72443E Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72443F Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72443G Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72443H Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72443J Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72443K Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with nonunion +S72443M Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72443N Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72443P Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with malunion +S72443Q Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72443R Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72443S Displaced fracture of lower epiphysis (separation) of unspecified femur, sequela +S72444A Nondisplaced fracture of lower epiphysis (separation) of right femur, initial encounter for closed fracture +S72444B Nondisplaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type I or II +S72444C Nondisplaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72444D Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with routine healing +S72444E Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with routine healing +S72444F Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72444G Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with delayed healing +S72444H Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72444J Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72444K Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with nonunion +S72444M Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with nonunion +S72444N Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72444P Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with malunion +S72444Q Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with malunion +S72444R Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72444S Nondisplaced fracture of lower epiphysis (separation) of right femur, sequela +S72445A Nondisplaced fracture of lower epiphysis (separation) of left femur, initial encounter for closed fracture +S72445B Nondisplaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type I or II +S72445C Nondisplaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72445D Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with routine healing +S72445E Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with routine healing +S72445F Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72445G Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with delayed healing +S72445H Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72445J Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72445K Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with nonunion +S72445M Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with nonunion +S72445N Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72445P Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with malunion +S72445Q Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with malunion +S72445R Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72445S Nondisplaced fracture of lower epiphysis (separation) of left femur, sequela +S72446A Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for closed fracture +S72446B Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type I or II +S72446C Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72446D Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with routine healing +S72446E Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72446F Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72446G Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72446H Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72446J Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72446K Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with nonunion +S72446M Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72446N Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72446P Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with malunion +S72446Q Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72446R Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72446S Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, sequela +S72451A Displaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for closed fracture +S72451B Displaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II +S72451C Displaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72451D Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing +S72451E Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing +S72451F Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72451G Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing +S72451H Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72451J Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72451K Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion +S72451M Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion +S72451N Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72451P Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion +S72451Q Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion +S72451R Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72451S Displaced supracondylar fracture without intracondylar extension of lower end of right femur, sequela +S72452A Displaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for closed fracture +S72452B Displaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II +S72452C Displaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72452D Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing +S72452E Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing +S72452F Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72452G Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing +S72452H Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72452J Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72452K Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion +S72452M Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion +S72452N Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72452P Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion +S72452Q Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion +S72452R Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72452S Displaced supracondylar fracture without intracondylar extension of lower end of left femur, sequela +S72453A Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture +S72453B Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II +S72453C Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72453D Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing +S72453E Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72453F Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72453G Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72453H Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72453J Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72453K Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion +S72453M Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72453N Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72453P Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion +S72453Q Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72453R Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72453S Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, sequela +S72454A Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for closed fracture +S72454B Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II +S72454C Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72454D Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing +S72454E Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing +S72454F Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72454G Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing +S72454H Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72454J Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72454K Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion +S72454M Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion +S72454N Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72454P Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion +S72454Q Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion +S72454R Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72454S Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, sequela +S72455A Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for closed fracture +S72455B Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II +S72455C Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72455D Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing +S72455E Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing +S72455F Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72455G Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing +S72455H Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72455J Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72455K Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion +S72455M Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion +S72455N Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72455P Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion +S72455Q Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion +S72455R Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72455S Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, sequela +S72456A Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture +S72456B Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II +S72456C Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72456D Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing +S72456E Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72456F Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72456G Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72456H Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72456J Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72456K Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion +S72456M Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72456N Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72456P Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion +S72456Q Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72456R Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72456S Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, sequela +S72461A Displaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for closed fracture +S72461B Displaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II +S72461C Displaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72461D Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing +S72461E Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing +S72461F Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72461G Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing +S72461H Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72461J Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72461K Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion +S72461M Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion +S72461N Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72461P Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion +S72461Q Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion +S72461R Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72461S Displaced supracondylar fracture with intracondylar extension of lower end of right femur, sequela +S72462A Displaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for closed fracture +S72462B Displaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II +S72462C Displaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72462D Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing +S72462E Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing +S72462F Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72462G Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing +S72462H Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72462J Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72462K Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion +S72462M Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion +S72462N Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72462P Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion +S72462Q Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion +S72462R Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72462S Displaced supracondylar fracture with intracondylar extension of lower end of left femur, sequela +S72463A Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture +S72463B Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II +S72463C Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72463D Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing +S72463E Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72463F Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72463G Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72463H Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72463J Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72463K Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion +S72463M Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72463N Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72463P Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion +S72463Q Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72463R Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72463S Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, sequela +S72464A Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for closed fracture +S72464B Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II +S72464C Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72464D Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing +S72464E Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing +S72464F Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72464G Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing +S72464H Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72464J Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72464K Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion +S72464M Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion +S72464N Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72464P Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion +S72464Q Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion +S72464R Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72464S Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, sequela +S72465A Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for closed fracture +S72465B Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II +S72465C Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72465D Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing +S72465E Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing +S72465F Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72465G Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing +S72465H Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72465J Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72465K Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion +S72465M Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion +S72465N Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72465P Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion +S72465Q Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion +S72465R Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72465S Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, sequela +S72466A Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture +S72466B Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II +S72466C Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72466D Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing +S72466E Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72466F Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72466G Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72466H Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72466J Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72466K Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion +S72466M Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72466N Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72466P Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion +S72466Q Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72466R Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72466S Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, sequela +S72471A Torus fracture of lower end of right femur, initial encounter for closed fracture +S72471D Torus fracture of lower end of right femur, subsequent encounter for fracture with routine healing +S72471G Torus fracture of lower end of right femur, subsequent encounter for fracture with delayed healing +S72471K Torus fracture of lower end of right femur, subsequent encounter for fracture with nonunion +S72471P Torus fracture of lower end of right femur, subsequent encounter for fracture with malunion +S72471S Torus fracture of lower end of right femur, sequela +S72472A Torus fracture of lower end of left femur, initial encounter for closed fracture +S72472D Torus fracture of lower end of left femur, subsequent encounter for fracture with routine healing +S72472G Torus fracture of lower end of left femur, subsequent encounter for fracture with delayed healing +S72472K Torus fracture of lower end of left femur, subsequent encounter for fracture with nonunion +S72472P Torus fracture of lower end of left femur, subsequent encounter for fracture with malunion +S72472S Torus fracture of lower end of left femur, sequela +S72479A Torus fracture of lower end of unspecified femur, initial encounter for closed fracture +S72479D Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing +S72479G Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing +S72479K Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion +S72479P Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion +S72479S Torus fracture of lower end of unspecified femur, sequela +S72491A Other fracture of lower end of right femur, initial encounter for closed fracture +S72491B Other fracture of lower end of right femur, initial encounter for open fracture type I or II +S72491C Other fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72491D Other fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing +S72491E Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing +S72491F Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72491G Other fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing +S72491H Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing +S72491J Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72491K Other fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion +S72491M Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion +S72491N Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72491P Other fracture of lower end of right femur, subsequent encounter for closed fracture with malunion +S72491Q Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion +S72491R Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72491S Other fracture of lower end of right femur, sequela +S72492A Other fracture of lower end of left femur, initial encounter for closed fracture +S72492B Other fracture of lower end of left femur, initial encounter for open fracture type I or II +S72492C Other fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72492D Other fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing +S72492E Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing +S72492F Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72492G Other fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing +S72492H Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing +S72492J Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72492K Other fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion +S72492M Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion +S72492N Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72492P Other fracture of lower end of left femur, subsequent encounter for closed fracture with malunion +S72492Q Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion +S72492R Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72492S Other fracture of lower end of left femur, sequela +S72499A Other fracture of lower end of unspecified femur, initial encounter for closed fracture +S72499B Other fracture of lower end of unspecified femur, initial encounter for open fracture type I or II +S72499C Other fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S72499D Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing +S72499E Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S72499F Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S72499G Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing +S72499H Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S72499J Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S72499K Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion +S72499M Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S72499N Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S72499P Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion +S72499Q Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S72499R Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S72499S Other fracture of lower end of unspecified femur, sequela +S728X1A Other fracture of right femur, initial encounter for closed fracture +S728X1B Other fracture of right femur, initial encounter for open fracture type I or II +S728X1C Other fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S728X1D Other fracture of right femur, subsequent encounter for closed fracture with routine healing +S728X1E Other fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S728X1F Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S728X1G Other fracture of right femur, subsequent encounter for closed fracture with delayed healing +S728X1H Other fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S728X1J Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S728X1K Other fracture of right femur, subsequent encounter for closed fracture with nonunion +S728X1M Other fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S728X1N Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S728X1P Other fracture of right femur, subsequent encounter for closed fracture with malunion +S728X1Q Other fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S728X1R Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S728X1S Other fracture of right femur, sequela +S728X2A Other fracture of left femur, initial encounter for closed fracture +S728X2B Other fracture of left femur, initial encounter for open fracture type I or II +S728X2C Other fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S728X2D Other fracture of left femur, subsequent encounter for closed fracture with routine healing +S728X2E Other fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S728X2F Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S728X2G Other fracture of left femur, subsequent encounter for closed fracture with delayed healing +S728X2H Other fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S728X2J Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S728X2K Other fracture of left femur, subsequent encounter for closed fracture with nonunion +S728X2M Other fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S728X2N Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S728X2P Other fracture of left femur, subsequent encounter for closed fracture with malunion +S728X2Q Other fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S728X2R Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S728X2S Other fracture of left femur, sequela +S728X9A Other fracture of unspecified femur, initial encounter for closed fracture +S728X9B Other fracture of unspecified femur, initial encounter for open fracture type I or II +S728X9C Other fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S728X9D Other fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S728X9E Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S728X9F Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S728X9G Other fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S728X9H Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S728X9J Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S728X9K Other fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S728X9M Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S728X9N Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S728X9P Other fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S728X9Q Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S728X9R Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S728X9S Other fracture of unspecified femur, sequela +S7290XA Unspecified fracture of unspecified femur, initial encounter for closed fracture +S7290XB Unspecified fracture of unspecified femur, initial encounter for open fracture type I or II +S7290XC Unspecified fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S7290XD Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +S7290XE Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing +S7290XF Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S7290XG Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +S7290XH Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing +S7290XJ Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S7290XK Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +S7290XM Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion +S7290XN Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S7290XP Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with malunion +S7290XQ Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion +S7290XR Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S7290XS Unspecified fracture of unspecified femur, sequela +S7291XA Unspecified fracture of right femur, initial encounter for closed fracture +S7291XB Unspecified fracture of right femur, initial encounter for open fracture type I or II +S7291XC Unspecified fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S7291XD Unspecified fracture of right femur, subsequent encounter for closed fracture with routine healing +S7291XE Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with routine healing +S7291XF Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S7291XG Unspecified fracture of right femur, subsequent encounter for closed fracture with delayed healing +S7291XH Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing +S7291XJ Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S7291XK Unspecified fracture of right femur, subsequent encounter for closed fracture with nonunion +S7291XM Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +S7291XN Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S7291XP Unspecified fracture of right femur, subsequent encounter for closed fracture with malunion +S7291XQ Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with malunion +S7291XR Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S7291XS Unspecified fracture of right femur, sequela +S7292XA Unspecified fracture of left femur, initial encounter for closed fracture +S7292XB Unspecified fracture of left femur, initial encounter for open fracture type I or II +S7292XC Unspecified fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +S7292XD Unspecified fracture of left femur, subsequent encounter for closed fracture with routine healing +S7292XE Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with routine healing +S7292XF Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S7292XG Unspecified fracture of left femur, subsequent encounter for closed fracture with delayed healing +S7292XH Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing +S7292XJ Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S7292XK Unspecified fracture of left femur, subsequent encounter for closed fracture with nonunion +S7292XM Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +S7292XN Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S7292XP Unspecified fracture of left femur, subsequent encounter for closed fracture with malunion +S7292XQ Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with malunion +S7292XR Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S7292XS Unspecified fracture of left femur, sequela +S73001A Unspecified subluxation of right hip, initial encounter +S73001D Unspecified subluxation of right hip, subsequent encounter +S73001S Unspecified subluxation of right hip, sequela +S73002A Unspecified subluxation of left hip, initial encounter +S73002D Unspecified subluxation of left hip, subsequent encounter +S73002S Unspecified subluxation of left hip, sequela +S73003A Unspecified subluxation of unspecified hip, initial encounter +S73003D Unspecified subluxation of unspecified hip, subsequent encounter +S73003S Unspecified subluxation of unspecified hip, sequela +S73004A Unspecified dislocation of right hip, initial encounter +S73004D Unspecified dislocation of right hip, subsequent encounter +S73004S Unspecified dislocation of right hip, sequela +S73005A Unspecified dislocation of left hip, initial encounter +S73005D Unspecified dislocation of left hip, subsequent encounter +S73005S Unspecified dislocation of left hip, sequela +S73006A Unspecified dislocation of unspecified hip, initial encounter +S73006D Unspecified dislocation of unspecified hip, subsequent encounter +S73006S Unspecified dislocation of unspecified hip, sequela +S73011A Posterior subluxation of right hip, initial encounter +S73011D Posterior subluxation of right hip, subsequent encounter +S73011S Posterior subluxation of right hip, sequela +S73012A Posterior subluxation of left hip, initial encounter +S73012D Posterior subluxation of left hip, subsequent encounter +S73012S Posterior subluxation of left hip, sequela +S73013A Posterior subluxation of unspecified hip, initial encounter +S73013D Posterior subluxation of unspecified hip, subsequent encounter +S73013S Posterior subluxation of unspecified hip, sequela +S73014A Posterior dislocation of right hip, initial encounter +S73014D Posterior dislocation of right hip, subsequent encounter +S73014S Posterior dislocation of right hip, sequela +S73015A Posterior dislocation of left hip, initial encounter +S73015D Posterior dislocation of left hip, subsequent encounter +S73015S Posterior dislocation of left hip, sequela +S73016A Posterior dislocation of unspecified hip, initial encounter +S73016D Posterior dislocation of unspecified hip, subsequent encounter +S73016S Posterior dislocation of unspecified hip, sequela +S73021A Obturator subluxation of right hip, initial encounter +S73021D Obturator subluxation of right hip, subsequent encounter +S73021S Obturator subluxation of right hip, sequela +S73022A Obturator subluxation of left hip, initial encounter +S73022D Obturator subluxation of left hip, subsequent encounter +S73022S Obturator subluxation of left hip, sequela +S73023A Obturator subluxation of unspecified hip, initial encounter +S73023D Obturator subluxation of unspecified hip, subsequent encounter +S73023S Obturator subluxation of unspecified hip, sequela +S73024A Obturator dislocation of right hip, initial encounter +S73024D Obturator dislocation of right hip, subsequent encounter +S73024S Obturator dislocation of right hip, sequela +S73025A Obturator dislocation of left hip, initial encounter +S73025D Obturator dislocation of left hip, subsequent encounter +S73025S Obturator dislocation of left hip, sequela +S73026A Obturator dislocation of unspecified hip, initial encounter +S73026D Obturator dislocation of unspecified hip, subsequent encounter +S73026S Obturator dislocation of unspecified hip, sequela +S73031A Other anterior subluxation of right hip, initial encounter +S73031D Other anterior subluxation of right hip, subsequent encounter +S73031S Other anterior subluxation of right hip, sequela +S73032A Other anterior subluxation of left hip, initial encounter +S73032D Other anterior subluxation of left hip, subsequent encounter +S73032S Other anterior subluxation of left hip, sequela +S73033A Other anterior subluxation of unspecified hip, initial encounter +S73033D Other anterior subluxation of unspecified hip, subsequent encounter +S73033S Other anterior subluxation of unspecified hip, sequela +S73034A Other anterior dislocation of right hip, initial encounter +S73034D Other anterior dislocation of right hip, subsequent encounter +S73034S Other anterior dislocation of right hip, sequela +S73035A Other anterior dislocation of left hip, initial encounter +S73035D Other anterior dislocation of left hip, subsequent encounter +S73035S Other anterior dislocation of left hip, sequela +S73036A Other anterior dislocation of unspecified hip, initial encounter +S73036D Other anterior dislocation of unspecified hip, subsequent encounter +S73036S Other anterior dislocation of unspecified hip, sequela +S73041A Central subluxation of right hip, initial encounter +S73041D Central subluxation of right hip, subsequent encounter +S73041S Central subluxation of right hip, sequela +S73042A Central subluxation of left hip, initial encounter +S73042D Central subluxation of left hip, subsequent encounter +S73042S Central subluxation of left hip, sequela +S73043A Central subluxation of unspecified hip, initial encounter +S73043D Central subluxation of unspecified hip, subsequent encounter +S73043S Central subluxation of unspecified hip, sequela +S73044A Central dislocation of right hip, initial encounter +S73044D Central dislocation of right hip, subsequent encounter +S73044S Central dislocation of right hip, sequela +S73045A Central dislocation of left hip, initial encounter +S73045D Central dislocation of left hip, subsequent encounter +S73045S Central dislocation of left hip, sequela +S73046A Central dislocation of unspecified hip, initial encounter +S73046D Central dislocation of unspecified hip, subsequent encounter +S73046S Central dislocation of unspecified hip, sequela +S73101A Unspecified sprain of right hip, initial encounter +S73101D Unspecified sprain of right hip, subsequent encounter +S73101S Unspecified sprain of right hip, sequela +S73102A Unspecified sprain of left hip, initial encounter +S73102D Unspecified sprain of left hip, subsequent encounter +S73102S Unspecified sprain of left hip, sequela +S73109A Unspecified sprain of unspecified hip, initial encounter +S73109D Unspecified sprain of unspecified hip, subsequent encounter +S73109S Unspecified sprain of unspecified hip, sequela +S73111A Iliofemoral ligament sprain of right hip, initial encounter +S73111D Iliofemoral ligament sprain of right hip, subsequent encounter +S73111S Iliofemoral ligament sprain of right hip, sequela +S73112A Iliofemoral ligament sprain of left hip, initial encounter +S73112D Iliofemoral ligament sprain of left hip, subsequent encounter +S73112S Iliofemoral ligament sprain of left hip, sequela +S73119A Iliofemoral ligament sprain of unspecified hip, initial encounter +S73119D Iliofemoral ligament sprain of unspecified hip, subsequent encounter +S73119S Iliofemoral ligament sprain of unspecified hip, sequela +S73121A Ischiocapsular ligament sprain of right hip, initial encounter +S73121D Ischiocapsular ligament sprain of right hip, subsequent encounter +S73121S Ischiocapsular ligament sprain of right hip, sequela +S73122A Ischiocapsular ligament sprain of left hip, initial encounter +S73122D Ischiocapsular ligament sprain of left hip, subsequent encounter +S73122S Ischiocapsular ligament sprain of left hip, sequela +S73129A Ischiocapsular ligament sprain of unspecified hip, initial encounter +S73129D Ischiocapsular ligament sprain of unspecified hip, subsequent encounter +S73129S Ischiocapsular ligament sprain of unspecified hip, sequela +S73191A Other sprain of right hip, initial encounter +S73191D Other sprain of right hip, subsequent encounter +S73191S Other sprain of right hip, sequela +S73192A Other sprain of left hip, initial encounter +S73192D Other sprain of left hip, subsequent encounter +S73192S Other sprain of left hip, sequela +S73199A Other sprain of unspecified hip, initial encounter +S73199D Other sprain of unspecified hip, subsequent encounter +S73199S Other sprain of unspecified hip, sequela +S7400XA Injury of sciatic nerve at hip and thigh level, unspecified leg, initial encounter +S7400XD Injury of sciatic nerve at hip and thigh level, unspecified leg, subsequent encounter +S7400XS Injury of sciatic nerve at hip and thigh level, unspecified leg, sequela +S7401XA Injury of sciatic nerve at hip and thigh level, right leg, initial encounter +S7401XD Injury of sciatic nerve at hip and thigh level, right leg, subsequent encounter +S7401XS Injury of sciatic nerve at hip and thigh level, right leg, sequela +S7402XA Injury of sciatic nerve at hip and thigh level, left leg, initial encounter +S7402XD Injury of sciatic nerve at hip and thigh level, left leg, subsequent encounter +S7402XS Injury of sciatic nerve at hip and thigh level, left leg, sequela +S7410XA Injury of femoral nerve at hip and thigh level, unspecified leg, initial encounter +S7410XD Injury of femoral nerve at hip and thigh level, unspecified leg, subsequent encounter +S7410XS Injury of femoral nerve at hip and thigh level, unspecified leg, sequela +S7411XA Injury of femoral nerve at hip and thigh level, right leg, initial encounter +S7411XD Injury of femoral nerve at hip and thigh level, right leg, subsequent encounter +S7411XS Injury of femoral nerve at hip and thigh level, right leg, sequela +S7412XA Injury of femoral nerve at hip and thigh level, left leg, initial encounter +S7412XD Injury of femoral nerve at hip and thigh level, left leg, subsequent encounter +S7412XS Injury of femoral nerve at hip and thigh level, left leg, sequela +S7420XA Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, initial encounter +S7420XD Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, subsequent encounter +S7420XS Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, sequela +S7421XA Injury of cutaneous sensory nerve at hip and high level, right leg, initial encounter +S7421XD Injury of cutaneous sensory nerve at hip and high level, right leg, subsequent encounter +S7421XS Injury of cutaneous sensory nerve at hip and high level, right leg, sequela +S7422XA Injury of cutaneous sensory nerve at hip and thigh level, left leg, initial encounter +S7422XD Injury of cutaneous sensory nerve at hip and thigh level, left leg, subsequent encounter +S7422XS Injury of cutaneous sensory nerve at hip and thigh level, left leg, sequela +S748X1A Injury of other nerves at hip and thigh level, right leg, initial encounter +S748X1D Injury of other nerves at hip and thigh level, right leg, subsequent encounter +S748X1S Injury of other nerves at hip and thigh level, right leg, sequela +S748X2A Injury of other nerves at hip and thigh level, left leg, initial encounter +S748X2D Injury of other nerves at hip and thigh level, left leg, subsequent encounter +S748X2S Injury of other nerves at hip and thigh level, left leg, sequela +S748X9A Injury of other nerves at hip and thigh level, unspecified leg, initial encounter +S748X9D Injury of other nerves at hip and thigh level, unspecified leg, subsequent encounter +S748X9S Injury of other nerves at hip and thigh level, unspecified leg, sequela +S7490XA Injury of unspecified nerve at hip and thigh level, unspecified leg, initial encounter +S7490XD Injury of unspecified nerve at hip and thigh level, unspecified leg, subsequent encounter +S7490XS Injury of unspecified nerve at hip and thigh level, unspecified leg, sequela +S7491XA Injury of unspecified nerve at hip and thigh level, right leg, initial encounter +S7491XD Injury of unspecified nerve at hip and thigh level, right leg, subsequent encounter +S7491XS Injury of unspecified nerve at hip and thigh level, right leg, sequela +S7492XA Injury of unspecified nerve at hip and thigh level, left leg, initial encounter +S7492XD Injury of unspecified nerve at hip and thigh level, left leg, subsequent encounter +S7492XS Injury of unspecified nerve at hip and thigh level, left leg, sequela +S75001A Unspecified injury of femoral artery, right leg, initial encounter +S75001D Unspecified injury of femoral artery, right leg, subsequent encounter +S75001S Unspecified injury of femoral artery, right leg, sequela +S75002A Unspecified injury of femoral artery, left leg, initial encounter +S75002D Unspecified injury of femoral artery, left leg, subsequent encounter +S75002S Unspecified injury of femoral artery, left leg, sequela +S75009A Unspecified injury of femoral artery, unspecified leg, initial encounter +S75009D Unspecified injury of femoral artery, unspecified leg, subsequent encounter +S75009S Unspecified injury of femoral artery, unspecified leg, sequela +S75011A Minor laceration of femoral artery, right leg, initial encounter +S75011D Minor laceration of femoral artery, right leg, subsequent encounter +S75011S Minor laceration of femoral artery, right leg, sequela +S75012A Minor laceration of femoral artery, left leg, initial encounter +S75012D Minor laceration of femoral artery, left leg, subsequent encounter +S75012S Minor laceration of femoral artery, left leg, sequela +S75019A Minor laceration of femoral artery, unspecified leg, initial encounter +S75019D Minor laceration of femoral artery, unspecified leg, subsequent encounter +S75019S Minor laceration of femoral artery, unspecified leg, sequela +S75021A Major laceration of femoral artery, right leg, initial encounter +S75021D Major laceration of femoral artery, right leg, subsequent encounter +S75021S Major laceration of femoral artery, right leg, sequela +S75022A Major laceration of femoral artery, left leg, initial encounter +S75022D Major laceration of femoral artery, left leg, subsequent encounter +S75022S Major laceration of femoral artery, left leg, sequela +S75029A Major laceration of femoral artery, unspecified leg, initial encounter +S75029D Major laceration of femoral artery, unspecified leg, subsequent encounter +S75029S Major laceration of femoral artery, unspecified leg, sequela +S75091A Other specified injury of femoral artery, right leg, initial encounter +S75091D Other specified injury of femoral artery, right leg, subsequent encounter +S75091S Other specified injury of femoral artery, right leg, sequela +S75092A Other specified injury of femoral artery, left leg, initial encounter +S75092D Other specified injury of femoral artery, left leg, subsequent encounter +S75092S Other specified injury of femoral artery, left leg, sequela +S75099A Other specified injury of femoral artery, unspecified leg, initial encounter +S75099D Other specified injury of femoral artery, unspecified leg, subsequent encounter +S75099S Other specified injury of femoral artery, unspecified leg, sequela +S75101A Unspecified injury of femoral vein at hip and thigh level, right leg, initial encounter +S75101D Unspecified injury of femoral vein at hip and thigh level, right leg, subsequent encounter +S75101S Unspecified injury of femoral vein at hip and thigh level, right leg, sequela +S75102A Unspecified injury of femoral vein at hip and thigh level, left leg, initial encounter +S75102D Unspecified injury of femoral vein at hip and thigh level, left leg, subsequent encounter +S75102S Unspecified injury of femoral vein at hip and thigh level, left leg, sequela +S75109A Unspecified injury of femoral vein at hip and thigh level, unspecified leg, initial encounter +S75109D Unspecified injury of femoral vein at hip and thigh level, unspecified leg, subsequent encounter +S75109S Unspecified injury of femoral vein at hip and thigh level, unspecified leg, sequela +S75111A Minor laceration of femoral vein at hip and thigh level, right leg, initial encounter +S75111D Minor laceration of femoral vein at hip and thigh level, right leg, subsequent encounter +S75111S Minor laceration of femoral vein at hip and thigh level, right leg, sequela +S75112A Minor laceration of femoral vein at hip and thigh level, left leg, initial encounter +S75112D Minor laceration of femoral vein at hip and thigh level, left leg, subsequent encounter +S75112S Minor laceration of femoral vein at hip and thigh level, left leg, sequela +S75119A Minor laceration of femoral vein at hip and thigh level, unspecified leg, initial encounter +S75119D Minor laceration of femoral vein at hip and thigh level, unspecified leg, subsequent encounter +S75119S Minor laceration of femoral vein at hip and thigh level, unspecified leg, sequela +S75121A Major laceration of femoral vein at hip and thigh level, right leg, initial encounter +S75121D Major laceration of femoral vein at hip and thigh level, right leg, subsequent encounter +S75121S Major laceration of femoral vein at hip and thigh level, right leg, sequela +S75122A Major laceration of femoral vein at hip and thigh level, left leg, initial encounter +S75122D Major laceration of femoral vein at hip and thigh level, left leg, subsequent encounter +S75122S Major laceration of femoral vein at hip and thigh level, left leg, sequela +S75129A Major laceration of femoral vein at hip and thigh level, unspecified leg, initial encounter +S75129D Major laceration of femoral vein at hip and thigh level, unspecified leg, subsequent encounter +S75129S Major laceration of femoral vein at hip and thigh level, unspecified leg, sequela +S75191A Other specified injury of femoral vein at hip and thigh level, right leg, initial encounter +S75191D Other specified injury of femoral vein at hip and thigh level, right leg, subsequent encounter +S75191S Other specified injury of femoral vein at hip and thigh level, right leg, sequela +S75192A Other specified injury of femoral vein at hip and thigh level, left leg, initial encounter +S75192D Other specified injury of femoral vein at hip and thigh level, left leg, subsequent encounter +S75192S Other specified injury of femoral vein at hip and thigh level, left leg, sequela +S75199A Other specified injury of femoral vein at hip and thigh level, unspecified leg, initial encounter +S75199D Other specified injury of femoral vein at hip and thigh level, unspecified leg, subsequent encounter +S75199S Other specified injury of femoral vein at hip and thigh level, unspecified leg, sequela +S75201A Unspecified injury of greater saphenous vein at hip and thigh level, right leg, initial encounter +S75201D Unspecified injury of greater saphenous vein at hip and thigh level, right leg, subsequent encounter +S75201S Unspecified injury of greater saphenous vein at hip and thigh level, right leg, sequela +S75202A Unspecified injury of greater saphenous vein at hip and thigh level, left leg, initial encounter +S75202D Unspecified injury of greater saphenous vein at hip and thigh level, left leg, subsequent encounter +S75202S Unspecified injury of greater saphenous vein at hip and thigh level, left leg, sequela +S75209A Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter +S75209D Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter +S75209S Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg, sequela +S75211A Minor laceration of greater saphenous vein at hip and thigh level, right leg, initial encounter +S75211D Minor laceration of greater saphenous vein at hip and thigh level, right leg, subsequent encounter +S75211S Minor laceration of greater saphenous vein at hip and thigh level, right leg, sequela +S75212A Minor laceration of greater saphenous vein at hip and thigh level, left leg, initial encounter +S75212D Minor laceration of greater saphenous vein at hip and thigh level, left leg, subsequent encounter +S75212S Minor laceration of greater saphenous vein at hip and thigh level, left leg, sequela +S75219A Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter +S75219D Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter +S75219S Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg, sequela +S75221A Major laceration of greater saphenous vein at hip and thigh level, right leg, initial encounter +S75221D Major laceration of greater saphenous vein at hip and thigh level, right leg, subsequent encounter +S75221S Major laceration of greater saphenous vein at hip and thigh level, right leg, sequela +S75222A Major laceration of greater saphenous vein at hip and thigh level, left leg, initial encounter +S75222D Major laceration of greater saphenous vein at hip and thigh level, left leg, subsequent encounter +S75222S Major laceration of greater saphenous vein at hip and thigh level, left leg, sequela +S75229A Major laceration of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter +S75229D Major laceration of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter +S75229S Major laceration of greater saphenous vein at hip and thigh level, unspecified leg, sequela +S75291A Other specified injury of greater saphenous vein at hip and thigh level, right leg, initial encounter +S75291D Other specified injury of greater saphenous vein at hip and thigh level, right leg, subsequent encounter +S75291S Other specified injury of greater saphenous vein at hip and thigh level, right leg, sequela +S75292A Other specified injury of greater saphenous vein at hip and thigh level, left leg, initial encounter +S75292D Other specified injury of greater saphenous vein at hip and thigh level, left leg, subsequent encounter +S75292S Other specified injury of greater saphenous vein at hip and thigh level, left leg, sequela +S75299A Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter +S75299D Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter +S75299S Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg, sequela +S75801A Unspecified injury of other blood vessels at hip and thigh level, right leg, initial encounter +S75801D Unspecified injury of other blood vessels at hip and thigh level, right leg, subsequent encounter +S75801S Unspecified injury of other blood vessels at hip and thigh level, right leg, sequela +S75802A Unspecified injury of other blood vessels at hip and thigh level, left leg, initial encounter +S75802D Unspecified injury of other blood vessels at hip and thigh level, left leg, subsequent encounter +S75802S Unspecified injury of other blood vessels at hip and thigh level, left leg, sequela +S75809A Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, initial encounter +S75809D Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, subsequent encounter +S75809S Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, sequela +S75811A Laceration of other blood vessels at hip and thigh level, right leg, initial encounter +S75811D Laceration of other blood vessels at hip and thigh level, right leg, subsequent encounter +S75811S Laceration of other blood vessels at hip and thigh level, right leg, sequela +S75812A Laceration of other blood vessels at hip and thigh level, left leg, initial encounter +S75812D Laceration of other blood vessels at hip and thigh level, left leg, subsequent encounter +S75812S Laceration of other blood vessels at hip and thigh level, left leg, sequela +S75819A Laceration of other blood vessels at hip and thigh level, unspecified leg, initial encounter +S75819D Laceration of other blood vessels at hip and thigh level, unspecified leg, subsequent encounter +S75819S Laceration of other blood vessels at hip and thigh level, unspecified leg, sequela +S75891A Other specified injury of other blood vessels at hip and thigh level, right leg, initial encounter +S75891D Other specified injury of other blood vessels at hip and thigh level, right leg, subsequent encounter +S75891S Other specified injury of other blood vessels at hip and thigh level, right leg, sequela +S75892A Other specified injury of other blood vessels at hip and thigh level, left leg, initial encounter +S75892D Other specified injury of other blood vessels at hip and thigh level, left leg, subsequent encounter +S75892S Other specified injury of other blood vessels at hip and thigh level, left leg, sequela +S75899A Other specified injury of other blood vessels at hip and thigh level, unspecified leg, initial encounter +S75899D Other specified injury of other blood vessels at hip and thigh level, unspecified leg, subsequent encounter +S75899S Other specified injury of other blood vessels at hip and thigh level, unspecified leg, sequela +S75901A Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, initial encounter +S75901D Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, subsequent encounter +S75901S Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, sequela +S75902A Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, initial encounter +S75902D Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, subsequent encounter +S75902S Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, sequela +S75909A Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg, initial encounter +S75909D Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter +S75909S Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg, sequela +S75911A Laceration of unspecified blood vessel at hip and thigh level, right leg, initial encounter +S75911D Laceration of unspecified blood vessel at hip and thigh level, right leg, subsequent encounter +S75911S Laceration of unspecified blood vessel at hip and thigh level, right leg, sequela +S75912A Laceration of unspecified blood vessel at hip and thigh level, left leg, initial encounter +S75912D Laceration of unspecified blood vessel at hip and thigh level, left leg, subsequent encounter +S75912S Laceration of unspecified blood vessel at hip and thigh level, left leg, sequela +S75919A Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, initial encounter +S75919D Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter +S75919S Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, sequela +S75991A Other specified injury of unspecified blood vessel at hip and thigh level, right leg, initial encounter +S75991D Other specified injury of unspecified blood vessel at hip and thigh level, right leg, subsequent encounter +S75991S Other specified injury of unspecified blood vessel at hip and thigh level, right leg, sequela +S75992A Other specified injury of unspecified blood vessel at hip and thigh level, left leg, initial encounter +S75992D Other specified injury of unspecified blood vessel at hip and thigh level, left leg, subsequent encounter +S75992S Other specified injury of unspecified blood vessel at hip and thigh level, left leg, sequela +S75999A Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, initial encounter +S75999D Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter +S75999S Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, sequela +S76001A Unspecified injury of muscle, fascia and tendon of right hip, initial encounter +S76001D Unspecified injury of muscle, fascia and tendon of right hip, subsequent encounter +S76001S Unspecified injury of muscle, fascia and tendon of right hip, sequela +S76002A Unspecified injury of muscle, fascia and tendon of left hip, initial encounter +S76002D Unspecified injury of muscle, fascia and tendon of left hip, subsequent encounter +S76002S Unspecified injury of muscle, fascia and tendon of left hip, sequela +S76009A Unspecified injury of muscle, fascia and tendon of unspecified hip, initial encounter +S76009D Unspecified injury of muscle, fascia and tendon of unspecified hip, subsequent encounter +S76009S Unspecified injury of muscle, fascia and tendon of unspecified hip, sequela +S76011A Strain of muscle, fascia and tendon of right hip, initial encounter +S76011D Strain of muscle, fascia and tendon of right hip, subsequent encounter +S76011S Strain of muscle, fascia and tendon of right hip, sequela +S76012A Strain of muscle, fascia and tendon of left hip, initial encounter +S76012D Strain of muscle, fascia and tendon of left hip, subsequent encounter +S76012S Strain of muscle, fascia and tendon of left hip, sequela +S76019A Strain of muscle, fascia and tendon of unspecified hip, initial encounter +S76019D Strain of muscle, fascia and tendon of unspecified hip, subsequent encounter +S76019S Strain of muscle, fascia and tendon of unspecified hip, sequela +S76021A Laceration of muscle, fascia and tendon of right hip, initial encounter +S76021D Laceration of muscle, fascia and tendon of right hip, subsequent encounter +S76021S Laceration of muscle, fascia and tendon of right hip, sequela +S76022A Laceration of muscle, fascia and tendon of left hip, initial encounter +S76022D Laceration of muscle, fascia and tendon of left hip, subsequent encounter +S76022S Laceration of muscle, fascia and tendon of left hip, sequela +S76029A Laceration of muscle, fascia and tendon of unspecified hip, initial encounter +S76029D Laceration of muscle, fascia and tendon of unspecified hip, subsequent encounter +S76029S Laceration of muscle, fascia and tendon of unspecified hip, sequela +S76091A Other specified injury of muscle, fascia and tendon of right hip, initial encounter +S76091D Other specified injury of muscle, fascia and tendon of right hip, subsequent encounter +S76091S Other specified injury of muscle, fascia and tendon of right hip, sequela +S76092A Other specified injury of muscle, fascia and tendon of left hip, initial encounter +S76092D Other specified injury of muscle, fascia and tendon of left hip, subsequent encounter +S76092S Other specified injury of muscle, fascia and tendon of left hip, sequela +S76099A Other specified injury of muscle, fascia and tendon of unspecified hip, initial encounter +S76099D Other specified injury of muscle, fascia and tendon of unspecified hip, subsequent encounter +S76099S Other specified injury of muscle, fascia and tendon of unspecified hip, sequela +S76101A Unspecified injury of right quadriceps muscle, fascia and tendon, initial encounter +S76101D Unspecified injury of right quadriceps muscle, fascia and tendon, subsequent encounter +S76101S Unspecified injury of right quadriceps muscle, fascia and tendon, sequela +S76102A Unspecified injury of left quadriceps muscle, fascia and tendon, initial encounter +S76102D Unspecified injury of left quadriceps muscle, fascia and tendon, subsequent encounter +S76102S Unspecified injury of left quadriceps muscle, fascia and tendon, sequela +S76109A Unspecified injury of unspecified quadriceps muscle, fascia and tendon, initial encounter +S76109D Unspecified injury of unspecified quadriceps muscle, fascia and tendon, subsequent encounter +S76109S Unspecified injury of unspecified quadriceps muscle, fascia and tendon, sequela +S76111A Strain of right quadriceps muscle, fascia and tendon, initial encounter +S76111D Strain of right quadriceps muscle, fascia and tendon, subsequent encounter +S76111S Strain of right quadriceps muscle, fascia and tendon, sequela +S76112A Strain of left quadriceps muscle, fascia and tendon, initial encounter +S76112D Strain of left quadriceps muscle, fascia and tendon, subsequent encounter +S76112S Strain of left quadriceps muscle, fascia and tendon, sequela +S76119A Strain of unspecified quadriceps muscle, fascia and tendon, initial encounter +S76119D Strain of unspecified quadriceps muscle, fascia and tendon, subsequent encounter +S76119S Strain of unspecified quadriceps muscle, fascia and tendon, sequela +S76121A Laceration of right quadriceps muscle, fascia and tendon, initial encounter +S76121D Laceration of right quadriceps muscle, fascia and tendon, subsequent encounter +S76121S Laceration of right quadriceps muscle, fascia and tendon, sequela +S76122A Laceration of left quadriceps muscle, fascia and tendon, initial encounter +S76122D Laceration of left quadriceps muscle, fascia and tendon, subsequent encounter +S76122S Laceration of left quadriceps muscle, fascia and tendon, sequela +S76129A Laceration of unspecified quadriceps muscle, fascia and tendon, initial encounter +S76129D Laceration of unspecified quadriceps muscle, fascia and tendon, subsequent encounter +S76129S Laceration of unspecified quadriceps muscle, fascia and tendon, sequela +S76191A Other specified injury of right quadriceps muscle, fascia and tendon, initial encounter +S76191D Other specified injury of right quadriceps muscle, fascia and tendon, subsequent encounter +S76191S Other specified injury of right quadriceps muscle, fascia and tendon, sequela +S76192A Other specified injury of left quadriceps muscle, fascia and tendon, initial encounter +S76192D Other specified injury of left quadriceps muscle, fascia and tendon, subsequent encounter +S76192S Other specified injury of left quadriceps muscle, fascia and tendon, sequela +S76199A Other specified injury of unspecified quadriceps muscle, fascia and tendon, initial encounter +S76199D Other specified injury of unspecified quadriceps muscle, fascia and tendon, subsequent encounter +S76199S Other specified injury of unspecified quadriceps muscle, fascia and tendon, sequela +S76201A Unspecified injury of adductor muscle, fascia and tendon of right thigh, initial encounter +S76201D Unspecified injury of adductor muscle, fascia and tendon of right thigh, subsequent encounter +S76201S Unspecified injury of adductor muscle, fascia and tendon of right thigh, sequela +S76202A Unspecified injury of adductor muscle, fascia and tendon of left thigh, initial encounter +S76202D Unspecified injury of adductor muscle, fascia and tendon of left thigh, subsequent encounter +S76202S Unspecified injury of adductor muscle, fascia and tendon of left thigh, sequela +S76209A Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, initial encounter +S76209D Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter +S76209S Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, sequela +S76211A Strain of adductor muscle, fascia and tendon of right thigh, initial encounter +S76211D Strain of adductor muscle, fascia and tendon of right thigh, subsequent encounter +S76211S Strain of adductor muscle, fascia and tendon of right thigh, sequela +S76212A Strain of adductor muscle, fascia and tendon of left thigh, initial encounter +S76212D Strain of adductor muscle, fascia and tendon of left thigh, subsequent encounter +S76212S Strain of adductor muscle, fascia and tendon of left thigh, sequela +S76219A Strain of adductor muscle, fascia and tendon of unspecified thigh, initial encounter +S76219D Strain of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter +S76219S Strain of adductor muscle, fascia and tendon of unspecified thigh, sequela +S76221A Laceration of adductor muscle, fascia and tendon of right thigh, initial encounter +S76221D Laceration of adductor muscle, fascia and tendon of right thigh, subsequent encounter +S76221S Laceration of adductor muscle, fascia and tendon of right thigh, sequela +S76222A Laceration of adductor muscle, fascia and tendon of left thigh, initial encounter +S76222D Laceration of adductor muscle, fascia and tendon of left thigh, subsequent encounter +S76222S Laceration of adductor muscle, fascia and tendon of left thigh, sequela +S76229A Laceration of adductor muscle, fascia and tendon of unspecified thigh, initial encounter +S76229D Laceration of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter +S76229S Laceration of adductor muscle, fascia and tendon of unspecified thigh, sequela +S76291A Other injury of adductor muscle, fascia and tendon of right thigh, initial encounter +S76291D Other injury of adductor muscle, fascia and tendon of right thigh, subsequent encounter +S76291S Other injury of adductor muscle, fascia and tendon of right thigh, sequela +S76292A Other injury of adductor muscle, fascia and tendon of left thigh, initial encounter +S76292D Other injury of adductor muscle, fascia and tendon of left thigh, subsequent encounter +S76292S Other injury of adductor muscle, fascia and tendon of left thigh, sequela +S76299A Other injury of adductor muscle, fascia and tendon of unspecified thigh, initial encounter +S76299D Other injury of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter +S76299S Other injury of adductor muscle, fascia and tendon of unspecified thigh, sequela +S76301A Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter +S76301D Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter +S76301S Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela +S76302A Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter +S76302D Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter +S76302S Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela +S76309A Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter +S76309D Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter +S76309S Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela +S76311A Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter +S76311D Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter +S76311S Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela +S76312A Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter +S76312D Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter +S76312S Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela +S76319A Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter +S76319D Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter +S76319S Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela +S76321A Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter +S76321D Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter +S76321S Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela +S76322A Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter +S76322D Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter +S76322S Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela +S76329A Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter +S76329D Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter +S76329S Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela +S76391A Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter +S76391D Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter +S76391S Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela +S76392A Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter +S76392D Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter +S76392S Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela +S76399A Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter +S76399D Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter +S76399S Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela +S76801A Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter +S76801D Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter +S76801S Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh, sequela +S76802A Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter +S76802D Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter +S76802S Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh, sequela +S76809A Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter +S76809D Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter +S76809S Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +S76811A Strain of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter +S76811D Strain of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter +S76811S Strain of other specified muscles, fascia and tendons at thigh level, right thigh, sequela +S76812A Strain of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter +S76812D Strain of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter +S76812S Strain of other specified muscles, fascia and tendons at thigh level, left thigh, sequela +S76819A Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter +S76819D Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter +S76819S Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +S76821A Laceration of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter +S76821D Laceration of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter +S76821S Laceration of other specified muscles, fascia and tendons at thigh level, right thigh, sequela +S76822A Laceration of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter +S76822D Laceration of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter +S76822S Laceration of other specified muscles, fascia and tendons at thigh level, left thigh, sequela +S76829A Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter +S76829D Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter +S76829S Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +S76891A Other injury of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter +S76891D Other injury of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter +S76891S Other injury of other specified muscles, fascia and tendons at thigh level, right thigh, sequela +S76892A Other injury of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter +S76892D Other injury of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter +S76892S Other injury of other specified muscles, fascia and tendons at thigh level, left thigh, sequela +S76899A Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter +S76899D Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter +S76899S Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +S76901A Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter +S76901D Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter +S76901S Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela +S76902A Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter +S76902D Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter +S76902S Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela +S76909A Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter +S76909D Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter +S76909S Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +S76911A Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter +S76911D Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter +S76911S Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela +S76912A Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter +S76912D Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter +S76912S Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela +S76919A Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter +S76919D Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter +S76919S Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +S76921A Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter +S76921D Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter +S76921S Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela +S76922A Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter +S76922D Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter +S76922S Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela +S76929A Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter +S76929D Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter +S76929S Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +S76991A Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter +S76991D Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter +S76991S Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela +S76992A Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter +S76992D Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter +S76992S Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela +S76999A Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter +S76999D Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter +S76999S Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +S7700XA Crushing injury of unspecified hip, initial encounter +S7700XD Crushing injury of unspecified hip, subsequent encounter +S7700XS Crushing injury of unspecified hip, sequela +S7701XA Crushing injury of right hip, initial encounter +S7701XD Crushing injury of right hip, subsequent encounter +S7701XS Crushing injury of right hip, sequela +S7702XA Crushing injury of left hip, initial encounter +S7702XD Crushing injury of left hip, subsequent encounter +S7702XS Crushing injury of left hip, sequela +S7710XA Crushing injury of unspecified thigh, initial encounter +S7710XD Crushing injury of unspecified thigh, subsequent encounter +S7710XS Crushing injury of unspecified thigh, sequela +S7711XA Crushing injury of right thigh, initial encounter +S7711XD Crushing injury of right thigh, subsequent encounter +S7711XS Crushing injury of right thigh, sequela +S7712XA Crushing injury of left thigh, initial encounter +S7712XD Crushing injury of left thigh, subsequent encounter +S7712XS Crushing injury of left thigh, sequela +S7720XA Crushing injury of unspecified hip with thigh, initial encounter +S7720XD Crushing injury of unspecified hip with thigh, subsequent encounter +S7720XS Crushing injury of unspecified hip with thigh, sequela +S7721XA Crushing injury of right hip with thigh, initial encounter +S7721XD Crushing injury of right hip with thigh, subsequent encounter +S7721XS Crushing injury of right hip with thigh, sequela +S7722XA Crushing injury of left hip with thigh, initial encounter +S7722XD Crushing injury of left hip with thigh, subsequent encounter +S7722XS Crushing injury of left hip with thigh, sequela +S78011A Complete traumatic amputation at right hip joint, initial encounter +S78011D Complete traumatic amputation at right hip joint, subsequent encounter +S78011S Complete traumatic amputation at right hip joint, sequela +S78012A Complete traumatic amputation at left hip joint, initial encounter +S78012D Complete traumatic amputation at left hip joint, subsequent encounter +S78012S Complete traumatic amputation at left hip joint, sequela +S78019A Complete traumatic amputation at unspecified hip joint, initial encounter +S78019D Complete traumatic amputation at unspecified hip joint, subsequent encounter +S78019S Complete traumatic amputation at unspecified hip joint, sequela +S78021A Partial traumatic amputation at right hip joint, initial encounter +S78021D Partial traumatic amputation at right hip joint, subsequent encounter +S78021S Partial traumatic amputation at right hip joint, sequela +S78022A Partial traumatic amputation at left hip joint, initial encounter +S78022D Partial traumatic amputation at left hip joint, subsequent encounter +S78022S Partial traumatic amputation at left hip joint, sequela +S78029A Partial traumatic amputation at unspecified hip joint, initial encounter +S78029D Partial traumatic amputation at unspecified hip joint, subsequent encounter +S78029S Partial traumatic amputation at unspecified hip joint, sequela +S78111A Complete traumatic amputation at level between right hip and knee, initial encounter +S78111D Complete traumatic amputation at level between right hip and knee, subsequent encounter +S78111S Complete traumatic amputation at level between right hip and knee, sequela +S78112A Complete traumatic amputation at level between left hip and knee, initial encounter +S78112D Complete traumatic amputation at level between left hip and knee, subsequent encounter +S78112S Complete traumatic amputation at level between left hip and knee, sequela +S78119A Complete traumatic amputation at level between unspecified hip and knee, initial encounter +S78119D Complete traumatic amputation at level between unspecified hip and knee, subsequent encounter +S78119S Complete traumatic amputation at level between unspecified hip and knee, sequela +S78121A Partial traumatic amputation at level between right hip and knee, initial encounter +S78121D Partial traumatic amputation at level between right hip and knee, subsequent encounter +S78121S Partial traumatic amputation at level between right hip and knee, sequela +S78122A Partial traumatic amputation at level between left hip and knee, initial encounter +S78122D Partial traumatic amputation at level between left hip and knee, subsequent encounter +S78122S Partial traumatic amputation at level between left hip and knee, sequela +S78129A Partial traumatic amputation at level between unspecified hip and knee, initial encounter +S78129D Partial traumatic amputation at level between unspecified hip and knee, subsequent encounter +S78129S Partial traumatic amputation at level between unspecified hip and knee, sequela +S78911A Complete traumatic amputation of right hip and thigh, level unspecified, initial encounter +S78911D Complete traumatic amputation of right hip and thigh, level unspecified, subsequent encounter +S78911S Complete traumatic amputation of right hip and thigh, level unspecified, sequela +S78912A Complete traumatic amputation of left hip and thigh, level unspecified, initial encounter +S78912D Complete traumatic amputation of left hip and thigh, level unspecified, subsequent encounter +S78912S Complete traumatic amputation of left hip and thigh, level unspecified, sequela +S78919A Complete traumatic amputation of unspecified hip and thigh, level unspecified, initial encounter +S78919D Complete traumatic amputation of unspecified hip and thigh, level unspecified, subsequent encounter +S78919S Complete traumatic amputation of unspecified hip and thigh, level unspecified, sequela +S78921A Partial traumatic amputation of right hip and thigh, level unspecified, initial encounter +S78921D Partial traumatic amputation of right hip and thigh, level unspecified, subsequent encounter +S78921S Partial traumatic amputation of right hip and thigh, level unspecified, sequela +S78922A Partial traumatic amputation of left hip and thigh, level unspecified, initial encounter +S78922D Partial traumatic amputation of left hip and thigh, level unspecified, subsequent encounter +S78922S Partial traumatic amputation of left hip and thigh, level unspecified, sequela +S78929A Partial traumatic amputation of unspecified hip and thigh, level unspecified, initial encounter +S78929D Partial traumatic amputation of unspecified hip and thigh, level unspecified, subsequent encounter +S78929S Partial traumatic amputation of unspecified hip and thigh, level unspecified, sequela +S79001A Unspecified physeal fracture of upper end of right femur, initial encounter for closed fracture +S79001D Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with routine healing +S79001G Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with delayed healing +S79001K Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with nonunion +S79001P Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with malunion +S79001S Unspecified physeal fracture of upper end of right femur, sequela +S79002A Unspecified physeal fracture of upper end of left femur, initial encounter for closed fracture +S79002D Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with routine healing +S79002G Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with delayed healing +S79002K Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with nonunion +S79002P Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion +S79002S Unspecified physeal fracture of upper end of left femur, sequela +S79009A Unspecified physeal fracture of upper end of unspecified femur, initial encounter for closed fracture +S79009D Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with routine healing +S79009G Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with delayed healing +S79009K Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with nonunion +S79009P Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with malunion +S79009S Unspecified physeal fracture of upper end of unspecified femur, sequela +S79011A Salter-Harris Type I physeal fracture of upper end of right femur, initial encounter for closed fracture +S79011D Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with routine healing +S79011G Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with delayed healing +S79011K Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with nonunion +S79011P Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with malunion +S79011S Salter-Harris Type I physeal fracture of upper end of right femur, sequela +S79012A Salter-Harris Type I physeal fracture of upper end of left femur, initial encounter for closed fracture +S79012D Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with routine healing +S79012G Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with delayed healing +S79012K Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with nonunion +S79012P Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion +S79012S Salter-Harris Type I physeal fracture of upper end of left femur, sequela +S79019A Salter-Harris Type I physeal fracture of upper end of unspecified femur, initial encounter for closed fracture +S79019D Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with routine healing +S79019G Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with delayed healing +S79019K Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with nonunion +S79019P Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with malunion +S79019S Salter-Harris Type I physeal fracture of upper end of unspecified femur, sequela +S79091A Other physeal fracture of upper end of right femur, initial encounter for closed fracture +S79091D Other physeal fracture of upper end of right femur, subsequent encounter for fracture with routine healing +S79091G Other physeal fracture of upper end of right femur, subsequent encounter for fracture with delayed healing +S79091K Other physeal fracture of upper end of right femur, subsequent encounter for fracture with nonunion +S79091P Other physeal fracture of upper end of right femur, subsequent encounter for fracture with malunion +S79091S Other physeal fracture of upper end of right femur, sequela +S79092A Other physeal fracture of upper end of left femur, initial encounter for closed fracture +S79092D Other physeal fracture of upper end of left femur, subsequent encounter for fracture with routine healing +S79092G Other physeal fracture of upper end of left femur, subsequent encounter for fracture with delayed healing +S79092K Other physeal fracture of upper end of left femur, subsequent encounter for fracture with nonunion +S79092P Other physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion +S79092S Other physeal fracture of upper end of left femur, sequela +S79099A Other physeal fracture of upper end of unspecified femur, initial encounter for closed fracture +S79099D Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with routine healing +S79099G Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with delayed healing +S79099K Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with nonunion +S79099P Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with malunion +S79099S Other physeal fracture of upper end of unspecified femur, sequela +S79101A Unspecified physeal fracture of lower end of right femur, initial encounter for closed fracture +S79101D Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing +S79101G Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing +S79101K Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion +S79101P Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion +S79101S Unspecified physeal fracture of lower end of right femur, sequela +S79102A Unspecified physeal fracture of lower end of left femur, initial encounter for closed fracture +S79102D Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing +S79102G Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing +S79102K Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion +S79102P Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion +S79102S Unspecified physeal fracture of lower end of left femur, sequela +S79109A Unspecified physeal fracture of lower end of unspecified femur, initial encounter for closed fracture +S79109D Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing +S79109G Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing +S79109K Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion +S79109P Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion +S79109S Unspecified physeal fracture of lower end of unspecified femur, sequela +S79111A Salter-Harris Type I physeal fracture of lower end of right femur, initial encounter for closed fracture +S79111D Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing +S79111G Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing +S79111K Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion +S79111P Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion +S79111S Salter-Harris Type I physeal fracture of lower end of right femur, sequela +S79112A Salter-Harris Type I physeal fracture of lower end of left femur, initial encounter for closed fracture +S79112D Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing +S79112G Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing +S79112K Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion +S79112P Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion +S79112S Salter-Harris Type I physeal fracture of lower end of left femur, sequela +S79119A Salter-Harris Type I physeal fracture of lower end of unspecified femur, initial encounter for closed fracture +S79119D Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing +S79119G Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing +S79119K Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion +S79119P Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion +S79119S Salter-Harris Type I physeal fracture of lower end of unspecified femur, sequela +S79121A Salter-Harris Type II physeal fracture of lower end of right femur, initial encounter for closed fracture +S79121D Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing +S79121G Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing +S79121K Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion +S79121P Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion +S79121S Salter-Harris Type II physeal fracture of lower end of right femur, sequela +S79122A Salter-Harris Type II physeal fracture of lower end of left femur, initial encounter for closed fracture +S79122D Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing +S79122G Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing +S79122K Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion +S79122P Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion +S79122S Salter-Harris Type II physeal fracture of lower end of left femur, sequela +S79129A Salter-Harris Type II physeal fracture of lower end of unspecified femur, initial encounter for closed fracture +S79129D Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing +S79129G Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing +S79129K Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion +S79129P Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion +S79129S Salter-Harris Type II physeal fracture of lower end of unspecified femur, sequela +S79131A Salter-Harris Type III physeal fracture of lower end of right femur, initial encounter for closed fracture +S79131D Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing +S79131G Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing +S79131K Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion +S79131P Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion +S79131S Salter-Harris Type III physeal fracture of lower end of right femur, sequela +S79132A Salter-Harris Type III physeal fracture of lower end of left femur, initial encounter for closed fracture +S79132D Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing +S79132G Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing +S79132K Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion +S79132P Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion +S79132S Salter-Harris Type III physeal fracture of lower end of left femur, sequela +S79139A Salter-Harris Type III physeal fracture of lower end of unspecified femur, initial encounter for closed fracture +S79139D Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing +S79139G Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing +S79139K Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion +S79139P Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion +S79139S Salter-Harris Type III physeal fracture of lower end of unspecified femur, sequela +S79141A Salter-Harris Type IV physeal fracture of lower end of right femur, initial encounter for closed fracture +S79141D Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing +S79141G Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing +S79141K Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion +S79141P Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion +S79141S Salter-Harris Type IV physeal fracture of lower end of right femur, sequela +S79142A Salter-Harris Type IV physeal fracture of lower end of left femur, initial encounter for closed fracture +S79142D Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing +S79142G Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing +S79142K Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion +S79142P Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion +S79142S Salter-Harris Type IV physeal fracture of lower end of left femur, sequela +S79149A Salter-Harris Type IV physeal fracture of lower end of unspecified femur, initial encounter for closed fracture +S79149D Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing +S79149G Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing +S79149K Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion +S79149P Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion +S79149S Salter-Harris Type IV physeal fracture of lower end of unspecified femur, sequela +S79191A Other physeal fracture of lower end of right femur, initial encounter for closed fracture +S79191D Other physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing +S79191G Other physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing +S79191K Other physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion +S79191P Other physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion +S79191S Other physeal fracture of lower end of right femur, sequela +S79192A Other physeal fracture of lower end of left femur, initial encounter for closed fracture +S79192D Other physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing +S79192G Other physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing +S79192K Other physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion +S79192P Other physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion +S79192S Other physeal fracture of lower end of left femur, sequela +S79199A Other physeal fracture of lower end of unspecified femur, initial encounter for closed fracture +S79199D Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing +S79199G Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing +S79199K Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion +S79199P Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion +S79199S Other physeal fracture of lower end of unspecified femur, sequela +S79811A Other specified injuries of right hip, initial encounter +S79811D Other specified injuries of right hip, subsequent encounter +S79811S Other specified injuries of right hip, sequela +S79812A Other specified injuries of left hip, initial encounter +S79812D Other specified injuries of left hip, subsequent encounter +S79812S Other specified injuries of left hip, sequela +S79819A Other specified injuries of unspecified hip, initial encounter +S79819D Other specified injuries of unspecified hip, subsequent encounter +S79819S Other specified injuries of unspecified hip, sequela +S79821A Other specified injuries of right thigh, initial encounter +S79821D Other specified injuries of right thigh, subsequent encounter +S79821S Other specified injuries of right thigh, sequela +S79822A Other specified injuries of left thigh, initial encounter +S79822D Other specified injuries of left thigh, subsequent encounter +S79822S Other specified injuries of left thigh, sequela +S79829A Other specified injuries of unspecified thigh, initial encounter +S79829D Other specified injuries of unspecified thigh, subsequent encounter +S79829S Other specified injuries of unspecified thigh, sequela +S79911A Unspecified injury of right hip, initial encounter +S79911D Unspecified injury of right hip, subsequent encounter +S79911S Unspecified injury of right hip, sequela +S79912A Unspecified injury of left hip, initial encounter +S79912D Unspecified injury of left hip, subsequent encounter +S79912S Unspecified injury of left hip, sequela +S79919A Unspecified injury of unspecified hip, initial encounter +S79919D Unspecified injury of unspecified hip, subsequent encounter +S79919S Unspecified injury of unspecified hip, sequela +S79921A Unspecified injury of right thigh, initial encounter +S79921D Unspecified injury of right thigh, subsequent encounter +S79921S Unspecified injury of right thigh, sequela +S79922A Unspecified injury of left thigh, initial encounter +S79922D Unspecified injury of left thigh, subsequent encounter +S79922S Unspecified injury of left thigh, sequela +S79929A Unspecified injury of unspecified thigh, initial encounter +S79929D Unspecified injury of unspecified thigh, subsequent encounter +S79929S Unspecified injury of unspecified thigh, sequela +S8000XA Contusion of unspecified knee, initial encounter +S8000XD Contusion of unspecified knee, subsequent encounter +S8000XS Contusion of unspecified knee, sequela +S8001XA Contusion of right knee, initial encounter +S8001XD Contusion of right knee, subsequent encounter +S8001XS Contusion of right knee, sequela +S8002XA Contusion of left knee, initial encounter +S8002XD Contusion of left knee, subsequent encounter +S8002XS Contusion of left knee, sequela +S8010XA Contusion of unspecified lower leg, initial encounter +S8010XD Contusion of unspecified lower leg, subsequent encounter +S8010XS Contusion of unspecified lower leg, sequela +S8011XA Contusion of right lower leg, initial encounter +S8011XD Contusion of right lower leg, subsequent encounter +S8011XS Contusion of right lower leg, sequela +S8012XA Contusion of left lower leg, initial encounter +S8012XD Contusion of left lower leg, subsequent encounter +S8012XS Contusion of left lower leg, sequela +S80211A Abrasion, right knee, initial encounter +S80211D Abrasion, right knee, subsequent encounter +S80211S Abrasion, right knee, sequela +S80212A Abrasion, left knee, initial encounter +S80212D Abrasion, left knee, subsequent encounter +S80212S Abrasion, left knee, sequela +S80219A Abrasion, unspecified knee, initial encounter +S80219D Abrasion, unspecified knee, subsequent encounter +S80219S Abrasion, unspecified knee, sequela +S80221A Blister (nonthermal), right knee, initial encounter +S80221D Blister (nonthermal), right knee, subsequent encounter +S80221S Blister (nonthermal), right knee, sequela +S80222A Blister (nonthermal), left knee, initial encounter +S80222D Blister (nonthermal), left knee, subsequent encounter +S80222S Blister (nonthermal), left knee, sequela +S80229A Blister (nonthermal), unspecified knee, initial encounter +S80229D Blister (nonthermal), unspecified knee, subsequent encounter +S80229S Blister (nonthermal), unspecified knee, sequela +S80241A External constriction, right knee, initial encounter +S80241D External constriction, right knee, subsequent encounter +S80241S External constriction, right knee, sequela +S80242A External constriction, left knee, initial encounter +S80242D External constriction, left knee, subsequent encounter +S80242S External constriction, left knee, sequela +S80249A External constriction, unspecified knee, initial encounter +S80249D External constriction, unspecified knee, subsequent encounter +S80249S External constriction, unspecified knee, sequela +S80251A Superficial foreign body, right knee, initial encounter +S80251D Superficial foreign body, right knee, subsequent encounter +S80251S Superficial foreign body, right knee, sequela +S80252A Superficial foreign body, left knee, initial encounter +S80252D Superficial foreign body, left knee, subsequent encounter +S80252S Superficial foreign body, left knee, sequela +S80259A Superficial foreign body, unspecified knee, initial encounter +S80259D Superficial foreign body, unspecified knee, subsequent encounter +S80259S Superficial foreign body, unspecified knee, sequela +S80261A Insect bite (nonvenomous), right knee, initial encounter +S80261D Insect bite (nonvenomous), right knee, subsequent encounter +S80261S Insect bite (nonvenomous), right knee, sequela +S80262A Insect bite (nonvenomous), left knee, initial encounter +S80262D Insect bite (nonvenomous), left knee, subsequent encounter +S80262S Insect bite (nonvenomous), left knee, sequela +S80269A Insect bite (nonvenomous), unspecified knee, initial encounter +S80269D Insect bite (nonvenomous), unspecified knee, subsequent encounter +S80269S Insect bite (nonvenomous), unspecified knee, sequela +S80271A Other superficial bite of right knee, initial encounter +S80271D Other superficial bite of right knee, subsequent encounter +S80271S Other superficial bite of right knee, sequela +S80272A Other superficial bite of left knee, initial encounter +S80272D Other superficial bite of left knee, subsequent encounter +S80272S Other superficial bite of left knee, sequela +S80279A Other superficial bite of unspecified knee, initial encounter +S80279D Other superficial bite of unspecified knee, subsequent encounter +S80279S Other superficial bite of unspecified knee, sequela +S80811A Abrasion, right lower leg, initial encounter +S80811D Abrasion, right lower leg, subsequent encounter +S80811S Abrasion, right lower leg, sequela +S80812A Abrasion, left lower leg, initial encounter +S80812D Abrasion, left lower leg, subsequent encounter +S80812S Abrasion, left lower leg, sequela +S80819A Abrasion, unspecified lower leg, initial encounter +S80819D Abrasion, unspecified lower leg, subsequent encounter +S80819S Abrasion, unspecified lower leg, sequela +S80821A Blister (nonthermal), right lower leg, initial encounter +S80821D Blister (nonthermal), right lower leg, subsequent encounter +S80821S Blister (nonthermal), right lower leg, sequela +S80822A Blister (nonthermal), left lower leg, initial encounter +S80822D Blister (nonthermal), left lower leg, subsequent encounter +S80822S Blister (nonthermal), left lower leg, sequela +S80829A Blister (nonthermal), unspecified lower leg, initial encounter +S80829D Blister (nonthermal), unspecified lower leg, subsequent encounter +S80829S Blister (nonthermal), unspecified lower leg, sequela +S80841A External constriction, right lower leg, initial encounter +S80841D External constriction, right lower leg, subsequent encounter +S80841S External constriction, right lower leg, sequela +S80842A External constriction, left lower leg, initial encounter +S80842D External constriction, left lower leg, subsequent encounter +S80842S External constriction, left lower leg, sequela +S80849A External constriction, unspecified lower leg, initial encounter +S80849D External constriction, unspecified lower leg, subsequent encounter +S80849S External constriction, unspecified lower leg, sequela +S80851A Superficial foreign body, right lower leg, initial encounter +S80851D Superficial foreign body, right lower leg, subsequent encounter +S80851S Superficial foreign body, right lower leg, sequela +S80852A Superficial foreign body, left lower leg, initial encounter +S80852D Superficial foreign body, left lower leg, subsequent encounter +S80852S Superficial foreign body, left lower leg, sequela +S80859A Superficial foreign body, unspecified lower leg, initial encounter +S80859D Superficial foreign body, unspecified lower leg, subsequent encounter +S80859S Superficial foreign body, unspecified lower leg, sequela +S80861A Insect bite (nonvenomous), right lower leg, initial encounter +S80861D Insect bite (nonvenomous), right lower leg, subsequent encounter +S80861S Insect bite (nonvenomous), right lower leg, sequela +S80862A Insect bite (nonvenomous), left lower leg, initial encounter +S80862D Insect bite (nonvenomous), left lower leg, subsequent encounter +S80862S Insect bite (nonvenomous), left lower leg, sequela +S80869A Insect bite (nonvenomous), unspecified lower leg, initial encounter +S80869D Insect bite (nonvenomous), unspecified lower leg, subsequent encounter +S80869S Insect bite (nonvenomous), unspecified lower leg, sequela +S80871A Other superficial bite, right lower leg, initial encounter +S80871D Other superficial bite, right lower leg, subsequent encounter +S80871S Other superficial bite, right lower leg, sequela +S80872A Other superficial bite, left lower leg, initial encounter +S80872D Other superficial bite, left lower leg, subsequent encounter +S80872S Other superficial bite, left lower leg, sequela +S80879A Other superficial bite, unspecified lower leg, initial encounter +S80879D Other superficial bite, unspecified lower leg, subsequent encounter +S80879S Other superficial bite, unspecified lower leg, sequela +S80911A Unspecified superficial injury of right knee, initial encounter +S80911D Unspecified superficial injury of right knee, subsequent encounter +S80911S Unspecified superficial injury of right knee, sequela +S80912A Unspecified superficial injury of left knee, initial encounter +S80912D Unspecified superficial injury of left knee, subsequent encounter +S80912S Unspecified superficial injury of left knee, sequela +S80919A Unspecified superficial injury of unspecified knee, initial encounter +S80919D Unspecified superficial injury of unspecified knee, subsequent encounter +S80919S Unspecified superficial injury of unspecified knee, sequela +S80921A Unspecified superficial injury of right lower leg, initial encounter +S80921D Unspecified superficial injury of right lower leg, subsequent encounter +S80921S Unspecified superficial injury of right lower leg, sequela +S80922A Unspecified superficial injury of left lower leg, initial encounter +S80922D Unspecified superficial injury of left lower leg, subsequent encounter +S80922S Unspecified superficial injury of left lower leg, sequela +S80929A Unspecified superficial injury of unspecified lower leg, initial encounter +S80929D Unspecified superficial injury of unspecified lower leg, subsequent encounter +S80929S Unspecified superficial injury of unspecified lower leg, sequela +S81001A Unspecified open wound, right knee, initial encounter +S81001D Unspecified open wound, right knee, subsequent encounter +S81001S Unspecified open wound, right knee, sequela +S81002A Unspecified open wound, left knee, initial encounter +S81002D Unspecified open wound, left knee, subsequent encounter +S81002S Unspecified open wound, left knee, sequela +S81009A Unspecified open wound, unspecified knee, initial encounter +S81009D Unspecified open wound, unspecified knee, subsequent encounter +S81009S Unspecified open wound, unspecified knee, sequela +S81011A Laceration without foreign body, right knee, initial encounter +S81011D Laceration without foreign body, right knee, subsequent encounter +S81011S Laceration without foreign body, right knee, sequela +S81012A Laceration without foreign body, left knee, initial encounter +S81012D Laceration without foreign body, left knee, subsequent encounter +S81012S Laceration without foreign body, left knee, sequela +S81019A Laceration without foreign body, unspecified knee, initial encounter +S81019D Laceration without foreign body, unspecified knee, subsequent encounter +S81019S Laceration without foreign body, unspecified knee, sequela +S81021A Laceration with foreign body, right knee, initial encounter +S81021D Laceration with foreign body, right knee, subsequent encounter +S81021S Laceration with foreign body, right knee, sequela +S81022A Laceration with foreign body, left knee, initial encounter +S81022D Laceration with foreign body, left knee, subsequent encounter +S81022S Laceration with foreign body, left knee, sequela +S81029A Laceration with foreign body, unspecified knee, initial encounter +S81029D Laceration with foreign body, unspecified knee, subsequent encounter +S81029S Laceration with foreign body, unspecified knee, sequela +S81031A Puncture wound without foreign body, right knee, initial encounter +S81031D Puncture wound without foreign body, right knee, subsequent encounter +S81031S Puncture wound without foreign body, right knee, sequela +S81032A Puncture wound without foreign body, left knee, initial encounter +S81032D Puncture wound without foreign body, left knee, subsequent encounter +S81032S Puncture wound without foreign body, left knee, sequela +S81039A Puncture wound without foreign body, unspecified knee, initial encounter +S81039D Puncture wound without foreign body, unspecified knee, subsequent encounter +S81039S Puncture wound without foreign body, unspecified knee, sequela +S81041A Puncture wound with foreign body, right knee, initial encounter +S81041D Puncture wound with foreign body, right knee, subsequent encounter +S81041S Puncture wound with foreign body, right knee, sequela +S81042A Puncture wound with foreign body, left knee, initial encounter +S81042D Puncture wound with foreign body, left knee, subsequent encounter +S81042S Puncture wound with foreign body, left knee, sequela +S81049A Puncture wound with foreign body, unspecified knee, initial encounter +S81049D Puncture wound with foreign body, unspecified knee, subsequent encounter +S81049S Puncture wound with foreign body, unspecified knee, sequela +S81051A Open bite, right knee, initial encounter +S81051D Open bite, right knee, subsequent encounter +S81051S Open bite, right knee, sequela +S81052A Open bite, left knee, initial encounter +S81052D Open bite, left knee, subsequent encounter +S81052S Open bite, left knee, sequela +S81059A Open bite, unspecified knee, initial encounter +S81059D Open bite, unspecified knee, subsequent encounter +S81059S Open bite, unspecified knee, sequela +S81801A Unspecified open wound, right lower leg, initial encounter +S81801D Unspecified open wound, right lower leg, subsequent encounter +S81801S Unspecified open wound, right lower leg, sequela +S81802A Unspecified open wound, left lower leg, initial encounter +S81802D Unspecified open wound, left lower leg, subsequent encounter +S81802S Unspecified open wound, left lower leg, sequela +S81809A Unspecified open wound, unspecified lower leg, initial encounter +S81809D Unspecified open wound, unspecified lower leg, subsequent encounter +S81809S Unspecified open wound, unspecified lower leg, sequela +S81811A Laceration without foreign body, right lower leg, initial encounter +S81811D Laceration without foreign body, right lower leg, subsequent encounter +S81811S Laceration without foreign body, right lower leg, sequela +S81812A Laceration without foreign body, left lower leg, initial encounter +S81812D Laceration without foreign body, left lower leg, subsequent encounter +S81812S Laceration without foreign body, left lower leg, sequela +S81819A Laceration without foreign body, unspecified lower leg, initial encounter +S81819D Laceration without foreign body, unspecified lower leg, subsequent encounter +S81819S Laceration without foreign body, unspecified lower leg, sequela +S81821A Laceration with foreign body, right lower leg, initial encounter +S81821D Laceration with foreign body, right lower leg, subsequent encounter +S81821S Laceration with foreign body, right lower leg, sequela +S81822A Laceration with foreign body, left lower leg, initial encounter +S81822D Laceration with foreign body, left lower leg, subsequent encounter +S81822S Laceration with foreign body, left lower leg, sequela +S81829A Laceration with foreign body, unspecified lower leg, initial encounter +S81829D Laceration with foreign body, unspecified lower leg, subsequent encounter +S81829S Laceration with foreign body, unspecified lower leg, sequela +S81831A Puncture wound without foreign body, right lower leg, initial encounter +S81831D Puncture wound without foreign body, right lower leg, subsequent encounter +S81831S Puncture wound without foreign body, right lower leg, sequela +S81832A Puncture wound without foreign body, left lower leg, initial encounter +S81832D Puncture wound without foreign body, left lower leg, subsequent encounter +S81832S Puncture wound without foreign body, left lower leg, sequela +S81839A Puncture wound without foreign body, unspecified lower leg, initial encounter +S81839D Puncture wound without foreign body, unspecified lower leg, subsequent encounter +S81839S Puncture wound without foreign body, unspecified lower leg, sequela +S81841A Puncture wound with foreign body, right lower leg, initial encounter +S81841D Puncture wound with foreign body, right lower leg, subsequent encounter +S81841S Puncture wound with foreign body, right lower leg, sequela +S81842A Puncture wound with foreign body, left lower leg, initial encounter +S81842D Puncture wound with foreign body, left lower leg, subsequent encounter +S81842S Puncture wound with foreign body, left lower leg, sequela +S81849A Puncture wound with foreign body, unspecified lower leg, initial encounter +S81849D Puncture wound with foreign body, unspecified lower leg, subsequent encounter +S81849S Puncture wound with foreign body, unspecified lower leg, sequela +S81851A Open bite, right lower leg, initial encounter +S81851D Open bite, right lower leg, subsequent encounter +S81851S Open bite, right lower leg, sequela +S81852A Open bite, left lower leg, initial encounter +S81852D Open bite, left lower leg, subsequent encounter +S81852S Open bite, left lower leg, sequela +S81859A Open bite, unspecified lower leg, initial encounter +S81859D Open bite, unspecified lower leg, subsequent encounter +S81859S Open bite, unspecified lower leg, sequela +S82001A Unspecified fracture of right patella, initial encounter for closed fracture +S82001B Unspecified fracture of right patella, initial encounter for open fracture type I or II +S82001C Unspecified fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82001D Unspecified fracture of right patella, subsequent encounter for closed fracture with routine healing +S82001E Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with routine healing +S82001F Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82001G Unspecified fracture of right patella, subsequent encounter for closed fracture with delayed healing +S82001H Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing +S82001J Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82001K Unspecified fracture of right patella, subsequent encounter for closed fracture with nonunion +S82001M Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with nonunion +S82001N Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82001P Unspecified fracture of right patella, subsequent encounter for closed fracture with malunion +S82001Q Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with malunion +S82001R Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82001S Unspecified fracture of right patella, sequela +S82002A Unspecified fracture of left patella, initial encounter for closed fracture +S82002B Unspecified fracture of left patella, initial encounter for open fracture type I or II +S82002C Unspecified fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82002D Unspecified fracture of left patella, subsequent encounter for closed fracture with routine healing +S82002E Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with routine healing +S82002F Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82002G Unspecified fracture of left patella, subsequent encounter for closed fracture with delayed healing +S82002H Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing +S82002J Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82002K Unspecified fracture of left patella, subsequent encounter for closed fracture with nonunion +S82002M Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with nonunion +S82002N Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82002P Unspecified fracture of left patella, subsequent encounter for closed fracture with malunion +S82002Q Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with malunion +S82002R Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82002S Unspecified fracture of left patella, sequela +S82009A Unspecified fracture of unspecified patella, initial encounter for closed fracture +S82009B Unspecified fracture of unspecified patella, initial encounter for open fracture type I or II +S82009C Unspecified fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82009D Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with routine healing +S82009E Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing +S82009F Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82009G Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing +S82009H Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing +S82009J Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82009K Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +S82009M Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion +S82009N Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82009P Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with malunion +S82009Q Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion +S82009R Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82009S Unspecified fracture of unspecified patella, sequela +S82011A Displaced osteochondral fracture of right patella, initial encounter for closed fracture +S82011B Displaced osteochondral fracture of right patella, initial encounter for open fracture type I or II +S82011C Displaced osteochondral fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82011D Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with routine healing +S82011E Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with routine healing +S82011F Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82011G Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with delayed healing +S82011H Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing +S82011J Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82011K Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with nonunion +S82011M Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with nonunion +S82011N Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82011P Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with malunion +S82011Q Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with malunion +S82011R Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82011S Displaced osteochondral fracture of right patella, sequela +S82012A Displaced osteochondral fracture of left patella, initial encounter for closed fracture +S82012B Displaced osteochondral fracture of left patella, initial encounter for open fracture type I or II +S82012C Displaced osteochondral fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82012D Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with routine healing +S82012E Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with routine healing +S82012F Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82012G Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with delayed healing +S82012H Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing +S82012J Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82012K Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with nonunion +S82012M Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with nonunion +S82012N Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82012P Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with malunion +S82012Q Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with malunion +S82012R Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82012S Displaced osteochondral fracture of left patella, sequela +S82013A Displaced osteochondral fracture of unspecified patella, initial encounter for closed fracture +S82013B Displaced osteochondral fracture of unspecified patella, initial encounter for open fracture type I or II +S82013C Displaced osteochondral fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82013D Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with routine healing +S82013E Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing +S82013F Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82013G Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing +S82013H Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing +S82013J Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82013K Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +S82013M Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion +S82013N Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82013P Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with malunion +S82013Q Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion +S82013R Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82013S Displaced osteochondral fracture of unspecified patella, sequela +S82014A Nondisplaced osteochondral fracture of right patella, initial encounter for closed fracture +S82014B Nondisplaced osteochondral fracture of right patella, initial encounter for open fracture type I or II +S82014C Nondisplaced osteochondral fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82014D Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with routine healing +S82014E Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with routine healing +S82014F Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82014G Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with delayed healing +S82014H Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing +S82014J Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82014K Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with nonunion +S82014M Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with nonunion +S82014N Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82014P Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with malunion +S82014Q Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with malunion +S82014R Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82014S Nondisplaced osteochondral fracture of right patella, sequela +S82015A Nondisplaced osteochondral fracture of left patella, initial encounter for closed fracture +S82015B Nondisplaced osteochondral fracture of left patella, initial encounter for open fracture type I or II +S82015C Nondisplaced osteochondral fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82015D Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with routine healing +S82015E Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with routine healing +S82015F Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82015G Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with delayed healing +S82015H Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing +S82015J Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82015K Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with nonunion +S82015M Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with nonunion +S82015N Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82015P Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with malunion +S82015Q Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with malunion +S82015R Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82015S Nondisplaced osteochondral fracture of left patella, sequela +S82016A Nondisplaced osteochondral fracture of unspecified patella, initial encounter for closed fracture +S82016B Nondisplaced osteochondral fracture of unspecified patella, initial encounter for open fracture type I or II +S82016C Nondisplaced osteochondral fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82016D Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with routine healing +S82016E Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing +S82016F Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82016G Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing +S82016H Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing +S82016J Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82016K Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +S82016M Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion +S82016N Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82016P Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with malunion +S82016Q Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion +S82016R Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82016S Nondisplaced osteochondral fracture of unspecified patella, sequela +S82021A Displaced longitudinal fracture of right patella, initial encounter for closed fracture +S82021B Displaced longitudinal fracture of right patella, initial encounter for open fracture type I or II +S82021C Displaced longitudinal fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82021D Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with routine healing +S82021E Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with routine healing +S82021F Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82021G Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with delayed healing +S82021H Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing +S82021J Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82021K Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with nonunion +S82021M Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with nonunion +S82021N Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82021P Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with malunion +S82021Q Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with malunion +S82021R Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82021S Displaced longitudinal fracture of right patella, sequela +S82022A Displaced longitudinal fracture of left patella, initial encounter for closed fracture +S82022B Displaced longitudinal fracture of left patella, initial encounter for open fracture type I or II +S82022C Displaced longitudinal fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82022D Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with routine healing +S82022E Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with routine healing +S82022F Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82022G Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with delayed healing +S82022H Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing +S82022J Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82022K Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with nonunion +S82022M Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with nonunion +S82022N Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82022P Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with malunion +S82022Q Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with malunion +S82022R Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82022S Displaced longitudinal fracture of left patella, sequela +S82023A Displaced longitudinal fracture of unspecified patella, initial encounter for closed fracture +S82023B Displaced longitudinal fracture of unspecified patella, initial encounter for open fracture type I or II +S82023C Displaced longitudinal fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82023D Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with routine healing +S82023E Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing +S82023F Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82023G Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing +S82023H Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing +S82023J Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82023K Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +S82023M Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion +S82023N Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82023P Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with malunion +S82023Q Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion +S82023R Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82023S Displaced longitudinal fracture of unspecified patella, sequela +S82024A Nondisplaced longitudinal fracture of right patella, initial encounter for closed fracture +S82024B Nondisplaced longitudinal fracture of right patella, initial encounter for open fracture type I or II +S82024C Nondisplaced longitudinal fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82024D Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with routine healing +S82024E Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with routine healing +S82024F Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82024G Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with delayed healing +S82024H Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing +S82024J Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82024K Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with nonunion +S82024M Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with nonunion +S82024N Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82024P Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with malunion +S82024Q Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with malunion +S82024R Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82024S Nondisplaced longitudinal fracture of right patella, sequela +S82025A Nondisplaced longitudinal fracture of left patella, initial encounter for closed fracture +S82025B Nondisplaced longitudinal fracture of left patella, initial encounter for open fracture type I or II +S82025C Nondisplaced longitudinal fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82025D Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with routine healing +S82025E Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with routine healing +S82025F Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82025G Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with delayed healing +S82025H Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing +S82025J Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82025K Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with nonunion +S82025M Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with nonunion +S82025N Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82025P Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with malunion +S82025Q Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with malunion +S82025R Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82025S Nondisplaced longitudinal fracture of left patella, sequela +S82026A Nondisplaced longitudinal fracture of unspecified patella, initial encounter for closed fracture +S82026B Nondisplaced longitudinal fracture of unspecified patella, initial encounter for open fracture type I or II +S82026C Nondisplaced longitudinal fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82026D Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with routine healing +S82026E Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing +S82026F Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82026G Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing +S82026H Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing +S82026J Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82026K Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +S82026M Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion +S82026N Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82026P Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with malunion +S82026Q Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion +S82026R Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82026S Nondisplaced longitudinal fracture of unspecified patella, sequela +S82031A Displaced transverse fracture of right patella, initial encounter for closed fracture +S82031B Displaced transverse fracture of right patella, initial encounter for open fracture type I or II +S82031C Displaced transverse fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82031D Displaced transverse fracture of right patella, subsequent encounter for closed fracture with routine healing +S82031E Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with routine healing +S82031F Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82031G Displaced transverse fracture of right patella, subsequent encounter for closed fracture with delayed healing +S82031H Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing +S82031J Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82031K Displaced transverse fracture of right patella, subsequent encounter for closed fracture with nonunion +S82031M Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with nonunion +S82031N Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82031P Displaced transverse fracture of right patella, subsequent encounter for closed fracture with malunion +S82031Q Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with malunion +S82031R Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82031S Displaced transverse fracture of right patella, sequela +S82032A Displaced transverse fracture of left patella, initial encounter for closed fracture +S82032B Displaced transverse fracture of left patella, initial encounter for open fracture type I or II +S82032C Displaced transverse fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82032D Displaced transverse fracture of left patella, subsequent encounter for closed fracture with routine healing +S82032E Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with routine healing +S82032F Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82032G Displaced transverse fracture of left patella, subsequent encounter for closed fracture with delayed healing +S82032H Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing +S82032J Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82032K Displaced transverse fracture of left patella, subsequent encounter for closed fracture with nonunion +S82032M Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with nonunion +S82032N Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82032P Displaced transverse fracture of left patella, subsequent encounter for closed fracture with malunion +S82032Q Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with malunion +S82032R Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82032S Displaced transverse fracture of left patella, sequela +S82033A Displaced transverse fracture of unspecified patella, initial encounter for closed fracture +S82033B Displaced transverse fracture of unspecified patella, initial encounter for open fracture type I or II +S82033C Displaced transverse fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82033D Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with routine healing +S82033E Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing +S82033F Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82033G Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing +S82033H Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing +S82033J Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82033K Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +S82033M Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion +S82033N Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82033P Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with malunion +S82033Q Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion +S82033R Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82033S Displaced transverse fracture of unspecified patella, sequela +S82034A Nondisplaced transverse fracture of right patella, initial encounter for closed fracture +S82034B Nondisplaced transverse fracture of right patella, initial encounter for open fracture type I or II +S82034C Nondisplaced transverse fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82034D Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with routine healing +S82034E Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with routine healing +S82034F Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82034G Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with delayed healing +S82034H Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing +S82034J Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82034K Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with nonunion +S82034M Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with nonunion +S82034N Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82034P Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with malunion +S82034Q Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with malunion +S82034R Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82034S Nondisplaced transverse fracture of right patella, sequela +S82035A Nondisplaced transverse fracture of left patella, initial encounter for closed fracture +S82035B Nondisplaced transverse fracture of left patella, initial encounter for open fracture type I or II +S82035C Nondisplaced transverse fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82035D Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with routine healing +S82035E Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with routine healing +S82035F Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82035G Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with delayed healing +S82035H Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing +S82035J Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82035K Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with nonunion +S82035M Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with nonunion +S82035N Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82035P Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with malunion +S82035Q Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with malunion +S82035R Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82035S Nondisplaced transverse fracture of left patella, sequela +S82036A Nondisplaced transverse fracture of unspecified patella, initial encounter for closed fracture +S82036B Nondisplaced transverse fracture of unspecified patella, initial encounter for open fracture type I or II +S82036C Nondisplaced transverse fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82036D Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with routine healing +S82036E Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing +S82036F Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82036G Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing +S82036H Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing +S82036J Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82036K Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +S82036M Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion +S82036N Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82036P Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with malunion +S82036Q Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion +S82036R Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82036S Nondisplaced transverse fracture of unspecified patella, sequela +S82041A Displaced comminuted fracture of right patella, initial encounter for closed fracture +S82041B Displaced comminuted fracture of right patella, initial encounter for open fracture type I or II +S82041C Displaced comminuted fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82041D Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with routine healing +S82041E Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with routine healing +S82041F Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82041G Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with delayed healing +S82041H Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing +S82041J Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82041K Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with nonunion +S82041M Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with nonunion +S82041N Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82041P Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with malunion +S82041Q Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with malunion +S82041R Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82041S Displaced comminuted fracture of right patella, sequela +S82042A Displaced comminuted fracture of left patella, initial encounter for closed fracture +S82042B Displaced comminuted fracture of left patella, initial encounter for open fracture type I or II +S82042C Displaced comminuted fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82042D Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with routine healing +S82042E Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with routine healing +S82042F Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82042G Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with delayed healing +S82042H Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing +S82042J Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82042K Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with nonunion +S82042M Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with nonunion +S82042N Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82042P Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with malunion +S82042Q Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with malunion +S82042R Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82042S Displaced comminuted fracture of left patella, sequela +S82043A Displaced comminuted fracture of unspecified patella, initial encounter for closed fracture +S82043B Displaced comminuted fracture of unspecified patella, initial encounter for open fracture type I or II +S82043C Displaced comminuted fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82043D Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with routine healing +S82043E Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing +S82043F Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82043G Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing +S82043H Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing +S82043J Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82043K Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +S82043M Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion +S82043N Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82043P Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with malunion +S82043Q Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion +S82043R Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82043S Displaced comminuted fracture of unspecified patella, sequela +S82044A Nondisplaced comminuted fracture of right patella, initial encounter for closed fracture +S82044B Nondisplaced comminuted fracture of right patella, initial encounter for open fracture type I or II +S82044C Nondisplaced comminuted fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82044D Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with routine healing +S82044E Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with routine healing +S82044F Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82044G Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with delayed healing +S82044H Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing +S82044J Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82044K Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with nonunion +S82044M Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with nonunion +S82044N Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82044P Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with malunion +S82044Q Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with malunion +S82044R Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82044S Nondisplaced comminuted fracture of right patella, sequela +S82045A Nondisplaced comminuted fracture of left patella, initial encounter for closed fracture +S82045B Nondisplaced comminuted fracture of left patella, initial encounter for open fracture type I or II +S82045C Nondisplaced comminuted fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82045D Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with routine healing +S82045E Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with routine healing +S82045F Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82045G Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with delayed healing +S82045H Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing +S82045J Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82045K Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with nonunion +S82045M Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with nonunion +S82045N Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82045P Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with malunion +S82045Q Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with malunion +S82045R Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82045S Nondisplaced comminuted fracture of left patella, sequela +S82046A Nondisplaced comminuted fracture of unspecified patella, initial encounter for closed fracture +S82046B Nondisplaced comminuted fracture of unspecified patella, initial encounter for open fracture type I or II +S82046C Nondisplaced comminuted fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82046D Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with routine healing +S82046E Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing +S82046F Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82046G Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing +S82046H Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing +S82046J Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82046K Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +S82046M Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion +S82046N Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82046P Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with malunion +S82046Q Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion +S82046R Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82046S Nondisplaced comminuted fracture of unspecified patella, sequela +S82091A Other fracture of right patella, initial encounter for closed fracture +S82091B Other fracture of right patella, initial encounter for open fracture type I or II +S82091C Other fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82091D Other fracture of right patella, subsequent encounter for closed fracture with routine healing +S82091E Other fracture of right patella, subsequent encounter for open fracture type I or II with routine healing +S82091F Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82091G Other fracture of right patella, subsequent encounter for closed fracture with delayed healing +S82091H Other fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing +S82091J Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82091K Other fracture of right patella, subsequent encounter for closed fracture with nonunion +S82091M Other fracture of right patella, subsequent encounter for open fracture type I or II with nonunion +S82091N Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82091P Other fracture of right patella, subsequent encounter for closed fracture with malunion +S82091Q Other fracture of right patella, subsequent encounter for open fracture type I or II with malunion +S82091R Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82091S Other fracture of right patella, sequela +S82092A Other fracture of left patella, initial encounter for closed fracture +S82092B Other fracture of left patella, initial encounter for open fracture type I or II +S82092C Other fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82092D Other fracture of left patella, subsequent encounter for closed fracture with routine healing +S82092E Other fracture of left patella, subsequent encounter for open fracture type I or II with routine healing +S82092F Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82092G Other fracture of left patella, subsequent encounter for closed fracture with delayed healing +S82092H Other fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing +S82092J Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82092K Other fracture of left patella, subsequent encounter for closed fracture with nonunion +S82092M Other fracture of left patella, subsequent encounter for open fracture type I or II with nonunion +S82092N Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82092P Other fracture of left patella, subsequent encounter for closed fracture with malunion +S82092Q Other fracture of left patella, subsequent encounter for open fracture type I or II with malunion +S82092R Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82092S Other fracture of left patella, sequela +S82099A Other fracture of unspecified patella, initial encounter for closed fracture +S82099B Other fracture of unspecified patella, initial encounter for open fracture type I or II +S82099C Other fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82099D Other fracture of unspecified patella, subsequent encounter for closed fracture with routine healing +S82099E Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing +S82099F Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82099G Other fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing +S82099H Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing +S82099J Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82099K Other fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +S82099M Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion +S82099N Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82099P Other fracture of unspecified patella, subsequent encounter for closed fracture with malunion +S82099Q Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion +S82099R Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82099S Other fracture of unspecified patella, sequela +S82101A Unspecified fracture of upper end of right tibia, initial encounter for closed fracture +S82101B Unspecified fracture of upper end of right tibia, initial encounter for open fracture type I or II +S82101C Unspecified fracture of upper end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82101D Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with routine healing +S82101E Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82101F Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82101G Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with delayed healing +S82101H Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82101J Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82101K Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with nonunion +S82101M Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82101N Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82101P Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with malunion +S82101Q Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with malunion +S82101R Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82101S Unspecified fracture of upper end of right tibia, sequela +S82102A Unspecified fracture of upper end of left tibia, initial encounter for closed fracture +S82102B Unspecified fracture of upper end of left tibia, initial encounter for open fracture type I or II +S82102C Unspecified fracture of upper end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82102D Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with routine healing +S82102E Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82102F Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82102G Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with delayed healing +S82102H Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82102J Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82102K Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with nonunion +S82102M Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82102N Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82102P Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with malunion +S82102Q Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with malunion +S82102R Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82102S Unspecified fracture of upper end of left tibia, sequela +S82109A Unspecified fracture of upper end of unspecified tibia, initial encounter for closed fracture +S82109B Unspecified fracture of upper end of unspecified tibia, initial encounter for open fracture type I or II +S82109C Unspecified fracture of upper end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82109D Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82109E Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82109F Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82109G Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82109H Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82109J Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82109K Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82109M Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82109N Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82109P Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with malunion +S82109Q Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82109R Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82109S Unspecified fracture of upper end of unspecified tibia, sequela +S82111A Displaced fracture of right tibial spine, initial encounter for closed fracture +S82111B Displaced fracture of right tibial spine, initial encounter for open fracture type I or II +S82111C Displaced fracture of right tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82111D Displaced fracture of right tibial spine, subsequent encounter for closed fracture with routine healing +S82111E Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with routine healing +S82111F Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82111G Displaced fracture of right tibial spine, subsequent encounter for closed fracture with delayed healing +S82111H Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with delayed healing +S82111J Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82111K Displaced fracture of right tibial spine, subsequent encounter for closed fracture with nonunion +S82111M Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with nonunion +S82111N Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82111P Displaced fracture of right tibial spine, subsequent encounter for closed fracture with malunion +S82111Q Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with malunion +S82111R Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82111S Displaced fracture of right tibial spine, sequela +S82112A Displaced fracture of left tibial spine, initial encounter for closed fracture +S82112B Displaced fracture of left tibial spine, initial encounter for open fracture type I or II +S82112C Displaced fracture of left tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82112D Displaced fracture of left tibial spine, subsequent encounter for closed fracture with routine healing +S82112E Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with routine healing +S82112F Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82112G Displaced fracture of left tibial spine, subsequent encounter for closed fracture with delayed healing +S82112H Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with delayed healing +S82112J Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82112K Displaced fracture of left tibial spine, subsequent encounter for closed fracture with nonunion +S82112M Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with nonunion +S82112N Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82112P Displaced fracture of left tibial spine, subsequent encounter for closed fracture with malunion +S82112Q Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with malunion +S82112R Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82112S Displaced fracture of left tibial spine, sequela +S82113A Displaced fracture of unspecified tibial spine, initial encounter for closed fracture +S82113B Displaced fracture of unspecified tibial spine, initial encounter for open fracture type I or II +S82113C Displaced fracture of unspecified tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82113D Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with routine healing +S82113E Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with routine healing +S82113F Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82113G Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with delayed healing +S82113H Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with delayed healing +S82113J Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82113K Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with nonunion +S82113M Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with nonunion +S82113N Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82113P Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with malunion +S82113Q Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with malunion +S82113R Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82113S Displaced fracture of unspecified tibial spine, sequela +S82114A Nondisplaced fracture of right tibial spine, initial encounter for closed fracture +S82114B Nondisplaced fracture of right tibial spine, initial encounter for open fracture type I or II +S82114C Nondisplaced fracture of right tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82114D Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with routine healing +S82114E Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with routine healing +S82114F Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82114G Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with delayed healing +S82114H Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with delayed healing +S82114J Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82114K Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with nonunion +S82114M Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with nonunion +S82114N Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82114P Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with malunion +S82114Q Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with malunion +S82114R Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82114S Nondisplaced fracture of right tibial spine, sequela +S82115A Nondisplaced fracture of left tibial spine, initial encounter for closed fracture +S82115B Nondisplaced fracture of left tibial spine, initial encounter for open fracture type I or II +S82115C Nondisplaced fracture of left tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82115D Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with routine healing +S82115E Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with routine healing +S82115F Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82115G Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with delayed healing +S82115H Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with delayed healing +S82115J Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82115K Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with nonunion +S82115M Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with nonunion +S82115N Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82115P Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with malunion +S82115Q Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with malunion +S82115R Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82115S Nondisplaced fracture of left tibial spine, sequela +S82116A Nondisplaced fracture of unspecified tibial spine, initial encounter for closed fracture +S82116B Nondisplaced fracture of unspecified tibial spine, initial encounter for open fracture type I or II +S82116C Nondisplaced fracture of unspecified tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82116D Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with routine healing +S82116E Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with routine healing +S82116F Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82116G Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with delayed healing +S82116H Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with delayed healing +S82116J Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82116K Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with nonunion +S82116M Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with nonunion +S82116N Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82116P Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with malunion +S82116Q Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with malunion +S82116R Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82116S Nondisplaced fracture of unspecified tibial spine, sequela +S82121A Displaced fracture of lateral condyle of right tibia, initial encounter for closed fracture +S82121B Displaced fracture of lateral condyle of right tibia, initial encounter for open fracture type I or II +S82121C Displaced fracture of lateral condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82121D Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with routine healing +S82121E Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82121F Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82121G Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with delayed healing +S82121H Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82121J Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82121K Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with nonunion +S82121M Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82121N Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82121P Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with malunion +S82121Q Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with malunion +S82121R Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82121S Displaced fracture of lateral condyle of right tibia, sequela +S82122A Displaced fracture of lateral condyle of left tibia, initial encounter for closed fracture +S82122B Displaced fracture of lateral condyle of left tibia, initial encounter for open fracture type I or II +S82122C Displaced fracture of lateral condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82122D Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with routine healing +S82122E Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82122F Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82122G Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with delayed healing +S82122H Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82122J Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82122K Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with nonunion +S82122M Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82122N Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82122P Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with malunion +S82122Q Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with malunion +S82122R Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82122S Displaced fracture of lateral condyle of left tibia, sequela +S82123A Displaced fracture of lateral condyle of unspecified tibia, initial encounter for closed fracture +S82123B Displaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type I or II +S82123C Displaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82123D Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82123E Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82123F Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82123G Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82123H Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82123J Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82123K Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82123M Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82123N Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82123P Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with malunion +S82123Q Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82123R Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82123S Displaced fracture of lateral condyle of unspecified tibia, sequela +S82124A Nondisplaced fracture of lateral condyle of right tibia, initial encounter for closed fracture +S82124B Nondisplaced fracture of lateral condyle of right tibia, initial encounter for open fracture type I or II +S82124C Nondisplaced fracture of lateral condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82124D Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with routine healing +S82124E Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82124F Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82124G Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with delayed healing +S82124H Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82124J Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82124K Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with nonunion +S82124M Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82124N Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82124P Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with malunion +S82124Q Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with malunion +S82124R Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82124S Nondisplaced fracture of lateral condyle of right tibia, sequela +S82125A Nondisplaced fracture of lateral condyle of left tibia, initial encounter for closed fracture +S82125B Nondisplaced fracture of lateral condyle of left tibia, initial encounter for open fracture type I or II +S82125C Nondisplaced fracture of lateral condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82125D Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with routine healing +S82125E Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82125F Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82125G Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with delayed healing +S82125H Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82125J Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82125K Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with nonunion +S82125M Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82125N Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82125P Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with malunion +S82125Q Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with malunion +S82125R Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82125S Nondisplaced fracture of lateral condyle of left tibia, sequela +S82126A Nondisplaced fracture of lateral condyle of unspecified tibia, initial encounter for closed fracture +S82126B Nondisplaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type I or II +S82126C Nondisplaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82126D Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82126E Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82126F Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82126G Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82126H Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82126J Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82126K Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82126M Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82126N Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82126P Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with malunion +S82126Q Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82126R Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82126S Nondisplaced fracture of lateral condyle of unspecified tibia, sequela +S82131A Displaced fracture of medial condyle of right tibia, initial encounter for closed fracture +S82131B Displaced fracture of medial condyle of right tibia, initial encounter for open fracture type I or II +S82131C Displaced fracture of medial condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82131D Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with routine healing +S82131E Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82131F Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82131G Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with delayed healing +S82131H Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82131J Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82131K Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with nonunion +S82131M Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82131N Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82131P Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with malunion +S82131Q Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with malunion +S82131R Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82131S Displaced fracture of medial condyle of right tibia, sequela +S82132A Displaced fracture of medial condyle of left tibia, initial encounter for closed fracture +S82132B Displaced fracture of medial condyle of left tibia, initial encounter for open fracture type I or II +S82132C Displaced fracture of medial condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82132D Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with routine healing +S82132E Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82132F Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82132G Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with delayed healing +S82132H Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82132J Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82132K Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with nonunion +S82132M Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82132N Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82132P Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with malunion +S82132Q Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with malunion +S82132R Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82132S Displaced fracture of medial condyle of left tibia, sequela +S82133A Displaced fracture of medial condyle of unspecified tibia, initial encounter for closed fracture +S82133B Displaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type I or II +S82133C Displaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82133D Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82133E Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82133F Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82133G Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82133H Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82133J Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82133K Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82133M Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82133N Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82133P Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with malunion +S82133Q Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82133R Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82133S Displaced fracture of medial condyle of unspecified tibia, sequela +S82134A Nondisplaced fracture of medial condyle of right tibia, initial encounter for closed fracture +S82134B Nondisplaced fracture of medial condyle of right tibia, initial encounter for open fracture type I or II +S82134C Nondisplaced fracture of medial condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82134D Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with routine healing +S82134E Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82134F Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82134G Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with delayed healing +S82134H Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82134J Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82134K Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with nonunion +S82134M Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82134N Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82134P Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with malunion +S82134Q Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with malunion +S82134R Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82134S Nondisplaced fracture of medial condyle of right tibia, sequela +S82135A Nondisplaced fracture of medial condyle of left tibia, initial encounter for closed fracture +S82135B Nondisplaced fracture of medial condyle of left tibia, initial encounter for open fracture type I or II +S82135C Nondisplaced fracture of medial condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82135D Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with routine healing +S82135E Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82135F Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82135G Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with delayed healing +S82135H Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82135J Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82135K Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with nonunion +S82135M Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82135N Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82135P Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with malunion +S82135Q Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with malunion +S82135R Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82135S Nondisplaced fracture of medial condyle of left tibia, sequela +S82136A Nondisplaced fracture of medial condyle of unspecified tibia, initial encounter for closed fracture +S82136B Nondisplaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type I or II +S82136C Nondisplaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82136D Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82136E Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82136F Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82136G Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82136H Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82136J Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82136K Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82136M Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82136N Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82136P Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with malunion +S82136Q Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82136R Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82136S Nondisplaced fracture of medial condyle of unspecified tibia, sequela +S82141A Displaced bicondylar fracture of right tibia, initial encounter for closed fracture +S82141B Displaced bicondylar fracture of right tibia, initial encounter for open fracture type I or II +S82141C Displaced bicondylar fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82141D Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with routine healing +S82141E Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82141F Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82141G Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with delayed healing +S82141H Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82141J Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82141K Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with nonunion +S82141M Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82141N Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82141P Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with malunion +S82141Q Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with malunion +S82141R Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82141S Displaced bicondylar fracture of right tibia, sequela +S82142A Displaced bicondylar fracture of left tibia, initial encounter for closed fracture +S82142B Displaced bicondylar fracture of left tibia, initial encounter for open fracture type I or II +S82142C Displaced bicondylar fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82142D Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with routine healing +S82142E Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82142F Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82142G Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with delayed healing +S82142H Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82142J Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82142K Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with nonunion +S82142M Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82142N Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82142P Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with malunion +S82142Q Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with malunion +S82142R Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82142S Displaced bicondylar fracture of left tibia, sequela +S82143A Displaced bicondylar fracture of unspecified tibia, initial encounter for closed fracture +S82143B Displaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type I or II +S82143C Displaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82143D Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82143E Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82143F Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82143G Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82143H Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82143J Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82143K Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82143M Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82143N Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82143P Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with malunion +S82143Q Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82143R Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82143S Displaced bicondylar fracture of unspecified tibia, sequela +S82144A Nondisplaced bicondylar fracture of right tibia, initial encounter for closed fracture +S82144B Nondisplaced bicondylar fracture of right tibia, initial encounter for open fracture type I or II +S82144C Nondisplaced bicondylar fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82144D Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with routine healing +S82144E Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82144F Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82144G Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with delayed healing +S82144H Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82144J Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82144K Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with nonunion +S82144M Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82144N Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82144P Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with malunion +S82144Q Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with malunion +S82144R Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82144S Nondisplaced bicondylar fracture of right tibia, sequela +S82145A Nondisplaced bicondylar fracture of left tibia, initial encounter for closed fracture +S82145B Nondisplaced bicondylar fracture of left tibia, initial encounter for open fracture type I or II +S82145C Nondisplaced bicondylar fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82145D Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with routine healing +S82145E Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82145F Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82145G Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with delayed healing +S82145H Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82145J Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82145K Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with nonunion +S82145M Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82145N Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82145P Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with malunion +S82145Q Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with malunion +S82145R Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82145S Nondisplaced bicondylar fracture of left tibia, sequela +S82146A Nondisplaced bicondylar fracture of unspecified tibia, initial encounter for closed fracture +S82146B Nondisplaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type I or II +S82146C Nondisplaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82146D Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82146E Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82146F Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82146G Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82146H Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82146J Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82146K Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82146M Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82146N Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82146P Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with malunion +S82146Q Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82146R Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82146S Nondisplaced bicondylar fracture of unspecified tibia, sequela +S82151A Displaced fracture of right tibial tuberosity, initial encounter for closed fracture +S82151B Displaced fracture of right tibial tuberosity, initial encounter for open fracture type I or II +S82151C Displaced fracture of right tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82151D Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with routine healing +S82151E Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing +S82151F Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82151G Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with delayed healing +S82151H Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing +S82151J Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82151K Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with nonunion +S82151M Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion +S82151N Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82151P Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with malunion +S82151Q Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with malunion +S82151R Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82151S Displaced fracture of right tibial tuberosity, sequela +S82152A Displaced fracture of left tibial tuberosity, initial encounter for closed fracture +S82152B Displaced fracture of left tibial tuberosity, initial encounter for open fracture type I or II +S82152C Displaced fracture of left tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82152D Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with routine healing +S82152E Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing +S82152F Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82152G Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with delayed healing +S82152H Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing +S82152J Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82152K Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with nonunion +S82152M Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion +S82152N Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82152P Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with malunion +S82152Q Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with malunion +S82152R Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82152S Displaced fracture of left tibial tuberosity, sequela +S82153A Displaced fracture of unspecified tibial tuberosity, initial encounter for closed fracture +S82153B Displaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type I or II +S82153C Displaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82153D Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with routine healing +S82153E Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing +S82153F Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82153G Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with delayed healing +S82153H Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing +S82153J Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82153K Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with nonunion +S82153M Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion +S82153N Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82153P Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with malunion +S82153Q Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with malunion +S82153R Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82153S Displaced fracture of unspecified tibial tuberosity, sequela +S82154A Nondisplaced fracture of right tibial tuberosity, initial encounter for closed fracture +S82154B Nondisplaced fracture of right tibial tuberosity, initial encounter for open fracture type I or II +S82154C Nondisplaced fracture of right tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82154D Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with routine healing +S82154E Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing +S82154F Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82154G Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with delayed healing +S82154H Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing +S82154J Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82154K Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with nonunion +S82154M Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion +S82154N Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82154P Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with malunion +S82154Q Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with malunion +S82154R Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82154S Nondisplaced fracture of right tibial tuberosity, sequela +S82155A Nondisplaced fracture of left tibial tuberosity, initial encounter for closed fracture +S82155B Nondisplaced fracture of left tibial tuberosity, initial encounter for open fracture type I or II +S82155C Nondisplaced fracture of left tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82155D Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with routine healing +S82155E Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing +S82155F Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82155G Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with delayed healing +S82155H Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing +S82155J Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82155K Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with nonunion +S82155M Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion +S82155N Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82155P Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with malunion +S82155Q Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with malunion +S82155R Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82155S Nondisplaced fracture of left tibial tuberosity, sequela +S82156A Nondisplaced fracture of unspecified tibial tuberosity, initial encounter for closed fracture +S82156B Nondisplaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type I or II +S82156C Nondisplaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82156D Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with routine healing +S82156E Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing +S82156F Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82156G Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with delayed healing +S82156H Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing +S82156J Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82156K Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with nonunion +S82156M Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion +S82156N Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82156P Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with malunion +S82156Q Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with malunion +S82156R Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82156S Nondisplaced fracture of unspecified tibial tuberosity, sequela +S82161A Torus fracture of upper end of right tibia, initial encounter for closed fracture +S82161D Torus fracture of upper end of right tibia, subsequent encounter for fracture with routine healing +S82161G Torus fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing +S82161K Torus fracture of upper end of right tibia, subsequent encounter for fracture with nonunion +S82161P Torus fracture of upper end of right tibia, subsequent encounter for fracture with malunion +S82161S Torus fracture of upper end of right tibia, sequela +S82162A Torus fracture of upper end of left tibia, initial encounter for closed fracture +S82162D Torus fracture of upper end of left tibia, subsequent encounter for fracture with routine healing +S82162G Torus fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing +S82162K Torus fracture of upper end of left tibia, subsequent encounter for fracture with nonunion +S82162P Torus fracture of upper end of left tibia, subsequent encounter for fracture with malunion +S82162S Torus fracture of upper end of left tibia, sequela +S82169A Torus fracture of upper end of unspecified tibia, initial encounter for closed fracture +S82169D Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing +S82169G Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing +S82169K Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion +S82169P Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion +S82169S Torus fracture of upper end of unspecified tibia, sequela +S82191A Other fracture of upper end of right tibia, initial encounter for closed fracture +S82191B Other fracture of upper end of right tibia, initial encounter for open fracture type I or II +S82191C Other fracture of upper end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82191D Other fracture of upper end of right tibia, subsequent encounter for closed fracture with routine healing +S82191E Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82191F Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82191G Other fracture of upper end of right tibia, subsequent encounter for closed fracture with delayed healing +S82191H Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82191J Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82191K Other fracture of upper end of right tibia, subsequent encounter for closed fracture with nonunion +S82191M Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82191N Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82191P Other fracture of upper end of right tibia, subsequent encounter for closed fracture with malunion +S82191Q Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with malunion +S82191R Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82191S Other fracture of upper end of right tibia, sequela +S82192A Other fracture of upper end of left tibia, initial encounter for closed fracture +S82192B Other fracture of upper end of left tibia, initial encounter for open fracture type I or II +S82192C Other fracture of upper end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82192D Other fracture of upper end of left tibia, subsequent encounter for closed fracture with routine healing +S82192E Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82192F Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82192G Other fracture of upper end of left tibia, subsequent encounter for closed fracture with delayed healing +S82192H Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82192J Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82192K Other fracture of upper end of left tibia, subsequent encounter for closed fracture with nonunion +S82192M Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82192N Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82192P Other fracture of upper end of left tibia, subsequent encounter for closed fracture with malunion +S82192Q Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with malunion +S82192R Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82192S Other fracture of upper end of left tibia, sequela +S82199A Other fracture of upper end of unspecified tibia, initial encounter for closed fracture +S82199B Other fracture of upper end of unspecified tibia, initial encounter for open fracture type I or II +S82199C Other fracture of upper end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82199D Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82199E Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82199F Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82199G Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82199H Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82199J Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82199K Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82199M Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82199N Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82199P Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with malunion +S82199Q Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82199R Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82199S Other fracture of upper end of unspecified tibia, sequela +S82201A Unspecified fracture of shaft of right tibia, initial encounter for closed fracture +S82201B Unspecified fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82201C Unspecified fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82201D Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82201E Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82201F Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82201G Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82201H Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82201J Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82201K Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82201M Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82201N Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82201P Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82201Q Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82201R Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82201S Unspecified fracture of shaft of right tibia, sequela +S82202A Unspecified fracture of shaft of left tibia, initial encounter for closed fracture +S82202B Unspecified fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82202C Unspecified fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82202D Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82202E Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82202F Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82202G Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82202H Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82202J Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82202K Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82202M Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82202N Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82202P Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82202Q Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82202R Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82202S Unspecified fracture of shaft of left tibia, sequela +S82209A Unspecified fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82209B Unspecified fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82209C Unspecified fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82209D Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82209E Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82209F Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82209G Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82209H Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82209J Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82209K Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82209M Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82209N Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82209P Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82209Q Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82209R Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82209S Unspecified fracture of shaft of unspecified tibia, sequela +S82221A Displaced transverse fracture of shaft of right tibia, initial encounter for closed fracture +S82221B Displaced transverse fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82221C Displaced transverse fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82221D Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82221E Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82221F Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82221G Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82221H Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82221J Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82221K Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82221M Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82221N Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82221P Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82221Q Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82221R Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82221S Displaced transverse fracture of shaft of right tibia, sequela +S82222A Displaced transverse fracture of shaft of left tibia, initial encounter for closed fracture +S82222B Displaced transverse fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82222C Displaced transverse fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82222D Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82222E Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82222F Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82222G Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82222H Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82222J Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82222K Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82222M Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82222N Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82222P Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82222Q Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82222R Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82222S Displaced transverse fracture of shaft of left tibia, sequela +S82223A Displaced transverse fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82223B Displaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82223C Displaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82223D Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82223E Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82223F Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82223G Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82223H Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82223J Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82223K Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82223M Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82223N Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82223P Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82223Q Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82223R Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82223S Displaced transverse fracture of shaft of unspecified tibia, sequela +S82224A Nondisplaced transverse fracture of shaft of right tibia, initial encounter for closed fracture +S82224B Nondisplaced transverse fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82224C Nondisplaced transverse fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82224D Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82224E Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82224F Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82224G Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82224H Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82224J Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82224K Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82224M Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82224N Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82224P Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82224Q Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82224R Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82224S Nondisplaced transverse fracture of shaft of right tibia, sequela +S82225A Nondisplaced transverse fracture of shaft of left tibia, initial encounter for closed fracture +S82225B Nondisplaced transverse fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82225C Nondisplaced transverse fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82225D Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82225E Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82225F Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82225G Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82225H Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82225J Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82225K Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82225M Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82225N Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82225P Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82225Q Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82225R Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82225S Nondisplaced transverse fracture of shaft of left tibia, sequela +S82226A Nondisplaced transverse fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82226B Nondisplaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82226C Nondisplaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82226D Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82226E Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82226F Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82226G Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82226H Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82226J Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82226K Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82226M Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82226N Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82226P Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82226Q Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82226R Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82226S Nondisplaced transverse fracture of shaft of unspecified tibia, sequela +S82231A Displaced oblique fracture of shaft of right tibia, initial encounter for closed fracture +S82231B Displaced oblique fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82231C Displaced oblique fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82231D Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82231E Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82231F Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82231G Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82231H Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82231J Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82231K Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82231M Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82231N Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82231P Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82231Q Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82231R Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82231S Displaced oblique fracture of shaft of right tibia, sequela +S82232A Displaced oblique fracture of shaft of left tibia, initial encounter for closed fracture +S82232B Displaced oblique fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82232C Displaced oblique fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82232D Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82232E Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82232F Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82232G Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82232H Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82232J Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82232K Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82232M Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82232N Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82232P Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82232Q Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82232R Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82232S Displaced oblique fracture of shaft of left tibia, sequela +S82233A Displaced oblique fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82233B Displaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82233C Displaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82233D Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82233E Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82233F Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82233G Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82233H Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82233J Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82233K Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82233M Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82233N Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82233P Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82233Q Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82233R Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82233S Displaced oblique fracture of shaft of unspecified tibia, sequela +S82234A Nondisplaced oblique fracture of shaft of right tibia, initial encounter for closed fracture +S82234B Nondisplaced oblique fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82234C Nondisplaced oblique fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82234D Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82234E Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82234F Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82234G Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82234H Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82234J Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82234K Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82234M Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82234N Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82234P Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82234Q Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82234R Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82234S Nondisplaced oblique fracture of shaft of right tibia, sequela +S82235A Nondisplaced oblique fracture of shaft of left tibia, initial encounter for closed fracture +S82235B Nondisplaced oblique fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82235C Nondisplaced oblique fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82235D Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82235E Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82235F Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82235G Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82235H Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82235J Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82235K Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82235M Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82235N Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82235P Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82235Q Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82235R Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82235S Nondisplaced oblique fracture of shaft of left tibia, sequela +S82236A Nondisplaced oblique fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82236B Nondisplaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82236C Nondisplaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82236D Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82236E Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82236F Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82236G Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82236H Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82236J Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82236K Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82236M Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82236N Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82236P Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82236Q Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82236R Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82236S Nondisplaced oblique fracture of shaft of unspecified tibia, sequela +S82241A Displaced spiral fracture of shaft of right tibia, initial encounter for closed fracture +S82241B Displaced spiral fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82241C Displaced spiral fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82241D Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82241E Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82241F Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82241G Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82241H Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82241J Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82241K Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82241M Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82241N Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82241P Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82241Q Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82241R Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82241S Displaced spiral fracture of shaft of right tibia, sequela +S82242A Displaced spiral fracture of shaft of left tibia, initial encounter for closed fracture +S82242B Displaced spiral fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82242C Displaced spiral fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82242D Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82242E Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82242F Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82242G Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82242H Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82242J Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82242K Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82242M Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82242N Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82242P Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82242Q Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82242R Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82242S Displaced spiral fracture of shaft of left tibia, sequela +S82243A Displaced spiral fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82243B Displaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82243C Displaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82243D Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82243E Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82243F Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82243G Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82243H Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82243J Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82243K Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82243M Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82243N Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82243P Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82243Q Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82243R Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82243S Displaced spiral fracture of shaft of unspecified tibia, sequela +S82244A Nondisplaced spiral fracture of shaft of right tibia, initial encounter for closed fracture +S82244B Nondisplaced spiral fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82244C Nondisplaced spiral fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82244D Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82244E Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82244F Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82244G Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82244H Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82244J Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82244K Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82244M Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82244N Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82244P Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82244Q Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82244R Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82244S Nondisplaced spiral fracture of shaft of right tibia, sequela +S82245A Nondisplaced spiral fracture of shaft of left tibia, initial encounter for closed fracture +S82245B Nondisplaced spiral fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82245C Nondisplaced spiral fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82245D Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82245E Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82245F Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82245G Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82245H Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82245J Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82245K Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82245M Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82245N Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82245P Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82245Q Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82245R Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82245S Nondisplaced spiral fracture of shaft of left tibia, sequela +S82246A Nondisplaced spiral fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82246B Nondisplaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82246C Nondisplaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82246D Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82246E Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82246F Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82246G Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82246H Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82246J Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82246K Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82246M Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82246N Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82246P Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82246Q Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82246R Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82246S Nondisplaced spiral fracture of shaft of unspecified tibia, sequela +S82251A Displaced comminuted fracture of shaft of right tibia, initial encounter for closed fracture +S82251B Displaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82251C Displaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82251D Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82251E Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82251F Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82251G Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82251H Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82251J Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82251K Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82251M Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82251N Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82251P Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82251Q Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82251R Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82251S Displaced comminuted fracture of shaft of right tibia, sequela +S82252A Displaced comminuted fracture of shaft of left tibia, initial encounter for closed fracture +S82252B Displaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82252C Displaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82252D Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82252E Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82252F Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82252G Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82252H Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82252J Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82252K Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82252M Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82252N Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82252P Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82252Q Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82252R Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82252S Displaced comminuted fracture of shaft of left tibia, sequela +S82253A Displaced comminuted fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82253B Displaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82253C Displaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82253D Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82253E Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82253F Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82253G Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82253H Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82253J Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82253K Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82253M Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82253N Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82253P Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82253Q Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82253R Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82253S Displaced comminuted fracture of shaft of unspecified tibia, sequela +S82254A Nondisplaced comminuted fracture of shaft of right tibia, initial encounter for closed fracture +S82254B Nondisplaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82254C Nondisplaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82254D Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82254E Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82254F Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82254G Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82254H Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82254J Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82254K Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82254M Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82254N Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82254P Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82254Q Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82254R Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82254S Nondisplaced comminuted fracture of shaft of right tibia, sequela +S82255A Nondisplaced comminuted fracture of shaft of left tibia, initial encounter for closed fracture +S82255B Nondisplaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82255C Nondisplaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82255D Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82255E Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82255F Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82255G Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82255H Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82255J Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82255K Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82255M Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82255N Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82255P Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82255Q Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82255R Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82255S Nondisplaced comminuted fracture of shaft of left tibia, sequela +S82256A Nondisplaced comminuted fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82256B Nondisplaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82256C Nondisplaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82256D Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82256E Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82256F Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82256G Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82256H Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82256J Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82256K Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82256M Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82256N Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82256P Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82256Q Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82256R Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82256S Nondisplaced comminuted fracture of shaft of unspecified tibia, sequela +S82261A Displaced segmental fracture of shaft of right tibia, initial encounter for closed fracture +S82261B Displaced segmental fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82261C Displaced segmental fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82261D Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82261E Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82261F Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82261G Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82261H Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82261J Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82261K Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82261M Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82261N Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82261P Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82261Q Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82261R Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82261S Displaced segmental fracture of shaft of right tibia, sequela +S82262A Displaced segmental fracture of shaft of left tibia, initial encounter for closed fracture +S82262B Displaced segmental fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82262C Displaced segmental fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82262D Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82262E Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82262F Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82262G Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82262H Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82262J Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82262K Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82262M Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82262N Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82262P Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82262Q Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82262R Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82262S Displaced segmental fracture of shaft of left tibia, sequela +S82263A Displaced segmental fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82263B Displaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82263C Displaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82263D Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82263E Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82263F Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82263G Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82263H Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82263J Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82263K Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82263M Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82263N Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82263P Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82263Q Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82263R Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82263S Displaced segmental fracture of shaft of unspecified tibia, sequela +S82264A Nondisplaced segmental fracture of shaft of right tibia, initial encounter for closed fracture +S82264B Nondisplaced segmental fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82264C Nondisplaced segmental fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82264D Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82264E Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82264F Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82264G Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82264H Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82264J Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82264K Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82264M Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82264N Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82264P Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82264Q Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82264R Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82264S Nondisplaced segmental fracture of shaft of right tibia, sequela +S82265A Nondisplaced segmental fracture of shaft of left tibia, initial encounter for closed fracture +S82265B Nondisplaced segmental fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82265C Nondisplaced segmental fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82265D Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82265E Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82265F Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82265G Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82265H Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82265J Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82265K Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82265M Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82265N Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82265P Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82265Q Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82265R Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82265S Nondisplaced segmental fracture of shaft of left tibia, sequela +S82266A Nondisplaced segmental fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82266B Nondisplaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82266C Nondisplaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82266D Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82266E Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82266F Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82266G Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82266H Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82266J Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82266K Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82266M Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82266N Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82266P Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82266Q Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82266R Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82266S Nondisplaced segmental fracture of shaft of unspecified tibia, sequela +S82291A Other fracture of shaft of right tibia, initial encounter for closed fracture +S82291B Other fracture of shaft of right tibia, initial encounter for open fracture type I or II +S82291C Other fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82291D Other fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing +S82291E Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82291F Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82291G Other fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing +S82291H Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82291J Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82291K Other fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +S82291M Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82291N Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82291P Other fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +S82291Q Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion +S82291R Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82291S Other fracture of shaft of right tibia, sequela +S82292A Other fracture of shaft of left tibia, initial encounter for closed fracture +S82292B Other fracture of shaft of left tibia, initial encounter for open fracture type I or II +S82292C Other fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82292D Other fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +S82292E Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82292F Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82292G Other fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +S82292H Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82292J Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82292K Other fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +S82292M Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82292N Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82292P Other fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +S82292Q Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion +S82292R Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82292S Other fracture of shaft of left tibia, sequela +S82299A Other fracture of shaft of unspecified tibia, initial encounter for closed fracture +S82299B Other fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +S82299C Other fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82299D Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82299E Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82299F Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82299G Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82299H Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82299J Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82299K Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82299M Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82299N Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82299P Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +S82299Q Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82299R Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82299S Other fracture of shaft of unspecified tibia, sequela +S82301A Unspecified fracture of lower end of right tibia, initial encounter for closed fracture +S82301B Unspecified fracture of lower end of right tibia, initial encounter for open fracture type I or II +S82301C Unspecified fracture of lower end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82301D Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with routine healing +S82301E Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82301F Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82301G Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with delayed healing +S82301H Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82301J Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82301K Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with nonunion +S82301M Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82301N Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82301P Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with malunion +S82301Q Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with malunion +S82301R Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82301S Unspecified fracture of lower end of right tibia, sequela +S82302A Unspecified fracture of lower end of left tibia, initial encounter for closed fracture +S82302B Unspecified fracture of lower end of left tibia, initial encounter for open fracture type I or II +S82302C Unspecified fracture of lower end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82302D Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with routine healing +S82302E Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82302F Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82302G Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with delayed healing +S82302H Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82302J Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82302K Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with nonunion +S82302M Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82302N Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82302P Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with malunion +S82302Q Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with malunion +S82302R Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82302S Unspecified fracture of lower end of left tibia, sequela +S82309A Unspecified fracture of lower end of unspecified tibia, initial encounter for closed fracture +S82309B Unspecified fracture of lower end of unspecified tibia, initial encounter for open fracture type I or II +S82309C Unspecified fracture of lower end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82309D Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82309E Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82309F Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82309G Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82309H Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82309J Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82309K Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82309M Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82309N Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82309P Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with malunion +S82309Q Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82309R Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82309S Unspecified fracture of lower end of unspecified tibia, sequela +S82311A Torus fracture of lower end of right tibia, initial encounter for closed fracture +S82311D Torus fracture of lower end of right tibia, subsequent encounter for fracture with routine healing +S82311G Torus fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing +S82311K Torus fracture of lower end of right tibia, subsequent encounter for fracture with nonunion +S82311P Torus fracture of lower end of right tibia, subsequent encounter for fracture with malunion +S82311S Torus fracture of lower end of right tibia, sequela +S82312A Torus fracture of lower end of left tibia, initial encounter for closed fracture +S82312D Torus fracture of lower end of left tibia, subsequent encounter for fracture with routine healing +S82312G Torus fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing +S82312K Torus fracture of lower end of left tibia, subsequent encounter for fracture with nonunion +S82312P Torus fracture of lower end of left tibia, subsequent encounter for fracture with malunion +S82312S Torus fracture of lower end of left tibia, sequela +S82319A Torus fracture of lower end of unspecified tibia, initial encounter for closed fracture +S82319D Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing +S82319G Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing +S82319K Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion +S82319P Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion +S82319S Torus fracture of lower end of unspecified tibia, sequela +S82391A Other fracture of lower end of right tibia, initial encounter for closed fracture +S82391B Other fracture of lower end of right tibia, initial encounter for open fracture type I or II +S82391C Other fracture of lower end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82391D Other fracture of lower end of right tibia, subsequent encounter for closed fracture with routine healing +S82391E Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82391F Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82391G Other fracture of lower end of right tibia, subsequent encounter for closed fracture with delayed healing +S82391H Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82391J Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82391K Other fracture of lower end of right tibia, subsequent encounter for closed fracture with nonunion +S82391M Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82391N Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82391P Other fracture of lower end of right tibia, subsequent encounter for closed fracture with malunion +S82391Q Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with malunion +S82391R Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82391S Other fracture of lower end of right tibia, sequela +S82392A Other fracture of lower end of left tibia, initial encounter for closed fracture +S82392B Other fracture of lower end of left tibia, initial encounter for open fracture type I or II +S82392C Other fracture of lower end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82392D Other fracture of lower end of left tibia, subsequent encounter for closed fracture with routine healing +S82392E Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82392F Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82392G Other fracture of lower end of left tibia, subsequent encounter for closed fracture with delayed healing +S82392H Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82392J Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82392K Other fracture of lower end of left tibia, subsequent encounter for closed fracture with nonunion +S82392M Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82392N Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82392P Other fracture of lower end of left tibia, subsequent encounter for closed fracture with malunion +S82392Q Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with malunion +S82392R Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82392S Other fracture of lower end of left tibia, sequela +S82399A Other fracture of lower end of unspecified tibia, initial encounter for closed fracture +S82399B Other fracture of lower end of unspecified tibia, initial encounter for open fracture type I or II +S82399C Other fracture of lower end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82399D Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82399E Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82399F Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82399G Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82399H Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82399J Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82399K Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82399M Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82399N Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82399P Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with malunion +S82399Q Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82399R Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82399S Other fracture of lower end of unspecified tibia, sequela +S82401A Unspecified fracture of shaft of right fibula, initial encounter for closed fracture +S82401B Unspecified fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82401C Unspecified fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82401D Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82401E Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82401F Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82401G Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82401H Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82401J Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82401K Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82401M Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82401N Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82401P Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82401Q Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82401R Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82401S Unspecified fracture of shaft of right fibula, sequela +S82402A Unspecified fracture of shaft of left fibula, initial encounter for closed fracture +S82402B Unspecified fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82402C Unspecified fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82402D Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82402E Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82402F Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82402G Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82402H Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82402J Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82402K Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82402M Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82402N Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82402P Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82402Q Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82402R Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82402S Unspecified fracture of shaft of left fibula, sequela +S82409A Unspecified fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82409B Unspecified fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82409C Unspecified fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82409D Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82409E Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82409F Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82409G Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82409H Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82409J Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82409K Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82409M Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82409N Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82409P Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82409Q Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82409R Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82409S Unspecified fracture of shaft of unspecified fibula, sequela +S82421A Displaced transverse fracture of shaft of right fibula, initial encounter for closed fracture +S82421B Displaced transverse fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82421C Displaced transverse fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82421D Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82421E Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82421F Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82421G Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82421H Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82421J Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82421K Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82421M Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82421N Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82421P Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82421Q Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82421R Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82421S Displaced transverse fracture of shaft of right fibula, sequela +S82422A Displaced transverse fracture of shaft of left fibula, initial encounter for closed fracture +S82422B Displaced transverse fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82422C Displaced transverse fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82422D Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82422E Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82422F Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82422G Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82422H Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82422J Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82422K Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82422M Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82422N Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82422P Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82422Q Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82422R Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82422S Displaced transverse fracture of shaft of left fibula, sequela +S82423A Displaced transverse fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82423B Displaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82423C Displaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82423D Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82423E Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82423F Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82423G Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82423H Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82423J Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82423K Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82423M Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82423N Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82423P Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82423Q Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82423R Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82423S Displaced transverse fracture of shaft of unspecified fibula, sequela +S82424A Nondisplaced transverse fracture of shaft of right fibula, initial encounter for closed fracture +S82424B Nondisplaced transverse fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82424C Nondisplaced transverse fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82424D Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82424E Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82424F Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82424G Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82424H Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82424J Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82424K Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82424M Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82424N Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82424P Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82424Q Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82424R Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82424S Nondisplaced transverse fracture of shaft of right fibula, sequela +S82425A Nondisplaced transverse fracture of shaft of left fibula, initial encounter for closed fracture +S82425B Nondisplaced transverse fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82425C Nondisplaced transverse fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82425D Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82425E Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82425F Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82425G Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82425H Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82425J Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82425K Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82425M Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82425N Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82425P Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82425Q Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82425R Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82425S Nondisplaced transverse fracture of shaft of left fibula, sequela +S82426A Nondisplaced transverse fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82426B Nondisplaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82426C Nondisplaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82426D Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82426E Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82426F Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82426G Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82426H Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82426J Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82426K Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82426M Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82426N Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82426P Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82426Q Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82426R Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82426S Nondisplaced transverse fracture of shaft of unspecified fibula, sequela +S82431A Displaced oblique fracture of shaft of right fibula, initial encounter for closed fracture +S82431B Displaced oblique fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82431C Displaced oblique fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82431D Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82431E Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82431F Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82431G Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82431H Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82431J Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82431K Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82431M Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82431N Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82431P Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82431Q Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82431R Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82431S Displaced oblique fracture of shaft of right fibula, sequela +S82432A Displaced oblique fracture of shaft of left fibula, initial encounter for closed fracture +S82432B Displaced oblique fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82432C Displaced oblique fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82432D Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82432E Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82432F Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82432G Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82432H Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82432J Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82432K Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82432M Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82432N Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82432P Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82432Q Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82432R Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82432S Displaced oblique fracture of shaft of left fibula, sequela +S82433A Displaced oblique fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82433B Displaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82433C Displaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82433D Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82433E Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82433F Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82433G Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82433H Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82433J Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82433K Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82433M Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82433N Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82433P Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82433Q Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82433R Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82433S Displaced oblique fracture of shaft of unspecified fibula, sequela +S82434A Nondisplaced oblique fracture of shaft of right fibula, initial encounter for closed fracture +S82434B Nondisplaced oblique fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82434C Nondisplaced oblique fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82434D Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82434E Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82434F Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82434G Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82434H Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82434J Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82434K Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82434M Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82434N Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82434P Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82434Q Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82434R Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82434S Nondisplaced oblique fracture of shaft of right fibula, sequela +S82435A Nondisplaced oblique fracture of shaft of left fibula, initial encounter for closed fracture +S82435B Nondisplaced oblique fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82435C Nondisplaced oblique fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82435D Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82435E Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82435F Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82435G Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82435H Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82435J Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82435K Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82435M Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82435N Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82435P Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82435Q Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82435R Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82435S Nondisplaced oblique fracture of shaft of left fibula, sequela +S82436A Nondisplaced oblique fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82436B Nondisplaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82436C Nondisplaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82436D Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82436E Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82436F Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82436G Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82436H Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82436J Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82436K Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82436M Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82436N Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82436P Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82436Q Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82436R Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82436S Nondisplaced oblique fracture of shaft of unspecified fibula, sequela +S82441A Displaced spiral fracture of shaft of right fibula, initial encounter for closed fracture +S82441B Displaced spiral fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82441C Displaced spiral fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82441D Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82441E Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82441F Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82441G Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82441H Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82441J Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82441K Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82441M Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82441N Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82441P Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82441Q Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82441R Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82441S Displaced spiral fracture of shaft of right fibula, sequela +S82442A Displaced spiral fracture of shaft of left fibula, initial encounter for closed fracture +S82442B Displaced spiral fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82442C Displaced spiral fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82442D Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82442E Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82442F Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82442G Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82442H Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82442J Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82442K Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82442M Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82442N Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82442P Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82442Q Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82442R Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82442S Displaced spiral fracture of shaft of left fibula, sequela +S82443A Displaced spiral fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82443B Displaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82443C Displaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82443D Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82443E Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82443F Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82443G Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82443H Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82443J Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82443K Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82443M Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82443N Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82443P Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82443Q Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82443R Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82443S Displaced spiral fracture of shaft of unspecified fibula, sequela +S82444A Nondisplaced spiral fracture of shaft of right fibula, initial encounter for closed fracture +S82444B Nondisplaced spiral fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82444C Nondisplaced spiral fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82444D Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82444E Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82444F Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82444G Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82444H Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82444J Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82444K Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82444M Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82444N Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82444P Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82444Q Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82444R Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82444S Nondisplaced spiral fracture of shaft of right fibula, sequela +S82445A Nondisplaced spiral fracture of shaft of left fibula, initial encounter for closed fracture +S82445B Nondisplaced spiral fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82445C Nondisplaced spiral fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82445D Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82445E Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82445F Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82445G Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82445H Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82445J Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82445K Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82445M Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82445N Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82445P Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82445Q Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82445R Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82445S Nondisplaced spiral fracture of shaft of left fibula, sequela +S82446A Nondisplaced spiral fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82446B Nondisplaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82446C Nondisplaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82446D Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82446E Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82446F Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82446G Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82446H Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82446J Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82446K Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82446M Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82446N Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82446P Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82446Q Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82446R Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82446S Nondisplaced spiral fracture of shaft of unspecified fibula, sequela +S82451A Displaced comminuted fracture of shaft of right fibula, initial encounter for closed fracture +S82451B Displaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82451C Displaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82451D Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82451E Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82451F Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82451G Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82451H Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82451J Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82451K Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82451M Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82451N Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82451P Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82451Q Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82451R Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82451S Displaced comminuted fracture of shaft of right fibula, sequela +S82452A Displaced comminuted fracture of shaft of left fibula, initial encounter for closed fracture +S82452B Displaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82452C Displaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82452D Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82452E Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82452F Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82452G Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82452H Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82452J Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82452K Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82452M Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82452N Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82452P Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82452Q Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82452R Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82452S Displaced comminuted fracture of shaft of left fibula, sequela +S82453A Displaced comminuted fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82453B Displaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82453C Displaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82453D Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82453E Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82453F Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82453G Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82453H Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82453J Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82453K Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82453M Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82453N Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82453P Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82453Q Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82453R Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82453S Displaced comminuted fracture of shaft of unspecified fibula, sequela +S82454A Nondisplaced comminuted fracture of shaft of right fibula, initial encounter for closed fracture +S82454B Nondisplaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82454C Nondisplaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82454D Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82454E Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82454F Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82454G Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82454H Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82454J Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82454K Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82454M Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82454N Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82454P Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82454Q Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82454R Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82454S Nondisplaced comminuted fracture of shaft of right fibula, sequela +S82455A Nondisplaced comminuted fracture of shaft of left fibula, initial encounter for closed fracture +S82455B Nondisplaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82455C Nondisplaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82455D Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82455E Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82455F Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82455G Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82455H Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82455J Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82455K Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82455M Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82455N Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82455P Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82455Q Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82455R Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82455S Nondisplaced comminuted fracture of shaft of left fibula, sequela +S82456A Nondisplaced comminuted fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82456B Nondisplaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82456C Nondisplaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82456D Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82456E Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82456F Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82456G Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82456H Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82456J Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82456K Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82456M Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82456N Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82456P Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82456Q Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82456R Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82456S Nondisplaced comminuted fracture of shaft of unspecified fibula, sequela +S82461A Displaced segmental fracture of shaft of right fibula, initial encounter for closed fracture +S82461B Displaced segmental fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82461C Displaced segmental fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82461D Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82461E Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82461F Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82461G Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82461H Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82461J Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82461K Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82461M Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82461N Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82461P Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82461Q Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82461R Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82461S Displaced segmental fracture of shaft of right fibula, sequela +S82462A Displaced segmental fracture of shaft of left fibula, initial encounter for closed fracture +S82462B Displaced segmental fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82462C Displaced segmental fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82462D Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82462E Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82462F Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82462G Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82462H Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82462J Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82462K Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82462M Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82462N Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82462P Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82462Q Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82462R Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82462S Displaced segmental fracture of shaft of left fibula, sequela +S82463A Displaced segmental fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82463B Displaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82463C Displaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82463D Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82463E Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82463F Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82463G Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82463H Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82463J Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82463K Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82463M Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82463N Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82463P Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82463Q Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82463R Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82463S Displaced segmental fracture of shaft of unspecified fibula, sequela +S82464A Nondisplaced segmental fracture of shaft of right fibula, initial encounter for closed fracture +S82464B Nondisplaced segmental fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82464C Nondisplaced segmental fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82464D Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82464E Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82464F Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82464G Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82464H Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82464J Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82464K Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82464M Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82464N Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82464P Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82464Q Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82464R Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82464S Nondisplaced segmental fracture of shaft of right fibula, sequela +S82465A Nondisplaced segmental fracture of shaft of left fibula, initial encounter for closed fracture +S82465B Nondisplaced segmental fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82465C Nondisplaced segmental fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82465D Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82465E Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82465F Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82465G Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82465H Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82465J Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82465K Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82465M Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82465N Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82465P Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82465Q Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82465R Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82465S Nondisplaced segmental fracture of shaft of left fibula, sequela +S82466A Nondisplaced segmental fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82466B Nondisplaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82466C Nondisplaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82466D Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82466E Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82466F Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82466G Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82466H Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82466J Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82466K Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82466M Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82466N Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82466P Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82466Q Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82466R Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82466S Nondisplaced segmental fracture of shaft of unspecified fibula, sequela +S82491A Other fracture of shaft of right fibula, initial encounter for closed fracture +S82491B Other fracture of shaft of right fibula, initial encounter for open fracture type I or II +S82491C Other fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82491D Other fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing +S82491E Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82491F Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82491G Other fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing +S82491H Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82491J Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82491K Other fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +S82491M Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82491N Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82491P Other fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +S82491Q Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion +S82491R Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82491S Other fracture of shaft of right fibula, sequela +S82492A Other fracture of shaft of left fibula, initial encounter for closed fracture +S82492B Other fracture of shaft of left fibula, initial encounter for open fracture type I or II +S82492C Other fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82492D Other fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing +S82492E Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82492F Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82492G Other fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing +S82492H Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82492J Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82492K Other fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +S82492M Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82492N Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82492P Other fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +S82492Q Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion +S82492R Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82492S Other fracture of shaft of left fibula, sequela +S82499A Other fracture of shaft of unspecified fibula, initial encounter for closed fracture +S82499B Other fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +S82499C Other fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82499D Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82499E Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82499F Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82499G Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82499H Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82499J Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82499K Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82499M Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82499N Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82499P Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion +S82499Q Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82499R Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82499S Other fracture of shaft of unspecified fibula, sequela +S8251XA Displaced fracture of medial malleolus of right tibia, initial encounter for closed fracture +S8251XB Displaced fracture of medial malleolus of right tibia, initial encounter for open fracture type I or II +S8251XC Displaced fracture of medial malleolus of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8251XD Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with routine healing +S8251XE Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with routine healing +S8251XF Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8251XG Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with delayed healing +S8251XH Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S8251XJ Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8251XK Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with nonunion +S8251XM Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with nonunion +S8251XN Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8251XP Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with malunion +S8251XQ Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with malunion +S8251XR Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8251XS Displaced fracture of medial malleolus of right tibia, sequela +S8252XA Displaced fracture of medial malleolus of left tibia, initial encounter for closed fracture +S8252XB Displaced fracture of medial malleolus of left tibia, initial encounter for open fracture type I or II +S8252XC Displaced fracture of medial malleolus of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8252XD Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with routine healing +S8252XE Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with routine healing +S8252XF Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8252XG Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with delayed healing +S8252XH Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S8252XJ Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8252XK Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with nonunion +S8252XM Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with nonunion +S8252XN Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8252XP Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with malunion +S8252XQ Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with malunion +S8252XR Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8252XS Displaced fracture of medial malleolus of left tibia, sequela +S8253XA Displaced fracture of medial malleolus of unspecified tibia, initial encounter for closed fracture +S8253XB Displaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type I or II +S8253XC Displaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8253XD Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with routine healing +S8253XE Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S8253XF Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8253XG Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S8253XH Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S8253XJ Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8253XK Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with nonunion +S8253XM Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S8253XN Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8253XP Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with malunion +S8253XQ Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S8253XR Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8253XS Displaced fracture of medial malleolus of unspecified tibia, sequela +S8254XA Nondisplaced fracture of medial malleolus of right tibia, initial encounter for closed fracture +S8254XB Nondisplaced fracture of medial malleolus of right tibia, initial encounter for open fracture type I or II +S8254XC Nondisplaced fracture of medial malleolus of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8254XD Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with routine healing +S8254XE Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with routine healing +S8254XF Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8254XG Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with delayed healing +S8254XH Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S8254XJ Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8254XK Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with nonunion +S8254XM Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with nonunion +S8254XN Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8254XP Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with malunion +S8254XQ Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with malunion +S8254XR Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8254XS Nondisplaced fracture of medial malleolus of right tibia, sequela +S8255XA Nondisplaced fracture of medial malleolus of left tibia, initial encounter for closed fracture +S8255XB Nondisplaced fracture of medial malleolus of left tibia, initial encounter for open fracture type I or II +S8255XC Nondisplaced fracture of medial malleolus of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8255XD Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with routine healing +S8255XE Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with routine healing +S8255XF Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8255XG Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with delayed healing +S8255XH Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S8255XJ Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8255XK Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with nonunion +S8255XM Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with nonunion +S8255XN Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8255XP Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with malunion +S8255XQ Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with malunion +S8255XR Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8255XS Nondisplaced fracture of medial malleolus of left tibia, sequela +S8256XA Nondisplaced fracture of medial malleolus of unspecified tibia, initial encounter for closed fracture +S8256XB Nondisplaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type I or II +S8256XC Nondisplaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8256XD Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with routine healing +S8256XE Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S8256XF Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8256XG Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S8256XH Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S8256XJ Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8256XK Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with nonunion +S8256XM Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S8256XN Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8256XP Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with malunion +S8256XQ Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S8256XR Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8256XS Nondisplaced fracture of medial malleolus of unspecified tibia, sequela +S8261XA Displaced fracture of lateral malleolus of right fibula, initial encounter for closed fracture +S8261XB Displaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type I or II +S8261XC Displaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8261XD Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with routine healing +S8261XE Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with routine healing +S8261XF Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8261XG Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with delayed healing +S8261XH Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S8261XJ Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8261XK Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with nonunion +S8261XM Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with nonunion +S8261XN Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8261XP Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with malunion +S8261XQ Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with malunion +S8261XR Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8261XS Displaced fracture of lateral malleolus of right fibula, sequela +S8262XA Displaced fracture of lateral malleolus of left fibula, initial encounter for closed fracture +S8262XB Displaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type I or II +S8262XC Displaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8262XD Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with routine healing +S8262XE Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with routine healing +S8262XF Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8262XG Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with delayed healing +S8262XH Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S8262XJ Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8262XK Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with nonunion +S8262XM Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with nonunion +S8262XN Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8262XP Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with malunion +S8262XQ Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with malunion +S8262XR Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8262XS Displaced fracture of lateral malleolus of left fibula, sequela +S8263XA Displaced fracture of lateral malleolus of unspecified fibula, initial encounter for closed fracture +S8263XB Displaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type I or II +S8263XC Displaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8263XD Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with routine healing +S8263XE Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S8263XF Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8263XG Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S8263XH Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S8263XJ Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8263XK Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with nonunion +S8263XM Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S8263XN Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8263XP Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with malunion +S8263XQ Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S8263XR Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8263XS Displaced fracture of lateral malleolus of unspecified fibula, sequela +S8264XA Nondisplaced fracture of lateral malleolus of right fibula, initial encounter for closed fracture +S8264XB Nondisplaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type I or II +S8264XC Nondisplaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8264XD Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with routine healing +S8264XE Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with routine healing +S8264XF Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8264XG Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with delayed healing +S8264XH Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S8264XJ Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8264XK Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with nonunion +S8264XM Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with nonunion +S8264XN Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8264XP Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with malunion +S8264XQ Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with malunion +S8264XR Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8264XS Nondisplaced fracture of lateral malleolus of right fibula, sequela +S8265XA Nondisplaced fracture of lateral malleolus of left fibula, initial encounter for closed fracture +S8265XB Nondisplaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type I or II +S8265XC Nondisplaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8265XD Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with routine healing +S8265XE Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with routine healing +S8265XF Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8265XG Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with delayed healing +S8265XH Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S8265XJ Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8265XK Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with nonunion +S8265XM Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with nonunion +S8265XN Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8265XP Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with malunion +S8265XQ Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with malunion +S8265XR Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8265XS Nondisplaced fracture of lateral malleolus of left fibula, sequela +S8266XA Nondisplaced fracture of lateral malleolus of unspecified fibula, initial encounter for closed fracture +S8266XB Nondisplaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type I or II +S8266XC Nondisplaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8266XD Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with routine healing +S8266XE Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S8266XF Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8266XG Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S8266XH Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S8266XJ Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8266XK Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with nonunion +S8266XM Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S8266XN Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8266XP Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with malunion +S8266XQ Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S8266XR Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8266XS Nondisplaced fracture of lateral malleolus of unspecified fibula, sequela +S82811A Torus fracture of upper end of right fibula, initial encounter for closed fracture +S82811D Torus fracture of upper end of right fibula, subsequent encounter for fracture with routine healing +S82811G Torus fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing +S82811K Torus fracture of upper end of right fibula, subsequent encounter for fracture with nonunion +S82811P Torus fracture of upper end of right fibula, subsequent encounter for fracture with malunion +S82811S Torus fracture of upper end of right fibula, sequela +S82812A Torus fracture of upper end of left fibula, initial encounter for closed fracture +S82812D Torus fracture of upper end of left fibula, subsequent encounter for fracture with routine healing +S82812G Torus fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing +S82812K Torus fracture of upper end of left fibula, subsequent encounter for fracture with nonunion +S82812P Torus fracture of upper end of left fibula, subsequent encounter for fracture with malunion +S82812S Torus fracture of upper end of left fibula, sequela +S82819A Torus fracture of upper end of unspecified fibula, initial encounter for closed fracture +S82819D Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing +S82819G Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing +S82819K Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion +S82819P Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion +S82819S Torus fracture of upper end of unspecified fibula, sequela +S82821A Torus fracture of lower end of right fibula, initial encounter for closed fracture +S82821D Torus fracture of lower end of right fibula, subsequent encounter for fracture with routine healing +S82821G Torus fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing +S82821K Torus fracture of lower end of right fibula, subsequent encounter for fracture with nonunion +S82821P Torus fracture of lower end of right fibula, subsequent encounter for fracture with malunion +S82821S Torus fracture of lower end of right fibula, sequela +S82822A Torus fracture of lower end of left fibula, initial encounter for closed fracture +S82822D Torus fracture of lower end of left fibula, subsequent encounter for fracture with routine healing +S82822G Torus fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing +S82822K Torus fracture of lower end of left fibula, subsequent encounter for fracture with nonunion +S82822P Torus fracture of lower end of left fibula, subsequent encounter for fracture with malunion +S82822S Torus fracture of lower end of left fibula, sequela +S82829A Torus fracture of lower end of unspecified fibula, initial encounter for closed fracture +S82829D Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing +S82829G Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing +S82829K Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion +S82829P Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion +S82829S Torus fracture of lower end of unspecified fibula, sequela +S82831A Other fracture of upper and lower end of right fibula, initial encounter for closed fracture +S82831B Other fracture of upper and lower end of right fibula, initial encounter for open fracture type I or II +S82831C Other fracture of upper and lower end of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82831D Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with routine healing +S82831E Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with routine healing +S82831F Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82831G Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with delayed healing +S82831H Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with delayed healing +S82831J Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82831K Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with nonunion +S82831M Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with nonunion +S82831N Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82831P Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with malunion +S82831Q Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with malunion +S82831R Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82831S Other fracture of upper and lower end of right fibula, sequela +S82832A Other fracture of upper and lower end of left fibula, initial encounter for closed fracture +S82832B Other fracture of upper and lower end of left fibula, initial encounter for open fracture type I or II +S82832C Other fracture of upper and lower end of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82832D Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with routine healing +S82832E Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with routine healing +S82832F Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82832G Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with delayed healing +S82832H Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with delayed healing +S82832J Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82832K Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with nonunion +S82832M Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with nonunion +S82832N Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82832P Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with malunion +S82832Q Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with malunion +S82832R Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82832S Other fracture of upper and lower end of left fibula, sequela +S82839A Other fracture of upper and lower end of unspecified fibula, initial encounter for closed fracture +S82839B Other fracture of upper and lower end of unspecified fibula, initial encounter for open fracture type I or II +S82839C Other fracture of upper and lower end of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82839D Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with routine healing +S82839E Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing +S82839F Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82839G Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with delayed healing +S82839H Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing +S82839J Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82839K Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with nonunion +S82839M Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion +S82839N Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82839P Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with malunion +S82839Q Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with malunion +S82839R Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82839S Other fracture of upper and lower end of unspecified fibula, sequela +S82841A Displaced bimalleolar fracture of right lower leg, initial encounter for closed fracture +S82841B Displaced bimalleolar fracture of right lower leg, initial encounter for open fracture type I or II +S82841C Displaced bimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82841D Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing +S82841E Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing +S82841F Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82841G Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing +S82841H Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82841J Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82841K Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion +S82841M Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion +S82841N Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82841P Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion +S82841Q Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion +S82841R Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82841S Displaced bimalleolar fracture of right lower leg, sequela +S82842A Displaced bimalleolar fracture of left lower leg, initial encounter for closed fracture +S82842B Displaced bimalleolar fracture of left lower leg, initial encounter for open fracture type I or II +S82842C Displaced bimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82842D Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing +S82842E Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing +S82842F Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82842G Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing +S82842H Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82842J Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82842K Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion +S82842M Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion +S82842N Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82842P Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion +S82842Q Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion +S82842R Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82842S Displaced bimalleolar fracture of left lower leg, sequela +S82843A Displaced bimalleolar fracture of unspecified lower leg, initial encounter for closed fracture +S82843B Displaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II +S82843C Displaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82843D Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing +S82843E Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing +S82843F Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82843G Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing +S82843H Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82843J Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82843K Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion +S82843M Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion +S82843N Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82843P Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion +S82843Q Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion +S82843R Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82843S Displaced bimalleolar fracture of unspecified lower leg, sequela +S82844A Nondisplaced bimalleolar fracture of right lower leg, initial encounter for closed fracture +S82844B Nondisplaced bimalleolar fracture of right lower leg, initial encounter for open fracture type I or II +S82844C Nondisplaced bimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82844D Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing +S82844E Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing +S82844F Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82844G Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing +S82844H Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82844J Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82844K Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion +S82844M Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion +S82844N Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82844P Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion +S82844Q Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion +S82844R Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82844S Nondisplaced bimalleolar fracture of right lower leg, sequela +S82845A Nondisplaced bimalleolar fracture of left lower leg, initial encounter for closed fracture +S82845B Nondisplaced bimalleolar fracture of left lower leg, initial encounter for open fracture type I or II +S82845C Nondisplaced bimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82845D Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing +S82845E Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing +S82845F Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82845G Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing +S82845H Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82845J Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82845K Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion +S82845M Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion +S82845N Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82845P Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion +S82845Q Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion +S82845R Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82845S Nondisplaced bimalleolar fracture of left lower leg, sequela +S82846A Nondisplaced bimalleolar fracture of unspecified lower leg, initial encounter for closed fracture +S82846B Nondisplaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II +S82846C Nondisplaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82846D Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing +S82846E Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing +S82846F Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82846G Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing +S82846H Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82846J Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82846K Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion +S82846M Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion +S82846N Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82846P Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion +S82846Q Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion +S82846R Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82846S Nondisplaced bimalleolar fracture of unspecified lower leg, sequela +S82851A Displaced trimalleolar fracture of right lower leg, initial encounter for closed fracture +S82851B Displaced trimalleolar fracture of right lower leg, initial encounter for open fracture type I or II +S82851C Displaced trimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82851D Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing +S82851E Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing +S82851F Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82851G Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing +S82851H Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82851J Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82851K Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion +S82851M Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion +S82851N Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82851P Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion +S82851Q Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion +S82851R Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82851S Displaced trimalleolar fracture of right lower leg, sequela +S82852A Displaced trimalleolar fracture of left lower leg, initial encounter for closed fracture +S82852B Displaced trimalleolar fracture of left lower leg, initial encounter for open fracture type I or II +S82852C Displaced trimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82852D Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing +S82852E Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing +S82852F Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82852G Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing +S82852H Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82852J Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82852K Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion +S82852M Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion +S82852N Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82852P Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion +S82852Q Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion +S82852R Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82852S Displaced trimalleolar fracture of left lower leg, sequela +S82853A Displaced trimalleolar fracture of unspecified lower leg, initial encounter for closed fracture +S82853B Displaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II +S82853C Displaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82853D Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing +S82853E Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing +S82853F Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82853G Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing +S82853H Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82853J Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82853K Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion +S82853M Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion +S82853N Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82853P Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion +S82853Q Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion +S82853R Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82853S Displaced trimalleolar fracture of unspecified lower leg, sequela +S82854A Nondisplaced trimalleolar fracture of right lower leg, initial encounter for closed fracture +S82854B Nondisplaced trimalleolar fracture of right lower leg, initial encounter for open fracture type I or II +S82854C Nondisplaced trimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82854D Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing +S82854E Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing +S82854F Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82854G Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing +S82854H Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82854J Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82854K Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion +S82854M Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion +S82854N Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82854P Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion +S82854Q Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion +S82854R Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82854S Nondisplaced trimalleolar fracture of right lower leg, sequela +S82855A Nondisplaced trimalleolar fracture of left lower leg, initial encounter for closed fracture +S82855B Nondisplaced trimalleolar fracture of left lower leg, initial encounter for open fracture type I or II +S82855C Nondisplaced trimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82855D Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing +S82855E Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing +S82855F Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82855G Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing +S82855H Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82855J Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82855K Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion +S82855M Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion +S82855N Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82855P Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion +S82855Q Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion +S82855R Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82855S Nondisplaced trimalleolar fracture of left lower leg, sequela +S82856A Nondisplaced trimalleolar fracture of unspecified lower leg, initial encounter for closed fracture +S82856B Nondisplaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II +S82856C Nondisplaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82856D Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing +S82856E Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing +S82856F Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82856G Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing +S82856H Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82856J Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82856K Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion +S82856M Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion +S82856N Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82856P Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion +S82856Q Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion +S82856R Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82856S Nondisplaced trimalleolar fracture of unspecified lower leg, sequela +S82861A Displaced Maisonneuve's fracture of right leg, initial encounter for closed fracture +S82861B Displaced Maisonneuve's fracture of right leg, initial encounter for open fracture type I or II +S82861C Displaced Maisonneuve's fracture of right leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82861D Displaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with routine healing +S82861E Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with routine healing +S82861F Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82861G Displaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with delayed healing +S82861H Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with delayed healing +S82861J Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82861K Displaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with nonunion +S82861M Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with nonunion +S82861N Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82861P Displaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with malunion +S82861Q Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with malunion +S82861R Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82861S Displaced Maisonneuve's fracture of right leg, sequela +S82862A Displaced Maisonneuve's fracture of left leg, initial encounter for closed fracture +S82862B Displaced Maisonneuve's fracture of left leg, initial encounter for open fracture type I or II +S82862C Displaced Maisonneuve's fracture of left leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82862D Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with routine healing +S82862E Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with routine healing +S82862F Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82862G Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with delayed healing +S82862H Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with delayed healing +S82862J Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82862K Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with nonunion +S82862M Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with nonunion +S82862N Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82862P Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with malunion +S82862Q Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with malunion +S82862R Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82862S Displaced Maisonneuve's fracture of left leg, sequela +S82863A Displaced Maisonneuve's fracture of unspecified leg, initial encounter for closed fracture +S82863B Displaced Maisonneuve's fracture of unspecified leg, initial encounter for open fracture type I or II +S82863C Displaced Maisonneuve's fracture of unspecified leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82863D Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with routine healing +S82863E Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with routine healing +S82863F Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82863G Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with delayed healing +S82863H Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with delayed healing +S82863J Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82863K Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with nonunion +S82863M Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with nonunion +S82863N Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82863P Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with malunion +S82863Q Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with malunion +S82863R Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82863S Displaced Maisonneuve's fracture of unspecified leg, sequela +S82864A Nondisplaced Maisonneuve's fracture of right leg, initial encounter for closed fracture +S82864B Nondisplaced Maisonneuve's fracture of right leg, initial encounter for open fracture type I or II +S82864C Nondisplaced Maisonneuve's fracture of right leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82864D Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with routine healing +S82864E Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with routine healing +S82864F Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82864G Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with delayed healing +S82864H Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with delayed healing +S82864J Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82864K Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with nonunion +S82864M Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with nonunion +S82864N Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82864P Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with malunion +S82864Q Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with malunion +S82864R Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82864S Nondisplaced Maisonneuve's fracture of right leg, sequela +S82865A Nondisplaced Maisonneuve's fracture of left leg, initial encounter for closed fracture +S82865B Nondisplaced Maisonneuve's fracture of left leg, initial encounter for open fracture type I or II +S82865C Nondisplaced Maisonneuve's fracture of left leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82865D Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with routine healing +S82865E Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with routine healing +S82865F Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82865G Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with delayed healing +S82865H Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with delayed healing +S82865J Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82865K Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with nonunion +S82865M Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with nonunion +S82865N Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82865P Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with malunion +S82865Q Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with malunion +S82865R Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82865S Nondisplaced Maisonneuve's fracture of left leg, sequela +S82866A Nondisplaced Maisonneuve's fracture of unspecified leg, initial encounter for closed fracture +S82866B Nondisplaced Maisonneuve's fracture of unspecified leg, initial encounter for open fracture type I or II +S82866C Nondisplaced Maisonneuve's fracture of unspecified leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82866D Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with routine healing +S82866E Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with routine healing +S82866F Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82866G Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with delayed healing +S82866H Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with delayed healing +S82866J Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82866K Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with nonunion +S82866M Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with nonunion +S82866N Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82866P Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with malunion +S82866Q Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with malunion +S82866R Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82866S Nondisplaced Maisonneuve's fracture of unspecified leg, sequela +S82871A Displaced pilon fracture of right tibia, initial encounter for closed fracture +S82871B Displaced pilon fracture of right tibia, initial encounter for open fracture type I or II +S82871C Displaced pilon fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82871D Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with routine healing +S82871E Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82871F Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82871G Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with delayed healing +S82871H Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82871J Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82871K Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with nonunion +S82871M Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82871N Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82871P Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with malunion +S82871Q Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with malunion +S82871R Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82871S Displaced pilon fracture of right tibia, sequela +S82872A Displaced pilon fracture of left tibia, initial encounter for closed fracture +S82872B Displaced pilon fracture of left tibia, initial encounter for open fracture type I or II +S82872C Displaced pilon fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82872D Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with routine healing +S82872E Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82872F Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82872G Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with delayed healing +S82872H Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82872J Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82872K Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with nonunion +S82872M Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82872N Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82872P Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with malunion +S82872Q Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with malunion +S82872R Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82872S Displaced pilon fracture of left tibia, sequela +S82873A Displaced pilon fracture of unspecified tibia, initial encounter for closed fracture +S82873B Displaced pilon fracture of unspecified tibia, initial encounter for open fracture type I or II +S82873C Displaced pilon fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82873D Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82873E Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82873F Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82873G Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82873H Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82873J Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82873K Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82873M Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82873N Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82873P Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with malunion +S82873Q Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82873R Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82873S Displaced pilon fracture of unspecified tibia, sequela +S82874A Nondisplaced pilon fracture of right tibia, initial encounter for closed fracture +S82874B Nondisplaced pilon fracture of right tibia, initial encounter for open fracture type I or II +S82874C Nondisplaced pilon fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82874D Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with routine healing +S82874E Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing +S82874F Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82874G Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with delayed healing +S82874H Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing +S82874J Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82874K Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with nonunion +S82874M Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion +S82874N Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82874P Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with malunion +S82874Q Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with malunion +S82874R Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82874S Nondisplaced pilon fracture of right tibia, sequela +S82875A Nondisplaced pilon fracture of left tibia, initial encounter for closed fracture +S82875B Nondisplaced pilon fracture of left tibia, initial encounter for open fracture type I or II +S82875C Nondisplaced pilon fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82875D Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with routine healing +S82875E Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing +S82875F Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82875G Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with delayed healing +S82875H Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing +S82875J Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82875K Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with nonunion +S82875M Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion +S82875N Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82875P Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with malunion +S82875Q Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with malunion +S82875R Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82875S Nondisplaced pilon fracture of left tibia, sequela +S82876A Nondisplaced pilon fracture of unspecified tibia, initial encounter for closed fracture +S82876B Nondisplaced pilon fracture of unspecified tibia, initial encounter for open fracture type I or II +S82876C Nondisplaced pilon fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82876D Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing +S82876E Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing +S82876F Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82876G Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing +S82876H Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing +S82876J Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82876K Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion +S82876M Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion +S82876N Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82876P Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with malunion +S82876Q Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion +S82876R Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82876S Nondisplaced pilon fracture of unspecified tibia, sequela +S82891A Other fracture of right lower leg, initial encounter for closed fracture +S82891B Other fracture of right lower leg, initial encounter for open fracture type I or II +S82891C Other fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82891D Other fracture of right lower leg, subsequent encounter for closed fracture with routine healing +S82891E Other fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing +S82891F Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82891G Other fracture of right lower leg, subsequent encounter for closed fracture with delayed healing +S82891H Other fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82891J Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82891K Other fracture of right lower leg, subsequent encounter for closed fracture with nonunion +S82891M Other fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion +S82891N Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82891P Other fracture of right lower leg, subsequent encounter for closed fracture with malunion +S82891Q Other fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion +S82891R Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82891S Other fracture of right lower leg, sequela +S82892A Other fracture of left lower leg, initial encounter for closed fracture +S82892B Other fracture of left lower leg, initial encounter for open fracture type I or II +S82892C Other fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82892D Other fracture of left lower leg, subsequent encounter for closed fracture with routine healing +S82892E Other fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing +S82892F Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82892G Other fracture of left lower leg, subsequent encounter for closed fracture with delayed healing +S82892H Other fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82892J Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82892K Other fracture of left lower leg, subsequent encounter for closed fracture with nonunion +S82892M Other fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion +S82892N Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82892P Other fracture of left lower leg, subsequent encounter for closed fracture with malunion +S82892Q Other fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion +S82892R Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82892S Other fracture of left lower leg, sequela +S82899A Other fracture of unspecified lower leg, initial encounter for closed fracture +S82899B Other fracture of unspecified lower leg, initial encounter for open fracture type I or II +S82899C Other fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S82899D Other fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing +S82899E Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing +S82899F Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S82899G Other fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing +S82899H Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing +S82899J Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S82899K Other fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion +S82899M Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion +S82899N Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S82899P Other fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion +S82899Q Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion +S82899R Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S82899S Other fracture of unspecified lower leg, sequela +S8290XA Unspecified fracture of unspecified lower leg, initial encounter for closed fracture +S8290XB Unspecified fracture of unspecified lower leg, initial encounter for open fracture type I or II +S8290XC Unspecified fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8290XD Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing +S8290XE Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing +S8290XF Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8290XG Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing +S8290XH Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing +S8290XJ Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8290XK Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion +S8290XM Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion +S8290XN Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8290XP Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion +S8290XQ Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion +S8290XR Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8290XS Unspecified fracture of unspecified lower leg, sequela +S8291XA Unspecified fracture of right lower leg, initial encounter for closed fracture +S8291XB Unspecified fracture of right lower leg, initial encounter for open fracture type I or II +S8291XC Unspecified fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8291XD Unspecified fracture of right lower leg, subsequent encounter for closed fracture with routine healing +S8291XE Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing +S8291XF Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8291XG Unspecified fracture of right lower leg, subsequent encounter for closed fracture with delayed healing +S8291XH Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing +S8291XJ Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8291XK Unspecified fracture of right lower leg, subsequent encounter for closed fracture with nonunion +S8291XM Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion +S8291XN Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8291XP Unspecified fracture of right lower leg, subsequent encounter for closed fracture with malunion +S8291XQ Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion +S8291XR Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8291XS Unspecified fracture of right lower leg, sequela +S8292XA Unspecified fracture of left lower leg, initial encounter for closed fracture +S8292XB Unspecified fracture of left lower leg, initial encounter for open fracture type I or II +S8292XC Unspecified fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +S8292XD Unspecified fracture of left lower leg, subsequent encounter for closed fracture with routine healing +S8292XE Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing +S8292XF Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing +S8292XG Unspecified fracture of left lower leg, subsequent encounter for closed fracture with delayed healing +S8292XH Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing +S8292XJ Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing +S8292XK Unspecified fracture of left lower leg, subsequent encounter for closed fracture with nonunion +S8292XM Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion +S8292XN Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion +S8292XP Unspecified fracture of left lower leg, subsequent encounter for closed fracture with malunion +S8292XQ Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion +S8292XR Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion +S8292XS Unspecified fracture of left lower leg, sequela +S83001A Unspecified subluxation of right patella, initial encounter +S83001D Unspecified subluxation of right patella, subsequent encounter +S83001S Unspecified subluxation of right patella, sequela +S83002A Unspecified subluxation of left patella, initial encounter +S83002D Unspecified subluxation of left patella, subsequent encounter +S83002S Unspecified subluxation of left patella, sequela +S83003A Unspecified subluxation of unspecified patella, initial encounter +S83003D Unspecified subluxation of unspecified patella, subsequent encounter +S83003S Unspecified subluxation of unspecified patella, sequela +S83004A Unspecified dislocation of right patella, initial encounter +S83004D Unspecified dislocation of right patella, subsequent encounter +S83004S Unspecified dislocation of right patella, sequela +S83005A Unspecified dislocation of left patella, initial encounter +S83005D Unspecified dislocation of left patella, subsequent encounter +S83005S Unspecified dislocation of left patella, sequela +S83006A Unspecified dislocation of unspecified patella, initial encounter +S83006D Unspecified dislocation of unspecified patella, subsequent encounter +S83006S Unspecified dislocation of unspecified patella, sequela +S83011A Lateral subluxation of right patella, initial encounter +S83011D Lateral subluxation of right patella, subsequent encounter +S83011S Lateral subluxation of right patella, sequela +S83012A Lateral subluxation of left patella, initial encounter +S83012D Lateral subluxation of left patella, subsequent encounter +S83012S Lateral subluxation of left patella, sequela +S83013A Lateral subluxation of unspecified patella, initial encounter +S83013D Lateral subluxation of unspecified patella, subsequent encounter +S83013S Lateral subluxation of unspecified patella, sequela +S83014A Lateral dislocation of right patella, initial encounter +S83014D Lateral dislocation of right patella, subsequent encounter +S83014S Lateral dislocation of right patella, sequela +S83015A Lateral dislocation of left patella, initial encounter +S83015D Lateral dislocation of left patella, subsequent encounter +S83015S Lateral dislocation of left patella, sequela +S83016A Lateral dislocation of unspecified patella, initial encounter +S83016D Lateral dislocation of unspecified patella, subsequent encounter +S83016S Lateral dislocation of unspecified patella, sequela +S83091A Other subluxation of right patella, initial encounter +S83091D Other subluxation of right patella, subsequent encounter +S83091S Other subluxation of right patella, sequela +S83092A Other subluxation of left patella, initial encounter +S83092D Other subluxation of left patella, subsequent encounter +S83092S Other subluxation of left patella, sequela +S83093A Other subluxation of unspecified patella, initial encounter +S83093D Other subluxation of unspecified patella, subsequent encounter +S83093S Other subluxation of unspecified patella, sequela +S83094A Other dislocation of right patella, initial encounter +S83094D Other dislocation of right patella, subsequent encounter +S83094S Other dislocation of right patella, sequela +S83095A Other dislocation of left patella, initial encounter +S83095D Other dislocation of left patella, subsequent encounter +S83095S Other dislocation of left patella, sequela +S83096A Other dislocation of unspecified patella, initial encounter +S83096D Other dislocation of unspecified patella, subsequent encounter +S83096S Other dislocation of unspecified patella, sequela +S83101A Unspecified subluxation of right knee, initial encounter +S83101D Unspecified subluxation of right knee, subsequent encounter +S83101S Unspecified subluxation of right knee, sequela +S83102A Unspecified subluxation of left knee, initial encounter +S83102D Unspecified subluxation of left knee, subsequent encounter +S83102S Unspecified subluxation of left knee, sequela +S83103A Unspecified subluxation of unspecified knee, initial encounter +S83103D Unspecified subluxation of unspecified knee, subsequent encounter +S83103S Unspecified subluxation of unspecified knee, sequela +S83104A Unspecified dislocation of right knee, initial encounter +S83104D Unspecified dislocation of right knee, subsequent encounter +S83104S Unspecified dislocation of right knee, sequela +S83105A Unspecified dislocation of left knee, initial encounter +S83105D Unspecified dislocation of left knee, subsequent encounter +S83105S Unspecified dislocation of left knee, sequela +S83106A Unspecified dislocation of unspecified knee, initial encounter +S83106D Unspecified dislocation of unspecified knee, subsequent encounter +S83106S Unspecified dislocation of unspecified knee, sequela +S83111A Anterior subluxation of proximal end of tibia, right knee, initial encounter +S83111D Anterior subluxation of proximal end of tibia, right knee, subsequent encounter +S83111S Anterior subluxation of proximal end of tibia, right knee, sequela +S83112A Anterior subluxation of proximal end of tibia, left knee, initial encounter +S83112D Anterior subluxation of proximal end of tibia, left knee, subsequent encounter +S83112S Anterior subluxation of proximal end of tibia, left knee, sequela +S83113A Anterior subluxation of proximal end of tibia, unspecified knee, initial encounter +S83113D Anterior subluxation of proximal end of tibia, unspecified knee, subsequent encounter +S83113S Anterior subluxation of proximal end of tibia, unspecified knee, sequela +S83114A Anterior dislocation of proximal end of tibia, right knee, initial encounter +S83114D Anterior dislocation of proximal end of tibia, right knee, subsequent encounter +S83114S Anterior dislocation of proximal end of tibia, right knee, sequela +S83115A Anterior dislocation of proximal end of tibia, left knee, initial encounter +S83115D Anterior dislocation of proximal end of tibia, left knee, subsequent encounter +S83115S Anterior dislocation of proximal end of tibia, left knee, sequela +S83116A Anterior dislocation of proximal end of tibia, unspecified knee, initial encounter +S83116D Anterior dislocation of proximal end of tibia, unspecified knee, subsequent encounter +S83116S Anterior dislocation of proximal end of tibia, unspecified knee, sequela +S83121A Posterior subluxation of proximal end of tibia, right knee, initial encounter +S83121D Posterior subluxation of proximal end of tibia, right knee, subsequent encounter +S83121S Posterior subluxation of proximal end of tibia, right knee, sequela +S83122A Posterior subluxation of proximal end of tibia, left knee, initial encounter +S83122D Posterior subluxation of proximal end of tibia, left knee, subsequent encounter +S83122S Posterior subluxation of proximal end of tibia, left knee, sequela +S83123A Posterior subluxation of proximal end of tibia, unspecified knee, initial encounter +S83123D Posterior subluxation of proximal end of tibia, unspecified knee, subsequent encounter +S83123S Posterior subluxation of proximal end of tibia, unspecified knee, sequela +S83124A Posterior dislocation of proximal end of tibia, right knee, initial encounter +S83124D Posterior dislocation of proximal end of tibia, right knee, subsequent encounter +S83124S Posterior dislocation of proximal end of tibia, right knee, sequela +S83125A Posterior dislocation of proximal end of tibia, left knee, initial encounter +S83125D Posterior dislocation of proximal end of tibia, left knee, subsequent encounter +S83125S Posterior dislocation of proximal end of tibia, left knee, sequela +S83126A Posterior dislocation of proximal end of tibia, unspecified knee, initial encounter +S83126D Posterior dislocation of proximal end of tibia, unspecified knee, subsequent encounter +S83126S Posterior dislocation of proximal end of tibia, unspecified knee, sequela +S83131A Medial subluxation of proximal end of tibia, right knee, initial encounter +S83131D Medial subluxation of proximal end of tibia, right knee, subsequent encounter +S83131S Medial subluxation of proximal end of tibia, right knee, sequela +S83132A Medial subluxation of proximal end of tibia, left knee, initial encounter +S83132D Medial subluxation of proximal end of tibia, left knee, subsequent encounter +S83132S Medial subluxation of proximal end of tibia, left knee, sequela +S83133A Medial subluxation of proximal end of tibia, unspecified knee, initial encounter +S83133D Medial subluxation of proximal end of tibia, unspecified knee, subsequent encounter +S83133S Medial subluxation of proximal end of tibia, unspecified knee, sequela +S83134A Medial dislocation of proximal end of tibia, right knee, initial encounter +S83134D Medial dislocation of proximal end of tibia, right knee, subsequent encounter +S83134S Medial dislocation of proximal end of tibia, right knee, sequela +S83135A Medial dislocation of proximal end of tibia, left knee, initial encounter +S83135D Medial dislocation of proximal end of tibia, left knee, subsequent encounter +S83135S Medial dislocation of proximal end of tibia, left knee, sequela +S83136A Medial dislocation of proximal end of tibia, unspecified knee, initial encounter +S83136D Medial dislocation of proximal end of tibia, unspecified knee, subsequent encounter +S83136S Medial dislocation of proximal end of tibia, unspecified knee, sequela +S83141A Lateral subluxation of proximal end of tibia, right knee, initial encounter +S83141D Lateral subluxation of proximal end of tibia, right knee, subsequent encounter +S83141S Lateral subluxation of proximal end of tibia, right knee, sequela +S83142A Lateral subluxation of proximal end of tibia, left knee, initial encounter +S83142D Lateral subluxation of proximal end of tibia, left knee, subsequent encounter +S83142S Lateral subluxation of proximal end of tibia, left knee, sequela +S83143A Lateral subluxation of proximal end of tibia, unspecified knee, initial encounter +S83143D Lateral subluxation of proximal end of tibia, unspecified knee, subsequent encounter +S83143S Lateral subluxation of proximal end of tibia, unspecified knee, sequela +S83144A Lateral dislocation of proximal end of tibia, right knee, initial encounter +S83144D Lateral dislocation of proximal end of tibia, right knee, subsequent encounter +S83144S Lateral dislocation of proximal end of tibia, right knee, sequela +S83145A Lateral dislocation of proximal end of tibia, left knee, initial encounter +S83145D Lateral dislocation of proximal end of tibia, left knee, subsequent encounter +S83145S Lateral dislocation of proximal end of tibia, left knee, sequela +S83146A Lateral dislocation of proximal end of tibia, unspecified knee, initial encounter +S83146D Lateral dislocation of proximal end of tibia, unspecified knee, subsequent encounter +S83146S Lateral dislocation of proximal end of tibia, unspecified knee, sequela +S83191A Other subluxation of right knee, initial encounter +S83191D Other subluxation of right knee, subsequent encounter +S83191S Other subluxation of right knee, sequela +S83192A Other subluxation of left knee, initial encounter +S83192D Other subluxation of left knee, subsequent encounter +S83192S Other subluxation of left knee, sequela +S83193A Other subluxation of unspecified knee, initial encounter +S83193D Other subluxation of unspecified knee, subsequent encounter +S83193S Other subluxation of unspecified knee, sequela +S83194A Other dislocation of right knee, initial encounter +S83194D Other dislocation of right knee, subsequent encounter +S83194S Other dislocation of right knee, sequela +S83195A Other dislocation of left knee, initial encounter +S83195D Other dislocation of left knee, subsequent encounter +S83195S Other dislocation of left knee, sequela +S83196A Other dislocation of unspecified knee, initial encounter +S83196D Other dislocation of unspecified knee, subsequent encounter +S83196S Other dislocation of unspecified knee, sequela +S83200A Bucket-handle tear of unspecified meniscus, current injury, right knee, initial encounter +S83200D Bucket-handle tear of unspecified meniscus, current injury, right knee, subsequent encounter +S83200S Bucket-handle tear of unspecified meniscus, current injury, right knee, sequela +S83201A Bucket-handle tear of unspecified meniscus, current injury, left knee, initial encounter +S83201D Bucket-handle tear of unspecified meniscus, current injury, left knee, subsequent encounter +S83201S Bucket-handle tear of unspecified meniscus, current injury, left knee, sequela +S83202A Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, initial encounter +S83202D Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter +S83202S Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, sequela +S83203A Other tear of unspecified meniscus, current injury, right knee, initial encounter +S83203D Other tear of unspecified meniscus, current injury, right knee, subsequent encounter +S83203S Other tear of unspecified meniscus, current injury, right knee, sequela +S83204A Other tear of unspecified meniscus, current injury, left knee, initial encounter +S83204D Other tear of unspecified meniscus, current injury, left knee, subsequent encounter +S83204S Other tear of unspecified meniscus, current injury, left knee, sequela +S83205A Other tear of unspecified meniscus, current injury, unspecified knee, initial encounter +S83205D Other tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter +S83205S Other tear of unspecified meniscus, current injury, unspecified knee, sequela +S83206A Unspecified tear of unspecified meniscus, current injury, right knee, initial encounter +S83206D Unspecified tear of unspecified meniscus, current injury, right knee, subsequent encounter +S83206S Unspecified tear of unspecified meniscus, current injury, right knee, sequela +S83207A Unspecified tear of unspecified meniscus, current injury, left knee, initial encounter +S83207D Unspecified tear of unspecified meniscus, current injury, left knee, subsequent encounter +S83207S Unspecified tear of unspecified meniscus, current injury, left knee, sequela +S83209A Unspecified tear of unspecified meniscus, current injury, unspecified knee, initial encounter +S83209D Unspecified tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter +S83209S Unspecified tear of unspecified meniscus, current injury, unspecified knee, sequela +S83211A Bucket-handle tear of medial meniscus, current injury, right knee, initial encounter +S83211D Bucket-handle tear of medial meniscus, current injury, right knee, subsequent encounter +S83211S Bucket-handle tear of medial meniscus, current injury, right knee, sequela +S83212A Bucket-handle tear of medial meniscus, current injury, left knee, initial encounter +S83212D Bucket-handle tear of medial meniscus, current injury, left knee, subsequent encounter +S83212S Bucket-handle tear of medial meniscus, current injury, left knee, sequela +S83219A Bucket-handle tear of medial meniscus, current injury, unspecified knee, initial encounter +S83219D Bucket-handle tear of medial meniscus, current injury, unspecified knee, subsequent encounter +S83219S Bucket-handle tear of medial meniscus, current injury, unspecified knee, sequela +S83221A Peripheral tear of medial meniscus, current injury, right knee, initial encounter +S83221D Peripheral tear of medial meniscus, current injury, right knee, subsequent encounter +S83221S Peripheral tear of medial meniscus, current injury, right knee, sequela +S83222A Peripheral tear of medial meniscus, current injury, left knee, initial encounter +S83222D Peripheral tear of medial meniscus, current injury, left knee, subsequent encounter +S83222S Peripheral tear of medial meniscus, current injury, left knee, sequela +S83229A Peripheral tear of medial meniscus, current injury, unspecified knee, initial encounter +S83229D Peripheral tear of medial meniscus, current injury, unspecified knee, subsequent encounter +S83229S Peripheral tear of medial meniscus, current injury, unspecified knee, sequela +S83231A Complex tear of medial meniscus, current injury, right knee, initial encounter +S83231D Complex tear of medial meniscus, current injury, right knee, subsequent encounter +S83231S Complex tear of medial meniscus, current injury, right knee, sequela +S83232A Complex tear of medial meniscus, current injury, left knee, initial encounter +S83232D Complex tear of medial meniscus, current injury, left knee, subsequent encounter +S83232S Complex tear of medial meniscus, current injury, left knee, sequela +S83239A Complex tear of medial meniscus, current injury, unspecified knee, initial encounter +S83239D Complex tear of medial meniscus, current injury, unspecified knee, subsequent encounter +S83239S Complex tear of medial meniscus, current injury, unspecified knee, sequela +S83241A Other tear of medial meniscus, current injury, right knee, initial encounter +S83241D Other tear of medial meniscus, current injury, right knee, subsequent encounter +S83241S Other tear of medial meniscus, current injury, right knee, sequela +S83242A Other tear of medial meniscus, current injury, left knee, initial encounter +S83242D Other tear of medial meniscus, current injury, left knee, subsequent encounter +S83242S Other tear of medial meniscus, current injury, left knee, sequela +S83249A Other tear of medial meniscus, current injury, unspecified knee, initial encounter +S83249D Other tear of medial meniscus, current injury, unspecified knee, subsequent encounter +S83249S Other tear of medial meniscus, current injury, unspecified knee, sequela +S83251A Bucket-handle tear of lateral meniscus, current injury, right knee, initial encounter +S83251D Bucket-handle tear of lateral meniscus, current injury, right knee, subsequent encounter +S83251S Bucket-handle tear of lateral meniscus, current injury, right knee, sequela +S83252A Bucket-handle tear of lateral meniscus, current injury, left knee, initial encounter +S83252D Bucket-handle tear of lateral meniscus, current injury, left knee, subsequent encounter +S83252S Bucket-handle tear of lateral meniscus, current injury, left knee, sequela +S83259A Bucket-handle tear of lateral meniscus, current injury, unspecified knee, initial encounter +S83259D Bucket-handle tear of lateral meniscus, current injury, unspecified knee, subsequent encounter +S83259S Bucket-handle tear of lateral meniscus, current injury, unspecified knee, sequela +S83261A Peripheral tear of lateral meniscus, current injury, right knee, initial encounter +S83261D Peripheral tear of lateral meniscus, current injury, right knee, subsequent encounter +S83261S Peripheral tear of lateral meniscus, current injury, right knee, sequela +S83262A Peripheral tear of lateral meniscus, current injury, left knee, initial encounter +S83262D Peripheral tear of lateral meniscus, current injury, left knee, subsequent encounter +S83262S Peripheral tear of lateral meniscus, current injury, left knee, sequela +S83269A Peripheral tear of lateral meniscus, current injury, unspecified knee, initial encounter +S83269D Peripheral tear of lateral meniscus, current injury, unspecified knee, subsequent encounter +S83269S Peripheral tear of lateral meniscus, current injury, unspecified knee, sequela +S83271A Complex tear of lateral meniscus, current injury, right knee, initial encounter +S83271D Complex tear of lateral meniscus, current injury, right knee, subsequent encounter +S83271S Complex tear of lateral meniscus, current injury, right knee, sequela +S83272A Complex tear of lateral meniscus, current injury, left knee, initial encounter +S83272D Complex tear of lateral meniscus, current injury, left knee, subsequent encounter +S83272S Complex tear of lateral meniscus, current injury, left knee, sequela +S83279A Complex tear of lateral meniscus, current injury, unspecified knee, initial encounter +S83279D Complex tear of lateral meniscus, current injury, unspecified knee, subsequent encounter +S83279S Complex tear of lateral meniscus, current injury, unspecified knee, sequela +S83281A Other tear of lateral meniscus, current injury, right knee, initial encounter +S83281D Other tear of lateral meniscus, current injury, right knee, subsequent encounter +S83281S Other tear of lateral meniscus, current injury, right knee, sequela +S83282A Other tear of lateral meniscus, current injury, left knee, initial encounter +S83282D Other tear of lateral meniscus, current injury, left knee, subsequent encounter +S83282S Other tear of lateral meniscus, current injury, left knee, sequela +S83289A Other tear of lateral meniscus, current injury, unspecified knee, initial encounter +S83289D Other tear of lateral meniscus, current injury, unspecified knee, subsequent encounter +S83289S Other tear of lateral meniscus, current injury, unspecified knee, sequela +S8330XA Tear of articular cartilage of unspecified knee, current, initial encounter +S8330XD Tear of articular cartilage of unspecified knee, current, subsequent encounter +S8330XS Tear of articular cartilage of unspecified knee, current, sequela +S8331XA Tear of articular cartilage of right knee, current, initial encounter +S8331XD Tear of articular cartilage of right knee, current, subsequent encounter +S8331XS Tear of articular cartilage of right knee, current, sequela +S8332XA Tear of articular cartilage of left knee, current, initial encounter +S8332XD Tear of articular cartilage of left knee, current, subsequent encounter +S8332XS Tear of articular cartilage of left knee, current, sequela +S83401A Sprain of unspecified collateral ligament of right knee, initial encounter +S83401D Sprain of unspecified collateral ligament of right knee, subsequent encounter +S83401S Sprain of unspecified collateral ligament of right knee, sequela +S83402A Sprain of unspecified collateral ligament of left knee, initial encounter +S83402D Sprain of unspecified collateral ligament of left knee, subsequent encounter +S83402S Sprain of unspecified collateral ligament of left knee, sequela +S83409A Sprain of unspecified collateral ligament of unspecified knee, initial encounter +S83409D Sprain of unspecified collateral ligament of unspecified knee, subsequent encounter +S83409S Sprain of unspecified collateral ligament of unspecified knee, sequela +S83411A Sprain of medial collateral ligament of right knee, initial encounter +S83411D Sprain of medial collateral ligament of right knee, subsequent encounter +S83411S Sprain of medial collateral ligament of right knee, sequela +S83412A Sprain of medial collateral ligament of left knee, initial encounter +S83412D Sprain of medial collateral ligament of left knee, subsequent encounter +S83412S Sprain of medial collateral ligament of left knee, sequela +S83419A Sprain of medial collateral ligament of unspecified knee, initial encounter +S83419D Sprain of medial collateral ligament of unspecified knee, subsequent encounter +S83419S Sprain of medial collateral ligament of unspecified knee, sequela +S83421A Sprain of lateral collateral ligament of right knee, initial encounter +S83421D Sprain of lateral collateral ligament of right knee, subsequent encounter +S83421S Sprain of lateral collateral ligament of right knee, sequela +S83422A Sprain of lateral collateral ligament of left knee, initial encounter +S83422D Sprain of lateral collateral ligament of left knee, subsequent encounter +S83422S Sprain of lateral collateral ligament of left knee, sequela +S83429A Sprain of lateral collateral ligament of unspecified knee, initial encounter +S83429D Sprain of lateral collateral ligament of unspecified knee, subsequent encounter +S83429S Sprain of lateral collateral ligament of unspecified knee, sequela +S83501A Sprain of unspecified cruciate ligament of right knee, initial encounter +S83501D Sprain of unspecified cruciate ligament of right knee, subsequent encounter +S83501S Sprain of unspecified cruciate ligament of right knee, sequela +S83502A Sprain of unspecified cruciate ligament of left knee, initial encounter +S83502D Sprain of unspecified cruciate ligament of left knee, subsequent encounter +S83502S Sprain of unspecified cruciate ligament of left knee, sequela +S83509A Sprain of unspecified cruciate ligament of unspecified knee, initial encounter +S83509D Sprain of unspecified cruciate ligament of unspecified knee, subsequent encounter +S83509S Sprain of unspecified cruciate ligament of unspecified knee, sequela +S83511A Sprain of anterior cruciate ligament of right knee, initial encounter +S83511D Sprain of anterior cruciate ligament of right knee, subsequent encounter +S83511S Sprain of anterior cruciate ligament of right knee, sequela +S83512A Sprain of anterior cruciate ligament of left knee, initial encounter +S83512D Sprain of anterior cruciate ligament of left knee, subsequent encounter +S83512S Sprain of anterior cruciate ligament of left knee, sequela +S83519A Sprain of anterior cruciate ligament of unspecified knee, initial encounter +S83519D Sprain of anterior cruciate ligament of unspecified knee, subsequent encounter +S83519S Sprain of anterior cruciate ligament of unspecified knee, sequela +S83521A Sprain of posterior cruciate ligament of right knee, initial encounter +S83521D Sprain of posterior cruciate ligament of right knee, subsequent encounter +S83521S Sprain of posterior cruciate ligament of right knee, sequela +S83522A Sprain of posterior cruciate ligament of left knee, initial encounter +S83522D Sprain of posterior cruciate ligament of left knee, subsequent encounter +S83522S Sprain of posterior cruciate ligament of left knee, sequela +S83529A Sprain of posterior cruciate ligament of unspecified knee, initial encounter +S83529D Sprain of posterior cruciate ligament of unspecified knee, subsequent encounter +S83529S Sprain of posterior cruciate ligament of unspecified knee, sequela +S8360XA Sprain of the superior tibiofibular joint and ligament, unspecified knee, initial encounter +S8360XD Sprain of the superior tibiofibular joint and ligament, unspecified knee, subsequent encounter +S8360XS Sprain of the superior tibiofibular joint and ligament, unspecified knee, sequela +S8361XA Sprain of the superior tibiofibular joint and ligament, right knee, initial encounter +S8361XD Sprain of the superior tibiofibular joint and ligament, right knee, subsequent encounter +S8361XS Sprain of the superior tibiofibular joint and ligament, right knee, sequela +S8362XA Sprain of the superior tibiofibular joint and ligament, left knee, initial encounter +S8362XD Sprain of the superior tibiofibular joint and ligament, left knee, subsequent encounter +S8362XS Sprain of the superior tibiofibular joint and ligament, left knee, sequela +S838X1A Sprain of other specified parts of right knee, initial encounter +S838X1D Sprain of other specified parts of right knee, subsequent encounter +S838X1S Sprain of other specified parts of right knee, sequela +S838X2A Sprain of other specified parts of left knee, initial encounter +S838X2D Sprain of other specified parts of left knee, subsequent encounter +S838X2S Sprain of other specified parts of left knee, sequela +S838X9A Sprain of other specified parts of unspecified knee, initial encounter +S838X9D Sprain of other specified parts of unspecified knee, subsequent encounter +S838X9S Sprain of other specified parts of unspecified knee, sequela +S8390XA Sprain of unspecified site of unspecified knee, initial encounter +S8390XD Sprain of unspecified site of unspecified knee, subsequent encounter +S8390XS Sprain of unspecified site of unspecified knee, sequela +S8391XA Sprain of unspecified site of right knee, initial encounter +S8391XD Sprain of unspecified site of right knee, subsequent encounter +S8391XS Sprain of unspecified site of right knee, sequela +S8392XA Sprain of unspecified site of left knee, initial encounter +S8392XD Sprain of unspecified site of left knee, subsequent encounter +S8392XS Sprain of unspecified site of left knee, sequela +S8400XA Injury of tibial nerve at lower leg level, unspecified leg, initial encounter +S8400XD Injury of tibial nerve at lower leg level, unspecified leg, subsequent encounter +S8400XS Injury of tibial nerve at lower leg level, unspecified leg, sequela +S8401XA Injury of tibial nerve at lower leg level, right leg, initial encounter +S8401XD Injury of tibial nerve at lower leg level, right leg, subsequent encounter +S8401XS Injury of tibial nerve at lower leg level, right leg, sequela +S8402XA Injury of tibial nerve at lower leg level, left leg, initial encounter +S8402XD Injury of tibial nerve at lower leg level, left leg, subsequent encounter +S8402XS Injury of tibial nerve at lower leg level, left leg, sequela +S8410XA Injury of peroneal nerve at lower leg level, unspecified leg, initial encounter +S8410XD Injury of peroneal nerve at lower leg level, unspecified leg, subsequent encounter +S8410XS Injury of peroneal nerve at lower leg level, unspecified leg, sequela +S8411XA Injury of peroneal nerve at lower leg level, right leg, initial encounter +S8411XD Injury of peroneal nerve at lower leg level, right leg, subsequent encounter +S8411XS Injury of peroneal nerve at lower leg level, right leg, sequela +S8412XA Injury of peroneal nerve at lower leg level, left leg, initial encounter +S8412XD Injury of peroneal nerve at lower leg level, left leg, subsequent encounter +S8412XS Injury of peroneal nerve at lower leg level, left leg, sequela +S8420XA Injury of cutaneous sensory nerve at lower leg level, unspecified leg, initial encounter +S8420XD Injury of cutaneous sensory nerve at lower leg level, unspecified leg, subsequent encounter +S8420XS Injury of cutaneous sensory nerve at lower leg level, unspecified leg, sequela +S8421XA Injury of cutaneous sensory nerve at lower leg level, right leg, initial encounter +S8421XD Injury of cutaneous sensory nerve at lower leg level, right leg, subsequent encounter +S8421XS Injury of cutaneous sensory nerve at lower leg level, right leg, sequela +S8422XA Injury of cutaneous sensory nerve at lower leg level, left leg, initial encounter +S8422XD Injury of cutaneous sensory nerve at lower leg level, left leg, subsequent encounter +S8422XS Injury of cutaneous sensory nerve at lower leg level, left leg, sequela +S84801A Injury of other nerves at lower leg level, right leg, initial encounter +S84801D Injury of other nerves at lower leg level, right leg, subsequent encounter +S84801S Injury of other nerves at lower leg level, right leg, sequela +S84802A Injury of other nerves at lower leg level, left leg, initial encounter +S84802D Injury of other nerves at lower leg level, left leg, subsequent encounter +S84802S Injury of other nerves at lower leg level, left leg, sequela +S84809A Injury of other nerves at lower leg level, unspecified leg, initial encounter +S84809D Injury of other nerves at lower leg level, unspecified leg, subsequent encounter +S84809S Injury of other nerves at lower leg level, unspecified leg, sequela +S8490XA Injury of unspecified nerve at lower leg level, unspecified leg, initial encounter +S8490XD Injury of unspecified nerve at lower leg level, unspecified leg, subsequent encounter +S8490XS Injury of unspecified nerve at lower leg level, unspecified leg, sequela +S8491XA Injury of unspecified nerve at lower leg level, right leg, initial encounter +S8491XD Injury of unspecified nerve at lower leg level, right leg, subsequent encounter +S8491XS Injury of unspecified nerve at lower leg level, right leg, sequela +S8492XA Injury of unspecified nerve at lower leg level, left leg, initial encounter +S8492XD Injury of unspecified nerve at lower leg level, left leg, subsequent encounter +S8492XS Injury of unspecified nerve at lower leg level, left leg, sequela +S85001A Unspecified injury of popliteal artery, right leg, initial encounter +S85001D Unspecified injury of popliteal artery, right leg, subsequent encounter +S85001S Unspecified injury of popliteal artery, right leg, sequela +S85002A Unspecified injury of popliteal artery, left leg, initial encounter +S85002D Unspecified injury of popliteal artery, left leg, subsequent encounter +S85002S Unspecified injury of popliteal artery, left leg, sequela +S85009A Unspecified injury of popliteal artery, unspecified leg, initial encounter +S85009D Unspecified injury of popliteal artery, unspecified leg, subsequent encounter +S85009S Unspecified injury of popliteal artery, unspecified leg, sequela +S85011A Laceration of popliteal artery, right leg, initial encounter +S85011D Laceration of popliteal artery, right leg, subsequent encounter +S85011S Laceration of popliteal artery, right leg, sequela +S85012A Laceration of popliteal artery, left leg, initial encounter +S85012D Laceration of popliteal artery, left leg, subsequent encounter +S85012S Laceration of popliteal artery, left leg, sequela +S85019A Laceration of popliteal artery, unspecified leg, initial encounter +S85019D Laceration of popliteal artery, unspecified leg, subsequent encounter +S85019S Laceration of popliteal artery, unspecified leg, sequela +S85091A Other specified injury of popliteal artery, right leg, initial encounter +S85091D Other specified injury of popliteal artery, right leg, subsequent encounter +S85091S Other specified injury of popliteal artery, right leg, sequela +S85092A Other specified injury of popliteal artery, left leg, initial encounter +S85092D Other specified injury of popliteal artery, left leg, subsequent encounter +S85092S Other specified injury of popliteal artery, left leg, sequela +S85099A Other specified injury of popliteal artery, unspecified leg, initial encounter +S85099D Other specified injury of popliteal artery, unspecified leg, subsequent encounter +S85099S Other specified injury of popliteal artery, unspecified leg, sequela +S85101A Unspecified injury of unspecified tibial artery, right leg, initial encounter +S85101D Unspecified injury of unspecified tibial artery, right leg, subsequent encounter +S85101S Unspecified injury of unspecified tibial artery, right leg, sequela +S85102A Unspecified injury of unspecified tibial artery, left leg, initial encounter +S85102D Unspecified injury of unspecified tibial artery, left leg, subsequent encounter +S85102S Unspecified injury of unspecified tibial artery, left leg, sequela +S85109A Unspecified injury of unspecified tibial artery, unspecified leg, initial encounter +S85109D Unspecified injury of unspecified tibial artery, unspecified leg, subsequent encounter +S85109S Unspecified injury of unspecified tibial artery, unspecified leg, sequela +S85111A Laceration of unspecified tibial artery, right leg, initial encounter +S85111D Laceration of unspecified tibial artery, right leg, subsequent encounter +S85111S Laceration of unspecified tibial artery, right leg, sequela +S85112A Laceration of unspecified tibial artery, left leg, initial encounter +S85112D Laceration of unspecified tibial artery, left leg, subsequent encounter +S85112S Laceration of unspecified tibial artery, left leg, sequela +S85119A Laceration of unspecified tibial artery, unspecified leg, initial encounter +S85119D Laceration of unspecified tibial artery, unspecified leg, subsequent encounter +S85119S Laceration of unspecified tibial artery, unspecified leg, sequela +S85121A Other specified injury of unspecified tibial artery, right leg, initial encounter +S85121D Other specified injury of unspecified tibial artery, right leg, subsequent encounter +S85121S Other specified injury of unspecified tibial artery, right leg, sequela +S85122A Other specified injury of unspecified tibial artery, left leg, initial encounter +S85122D Other specified injury of unspecified tibial artery, left leg, subsequent encounter +S85122S Other specified injury of unspecified tibial artery, left leg, sequela +S85129A Other specified injury of unspecified tibial artery, unspecified leg, initial encounter +S85129D Other specified injury of unspecified tibial artery, unspecified leg, subsequent encounter +S85129S Other specified injury of unspecified tibial artery, unspecified leg, sequela +S85131A Unspecified injury of anterior tibial artery, right leg, initial encounter +S85131D Unspecified injury of anterior tibial artery, right leg, subsequent encounter +S85131S Unspecified injury of anterior tibial artery, right leg, sequela +S85132A Unspecified injury of anterior tibial artery, left leg, initial encounter +S85132D Unspecified injury of anterior tibial artery, left leg, subsequent encounter +S85132S Unspecified injury of anterior tibial artery, left leg, sequela +S85139A Unspecified injury of anterior tibial artery, unspecified leg, initial encounter +S85139D Unspecified injury of anterior tibial artery, unspecified leg, subsequent encounter +S85139S Unspecified injury of anterior tibial artery, unspecified leg, sequela +S85141A Laceration of anterior tibial artery, right leg, initial encounter +S85141D Laceration of anterior tibial artery, right leg, subsequent encounter +S85141S Laceration of anterior tibial artery, right leg, sequela +S85142A Laceration of anterior tibial artery, left leg, initial encounter +S85142D Laceration of anterior tibial artery, left leg, subsequent encounter +S85142S Laceration of anterior tibial artery, left leg, sequela +S85149A Laceration of anterior tibial artery, unspecified leg, initial encounter +S85149D Laceration of anterior tibial artery, unspecified leg, subsequent encounter +S85149S Laceration of anterior tibial artery, unspecified leg, sequela +S85151A Other specified injury of anterior tibial artery, right leg, initial encounter +S85151D Other specified injury of anterior tibial artery, right leg, subsequent encounter +S85151S Other specified injury of anterior tibial artery, right leg, sequela +S85152A Other specified injury of anterior tibial artery, left leg, initial encounter +S85152D Other specified injury of anterior tibial artery, left leg, subsequent encounter +S85152S Other specified injury of anterior tibial artery, left leg, sequela +S85159A Other specified injury of anterior tibial artery, unspecified leg, initial encounter +S85159D Other specified injury of anterior tibial artery, unspecified leg, subsequent encounter +S85159S Other specified injury of anterior tibial artery, unspecified leg, sequela +S85161A Unspecified injury of posterior tibial artery, right leg, initial encounter +S85161D Unspecified injury of posterior tibial artery, right leg, subsequent encounter +S85161S Unspecified injury of posterior tibial artery, right leg, sequela +S85162A Unspecified injury of posterior tibial artery, left leg, initial encounter +S85162D Unspecified injury of posterior tibial artery, left leg, subsequent encounter +S85162S Unspecified injury of posterior tibial artery, left leg, sequela +S85169A Unspecified injury of posterior tibial artery, unspecified leg, initial encounter +S85169D Unspecified injury of posterior tibial artery, unspecified leg, subsequent encounter +S85169S Unspecified injury of posterior tibial artery, unspecified leg, sequela +S85171A Laceration of posterior tibial artery, right leg, initial encounter +S85171D Laceration of posterior tibial artery, right leg, subsequent encounter +S85171S Laceration of posterior tibial artery, right leg, sequela +S85172A Laceration of posterior tibial artery, left leg, initial encounter +S85172D Laceration of posterior tibial artery, left leg, subsequent encounter +S85172S Laceration of posterior tibial artery, left leg, sequela +S85179A Laceration of posterior tibial artery, unspecified leg, initial encounter +S85179D Laceration of posterior tibial artery, unspecified leg, subsequent encounter +S85179S Laceration of posterior tibial artery, unspecified leg, sequela +S85181A Other specified injury of posterior tibial artery, right leg, initial encounter +S85181D Other specified injury of posterior tibial artery, right leg, subsequent encounter +S85181S Other specified injury of posterior tibial artery, right leg, sequela +S85182A Other specified injury of posterior tibial artery, left leg, initial encounter +S85182D Other specified injury of posterior tibial artery, left leg, subsequent encounter +S85182S Other specified injury of posterior tibial artery, left leg, sequela +S85189A Other specified injury of posterior tibial artery, unspecified leg, initial encounter +S85189D Other specified injury of posterior tibial artery, unspecified leg, subsequent encounter +S85189S Other specified injury of posterior tibial artery, unspecified leg, sequela +S85201A Unspecified injury of peroneal artery, right leg, initial encounter +S85201D Unspecified injury of peroneal artery, right leg, subsequent encounter +S85201S Unspecified injury of peroneal artery, right leg, sequela +S85202A Unspecified injury of peroneal artery, left leg, initial encounter +S85202D Unspecified injury of peroneal artery, left leg, subsequent encounter +S85202S Unspecified injury of peroneal artery, left leg, sequela +S85209A Unspecified injury of peroneal artery, unspecified leg, initial encounter +S85209D Unspecified injury of peroneal artery, unspecified leg, subsequent encounter +S85209S Unspecified injury of peroneal artery, unspecified leg, sequela +S85211A Laceration of peroneal artery, right leg, initial encounter +S85211D Laceration of peroneal artery, right leg, subsequent encounter +S85211S Laceration of peroneal artery, right leg, sequela +S85212A Laceration of peroneal artery, left leg, initial encounter +S85212D Laceration of peroneal artery, left leg, subsequent encounter +S85212S Laceration of peroneal artery, left leg, sequela +S85219A Laceration of peroneal artery, unspecified leg, initial encounter +S85219D Laceration of peroneal artery, unspecified leg, subsequent encounter +S85219S Laceration of peroneal artery, unspecified leg, sequela +S85291A Other specified injury of peroneal artery, right leg, initial encounter +S85291D Other specified injury of peroneal artery, right leg, subsequent encounter +S85291S Other specified injury of peroneal artery, right leg, sequela +S85292A Other specified injury of peroneal artery, left leg, initial encounter +S85292D Other specified injury of peroneal artery, left leg, subsequent encounter +S85292S Other specified injury of peroneal artery, left leg, sequela +S85299A Other specified injury of peroneal artery, unspecified leg, initial encounter +S85299D Other specified injury of peroneal artery, unspecified leg, subsequent encounter +S85299S Other specified injury of peroneal artery, unspecified leg, sequela +S85301A Unspecified injury of greater saphenous vein at lower leg level, right leg, initial encounter +S85301D Unspecified injury of greater saphenous vein at lower leg level, right leg, subsequent encounter +S85301S Unspecified injury of greater saphenous vein at lower leg level, right leg, sequela +S85302A Unspecified injury of greater saphenous vein at lower leg level, left leg, initial encounter +S85302D Unspecified injury of greater saphenous vein at lower leg level, left leg, subsequent encounter +S85302S Unspecified injury of greater saphenous vein at lower leg level, left leg, sequela +S85309A Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, initial encounter +S85309D Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, subsequent encounter +S85309S Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, sequela +S85311A Laceration of greater saphenous vein at lower leg level, right leg, initial encounter +S85311D Laceration of greater saphenous vein at lower leg level, right leg, subsequent encounter +S85311S Laceration of greater saphenous vein at lower leg level, right leg, sequela +S85312A Laceration of greater saphenous vein at lower leg level, left leg, initial encounter +S85312D Laceration of greater saphenous vein at lower leg level, left leg, subsequent encounter +S85312S Laceration of greater saphenous vein at lower leg level, left leg, sequela +S85319A Laceration of greater saphenous vein at lower leg level, unspecified leg, initial encounter +S85319D Laceration of greater saphenous vein at lower leg level, unspecified leg, subsequent encounter +S85319S Laceration of greater saphenous vein at lower leg level, unspecified leg, sequela +S85391A Other specified injury of greater saphenous vein at lower leg level, right leg, initial encounter +S85391D Other specified injury of greater saphenous vein at lower leg level, right leg, subsequent encounter +S85391S Other specified injury of greater saphenous vein at lower leg level, right leg, sequela +S85392A Other specified injury of greater saphenous vein at lower leg level, left leg, initial encounter +S85392D Other specified injury of greater saphenous vein at lower leg level, left leg, subsequent encounter +S85392S Other specified injury of greater saphenous vein at lower leg level, left leg, sequela +S85399A Other specified injury of greater saphenous vein at lower leg level, unspecified leg, initial encounter +S85399D Other specified injury of greater saphenous vein at lower leg level, unspecified leg, subsequent encounter +S85399S Other specified injury of greater saphenous vein at lower leg level, unspecified leg, sequela +S85401A Unspecified injury of lesser saphenous vein at lower leg level, right leg, initial encounter +S85401D Unspecified injury of lesser saphenous vein at lower leg level, right leg, subsequent encounter +S85401S Unspecified injury of lesser saphenous vein at lower leg level, right leg, sequela +S85402A Unspecified injury of lesser saphenous vein at lower leg level, left leg, initial encounter +S85402D Unspecified injury of lesser saphenous vein at lower leg level, left leg, subsequent encounter +S85402S Unspecified injury of lesser saphenous vein at lower leg level, left leg, sequela +S85409A Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, initial encounter +S85409D Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, subsequent encounter +S85409S Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, sequela +S85411A Laceration of lesser saphenous vein at lower leg level, right leg, initial encounter +S85411D Laceration of lesser saphenous vein at lower leg level, right leg, subsequent encounter +S85411S Laceration of lesser saphenous vein at lower leg level, right leg, sequela +S85412A Laceration of lesser saphenous vein at lower leg level, left leg, initial encounter +S85412D Laceration of lesser saphenous vein at lower leg level, left leg, subsequent encounter +S85412S Laceration of lesser saphenous vein at lower leg level, left leg, sequela +S85419A Laceration of lesser saphenous vein at lower leg level, unspecified leg, initial encounter +S85419D Laceration of lesser saphenous vein at lower leg level, unspecified leg, subsequent encounter +S85419S Laceration of lesser saphenous vein at lower leg level, unspecified leg, sequela +S85491A Other specified injury of lesser saphenous vein at lower leg level, right leg, initial encounter +S85491D Other specified injury of lesser saphenous vein at lower leg level, right leg, subsequent encounter +S85491S Other specified injury of lesser saphenous vein at lower leg level, right leg, sequela +S85492A Other specified injury of lesser saphenous vein at lower leg level, left leg, initial encounter +S85492D Other specified injury of lesser saphenous vein at lower leg level, left leg, subsequent encounter +S85492S Other specified injury of lesser saphenous vein at lower leg level, left leg, sequela +S85499A Other specified injury of lesser saphenous vein at lower leg level, unspecified leg, initial encounter +S85499D Other specified injury of lesser saphenous vein at lower leg level, unspecified leg, subsequent encounter +S85499S Other specified injury of lesser saphenous vein at lower leg level, unspecified leg, sequela +S85501A Unspecified injury of popliteal vein, right leg, initial encounter +S85501D Unspecified injury of popliteal vein, right leg, subsequent encounter +S85501S Unspecified injury of popliteal vein, right leg, sequela +S85502A Unspecified injury of popliteal vein, left leg, initial encounter +S85502D Unspecified injury of popliteal vein, left leg, subsequent encounter +S85502S Unspecified injury of popliteal vein, left leg, sequela +S85509A Unspecified injury of popliteal vein, unspecified leg, initial encounter +S85509D Unspecified injury of popliteal vein, unspecified leg, subsequent encounter +S85509S Unspecified injury of popliteal vein, unspecified leg, sequela +S85511A Laceration of popliteal vein, right leg, initial encounter +S85511D Laceration of popliteal vein, right leg, subsequent encounter +S85511S Laceration of popliteal vein, right leg, sequela +S85512A Laceration of popliteal vein, left leg, initial encounter +S85512D Laceration of popliteal vein, left leg, subsequent encounter +S85512S Laceration of popliteal vein, left leg, sequela +S85519A Laceration of popliteal vein, unspecified leg, initial encounter +S85519D Laceration of popliteal vein, unspecified leg, subsequent encounter +S85519S Laceration of popliteal vein, unspecified leg, sequela +S85591A Other specified injury of popliteal vein, right leg, initial encounter +S85591D Other specified injury of popliteal vein, right leg, subsequent encounter +S85591S Other specified injury of popliteal vein, right leg, sequela +S85592A Other specified injury of popliteal vein, left leg, initial encounter +S85592D Other specified injury of popliteal vein, left leg, subsequent encounter +S85592S Other specified injury of popliteal vein, left leg, sequela +S85599A Other specified injury of popliteal vein, unspecified leg, initial encounter +S85599D Other specified injury of popliteal vein, unspecified leg, subsequent encounter +S85599S Other specified injury of popliteal vein, unspecified leg, sequela +S85801A Unspecified injury of other blood vessels at lower leg level, right leg, initial encounter +S85801D Unspecified injury of other blood vessels at lower leg level, right leg, subsequent encounter +S85801S Unspecified injury of other blood vessels at lower leg level, right leg, sequela +S85802A Unspecified injury of other blood vessels at lower leg level, left leg, initial encounter +S85802D Unspecified injury of other blood vessels at lower leg level, left leg, subsequent encounter +S85802S Unspecified injury of other blood vessels at lower leg level, left leg, sequela +S85809A Unspecified injury of other blood vessels at lower leg level, unspecified leg, initial encounter +S85809D Unspecified injury of other blood vessels at lower leg level, unspecified leg, subsequent encounter +S85809S Unspecified injury of other blood vessels at lower leg level, unspecified leg, sequela +S85811A Laceration of other blood vessels at lower leg level, right leg, initial encounter +S85811D Laceration of other blood vessels at lower leg level, right leg, subsequent encounter +S85811S Laceration of other blood vessels at lower leg level, right leg, sequela +S85812A Laceration of other blood vessels at lower leg level, left leg, initial encounter +S85812D Laceration of other blood vessels at lower leg level, left leg, subsequent encounter +S85812S Laceration of other blood vessels at lower leg level, left leg, sequela +S85819A Laceration of other blood vessels at lower leg level, unspecified leg, initial encounter +S85819D Laceration of other blood vessels at lower leg level, unspecified leg, subsequent encounter +S85819S Laceration of other blood vessels at lower leg level, unspecified leg, sequela +S85891A Other specified injury of other blood vessels at lower leg level, right leg, initial encounter +S85891D Other specified injury of other blood vessels at lower leg level, right leg, subsequent encounter +S85891S Other specified injury of other blood vessels at lower leg level, right leg, sequela +S85892A Other specified injury of other blood vessels at lower leg level, left leg, initial encounter +S85892D Other specified injury of other blood vessels at lower leg level, left leg, subsequent encounter +S85892S Other specified injury of other blood vessels at lower leg level, left leg, sequela +S85899A Other specified injury of other blood vessels at lower leg level, unspecified leg, initial encounter +S85899D Other specified injury of other blood vessels at lower leg level, unspecified leg, subsequent encounter +S85899S Other specified injury of other blood vessels at lower leg level, unspecified leg, sequela +S85901A Unspecified injury of unspecified blood vessel at lower leg level, right leg, initial encounter +S85901D Unspecified injury of unspecified blood vessel at lower leg level, right leg, subsequent encounter +S85901S Unspecified injury of unspecified blood vessel at lower leg level, right leg, sequela +S85902A Unspecified injury of unspecified blood vessel at lower leg level, left leg, initial encounter +S85902D Unspecified injury of unspecified blood vessel at lower leg level, left leg, subsequent encounter +S85902S Unspecified injury of unspecified blood vessel at lower leg level, left leg, sequela +S85909A Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg, initial encounter +S85909D Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg, subsequent encounter +S85909S Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg, sequela +S85911A Laceration of unspecified blood vessel at lower leg level, right leg, initial encounter +S85911D Laceration of unspecified blood vessel at lower leg level, right leg, subsequent encounter +S85911S Laceration of unspecified blood vessel at lower leg level, right leg, sequela +S85912A Laceration of unspecified blood vessel at lower leg level, left leg, initial encounter +S85912D Laceration of unspecified blood vessel at lower leg level, left leg, subsequent encounter +S85912S Laceration of unspecified blood vessel at lower leg level, left leg, sequela +S85919A Laceration of unspecified blood vessel at lower leg level, unspecified leg, initial encounter +S85919D Laceration of unspecified blood vessel at lower leg level, unspecified leg, subsequent encounter +S85919S Laceration of unspecified blood vessel at lower leg level, unspecified leg, sequela +S85991A Other specified injury of unspecified blood vessel at lower leg level, right leg, initial encounter +S85991D Other specified injury of unspecified blood vessel at lower leg level, right leg, subsequent encounter +S85991S Other specified injury of unspecified blood vessel at lower leg level, right leg, sequela +S85992A Other specified injury of unspecified blood vessel at lower leg level, left leg, initial encounter +S85992D Other specified injury of unspecified blood vessel at lower leg level, left leg, subsequent encounter +S85992S Other specified injury of unspecified blood vessel at lower leg level, left leg, sequela +S85999A Other specified injury of unspecified blood vessel at lower leg level, unspecified leg, initial encounter +S85999D Other specified injury of unspecified blood vessel at lower leg level, unspecified leg, subsequent encounter +S85999S Other specified injury of unspecified blood vessel at lower leg level, unspecified leg, sequela +S86001A Unspecified injury of right Achilles tendon, initial encounter +S86001D Unspecified injury of right Achilles tendon, subsequent encounter +S86001S Unspecified injury of right Achilles tendon, sequela +S86002A Unspecified injury of left Achilles tendon, initial encounter +S86002D Unspecified injury of left Achilles tendon, subsequent encounter +S86002S Unspecified injury of left Achilles tendon, sequela +S86009A Unspecified injury of unspecified Achilles tendon, initial encounter +S86009D Unspecified injury of unspecified Achilles tendon, subsequent encounter +S86009S Unspecified injury of unspecified Achilles tendon, sequela +S86011A Strain of right Achilles tendon, initial encounter +S86011D Strain of right Achilles tendon, subsequent encounter +S86011S Strain of right Achilles tendon, sequela +S86012A Strain of left Achilles tendon, initial encounter +S86012D Strain of left Achilles tendon, subsequent encounter +S86012S Strain of left Achilles tendon, sequela +S86019A Strain of unspecified Achilles tendon, initial encounter +S86019D Strain of unspecified Achilles tendon, subsequent encounter +S86019S Strain of unspecified Achilles tendon, sequela +S86021A Laceration of right Achilles tendon, initial encounter +S86021D Laceration of right Achilles tendon, subsequent encounter +S86021S Laceration of right Achilles tendon, sequela +S86022A Laceration of left Achilles tendon, initial encounter +S86022D Laceration of left Achilles tendon, subsequent encounter +S86022S Laceration of left Achilles tendon, sequela +S86029A Laceration of unspecified Achilles tendon, initial encounter +S86029D Laceration of unspecified Achilles tendon, subsequent encounter +S86029S Laceration of unspecified Achilles tendon, sequela +S86091A Other specified injury of right Achilles tendon, initial encounter +S86091D Other specified injury of right Achilles tendon, subsequent encounter +S86091S Other specified injury of right Achilles tendon, sequela +S86092A Other specified injury of left Achilles tendon, initial encounter +S86092D Other specified injury of left Achilles tendon, subsequent encounter +S86092S Other specified injury of left Achilles tendon, sequela +S86099A Other specified injury of unspecified Achilles tendon, initial encounter +S86099D Other specified injury of unspecified Achilles tendon, subsequent encounter +S86099S Other specified injury of unspecified Achilles tendon, sequela +S86101A Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter +S86101D Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter +S86101S Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela +S86102A Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter +S86102D Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter +S86102S Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela +S86109A Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter +S86109D Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter +S86109S Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela +S86111A Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter +S86111D Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter +S86111S Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela +S86112A Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter +S86112D Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter +S86112S Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela +S86119A Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter +S86119D Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter +S86119S Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela +S86121A Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter +S86121D Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter +S86121S Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela +S86122A Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter +S86122D Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter +S86122S Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela +S86129A Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter +S86129D Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter +S86129S Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela +S86191A Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter +S86191D Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter +S86191S Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela +S86192A Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter +S86192D Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter +S86192S Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela +S86199A Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter +S86199D Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter +S86199S Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela +S86201A Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter +S86201D Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter +S86201S Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela +S86202A Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter +S86202D Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter +S86202S Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela +S86209A Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter +S86209D Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter +S86209S Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela +S86211A Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter +S86211D Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter +S86211S Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela +S86212A Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter +S86212D Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter +S86212S Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela +S86219A Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter +S86219D Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter +S86219S Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela +S86221A Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter +S86221D Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter +S86221S Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela +S86222A Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter +S86222D Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter +S86222S Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela +S86229A Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter +S86229D Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter +S86229S Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela +S86291A Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter +S86291D Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter +S86291S Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela +S86292A Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter +S86292D Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter +S86292S Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela +S86299A Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter +S86299D Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter +S86299S Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela +S86301A Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter +S86301D Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter +S86301S Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela +S86302A Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter +S86302D Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter +S86302S Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela +S86309A Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter +S86309D Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter +S86309S Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela +S86311A Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter +S86311D Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter +S86311S Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela +S86312A Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter +S86312D Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter +S86312S Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela +S86319A Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter +S86319D Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter +S86319S Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela +S86321A Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter +S86321D Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter +S86321S Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela +S86322A Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter +S86322D Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter +S86322S Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela +S86329A Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter +S86329D Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter +S86329S Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela +S86391A Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter +S86391D Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter +S86391S Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela +S86392A Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter +S86392D Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter +S86392S Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela +S86399A Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter +S86399D Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter +S86399S Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela +S86801A Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +S86801D Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +S86801S Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, sequela +S86802A Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +S86802D Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +S86802S Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, sequela +S86809A Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +S86809D Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter +S86809S Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +S86811A Strain of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +S86811D Strain of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +S86811S Strain of other muscle(s) and tendon(s) at lower leg level, right leg, sequela +S86812A Strain of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +S86812D Strain of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +S86812S Strain of other muscle(s) and tendon(s) at lower leg level, left leg, sequela +S86819A Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +S86819D Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter +S86819S Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +S86821A Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +S86821D Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +S86821S Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, sequela +S86822A Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +S86822D Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +S86822S Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, sequela +S86829A Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +S86829D Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter +S86829S Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +S86891A Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +S86891D Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +S86891S Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, sequela +S86892A Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +S86892D Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +S86892S Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, sequela +S86899A Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +S86899D Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter +S86899S Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +S86901A Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +S86901D Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +S86901S Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela +S86902A Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +S86902D Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +S86902S Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela +S86909A Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +S86909D Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter +S86909S Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +S86911A Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +S86911D Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +S86911S Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela +S86912A Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +S86912D Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +S86912S Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela +S86919A Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +S86919D Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter +S86919S Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +S86921A Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +S86921D Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +S86921S Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela +S86922A Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +S86922D Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +S86922S Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela +S86929A Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +S86929D Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter +S86929S Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +S86991A Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +S86991D Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +S86991S Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela +S86992A Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +S86992D Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +S86992S Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela +S86999A Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +S86999D Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter +S86999S Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +S8700XA Crushing injury of unspecified knee, initial encounter +S8700XD Crushing injury of unspecified knee, subsequent encounter +S8700XS Crushing injury of unspecified knee, sequela +S8701XA Crushing injury of right knee, initial encounter +S8701XD Crushing injury of right knee, subsequent encounter +S8701XS Crushing injury of right knee, sequela +S8702XA Crushing injury of left knee, initial encounter +S8702XD Crushing injury of left knee, subsequent encounter +S8702XS Crushing injury of left knee, sequela +S8780XA Crushing injury of unspecified lower leg, initial encounter +S8780XD Crushing injury of unspecified lower leg, subsequent encounter +S8780XS Crushing injury of unspecified lower leg, sequela +S8781XA Crushing injury of right lower leg, initial encounter +S8781XD Crushing injury of right lower leg, subsequent encounter +S8781XS Crushing injury of right lower leg, sequela +S8782XA Crushing injury of left lower leg, initial encounter +S8782XD Crushing injury of left lower leg, subsequent encounter +S8782XS Crushing injury of left lower leg, sequela +S88011A Complete traumatic amputation at knee level, right lower leg, initial encounter +S88011D Complete traumatic amputation at knee level, right lower leg, subsequent encounter +S88011S Complete traumatic amputation at knee level, right lower leg, sequela +S88012A Complete traumatic amputation at knee level, left lower leg, initial encounter +S88012D Complete traumatic amputation at knee level, left lower leg, subsequent encounter +S88012S Complete traumatic amputation at knee level, left lower leg, sequela +S88019A Complete traumatic amputation at knee level, unspecified lower leg, initial encounter +S88019D Complete traumatic amputation at knee level, unspecified lower leg, subsequent encounter +S88019S Complete traumatic amputation at knee level, unspecified lower leg, sequela +S88021A Partial traumatic amputation at knee level, right lower leg, initial encounter +S88021D Partial traumatic amputation at knee level, right lower leg, subsequent encounter +S88021S Partial traumatic amputation at knee level, right lower leg, sequela +S88022A Partial traumatic amputation at knee level, left lower leg, initial encounter +S88022D Partial traumatic amputation at knee level, left lower leg, subsequent encounter +S88022S Partial traumatic amputation at knee level, left lower leg, sequela +S88029A Partial traumatic amputation at knee level, unspecified lower leg, initial encounter +S88029D Partial traumatic amputation at knee level, unspecified lower leg, subsequent encounter +S88029S Partial traumatic amputation at knee level, unspecified lower leg, sequela +S88111A Complete traumatic amputation at level between knee and ankle, right lower leg, initial encounter +S88111D Complete traumatic amputation at level between knee and ankle, right lower leg, subsequent encounter +S88111S Complete traumatic amputation at level between knee and ankle, right lower leg, sequela +S88112A Complete traumatic amputation at level between knee and ankle, left lower leg, initial encounter +S88112D Complete traumatic amputation at level between knee and ankle, left lower leg, subsequent encounter +S88112S Complete traumatic amputation at level between knee and ankle, left lower leg, sequela +S88119A Complete traumatic amputation at level between knee and ankle, unspecified lower leg, initial encounter +S88119D Complete traumatic amputation at level between knee and ankle, unspecified lower leg, subsequent encounter +S88119S Complete traumatic amputation at level between knee and ankle, unspecified lower leg, sequela +S88121A Partial traumatic amputation at level between knee and ankle, right lower leg, initial encounter +S88121D Partial traumatic amputation at level between knee and ankle, right lower leg, subsequent encounter +S88121S Partial traumatic amputation at level between knee and ankle, right lower leg, sequela +S88122A Partial traumatic amputation at level between knee and ankle, left lower leg, initial encounter +S88122D Partial traumatic amputation at level between knee and ankle, left lower leg, subsequent encounter +S88122S Partial traumatic amputation at level between knee and ankle, left lower leg, sequela +S88129A Partial traumatic amputation at level between knee and ankle, unspecified lower leg, initial encounter +S88129D Partial traumatic amputation at level between knee and ankle, unspecified lower leg, subsequent encounter +S88129S Partial traumatic amputation at level between knee and ankle, unspecified lower leg, sequela +S88911A Complete traumatic amputation of right lower leg, level unspecified, initial encounter +S88911D Complete traumatic amputation of right lower leg, level unspecified, subsequent encounter +S88911S Complete traumatic amputation of right lower leg, level unspecified, sequela +S88912A Complete traumatic amputation of left lower leg, level unspecified, initial encounter +S88912D Complete traumatic amputation of left lower leg, level unspecified, subsequent encounter +S88912S Complete traumatic amputation of left lower leg, level unspecified, sequela +S88919A Complete traumatic amputation of unspecified lower leg, level unspecified, initial encounter +S88919D Complete traumatic amputation of unspecified lower leg, level unspecified, subsequent encounter +S88919S Complete traumatic amputation of unspecified lower leg, level unspecified, sequela +S88921A Partial traumatic amputation of right lower leg, level unspecified, initial encounter +S88921D Partial traumatic amputation of right lower leg, level unspecified, subsequent encounter +S88921S Partial traumatic amputation of right lower leg, level unspecified, sequela +S88922A Partial traumatic amputation of left lower leg, level unspecified, initial encounter +S88922D Partial traumatic amputation of left lower leg, level unspecified, subsequent encounter +S88922S Partial traumatic amputation of left lower leg, level unspecified, sequela +S88929A Partial traumatic amputation of unspecified lower leg, level unspecified, initial encounter +S88929D Partial traumatic amputation of unspecified lower leg, level unspecified, subsequent encounter +S88929S Partial traumatic amputation of unspecified lower leg, level unspecified, sequela +S89001A Unspecified physeal fracture of upper end of right tibia, initial encounter for closed fracture +S89001D Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing +S89001G Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing +S89001K Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion +S89001P Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion +S89001S Unspecified physeal fracture of upper end of right tibia, sequela +S89002A Unspecified physeal fracture of upper end of left tibia, initial encounter for closed fracture +S89002D Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing +S89002G Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing +S89002K Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion +S89002P Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion +S89002S Unspecified physeal fracture of upper end of left tibia, sequela +S89009A Unspecified physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture +S89009D Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing +S89009G Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89009K Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion +S89009P Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion +S89009S Unspecified physeal fracture of upper end of unspecified tibia, sequela +S89011A Salter-Harris Type I physeal fracture of upper end of right tibia, initial encounter for closed fracture +S89011D Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing +S89011G Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing +S89011K Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion +S89011P Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion +S89011S Salter-Harris Type I physeal fracture of upper end of right tibia, sequela +S89012A Salter-Harris Type I physeal fracture of upper end of left tibia, initial encounter for closed fracture +S89012D Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing +S89012G Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing +S89012K Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion +S89012P Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion +S89012S Salter-Harris Type I physeal fracture of upper end of left tibia, sequela +S89019A Salter-Harris Type I physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture +S89019D Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing +S89019G Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89019K Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion +S89019P Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion +S89019S Salter-Harris Type I physeal fracture of upper end of unspecified tibia, sequela +S89021A Salter-Harris Type II physeal fracture of upper end of right tibia, initial encounter for closed fracture +S89021D Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing +S89021G Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing +S89021K Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion +S89021P Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion +S89021S Salter-Harris Type II physeal fracture of upper end of right tibia, sequela +S89022A Salter-Harris Type II physeal fracture of upper end of left tibia, initial encounter for closed fracture +S89022D Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing +S89022G Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing +S89022K Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion +S89022P Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion +S89022S Salter-Harris Type II physeal fracture of upper end of left tibia, sequela +S89029A Salter-Harris Type II physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture +S89029D Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing +S89029G Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89029K Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion +S89029P Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion +S89029S Salter-Harris Type II physeal fracture of upper end of unspecified tibia, sequela +S89031A Salter-Harris Type III physeal fracture of upper end of right tibia, initial encounter for closed fracture +S89031D Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing +S89031G Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing +S89031K Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion +S89031P Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion +S89031S Salter-Harris Type III physeal fracture of upper end of right tibia, sequela +S89032A Salter-Harris Type III physeal fracture of upper end of left tibia, initial encounter for closed fracture +S89032D Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing +S89032G Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing +S89032K Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion +S89032P Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion +S89032S Salter-Harris Type III physeal fracture of upper end of left tibia, sequela +S89039A Salter-Harris Type III physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture +S89039D Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing +S89039G Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89039K Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion +S89039P Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion +S89039S Salter-Harris Type III physeal fracture of upper end of unspecified tibia, sequela +S89041A Salter-Harris Type IV physeal fracture of upper end of right tibia, initial encounter for closed fracture +S89041D Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing +S89041G Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing +S89041K Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion +S89041P Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion +S89041S Salter-Harris Type IV physeal fracture of upper end of right tibia, sequela +S89042A Salter-Harris Type IV physeal fracture of upper end of left tibia, initial encounter for closed fracture +S89042D Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing +S89042G Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing +S89042K Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion +S89042P Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion +S89042S Salter-Harris Type IV physeal fracture of upper end of left tibia, sequela +S89049A Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture +S89049D Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing +S89049G Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89049K Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion +S89049P Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion +S89049S Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, sequela +S89091A Other physeal fracture of upper end of right tibia, initial encounter for closed fracture +S89091D Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing +S89091G Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing +S89091K Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion +S89091P Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion +S89091S Other physeal fracture of upper end of right tibia, sequela +S89092A Other physeal fracture of upper end of left tibia, initial encounter for closed fracture +S89092D Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing +S89092G Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing +S89092K Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion +S89092P Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion +S89092S Other physeal fracture of upper end of left tibia, sequela +S89099A Other physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture +S89099D Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing +S89099G Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89099K Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion +S89099P Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion +S89099S Other physeal fracture of upper end of unspecified tibia, sequela +S89101A Unspecified physeal fracture of lower end of right tibia, initial encounter for closed fracture +S89101D Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing +S89101G Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing +S89101K Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion +S89101P Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion +S89101S Unspecified physeal fracture of lower end of right tibia, sequela +S89102A Unspecified physeal fracture of lower end of left tibia, initial encounter for closed fracture +S89102D Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing +S89102G Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing +S89102K Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion +S89102P Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion +S89102S Unspecified physeal fracture of lower end of left tibia, sequela +S89109A Unspecified physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture +S89109D Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing +S89109G Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89109K Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion +S89109P Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion +S89109S Unspecified physeal fracture of lower end of unspecified tibia, sequela +S89111A Salter-Harris Type I physeal fracture of lower end of right tibia, initial encounter for closed fracture +S89111D Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing +S89111G Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing +S89111K Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion +S89111P Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion +S89111S Salter-Harris Type I physeal fracture of lower end of right tibia, sequela +S89112A Salter-Harris Type I physeal fracture of lower end of left tibia, initial encounter for closed fracture +S89112D Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing +S89112G Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing +S89112K Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion +S89112P Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion +S89112S Salter-Harris Type I physeal fracture of lower end of left tibia, sequela +S89119A Salter-Harris Type I physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture +S89119D Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing +S89119G Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89119K Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion +S89119P Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion +S89119S Salter-Harris Type I physeal fracture of lower end of unspecified tibia, sequela +S89121A Salter-Harris Type II physeal fracture of lower end of right tibia, initial encounter for closed fracture +S89121D Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing +S89121G Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing +S89121K Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion +S89121P Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion +S89121S Salter-Harris Type II physeal fracture of lower end of right tibia, sequela +S89122A Salter-Harris Type II physeal fracture of lower end of left tibia, initial encounter for closed fracture +S89122D Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing +S89122G Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing +S89122K Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion +S89122P Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion +S89122S Salter-Harris Type II physeal fracture of lower end of left tibia, sequela +S89129A Salter-Harris Type II physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture +S89129D Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing +S89129G Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89129K Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion +S89129P Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion +S89129S Salter-Harris Type II physeal fracture of lower end of unspecified tibia, sequela +S89131A Salter-Harris Type III physeal fracture of lower end of right tibia, initial encounter for closed fracture +S89131D Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing +S89131G Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing +S89131K Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion +S89131P Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion +S89131S Salter-Harris Type III physeal fracture of lower end of right tibia, sequela +S89132A Salter-Harris Type III physeal fracture of lower end of left tibia, initial encounter for closed fracture +S89132D Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing +S89132G Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing +S89132K Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion +S89132P Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion +S89132S Salter-Harris Type III physeal fracture of lower end of left tibia, sequela +S89139A Salter-Harris Type III physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture +S89139D Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing +S89139G Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89139K Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion +S89139P Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion +S89139S Salter-Harris Type III physeal fracture of lower end of unspecified tibia, sequela +S89141A Salter-Harris Type IV physeal fracture of lower end of right tibia, initial encounter for closed fracture +S89141D Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing +S89141G Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing +S89141K Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion +S89141P Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion +S89141S Salter-Harris Type IV physeal fracture of lower end of right tibia, sequela +S89142A Salter-Harris Type IV physeal fracture of lower end of left tibia, initial encounter for closed fracture +S89142D Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing +S89142G Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing +S89142K Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion +S89142P Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion +S89142S Salter-Harris Type IV physeal fracture of lower end of left tibia, sequela +S89149A Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture +S89149D Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing +S89149G Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89149K Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion +S89149P Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion +S89149S Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, sequela +S89191A Other physeal fracture of lower end of right tibia, initial encounter for closed fracture +S89191D Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing +S89191G Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing +S89191K Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion +S89191P Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion +S89191S Other physeal fracture of lower end of right tibia, sequela +S89192A Other physeal fracture of lower end of left tibia, initial encounter for closed fracture +S89192D Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing +S89192G Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing +S89192K Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion +S89192P Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion +S89192S Other physeal fracture of lower end of left tibia, sequela +S89199A Other physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture +S89199D Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing +S89199G Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing +S89199K Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion +S89199P Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion +S89199S Other physeal fracture of lower end of unspecified tibia, sequela +S89201A Unspecified physeal fracture of upper end of right fibula, initial encounter for closed fracture +S89201D Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing +S89201G Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing +S89201K Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion +S89201P Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion +S89201S Unspecified physeal fracture of upper end of right fibula, sequela +S89202A Unspecified physeal fracture of upper end of left fibula, initial encounter for closed fracture +S89202D Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing +S89202G Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing +S89202K Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion +S89202P Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion +S89202S Unspecified physeal fracture of upper end of left fibula, sequela +S89209A Unspecified physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture +S89209D Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing +S89209G Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing +S89209K Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion +S89209P Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion +S89209S Unspecified physeal fracture of upper end of unspecified fibula, sequela +S89211A Salter-Harris Type I physeal fracture of upper end of right fibula, initial encounter for closed fracture +S89211D Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing +S89211G Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing +S89211K Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion +S89211P Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion +S89211S Salter-Harris Type I physeal fracture of upper end of right fibula, sequela +S89212A Salter-Harris Type I physeal fracture of upper end of left fibula, initial encounter for closed fracture +S89212D Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing +S89212G Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing +S89212K Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion +S89212P Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion +S89212S Salter-Harris Type I physeal fracture of upper end of left fibula, sequela +S89219A Salter-Harris Type I physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture +S89219D Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing +S89219G Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing +S89219K Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion +S89219P Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion +S89219S Salter-Harris Type I physeal fracture of upper end of unspecified fibula, sequela +S89221A Salter-Harris Type II physeal fracture of upper end of right fibula, initial encounter for closed fracture +S89221D Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing +S89221G Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing +S89221K Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion +S89221P Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion +S89221S Salter-Harris Type II physeal fracture of upper end of right fibula, sequela +S89222A Salter-Harris Type II physeal fracture of upper end of left fibula, initial encounter for closed fracture +S89222D Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing +S89222G Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing +S89222K Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion +S89222P Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion +S89222S Salter-Harris Type II physeal fracture of upper end of left fibula, sequela +S89229A Salter-Harris Type II physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture +S89229D Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing +S89229G Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing +S89229K Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion +S89229P Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion +S89229S Salter-Harris Type II physeal fracture of upper end of unspecified fibula, sequela +S89291A Other physeal fracture of upper end of right fibula, initial encounter for closed fracture +S89291D Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing +S89291G Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing +S89291K Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion +S89291P Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion +S89291S Other physeal fracture of upper end of right fibula, sequela +S89292A Other physeal fracture of upper end of left fibula, initial encounter for closed fracture +S89292D Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing +S89292G Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing +S89292K Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion +S89292P Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion +S89292S Other physeal fracture of upper end of left fibula, sequela +S89299A Other physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture +S89299D Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing +S89299G Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing +S89299K Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion +S89299P Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion +S89299S Other physeal fracture of upper end of unspecified fibula, sequela +S89301A Unspecified physeal fracture of lower end of right fibula, initial encounter for closed fracture +S89301D Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing +S89301G Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing +S89301K Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion +S89301P Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion +S89301S Unspecified physeal fracture of lower end of right fibula, sequela +S89302A Unspecified physeal fracture of lower end of left fibula, initial encounter for closed fracture +S89302D Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing +S89302G Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing +S89302K Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion +S89302P Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion +S89302S Unspecified physeal fracture of lower end of left fibula, sequela +S89309A Unspecified physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture +S89309D Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing +S89309G Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing +S89309K Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion +S89309P Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion +S89309S Unspecified physeal fracture of lower end of unspecified fibula, sequela +S89311A Salter-Harris Type I physeal fracture of lower end of right fibula, initial encounter for closed fracture +S89311D Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing +S89311G Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing +S89311K Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion +S89311P Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion +S89311S Salter-Harris Type I physeal fracture of lower end of right fibula, sequela +S89312A Salter-Harris Type I physeal fracture of lower end of left fibula, initial encounter for closed fracture +S89312D Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing +S89312G Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing +S89312K Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion +S89312P Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion +S89312S Salter-Harris Type I physeal fracture of lower end of left fibula, sequela +S89319A Salter-Harris Type I physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture +S89319D Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing +S89319G Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing +S89319K Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion +S89319P Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion +S89319S Salter-Harris Type I physeal fracture of lower end of unspecified fibula, sequela +S89321A Salter-Harris Type II physeal fracture of lower end of right fibula, initial encounter for closed fracture +S89321D Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing +S89321G Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing +S89321K Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion +S89321P Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion +S89321S Salter-Harris Type II physeal fracture of lower end of right fibula, sequela +S89322A Salter-Harris Type II physeal fracture of lower end of left fibula, initial encounter for closed fracture +S89322D Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing +S89322G Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing +S89322K Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion +S89322P Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion +S89322S Salter-Harris Type II physeal fracture of lower end of left fibula, sequela +S89329A Salter-Harris Type II physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture +S89329D Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing +S89329G Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing +S89329K Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion +S89329P Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion +S89329S Salter-Harris Type II physeal fracture of lower end of unspecified fibula, sequela +S89391A Other physeal fracture of lower end of right fibula, initial encounter for closed fracture +S89391D Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing +S89391G Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing +S89391K Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion +S89391P Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion +S89391S Other physeal fracture of lower end of right fibula, sequela +S89392A Other physeal fracture of lower end of left fibula, initial encounter for closed fracture +S89392D Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing +S89392G Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing +S89392K Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion +S89392P Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion +S89392S Other physeal fracture of lower end of left fibula, sequela +S89399A Other physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture +S89399D Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing +S89399G Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing +S89399K Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion +S89399P Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion +S89399S Other physeal fracture of lower end of unspecified fibula, sequela +S8980XA Other specified injuries of unspecified lower leg, initial encounter +S8980XD Other specified injuries of unspecified lower leg, subsequent encounter +S8980XS Other specified injuries of unspecified lower leg, sequela +S8981XA Other specified injuries of right lower leg, initial encounter +S8981XD Other specified injuries of right lower leg, subsequent encounter +S8981XS Other specified injuries of right lower leg, sequela +S8982XA Other specified injuries of left lower leg, initial encounter +S8982XD Other specified injuries of left lower leg, subsequent encounter +S8982XS Other specified injuries of left lower leg, sequela +S8990XA Unspecified injury of unspecified lower leg, initial encounter +S8990XD Unspecified injury of unspecified lower leg, subsequent encounter +S8990XS Unspecified injury of unspecified lower leg, sequela +S8991XA Unspecified injury of right lower leg, initial encounter +S8991XD Unspecified injury of right lower leg, subsequent encounter +S8991XS Unspecified injury of right lower leg, sequela +S8992XA Unspecified injury of left lower leg, initial encounter +S8992XD Unspecified injury of left lower leg, subsequent encounter +S8992XS Unspecified injury of left lower leg, sequela +S9000XA Contusion of unspecified ankle, initial encounter +S9000XD Contusion of unspecified ankle, subsequent encounter +S9000XS Contusion of unspecified ankle, sequela +S9001XA Contusion of right ankle, initial encounter +S9001XD Contusion of right ankle, subsequent encounter +S9001XS Contusion of right ankle, sequela +S9002XA Contusion of left ankle, initial encounter +S9002XD Contusion of left ankle, subsequent encounter +S9002XS Contusion of left ankle, sequela +S90111A Contusion of right great toe without damage to nail, initial encounter +S90111D Contusion of right great toe without damage to nail, subsequent encounter +S90111S Contusion of right great toe without damage to nail, sequela +S90112A Contusion of left great toe without damage to nail, initial encounter +S90112D Contusion of left great toe without damage to nail, subsequent encounter +S90112S Contusion of left great toe without damage to nail, sequela +S90119A Contusion of unspecified great toe without damage to nail, initial encounter +S90119D Contusion of unspecified great toe without damage to nail, subsequent encounter +S90119S Contusion of unspecified great toe without damage to nail, sequela +S90121A Contusion of right lesser toe(s) without damage to nail, initial encounter +S90121D Contusion of right lesser toe(s) without damage to nail, subsequent encounter +S90121S Contusion of right lesser toe(s) without damage to nail, sequela +S90122A Contusion of left lesser toe(s) without damage to nail, initial encounter +S90122D Contusion of left lesser toe(s) without damage to nail, subsequent encounter +S90122S Contusion of left lesser toe(s) without damage to nail, sequela +S90129A Contusion of unspecified lesser toe(s) without damage to nail, initial encounter +S90129D Contusion of unspecified lesser toe(s) without damage to nail, subsequent encounter +S90129S Contusion of unspecified lesser toe(s) without damage to nail, sequela +S90211A Contusion of right great toe with damage to nail, initial encounter +S90211D Contusion of right great toe with damage to nail, subsequent encounter +S90211S Contusion of right great toe with damage to nail, sequela +S90212A Contusion of left great toe with damage to nail, initial encounter +S90212D Contusion of left great toe with damage to nail, subsequent encounter +S90212S Contusion of left great toe with damage to nail, sequela +S90219A Contusion of unspecified great toe with damage to nail, initial encounter +S90219D Contusion of unspecified great toe with damage to nail, subsequent encounter +S90219S Contusion of unspecified great toe with damage to nail, sequela +S90221A Contusion of right lesser toe(s) with damage to nail, initial encounter +S90221D Contusion of right lesser toe(s) with damage to nail, subsequent encounter +S90221S Contusion of right lesser toe(s) with damage to nail, sequela +S90222A Contusion of left lesser toe(s) with damage to nail, initial encounter +S90222D Contusion of left lesser toe(s) with damage to nail, subsequent encounter +S90222S Contusion of left lesser toe(s) with damage to nail, sequela +S90229A Contusion of unspecified lesser toe(s) with damage to nail, initial encounter +S90229D Contusion of unspecified lesser toe(s) with damage to nail, subsequent encounter +S90229S Contusion of unspecified lesser toe(s) with damage to nail, sequela +S9030XA Contusion of unspecified foot, initial encounter +S9030XD Contusion of unspecified foot, subsequent encounter +S9030XS Contusion of unspecified foot, sequela +S9031XA Contusion of right foot, initial encounter +S9031XD Contusion of right foot, subsequent encounter +S9031XS Contusion of right foot, sequela +S9032XA Contusion of left foot, initial encounter +S9032XD Contusion of left foot, subsequent encounter +S9032XS Contusion of left foot, sequela +S90411A Abrasion, right great toe, initial encounter +S90411D Abrasion, right great toe, subsequent encounter +S90411S Abrasion, right great toe, sequela +S90412A Abrasion, left great toe, initial encounter +S90412D Abrasion, left great toe, subsequent encounter +S90412S Abrasion, left great toe, sequela +S90413A Abrasion, unspecified great toe, initial encounter +S90413D Abrasion, unspecified great toe, subsequent encounter +S90413S Abrasion, unspecified great toe, sequela +S90414A Abrasion, right lesser toe(s), initial encounter +S90414D Abrasion, right lesser toe(s), subsequent encounter +S90414S Abrasion, right lesser toe(s), sequela +S90415A Abrasion, left lesser toe(s), initial encounter +S90415D Abrasion, left lesser toe(s), subsequent encounter +S90415S Abrasion, left lesser toe(s), sequela +S90416A Abrasion, unspecified lesser toe(s), initial encounter +S90416D Abrasion, unspecified lesser toe(s), subsequent encounter +S90416S Abrasion, unspecified lesser toe(s), sequela +S90421A Blister (nonthermal), right great toe, initial encounter +S90421D Blister (nonthermal), right great toe, subsequent encounter +S90421S Blister (nonthermal), right great toe, sequela +S90422A Blister (nonthermal), left great toe, initial encounter +S90422D Blister (nonthermal), left great toe, subsequent encounter +S90422S Blister (nonthermal), left great toe, sequela +S90423A Blister (nonthermal), unspecified great toe, initial encounter +S90423D Blister (nonthermal), unspecified great toe, subsequent encounter +S90423S Blister (nonthermal), unspecified great toe, sequela +S90424A Blister (nonthermal), right lesser toe(s), initial encounter +S90424D Blister (nonthermal), right lesser toe(s), subsequent encounter +S90424S Blister (nonthermal), right lesser toe(s), sequela +S90425A Blister (nonthermal), left lesser toe(s), initial encounter +S90425D Blister (nonthermal), left lesser toe(s), subsequent encounter +S90425S Blister (nonthermal), left lesser toe(s), sequela +S90426A Blister (nonthermal), unspecified lesser toe(s), initial encounter +S90426D Blister (nonthermal), unspecified lesser toe(s), subsequent encounter +S90426S Blister (nonthermal), unspecified lesser toe(s), sequela +S90441A External constriction, right great toe, initial encounter +S90441D External constriction, right great toe, subsequent encounter +S90441S External constriction, right great toe, sequela +S90442A External constriction, left great toe, initial encounter +S90442D External constriction, left great toe, subsequent encounter +S90442S External constriction, left great toe, sequela +S90443A External constriction, unspecified great toe, initial encounter +S90443D External constriction, unspecified great toe, subsequent encounter +S90443S External constriction, unspecified great toe, sequela +S90444A External constriction, right lesser toe(s), initial encounter +S90444D External constriction, right lesser toe(s), subsequent encounter +S90444S External constriction, right lesser toe(s), sequela +S90445A External constriction, left lesser toe(s), initial encounter +S90445D External constriction, left lesser toe(s), subsequent encounter +S90445S External constriction, left lesser toe(s), sequela +S90446A External constriction, unspecified lesser toe(s), initial encounter +S90446D External constriction, unspecified lesser toe(s), subsequent encounter +S90446S External constriction, unspecified lesser toe(s), sequela +S90451A Superficial foreign body, right great toe, initial encounter +S90451D Superficial foreign body, right great toe, subsequent encounter +S90451S Superficial foreign body, right great toe, sequela +S90452A Superficial foreign body, left great toe, initial encounter +S90452D Superficial foreign body, left great toe, subsequent encounter +S90452S Superficial foreign body, left great toe, sequela +S90453A Superficial foreign body, unspecified great toe, initial encounter +S90453D Superficial foreign body, unspecified great toe, subsequent encounter +S90453S Superficial foreign body, unspecified great toe, sequela +S90454A Superficial foreign body, right lesser toe(s), initial encounter +S90454D Superficial foreign body, right lesser toe(s), subsequent encounter +S90454S Superficial foreign body, right lesser toe(s), sequela +S90455A Superficial foreign body, left lesser toe(s), initial encounter +S90455D Superficial foreign body, left lesser toe(s), subsequent encounter +S90455S Superficial foreign body, left lesser toe(s), sequela +S90456A Superficial foreign body, unspecified lesser toe(s), initial encounter +S90456D Superficial foreign body, unspecified lesser toe(s), subsequent encounter +S90456S Superficial foreign body, unspecified lesser toe(s), sequela +S90461A Insect bite (nonvenomous), right great toe, initial encounter +S90461D Insect bite (nonvenomous), right great toe, subsequent encounter +S90461S Insect bite (nonvenomous), right great toe, sequela +S90462A Insect bite (nonvenomous), left great toe, initial encounter +S90462D Insect bite (nonvenomous), left great toe, subsequent encounter +S90462S Insect bite (nonvenomous), left great toe, sequela +S90463A Insect bite (nonvenomous), unspecified great toe, initial encounter +S90463D Insect bite (nonvenomous), unspecified great toe, subsequent encounter +S90463S Insect bite (nonvenomous), unspecified great toe, sequela +S90464A Insect bite (nonvenomous), right lesser toe(s), initial encounter +S90464D Insect bite (nonvenomous), right lesser toe(s), subsequent encounter +S90464S Insect bite (nonvenomous), right lesser toe(s), sequela +S90465A Insect bite (nonvenomous), left lesser toe(s), initial encounter +S90465D Insect bite (nonvenomous), left lesser toe(s), subsequent encounter +S90465S Insect bite (nonvenomous), left lesser toe(s), sequela +S90466A Insect bite (nonvenomous), unspecified lesser toe(s), initial encounter +S90466D Insect bite (nonvenomous), unspecified lesser toe(s), subsequent encounter +S90466S Insect bite (nonvenomous), unspecified lesser toe(s), sequela +S90471A Other superficial bite of right great toe, initial encounter +S90471D Other superficial bite of right great toe, subsequent encounter +S90471S Other superficial bite of right great toe, sequela +S90472A Other superficial bite of left great toe, initial encounter +S90472D Other superficial bite of left great toe, subsequent encounter +S90472S Other superficial bite of left great toe, sequela +S90473A Other superficial bite of unspecified great toe, initial encounter +S90473D Other superficial bite of unspecified great toe, subsequent encounter +S90473S Other superficial bite of unspecified great toe, sequela +S90474A Other superficial bite of right lesser toe(s), initial encounter +S90474D Other superficial bite of right lesser toe(s), subsequent encounter +S90474S Other superficial bite of right lesser toe(s), sequela +S90475A Other superficial bite of left lesser toe(s), initial encounter +S90475D Other superficial bite of left lesser toe(s), subsequent encounter +S90475S Other superficial bite of left lesser toe(s), sequela +S90476A Other superficial bite of unspecified lesser toe(s), initial encounter +S90476D Other superficial bite of unspecified lesser toe(s), subsequent encounter +S90476S Other superficial bite of unspecified lesser toe(s), sequela +S90511A Abrasion, right ankle, initial encounter +S90511D Abrasion, right ankle, subsequent encounter +S90511S Abrasion, right ankle, sequela +S90512A Abrasion, left ankle, initial encounter +S90512D Abrasion, left ankle, subsequent encounter +S90512S Abrasion, left ankle, sequela +S90519A Abrasion, unspecified ankle, initial encounter +S90519D Abrasion, unspecified ankle, subsequent encounter +S90519S Abrasion, unspecified ankle, sequela +S90521A Blister (nonthermal), right ankle, initial encounter +S90521D Blister (nonthermal), right ankle, subsequent encounter +S90521S Blister (nonthermal), right ankle, sequela +S90522A Blister (nonthermal), left ankle, initial encounter +S90522D Blister (nonthermal), left ankle, subsequent encounter +S90522S Blister (nonthermal), left ankle, sequela +S90529A Blister (nonthermal), unspecified ankle, initial encounter +S90529D Blister (nonthermal), unspecified ankle, subsequent encounter +S90529S Blister (nonthermal), unspecified ankle, sequela +S90541A External constriction, right ankle, initial encounter +S90541D External constriction, right ankle, subsequent encounter +S90541S External constriction, right ankle, sequela +S90542A External constriction, left ankle, initial encounter +S90542D External constriction, left ankle, subsequent encounter +S90542S External constriction, left ankle, sequela +S90549A External constriction, unspecified ankle, initial encounter +S90549D External constriction, unspecified ankle, subsequent encounter +S90549S External constriction, unspecified ankle, sequela +S90551A Superficial foreign body, right ankle, initial encounter +S90551D Superficial foreign body, right ankle, subsequent encounter +S90551S Superficial foreign body, right ankle, sequela +S90552A Superficial foreign body, left ankle, initial encounter +S90552D Superficial foreign body, left ankle, subsequent encounter +S90552S Superficial foreign body, left ankle, sequela +S90559A Superficial foreign body, unspecified ankle, initial encounter +S90559D Superficial foreign body, unspecified ankle, subsequent encounter +S90559S Superficial foreign body, unspecified ankle, sequela +S90561A Insect bite (nonvenomous), right ankle, initial encounter +S90561D Insect bite (nonvenomous), right ankle, subsequent encounter +S90561S Insect bite (nonvenomous), right ankle, sequela +S90562A Insect bite (nonvenomous), left ankle, initial encounter +S90562D Insect bite (nonvenomous), left ankle, subsequent encounter +S90562S Insect bite (nonvenomous), left ankle, sequela +S90569A Insect bite (nonvenomous), unspecified ankle, initial encounter +S90569D Insect bite (nonvenomous), unspecified ankle, subsequent encounter +S90569S Insect bite (nonvenomous), unspecified ankle, sequela +S90571A Other superficial bite of ankle, right ankle, initial encounter +S90571D Other superficial bite of ankle, right ankle, subsequent encounter +S90571S Other superficial bite of ankle, right ankle, sequela +S90572A Other superficial bite of ankle, left ankle, initial encounter +S90572D Other superficial bite of ankle, left ankle, subsequent encounter +S90572S Other superficial bite of ankle, left ankle, sequela +S90579A Other superficial bite of ankle, unspecified ankle, initial encounter +S90579D Other superficial bite of ankle, unspecified ankle, subsequent encounter +S90579S Other superficial bite of ankle, unspecified ankle, sequela +S90811A Abrasion, right foot, initial encounter +S90811D Abrasion, right foot, subsequent encounter +S90811S Abrasion, right foot, sequela +S90812A Abrasion, left foot, initial encounter +S90812D Abrasion, left foot, subsequent encounter +S90812S Abrasion, left foot, sequela +S90819A Abrasion, unspecified foot, initial encounter +S90819D Abrasion, unspecified foot, subsequent encounter +S90819S Abrasion, unspecified foot, sequela +S90821A Blister (nonthermal), right foot, initial encounter +S90821D Blister (nonthermal), right foot, subsequent encounter +S90821S Blister (nonthermal), right foot, sequela +S90822A Blister (nonthermal), left foot, initial encounter +S90822D Blister (nonthermal), left foot, subsequent encounter +S90822S Blister (nonthermal), left foot, sequela +S90829A Blister (nonthermal), unspecified foot, initial encounter +S90829D Blister (nonthermal), unspecified foot, subsequent encounter +S90829S Blister (nonthermal), unspecified foot, sequela +S90841A External constriction, right foot, initial encounter +S90841D External constriction, right foot, subsequent encounter +S90841S External constriction, right foot, sequela +S90842A External constriction, left foot, initial encounter +S90842D External constriction, left foot, subsequent encounter +S90842S External constriction, left foot, sequela +S90849A External constriction, unspecified foot, initial encounter +S90849D External constriction, unspecified foot, subsequent encounter +S90849S External constriction, unspecified foot, sequela +S90851A Superficial foreign body, right foot, initial encounter +S90851D Superficial foreign body, right foot, subsequent encounter +S90851S Superficial foreign body, right foot, sequela +S90852A Superficial foreign body, left foot, initial encounter +S90852D Superficial foreign body, left foot, subsequent encounter +S90852S Superficial foreign body, left foot, sequela +S90859A Superficial foreign body, unspecified foot, initial encounter +S90859D Superficial foreign body, unspecified foot, subsequent encounter +S90859S Superficial foreign body, unspecified foot, sequela +S90861A Insect bite (nonvenomous), right foot, initial encounter +S90861D Insect bite (nonvenomous), right foot, subsequent encounter +S90861S Insect bite (nonvenomous), right foot, sequela +S90862A Insect bite (nonvenomous), left foot, initial encounter +S90862D Insect bite (nonvenomous), left foot, subsequent encounter +S90862S Insect bite (nonvenomous), left foot, sequela +S90869A Insect bite (nonvenomous), unspecified foot, initial encounter +S90869D Insect bite (nonvenomous), unspecified foot, subsequent encounter +S90869S Insect bite (nonvenomous), unspecified foot, sequela +S90871A Other superficial bite of right foot, initial encounter +S90871D Other superficial bite of right foot, subsequent encounter +S90871S Other superficial bite of right foot, sequela +S90872A Other superficial bite of left foot, initial encounter +S90872D Other superficial bite of left foot, subsequent encounter +S90872S Other superficial bite of left foot, sequela +S90879A Other superficial bite of unspecified foot, initial encounter +S90879D Other superficial bite of unspecified foot, subsequent encounter +S90879S Other superficial bite of unspecified foot, sequela +S90911A Unspecified superficial injury of right ankle, initial encounter +S90911D Unspecified superficial injury of right ankle, subsequent encounter +S90911S Unspecified superficial injury of right ankle, sequela +S90912A Unspecified superficial injury of left ankle, initial encounter +S90912D Unspecified superficial injury of left ankle, subsequent encounter +S90912S Unspecified superficial injury of left ankle, sequela +S90919A Unspecified superficial injury of unspecified ankle, initial encounter +S90919D Unspecified superficial injury of unspecified ankle, subsequent encounter +S90919S Unspecified superficial injury of unspecified ankle, sequela +S90921A Unspecified superficial injury of right foot, initial encounter +S90921D Unspecified superficial injury of right foot, subsequent encounter +S90921S Unspecified superficial injury of right foot, sequela +S90922A Unspecified superficial injury of left foot, initial encounter +S90922D Unspecified superficial injury of left foot, subsequent encounter +S90922S Unspecified superficial injury of left foot, sequela +S90929A Unspecified superficial injury of unspecified foot, initial encounter +S90929D Unspecified superficial injury of unspecified foot, subsequent encounter +S90929S Unspecified superficial injury of unspecified foot, sequela +S90931A Unspecified superficial injury of right great toe, initial encounter +S90931D Unspecified superficial injury of right great toe, subsequent encounter +S90931S Unspecified superficial injury of right great toe, sequela +S90932A Unspecified superficial injury of left great toe, initial encounter +S90932D Unspecified superficial injury of left great toe, subsequent encounter +S90932S Unspecified superficial injury of left great toe, sequela +S90933A Unspecified superficial injury of unspecified great toe, initial encounter +S90933D Unspecified superficial injury of unspecified great toe, subsequent encounter +S90933S Unspecified superficial injury of unspecified great toe, sequela +S90934A Unspecified superficial injury of right lesser toe(s), initial encounter +S90934D Unspecified superficial injury of right lesser toe(s), subsequent encounter +S90934S Unspecified superficial injury of right lesser toe(s), sequela +S90935A Unspecified superficial injury of left lesser toe(s), initial encounter +S90935D Unspecified superficial injury of left lesser toe(s), subsequent encounter +S90935S Unspecified superficial injury of left lesser toe(s), sequela +S90936A Unspecified superficial injury of unspecified lesser toe(s), initial encounter +S90936D Unspecified superficial injury of unspecified lesser toe(s), subsequent encounter +S90936S Unspecified superficial injury of unspecified lesser toe(s), sequela +S91001A Unspecified open wound, right ankle, initial encounter +S91001D Unspecified open wound, right ankle, subsequent encounter +S91001S Unspecified open wound, right ankle, sequela +S91002A Unspecified open wound, left ankle, initial encounter +S91002D Unspecified open wound, left ankle, subsequent encounter +S91002S Unspecified open wound, left ankle, sequela +S91009A Unspecified open wound, unspecified ankle, initial encounter +S91009D Unspecified open wound, unspecified ankle, subsequent encounter +S91009S Unspecified open wound, unspecified ankle, sequela +S91011A Laceration without foreign body, right ankle, initial encounter +S91011D Laceration without foreign body, right ankle, subsequent encounter +S91011S Laceration without foreign body, right ankle, sequela +S91012A Laceration without foreign body, left ankle, initial encounter +S91012D Laceration without foreign body, left ankle, subsequent encounter +S91012S Laceration without foreign body, left ankle, sequela +S91019A Laceration without foreign body, unspecified ankle, initial encounter +S91019D Laceration without foreign body, unspecified ankle, subsequent encounter +S91019S Laceration without foreign body, unspecified ankle, sequela +S91021A Laceration with foreign body, right ankle, initial encounter +S91021D Laceration with foreign body, right ankle, subsequent encounter +S91021S Laceration with foreign body, right ankle, sequela +S91022A Laceration with foreign body, left ankle, initial encounter +S91022D Laceration with foreign body, left ankle, subsequent encounter +S91022S Laceration with foreign body, left ankle, sequela +S91029A Laceration with foreign body, unspecified ankle, initial encounter +S91029D Laceration with foreign body, unspecified ankle, subsequent encounter +S91029S Laceration with foreign body, unspecified ankle, sequela +S91031A Puncture wound without foreign body, right ankle, initial encounter +S91031D Puncture wound without foreign body, right ankle, subsequent encounter +S91031S Puncture wound without foreign body, right ankle, sequela +S91032A Puncture wound without foreign body, left ankle, initial encounter +S91032D Puncture wound without foreign body, left ankle, subsequent encounter +S91032S Puncture wound without foreign body, left ankle, sequela +S91039A Puncture wound without foreign body, unspecified ankle, initial encounter +S91039D Puncture wound without foreign body, unspecified ankle, subsequent encounter +S91039S Puncture wound without foreign body, unspecified ankle, sequela +S91041A Puncture wound with foreign body, right ankle, initial encounter +S91041D Puncture wound with foreign body, right ankle, subsequent encounter +S91041S Puncture wound with foreign body, right ankle, sequela +S91042A Puncture wound with foreign body, left ankle, initial encounter +S91042D Puncture wound with foreign body, left ankle, subsequent encounter +S91042S Puncture wound with foreign body, left ankle, sequela +S91049A Puncture wound with foreign body, unspecified ankle, initial encounter +S91049D Puncture wound with foreign body, unspecified ankle, subsequent encounter +S91049S Puncture wound with foreign body, unspecified ankle, sequela +S91051A Open bite, right ankle, initial encounter +S91051D Open bite, right ankle, subsequent encounter +S91051S Open bite, right ankle, sequela +S91052A Open bite, left ankle, initial encounter +S91052D Open bite, left ankle, subsequent encounter +S91052S Open bite, left ankle, sequela +S91059A Open bite, unspecified ankle, initial encounter +S91059D Open bite, unspecified ankle, subsequent encounter +S91059S Open bite, unspecified ankle, sequela +S91101A Unspecified open wound of right great toe without damage to nail, initial encounter +S91101D Unspecified open wound of right great toe without damage to nail, subsequent encounter +S91101S Unspecified open wound of right great toe without damage to nail, sequela +S91102A Unspecified open wound of left great toe without damage to nail, initial encounter +S91102D Unspecified open wound of left great toe without damage to nail, subsequent encounter +S91102S Unspecified open wound of left great toe without damage to nail, sequela +S91103A Unspecified open wound of unspecified great toe without damage to nail, initial encounter +S91103D Unspecified open wound of unspecified great toe without damage to nail, subsequent encounter +S91103S Unspecified open wound of unspecified great toe without damage to nail, sequela +S91104A Unspecified open wound of right lesser toe(s) without damage to nail, initial encounter +S91104D Unspecified open wound of right lesser toe(s) without damage to nail, subsequent encounter +S91104S Unspecified open wound of right lesser toe(s) without damage to nail, sequela +S91105A Unspecified open wound of left lesser toe(s) without damage to nail, initial encounter +S91105D Unspecified open wound of left lesser toe(s) without damage to nail, subsequent encounter +S91105S Unspecified open wound of left lesser toe(s) without damage to nail, sequela +S91106A Unspecified open wound of unspecified lesser toe(s) without damage to nail, initial encounter +S91106D Unspecified open wound of unspecified lesser toe(s) without damage to nail, subsequent encounter +S91106S Unspecified open wound of unspecified lesser toe(s) without damage to nail, sequela +S91109A Unspecified open wound of unspecified toe(s) without damage to nail, initial encounter +S91109D Unspecified open wound of unspecified toe(s) without damage to nail, subsequent encounter +S91109S Unspecified open wound of unspecified toe(s) without damage to nail, sequela +S91111A Laceration without foreign body of right great toe without damage to nail, initial encounter +S91111D Laceration without foreign body of right great toe without damage to nail, subsequent encounter +S91111S Laceration without foreign body of right great toe without damage to nail, sequela +S91112A Laceration without foreign body of left great toe without damage to nail, initial encounter +S91112D Laceration without foreign body of left great toe without damage to nail, subsequent encounter +S91112S Laceration without foreign body of left great toe without damage to nail, sequela +S91113A Laceration without foreign body of unspecified great toe without damage to nail, initial encounter +S91113D Laceration without foreign body of unspecified great toe without damage to nail, subsequent encounter +S91113S Laceration without foreign body of unspecified great toe without damage to nail, sequela +S91114A Laceration without foreign body of right lesser toe(s) without damage to nail, initial encounter +S91114D Laceration without foreign body of right lesser toe(s) without damage to nail, subsequent encounter +S91114S Laceration without foreign body of right lesser toe(s) without damage to nail, sequela +S91115A Laceration without foreign body of left lesser toe(s) without damage to nail, initial encounter +S91115D Laceration without foreign body of left lesser toe(s) without damage to nail, subsequent encounter +S91115S Laceration without foreign body of left lesser toe(s) without damage to nail, sequela +S91116A Laceration without foreign body of unspecified lesser toe(s) without damage to nail, initial encounter +S91116D Laceration without foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter +S91116S Laceration without foreign body of unspecified lesser toe(s) without damage to nail, sequela +S91119A Laceration without foreign body of unspecified toe without damage to nail, initial encounter +S91119D Laceration without foreign body of unspecified toe without damage to nail, subsequent encounter +S91119S Laceration without foreign body of unspecified toe without damage to nail, sequela +S91121A Laceration with foreign body of right great toe without damage to nail, initial encounter +S91121D Laceration with foreign body of right great toe without damage to nail, subsequent encounter +S91121S Laceration with foreign body of right great toe without damage to nail, sequela +S91122A Laceration with foreign body of left great toe without damage to nail, initial encounter +S91122D Laceration with foreign body of left great toe without damage to nail, subsequent encounter +S91122S Laceration with foreign body of left great toe without damage to nail, sequela +S91123A Laceration with foreign body of unspecified great toe without damage to nail, initial encounter +S91123D Laceration with foreign body of unspecified great toe without damage to nail, subsequent encounter +S91123S Laceration with foreign body of unspecified great toe without damage to nail, sequela +S91124A Laceration with foreign body of right lesser toe(s) without damage to nail, initial encounter +S91124D Laceration with foreign body of right lesser toe(s) without damage to nail, subsequent encounter +S91124S Laceration with foreign body of right lesser toe(s) without damage to nail, sequela +S91125A Laceration with foreign body of left lesser toe(s) without damage to nail, initial encounter +S91125D Laceration with foreign body of left lesser toe(s) without damage to nail, subsequent encounter +S91125S Laceration with foreign body of left lesser toe(s) without damage to nail, sequela +S91126A Laceration with foreign body of unspecified lesser toe(s) without damage to nail, initial encounter +S91126D Laceration with foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter +S91126S Laceration with foreign body of unspecified lesser toe(s) without damage to nail, sequela +S91129A Laceration with foreign body of unspecified toe(s) without damage to nail, initial encounter +S91129D Laceration with foreign body of unspecified toe(s) without damage to nail, subsequent encounter +S91129S Laceration with foreign body of unspecified toe(s) without damage to nail, sequela +S91131A Puncture wound without foreign body of right great toe without damage to nail, initial encounter +S91131D Puncture wound without foreign body of right great toe without damage to nail, subsequent encounter +S91131S Puncture wound without foreign body of right great toe without damage to nail, sequela +S91132A Puncture wound without foreign body of left great toe without damage to nail, initial encounter +S91132D Puncture wound without foreign body of left great toe without damage to nail, subsequent encounter +S91132S Puncture wound without foreign body of left great toe without damage to nail, sequela +S91133A Puncture wound without foreign body of unspecified great toe without damage to nail, initial encounter +S91133D Puncture wound without foreign body of unspecified great toe without damage to nail, subsequent encounter +S91133S Puncture wound without foreign body of unspecified great toe without damage to nail, sequela +S91134A Puncture wound without foreign body of right lesser toe(s) without damage to nail, initial encounter +S91134D Puncture wound without foreign body of right lesser toe(s) without damage to nail, subsequent encounter +S91134S Puncture wound without foreign body of right lesser toe(s) without damage to nail, sequela +S91135A Puncture wound without foreign body of left lesser toe(s) without damage to nail, initial encounter +S91135D Puncture wound without foreign body of left lesser toe(s) without damage to nail, subsequent encounter +S91135S Puncture wound without foreign body of left lesser toe(s) without damage to nail, sequela +S91136A Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail, initial encounter +S91136D Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter +S91136S Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail, sequela +S91139A Puncture wound without foreign body of unspecified toe(s) without damage to nail, initial encounter +S91139D Puncture wound without foreign body of unspecified toe(s) without damage to nail, subsequent encounter +S91139S Puncture wound without foreign body of unspecified toe(s) without damage to nail, sequela +S91141A Puncture wound with foreign body of right great toe without damage to nail, initial encounter +S91141D Puncture wound with foreign body of right great toe without damage to nail, subsequent encounter +S91141S Puncture wound with foreign body of right great toe without damage to nail, sequela +S91142A Puncture wound with foreign body of left great toe without damage to nail, initial encounter +S91142D Puncture wound with foreign body of left great toe without damage to nail, subsequent encounter +S91142S Puncture wound with foreign body of left great toe without damage to nail, sequela +S91143A Puncture wound with foreign body of unspecified great toe without damage to nail, initial encounter +S91143D Puncture wound with foreign body of unspecified great toe without damage to nail, subsequent encounter +S91143S Puncture wound with foreign body of unspecified great toe without damage to nail, sequela +S91144A Puncture wound with foreign body of right lesser toe(s) without damage to nail, initial encounter +S91144D Puncture wound with foreign body of right lesser toe(s) without damage to nail, subsequent encounter +S91144S Puncture wound with foreign body of right lesser toe(s) without damage to nail, sequela +S91145A Puncture wound with foreign body of left lesser toe(s) without damage to nail, initial encounter +S91145D Puncture wound with foreign body of left lesser toe(s) without damage to nail, subsequent encounter +S91145S Puncture wound with foreign body of left lesser toe(s) without damage to nail, sequela +S91146A Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail, initial encounter +S91146D Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter +S91146S Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail, sequela +S91149A Puncture wound with foreign body of unspecified toe(s) without damage to nail, initial encounter +S91149D Puncture wound with foreign body of unspecified toe(s) without damage to nail, subsequent encounter +S91149S Puncture wound with foreign body of unspecified toe(s) without damage to nail, sequela +S91151A Open bite of right great toe without damage to nail, initial encounter +S91151D Open bite of right great toe without damage to nail, subsequent encounter +S91151S Open bite of right great toe without damage to nail, sequela +S91152A Open bite of left great toe without damage to nail, initial encounter +S91152D Open bite of left great toe without damage to nail, subsequent encounter +S91152S Open bite of left great toe without damage to nail, sequela +S91153A Open bite of unspecified great toe without damage to nail, initial encounter +S91153D Open bite of unspecified great toe without damage to nail, subsequent encounter +S91153S Open bite of unspecified great toe without damage to nail, sequela +S91154A Open bite of right lesser toe(s) without damage to nail, initial encounter +S91154D Open bite of right lesser toe(s) without damage to nail, subsequent encounter +S91154S Open bite of right lesser toe(s) without damage to nail, sequela +S91155A Open bite of left lesser toe(s) without damage to nail, initial encounter +S91155D Open bite of left lesser toe(s) without damage to nail, subsequent encounter +S91155S Open bite of left lesser toe(s) without damage to nail, sequela +S91156A Open bite of unspecified lesser toe(s) without damage to nail, initial encounter +S91156D Open bite of unspecified lesser toe(s) without damage to nail, subsequent encounter +S91156S Open bite of unspecified lesser toe(s) without damage to nail, sequela +S91159A Open bite of unspecified toe(s) without damage to nail, initial encounter +S91159D Open bite of unspecified toe(s) without damage to nail, subsequent encounter +S91159S Open bite of unspecified toe(s) without damage to nail, sequela +S91201A Unspecified open wound of right great toe with damage to nail, initial encounter +S91201D Unspecified open wound of right great toe with damage to nail, subsequent encounter +S91201S Unspecified open wound of right great toe with damage to nail, sequela +S91202A Unspecified open wound of left great toe with damage to nail, initial encounter +S91202D Unspecified open wound of left great toe with damage to nail, subsequent encounter +S91202S Unspecified open wound of left great toe with damage to nail, sequela +S91203A Unspecified open wound of unspecified great toe with damage to nail, initial encounter +S91203D Unspecified open wound of unspecified great toe with damage to nail, subsequent encounter +S91203S Unspecified open wound of unspecified great toe with damage to nail, sequela +S91204A Unspecified open wound of right lesser toe(s) with damage to nail, initial encounter +S91204D Unspecified open wound of right lesser toe(s) with damage to nail, subsequent encounter +S91204S Unspecified open wound of right lesser toe(s) with damage to nail, sequela +S91205A Unspecified open wound of left lesser toe(s) with damage to nail, initial encounter +S91205D Unspecified open wound of left lesser toe(s) with damage to nail, subsequent encounter +S91205S Unspecified open wound of left lesser toe(s) with damage to nail, sequela +S91206A Unspecified open wound of unspecified lesser toe(s) with damage to nail, initial encounter +S91206D Unspecified open wound of unspecified lesser toe(s) with damage to nail, subsequent encounter +S91206S Unspecified open wound of unspecified lesser toe(s) with damage to nail, sequela +S91209A Unspecified open wound of unspecified toe(s) with damage to nail, initial encounter +S91209D Unspecified open wound of unspecified toe(s) with damage to nail, subsequent encounter +S91209S Unspecified open wound of unspecified toe(s) with damage to nail, sequela +S91211A Laceration without foreign body of right great toe with damage to nail, initial encounter +S91211D Laceration without foreign body of right great toe with damage to nail, subsequent encounter +S91211S Laceration without foreign body of right great toe with damage to nail, sequela +S91212A Laceration without foreign body of left great toe with damage to nail, initial encounter +S91212D Laceration without foreign body of left great toe with damage to nail, subsequent encounter +S91212S Laceration without foreign body of left great toe with damage to nail, sequela +S91213A Laceration without foreign body of unspecified great toe with damage to nail, initial encounter +S91213D Laceration without foreign body of unspecified great toe with damage to nail, subsequent encounter +S91213S Laceration without foreign body of unspecified great toe with damage to nail, sequela +S91214A Laceration without foreign body of right lesser toe(s) with damage to nail, initial encounter +S91214D Laceration without foreign body of right lesser toe(s) with damage to nail, subsequent encounter +S91214S Laceration without foreign body of right lesser toe(s) with damage to nail, sequela +S91215A Laceration without foreign body of left lesser toe(s) with damage to nail, initial encounter +S91215D Laceration without foreign body of left lesser toe(s) with damage to nail, subsequent encounter +S91215S Laceration without foreign body of left lesser toe(s) with damage to nail, sequela +S91216A Laceration without foreign body of unspecified lesser toe(s) with damage to nail, initial encounter +S91216D Laceration without foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter +S91216S Laceration without foreign body of unspecified lesser toe(s) with damage to nail, sequela +S91219A Laceration without foreign body of unspecified toe(s) with damage to nail, initial encounter +S91219D Laceration without foreign body of unspecified toe(s) with damage to nail, subsequent encounter +S91219S Laceration without foreign body of unspecified toe(s) with damage to nail, sequela +S91221A Laceration with foreign body of right great toe with damage to nail, initial encounter +S91221D Laceration with foreign body of right great toe with damage to nail, subsequent encounter +S91221S Laceration with foreign body of right great toe with damage to nail, sequela +S91222A Laceration with foreign body of left great toe with damage to nail, initial encounter +S91222D Laceration with foreign body of left great toe with damage to nail, subsequent encounter +S91222S Laceration with foreign body of left great toe with damage to nail, sequela +S91223A Laceration with foreign body of unspecified great toe with damage to nail, initial encounter +S91223D Laceration with foreign body of unspecified great toe with damage to nail, subsequent encounter +S91223S Laceration with foreign body of unspecified great toe with damage to nail, sequela +S91224A Laceration with foreign body of right lesser toe(s) with damage to nail, initial encounter +S91224D Laceration with foreign body of right lesser toe(s) with damage to nail, subsequent encounter +S91224S Laceration with foreign body of right lesser toe(s) with damage to nail, sequela +S91225A Laceration with foreign body of left lesser toe(s) with damage to nail, initial encounter +S91225D Laceration with foreign body of left lesser toe(s) with damage to nail, subsequent encounter +S91225S Laceration with foreign body of left lesser toe(s) with damage to nail, sequela +S91226A Laceration with foreign body of unspecified lesser toe(s) with damage to nail, initial encounter +S91226D Laceration with foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter +S91226S Laceration with foreign body of unspecified lesser toe(s) with damage to nail, sequela +S91229A Laceration with foreign body of unspecified toe(s) with damage to nail, initial encounter +S91229D Laceration with foreign body of unspecified toe(s) with damage to nail, subsequent encounter +S91229S Laceration with foreign body of unspecified toe(s) with damage to nail, sequela +S91231A Puncture wound without foreign body of right great toe with damage to nail, initial encounter +S91231D Puncture wound without foreign body of right great toe with damage to nail, subsequent encounter +S91231S Puncture wound without foreign body of right great toe with damage to nail, sequela +S91232A Puncture wound without foreign body of left great toe with damage to nail, initial encounter +S91232D Puncture wound without foreign body of left great toe with damage to nail, subsequent encounter +S91232S Puncture wound without foreign body of left great toe with damage to nail, sequela +S91233A Puncture wound without foreign body of unspecified great toe with damage to nail, initial encounter +S91233D Puncture wound without foreign body of unspecified great toe with damage to nail, subsequent encounter +S91233S Puncture wound without foreign body of unspecified great toe with damage to nail, sequela +S91234A Puncture wound without foreign body of right lesser toe(s) with damage to nail, initial encounter +S91234D Puncture wound without foreign body of right lesser toe(s) with damage to nail, subsequent encounter +S91234S Puncture wound without foreign body of right lesser toe(s) with damage to nail, sequela +S91235A Puncture wound without foreign body of left lesser toe(s) with damage to nail, initial encounter +S91235D Puncture wound without foreign body of left lesser toe(s) with damage to nail, subsequent encounter +S91235S Puncture wound without foreign body of left lesser toe(s) with damage to nail, sequela +S91236A Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, initial encounter +S91236D Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter +S91236S Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, sequela +S91239A Puncture wound without foreign body of unspecified toe(s) with damage to nail, initial encounter +S91239D Puncture wound without foreign body of unspecified toe(s) with damage to nail, subsequent encounter +S91239S Puncture wound without foreign body of unspecified toe(s) with damage to nail, sequela +S91241A Puncture wound with foreign body of right great toe with damage to nail, initial encounter +S91241D Puncture wound with foreign body of right great toe with damage to nail, subsequent encounter +S91241S Puncture wound with foreign body of right great toe with damage to nail, sequela +S91242A Puncture wound with foreign body of left great toe with damage to nail, initial encounter +S91242D Puncture wound with foreign body of left great toe with damage to nail, subsequent encounter +S91242S Puncture wound with foreign body of left great toe with damage to nail, sequela +S91243A Puncture wound with foreign body of unspecified great toe with damage to nail, initial encounter +S91243D Puncture wound with foreign body of unspecified great toe with damage to nail, subsequent encounter +S91243S Puncture wound with foreign body of unspecified great toe with damage to nail, sequela +S91244A Puncture wound with foreign body of right lesser toe(s) with damage to nail, initial encounter +S91244D Puncture wound with foreign body of right lesser toe(s) with damage to nail, subsequent encounter +S91244S Puncture wound with foreign body of right lesser toe(s) with damage to nail, sequela +S91245A Puncture wound with foreign body of left lesser toe(s) with damage to nail, initial encounter +S91245D Puncture wound with foreign body of left lesser toe(s) with damage to nail, subsequent encounter +S91245S Puncture wound with foreign body of left lesser toe(s) with damage to nail, sequela +S91246A Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, initial encounter +S91246D Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter +S91246S Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, sequela +S91249A Puncture wound with foreign body of unspecified toe(s) with damage to nail, initial encounter +S91249D Puncture wound with foreign body of unspecified toe(s) with damage to nail, subsequent encounter +S91249S Puncture wound with foreign body of unspecified toe(s) with damage to nail, sequela +S91251A Open bite of right great toe with damage to nail, initial encounter +S91251D Open bite of right great toe with damage to nail, subsequent encounter +S91251S Open bite of right great toe with damage to nail, sequela +S91252A Open bite of left great toe with damage to nail, initial encounter +S91252D Open bite of left great toe with damage to nail, subsequent encounter +S91252S Open bite of left great toe with damage to nail, sequela +S91253A Open bite of unspecified great toe with damage to nail, initial encounter +S91253D Open bite of unspecified great toe with damage to nail, subsequent encounter +S91253S Open bite of unspecified great toe with damage to nail, sequela +S91254A Open bite of right lesser toe(s) with damage to nail, initial encounter +S91254D Open bite of right lesser toe(s) with damage to nail, subsequent encounter +S91254S Open bite of right lesser toe(s) with damage to nail, sequela +S91255A Open bite of left lesser toe(s) with damage to nail, initial encounter +S91255D Open bite of left lesser toe(s) with damage to nail, subsequent encounter +S91255S Open bite of left lesser toe(s) with damage to nail, sequela +S91256A Open bite of unspecified lesser toe(s) with damage to nail, initial encounter +S91256D Open bite of unspecified lesser toe(s) with damage to nail, subsequent encounter +S91256S Open bite of unspecified lesser toe(s) with damage to nail, sequela +S91259A Open bite of unspecified toe(s) with damage to nail, initial encounter +S91259D Open bite of unspecified toe(s) with damage to nail, subsequent encounter +S91259S Open bite of unspecified toe(s) with damage to nail, sequela +S91301A Unspecified open wound, right foot, initial encounter +S91301D Unspecified open wound, right foot, subsequent encounter +S91301S Unspecified open wound, right foot, sequela +S91302A Unspecified open wound, left foot, initial encounter +S91302D Unspecified open wound, left foot, subsequent encounter +S91302S Unspecified open wound, left foot, sequela +S91309A Unspecified open wound, unspecified foot, initial encounter +S91309D Unspecified open wound, unspecified foot, subsequent encounter +S91309S Unspecified open wound, unspecified foot, sequela +S91311A Laceration without foreign body, right foot, initial encounter +S91311D Laceration without foreign body, right foot, subsequent encounter +S91311S Laceration without foreign body, right foot, sequela +S91312A Laceration without foreign body, left foot, initial encounter +S91312D Laceration without foreign body, left foot, subsequent encounter +S91312S Laceration without foreign body, left foot, sequela +S91319A Laceration without foreign body, unspecified foot, initial encounter +S91319D Laceration without foreign body, unspecified foot, subsequent encounter +S91319S Laceration without foreign body, unspecified foot, sequela +S91321A Laceration with foreign body, right foot, initial encounter +S91321D Laceration with foreign body, right foot, subsequent encounter +S91321S Laceration with foreign body, right foot, sequela +S91322A Laceration with foreign body, left foot, initial encounter +S91322D Laceration with foreign body, left foot, subsequent encounter +S91322S Laceration with foreign body, left foot, sequela +S91329A Laceration with foreign body, unspecified foot, initial encounter +S91329D Laceration with foreign body, unspecified foot, subsequent encounter +S91329S Laceration with foreign body, unspecified foot, sequela +S91331A Puncture wound without foreign body, right foot, initial encounter +S91331D Puncture wound without foreign body, right foot, subsequent encounter +S91331S Puncture wound without foreign body, right foot, sequela +S91332A Puncture wound without foreign body, left foot, initial encounter +S91332D Puncture wound without foreign body, left foot, subsequent encounter +S91332S Puncture wound without foreign body, left foot, sequela +S91339A Puncture wound without foreign body, unspecified foot, initial encounter +S91339D Puncture wound without foreign body, unspecified foot, subsequent encounter +S91339S Puncture wound without foreign body, unspecified foot, sequela +S91341A Puncture wound with foreign body, right foot, initial encounter +S91341D Puncture wound with foreign body, right foot, subsequent encounter +S91341S Puncture wound with foreign body, right foot, sequela +S91342A Puncture wound with foreign body, left foot, initial encounter +S91342D Puncture wound with foreign body, left foot, subsequent encounter +S91342S Puncture wound with foreign body, left foot, sequela +S91349A Puncture wound with foreign body, unspecified foot, initial encounter +S91349D Puncture wound with foreign body, unspecified foot, subsequent encounter +S91349S Puncture wound with foreign body, unspecified foot, sequela +S91351A Open bite, right foot, initial encounter +S91351D Open bite, right foot, subsequent encounter +S91351S Open bite, right foot, sequela +S91352A Open bite, left foot, initial encounter +S91352D Open bite, left foot, subsequent encounter +S91352S Open bite, left foot, sequela +S91359A Open bite, unspecified foot, initial encounter +S91359D Open bite, unspecified foot, subsequent encounter +S91359S Open bite, unspecified foot, sequela +S92001A Unspecified fracture of right calcaneus, initial encounter for closed fracture +S92001B Unspecified fracture of right calcaneus, initial encounter for open fracture +S92001D Unspecified fracture of right calcaneus, subsequent encounter for fracture with routine healing +S92001G Unspecified fracture of right calcaneus, subsequent encounter for fracture with delayed healing +S92001K Unspecified fracture of right calcaneus, subsequent encounter for fracture with nonunion +S92001P Unspecified fracture of right calcaneus, subsequent encounter for fracture with malunion +S92001S Unspecified fracture of right calcaneus, sequela +S92002A Unspecified fracture of left calcaneus, initial encounter for closed fracture +S92002B Unspecified fracture of left calcaneus, initial encounter for open fracture +S92002D Unspecified fracture of left calcaneus, subsequent encounter for fracture with routine healing +S92002G Unspecified fracture of left calcaneus, subsequent encounter for fracture with delayed healing +S92002K Unspecified fracture of left calcaneus, subsequent encounter for fracture with nonunion +S92002P Unspecified fracture of left calcaneus, subsequent encounter for fracture with malunion +S92002S Unspecified fracture of left calcaneus, sequela +S92009A Unspecified fracture of unspecified calcaneus, initial encounter for closed fracture +S92009B Unspecified fracture of unspecified calcaneus, initial encounter for open fracture +S92009D Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92009G Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92009K Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92009P Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +S92009S Unspecified fracture of unspecified calcaneus, sequela +S92011A Displaced fracture of body of right calcaneus, initial encounter for closed fracture +S92011B Displaced fracture of body of right calcaneus, initial encounter for open fracture +S92011D Displaced fracture of body of right calcaneus, subsequent encounter for fracture with routine healing +S92011G Displaced fracture of body of right calcaneus, subsequent encounter for fracture with delayed healing +S92011K Displaced fracture of body of right calcaneus, subsequent encounter for fracture with nonunion +S92011P Displaced fracture of body of right calcaneus, subsequent encounter for fracture with malunion +S92011S Displaced fracture of body of right calcaneus, sequela +S92012A Displaced fracture of body of left calcaneus, initial encounter for closed fracture +S92012B Displaced fracture of body of left calcaneus, initial encounter for open fracture +S92012D Displaced fracture of body of left calcaneus, subsequent encounter for fracture with routine healing +S92012G Displaced fracture of body of left calcaneus, subsequent encounter for fracture with delayed healing +S92012K Displaced fracture of body of left calcaneus, subsequent encounter for fracture with nonunion +S92012P Displaced fracture of body of left calcaneus, subsequent encounter for fracture with malunion +S92012S Displaced fracture of body of left calcaneus, sequela +S92013A Displaced fracture of body of unspecified calcaneus, initial encounter for closed fracture +S92013B Displaced fracture of body of unspecified calcaneus, initial encounter for open fracture +S92013D Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92013G Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92013K Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92013P Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with malunion +S92013S Displaced fracture of body of unspecified calcaneus, sequela +S92014A Nondisplaced fracture of body of right calcaneus, initial encounter for closed fracture +S92014B Nondisplaced fracture of body of right calcaneus, initial encounter for open fracture +S92014D Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with routine healing +S92014G Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with delayed healing +S92014K Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with nonunion +S92014P Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with malunion +S92014S Nondisplaced fracture of body of right calcaneus, sequela +S92015A Nondisplaced fracture of body of left calcaneus, initial encounter for closed fracture +S92015B Nondisplaced fracture of body of left calcaneus, initial encounter for open fracture +S92015D Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with routine healing +S92015G Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with delayed healing +S92015K Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with nonunion +S92015P Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with malunion +S92015S Nondisplaced fracture of body of left calcaneus, sequela +S92016A Nondisplaced fracture of body of unspecified calcaneus, initial encounter for closed fracture +S92016B Nondisplaced fracture of body of unspecified calcaneus, initial encounter for open fracture +S92016D Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92016G Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92016K Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92016P Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with malunion +S92016S Nondisplaced fracture of body of unspecified calcaneus, sequela +S92021A Displaced fracture of anterior process of right calcaneus, initial encounter for closed fracture +S92021B Displaced fracture of anterior process of right calcaneus, initial encounter for open fracture +S92021D Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with routine healing +S92021G Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with delayed healing +S92021K Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with nonunion +S92021P Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with malunion +S92021S Displaced fracture of anterior process of right calcaneus, sequela +S92022A Displaced fracture of anterior process of left calcaneus, initial encounter for closed fracture +S92022B Displaced fracture of anterior process of left calcaneus, initial encounter for open fracture +S92022D Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with routine healing +S92022G Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with delayed healing +S92022K Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with nonunion +S92022P Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with malunion +S92022S Displaced fracture of anterior process of left calcaneus, sequela +S92023A Displaced fracture of anterior process of unspecified calcaneus, initial encounter for closed fracture +S92023B Displaced fracture of anterior process of unspecified calcaneus, initial encounter for open fracture +S92023D Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92023G Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92023K Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92023P Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with malunion +S92023S Displaced fracture of anterior process of unspecified calcaneus, sequela +S92024A Nondisplaced fracture of anterior process of right calcaneus, initial encounter for closed fracture +S92024B Nondisplaced fracture of anterior process of right calcaneus, initial encounter for open fracture +S92024D Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with routine healing +S92024G Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with delayed healing +S92024K Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with nonunion +S92024P Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with malunion +S92024S Nondisplaced fracture of anterior process of right calcaneus, sequela +S92025A Nondisplaced fracture of anterior process of left calcaneus, initial encounter for closed fracture +S92025B Nondisplaced fracture of anterior process of left calcaneus, initial encounter for open fracture +S92025D Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with routine healing +S92025G Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with delayed healing +S92025K Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with nonunion +S92025P Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with malunion +S92025S Nondisplaced fracture of anterior process of left calcaneus, sequela +S92026A Nondisplaced fracture of anterior process of unspecified calcaneus, initial encounter for closed fracture +S92026B Nondisplaced fracture of anterior process of unspecified calcaneus, initial encounter for open fracture +S92026D Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92026G Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92026K Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92026P Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with malunion +S92026S Nondisplaced fracture of anterior process of unspecified calcaneus, sequela +S92031A Displaced avulsion fracture of tuberosity of right calcaneus, initial encounter for closed fracture +S92031B Displaced avulsion fracture of tuberosity of right calcaneus, initial encounter for open fracture +S92031D Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing +S92031G Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing +S92031K Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion +S92031P Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion +S92031S Displaced avulsion fracture of tuberosity of right calcaneus, sequela +S92032A Displaced avulsion fracture of tuberosity of left calcaneus, initial encounter for closed fracture +S92032B Displaced avulsion fracture of tuberosity of left calcaneus, initial encounter for open fracture +S92032D Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing +S92032G Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing +S92032K Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion +S92032P Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion +S92032S Displaced avulsion fracture of tuberosity of left calcaneus, sequela +S92033A Displaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture +S92033B Displaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture +S92033D Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92033G Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92033K Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92033P Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion +S92033S Displaced avulsion fracture of tuberosity of unspecified calcaneus, sequela +S92034A Nondisplaced avulsion fracture of tuberosity of right calcaneus, initial encounter for closed fracture +S92034B Nondisplaced avulsion fracture of tuberosity of right calcaneus, initial encounter for open fracture +S92034D Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing +S92034G Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing +S92034K Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion +S92034P Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion +S92034S Nondisplaced avulsion fracture of tuberosity of right calcaneus, sequela +S92035A Nondisplaced avulsion fracture of tuberosity of left calcaneus, initial encounter for closed fracture +S92035B Nondisplaced avulsion fracture of tuberosity of left calcaneus, initial encounter for open fracture +S92035D Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing +S92035G Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing +S92035K Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion +S92035P Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion +S92035S Nondisplaced avulsion fracture of tuberosity of left calcaneus, sequela +S92036A Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture +S92036B Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture +S92036D Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92036G Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92036K Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92036P Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion +S92036S Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, sequela +S92041A Displaced other fracture of tuberosity of right calcaneus, initial encounter for closed fracture +S92041B Displaced other fracture of tuberosity of right calcaneus, initial encounter for open fracture +S92041D Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing +S92041G Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing +S92041K Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion +S92041P Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion +S92041S Displaced other fracture of tuberosity of right calcaneus, sequela +S92042A Displaced other fracture of tuberosity of left calcaneus, initial encounter for closed fracture +S92042B Displaced other fracture of tuberosity of left calcaneus, initial encounter for open fracture +S92042D Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing +S92042G Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing +S92042K Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion +S92042P Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion +S92042S Displaced other fracture of tuberosity of left calcaneus, sequela +S92043A Displaced other fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture +S92043B Displaced other fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture +S92043D Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92043G Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92043K Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92043P Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion +S92043S Displaced other fracture of tuberosity of unspecified calcaneus, sequela +S92044A Nondisplaced other fracture of tuberosity of right calcaneus, initial encounter for closed fracture +S92044B Nondisplaced other fracture of tuberosity of right calcaneus, initial encounter for open fracture +S92044D Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing +S92044G Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing +S92044K Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion +S92044P Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion +S92044S Nondisplaced other fracture of tuberosity of right calcaneus, sequela +S92045A Nondisplaced other fracture of tuberosity of left calcaneus, initial encounter for closed fracture +S92045B Nondisplaced other fracture of tuberosity of left calcaneus, initial encounter for open fracture +S92045D Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing +S92045G Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing +S92045K Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion +S92045P Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion +S92045S Nondisplaced other fracture of tuberosity of left calcaneus, sequela +S92046A Nondisplaced other fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture +S92046B Nondisplaced other fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture +S92046D Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92046G Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92046K Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92046P Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion +S92046S Nondisplaced other fracture of tuberosity of unspecified calcaneus, sequela +S92051A Displaced other extraarticular fracture of right calcaneus, initial encounter for closed fracture +S92051B Displaced other extraarticular fracture of right calcaneus, initial encounter for open fracture +S92051D Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing +S92051G Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing +S92051K Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion +S92051P Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion +S92051S Displaced other extraarticular fracture of right calcaneus, sequela +S92052A Displaced other extraarticular fracture of left calcaneus, initial encounter for closed fracture +S92052B Displaced other extraarticular fracture of left calcaneus, initial encounter for open fracture +S92052D Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing +S92052G Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing +S92052K Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion +S92052P Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion +S92052S Displaced other extraarticular fracture of left calcaneus, sequela +S92053A Displaced other extraarticular fracture of unspecified calcaneus, initial encounter for closed fracture +S92053B Displaced other extraarticular fracture of unspecified calcaneus, initial encounter for open fracture +S92053D Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92053G Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92053K Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92053P Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +S92053S Displaced other extraarticular fracture of unspecified calcaneus, sequela +S92054A Nondisplaced other extraarticular fracture of right calcaneus, initial encounter for closed fracture +S92054B Nondisplaced other extraarticular fracture of right calcaneus, initial encounter for open fracture +S92054D Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing +S92054G Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing +S92054K Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion +S92054P Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion +S92054S Nondisplaced other extraarticular fracture of right calcaneus, sequela +S92055A Nondisplaced other extraarticular fracture of left calcaneus, initial encounter for closed fracture +S92055B Nondisplaced other extraarticular fracture of left calcaneus, initial encounter for open fracture +S92055D Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing +S92055G Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing +S92055K Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion +S92055P Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion +S92055S Nondisplaced other extraarticular fracture of left calcaneus, sequela +S92056A Nondisplaced other extraarticular fracture of unspecified calcaneus, initial encounter for closed fracture +S92056B Nondisplaced other extraarticular fracture of unspecified calcaneus, initial encounter for open fracture +S92056D Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92056G Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92056K Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92056P Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +S92056S Nondisplaced other extraarticular fracture of unspecified calcaneus, sequela +S92061A Displaced intraarticular fracture of right calcaneus, initial encounter for closed fracture +S92061B Displaced intraarticular fracture of right calcaneus, initial encounter for open fracture +S92061D Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing +S92061G Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing +S92061K Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion +S92061P Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion +S92061S Displaced intraarticular fracture of right calcaneus, sequela +S92062A Displaced intraarticular fracture of left calcaneus, initial encounter for closed fracture +S92062B Displaced intraarticular fracture of left calcaneus, initial encounter for open fracture +S92062D Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing +S92062G Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing +S92062K Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion +S92062P Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion +S92062S Displaced intraarticular fracture of left calcaneus, sequela +S92063A Displaced intraarticular fracture of unspecified calcaneus, initial encounter for closed fracture +S92063B Displaced intraarticular fracture of unspecified calcaneus, initial encounter for open fracture +S92063D Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92063G Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92063K Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92063P Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +S92063S Displaced intraarticular fracture of unspecified calcaneus, sequela +S92064A Nondisplaced intraarticular fracture of right calcaneus, initial encounter for closed fracture +S92064B Nondisplaced intraarticular fracture of right calcaneus, initial encounter for open fracture +S92064D Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing +S92064G Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing +S92064K Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion +S92064P Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion +S92064S Nondisplaced intraarticular fracture of right calcaneus, sequela +S92065A Nondisplaced intraarticular fracture of left calcaneus, initial encounter for closed fracture +S92065B Nondisplaced intraarticular fracture of left calcaneus, initial encounter for open fracture +S92065D Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing +S92065G Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing +S92065K Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion +S92065P Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion +S92065S Nondisplaced intraarticular fracture of left calcaneus, sequela +S92066A Nondisplaced intraarticular fracture of unspecified calcaneus, initial encounter for closed fracture +S92066B Nondisplaced intraarticular fracture of unspecified calcaneus, initial encounter for open fracture +S92066D Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing +S92066G Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S92066K Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +S92066P Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +S92066S Nondisplaced intraarticular fracture of unspecified calcaneus, sequela +S92101A Unspecified fracture of right talus, initial encounter for closed fracture +S92101B Unspecified fracture of right talus, initial encounter for open fracture +S92101D Unspecified fracture of right talus, subsequent encounter for fracture with routine healing +S92101G Unspecified fracture of right talus, subsequent encounter for fracture with delayed healing +S92101K Unspecified fracture of right talus, subsequent encounter for fracture with nonunion +S92101P Unspecified fracture of right talus, subsequent encounter for fracture with malunion +S92101S Unspecified fracture of right talus, sequela +S92102A Unspecified fracture of left talus, initial encounter for closed fracture +S92102B Unspecified fracture of left talus, initial encounter for open fracture +S92102D Unspecified fracture of left talus, subsequent encounter for fracture with routine healing +S92102G Unspecified fracture of left talus, subsequent encounter for fracture with delayed healing +S92102K Unspecified fracture of left talus, subsequent encounter for fracture with nonunion +S92102P Unspecified fracture of left talus, subsequent encounter for fracture with malunion +S92102S Unspecified fracture of left talus, sequela +S92109A Unspecified fracture of unspecified talus, initial encounter for closed fracture +S92109B Unspecified fracture of unspecified talus, initial encounter for open fracture +S92109D Unspecified fracture of unspecified talus, subsequent encounter for fracture with routine healing +S92109G Unspecified fracture of unspecified talus, subsequent encounter for fracture with delayed healing +S92109K Unspecified fracture of unspecified talus, subsequent encounter for fracture with nonunion +S92109P Unspecified fracture of unspecified talus, subsequent encounter for fracture with malunion +S92109S Unspecified fracture of unspecified talus, sequela +S92111A Displaced fracture of neck of right talus, initial encounter for closed fracture +S92111B Displaced fracture of neck of right talus, initial encounter for open fracture +S92111D Displaced fracture of neck of right talus, subsequent encounter for fracture with routine healing +S92111G Displaced fracture of neck of right talus, subsequent encounter for fracture with delayed healing +S92111K Displaced fracture of neck of right talus, subsequent encounter for fracture with nonunion +S92111P Displaced fracture of neck of right talus, subsequent encounter for fracture with malunion +S92111S Displaced fracture of neck of right talus, sequela +S92112A Displaced fracture of neck of left talus, initial encounter for closed fracture +S92112B Displaced fracture of neck of left talus, initial encounter for open fracture +S92112D Displaced fracture of neck of left talus, subsequent encounter for fracture with routine healing +S92112G Displaced fracture of neck of left talus, subsequent encounter for fracture with delayed healing +S92112K Displaced fracture of neck of left talus, subsequent encounter for fracture with nonunion +S92112P Displaced fracture of neck of left talus, subsequent encounter for fracture with malunion +S92112S Displaced fracture of neck of left talus, sequela +S92113A Displaced fracture of neck of unspecified talus, initial encounter for closed fracture +S92113B Displaced fracture of neck of unspecified talus, initial encounter for open fracture +S92113D Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with routine healing +S92113G Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with delayed healing +S92113K Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with nonunion +S92113P Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with malunion +S92113S Displaced fracture of neck of unspecified talus, sequela +S92114A Nondisplaced fracture of neck of right talus, initial encounter for closed fracture +S92114B Nondisplaced fracture of neck of right talus, initial encounter for open fracture +S92114D Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with routine healing +S92114G Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with delayed healing +S92114K Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with nonunion +S92114P Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with malunion +S92114S Nondisplaced fracture of neck of right talus, sequela +S92115A Nondisplaced fracture of neck of left talus, initial encounter for closed fracture +S92115B Nondisplaced fracture of neck of left talus, initial encounter for open fracture +S92115D Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with routine healing +S92115G Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with delayed healing +S92115K Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with nonunion +S92115P Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with malunion +S92115S Nondisplaced fracture of neck of left talus, sequela +S92116A Nondisplaced fracture of neck of unspecified talus, initial encounter for closed fracture +S92116B Nondisplaced fracture of neck of unspecified talus, initial encounter for open fracture +S92116D Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with routine healing +S92116G Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with delayed healing +S92116K Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with nonunion +S92116P Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with malunion +S92116S Nondisplaced fracture of neck of unspecified talus, sequela +S92121A Displaced fracture of body of right talus, initial encounter for closed fracture +S92121B Displaced fracture of body of right talus, initial encounter for open fracture +S92121D Displaced fracture of body of right talus, subsequent encounter for fracture with routine healing +S92121G Displaced fracture of body of right talus, subsequent encounter for fracture with delayed healing +S92121K Displaced fracture of body of right talus, subsequent encounter for fracture with nonunion +S92121P Displaced fracture of body of right talus, subsequent encounter for fracture with malunion +S92121S Displaced fracture of body of right talus, sequela +S92122A Displaced fracture of body of left talus, initial encounter for closed fracture +S92122B Displaced fracture of body of left talus, initial encounter for open fracture +S92122D Displaced fracture of body of left talus, subsequent encounter for fracture with routine healing +S92122G Displaced fracture of body of left talus, subsequent encounter for fracture with delayed healing +S92122K Displaced fracture of body of left talus, subsequent encounter for fracture with nonunion +S92122P Displaced fracture of body of left talus, subsequent encounter for fracture with malunion +S92122S Displaced fracture of body of left talus, sequela +S92123A Displaced fracture of body of unspecified talus, initial encounter for closed fracture +S92123B Displaced fracture of body of unspecified talus, initial encounter for open fracture +S92123D Displaced fracture of body of unspecified talus, subsequent encounter for fracture with routine healing +S92123G Displaced fracture of body of unspecified talus, subsequent encounter for fracture with delayed healing +S92123K Displaced fracture of body of unspecified talus, subsequent encounter for fracture with nonunion +S92123P Displaced fracture of body of unspecified talus, subsequent encounter for fracture with malunion +S92123S Displaced fracture of body of unspecified talus, sequela +S92124A Nondisplaced fracture of body of right talus, initial encounter for closed fracture +S92124B Nondisplaced fracture of body of right talus, initial encounter for open fracture +S92124D Nondisplaced fracture of body of right talus, subsequent encounter for fracture with routine healing +S92124G Nondisplaced fracture of body of right talus, subsequent encounter for fracture with delayed healing +S92124K Nondisplaced fracture of body of right talus, subsequent encounter for fracture with nonunion +S92124P Nondisplaced fracture of body of right talus, subsequent encounter for fracture with malunion +S92124S Nondisplaced fracture of body of right talus, sequela +S92125A Nondisplaced fracture of body of left talus, initial encounter for closed fracture +S92125B Nondisplaced fracture of body of left talus, initial encounter for open fracture +S92125D Nondisplaced fracture of body of left talus, subsequent encounter for fracture with routine healing +S92125G Nondisplaced fracture of body of left talus, subsequent encounter for fracture with delayed healing +S92125K Nondisplaced fracture of body of left talus, subsequent encounter for fracture with nonunion +S92125P Nondisplaced fracture of body of left talus, subsequent encounter for fracture with malunion +S92125S Nondisplaced fracture of body of left talus, sequela +S92126A Nondisplaced fracture of body of unspecified talus, initial encounter for closed fracture +S92126B Nondisplaced fracture of body of unspecified talus, initial encounter for open fracture +S92126D Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with routine healing +S92126G Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with delayed healing +S92126K Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with nonunion +S92126P Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with malunion +S92126S Nondisplaced fracture of body of unspecified talus, sequela +S92131A Displaced fracture of posterior process of right talus, initial encounter for closed fracture +S92131B Displaced fracture of posterior process of right talus, initial encounter for open fracture +S92131D Displaced fracture of posterior process of right talus, subsequent encounter for fracture with routine healing +S92131G Displaced fracture of posterior process of right talus, subsequent encounter for fracture with delayed healing +S92131K Displaced fracture of posterior process of right talus, subsequent encounter for fracture with nonunion +S92131P Displaced fracture of posterior process of right talus, subsequent encounter for fracture with malunion +S92131S Displaced fracture of posterior process of right talus, sequela +S92132A Displaced fracture of posterior process of left talus, initial encounter for closed fracture +S92132B Displaced fracture of posterior process of left talus, initial encounter for open fracture +S92132D Displaced fracture of posterior process of left talus, subsequent encounter for fracture with routine healing +S92132G Displaced fracture of posterior process of left talus, subsequent encounter for fracture with delayed healing +S92132K Displaced fracture of posterior process of left talus, subsequent encounter for fracture with nonunion +S92132P Displaced fracture of posterior process of left talus, subsequent encounter for fracture with malunion +S92132S Displaced fracture of posterior process of left talus, sequela +S92133A Displaced fracture of posterior process of unspecified talus, initial encounter for closed fracture +S92133B Displaced fracture of posterior process of unspecified talus, initial encounter for open fracture +S92133D Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with routine healing +S92133G Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with delayed healing +S92133K Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with nonunion +S92133P Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with malunion +S92133S Displaced fracture of posterior process of unspecified talus, sequela +S92134A Nondisplaced fracture of posterior process of right talus, initial encounter for closed fracture +S92134B Nondisplaced fracture of posterior process of right talus, initial encounter for open fracture +S92134D Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with routine healing +S92134G Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with delayed healing +S92134K Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with nonunion +S92134P Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with malunion +S92134S Nondisplaced fracture of posterior process of right talus, sequela +S92135A Nondisplaced fracture of posterior process of left talus, initial encounter for closed fracture +S92135B Nondisplaced fracture of posterior process of left talus, initial encounter for open fracture +S92135D Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with routine healing +S92135G Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with delayed healing +S92135K Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with nonunion +S92135P Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with malunion +S92135S Nondisplaced fracture of posterior process of left talus, sequela +S92136A Nondisplaced fracture of posterior process of unspecified talus, initial encounter for closed fracture +S92136B Nondisplaced fracture of posterior process of unspecified talus, initial encounter for open fracture +S92136D Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with routine healing +S92136G Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with delayed healing +S92136K Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with nonunion +S92136P Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with malunion +S92136S Nondisplaced fracture of posterior process of unspecified talus, sequela +S92141A Displaced dome fracture of right talus, initial encounter for closed fracture +S92141B Displaced dome fracture of right talus, initial encounter for open fracture +S92141D Displaced dome fracture of right talus, subsequent encounter for fracture with routine healing +S92141G Displaced dome fracture of right talus, subsequent encounter for fracture with delayed healing +S92141K Displaced dome fracture of right talus, subsequent encounter for fracture with nonunion +S92141P Displaced dome fracture of right talus, subsequent encounter for fracture with malunion +S92141S Displaced dome fracture of right talus, sequela +S92142A Displaced dome fracture of left talus, initial encounter for closed fracture +S92142B Displaced dome fracture of left talus, initial encounter for open fracture +S92142D Displaced dome fracture of left talus, subsequent encounter for fracture with routine healing +S92142G Displaced dome fracture of left talus, subsequent encounter for fracture with delayed healing +S92142K Displaced dome fracture of left talus, subsequent encounter for fracture with nonunion +S92142P Displaced dome fracture of left talus, subsequent encounter for fracture with malunion +S92142S Displaced dome fracture of left talus, sequela +S92143A Displaced dome fracture of unspecified talus, initial encounter for closed fracture +S92143B Displaced dome fracture of unspecified talus, initial encounter for open fracture +S92143D Displaced dome fracture of unspecified talus, subsequent encounter for fracture with routine healing +S92143G Displaced dome fracture of unspecified talus, subsequent encounter for fracture with delayed healing +S92143K Displaced dome fracture of unspecified talus, subsequent encounter for fracture with nonunion +S92143P Displaced dome fracture of unspecified talus, subsequent encounter for fracture with malunion +S92143S Displaced dome fracture of unspecified talus, sequela +S92144A Nondisplaced dome fracture of right talus, initial encounter for closed fracture +S92144B Nondisplaced dome fracture of right talus, initial encounter for open fracture +S92144D Nondisplaced dome fracture of right talus, subsequent encounter for fracture with routine healing +S92144G Nondisplaced dome fracture of right talus, subsequent encounter for fracture with delayed healing +S92144K Nondisplaced dome fracture of right talus, subsequent encounter for fracture with nonunion +S92144P Nondisplaced dome fracture of right talus, subsequent encounter for fracture with malunion +S92144S Nondisplaced dome fracture of right talus, sequela +S92145A Nondisplaced dome fracture of left talus, initial encounter for closed fracture +S92145B Nondisplaced dome fracture of left talus, initial encounter for open fracture +S92145D Nondisplaced dome fracture of left talus, subsequent encounter for fracture with routine healing +S92145G Nondisplaced dome fracture of left talus, subsequent encounter for fracture with delayed healing +S92145K Nondisplaced dome fracture of left talus, subsequent encounter for fracture with nonunion +S92145P Nondisplaced dome fracture of left talus, subsequent encounter for fracture with malunion +S92145S Nondisplaced dome fracture of left talus, sequela +S92146A Nondisplaced dome fracture of unspecified talus, initial encounter for closed fracture +S92146B Nondisplaced dome fracture of unspecified talus, initial encounter for open fracture +S92146D Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with routine healing +S92146G Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with delayed healing +S92146K Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with nonunion +S92146P Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with malunion +S92146S Nondisplaced dome fracture of unspecified talus, sequela +S92151A Displaced avulsion fracture (chip fracture) of right talus, initial encounter for closed fracture +S92151B Displaced avulsion fracture (chip fracture) of right talus, initial encounter for open fracture +S92151D Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with routine healing +S92151G Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with delayed healing +S92151K Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with nonunion +S92151P Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with malunion +S92151S Displaced avulsion fracture (chip fracture) of right talus, sequela +S92152A Displaced avulsion fracture (chip fracture) of left talus, initial encounter for closed fracture +S92152B Displaced avulsion fracture (chip fracture) of left talus, initial encounter for open fracture +S92152D Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with routine healing +S92152G Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with delayed healing +S92152K Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with nonunion +S92152P Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with malunion +S92152S Displaced avulsion fracture (chip fracture) of left talus, sequela +S92153A Displaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for closed fracture +S92153B Displaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for open fracture +S92153D Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with routine healing +S92153G Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with delayed healing +S92153K Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with nonunion +S92153P Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with malunion +S92153S Displaced avulsion fracture (chip fracture) of unspecified talus, sequela +S92154A Nondisplaced avulsion fracture (chip fracture) of right talus, initial encounter for closed fracture +S92154B Nondisplaced avulsion fracture (chip fracture) of right talus, initial encounter for open fracture +S92154D Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with routine healing +S92154G Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with delayed healing +S92154K Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with nonunion +S92154P Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with malunion +S92154S Nondisplaced avulsion fracture (chip fracture) of right talus, sequela +S92155A Nondisplaced avulsion fracture (chip fracture) of left talus, initial encounter for closed fracture +S92155B Nondisplaced avulsion fracture (chip fracture) of left talus, initial encounter for open fracture +S92155D Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with routine healing +S92155G Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with delayed healing +S92155K Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with nonunion +S92155P Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with malunion +S92155S Nondisplaced avulsion fracture (chip fracture) of left talus, sequela +S92156A Nondisplaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for closed fracture +S92156B Nondisplaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for open fracture +S92156D Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with routine healing +S92156G Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with delayed healing +S92156K Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with nonunion +S92156P Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with malunion +S92156S Nondisplaced avulsion fracture (chip fracture) of unspecified talus, sequela +S92191A Other fracture of right talus, initial encounter for closed fracture +S92191B Other fracture of right talus, initial encounter for open fracture +S92191D Other fracture of right talus, subsequent encounter for fracture with routine healing +S92191G Other fracture of right talus, subsequent encounter for fracture with delayed healing +S92191K Other fracture of right talus, subsequent encounter for fracture with nonunion +S92191P Other fracture of right talus, subsequent encounter for fracture with malunion +S92191S Other fracture of right talus, sequela +S92192A Other fracture of left talus, initial encounter for closed fracture +S92192B Other fracture of left talus, initial encounter for open fracture +S92192D Other fracture of left talus, subsequent encounter for fracture with routine healing +S92192G Other fracture of left talus, subsequent encounter for fracture with delayed healing +S92192K Other fracture of left talus, subsequent encounter for fracture with nonunion +S92192P Other fracture of left talus, subsequent encounter for fracture with malunion +S92192S Other fracture of left talus, sequela +S92199A Other fracture of unspecified talus, initial encounter for closed fracture +S92199B Other fracture of unspecified talus, initial encounter for open fracture +S92199D Other fracture of unspecified talus, subsequent encounter for fracture with routine healing +S92199G Other fracture of unspecified talus, subsequent encounter for fracture with delayed healing +S92199K Other fracture of unspecified talus, subsequent encounter for fracture with nonunion +S92199P Other fracture of unspecified talus, subsequent encounter for fracture with malunion +S92199S Other fracture of unspecified talus, sequela +S92201A Fracture of unspecified tarsal bone(s) of right foot, initial encounter for closed fracture +S92201B Fracture of unspecified tarsal bone(s) of right foot, initial encounter for open fracture +S92201D Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with routine healing +S92201G Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with delayed healing +S92201K Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with nonunion +S92201P Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with malunion +S92201S Fracture of unspecified tarsal bone(s) of right foot, sequela +S92202A Fracture of unspecified tarsal bone(s) of left foot, initial encounter for closed fracture +S92202B Fracture of unspecified tarsal bone(s) of left foot, initial encounter for open fracture +S92202D Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with routine healing +S92202G Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with delayed healing +S92202K Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with nonunion +S92202P Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with malunion +S92202S Fracture of unspecified tarsal bone(s) of left foot, sequela +S92209A Fracture of unspecified tarsal bone(s) of unspecified foot, initial encounter for closed fracture +S92209B Fracture of unspecified tarsal bone(s) of unspecified foot, initial encounter for open fracture +S92209D Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with routine healing +S92209G Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with delayed healing +S92209K Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with nonunion +S92209P Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with malunion +S92209S Fracture of unspecified tarsal bone(s) of unspecified foot, sequela +S92211A Displaced fracture of cuboid bone of right foot, initial encounter for closed fracture +S92211B Displaced fracture of cuboid bone of right foot, initial encounter for open fracture +S92211D Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with routine healing +S92211G Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with delayed healing +S92211K Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with nonunion +S92211P Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with malunion +S92211S Displaced fracture of cuboid bone of right foot, sequela +S92212A Displaced fracture of cuboid bone of left foot, initial encounter for closed fracture +S92212B Displaced fracture of cuboid bone of left foot, initial encounter for open fracture +S92212D Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with routine healing +S92212G Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with delayed healing +S92212K Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with nonunion +S92212P Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with malunion +S92212S Displaced fracture of cuboid bone of left foot, sequela +S92213A Displaced fracture of cuboid bone of unspecified foot, initial encounter for closed fracture +S92213B Displaced fracture of cuboid bone of unspecified foot, initial encounter for open fracture +S92213D Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with routine healing +S92213G Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with delayed healing +S92213K Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with nonunion +S92213P Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with malunion +S92213S Displaced fracture of cuboid bone of unspecified foot, sequela +S92214A Nondisplaced fracture of cuboid bone of right foot, initial encounter for closed fracture +S92214B Nondisplaced fracture of cuboid bone of right foot, initial encounter for open fracture +S92214D Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with routine healing +S92214G Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with delayed healing +S92214K Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with nonunion +S92214P Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with malunion +S92214S Nondisplaced fracture of cuboid bone of right foot, sequela +S92215A Nondisplaced fracture of cuboid bone of left foot, initial encounter for closed fracture +S92215B Nondisplaced fracture of cuboid bone of left foot, initial encounter for open fracture +S92215D Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with routine healing +S92215G Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with delayed healing +S92215K Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with nonunion +S92215P Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with malunion +S92215S Nondisplaced fracture of cuboid bone of left foot, sequela +S92216A Nondisplaced fracture of cuboid bone of unspecified foot, initial encounter for closed fracture +S92216B Nondisplaced fracture of cuboid bone of unspecified foot, initial encounter for open fracture +S92216D Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with routine healing +S92216G Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with delayed healing +S92216K Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with nonunion +S92216P Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with malunion +S92216S Nondisplaced fracture of cuboid bone of unspecified foot, sequela +S92221A Displaced fracture of lateral cuneiform of right foot, initial encounter for closed fracture +S92221B Displaced fracture of lateral cuneiform of right foot, initial encounter for open fracture +S92221D Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with routine healing +S92221G Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with delayed healing +S92221K Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with nonunion +S92221P Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with malunion +S92221S Displaced fracture of lateral cuneiform of right foot, sequela +S92222A Displaced fracture of lateral cuneiform of left foot, initial encounter for closed fracture +S92222B Displaced fracture of lateral cuneiform of left foot, initial encounter for open fracture +S92222D Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with routine healing +S92222G Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with delayed healing +S92222K Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with nonunion +S92222P Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with malunion +S92222S Displaced fracture of lateral cuneiform of left foot, sequela +S92223A Displaced fracture of lateral cuneiform of unspecified foot, initial encounter for closed fracture +S92223B Displaced fracture of lateral cuneiform of unspecified foot, initial encounter for open fracture +S92223D Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with routine healing +S92223G Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing +S92223K Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with nonunion +S92223P Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with malunion +S92223S Displaced fracture of lateral cuneiform of unspecified foot, sequela +S92224A Nondisplaced fracture of lateral cuneiform of right foot, initial encounter for closed fracture +S92224B Nondisplaced fracture of lateral cuneiform of right foot, initial encounter for open fracture +S92224D Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with routine healing +S92224G Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with delayed healing +S92224K Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with nonunion +S92224P Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with malunion +S92224S Nondisplaced fracture of lateral cuneiform of right foot, sequela +S92225A Nondisplaced fracture of lateral cuneiform of left foot, initial encounter for closed fracture +S92225B Nondisplaced fracture of lateral cuneiform of left foot, initial encounter for open fracture +S92225D Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with routine healing +S92225G Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with delayed healing +S92225K Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with nonunion +S92225P Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with malunion +S92225S Nondisplaced fracture of lateral cuneiform of left foot, sequela +S92226A Nondisplaced fracture of lateral cuneiform of unspecified foot, initial encounter for closed fracture +S92226B Nondisplaced fracture of lateral cuneiform of unspecified foot, initial encounter for open fracture +S92226D Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with routine healing +S92226G Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing +S92226K Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with nonunion +S92226P Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with malunion +S92226S Nondisplaced fracture of lateral cuneiform of unspecified foot, sequela +S92231A Displaced fracture of intermediate cuneiform of right foot, initial encounter for closed fracture +S92231B Displaced fracture of intermediate cuneiform of right foot, initial encounter for open fracture +S92231D Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with routine healing +S92231G Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with delayed healing +S92231K Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with nonunion +S92231P Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with malunion +S92231S Displaced fracture of intermediate cuneiform of right foot, sequela +S92232A Displaced fracture of intermediate cuneiform of left foot, initial encounter for closed fracture +S92232B Displaced fracture of intermediate cuneiform of left foot, initial encounter for open fracture +S92232D Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with routine healing +S92232G Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with delayed healing +S92232K Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with nonunion +S92232P Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with malunion +S92232S Displaced fracture of intermediate cuneiform of left foot, sequela +S92233A Displaced fracture of intermediate cuneiform of unspecified foot, initial encounter for closed fracture +S92233B Displaced fracture of intermediate cuneiform of unspecified foot, initial encounter for open fracture +S92233D Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with routine healing +S92233G Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing +S92233K Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with nonunion +S92233P Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with malunion +S92233S Displaced fracture of intermediate cuneiform of unspecified foot, sequela +S92234A Nondisplaced fracture of intermediate cuneiform of right foot, initial encounter for closed fracture +S92234B Nondisplaced fracture of intermediate cuneiform of right foot, initial encounter for open fracture +S92234D Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with routine healing +S92234G Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with delayed healing +S92234K Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with nonunion +S92234P Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with malunion +S92234S Nondisplaced fracture of intermediate cuneiform of right foot, sequela +S92235A Nondisplaced fracture of intermediate cuneiform of left foot, initial encounter for closed fracture +S92235B Nondisplaced fracture of intermediate cuneiform of left foot, initial encounter for open fracture +S92235D Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with routine healing +S92235G Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with delayed healing +S92235K Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with nonunion +S92235P Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with malunion +S92235S Nondisplaced fracture of intermediate cuneiform of left foot, sequela +S92236A Nondisplaced fracture of intermediate cuneiform of unspecified foot, initial encounter for closed fracture +S92236B Nondisplaced fracture of intermediate cuneiform of unspecified foot, initial encounter for open fracture +S92236D Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with routine healing +S92236G Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing +S92236K Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with nonunion +S92236P Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with malunion +S92236S Nondisplaced fracture of intermediate cuneiform of unspecified foot, sequela +S92241A Displaced fracture of medial cuneiform of right foot, initial encounter for closed fracture +S92241B Displaced fracture of medial cuneiform of right foot, initial encounter for open fracture +S92241D Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with routine healing +S92241G Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with delayed healing +S92241K Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with nonunion +S92241P Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with malunion +S92241S Displaced fracture of medial cuneiform of right foot, sequela +S92242A Displaced fracture of medial cuneiform of left foot, initial encounter for closed fracture +S92242B Displaced fracture of medial cuneiform of left foot, initial encounter for open fracture +S92242D Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with routine healing +S92242G Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with delayed healing +S92242K Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with nonunion +S92242P Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with malunion +S92242S Displaced fracture of medial cuneiform of left foot, sequela +S92243A Displaced fracture of medial cuneiform of unspecified foot, initial encounter for closed fracture +S92243B Displaced fracture of medial cuneiform of unspecified foot, initial encounter for open fracture +S92243D Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with routine healing +S92243G Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing +S92243K Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with nonunion +S92243P Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with malunion +S92243S Displaced fracture of medial cuneiform of unspecified foot, sequela +S92244A Nondisplaced fracture of medial cuneiform of right foot, initial encounter for closed fracture +S92244B Nondisplaced fracture of medial cuneiform of right foot, initial encounter for open fracture +S92244D Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with routine healing +S92244G Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with delayed healing +S92244K Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with nonunion +S92244P Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with malunion +S92244S Nondisplaced fracture of medial cuneiform of right foot, sequela +S92245A Nondisplaced fracture of medial cuneiform of left foot, initial encounter for closed fracture +S92245B Nondisplaced fracture of medial cuneiform of left foot, initial encounter for open fracture +S92245D Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with routine healing +S92245G Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with delayed healing +S92245K Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with nonunion +S92245P Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with malunion +S92245S Nondisplaced fracture of medial cuneiform of left foot, sequela +S92246A Nondisplaced fracture of medial cuneiform of unspecified foot, initial encounter for closed fracture +S92246B Nondisplaced fracture of medial cuneiform of unspecified foot, initial encounter for open fracture +S92246D Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with routine healing +S92246G Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing +S92246K Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with nonunion +S92246P Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with malunion +S92246S Nondisplaced fracture of medial cuneiform of unspecified foot, sequela +S92251A Displaced fracture of navicular [scaphoid] of right foot, initial encounter for closed fracture +S92251B Displaced fracture of navicular [scaphoid] of right foot, initial encounter for open fracture +S92251D Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with routine healing +S92251G Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with delayed healing +S92251K Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with nonunion +S92251P Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with malunion +S92251S Displaced fracture of navicular [scaphoid] of right foot, sequela +S92252A Displaced fracture of navicular [scaphoid] of left foot, initial encounter for closed fracture +S92252B Displaced fracture of navicular [scaphoid] of left foot, initial encounter for open fracture +S92252D Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with routine healing +S92252G Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with delayed healing +S92252K Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with nonunion +S92252P Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with malunion +S92252S Displaced fracture of navicular [scaphoid] of left foot, sequela +S92253A Displaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for closed fracture +S92253B Displaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for open fracture +S92253D Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with routine healing +S92253G Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with delayed healing +S92253K Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with nonunion +S92253P Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with malunion +S92253S Displaced fracture of navicular [scaphoid] of unspecified foot, sequela +S92254A Nondisplaced fracture of navicular [scaphoid] of right foot, initial encounter for closed fracture +S92254B Nondisplaced fracture of navicular [scaphoid] of right foot, initial encounter for open fracture +S92254D Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with routine healing +S92254G Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with delayed healing +S92254K Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with nonunion +S92254P Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with malunion +S92254S Nondisplaced fracture of navicular [scaphoid] of right foot, sequela +S92255A Nondisplaced fracture of navicular [scaphoid] of left foot, initial encounter for closed fracture +S92255B Nondisplaced fracture of navicular [scaphoid] of left foot, initial encounter for open fracture +S92255D Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with routine healing +S92255G Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with delayed healing +S92255K Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with nonunion +S92255P Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with malunion +S92255S Nondisplaced fracture of navicular [scaphoid] of left foot, sequela +S92256A Nondisplaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for closed fracture +S92256B Nondisplaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for open fracture +S92256D Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with routine healing +S92256G Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with delayed healing +S92256K Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with nonunion +S92256P Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with malunion +S92256S Nondisplaced fracture of navicular [scaphoid] of unspecified foot, sequela +S92301A Fracture of unspecified metatarsal bone(s), right foot, initial encounter for closed fracture +S92301B Fracture of unspecified metatarsal bone(s), right foot, initial encounter for open fracture +S92301D Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with routine healing +S92301G Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with delayed healing +S92301K Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with nonunion +S92301P Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with malunion +S92301S Fracture of unspecified metatarsal bone(s), right foot, sequela +S92302A Fracture of unspecified metatarsal bone(s), left foot, initial encounter for closed fracture +S92302B Fracture of unspecified metatarsal bone(s), left foot, initial encounter for open fracture +S92302D Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with routine healing +S92302G Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with delayed healing +S92302K Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with nonunion +S92302P Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with malunion +S92302S Fracture of unspecified metatarsal bone(s), left foot, sequela +S92309A Fracture of unspecified metatarsal bone(s), unspecified foot, initial encounter for closed fracture +S92309B Fracture of unspecified metatarsal bone(s), unspecified foot, initial encounter for open fracture +S92309D Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with routine healing +S92309G Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with delayed healing +S92309K Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with nonunion +S92309P Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with malunion +S92309S Fracture of unspecified metatarsal bone(s), unspecified foot, sequela +S92311A Displaced fracture of first metatarsal bone, right foot, initial encounter for closed fracture +S92311B Displaced fracture of first metatarsal bone, right foot, initial encounter for open fracture +S92311D Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with routine healing +S92311G Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with delayed healing +S92311K Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with nonunion +S92311P Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with malunion +S92311S Displaced fracture of first metatarsal bone, right foot, sequela +S92312A Displaced fracture of first metatarsal bone, left foot, initial encounter for closed fracture +S92312B Displaced fracture of first metatarsal bone, left foot, initial encounter for open fracture +S92312D Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with routine healing +S92312G Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with delayed healing +S92312K Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with nonunion +S92312P Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with malunion +S92312S Displaced fracture of first metatarsal bone, left foot, sequela +S92313A Displaced fracture of first metatarsal bone, unspecified foot, initial encounter for closed fracture +S92313B Displaced fracture of first metatarsal bone, unspecified foot, initial encounter for open fracture +S92313D Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing +S92313G Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing +S92313K Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion +S92313P Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion +S92313S Displaced fracture of first metatarsal bone, unspecified foot, sequela +S92314A Nondisplaced fracture of first metatarsal bone, right foot, initial encounter for closed fracture +S92314B Nondisplaced fracture of first metatarsal bone, right foot, initial encounter for open fracture +S92314D Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with routine healing +S92314G Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with delayed healing +S92314K Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with nonunion +S92314P Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with malunion +S92314S Nondisplaced fracture of first metatarsal bone, right foot, sequela +S92315A Nondisplaced fracture of first metatarsal bone, left foot, initial encounter for closed fracture +S92315B Nondisplaced fracture of first metatarsal bone, left foot, initial encounter for open fracture +S92315D Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with routine healing +S92315G Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with delayed healing +S92315K Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with nonunion +S92315P Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with malunion +S92315S Nondisplaced fracture of first metatarsal bone, left foot, sequela +S92316A Nondisplaced fracture of first metatarsal bone, unspecified foot, initial encounter for closed fracture +S92316B Nondisplaced fracture of first metatarsal bone, unspecified foot, initial encounter for open fracture +S92316D Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing +S92316G Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing +S92316K Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion +S92316P Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion +S92316S Nondisplaced fracture of first metatarsal bone, unspecified foot, sequela +S92321A Displaced fracture of second metatarsal bone, right foot, initial encounter for closed fracture +S92321B Displaced fracture of second metatarsal bone, right foot, initial encounter for open fracture +S92321D Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with routine healing +S92321G Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with delayed healing +S92321K Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with nonunion +S92321P Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with malunion +S92321S Displaced fracture of second metatarsal bone, right foot, sequela +S92322A Displaced fracture of second metatarsal bone, left foot, initial encounter for closed fracture +S92322B Displaced fracture of second metatarsal bone, left foot, initial encounter for open fracture +S92322D Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with routine healing +S92322G Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with delayed healing +S92322K Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with nonunion +S92322P Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with malunion +S92322S Displaced fracture of second metatarsal bone, left foot, sequela +S92323A Displaced fracture of second metatarsal bone, unspecified foot, initial encounter for closed fracture +S92323B Displaced fracture of second metatarsal bone, unspecified foot, initial encounter for open fracture +S92323D Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing +S92323G Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing +S92323K Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion +S92323P Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion +S92323S Displaced fracture of second metatarsal bone, unspecified foot, sequela +S92324A Nondisplaced fracture of second metatarsal bone, right foot, initial encounter for closed fracture +S92324B Nondisplaced fracture of second metatarsal bone, right foot, initial encounter for open fracture +S92324D Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with routine healing +S92324G Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with delayed healing +S92324K Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with nonunion +S92324P Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with malunion +S92324S Nondisplaced fracture of second metatarsal bone, right foot, sequela +S92325A Nondisplaced fracture of second metatarsal bone, left foot, initial encounter for closed fracture +S92325B Nondisplaced fracture of second metatarsal bone, left foot, initial encounter for open fracture +S92325D Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with routine healing +S92325G Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with delayed healing +S92325K Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with nonunion +S92325P Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with malunion +S92325S Nondisplaced fracture of second metatarsal bone, left foot, sequela +S92326A Nondisplaced fracture of second metatarsal bone, unspecified foot, initial encounter for closed fracture +S92326B Nondisplaced fracture of second metatarsal bone, unspecified foot, initial encounter for open fracture +S92326D Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing +S92326G Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing +S92326K Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion +S92326P Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion +S92326S Nondisplaced fracture of second metatarsal bone, unspecified foot, sequela +S92331A Displaced fracture of third metatarsal bone, right foot, initial encounter for closed fracture +S92331B Displaced fracture of third metatarsal bone, right foot, initial encounter for open fracture +S92331D Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with routine healing +S92331G Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with delayed healing +S92331K Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with nonunion +S92331P Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with malunion +S92331S Displaced fracture of third metatarsal bone, right foot, sequela +S92332A Displaced fracture of third metatarsal bone, left foot, initial encounter for closed fracture +S92332B Displaced fracture of third metatarsal bone, left foot, initial encounter for open fracture +S92332D Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with routine healing +S92332G Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with delayed healing +S92332K Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with nonunion +S92332P Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with malunion +S92332S Displaced fracture of third metatarsal bone, left foot, sequela +S92333A Displaced fracture of third metatarsal bone, unspecified foot, initial encounter for closed fracture +S92333B Displaced fracture of third metatarsal bone, unspecified foot, initial encounter for open fracture +S92333D Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing +S92333G Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing +S92333K Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion +S92333P Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion +S92333S Displaced fracture of third metatarsal bone, unspecified foot, sequela +S92334A Nondisplaced fracture of third metatarsal bone, right foot, initial encounter for closed fracture +S92334B Nondisplaced fracture of third metatarsal bone, right foot, initial encounter for open fracture +S92334D Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with routine healing +S92334G Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with delayed healing +S92334K Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with nonunion +S92334P Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with malunion +S92334S Nondisplaced fracture of third metatarsal bone, right foot, sequela +S92335A Nondisplaced fracture of third metatarsal bone, left foot, initial encounter for closed fracture +S92335B Nondisplaced fracture of third metatarsal bone, left foot, initial encounter for open fracture +S92335D Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with routine healing +S92335G Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with delayed healing +S92335K Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with nonunion +S92335P Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with malunion +S92335S Nondisplaced fracture of third metatarsal bone, left foot, sequela +S92336A Nondisplaced fracture of third metatarsal bone, unspecified foot, initial encounter for closed fracture +S92336B Nondisplaced fracture of third metatarsal bone, unspecified foot, initial encounter for open fracture +S92336D Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing +S92336G Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing +S92336K Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion +S92336P Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion +S92336S Nondisplaced fracture of third metatarsal bone, unspecified foot, sequela +S92341A Displaced fracture of fourth metatarsal bone, right foot, initial encounter for closed fracture +S92341B Displaced fracture of fourth metatarsal bone, right foot, initial encounter for open fracture +S92341D Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with routine healing +S92341G Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing +S92341K Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with nonunion +S92341P Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with malunion +S92341S Displaced fracture of fourth metatarsal bone, right foot, sequela +S92342A Displaced fracture of fourth metatarsal bone, left foot, initial encounter for closed fracture +S92342B Displaced fracture of fourth metatarsal bone, left foot, initial encounter for open fracture +S92342D Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with routine healing +S92342G Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing +S92342K Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with nonunion +S92342P Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with malunion +S92342S Displaced fracture of fourth metatarsal bone, left foot, sequela +S92343A Displaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for closed fracture +S92343B Displaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for open fracture +S92343D Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing +S92343G Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing +S92343K Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion +S92343P Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion +S92343S Displaced fracture of fourth metatarsal bone, unspecified foot, sequela +S92344A Nondisplaced fracture of fourth metatarsal bone, right foot, initial encounter for closed fracture +S92344B Nondisplaced fracture of fourth metatarsal bone, right foot, initial encounter for open fracture +S92344D Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with routine healing +S92344G Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing +S92344K Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with nonunion +S92344P Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with malunion +S92344S Nondisplaced fracture of fourth metatarsal bone, right foot, sequela +S92345A Nondisplaced fracture of fourth metatarsal bone, left foot, initial encounter for closed fracture +S92345B Nondisplaced fracture of fourth metatarsal bone, left foot, initial encounter for open fracture +S92345D Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with routine healing +S92345G Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing +S92345K Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with nonunion +S92345P Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with malunion +S92345S Nondisplaced fracture of fourth metatarsal bone, left foot, sequela +S92346A Nondisplaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for closed fracture +S92346B Nondisplaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for open fracture +S92346D Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing +S92346G Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing +S92346K Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion +S92346P Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion +S92346S Nondisplaced fracture of fourth metatarsal bone, unspecified foot, sequela +S92351A Displaced fracture of fifth metatarsal bone, right foot, initial encounter for closed fracture +S92351B Displaced fracture of fifth metatarsal bone, right foot, initial encounter for open fracture +S92351D Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with routine healing +S92351G Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing +S92351K Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with nonunion +S92351P Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with malunion +S92351S Displaced fracture of fifth metatarsal bone, right foot, sequela +S92352A Displaced fracture of fifth metatarsal bone, left foot, initial encounter for closed fracture +S92352B Displaced fracture of fifth metatarsal bone, left foot, initial encounter for open fracture +S92352D Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with routine healing +S92352G Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing +S92352K Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with nonunion +S92352P Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with malunion +S92352S Displaced fracture of fifth metatarsal bone, left foot, sequela +S92353A Displaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for closed fracture +S92353B Displaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for open fracture +S92353D Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing +S92353G Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing +S92353K Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion +S92353P Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion +S92353S Displaced fracture of fifth metatarsal bone, unspecified foot, sequela +S92354A Nondisplaced fracture of fifth metatarsal bone, right foot, initial encounter for closed fracture +S92354B Nondisplaced fracture of fifth metatarsal bone, right foot, initial encounter for open fracture +S92354D Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with routine healing +S92354G Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing +S92354K Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with nonunion +S92354P Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with malunion +S92354S Nondisplaced fracture of fifth metatarsal bone, right foot, sequela +S92355A Nondisplaced fracture of fifth metatarsal bone, left foot, initial encounter for closed fracture +S92355B Nondisplaced fracture of fifth metatarsal bone, left foot, initial encounter for open fracture +S92355D Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with routine healing +S92355G Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing +S92355K Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with nonunion +S92355P Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with malunion +S92355S Nondisplaced fracture of fifth metatarsal bone, left foot, sequela +S92356A Nondisplaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for closed fracture +S92356B Nondisplaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for open fracture +S92356D Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing +S92356G Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing +S92356K Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion +S92356P Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion +S92356S Nondisplaced fracture of fifth metatarsal bone, unspecified foot, sequela +S92401A Displaced unspecified fracture of right great toe, initial encounter for closed fracture +S92401B Displaced unspecified fracture of right great toe, initial encounter for open fracture +S92401D Displaced unspecified fracture of right great toe, subsequent encounter for fracture with routine healing +S92401G Displaced unspecified fracture of right great toe, subsequent encounter for fracture with delayed healing +S92401K Displaced unspecified fracture of right great toe, subsequent encounter for fracture with nonunion +S92401P Displaced unspecified fracture of right great toe, subsequent encounter for fracture with malunion +S92401S Displaced unspecified fracture of right great toe, sequela +S92402A Displaced unspecified fracture of left great toe, initial encounter for closed fracture +S92402B Displaced unspecified fracture of left great toe, initial encounter for open fracture +S92402D Displaced unspecified fracture of left great toe, subsequent encounter for fracture with routine healing +S92402G Displaced unspecified fracture of left great toe, subsequent encounter for fracture with delayed healing +S92402K Displaced unspecified fracture of left great toe, subsequent encounter for fracture with nonunion +S92402P Displaced unspecified fracture of left great toe, subsequent encounter for fracture with malunion +S92402S Displaced unspecified fracture of left great toe, sequela +S92403A Displaced unspecified fracture of unspecified great toe, initial encounter for closed fracture +S92403B Displaced unspecified fracture of unspecified great toe, initial encounter for open fracture +S92403D Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with routine healing +S92403G Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with delayed healing +S92403K Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with nonunion +S92403P Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with malunion +S92403S Displaced unspecified fracture of unspecified great toe, sequela +S92404A Nondisplaced unspecified fracture of right great toe, initial encounter for closed fracture +S92404B Nondisplaced unspecified fracture of right great toe, initial encounter for open fracture +S92404D Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with routine healing +S92404G Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with delayed healing +S92404K Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with nonunion +S92404P Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with malunion +S92404S Nondisplaced unspecified fracture of right great toe, sequela +S92405A Nondisplaced unspecified fracture of left great toe, initial encounter for closed fracture +S92405B Nondisplaced unspecified fracture of left great toe, initial encounter for open fracture +S92405D Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with routine healing +S92405G Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with delayed healing +S92405K Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with nonunion +S92405P Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with malunion +S92405S Nondisplaced unspecified fracture of left great toe, sequela +S92406A Nondisplaced unspecified fracture of unspecified great toe, initial encounter for closed fracture +S92406B Nondisplaced unspecified fracture of unspecified great toe, initial encounter for open fracture +S92406D Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with routine healing +S92406G Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with delayed healing +S92406K Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with nonunion +S92406P Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with malunion +S92406S Nondisplaced unspecified fracture of unspecified great toe, sequela +S92411A Displaced fracture of proximal phalanx of right great toe, initial encounter for closed fracture +S92411B Displaced fracture of proximal phalanx of right great toe, initial encounter for open fracture +S92411D Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with routine healing +S92411G Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with delayed healing +S92411K Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with nonunion +S92411P Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with malunion +S92411S Displaced fracture of proximal phalanx of right great toe, sequela +S92412A Displaced fracture of proximal phalanx of left great toe, initial encounter for closed fracture +S92412B Displaced fracture of proximal phalanx of left great toe, initial encounter for open fracture +S92412D Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with routine healing +S92412G Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with delayed healing +S92412K Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with nonunion +S92412P Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with malunion +S92412S Displaced fracture of proximal phalanx of left great toe, sequela +S92413A Displaced fracture of proximal phalanx of unspecified great toe, initial encounter for closed fracture +S92413B Displaced fracture of proximal phalanx of unspecified great toe, initial encounter for open fracture +S92413D Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing +S92413G Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing +S92413K Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion +S92413P Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with malunion +S92413S Displaced fracture of proximal phalanx of unspecified great toe, sequela +S92414A Nondisplaced fracture of proximal phalanx of right great toe, initial encounter for closed fracture +S92414B Nondisplaced fracture of proximal phalanx of right great toe, initial encounter for open fracture +S92414D Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with routine healing +S92414G Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with delayed healing +S92414K Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with nonunion +S92414P Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with malunion +S92414S Nondisplaced fracture of proximal phalanx of right great toe, sequela +S92415A Nondisplaced fracture of proximal phalanx of left great toe, initial encounter for closed fracture +S92415B Nondisplaced fracture of proximal phalanx of left great toe, initial encounter for open fracture +S92415D Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with routine healing +S92415G Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with delayed healing +S92415K Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with nonunion +S92415P Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with malunion +S92415S Nondisplaced fracture of proximal phalanx of left great toe, sequela +S92416A Nondisplaced fracture of proximal phalanx of unspecified great toe, initial encounter for closed fracture +S92416B Nondisplaced fracture of proximal phalanx of unspecified great toe, initial encounter for open fracture +S92416D Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing +S92416G Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing +S92416K Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion +S92416P Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with malunion +S92416S Nondisplaced fracture of proximal phalanx of unspecified great toe, sequela +S92421A Displaced fracture of distal phalanx of right great toe, initial encounter for closed fracture +S92421B Displaced fracture of distal phalanx of right great toe, initial encounter for open fracture +S92421D Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with routine healing +S92421G Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with delayed healing +S92421K Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with nonunion +S92421P Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with malunion +S92421S Displaced fracture of distal phalanx of right great toe, sequela +S92422A Displaced fracture of distal phalanx of left great toe, initial encounter for closed fracture +S92422B Displaced fracture of distal phalanx of left great toe, initial encounter for open fracture +S92422D Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with routine healing +S92422G Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with delayed healing +S92422K Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with nonunion +S92422P Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with malunion +S92422S Displaced fracture of distal phalanx of left great toe, sequela +S92423A Displaced fracture of distal phalanx of unspecified great toe, initial encounter for closed fracture +S92423B Displaced fracture of distal phalanx of unspecified great toe, initial encounter for open fracture +S92423D Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing +S92423G Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing +S92423K Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion +S92423P Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with malunion +S92423S Displaced fracture of distal phalanx of unspecified great toe, sequela +S92424A Nondisplaced fracture of distal phalanx of right great toe, initial encounter for closed fracture +S92424B Nondisplaced fracture of distal phalanx of right great toe, initial encounter for open fracture +S92424D Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with routine healing +S92424G Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with delayed healing +S92424K Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with nonunion +S92424P Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with malunion +S92424S Nondisplaced fracture of distal phalanx of right great toe, sequela +S92425A Nondisplaced fracture of distal phalanx of left great toe, initial encounter for closed fracture +S92425B Nondisplaced fracture of distal phalanx of left great toe, initial encounter for open fracture +S92425D Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with routine healing +S92425G Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with delayed healing +S92425K Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with nonunion +S92425P Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with malunion +S92425S Nondisplaced fracture of distal phalanx of left great toe, sequela +S92426A Nondisplaced fracture of distal phalanx of unspecified great toe, initial encounter for closed fracture +S92426B Nondisplaced fracture of distal phalanx of unspecified great toe, initial encounter for open fracture +S92426D Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing +S92426G Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing +S92426K Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion +S92426P Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with malunion +S92426S Nondisplaced fracture of distal phalanx of unspecified great toe, sequela +S92491A Other fracture of right great toe, initial encounter for closed fracture +S92491B Other fracture of right great toe, initial encounter for open fracture +S92491D Other fracture of right great toe, subsequent encounter for fracture with routine healing +S92491G Other fracture of right great toe, subsequent encounter for fracture with delayed healing +S92491K Other fracture of right great toe, subsequent encounter for fracture with nonunion +S92491P Other fracture of right great toe, subsequent encounter for fracture with malunion +S92491S Other fracture of right great toe, sequela +S92492A Other fracture of left great toe, initial encounter for closed fracture +S92492B Other fracture of left great toe, initial encounter for open fracture +S92492D Other fracture of left great toe, subsequent encounter for fracture with routine healing +S92492G Other fracture of left great toe, subsequent encounter for fracture with delayed healing +S92492K Other fracture of left great toe, subsequent encounter for fracture with nonunion +S92492P Other fracture of left great toe, subsequent encounter for fracture with malunion +S92492S Other fracture of left great toe, sequela +S92499A Other fracture of unspecified great toe, initial encounter for closed fracture +S92499B Other fracture of unspecified great toe, initial encounter for open fracture +S92499D Other fracture of unspecified great toe, subsequent encounter for fracture with routine healing +S92499G Other fracture of unspecified great toe, subsequent encounter for fracture with delayed healing +S92499K Other fracture of unspecified great toe, subsequent encounter for fracture with nonunion +S92499P Other fracture of unspecified great toe, subsequent encounter for fracture with malunion +S92499S Other fracture of unspecified great toe, sequela +S92501A Displaced unspecified fracture of right lesser toe(s), initial encounter for closed fracture +S92501B Displaced unspecified fracture of right lesser toe(s), initial encounter for open fracture +S92501D Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with routine healing +S92501G Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with delayed healing +S92501K Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with nonunion +S92501P Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with malunion +S92501S Displaced unspecified fracture of right lesser toe(s), sequela +S92502A Displaced unspecified fracture of left lesser toe(s), initial encounter for closed fracture +S92502B Displaced unspecified fracture of left lesser toe(s), initial encounter for open fracture +S92502D Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with routine healing +S92502G Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with delayed healing +S92502K Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with nonunion +S92502P Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with malunion +S92502S Displaced unspecified fracture of left lesser toe(s), sequela +S92503A Displaced unspecified fracture of unspecified lesser toe(s), initial encounter for closed fracture +S92503B Displaced unspecified fracture of unspecified lesser toe(s), initial encounter for open fracture +S92503D Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with routine healing +S92503G Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing +S92503K Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with nonunion +S92503P Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with malunion +S92503S Displaced unspecified fracture of unspecified lesser toe(s), sequela +S92504A Nondisplaced unspecified fracture of right lesser toe(s), initial encounter for closed fracture +S92504B Nondisplaced unspecified fracture of right lesser toe(s), initial encounter for open fracture +S92504D Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with routine healing +S92504G Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with delayed healing +S92504K Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with nonunion +S92504P Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with malunion +S92504S Nondisplaced unspecified fracture of right lesser toe(s), sequela +S92505A Nondisplaced unspecified fracture of left lesser toe(s), initial encounter for closed fracture +S92505B Nondisplaced unspecified fracture of left lesser toe(s), initial encounter for open fracture +S92505D Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with routine healing +S92505G Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with delayed healing +S92505K Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with nonunion +S92505P Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with malunion +S92505S Nondisplaced unspecified fracture of left lesser toe(s), sequela +S92506A Nondisplaced unspecified fracture of unspecified lesser toe(s), initial encounter for closed fracture +S92506B Nondisplaced unspecified fracture of unspecified lesser toe(s), initial encounter for open fracture +S92506D Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with routine healing +S92506G Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing +S92506K Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with nonunion +S92506P Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with malunion +S92506S Nondisplaced unspecified fracture of unspecified lesser toe(s), sequela +S92511A Displaced fracture of proximal phalanx of right lesser toe(s), initial encounter for closed fracture +S92511B Displaced fracture of proximal phalanx of right lesser toe(s), initial encounter for open fracture +S92511D Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing +S92511G Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing +S92511K Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion +S92511P Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion +S92511S Displaced fracture of proximal phalanx of right lesser toe(s), sequela +S92512A Displaced fracture of proximal phalanx of left lesser toe(s), initial encounter for closed fracture +S92512B Displaced fracture of proximal phalanx of left lesser toe(s), initial encounter for open fracture +S92512D Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing +S92512G Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing +S92512K Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion +S92512P Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion +S92512S Displaced fracture of proximal phalanx of left lesser toe(s), sequela +S92513A Displaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for closed fracture +S92513B Displaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for open fracture +S92513D Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing +S92513G Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing +S92513K Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion +S92513P Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion +S92513S Displaced fracture of proximal phalanx of unspecified lesser toe(s), sequela +S92514A Nondisplaced fracture of proximal phalanx of right lesser toe(s), initial encounter for closed fracture +S92514B Nondisplaced fracture of proximal phalanx of right lesser toe(s), initial encounter for open fracture +S92514D Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing +S92514G Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing +S92514K Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion +S92514P Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion +S92514S Nondisplaced fracture of proximal phalanx of right lesser toe(s), sequela +S92515A Nondisplaced fracture of proximal phalanx of left lesser toe(s), initial encounter for closed fracture +S92515B Nondisplaced fracture of proximal phalanx of left lesser toe(s), initial encounter for open fracture +S92515D Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing +S92515G Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing +S92515K Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion +S92515P Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion +S92515S Nondisplaced fracture of proximal phalanx of left lesser toe(s), sequela +S92516A Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for closed fracture +S92516B Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for open fracture +S92516D Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing +S92516G Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing +S92516K Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion +S92516P Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion +S92516S Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), sequela +S92521A Displaced fracture of middle phalanx of right lesser toe(s), initial encounter for closed fracture +S92521B Displaced fracture of middle phalanx of right lesser toe(s), initial encounter for open fracture +S92521D Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing +S92521G Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing +S92521K Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion +S92521P Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with malunion +S92521S Displaced fracture of middle phalanx of right lesser toe(s), sequela +S92522A Displaced fracture of middle phalanx of left lesser toe(s), initial encounter for closed fracture +S92522B Displaced fracture of middle phalanx of left lesser toe(s), initial encounter for open fracture +S92522D Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing +S92522G Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing +S92522K Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion +S92522P Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with malunion +S92522S Displaced fracture of middle phalanx of left lesser toe(s), sequela +S92523A Displaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for closed fracture +S92523B Displaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for open fracture +S92523D Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing +S92523G Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing +S92523K Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion +S92523P Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion +S92523S Displaced fracture of middle phalanx of unspecified lesser toe(s), sequela +S92524A Nondisplaced fracture of middle phalanx of right lesser toe(s), initial encounter for closed fracture +S92524B Nondisplaced fracture of middle phalanx of right lesser toe(s), initial encounter for open fracture +S92524D Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing +S92524G Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing +S92524K Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion +S92524P Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with malunion +S92524S Nondisplaced fracture of middle phalanx of right lesser toe(s), sequela +S92525A Nondisplaced fracture of middle phalanx of left lesser toe(s), initial encounter for closed fracture +S92525B Nondisplaced fracture of middle phalanx of left lesser toe(s), initial encounter for open fracture +S92525D Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing +S92525G Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing +S92525K Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion +S92525P Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with malunion +S92525S Nondisplaced fracture of middle phalanx of left lesser toe(s), sequela +S92526A Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for closed fracture +S92526B Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for open fracture +S92526D Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing +S92526G Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing +S92526K Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion +S92526P Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion +S92526S Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), sequela +S92531A Displaced fracture of distal phalanx of right lesser toe(s), initial encounter for closed fracture +S92531B Displaced fracture of distal phalanx of right lesser toe(s), initial encounter for open fracture +S92531D Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing +S92531G Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing +S92531K Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion +S92531P Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion +S92531S Displaced fracture of distal phalanx of right lesser toe(s), sequela +S92532A Displaced fracture of distal phalanx of left lesser toe(s), initial encounter for closed fracture +S92532B Displaced fracture of distal phalanx of left lesser toe(s), initial encounter for open fracture +S92532D Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing +S92532G Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing +S92532K Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion +S92532P Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion +S92532S Displaced fracture of distal phalanx of left lesser toe(s), sequela +S92533A Displaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for closed fracture +S92533B Displaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for open fracture +S92533D Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing +S92533G Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing +S92533K Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion +S92533P Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion +S92533S Displaced fracture of distal phalanx of unspecified lesser toe(s), sequela +S92534A Nondisplaced fracture of distal phalanx of right lesser toe(s), initial encounter for closed fracture +S92534B Nondisplaced fracture of distal phalanx of right lesser toe(s), initial encounter for open fracture +S92534D Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing +S92534G Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing +S92534K Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion +S92534P Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion +S92534S Nondisplaced fracture of distal phalanx of right lesser toe(s), sequela +S92535A Nondisplaced fracture of distal phalanx of left lesser toe(s), initial encounter for closed fracture +S92535B Nondisplaced fracture of distal phalanx of left lesser toe(s), initial encounter for open fracture +S92535D Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing +S92535G Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing +S92535K Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion +S92535P Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion +S92535S Nondisplaced fracture of distal phalanx of left lesser toe(s), sequela +S92536A Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for closed fracture +S92536B Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for open fracture +S92536D Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing +S92536G Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing +S92536K Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion +S92536P Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion +S92536S Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), sequela +S92591A Other fracture of right lesser toe(s), initial encounter for closed fracture +S92591B Other fracture of right lesser toe(s), initial encounter for open fracture +S92591D Other fracture of right lesser toe(s), subsequent encounter for fracture with routine healing +S92591G Other fracture of right lesser toe(s), subsequent encounter for fracture with delayed healing +S92591K Other fracture of right lesser toe(s), subsequent encounter for fracture with nonunion +S92591P Other fracture of right lesser toe(s), subsequent encounter for fracture with malunion +S92591S Other fracture of right lesser toe(s), sequela +S92592A Other fracture of left lesser toe(s), initial encounter for closed fracture +S92592B Other fracture of left lesser toe(s), initial encounter for open fracture +S92592D Other fracture of left lesser toe(s), subsequent encounter for fracture with routine healing +S92592G Other fracture of left lesser toe(s), subsequent encounter for fracture with delayed healing +S92592K Other fracture of left lesser toe(s), subsequent encounter for fracture with nonunion +S92592P Other fracture of left lesser toe(s), subsequent encounter for fracture with malunion +S92592S Other fracture of left lesser toe(s), sequela +S92599A Other fracture of unspecified lesser toe(s), initial encounter for closed fracture +S92599B Other fracture of unspecified lesser toe(s), initial encounter for open fracture +S92599D Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with routine healing +S92599G Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing +S92599K Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with nonunion +S92599P Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with malunion +S92599S Other fracture of unspecified lesser toe(s), sequela +S92811A Other fracture of right foot, initial encounter for closed fracture +S92811B Other fracture of right foot, initial encounter for open fracture +S92811D Other fracture of right foot, subsequent encounter for fracture with routine healing +S92811G Other fracture of right foot, subsequent encounter for fracture with delayed healing +S92811K Other fracture of right foot, subsequent encounter for fracture with nonunion +S92811P Other fracture of right foot, subsequent encounter for fracture with malunion +S92811S Other fracture of right foot, sequela +S92812A Other fracture of left foot, initial encounter for closed fracture +S92812B Other fracture of left foot, initial encounter for open fracture +S92812D Other fracture of left foot, subsequent encounter for fracture with routine healing +S92812G Other fracture of left foot, subsequent encounter for fracture with delayed healing +S92812K Other fracture of left foot, subsequent encounter for fracture with nonunion +S92812P Other fracture of left foot, subsequent encounter for fracture with malunion +S92812S Other fracture of left foot, sequela +S92819A Other fracture of unspecified foot, initial encounter for closed fracture +S92819B Other fracture of unspecified foot, initial encounter for open fracture +S92819D Other fracture of unspecified foot, subsequent encounter for fracture with routine healing +S92819G Other fracture of unspecified foot, subsequent encounter for fracture with delayed healing +S92819K Other fracture of unspecified foot, subsequent encounter for fracture with nonunion +S92819P Other fracture of unspecified foot, subsequent encounter for fracture with malunion +S92819S Other fracture of unspecified foot, sequela +S92901A Unspecified fracture of right foot, initial encounter for closed fracture +S92901B Unspecified fracture of right foot, initial encounter for open fracture +S92901D Unspecified fracture of right foot, subsequent encounter for fracture with routine healing +S92901G Unspecified fracture of right foot, subsequent encounter for fracture with delayed healing +S92901K Unspecified fracture of right foot, subsequent encounter for fracture with nonunion +S92901P Unspecified fracture of right foot, subsequent encounter for fracture with malunion +S92901S Unspecified fracture of right foot, sequela +S92902A Unspecified fracture of left foot, initial encounter for closed fracture +S92902B Unspecified fracture of left foot, initial encounter for open fracture +S92902D Unspecified fracture of left foot, subsequent encounter for fracture with routine healing +S92902G Unspecified fracture of left foot, subsequent encounter for fracture with delayed healing +S92902K Unspecified fracture of left foot, subsequent encounter for fracture with nonunion +S92902P Unspecified fracture of left foot, subsequent encounter for fracture with malunion +S92902S Unspecified fracture of left foot, sequela +S92909A Unspecified fracture of unspecified foot, initial encounter for closed fracture +S92909B Unspecified fracture of unspecified foot, initial encounter for open fracture +S92909D Unspecified fracture of unspecified foot, subsequent encounter for fracture with routine healing +S92909G Unspecified fracture of unspecified foot, subsequent encounter for fracture with delayed healing +S92909K Unspecified fracture of unspecified foot, subsequent encounter for fracture with nonunion +S92909P Unspecified fracture of unspecified foot, subsequent encounter for fracture with malunion +S92909S Unspecified fracture of unspecified foot, sequela +S92911A Unspecified fracture of right toe(s), initial encounter for closed fracture +S92911B Unspecified fracture of right toe(s), initial encounter for open fracture +S92911D Unspecified fracture of right toe(s), subsequent encounter for fracture with routine healing +S92911G Unspecified fracture of right toe(s), subsequent encounter for fracture with delayed healing +S92911K Unspecified fracture of right toe(s), subsequent encounter for fracture with nonunion +S92911P Unspecified fracture of right toe(s), subsequent encounter for fracture with malunion +S92911S Unspecified fracture of right toe(s), sequela +S92912A Unspecified fracture of left toe(s), initial encounter for closed fracture +S92912B Unspecified fracture of left toe(s), initial encounter for open fracture +S92912D Unspecified fracture of left toe(s), subsequent encounter for fracture with routine healing +S92912G Unspecified fracture of left toe(s), subsequent encounter for fracture with delayed healing +S92912K Unspecified fracture of left toe(s), subsequent encounter for fracture with nonunion +S92912P Unspecified fracture of left toe(s), subsequent encounter for fracture with malunion +S92912S Unspecified fracture of left toe(s), sequela +S92919A Unspecified fracture of unspecified toe(s), initial encounter for closed fracture +S92919B Unspecified fracture of unspecified toe(s), initial encounter for open fracture +S92919D Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with routine healing +S92919G Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with delayed healing +S92919K Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with nonunion +S92919P Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with malunion +S92919S Unspecified fracture of unspecified toe(s), sequela +S9301XA Subluxation of right ankle joint, initial encounter +S9301XD Subluxation of right ankle joint, subsequent encounter +S9301XS Subluxation of right ankle joint, sequela +S9302XA Subluxation of left ankle joint, initial encounter +S9302XD Subluxation of left ankle joint, subsequent encounter +S9302XS Subluxation of left ankle joint, sequela +S9303XA Subluxation of unspecified ankle joint, initial encounter +S9303XD Subluxation of unspecified ankle joint, subsequent encounter +S9303XS Subluxation of unspecified ankle joint, sequela +S9304XA Dislocation of right ankle joint, initial encounter +S9304XD Dislocation of right ankle joint, subsequent encounter +S9304XS Dislocation of right ankle joint, sequela +S9305XA Dislocation of left ankle joint, initial encounter +S9305XD Dislocation of left ankle joint, subsequent encounter +S9305XS Dislocation of left ankle joint, sequela +S9306XA Dislocation of unspecified ankle joint, initial encounter +S9306XD Dislocation of unspecified ankle joint, subsequent encounter +S9306XS Dislocation of unspecified ankle joint, sequela +S93101A Unspecified subluxation of right toe(s), initial encounter +S93101D Unspecified subluxation of right toe(s), subsequent encounter +S93101S Unspecified subluxation of right toe(s), sequela +S93102A Unspecified subluxation of left toe(s), initial encounter +S93102D Unspecified subluxation of left toe(s), subsequent encounter +S93102S Unspecified subluxation of left toe(s), sequela +S93103A Unspecified subluxation of unspecified toe(s), initial encounter +S93103D Unspecified subluxation of unspecified toe(s), subsequent encounter +S93103S Unspecified subluxation of unspecified toe(s), sequela +S93104A Unspecified dislocation of right toe(s), initial encounter +S93104D Unspecified dislocation of right toe(s), subsequent encounter +S93104S Unspecified dislocation of right toe(s), sequela +S93105A Unspecified dislocation of left toe(s), initial encounter +S93105D Unspecified dislocation of left toe(s), subsequent encounter +S93105S Unspecified dislocation of left toe(s), sequela +S93106A Unspecified dislocation of unspecified toe(s), initial encounter +S93106D Unspecified dislocation of unspecified toe(s), subsequent encounter +S93106S Unspecified dislocation of unspecified toe(s), sequela +S93111A Dislocation of interphalangeal joint of right great toe, initial encounter +S93111D Dislocation of interphalangeal joint of right great toe, subsequent encounter +S93111S Dislocation of interphalangeal joint of right great toe, sequela +S93112A Dislocation of interphalangeal joint of left great toe, initial encounter +S93112D Dislocation of interphalangeal joint of left great toe, subsequent encounter +S93112S Dislocation of interphalangeal joint of left great toe, sequela +S93113A Dislocation of interphalangeal joint of unspecified great toe, initial encounter +S93113D Dislocation of interphalangeal joint of unspecified great toe, subsequent encounter +S93113S Dislocation of interphalangeal joint of unspecified great toe, sequela +S93114A Dislocation of interphalangeal joint of right lesser toe(s), initial encounter +S93114D Dislocation of interphalangeal joint of right lesser toe(s), subsequent encounter +S93114S Dislocation of interphalangeal joint of right lesser toe(s), sequela +S93115A Dislocation of interphalangeal joint of left lesser toe(s), initial encounter +S93115D Dislocation of interphalangeal joint of left lesser toe(s), subsequent encounter +S93115S Dislocation of interphalangeal joint of left lesser toe(s), sequela +S93116A Dislocation of interphalangeal joint of unspecified lesser toe(s), initial encounter +S93116D Dislocation of interphalangeal joint of unspecified lesser toe(s), subsequent encounter +S93116S Dislocation of interphalangeal joint of unspecified lesser toe(s), sequela +S93119A Dislocation of interphalangeal joint of unspecified toe(s), initial encounter +S93119D Dislocation of interphalangeal joint of unspecified toe(s), subsequent encounter +S93119S Dislocation of interphalangeal joint of unspecified toe(s), sequela +S93121A Dislocation of metatarsophalangeal joint of right great toe, initial encounter +S93121D Dislocation of metatarsophalangeal joint of right great toe, subsequent encounter +S93121S Dislocation of metatarsophalangeal joint of right great toe, sequela +S93122A Dislocation of metatarsophalangeal joint of left great toe, initial encounter +S93122D Dislocation of metatarsophalangeal joint of left great toe, subsequent encounter +S93122S Dislocation of metatarsophalangeal joint of left great toe, sequela +S93123A Dislocation of metatarsophalangeal joint of unspecified great toe, initial encounter +S93123D Dislocation of metatarsophalangeal joint of unspecified great toe, subsequent encounter +S93123S Dislocation of metatarsophalangeal joint of unspecified great toe, sequela +S93124A Dislocation of metatarsophalangeal joint of right lesser toe(s), initial encounter +S93124D Dislocation of metatarsophalangeal joint of right lesser toe(s), subsequent encounter +S93124S Dislocation of metatarsophalangeal joint of right lesser toe(s), sequela +S93125A Dislocation of metatarsophalangeal joint of left lesser toe(s), initial encounter +S93125D Dislocation of metatarsophalangeal joint of left lesser toe(s), subsequent encounter +S93125S Dislocation of metatarsophalangeal joint of left lesser toe(s), sequela +S93126A Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter +S93126D Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter +S93126S Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), sequela +S93129A Dislocation of metatarsophalangeal joint of unspecified toe(s), initial encounter +S93129D Dislocation of metatarsophalangeal joint of unspecified toe(s), subsequent encounter +S93129S Dislocation of metatarsophalangeal joint of unspecified toe(s), sequela +S93131A Subluxation of interphalangeal joint of right great toe, initial encounter +S93131D Subluxation of interphalangeal joint of right great toe, subsequent encounter +S93131S Subluxation of interphalangeal joint of right great toe, sequela +S93132A Subluxation of interphalangeal joint of left great toe, initial encounter +S93132D Subluxation of interphalangeal joint of left great toe, subsequent encounter +S93132S Subluxation of interphalangeal joint of left great toe, sequela +S93133A Subluxation of interphalangeal joint of unspecified great toe, initial encounter +S93133D Subluxation of interphalangeal joint of unspecified great toe, subsequent encounter +S93133S Subluxation of interphalangeal joint of unspecified great toe, sequela +S93134A Subluxation of interphalangeal joint of right lesser toe(s), initial encounter +S93134D Subluxation of interphalangeal joint of right lesser toe(s), subsequent encounter +S93134S Subluxation of interphalangeal joint of right lesser toe(s), sequela +S93135A Subluxation of interphalangeal joint of left lesser toe(s), initial encounter +S93135D Subluxation of interphalangeal joint of left lesser toe(s), subsequent encounter +S93135S Subluxation of interphalangeal joint of left lesser toe(s), sequela +S93136A Subluxation of interphalangeal joint of unspecified lesser toe(s), initial encounter +S93136D Subluxation of interphalangeal joint of unspecified lesser toe(s), subsequent encounter +S93136S Subluxation of interphalangeal joint of unspecified lesser toe(s), sequela +S93139A Subluxation of interphalangeal joint of unspecified toe(s), initial encounter +S93139D Subluxation of interphalangeal joint of unspecified toe(s), subsequent encounter +S93139S Subluxation of interphalangeal joint of unspecified toe(s), sequela +S93141A Subluxation of metatarsophalangeal joint of right great toe, initial encounter +S93141D Subluxation of metatarsophalangeal joint of right great toe, subsequent encounter +S93141S Subluxation of metatarsophalangeal joint of right great toe, sequela +S93142A Subluxation of metatarsophalangeal joint of left great toe, initial encounter +S93142D Subluxation of metatarsophalangeal joint of left great toe, subsequent encounter +S93142S Subluxation of metatarsophalangeal joint of left great toe, sequela +S93143A Subluxation of metatarsophalangeal joint of unspecified great toe, initial encounter +S93143D Subluxation of metatarsophalangeal joint of unspecified great toe, subsequent encounter +S93143S Subluxation of metatarsophalangeal joint of unspecified great toe, sequela +S93144A Subluxation of metatarsophalangeal joint of right lesser toe(s), initial encounter +S93144D Subluxation of metatarsophalangeal joint of right lesser toe(s), subsequent encounter +S93144S Subluxation of metatarsophalangeal joint of right lesser toe(s), sequela +S93145A Subluxation of metatarsophalangeal joint of left lesser toe(s), initial encounter +S93145D Subluxation of metatarsophalangeal joint of left lesser toe(s), subsequent encounter +S93145S Subluxation of metatarsophalangeal joint of left lesser toe(s), sequela +S93146A Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter +S93146D Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter +S93146S Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), sequela +S93149A Subluxation of metatarsophalangeal joint of unspecified toe(s), initial encounter +S93149D Subluxation of metatarsophalangeal joint of unspecified toe(s), subsequent encounter +S93149S Subluxation of metatarsophalangeal joint of unspecified toe(s), sequela +S93301A Unspecified subluxation of right foot, initial encounter +S93301D Unspecified subluxation of right foot, subsequent encounter +S93301S Unspecified subluxation of right foot, sequela +S93302A Unspecified subluxation of left foot, initial encounter +S93302D Unspecified subluxation of left foot, subsequent encounter +S93302S Unspecified subluxation of left foot, sequela +S93303A Unspecified subluxation of unspecified foot, initial encounter +S93303D Unspecified subluxation of unspecified foot, subsequent encounter +S93303S Unspecified subluxation of unspecified foot, sequela +S93304A Unspecified dislocation of right foot, initial encounter +S93304D Unspecified dislocation of right foot, subsequent encounter +S93304S Unspecified dislocation of right foot, sequela +S93305A Unspecified dislocation of left foot, initial encounter +S93305D Unspecified dislocation of left foot, subsequent encounter +S93305S Unspecified dislocation of left foot, sequela +S93306A Unspecified dislocation of unspecified foot, initial encounter +S93306D Unspecified dislocation of unspecified foot, subsequent encounter +S93306S Unspecified dislocation of unspecified foot, sequela +S93311A Subluxation of tarsal joint of right foot, initial encounter +S93311D Subluxation of tarsal joint of right foot, subsequent encounter +S93311S Subluxation of tarsal joint of right foot, sequela +S93312A Subluxation of tarsal joint of left foot, initial encounter +S93312D Subluxation of tarsal joint of left foot, subsequent encounter +S93312S Subluxation of tarsal joint of left foot, sequela +S93313A Subluxation of tarsal joint of unspecified foot, initial encounter +S93313D Subluxation of tarsal joint of unspecified foot, subsequent encounter +S93313S Subluxation of tarsal joint of unspecified foot, sequela +S93314A Dislocation of tarsal joint of right foot, initial encounter +S93314D Dislocation of tarsal joint of right foot, subsequent encounter +S93314S Dislocation of tarsal joint of right foot, sequela +S93315A Dislocation of tarsal joint of left foot, initial encounter +S93315D Dislocation of tarsal joint of left foot, subsequent encounter +S93315S Dislocation of tarsal joint of left foot, sequela +S93316A Dislocation of tarsal joint of unspecified foot, initial encounter +S93316D Dislocation of tarsal joint of unspecified foot, subsequent encounter +S93316S Dislocation of tarsal joint of unspecified foot, sequela +S93321A Subluxation of tarsometatarsal joint of right foot, initial encounter +S93321D Subluxation of tarsometatarsal joint of right foot, subsequent encounter +S93321S Subluxation of tarsometatarsal joint of right foot, sequela +S93322A Subluxation of tarsometatarsal joint of left foot, initial encounter +S93322D Subluxation of tarsometatarsal joint of left foot, subsequent encounter +S93322S Subluxation of tarsometatarsal joint of left foot, sequela +S93323A Subluxation of tarsometatarsal joint of unspecified foot, initial encounter +S93323D Subluxation of tarsometatarsal joint of unspecified foot, subsequent encounter +S93323S Subluxation of tarsometatarsal joint of unspecified foot, sequela +S93324A Dislocation of tarsometatarsal joint of right foot, initial encounter +S93324D Dislocation of tarsometatarsal joint of right foot, subsequent encounter +S93324S Dislocation of tarsometatarsal joint of right foot, sequela +S93325A Dislocation of tarsometatarsal joint of left foot, initial encounter +S93325D Dislocation of tarsometatarsal joint of left foot, subsequent encounter +S93325S Dislocation of tarsometatarsal joint of left foot, sequela +S93326A Dislocation of tarsometatarsal joint of unspecified foot, initial encounter +S93326D Dislocation of tarsometatarsal joint of unspecified foot, subsequent encounter +S93326S Dislocation of tarsometatarsal joint of unspecified foot, sequela +S93331A Other subluxation of right foot, initial encounter +S93331D Other subluxation of right foot, subsequent encounter +S93331S Other subluxation of right foot, sequela +S93332A Other subluxation of left foot, initial encounter +S93332D Other subluxation of left foot, subsequent encounter +S93332S Other subluxation of left foot, sequela +S93333A Other subluxation of unspecified foot, initial encounter +S93333D Other subluxation of unspecified foot, subsequent encounter +S93333S Other subluxation of unspecified foot, sequela +S93334A Other dislocation of right foot, initial encounter +S93334D Other dislocation of right foot, subsequent encounter +S93334S Other dislocation of right foot, sequela +S93335A Other dislocation of left foot, initial encounter +S93335D Other dislocation of left foot, subsequent encounter +S93335S Other dislocation of left foot, sequela +S93336A Other dislocation of unspecified foot, initial encounter +S93336D Other dislocation of unspecified foot, subsequent encounter +S93336S Other dislocation of unspecified foot, sequela +S93401A Sprain of unspecified ligament of right ankle, initial encounter +S93401D Sprain of unspecified ligament of right ankle, subsequent encounter +S93401S Sprain of unspecified ligament of right ankle, sequela +S93402A Sprain of unspecified ligament of left ankle, initial encounter +S93402D Sprain of unspecified ligament of left ankle, subsequent encounter +S93402S Sprain of unspecified ligament of left ankle, sequela +S93409A Sprain of unspecified ligament of unspecified ankle, initial encounter +S93409D Sprain of unspecified ligament of unspecified ankle, subsequent encounter +S93409S Sprain of unspecified ligament of unspecified ankle, sequela +S93411A Sprain of calcaneofibular ligament of right ankle, initial encounter +S93411D Sprain of calcaneofibular ligament of right ankle, subsequent encounter +S93411S Sprain of calcaneofibular ligament of right ankle, sequela +S93412A Sprain of calcaneofibular ligament of left ankle, initial encounter +S93412D Sprain of calcaneofibular ligament of left ankle, subsequent encounter +S93412S Sprain of calcaneofibular ligament of left ankle, sequela +S93419A Sprain of calcaneofibular ligament of unspecified ankle, initial encounter +S93419D Sprain of calcaneofibular ligament of unspecified ankle, subsequent encounter +S93419S Sprain of calcaneofibular ligament of unspecified ankle, sequela +S93421A Sprain of deltoid ligament of right ankle, initial encounter +S93421D Sprain of deltoid ligament of right ankle, subsequent encounter +S93421S Sprain of deltoid ligament of right ankle, sequela +S93422A Sprain of deltoid ligament of left ankle, initial encounter +S93422D Sprain of deltoid ligament of left ankle, subsequent encounter +S93422S Sprain of deltoid ligament of left ankle, sequela +S93429A Sprain of deltoid ligament of unspecified ankle, initial encounter +S93429D Sprain of deltoid ligament of unspecified ankle, subsequent encounter +S93429S Sprain of deltoid ligament of unspecified ankle, sequela +S93431A Sprain of tibiofibular ligament of right ankle, initial encounter +S93431D Sprain of tibiofibular ligament of right ankle, subsequent encounter +S93431S Sprain of tibiofibular ligament of right ankle, sequela +S93432A Sprain of tibiofibular ligament of left ankle, initial encounter +S93432D Sprain of tibiofibular ligament of left ankle, subsequent encounter +S93432S Sprain of tibiofibular ligament of left ankle, sequela +S93439A Sprain of tibiofibular ligament of unspecified ankle, initial encounter +S93439D Sprain of tibiofibular ligament of unspecified ankle, subsequent encounter +S93439S Sprain of tibiofibular ligament of unspecified ankle, sequela +S93491A Sprain of other ligament of right ankle, initial encounter +S93491D Sprain of other ligament of right ankle, subsequent encounter +S93491S Sprain of other ligament of right ankle, sequela +S93492A Sprain of other ligament of left ankle, initial encounter +S93492D Sprain of other ligament of left ankle, subsequent encounter +S93492S Sprain of other ligament of left ankle, sequela +S93499A Sprain of other ligament of unspecified ankle, initial encounter +S93499D Sprain of other ligament of unspecified ankle, subsequent encounter +S93499S Sprain of other ligament of unspecified ankle, sequela +S93501A Unspecified sprain of right great toe, initial encounter +S93501D Unspecified sprain of right great toe, subsequent encounter +S93501S Unspecified sprain of right great toe, sequela +S93502A Unspecified sprain of left great toe, initial encounter +S93502D Unspecified sprain of left great toe, subsequent encounter +S93502S Unspecified sprain of left great toe, sequela +S93503A Unspecified sprain of unspecified great toe, initial encounter +S93503D Unspecified sprain of unspecified great toe, subsequent encounter +S93503S Unspecified sprain of unspecified great toe, sequela +S93504A Unspecified sprain of right lesser toe(s), initial encounter +S93504D Unspecified sprain of right lesser toe(s), subsequent encounter +S93504S Unspecified sprain of right lesser toe(s), sequela +S93505A Unspecified sprain of left lesser toe(s), initial encounter +S93505D Unspecified sprain of left lesser toe(s), subsequent encounter +S93505S Unspecified sprain of left lesser toe(s), sequela +S93506A Unspecified sprain of unspecified lesser toe(s), initial encounter +S93506D Unspecified sprain of unspecified lesser toe(s), subsequent encounter +S93506S Unspecified sprain of unspecified lesser toe(s), sequela +S93509A Unspecified sprain of unspecified toe(s), initial encounter +S93509D Unspecified sprain of unspecified toe(s), subsequent encounter +S93509S Unspecified sprain of unspecified toe(s), sequela +S93511A Sprain of interphalangeal joint of right great toe, initial encounter +S93511D Sprain of interphalangeal joint of right great toe, subsequent encounter +S93511S Sprain of interphalangeal joint of right great toe, sequela +S93512A Sprain of interphalangeal joint of left great toe, initial encounter +S93512D Sprain of interphalangeal joint of left great toe, subsequent encounter +S93512S Sprain of interphalangeal joint of left great toe, sequela +S93513A Sprain of interphalangeal joint of unspecified great toe, initial encounter +S93513D Sprain of interphalangeal joint of unspecified great toe, subsequent encounter +S93513S Sprain of interphalangeal joint of unspecified great toe, sequela +S93514A Sprain of interphalangeal joint of right lesser toe(s), initial encounter +S93514D Sprain of interphalangeal joint of right lesser toe(s), subsequent encounter +S93514S Sprain of interphalangeal joint of right lesser toe(s), sequela +S93515A Sprain of interphalangeal joint of left lesser toe(s), initial encounter +S93515D Sprain of interphalangeal joint of left lesser toe(s), subsequent encounter +S93515S Sprain of interphalangeal joint of left lesser toe(s), sequela +S93516A Sprain of interphalangeal joint of unspecified lesser toe(s), initial encounter +S93516D Sprain of interphalangeal joint of unspecified lesser toe(s), subsequent encounter +S93516S Sprain of interphalangeal joint of unspecified lesser toe(s), sequela +S93519A Sprain of interphalangeal joint of unspecified toe(s), initial encounter +S93519D Sprain of interphalangeal joint of unspecified toe(s), subsequent encounter +S93519S Sprain of interphalangeal joint of unspecified toe(s), sequela +S93521A Sprain of metatarsophalangeal joint of right great toe, initial encounter +S93521D Sprain of metatarsophalangeal joint of right great toe, subsequent encounter +S93521S Sprain of metatarsophalangeal joint of right great toe, sequela +S93522A Sprain of metatarsophalangeal joint of left great toe, initial encounter +S93522D Sprain of metatarsophalangeal joint of left great toe, subsequent encounter +S93522S Sprain of metatarsophalangeal joint of left great toe, sequela +S93523A Sprain of metatarsophalangeal joint of unspecified great toe, initial encounter +S93523D Sprain of metatarsophalangeal joint of unspecified great toe, subsequent encounter +S93523S Sprain of metatarsophalangeal joint of unspecified great toe, sequela +S93524A Sprain of metatarsophalangeal joint of right lesser toe(s), initial encounter +S93524D Sprain of metatarsophalangeal joint of right lesser toe(s), subsequent encounter +S93524S Sprain of metatarsophalangeal joint of right lesser toe(s), sequela +S93525A Sprain of metatarsophalangeal joint of left lesser toe(s), initial encounter +S93525D Sprain of metatarsophalangeal joint of left lesser toe(s), subsequent encounter +S93525S Sprain of metatarsophalangeal joint of left lesser toe(s), sequela +S93526A Sprain of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter +S93526D Sprain of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter +S93526S Sprain of metatarsophalangeal joint of unspecified lesser toe(s), sequela +S93529A Sprain of metatarsophalangeal joint of unspecified toe(s), initial encounter +S93529D Sprain of metatarsophalangeal joint of unspecified toe(s), subsequent encounter +S93529S Sprain of metatarsophalangeal joint of unspecified toe(s), sequela +S93601A Unspecified sprain of right foot, initial encounter +S93601D Unspecified sprain of right foot, subsequent encounter +S93601S Unspecified sprain of right foot, sequela +S93602A Unspecified sprain of left foot, initial encounter +S93602D Unspecified sprain of left foot, subsequent encounter +S93602S Unspecified sprain of left foot, sequela +S93609A Unspecified sprain of unspecified foot, initial encounter +S93609D Unspecified sprain of unspecified foot, subsequent encounter +S93609S Unspecified sprain of unspecified foot, sequela +S93611A Sprain of tarsal ligament of right foot, initial encounter +S93611D Sprain of tarsal ligament of right foot, subsequent encounter +S93611S Sprain of tarsal ligament of right foot, sequela +S93612A Sprain of tarsal ligament of left foot, initial encounter +S93612D Sprain of tarsal ligament of left foot, subsequent encounter +S93612S Sprain of tarsal ligament of left foot, sequela +S93619A Sprain of tarsal ligament of unspecified foot, initial encounter +S93619D Sprain of tarsal ligament of unspecified foot, subsequent encounter +S93619S Sprain of tarsal ligament of unspecified foot, sequela +S93621A Sprain of tarsometatarsal ligament of right foot, initial encounter +S93621D Sprain of tarsometatarsal ligament of right foot, subsequent encounter +S93621S Sprain of tarsometatarsal ligament of right foot, sequela +S93622A Sprain of tarsometatarsal ligament of left foot, initial encounter +S93622D Sprain of tarsometatarsal ligament of left foot, subsequent encounter +S93622S Sprain of tarsometatarsal ligament of left foot, sequela +S93629A Sprain of tarsometatarsal ligament of unspecified foot, initial encounter +S93629D Sprain of tarsometatarsal ligament of unspecified foot, subsequent encounter +S93629S Sprain of tarsometatarsal ligament of unspecified foot, sequela +S93691A Other sprain of right foot, initial encounter +S93691D Other sprain of right foot, subsequent encounter +S93691S Other sprain of right foot, sequela +S93692A Other sprain of left foot, initial encounter +S93692D Other sprain of left foot, subsequent encounter +S93692S Other sprain of left foot, sequela +S93699A Other sprain of unspecified foot, initial encounter +S93699D Other sprain of unspecified foot, subsequent encounter +S93699S Other sprain of unspecified foot, sequela +S9400XA Injury of lateral plantar nerve, unspecified leg, initial encounter +S9400XD Injury of lateral plantar nerve, unspecified leg, subsequent encounter +S9400XS Injury of lateral plantar nerve, unspecified leg, sequela +S9401XA Injury of lateral plantar nerve, right leg, initial encounter +S9401XD Injury of lateral plantar nerve, right leg, subsequent encounter +S9401XS Injury of lateral plantar nerve, right leg, sequela +S9402XA Injury of lateral plantar nerve, left leg, initial encounter +S9402XD Injury of lateral plantar nerve, left leg, subsequent encounter +S9402XS Injury of lateral plantar nerve, left leg, sequela +S9410XA Injury of medial plantar nerve, unspecified leg, initial encounter +S9410XD Injury of medial plantar nerve, unspecified leg, subsequent encounter +S9410XS Injury of medial plantar nerve, unspecified leg, sequela +S9411XA Injury of medial plantar nerve, right leg, initial encounter +S9411XD Injury of medial plantar nerve, right leg, subsequent encounter +S9411XS Injury of medial plantar nerve, right leg, sequela +S9412XA Injury of medial plantar nerve, left leg, initial encounter +S9412XD Injury of medial plantar nerve, left leg, subsequent encounter +S9412XS Injury of medial plantar nerve, left leg, sequela +S9420XA Injury of deep peroneal nerve at ankle and foot level, unspecified leg, initial encounter +S9420XD Injury of deep peroneal nerve at ankle and foot level, unspecified leg, subsequent encounter +S9420XS Injury of deep peroneal nerve at ankle and foot level, unspecified leg, sequela +S9421XA Injury of deep peroneal nerve at ankle and foot level, right leg, initial encounter +S9421XD Injury of deep peroneal nerve at ankle and foot level, right leg, subsequent encounter +S9421XS Injury of deep peroneal nerve at ankle and foot level, right leg, sequela +S9422XA Injury of deep peroneal nerve at ankle and foot level, left leg, initial encounter +S9422XD Injury of deep peroneal nerve at ankle and foot level, left leg, subsequent encounter +S9422XS Injury of deep peroneal nerve at ankle and foot level, left leg, sequela +S9430XA Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, initial encounter +S9430XD Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, subsequent encounter +S9430XS Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, sequela +S9431XA Injury of cutaneous sensory nerve at ankle and foot level, right leg, initial encounter +S9431XD Injury of cutaneous sensory nerve at ankle and foot level, right leg, subsequent encounter +S9431XS Injury of cutaneous sensory nerve at ankle and foot level, right leg, sequela +S9432XA Injury of cutaneous sensory nerve at ankle and foot level, left leg, initial encounter +S9432XD Injury of cutaneous sensory nerve at ankle and foot level, left leg, subsequent encounter +S9432XS Injury of cutaneous sensory nerve at ankle and foot level, left leg, sequela +S948X1A Injury of other nerves at ankle and foot level, right leg, initial encounter +S948X1D Injury of other nerves at ankle and foot level, right leg, subsequent encounter +S948X1S Injury of other nerves at ankle and foot level, right leg, sequela +S948X2A Injury of other nerves at ankle and foot level, left leg, initial encounter +S948X2D Injury of other nerves at ankle and foot level, left leg, subsequent encounter +S948X2S Injury of other nerves at ankle and foot level, left leg, sequela +S948X9A Injury of other nerves at ankle and foot level, unspecified leg, initial encounter +S948X9D Injury of other nerves at ankle and foot level, unspecified leg, subsequent encounter +S948X9S Injury of other nerves at ankle and foot level, unspecified leg, sequela +S9490XA Injury of unspecified nerve at ankle and foot level, unspecified leg, initial encounter +S9490XD Injury of unspecified nerve at ankle and foot level, unspecified leg, subsequent encounter +S9490XS Injury of unspecified nerve at ankle and foot level, unspecified leg, sequela +S9491XA Injury of unspecified nerve at ankle and foot level, right leg, initial encounter +S9491XD Injury of unspecified nerve at ankle and foot level, right leg, subsequent encounter +S9491XS Injury of unspecified nerve at ankle and foot level, right leg, sequela +S9492XA Injury of unspecified nerve at ankle and foot level, left leg, initial encounter +S9492XD Injury of unspecified nerve at ankle and foot level, left leg, subsequent encounter +S9492XS Injury of unspecified nerve at ankle and foot level, left leg, sequela +S95001A Unspecified injury of dorsal artery of right foot, initial encounter +S95001D Unspecified injury of dorsal artery of right foot, subsequent encounter +S95001S Unspecified injury of dorsal artery of right foot, sequela +S95002A Unspecified injury of dorsal artery of left foot, initial encounter +S95002D Unspecified injury of dorsal artery of left foot, subsequent encounter +S95002S Unspecified injury of dorsal artery of left foot, sequela +S95009A Unspecified injury of dorsal artery of unspecified foot, initial encounter +S95009D Unspecified injury of dorsal artery of unspecified foot, subsequent encounter +S95009S Unspecified injury of dorsal artery of unspecified foot, sequela +S95011A Laceration of dorsal artery of right foot, initial encounter +S95011D Laceration of dorsal artery of right foot, subsequent encounter +S95011S Laceration of dorsal artery of right foot, sequela +S95012A Laceration of dorsal artery of left foot, initial encounter +S95012D Laceration of dorsal artery of left foot, subsequent encounter +S95012S Laceration of dorsal artery of left foot, sequela +S95019A Laceration of dorsal artery of unspecified foot, initial encounter +S95019D Laceration of dorsal artery of unspecified foot, subsequent encounter +S95019S Laceration of dorsal artery of unspecified foot, sequela +S95091A Other specified injury of dorsal artery of right foot, initial encounter +S95091D Other specified injury of dorsal artery of right foot, subsequent encounter +S95091S Other specified injury of dorsal artery of right foot, sequela +S95092A Other specified injury of dorsal artery of left foot, initial encounter +S95092D Other specified injury of dorsal artery of left foot, subsequent encounter +S95092S Other specified injury of dorsal artery of left foot, sequela +S95099A Other specified injury of dorsal artery of unspecified foot, initial encounter +S95099D Other specified injury of dorsal artery of unspecified foot, subsequent encounter +S95099S Other specified injury of dorsal artery of unspecified foot, sequela +S95101A Unspecified injury of plantar artery of right foot, initial encounter +S95101D Unspecified injury of plantar artery of right foot, subsequent encounter +S95101S Unspecified injury of plantar artery of right foot, sequela +S95102A Unspecified injury of plantar artery of left foot, initial encounter +S95102D Unspecified injury of plantar artery of left foot, subsequent encounter +S95102S Unspecified injury of plantar artery of left foot, sequela +S95109A Unspecified injury of plantar artery of unspecified foot, initial encounter +S95109D Unspecified injury of plantar artery of unspecified foot, subsequent encounter +S95109S Unspecified injury of plantar artery of unspecified foot, sequela +S95111A Laceration of plantar artery of right foot, initial encounter +S95111D Laceration of plantar artery of right foot, subsequent encounter +S95111S Laceration of plantar artery of right foot, sequela +S95112A Laceration of plantar artery of left foot, initial encounter +S95112D Laceration of plantar artery of left foot, subsequent encounter +S95112S Laceration of plantar artery of left foot, sequela +S95119A Laceration of plantar artery of unspecified foot, initial encounter +S95119D Laceration of plantar artery of unspecified foot, subsequent encounter +S95119S Laceration of plantar artery of unspecified foot, sequela +S95191A Other specified injury of plantar artery of right foot, initial encounter +S95191D Other specified injury of plantar artery of right foot, subsequent encounter +S95191S Other specified injury of plantar artery of right foot, sequela +S95192A Other specified injury of plantar artery of left foot, initial encounter +S95192D Other specified injury of plantar artery of left foot, subsequent encounter +S95192S Other specified injury of plantar artery of left foot, sequela +S95199A Other specified injury of plantar artery of unspecified foot, initial encounter +S95199D Other specified injury of plantar artery of unspecified foot, subsequent encounter +S95199S Other specified injury of plantar artery of unspecified foot, sequela +S95201A Unspecified injury of dorsal vein of right foot, initial encounter +S95201D Unspecified injury of dorsal vein of right foot, subsequent encounter +S95201S Unspecified injury of dorsal vein of right foot, sequela +S95202A Unspecified injury of dorsal vein of left foot, initial encounter +S95202D Unspecified injury of dorsal vein of left foot, subsequent encounter +S95202S Unspecified injury of dorsal vein of left foot, sequela +S95209A Unspecified injury of dorsal vein of unspecified foot, initial encounter +S95209D Unspecified injury of dorsal vein of unspecified foot, subsequent encounter +S95209S Unspecified injury of dorsal vein of unspecified foot, sequela +S95211A Laceration of dorsal vein of right foot, initial encounter +S95211D Laceration of dorsal vein of right foot, subsequent encounter +S95211S Laceration of dorsal vein of right foot, sequela +S95212A Laceration of dorsal vein of left foot, initial encounter +S95212D Laceration of dorsal vein of left foot, subsequent encounter +S95212S Laceration of dorsal vein of left foot, sequela +S95219A Laceration of dorsal vein of unspecified foot, initial encounter +S95219D Laceration of dorsal vein of unspecified foot, subsequent encounter +S95219S Laceration of dorsal vein of unspecified foot, sequela +S95291A Other specified injury of dorsal vein of right foot, initial encounter +S95291D Other specified injury of dorsal vein of right foot, subsequent encounter +S95291S Other specified injury of dorsal vein of right foot, sequela +S95292A Other specified injury of dorsal vein of left foot, initial encounter +S95292D Other specified injury of dorsal vein of left foot, subsequent encounter +S95292S Other specified injury of dorsal vein of left foot, sequela +S95299A Other specified injury of dorsal vein of unspecified foot, initial encounter +S95299D Other specified injury of dorsal vein of unspecified foot, subsequent encounter +S95299S Other specified injury of dorsal vein of unspecified foot, sequela +S95801A Unspecified injury of other blood vessels at ankle and foot level, right leg, initial encounter +S95801D Unspecified injury of other blood vessels at ankle and foot level, right leg, subsequent encounter +S95801S Unspecified injury of other blood vessels at ankle and foot level, right leg, sequela +S95802A Unspecified injury of other blood vessels at ankle and foot level, left leg, initial encounter +S95802D Unspecified injury of other blood vessels at ankle and foot level, left leg, subsequent encounter +S95802S Unspecified injury of other blood vessels at ankle and foot level, left leg, sequela +S95809A Unspecified injury of other blood vessels at ankle and foot level, unspecified leg, initial encounter +S95809D Unspecified injury of other blood vessels at ankle and foot level, unspecified leg, subsequent encounter +S95809S Unspecified injury of other blood vessels at ankle and foot level, unspecified leg, sequela +S95811A Laceration of other blood vessels at ankle and foot level, right leg, initial encounter +S95811D Laceration of other blood vessels at ankle and foot level, right leg, subsequent encounter +S95811S Laceration of other blood vessels at ankle and foot level, right leg, sequela +S95812A Laceration of other blood vessels at ankle and foot level, left leg, initial encounter +S95812D Laceration of other blood vessels at ankle and foot level, left leg, subsequent encounter +S95812S Laceration of other blood vessels at ankle and foot level, left leg, sequela +S95819A Laceration of other blood vessels at ankle and foot level, unspecified leg, initial encounter +S95819D Laceration of other blood vessels at ankle and foot level, unspecified leg, subsequent encounter +S95819S Laceration of other blood vessels at ankle and foot level, unspecified leg, sequela +S95891A Other specified injury of other blood vessels at ankle and foot level, right leg, initial encounter +S95891D Other specified injury of other blood vessels at ankle and foot level, right leg, subsequent encounter +S95891S Other specified injury of other blood vessels at ankle and foot level, right leg, sequela +S95892A Other specified injury of other blood vessels at ankle and foot level, left leg, initial encounter +S95892D Other specified injury of other blood vessels at ankle and foot level, left leg, subsequent encounter +S95892S Other specified injury of other blood vessels at ankle and foot level, left leg, sequela +S95899A Other specified injury of other blood vessels at ankle and foot level, unspecified leg, initial encounter +S95899D Other specified injury of other blood vessels at ankle and foot level, unspecified leg, subsequent encounter +S95899S Other specified injury of other blood vessels at ankle and foot level, unspecified leg, sequela +S95901A Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, initial encounter +S95901D Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, subsequent encounter +S95901S Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, sequela +S95902A Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, initial encounter +S95902D Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, subsequent encounter +S95902S Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, sequela +S95909A Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg, initial encounter +S95909D Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg, subsequent encounter +S95909S Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg, sequela +S95911A Laceration of unspecified blood vessel at ankle and foot level, right leg, initial encounter +S95911D Laceration of unspecified blood vessel at ankle and foot level, right leg, subsequent encounter +S95911S Laceration of unspecified blood vessel at ankle and foot level, right leg, sequela +S95912A Laceration of unspecified blood vessel at ankle and foot level, left leg, initial encounter +S95912D Laceration of unspecified blood vessel at ankle and foot level, left leg, subsequent encounter +S95912S Laceration of unspecified blood vessel at ankle and foot level, left leg, sequela +S95919A Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, initial encounter +S95919D Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, subsequent encounter +S95919S Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, sequela +S95991A Other specified injury of unspecified blood vessel at ankle and foot level, right leg, initial encounter +S95991D Other specified injury of unspecified blood vessel at ankle and foot level, right leg, subsequent encounter +S95991S Other specified injury of unspecified blood vessel at ankle and foot level, right leg, sequela +S95992A Other specified injury of unspecified blood vessel at ankle and foot level, left leg, initial encounter +S95992D Other specified injury of unspecified blood vessel at ankle and foot level, left leg, subsequent encounter +S95992S Other specified injury of unspecified blood vessel at ankle and foot level, left leg, sequela +S95999A Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg, initial encounter +S95999D Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg, subsequent encounter +S95999S Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg, sequela +S96001A Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter +S96001D Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter +S96001S Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela +S96002A Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter +S96002D Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter +S96002S Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela +S96009A Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter +S96009D Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter +S96009S Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela +S96011A Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter +S96011D Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter +S96011S Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela +S96012A Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter +S96012D Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter +S96012S Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela +S96019A Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter +S96019D Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter +S96019S Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela +S96021A Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter +S96021D Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter +S96021S Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela +S96022A Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter +S96022D Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter +S96022S Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela +S96029A Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter +S96029D Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter +S96029S Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela +S96091A Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter +S96091D Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter +S96091S Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela +S96092A Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter +S96092D Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter +S96092S Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela +S96099A Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter +S96099D Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter +S96099S Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela +S96101A Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter +S96101D Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter +S96101S Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela +S96102A Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter +S96102D Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter +S96102S Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela +S96109A Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter +S96109D Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter +S96109S Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela +S96111A Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter +S96111D Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter +S96111S Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela +S96112A Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter +S96112D Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter +S96112S Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela +S96119A Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter +S96119D Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter +S96119S Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela +S96121A Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter +S96121D Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter +S96121S Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela +S96122A Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter +S96122D Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter +S96122S Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela +S96129A Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter +S96129D Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter +S96129S Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela +S96191A Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter +S96191D Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter +S96191S Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela +S96192A Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter +S96192D Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter +S96192S Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela +S96199A Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter +S96199D Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter +S96199S Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela +S96201A Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter +S96201D Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter +S96201S Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot, sequela +S96202A Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter +S96202D Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter +S96202S Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot, sequela +S96209A Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter +S96209D Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter +S96209S Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela +S96211A Strain of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter +S96211D Strain of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter +S96211S Strain of intrinsic muscle and tendon at ankle and foot level, right foot, sequela +S96212A Strain of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter +S96212D Strain of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter +S96212S Strain of intrinsic muscle and tendon at ankle and foot level, left foot, sequela +S96219A Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter +S96219D Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter +S96219S Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela +S96221A Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter +S96221D Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter +S96221S Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, sequela +S96222A Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter +S96222D Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter +S96222S Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, sequela +S96229A Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter +S96229D Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter +S96229S Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela +S96291A Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter +S96291D Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter +S96291S Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot, sequela +S96292A Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter +S96292D Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter +S96292S Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot, sequela +S96299A Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter +S96299D Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter +S96299S Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela +S96801A Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot, initial encounter +S96801D Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter +S96801S Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot, sequela +S96802A Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot, initial encounter +S96802D Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter +S96802S Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot, sequela +S96809A Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter +S96809D Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter +S96809S Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela +S96811A Strain of other specified muscles and tendons at ankle and foot level, right foot, initial encounter +S96811D Strain of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter +S96811S Strain of other specified muscles and tendons at ankle and foot level, right foot, sequela +S96812A Strain of other specified muscles and tendons at ankle and foot level, left foot, initial encounter +S96812D Strain of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter +S96812S Strain of other specified muscles and tendons at ankle and foot level, left foot, sequela +S96819A Strain of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter +S96819D Strain of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter +S96819S Strain of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela +S96821A Laceration of other specified muscles and tendons at ankle and foot level, right foot, initial encounter +S96821D Laceration of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter +S96821S Laceration of other specified muscles and tendons at ankle and foot level, right foot, sequela +S96822A Laceration of other specified muscles and tendons at ankle and foot level, left foot, initial encounter +S96822D Laceration of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter +S96822S Laceration of other specified muscles and tendons at ankle and foot level, left foot, sequela +S96829A Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter +S96829D Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter +S96829S Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela +S96891A Other specified injury of other specified muscles and tendons at ankle and foot level, right foot, initial encounter +S96891D Other specified injury of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter +S96891S Other specified injury of other specified muscles and tendons at ankle and foot level, right foot, sequela +S96892A Other specified injury of other specified muscles and tendons at ankle and foot level, left foot, initial encounter +S96892D Other specified injury of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter +S96892S Other specified injury of other specified muscles and tendons at ankle and foot level, left foot, sequela +S96899A Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter +S96899D Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter +S96899S Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela +S96901A Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter +S96901D Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter +S96901S Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot, sequela +S96902A Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter +S96902D Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter +S96902S Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot, sequela +S96909A Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter +S96909D Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter +S96909S Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela +S96911A Strain of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter +S96911D Strain of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter +S96911S Strain of unspecified muscle and tendon at ankle and foot level, right foot, sequela +S96912A Strain of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter +S96912D Strain of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter +S96912S Strain of unspecified muscle and tendon at ankle and foot level, left foot, sequela +S96919A Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter +S96919D Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter +S96919S Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela +S96921A Laceration of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter +S96921D Laceration of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter +S96921S Laceration of unspecified muscle and tendon at ankle and foot level, right foot, sequela +S96922A Laceration of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter +S96922D Laceration of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter +S96922S Laceration of unspecified muscle and tendon at ankle and foot level, left foot, sequela +S96929A Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter +S96929D Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter +S96929S Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela +S96991A Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter +S96991D Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter +S96991S Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot, sequela +S96992A Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter +S96992D Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter +S96992S Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot, sequela +S96999A Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter +S96999D Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter +S96999S Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela +S9700XA Crushing injury of unspecified ankle, initial encounter +S9700XD Crushing injury of unspecified ankle, subsequent encounter +S9700XS Crushing injury of unspecified ankle, sequela +S9701XA Crushing injury of right ankle, initial encounter +S9701XD Crushing injury of right ankle, subsequent encounter +S9701XS Crushing injury of right ankle, sequela +S9702XA Crushing injury of left ankle, initial encounter +S9702XD Crushing injury of left ankle, subsequent encounter +S9702XS Crushing injury of left ankle, sequela +S97101A Crushing injury of unspecified right toe(s), initial encounter +S97101D Crushing injury of unspecified right toe(s), subsequent encounter +S97101S Crushing injury of unspecified right toe(s), sequela +S97102A Crushing injury of unspecified left toe(s), initial encounter +S97102D Crushing injury of unspecified left toe(s), subsequent encounter +S97102S Crushing injury of unspecified left toe(s), sequela +S97109A Crushing injury of unspecified toe(s), initial encounter +S97109D Crushing injury of unspecified toe(s), subsequent encounter +S97109S Crushing injury of unspecified toe(s), sequela +S97111A Crushing injury of right great toe, initial encounter +S97111D Crushing injury of right great toe, subsequent encounter +S97111S Crushing injury of right great toe, sequela +S97112A Crushing injury of left great toe, initial encounter +S97112D Crushing injury of left great toe, subsequent encounter +S97112S Crushing injury of left great toe, sequela +S97119A Crushing injury of unspecified great toe, initial encounter +S97119D Crushing injury of unspecified great toe, subsequent encounter +S97119S Crushing injury of unspecified great toe, sequela +S97121A Crushing injury of right lesser toe(s), initial encounter +S97121D Crushing injury of right lesser toe(s), subsequent encounter +S97121S Crushing injury of right lesser toe(s), sequela +S97122A Crushing injury of left lesser toe(s), initial encounter +S97122D Crushing injury of left lesser toe(s), subsequent encounter +S97122S Crushing injury of left lesser toe(s), sequela +S97129A Crushing injury of unspecified lesser toe(s), initial encounter +S97129D Crushing injury of unspecified lesser toe(s), subsequent encounter +S97129S Crushing injury of unspecified lesser toe(s), sequela +S9780XA Crushing injury of unspecified foot, initial encounter +S9780XD Crushing injury of unspecified foot, subsequent encounter +S9780XS Crushing injury of unspecified foot, sequela +S9781XA Crushing injury of right foot, initial encounter +S9781XD Crushing injury of right foot, subsequent encounter +S9781XS Crushing injury of right foot, sequela +S9782XA Crushing injury of left foot, initial encounter +S9782XD Crushing injury of left foot, subsequent encounter +S9782XS Crushing injury of left foot, sequela +S98011A Complete traumatic amputation of right foot at ankle level, initial encounter +S98011D Complete traumatic amputation of right foot at ankle level, subsequent encounter +S98011S Complete traumatic amputation of right foot at ankle level, sequela +S98012A Complete traumatic amputation of left foot at ankle level, initial encounter +S98012D Complete traumatic amputation of left foot at ankle level, subsequent encounter +S98012S Complete traumatic amputation of left foot at ankle level, sequela +S98019A Complete traumatic amputation of unspecified foot at ankle level, initial encounter +S98019D Complete traumatic amputation of unspecified foot at ankle level, subsequent encounter +S98019S Complete traumatic amputation of unspecified foot at ankle level, sequela +S98021A Partial traumatic amputation of right foot at ankle level, initial encounter +S98021D Partial traumatic amputation of right foot at ankle level, subsequent encounter +S98021S Partial traumatic amputation of right foot at ankle level, sequela +S98022A Partial traumatic amputation of left foot at ankle level, initial encounter +S98022D Partial traumatic amputation of left foot at ankle level, subsequent encounter +S98022S Partial traumatic amputation of left foot at ankle level, sequela +S98029A Partial traumatic amputation of unspecified foot at ankle level, initial encounter +S98029D Partial traumatic amputation of unspecified foot at ankle level, subsequent encounter +S98029S Partial traumatic amputation of unspecified foot at ankle level, sequela +S98111A Complete traumatic amputation of right great toe, initial encounter +S98111D Complete traumatic amputation of right great toe, subsequent encounter +S98111S Complete traumatic amputation of right great toe, sequela +S98112A Complete traumatic amputation of left great toe, initial encounter +S98112D Complete traumatic amputation of left great toe, subsequent encounter +S98112S Complete traumatic amputation of left great toe, sequela +S98119A Complete traumatic amputation of unspecified great toe, initial encounter +S98119D Complete traumatic amputation of unspecified great toe, subsequent encounter +S98119S Complete traumatic amputation of unspecified great toe, sequela +S98121A Partial traumatic amputation of right great toe, initial encounter +S98121D Partial traumatic amputation of right great toe, subsequent encounter +S98121S Partial traumatic amputation of right great toe, sequela +S98122A Partial traumatic amputation of left great toe, initial encounter +S98122D Partial traumatic amputation of left great toe, subsequent encounter +S98122S Partial traumatic amputation of left great toe, sequela +S98129A Partial traumatic amputation of unspecified great toe, initial encounter +S98129D Partial traumatic amputation of unspecified great toe, subsequent encounter +S98129S Partial traumatic amputation of unspecified great toe, sequela +S98131A Complete traumatic amputation of one right lesser toe, initial encounter +S98131D Complete traumatic amputation of one right lesser toe, subsequent encounter +S98131S Complete traumatic amputation of one right lesser toe, sequela +S98132A Complete traumatic amputation of one left lesser toe, initial encounter +S98132D Complete traumatic amputation of one left lesser toe, subsequent encounter +S98132S Complete traumatic amputation of one left lesser toe, sequela +S98139A Complete traumatic amputation of one unspecified lesser toe, initial encounter +S98139D Complete traumatic amputation of one unspecified lesser toe, subsequent encounter +S98139S Complete traumatic amputation of one unspecified lesser toe, sequela +S98141A Partial traumatic amputation of one right lesser toe, initial encounter +S98141D Partial traumatic amputation of one right lesser toe, subsequent encounter +S98141S Partial traumatic amputation of one right lesser toe, sequela +S98142A Partial traumatic amputation of one left lesser toe, initial encounter +S98142D Partial traumatic amputation of one left lesser toe, subsequent encounter +S98142S Partial traumatic amputation of one left lesser toe, sequela +S98149A Partial traumatic amputation of one unspecified lesser toe, initial encounter +S98149D Partial traumatic amputation of one unspecified lesser toe, subsequent encounter +S98149S Partial traumatic amputation of one unspecified lesser toe, sequela +S98211A Complete traumatic amputation of two or more right lesser toes, initial encounter +S98211D Complete traumatic amputation of two or more right lesser toes, subsequent encounter +S98211S Complete traumatic amputation of two or more right lesser toes, sequela +S98212A Complete traumatic amputation of two or more left lesser toes, initial encounter +S98212D Complete traumatic amputation of two or more left lesser toes, subsequent encounter +S98212S Complete traumatic amputation of two or more left lesser toes, sequela +S98219A Complete traumatic amputation of two or more unspecified lesser toes, initial encounter +S98219D Complete traumatic amputation of two or more unspecified lesser toes, subsequent encounter +S98219S Complete traumatic amputation of two or more unspecified lesser toes, sequela +S98221A Partial traumatic amputation of two or more right lesser toes, initial encounter +S98221D Partial traumatic amputation of two or more right lesser toes, subsequent encounter +S98221S Partial traumatic amputation of two or more right lesser toes, sequela +S98222A Partial traumatic amputation of two or more left lesser toes, initial encounter +S98222D Partial traumatic amputation of two or more left lesser toes, subsequent encounter +S98222S Partial traumatic amputation of two or more left lesser toes, sequela +S98229A Partial traumatic amputation of two or more unspecified lesser toes, initial encounter +S98229D Partial traumatic amputation of two or more unspecified lesser toes, subsequent encounter +S98229S Partial traumatic amputation of two or more unspecified lesser toes, sequela +S98311A Complete traumatic amputation of right midfoot, initial encounter +S98311D Complete traumatic amputation of right midfoot, subsequent encounter +S98311S Complete traumatic amputation of right midfoot, sequela +S98312A Complete traumatic amputation of left midfoot, initial encounter +S98312D Complete traumatic amputation of left midfoot, subsequent encounter +S98312S Complete traumatic amputation of left midfoot, sequela +S98319A Complete traumatic amputation of unspecified midfoot, initial encounter +S98319D Complete traumatic amputation of unspecified midfoot, subsequent encounter +S98319S Complete traumatic amputation of unspecified midfoot, sequela +S98321A Partial traumatic amputation of right midfoot, initial encounter +S98321D Partial traumatic amputation of right midfoot, subsequent encounter +S98321S Partial traumatic amputation of right midfoot, sequela +S98322A Partial traumatic amputation of left midfoot, initial encounter +S98322D Partial traumatic amputation of left midfoot, subsequent encounter +S98322S Partial traumatic amputation of left midfoot, sequela +S98329A Partial traumatic amputation of unspecified midfoot, initial encounter +S98329D Partial traumatic amputation of unspecified midfoot, subsequent encounter +S98329S Partial traumatic amputation of unspecified midfoot, sequela +S98911A Complete traumatic amputation of right foot, level unspecified, initial encounter +S98911D Complete traumatic amputation of right foot, level unspecified, subsequent encounter +S98911S Complete traumatic amputation of right foot, level unspecified, sequela +S98912A Complete traumatic amputation of left foot, level unspecified, initial encounter +S98912D Complete traumatic amputation of left foot, level unspecified, subsequent encounter +S98912S Complete traumatic amputation of left foot, level unspecified, sequela +S98919A Complete traumatic amputation of unspecified foot, level unspecified, initial encounter +S98919D Complete traumatic amputation of unspecified foot, level unspecified, subsequent encounter +S98919S Complete traumatic amputation of unspecified foot, level unspecified, sequela +S98921A Partial traumatic amputation of right foot, level unspecified, initial encounter +S98921D Partial traumatic amputation of right foot, level unspecified, subsequent encounter +S98921S Partial traumatic amputation of right foot, level unspecified, sequela +S98922A Partial traumatic amputation of left foot, level unspecified, initial encounter +S98922D Partial traumatic amputation of left foot, level unspecified, subsequent encounter +S98922S Partial traumatic amputation of left foot, level unspecified, sequela +S98929A Partial traumatic amputation of unspecified foot, level unspecified, initial encounter +S98929D Partial traumatic amputation of unspecified foot, level unspecified, subsequent encounter +S98929S Partial traumatic amputation of unspecified foot, level unspecified, sequela +S99001A Unspecified physeal fracture of right calcaneus, initial encounter for closed fracture +S99001B Unspecified physeal fracture of right calcaneus, initial encounter for open fracture +S99001D Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing +S99001G Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing +S99001K Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion +S99001P Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with malunion +S99001S Unspecified physeal fracture of right calcaneus, sequela +S99002A Unspecified physeal fracture of left calcaneus, initial encounter for closed fracture +S99002B Unspecified physeal fracture of left calcaneus, initial encounter for open fracture +S99002D Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing +S99002G Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing +S99002K Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion +S99002P Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with malunion +S99002S Unspecified physeal fracture of left calcaneus, sequela +S99009A Unspecified physeal fracture of unspecified calcaneus, initial encounter for closed fracture +S99009B Unspecified physeal fracture of unspecified calcaneus, initial encounter for open fracture +S99009D Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing +S99009G Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S99009K Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +S99009P Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +S99009S Unspecified physeal fracture of unspecified calcaneus, sequela +S99011A Salter-Harris Type I physeal fracture of right calcaneus, initial encounter for closed fracture +S99011B Salter-Harris Type I physeal fracture of right calcaneus, initial encounter for open fracture +S99011D Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing +S99011G Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing +S99011K Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion +S99011P Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with malunion +S99011S Salter-Harris Type I physeal fracture of right calcaneus, sequela +S99012A Salter-Harris Type I physeal fracture of left calcaneus, initial encounter for closed fracture +S99012B Salter-Harris Type I physeal fracture of left calcaneus, initial encounter for open fracture +S99012D Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing +S99012G Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing +S99012K Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion +S99012P Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with malunion +S99012S Salter-Harris Type I physeal fracture of left calcaneus, sequela +S99019A Salter-Harris Type I physeal fracture of unspecified calcaneus, initial encounter for closed fracture +S99019B Salter-Harris Type I physeal fracture of unspecified calcaneus, initial encounter for open fracture +S99019D Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing +S99019G Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S99019K Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +S99019P Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +S99019S Salter-Harris Type I physeal fracture of unspecified calcaneus, sequela +S99021A Salter-Harris Type II physeal fracture of right calcaneus, initial encounter for closed fracture +S99021B Salter-Harris Type II physeal fracture of right calcaneus, initial encounter for open fracture +S99021D Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing +S99021G Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing +S99021K Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion +S99021P Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with malunion +S99021S Salter-Harris Type II physeal fracture of right calcaneus, sequela +S99022A Salter-Harris Type II physeal fracture of left calcaneus, initial encounter for closed fracture +S99022B Salter-Harris Type II physeal fracture of left calcaneus, initial encounter for open fracture +S99022D Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing +S99022G Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing +S99022K Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion +S99022P Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with malunion +S99022S Salter-Harris Type II physeal fracture of left calcaneus, sequela +S99029A Salter-Harris Type II physeal fracture of unspecified calcaneus, initial encounter for closed fracture +S99029B Salter-Harris Type II physeal fracture of unspecified calcaneus, initial encounter for open fracture +S99029D Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing +S99029G Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S99029K Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +S99029P Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +S99029S Salter-Harris Type II physeal fracture of unspecified calcaneus, sequela +S99031A Salter-Harris Type III physeal fracture of right calcaneus, initial encounter for closed fracture +S99031B Salter-Harris Type III physeal fracture of right calcaneus, initial encounter for open fracture +S99031D Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing +S99031G Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing +S99031K Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion +S99031P Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with malunion +S99031S Salter-Harris Type III physeal fracture of right calcaneus, sequela +S99032A Salter-Harris Type III physeal fracture of left calcaneus, initial encounter for closed fracture +S99032B Salter-Harris Type III physeal fracture of left calcaneus, initial encounter for open fracture +S99032D Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing +S99032G Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing +S99032K Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion +S99032P Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with malunion +S99032S Salter-Harris Type III physeal fracture of left calcaneus, sequela +S99039A Salter-Harris Type III physeal fracture of unspecified calcaneus, initial encounter for closed fracture +S99039B Salter-Harris Type III physeal fracture of unspecified calcaneus, initial encounter for open fracture +S99039D Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing +S99039G Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S99039K Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +S99039P Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +S99039S Salter-Harris Type III physeal fracture of unspecified calcaneus, sequela +S99041A Salter-Harris Type IV physeal fracture of right calcaneus, initial encounter for closed fracture +S99041B Salter-Harris Type IV physeal fracture of right calcaneus, initial encounter for open fracture +S99041D Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing +S99041G Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing +S99041K Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion +S99041P Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with malunion +S99041S Salter-Harris Type IV physeal fracture of right calcaneus, sequela +S99042A Salter-Harris Type IV physeal fracture of left calcaneus, initial encounter for closed fracture +S99042B Salter-Harris Type IV physeal fracture of left calcaneus, initial encounter for open fracture +S99042D Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing +S99042G Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing +S99042K Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion +S99042P Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with malunion +S99042S Salter-Harris Type IV physeal fracture of left calcaneus, sequela +S99049A Salter-Harris Type IV physeal fracture of unspecified calcaneus, initial encounter for closed fracture +S99049B Salter-Harris Type IV physeal fracture of unspecified calcaneus, initial encounter for open fracture +S99049D Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing +S99049G Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S99049K Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +S99049P Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +S99049S Salter-Harris Type IV physeal fracture of unspecified calcaneus, sequela +S99091A Other physeal fracture of right calcaneus, initial encounter for closed fracture +S99091B Other physeal fracture of right calcaneus, initial encounter for open fracture +S99091D Other physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing +S99091G Other physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing +S99091K Other physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion +S99091P Other physeal fracture of right calcaneus, subsequent encounter for fracture with malunion +S99091S Other physeal fracture of right calcaneus, sequela +S99092A Other physeal fracture of left calcaneus, initial encounter for closed fracture +S99092B Other physeal fracture of left calcaneus, initial encounter for open fracture +S99092D Other physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing +S99092G Other physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing +S99092K Other physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion +S99092P Other physeal fracture of left calcaneus, subsequent encounter for fracture with malunion +S99092S Other physeal fracture of left calcaneus, sequela +S99099A Other physeal fracture of unspecified calcaneus, initial encounter for closed fracture +S99099B Other physeal fracture of unspecified calcaneus, initial encounter for open fracture +S99099D Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing +S99099G Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing +S99099K Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +S99099P Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +S99099S Other physeal fracture of unspecified calcaneus, sequela +S99101A Unspecified physeal fracture of right metatarsal, initial encounter for closed fracture +S99101B Unspecified physeal fracture of right metatarsal, initial encounter for open fracture +S99101D Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing +S99101G Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing +S99101K Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion +S99101P Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with malunion +S99101S Unspecified physeal fracture of right metatarsal, sequela +S99102A Unspecified physeal fracture of left metatarsal, initial encounter for closed fracture +S99102B Unspecified physeal fracture of left metatarsal, initial encounter for open fracture +S99102D Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing +S99102G Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing +S99102K Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion +S99102P Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with malunion +S99102S Unspecified physeal fracture of left metatarsal, sequela +S99109A Unspecified physeal fracture of unspecified metatarsal, initial encounter for closed fracture +S99109B Unspecified physeal fracture of unspecified metatarsal, initial encounter for open fracture +S99109D Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing +S99109G Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing +S99109K Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion +S99109P Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion +S99109S Unspecified physeal fracture of unspecified metatarsal, sequela +S99111A Salter-Harris Type I physeal fracture of right metatarsal, initial encounter for closed fracture +S99111B Salter-Harris Type I physeal fracture of right metatarsal, initial encounter for open fracture +S99111D Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing +S99111G Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing +S99111K Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion +S99111P Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with malunion +S99111S Salter-Harris Type I physeal fracture of right metatarsal, sequela +S99112A Salter-Harris Type I physeal fracture of left metatarsal, initial encounter for closed fracture +S99112B Salter-Harris Type I physeal fracture of left metatarsal, initial encounter for open fracture +S99112D Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing +S99112G Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing +S99112K Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion +S99112P Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with malunion +S99112S Salter-Harris Type I physeal fracture of left metatarsal, sequela +S99119A Salter-Harris Type I physeal fracture of unspecified metatarsal, initial encounter for closed fracture +S99119B Salter-Harris Type I physeal fracture of unspecified metatarsal, initial encounter for open fracture +S99119D Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing +S99119G Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing +S99119K Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion +S99119P Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion +S99119S Salter-Harris Type I physeal fracture of unspecified metatarsal, sequela +S99121A Salter-Harris Type II physeal fracture of right metatarsal, initial encounter for closed fracture +S99121B Salter-Harris Type II physeal fracture of right metatarsal, initial encounter for open fracture +S99121D Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing +S99121G Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing +S99121K Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion +S99121P Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with malunion +S99121S Salter-Harris Type II physeal fracture of right metatarsal, sequela +S99122A Salter-Harris Type II physeal fracture of left metatarsal, initial encounter for closed fracture +S99122B Salter-Harris Type II physeal fracture of left metatarsal, initial encounter for open fracture +S99122D Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing +S99122G Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing +S99122K Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion +S99122P Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with malunion +S99122S Salter-Harris Type II physeal fracture of left metatarsal, sequela +S99129A Salter-Harris Type II physeal fracture of unspecified metatarsal, initial encounter for closed fracture +S99129B Salter-Harris Type II physeal fracture of unspecified metatarsal, initial encounter for open fracture +S99129D Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing +S99129G Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing +S99129K Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion +S99129P Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion +S99129S Salter-Harris Type II physeal fracture of unspecified metatarsal, sequela +S99131A Salter-Harris Type III physeal fracture of right metatarsal, initial encounter for closed fracture +S99131B Salter-Harris Type III physeal fracture of right metatarsal, initial encounter for open fracture +S99131D Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing +S99131G Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing +S99131K Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion +S99131P Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with malunion +S99131S Salter-Harris Type III physeal fracture of right metatarsal, sequela +S99132A Salter-Harris Type III physeal fracture of left metatarsal, initial encounter for closed fracture +S99132B Salter-Harris Type III physeal fracture of left metatarsal, initial encounter for open fracture +S99132D Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing +S99132G Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing +S99132K Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion +S99132P Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with malunion +S99132S Salter-Harris Type III physeal fracture of left metatarsal, sequela +S99139A Salter-Harris Type III physeal fracture of unspecified metatarsal, initial encounter for closed fracture +S99139B Salter-Harris Type III physeal fracture of unspecified metatarsal, initial encounter for open fracture +S99139D Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing +S99139G Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing +S99139K Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion +S99139P Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion +S99139S Salter-Harris Type III physeal fracture of unspecified metatarsal, sequela +S99141A Salter-Harris Type IV physeal fracture of right metatarsal, initial encounter for closed fracture +S99141B Salter-Harris Type IV physeal fracture of right metatarsal, initial encounter for open fracture +S99141D Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing +S99141G Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing +S99141K Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion +S99141P Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with malunion +S99141S Salter-Harris Type IV physeal fracture of right metatarsal, sequela +S99142A Salter-Harris Type IV physeal fracture of left metatarsal, initial encounter for closed fracture +S99142B Salter-Harris Type IV physeal fracture of left metatarsal, initial encounter for open fracture +S99142D Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing +S99142G Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing +S99142K Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion +S99142P Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with malunion +S99142S Salter-Harris Type IV physeal fracture of left metatarsal, sequela +S99149A Salter-Harris Type IV physeal fracture of unspecified metatarsal, initial encounter for closed fracture +S99149B Salter-Harris Type IV physeal fracture of unspecified metatarsal, initial encounter for open fracture +S99149D Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing +S99149G Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing +S99149K Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion +S99149P Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion +S99149S Salter-Harris Type IV physeal fracture of unspecified metatarsal, sequela +S99191A Other physeal fracture of right metatarsal, initial encounter for closed fracture +S99191B Other physeal fracture of right metatarsal, initial encounter for open fracture +S99191D Other physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing +S99191G Other physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing +S99191K Other physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion +S99191P Other physeal fracture of right metatarsal, subsequent encounter for fracture with malunion +S99191S Other physeal fracture of right metatarsal, sequela +S99192A Other physeal fracture of left metatarsal, initial encounter for closed fracture +S99192B Other physeal fracture of left metatarsal, initial encounter for open fracture +S99192D Other physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing +S99192G Other physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing +S99192K Other physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion +S99192P Other physeal fracture of left metatarsal, subsequent encounter for fracture with malunion +S99192S Other physeal fracture of left metatarsal, sequela +S99199A Other physeal fracture of unspecified metatarsal, initial encounter for closed fracture +S99199B Other physeal fracture of unspecified metatarsal, initial encounter for open fracture +S99199D Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing +S99199G Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing +S99199K Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion +S99199P Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion +S99199S Other physeal fracture of unspecified metatarsal, sequela +S99201A Unspecified physeal fracture of phalanx of right toe, initial encounter for closed fracture +S99201B Unspecified physeal fracture of phalanx of right toe, initial encounter for open fracture +S99201D Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing +S99201G Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing +S99201K Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion +S99201P Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion +S99201S Unspecified physeal fracture of phalanx of right toe, sequela +S99202A Unspecified physeal fracture of phalanx of left toe, initial encounter for closed fracture +S99202B Unspecified physeal fracture of phalanx of left toe, initial encounter for open fracture +S99202D Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing +S99202G Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing +S99202K Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion +S99202P Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion +S99202S Unspecified physeal fracture of phalanx of left toe, sequela +S99209A Unspecified physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture +S99209B Unspecified physeal fracture of phalanx of unspecified toe, initial encounter for open fracture +S99209D Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing +S99209G Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing +S99209K Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion +S99209P Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion +S99209S Unspecified physeal fracture of phalanx of unspecified toe, sequela +S99211A Salter-Harris Type I physeal fracture of phalanx of right toe, initial encounter for closed fracture +S99211B Salter-Harris Type I physeal fracture of phalanx of right toe, initial encounter for open fracture +S99211D Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing +S99211G Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing +S99211K Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion +S99211P Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion +S99211S Salter-Harris Type I physeal fracture of phalanx of right toe, sequela +S99212A Salter-Harris Type I physeal fracture of phalanx of left toe, initial encounter for closed fracture +S99212B Salter-Harris Type I physeal fracture of phalanx of left toe, initial encounter for open fracture +S99212D Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing +S99212G Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing +S99212K Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion +S99212P Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion +S99212S Salter-Harris Type I physeal fracture of phalanx of left toe, sequela +S99219A Salter-Harris Type I physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture +S99219B Salter-Harris Type I physeal fracture of phalanx of unspecified toe, initial encounter for open fracture +S99219D Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing +S99219G Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing +S99219K Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion +S99219P Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion +S99219S Salter-Harris Type I physeal fracture of phalanx of unspecified toe, sequela +S99221A Salter-Harris Type II physeal fracture of phalanx of right toe, initial encounter for closed fracture +S99221B Salter-Harris Type II physeal fracture of phalanx of right toe, initial encounter for open fracture +S99221D Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing +S99221G Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing +S99221K Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion +S99221P Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion +S99221S Salter-Harris Type II physeal fracture of phalanx of right toe, sequela +S99222A Salter-Harris Type II physeal fracture of phalanx of left toe, initial encounter for closed fracture +S99222B Salter-Harris Type II physeal fracture of phalanx of left toe, initial encounter for open fracture +S99222D Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing +S99222G Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing +S99222K Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion +S99222P Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion +S99222S Salter-Harris Type II physeal fracture of phalanx of left toe, sequela +S99229A Salter-Harris Type II physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture +S99229B Salter-Harris Type II physeal fracture of phalanx of unspecified toe, initial encounter for open fracture +S99229D Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing +S99229G Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing +S99229K Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion +S99229P Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion +S99229S Salter-Harris Type II physeal fracture of phalanx of unspecified toe, sequela +S99231A Salter-Harris Type III physeal fracture of phalanx of right toe, initial encounter for closed fracture +S99231B Salter-Harris Type III physeal fracture of phalanx of right toe, initial encounter for open fracture +S99231D Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing +S99231G Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing +S99231K Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion +S99231P Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion +S99231S Salter-Harris Type III physeal fracture of phalanx of right toe, sequela +S99232A Salter-Harris Type III physeal fracture of phalanx of left toe, initial encounter for closed fracture +S99232B Salter-Harris Type III physeal fracture of phalanx of left toe, initial encounter for open fracture +S99232D Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing +S99232G Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing +S99232K Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion +S99232P Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion +S99232S Salter-Harris Type III physeal fracture of phalanx of left toe, sequela +S99239A Salter-Harris Type III physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture +S99239B Salter-Harris Type III physeal fracture of phalanx of unspecified toe, initial encounter for open fracture +S99239D Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing +S99239G Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing +S99239K Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion +S99239P Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion +S99239S Salter-Harris Type III physeal fracture of phalanx of unspecified toe, sequela +S99241A Salter-Harris Type IV physeal fracture of phalanx of right toe, initial encounter for closed fracture +S99241B Salter-Harris Type IV physeal fracture of phalanx of right toe, initial encounter for open fracture +S99241D Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing +S99241G Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing +S99241K Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion +S99241P Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion +S99241S Salter-Harris Type IV physeal fracture of phalanx of right toe, sequela +S99242A Salter-Harris Type IV physeal fracture of phalanx of left toe, initial encounter for closed fracture +S99242B Salter-Harris Type IV physeal fracture of phalanx of left toe, initial encounter for open fracture +S99242D Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing +S99242G Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing +S99242K Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion +S99242P Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion +S99242S Salter-Harris Type IV physeal fracture of phalanx of left toe, sequela +S99249A Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture +S99249B Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, initial encounter for open fracture +S99249D Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing +S99249G Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing +S99249K Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion +S99249P Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion +S99249S Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, sequela +S99291A Other physeal fracture of phalanx of right toe, initial encounter for closed fracture +S99291B Other physeal fracture of phalanx of right toe, initial encounter for open fracture +S99291D Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing +S99291G Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing +S99291K Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion +S99291P Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion +S99291S Other physeal fracture of phalanx of right toe, sequela +S99292A Other physeal fracture of phalanx of left toe, initial encounter for closed fracture +S99292B Other physeal fracture of phalanx of left toe, initial encounter for open fracture +S99292D Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing +S99292G Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing +S99292K Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion +S99292P Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion +S99292S Other physeal fracture of phalanx of left toe, sequela +S99299A Other physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture +S99299B Other physeal fracture of phalanx of unspecified toe, initial encounter for open fracture +S99299D Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing +S99299G Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing +S99299K Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion +S99299P Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion +S99299S Other physeal fracture of phalanx of unspecified toe, sequela +S99811A Other specified injuries of right ankle, initial encounter +S99811D Other specified injuries of right ankle, subsequent encounter +S99811S Other specified injuries of right ankle, sequela +S99812A Other specified injuries of left ankle, initial encounter +S99812D Other specified injuries of left ankle, subsequent encounter +S99812S Other specified injuries of left ankle, sequela +S99819A Other specified injuries of unspecified ankle, initial encounter +S99819D Other specified injuries of unspecified ankle, subsequent encounter +S99819S Other specified injuries of unspecified ankle, sequela +S99821A Other specified injuries of right foot, initial encounter +S99821D Other specified injuries of right foot, subsequent encounter +S99821S Other specified injuries of right foot, sequela +S99822A Other specified injuries of left foot, initial encounter +S99822D Other specified injuries of left foot, subsequent encounter +S99822S Other specified injuries of left foot, sequela +S99829A Other specified injuries of unspecified foot, initial encounter +S99829D Other specified injuries of unspecified foot, subsequent encounter +S99829S Other specified injuries of unspecified foot, sequela +S99911A Unspecified injury of right ankle, initial encounter +S99911D Unspecified injury of right ankle, subsequent encounter +S99911S Unspecified injury of right ankle, sequela +S99912A Unspecified injury of left ankle, initial encounter +S99912D Unspecified injury of left ankle, subsequent encounter +S99912S Unspecified injury of left ankle, sequela +S99919A Unspecified injury of unspecified ankle, initial encounter +S99919D Unspecified injury of unspecified ankle, subsequent encounter +S99919S Unspecified injury of unspecified ankle, sequela +S99921A Unspecified injury of right foot, initial encounter +S99921D Unspecified injury of right foot, subsequent encounter +S99921S Unspecified injury of right foot, sequela +S99922A Unspecified injury of left foot, initial encounter +S99922D Unspecified injury of left foot, subsequent encounter +S99922S Unspecified injury of left foot, sequela +S99929A Unspecified injury of unspecified foot, initial encounter +S99929D Unspecified injury of unspecified foot, subsequent encounter +S99929S Unspecified injury of unspecified foot, sequela +T1500XA Foreign body in cornea, unspecified eye, initial encounter +T1500XD Foreign body in cornea, unspecified eye, subsequent encounter +T1500XS Foreign body in cornea, unspecified eye, sequela +T1501XA Foreign body in cornea, right eye, initial encounter +T1501XD Foreign body in cornea, right eye, subsequent encounter +T1501XS Foreign body in cornea, right eye, sequela +T1502XA Foreign body in cornea, left eye, initial encounter +T1502XD Foreign body in cornea, left eye, subsequent encounter +T1502XS Foreign body in cornea, left eye, sequela +T1510XA Foreign body in conjunctival sac, unspecified eye, initial encounter +T1510XD Foreign body in conjunctival sac, unspecified eye, subsequent encounter +T1510XS Foreign body in conjunctival sac, unspecified eye, sequela +T1511XA Foreign body in conjunctival sac, right eye, initial encounter +T1511XD Foreign body in conjunctival sac, right eye, subsequent encounter +T1511XS Foreign body in conjunctival sac, right eye, sequela +T1512XA Foreign body in conjunctival sac, left eye, initial encounter +T1512XD Foreign body in conjunctival sac, left eye, subsequent encounter +T1512XS Foreign body in conjunctival sac, left eye, sequela +T1580XA Foreign body in other and multiple parts of external eye, unspecified eye, initial encounter +T1580XD Foreign body in other and multiple parts of external eye, unspecified eye, subsequent encounter +T1580XS Foreign body in other and multiple parts of external eye, unspecified eye, sequela +T1581XA Foreign body in other and multiple parts of external eye, right eye, initial encounter +T1581XD Foreign body in other and multiple parts of external eye, right eye, subsequent encounter +T1581XS Foreign body in other and multiple parts of external eye, right eye, sequela +T1582XA Foreign body in other and multiple parts of external eye, left eye, initial encounter +T1582XD Foreign body in other and multiple parts of external eye, left eye, subsequent encounter +T1582XS Foreign body in other and multiple parts of external eye, left eye, sequela +T1590XA Foreign body on external eye, part unspecified, unspecified eye, initial encounter +T1590XD Foreign body on external eye, part unspecified, unspecified eye, subsequent encounter +T1590XS Foreign body on external eye, part unspecified, unspecified eye, sequela +T1591XA Foreign body on external eye, part unspecified, right eye, initial encounter +T1591XD Foreign body on external eye, part unspecified, right eye, subsequent encounter +T1591XS Foreign body on external eye, part unspecified, right eye, sequela +T1592XA Foreign body on external eye, part unspecified, left eye, initial encounter +T1592XD Foreign body on external eye, part unspecified, left eye, subsequent encounter +T1592XS Foreign body on external eye, part unspecified, left eye, sequela +T161XXA Foreign body in right ear, initial encounter +T161XXD Foreign body in right ear, subsequent encounter +T161XXS Foreign body in right ear, sequela +T162XXA Foreign body in left ear, initial encounter +T162XXD Foreign body in left ear, subsequent encounter +T162XXS Foreign body in left ear, sequela +T169XXA Foreign body in ear, unspecified ear, initial encounter +T169XXD Foreign body in ear, unspecified ear, subsequent encounter +T169XXS Foreign body in ear, unspecified ear, sequela +T170XXA Foreign body in nasal sinus, initial encounter +T170XXD Foreign body in nasal sinus, subsequent encounter +T170XXS Foreign body in nasal sinus, sequela +T171XXA Foreign body in nostril, initial encounter +T171XXD Foreign body in nostril, subsequent encounter +T171XXS Foreign body in nostril, sequela +T17200A Unspecified foreign body in pharynx causing asphyxiation, initial encounter +T17200D Unspecified foreign body in pharynx causing asphyxiation, subsequent encounter +T17200S Unspecified foreign body in pharynx causing asphyxiation, sequela +T17208A Unspecified foreign body in pharynx causing other injury, initial encounter +T17208D Unspecified foreign body in pharynx causing other injury, subsequent encounter +T17208S Unspecified foreign body in pharynx causing other injury, sequela +T17210A Gastric contents in pharynx causing asphyxiation, initial encounter +T17210D Gastric contents in pharynx causing asphyxiation, subsequent encounter +T17210S Gastric contents in pharynx causing asphyxiation, sequela +T17218A Gastric contents in pharynx causing other injury, initial encounter +T17218D Gastric contents in pharynx causing other injury, subsequent encounter +T17218S Gastric contents in pharynx causing other injury, sequela +T17220A Food in pharynx causing asphyxiation, initial encounter +T17220D Food in pharynx causing asphyxiation, subsequent encounter +T17220S Food in pharynx causing asphyxiation, sequela +T17228A Food in pharynx causing other injury, initial encounter +T17228D Food in pharynx causing other injury, subsequent encounter +T17228S Food in pharynx causing other injury, sequela +T17290A Other foreign object in pharynx causing asphyxiation, initial encounter +T17290D Other foreign object in pharynx causing asphyxiation, subsequent encounter +T17290S Other foreign object in pharynx causing asphyxiation, sequela +T17298A Other foreign object in pharynx causing other injury, initial encounter +T17298D Other foreign object in pharynx causing other injury, subsequent encounter +T17298S Other foreign object in pharynx causing other injury, sequela +T17300A Unspecified foreign body in larynx causing asphyxiation, initial encounter +T17300D Unspecified foreign body in larynx causing asphyxiation, subsequent encounter +T17300S Unspecified foreign body in larynx causing asphyxiation, sequela +T17308A Unspecified foreign body in larynx causing other injury, initial encounter +T17308D Unspecified foreign body in larynx causing other injury, subsequent encounter +T17308S Unspecified foreign body in larynx causing other injury, sequela +T17310A Gastric contents in larynx causing asphyxiation, initial encounter +T17310D Gastric contents in larynx causing asphyxiation, subsequent encounter +T17310S Gastric contents in larynx causing asphyxiation, sequela +T17318A Gastric contents in larynx causing other injury, initial encounter +T17318D Gastric contents in larynx causing other injury, subsequent encounter +T17318S Gastric contents in larynx causing other injury, sequela +T17320A Food in larynx causing asphyxiation, initial encounter +T17320D Food in larynx causing asphyxiation, subsequent encounter +T17320S Food in larynx causing asphyxiation, sequela +T17328A Food in larynx causing other injury, initial encounter +T17328D Food in larynx causing other injury, subsequent encounter +T17328S Food in larynx causing other injury, sequela +T17390A Other foreign object in larynx causing asphyxiation, initial encounter +T17390D Other foreign object in larynx causing asphyxiation, subsequent encounter +T17390S Other foreign object in larynx causing asphyxiation, sequela +T17398A Other foreign object in larynx causing other injury, initial encounter +T17398D Other foreign object in larynx causing other injury, subsequent encounter +T17398S Other foreign object in larynx causing other injury, sequela +T17400A Unspecified foreign body in trachea causing asphyxiation, initial encounter +T17400D Unspecified foreign body in trachea causing asphyxiation, subsequent encounter +T17400S Unspecified foreign body in trachea causing asphyxiation, sequela +T17408A Unspecified foreign body in trachea causing other injury, initial encounter +T17408D Unspecified foreign body in trachea causing other injury, subsequent encounter +T17408S Unspecified foreign body in trachea causing other injury, sequela +T17410A Gastric contents in trachea causing asphyxiation, initial encounter +T17410D Gastric contents in trachea causing asphyxiation, subsequent encounter +T17410S Gastric contents in trachea causing asphyxiation, sequela +T17418A Gastric contents in trachea causing other injury, initial encounter +T17418D Gastric contents in trachea causing other injury, subsequent encounter +T17418S Gastric contents in trachea causing other injury, sequela +T17420A Food in trachea causing asphyxiation, initial encounter +T17420D Food in trachea causing asphyxiation, subsequent encounter +T17420S Food in trachea causing asphyxiation, sequela +T17428A Food in trachea causing other injury, initial encounter +T17428D Food in trachea causing other injury, subsequent encounter +T17428S Food in trachea causing other injury, sequela +T17490A Other foreign object in trachea causing asphyxiation, initial encounter +T17490D Other foreign object in trachea causing asphyxiation, subsequent encounter +T17490S Other foreign object in trachea causing asphyxiation, sequela +T17498A Other foreign object in trachea causing other injury, initial encounter +T17498D Other foreign object in trachea causing other injury, subsequent encounter +T17498S Other foreign object in trachea causing other injury, sequela +T17500A Unspecified foreign body in bronchus causing asphyxiation, initial encounter +T17500D Unspecified foreign body in bronchus causing asphyxiation, subsequent encounter +T17500S Unspecified foreign body in bronchus causing asphyxiation, sequela +T17508A Unspecified foreign body in bronchus causing other injury, initial encounter +T17508D Unspecified foreign body in bronchus causing other injury, subsequent encounter +T17508S Unspecified foreign body in bronchus causing other injury, sequela +T17510A Gastric contents in bronchus causing asphyxiation, initial encounter +T17510D Gastric contents in bronchus causing asphyxiation, subsequent encounter +T17510S Gastric contents in bronchus causing asphyxiation, sequela +T17518A Gastric contents in bronchus causing other injury, initial encounter +T17518D Gastric contents in bronchus causing other injury, subsequent encounter +T17518S Gastric contents in bronchus causing other injury, sequela +T17520A Food in bronchus causing asphyxiation, initial encounter +T17520D Food in bronchus causing asphyxiation, subsequent encounter +T17520S Food in bronchus causing asphyxiation, sequela +T17528A Food in bronchus causing other injury, initial encounter +T17528D Food in bronchus causing other injury, subsequent encounter +T17528S Food in bronchus causing other injury, sequela +T17590A Other foreign object in bronchus causing asphyxiation, initial encounter +T17590D Other foreign object in bronchus causing asphyxiation, subsequent encounter +T17590S Other foreign object in bronchus causing asphyxiation, sequela +T17598A Other foreign object in bronchus causing other injury, initial encounter +T17598D Other foreign object in bronchus causing other injury, subsequent encounter +T17598S Other foreign object in bronchus causing other injury, sequela +T17800A Unspecified foreign body in other parts of respiratory tract causing asphyxiation, initial encounter +T17800D Unspecified foreign body in other parts of respiratory tract causing asphyxiation, subsequent encounter +T17800S Unspecified foreign body in other parts of respiratory tract causing asphyxiation, sequela +T17808A Unspecified foreign body in other parts of respiratory tract causing other injury, initial encounter +T17808D Unspecified foreign body in other parts of respiratory tract causing other injury, subsequent encounter +T17808S Unspecified foreign body in other parts of respiratory tract causing other injury, sequela +T17810A Gastric contents in other parts of respiratory tract causing asphyxiation, initial encounter +T17810D Gastric contents in other parts of respiratory tract causing asphyxiation, subsequent encounter +T17810S Gastric contents in other parts of respiratory tract causing asphyxiation, sequela +T17818A Gastric contents in other parts of respiratory tract causing other injury, initial encounter +T17818D Gastric contents in other parts of respiratory tract causing other injury, subsequent encounter +T17818S Gastric contents in other parts of respiratory tract causing other injury, sequela +T17820A Food in other parts of respiratory tract causing asphyxiation, initial encounter +T17820D Food in other parts of respiratory tract causing asphyxiation, subsequent encounter +T17820S Food in other parts of respiratory tract causing asphyxiation, sequela +T17828A Food in other parts of respiratory tract causing other injury, initial encounter +T17828D Food in other parts of respiratory tract causing other injury, subsequent encounter +T17828S Food in other parts of respiratory tract causing other injury, sequela +T17890A Other foreign object in other parts of respiratory tract causing asphyxiation, initial encounter +T17890D Other foreign object in other parts of respiratory tract causing asphyxiation, subsequent encounter +T17890S Other foreign object in other parts of respiratory tract causing asphyxiation, sequela +T17898A Other foreign object in other parts of respiratory tract causing other injury, initial encounter +T17898D Other foreign object in other parts of respiratory tract causing other injury, subsequent encounter +T17898S Other foreign object in other parts of respiratory tract causing other injury, sequela +T17900A Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation, initial encounter +T17900D Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation, subsequent encounter +T17900S Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation, sequela +T17908A Unspecified foreign body in respiratory tract, part unspecified causing other injury, initial encounter +T17908D Unspecified foreign body in respiratory tract, part unspecified causing other injury, subsequent encounter +T17908S Unspecified foreign body in respiratory tract, part unspecified causing other injury, sequela +T17910A Gastric contents in respiratory tract, part unspecified causing asphyxiation, initial encounter +T17910D Gastric contents in respiratory tract, part unspecified causing asphyxiation, subsequent encounter +T17910S Gastric contents in respiratory tract, part unspecified causing asphyxiation, sequela +T17918A Gastric contents in respiratory tract, part unspecified causing other injury, initial encounter +T17918D Gastric contents in respiratory tract, part unspecified causing other injury, subsequent encounter +T17918S Gastric contents in respiratory tract, part unspecified causing other injury, sequela +T17920A Food in respiratory tract, part unspecified causing asphyxiation, initial encounter +T17920D Food in respiratory tract, part unspecified causing asphyxiation, subsequent encounter +T17920S Food in respiratory tract, part unspecified causing asphyxiation, sequela +T17928A Food in respiratory tract, part unspecified causing other injury, initial encounter +T17928D Food in respiratory tract, part unspecified causing other injury, subsequent encounter +T17928S Food in respiratory tract, part unspecified causing other injury, sequela +T17990A Other foreign object in respiratory tract, part unspecified in causing asphyxiation, initial encounter +T17990D Other foreign object in respiratory tract, part unspecified in causing asphyxiation, subsequent encounter +T17990S Other foreign object in respiratory tract, part unspecified in causing asphyxiation, sequela +T17998A Other foreign object in respiratory tract, part unspecified causing other injury, initial encounter +T17998D Other foreign object in respiratory tract, part unspecified causing other injury, subsequent encounter +T17998S Other foreign object in respiratory tract, part unspecified causing other injury, sequela +T180XXA Foreign body in mouth, initial encounter +T180XXD Foreign body in mouth, subsequent encounter +T180XXS Foreign body in mouth, sequela +T18100A Unspecified foreign body in esophagus causing compression of trachea, initial encounter +T18100D Unspecified foreign body in esophagus causing compression of trachea, subsequent encounter +T18100S Unspecified foreign body in esophagus causing compression of trachea, sequela +T18108A Unspecified foreign body in esophagus causing other injury, initial encounter +T18108D Unspecified foreign body in esophagus causing other injury, subsequent encounter +T18108S Unspecified foreign body in esophagus causing other injury, sequela +T18110A Gastric contents in esophagus causing compression of trachea, initial encounter +T18110D Gastric contents in esophagus causing compression of trachea, subsequent encounter +T18110S Gastric contents in esophagus causing compression of trachea, sequela +T18118A Gastric contents in esophagus causing other injury, initial encounter +T18118D Gastric contents in esophagus causing other injury, subsequent encounter +T18118S Gastric contents in esophagus causing other injury, sequela +T18120A Food in esophagus causing compression of trachea, initial encounter +T18120D Food in esophagus causing compression of trachea, subsequent encounter +T18120S Food in esophagus causing compression of trachea, sequela +T18128A Food in esophagus causing other injury, initial encounter +T18128D Food in esophagus causing other injury, subsequent encounter +T18128S Food in esophagus causing other injury, sequela +T18190A Other foreign object in esophagus causing compression of trachea, initial encounter +T18190D Other foreign object in esophagus causing compression of trachea, subsequent encounter +T18190S Other foreign object in esophagus causing compression of trachea, sequela +T18198A Other foreign object in esophagus causing other injury, initial encounter +T18198D Other foreign object in esophagus causing other injury, subsequent encounter +T18198S Other foreign object in esophagus causing other injury, sequela +T182XXA Foreign body in stomach, initial encounter +T182XXD Foreign body in stomach, subsequent encounter +T182XXS Foreign body in stomach, sequela +T183XXA Foreign body in small intestine, initial encounter +T183XXD Foreign body in small intestine, subsequent encounter +T183XXS Foreign body in small intestine, sequela +T184XXA Foreign body in colon, initial encounter +T184XXD Foreign body in colon, subsequent encounter +T184XXS Foreign body in colon, sequela +T185XXA Foreign body in anus and rectum, initial encounter +T185XXD Foreign body in anus and rectum, subsequent encounter +T185XXS Foreign body in anus and rectum, sequela +T188XXA Foreign body in other parts of alimentary tract, initial encounter +T188XXD Foreign body in other parts of alimentary tract, subsequent encounter +T188XXS Foreign body in other parts of alimentary tract, sequela +T189XXA Foreign body of alimentary tract, part unspecified, initial encounter +T189XXD Foreign body of alimentary tract, part unspecified, subsequent encounter +T189XXS Foreign body of alimentary tract, part unspecified, sequela +T190XXA Foreign body in urethra, initial encounter +T190XXD Foreign body in urethra, subsequent encounter +T190XXS Foreign body in urethra, sequela +T191XXA Foreign body in bladder, initial encounter +T191XXD Foreign body in bladder, subsequent encounter +T191XXS Foreign body in bladder, sequela +T192XXA Foreign body in vulva and vagina, initial encounter +T192XXD Foreign body in vulva and vagina, subsequent encounter +T192XXS Foreign body in vulva and vagina, sequela +T193XXA Foreign body in uterus, initial encounter +T193XXD Foreign body in uterus, subsequent encounter +T193XXS Foreign body in uterus, sequela +T194XXA Foreign body in penis, initial encounter +T194XXD Foreign body in penis, subsequent encounter +T194XXS Foreign body in penis, sequela +T198XXA Foreign body in other parts of genitourinary tract, initial encounter +T198XXD Foreign body in other parts of genitourinary tract, subsequent encounter +T198XXS Foreign body in other parts of genitourinary tract, sequela +T199XXA Foreign body in genitourinary tract, part unspecified, initial encounter +T199XXD Foreign body in genitourinary tract, part unspecified, subsequent encounter +T199XXS Foreign body in genitourinary tract, part unspecified, sequela +T2000XA Burn of unspecified degree of head, face, and neck, unspecified site, initial encounter +T2000XD Burn of unspecified degree of head, face, and neck, unspecified site, subsequent encounter +T2000XS Burn of unspecified degree of head, face, and neck, unspecified site, sequela +T20011A Burn of unspecified degree of right ear [any part, except ear drum], initial encounter +T20011D Burn of unspecified degree of right ear [any part, except ear drum], subsequent encounter +T20011S Burn of unspecified degree of right ear [any part, except ear drum], sequela +T20012A Burn of unspecified degree of left ear [any part, except ear drum], initial encounter +T20012D Burn of unspecified degree of left ear [any part, except ear drum], subsequent encounter +T20012S Burn of unspecified degree of left ear [any part, except ear drum], sequela +T20019A Burn of unspecified degree of unspecified ear [any part, except ear drum], initial encounter +T20019D Burn of unspecified degree of unspecified ear [any part, except ear drum], subsequent encounter +T20019S Burn of unspecified degree of unspecified ear [any part, except ear drum], sequela +T2002XA Burn of unspecified degree of lip(s), initial encounter +T2002XD Burn of unspecified degree of lip(s), subsequent encounter +T2002XS Burn of unspecified degree of lip(s), sequela +T2003XA Burn of unspecified degree of chin, initial encounter +T2003XD Burn of unspecified degree of chin, subsequent encounter +T2003XS Burn of unspecified degree of chin, sequela +T2004XA Burn of unspecified degree of nose (septum), initial encounter +T2004XD Burn of unspecified degree of nose (septum), subsequent encounter +T2004XS Burn of unspecified degree of nose (septum), sequela +T2005XA Burn of unspecified degree of scalp [any part], initial encounter +T2005XD Burn of unspecified degree of scalp [any part], subsequent encounter +T2005XS Burn of unspecified degree of scalp [any part], sequela +T2006XA Burn of unspecified degree of forehead and cheek, initial encounter +T2006XD Burn of unspecified degree of forehead and cheek, subsequent encounter +T2006XS Burn of unspecified degree of forehead and cheek, sequela +T2007XA Burn of unspecified degree of neck, initial encounter +T2007XD Burn of unspecified degree of neck, subsequent encounter +T2007XS Burn of unspecified degree of neck, sequela +T2009XA Burn of unspecified degree of multiple sites of head, face, and neck, initial encounter +T2009XD Burn of unspecified degree of multiple sites of head, face, and neck, subsequent encounter +T2009XS Burn of unspecified degree of multiple sites of head, face, and neck, sequela +T2010XA Burn of first degree of head, face, and neck, unspecified site, initial encounter +T2010XD Burn of first degree of head, face, and neck, unspecified site, subsequent encounter +T2010XS Burn of first degree of head, face, and neck, unspecified site, sequela +T20111A Burn of first degree of right ear [any part, except ear drum], initial encounter +T20111D Burn of first degree of right ear [any part, except ear drum], subsequent encounter +T20111S Burn of first degree of right ear [any part, except ear drum], sequela +T20112A Burn of first degree of left ear [any part, except ear drum], initial encounter +T20112D Burn of first degree of left ear [any part, except ear drum], subsequent encounter +T20112S Burn of first degree of left ear [any part, except ear drum], sequela +T20119A Burn of first degree of unspecified ear [any part, except ear drum], initial encounter +T20119D Burn of first degree of unspecified ear [any part, except ear drum], subsequent encounter +T20119S Burn of first degree of unspecified ear [any part, except ear drum], sequela +T2012XA Burn of first degree of lip(s), initial encounter +T2012XD Burn of first degree of lip(s), subsequent encounter +T2012XS Burn of first degree of lip(s), sequela +T2013XA Burn of first degree of chin, initial encounter +T2013XD Burn of first degree of chin, subsequent encounter +T2013XS Burn of first degree of chin, sequela +T2014XA Burn of first degree of nose (septum), initial encounter +T2014XD Burn of first degree of nose (septum), subsequent encounter +T2014XS Burn of first degree of nose (septum), sequela +T2015XA Burn of first degree of scalp [any part], initial encounter +T2015XD Burn of first degree of scalp [any part], subsequent encounter +T2015XS Burn of first degree of scalp [any part], sequela +T2016XA Burn of first degree of forehead and cheek, initial encounter +T2016XD Burn of first degree of forehead and cheek, subsequent encounter +T2016XS Burn of first degree of forehead and cheek, sequela +T2017XA Burn of first degree of neck, initial encounter +T2017XD Burn of first degree of neck, subsequent encounter +T2017XS Burn of first degree of neck, sequela +T2019XA Burn of first degree of multiple sites of head, face, and neck, initial encounter +T2019XD Burn of first degree of multiple sites of head, face, and neck, subsequent encounter +T2019XS Burn of first degree of multiple sites of head, face, and neck, sequela +T2020XA Burn of second degree of head, face, and neck, unspecified site, initial encounter +T2020XD Burn of second degree of head, face, and neck, unspecified site, subsequent encounter +T2020XS Burn of second degree of head, face, and neck, unspecified site, sequela +T20211A Burn of second degree of right ear [any part, except ear drum], initial encounter +T20211D Burn of second degree of right ear [any part, except ear drum], subsequent encounter +T20211S Burn of second degree of right ear [any part, except ear drum], sequela +T20212A Burn of second degree of left ear [any part, except ear drum], initial encounter +T20212D Burn of second degree of left ear [any part, except ear drum], subsequent encounter +T20212S Burn of second degree of left ear [any part, except ear drum], sequela +T20219A Burn of second degree of unspecified ear [any part, except ear drum], initial encounter +T20219D Burn of second degree of unspecified ear [any part, except ear drum], subsequent encounter +T20219S Burn of second degree of unspecified ear [any part, except ear drum], sequela +T2022XA Burn of second degree of lip(s), initial encounter +T2022XD Burn of second degree of lip(s), subsequent encounter +T2022XS Burn of second degree of lip(s), sequela +T2023XA Burn of second degree of chin, initial encounter +T2023XD Burn of second degree of chin, subsequent encounter +T2023XS Burn of second degree of chin, sequela +T2024XA Burn of second degree of nose (septum), initial encounter +T2024XD Burn of second degree of nose (septum), subsequent encounter +T2024XS Burn of second degree of nose (septum), sequela +T2025XA Burn of second degree of scalp [any part], initial encounter +T2025XD Burn of second degree of scalp [any part], subsequent encounter +T2025XS Burn of second degree of scalp [any part], sequela +T2026XA Burn of second degree of forehead and cheek, initial encounter +T2026XD Burn of second degree of forehead and cheek, subsequent encounter +T2026XS Burn of second degree of forehead and cheek, sequela +T2027XA Burn of second degree of neck, initial encounter +T2027XD Burn of second degree of neck, subsequent encounter +T2027XS Burn of second degree of neck, sequela +T2029XA Burn of second degree of multiple sites of head, face, and neck, initial encounter +T2029XD Burn of second degree of multiple sites of head, face, and neck, subsequent encounter +T2029XS Burn of second degree of multiple sites of head, face, and neck, sequela +T2030XA Burn of third degree of head, face, and neck, unspecified site, initial encounter +T2030XD Burn of third degree of head, face, and neck, unspecified site, subsequent encounter +T2030XS Burn of third degree of head, face, and neck, unspecified site, sequela +T20311A Burn of third degree of right ear [any part, except ear drum], initial encounter +T20311D Burn of third degree of right ear [any part, except ear drum], subsequent encounter +T20311S Burn of third degree of right ear [any part, except ear drum], sequela +T20312A Burn of third degree of left ear [any part, except ear drum], initial encounter +T20312D Burn of third degree of left ear [any part, except ear drum], subsequent encounter +T20312S Burn of third degree of left ear [any part, except ear drum], sequela +T20319A Burn of third degree of unspecified ear [any part, except ear drum], initial encounter +T20319D Burn of third degree of unspecified ear [any part, except ear drum], subsequent encounter +T20319S Burn of third degree of unspecified ear [any part, except ear drum], sequela +T2032XA Burn of third degree of lip(s), initial encounter +T2032XD Burn of third degree of lip(s), subsequent encounter +T2032XS Burn of third degree of lip(s), sequela +T2033XA Burn of third degree of chin, initial encounter +T2033XD Burn of third degree of chin, subsequent encounter +T2033XS Burn of third degree of chin, sequela +T2034XA Burn of third degree of nose (septum), initial encounter +T2034XD Burn of third degree of nose (septum), subsequent encounter +T2034XS Burn of third degree of nose (septum), sequela +T2035XA Burn of third degree of scalp [any part], initial encounter +T2035XD Burn of third degree of scalp [any part], subsequent encounter +T2035XS Burn of third degree of scalp [any part], sequela +T2036XA Burn of third degree of forehead and cheek, initial encounter +T2036XD Burn of third degree of forehead and cheek, subsequent encounter +T2036XS Burn of third degree of forehead and cheek, sequela +T2037XA Burn of third degree of neck, initial encounter +T2037XD Burn of third degree of neck, subsequent encounter +T2037XS Burn of third degree of neck, sequela +T2039XA Burn of third degree of multiple sites of head, face, and neck, initial encounter +T2039XD Burn of third degree of multiple sites of head, face, and neck, subsequent encounter +T2039XS Burn of third degree of multiple sites of head, face, and neck, sequela +T2040XA Corrosion of unspecified degree of head, face, and neck, unspecified site, initial encounter +T2040XD Corrosion of unspecified degree of head, face, and neck, unspecified site, subsequent encounter +T2040XS Corrosion of unspecified degree of head, face, and neck, unspecified site, sequela +T20411A Corrosion of unspecified degree of right ear [any part, except ear drum], initial encounter +T20411D Corrosion of unspecified degree of right ear [any part, except ear drum], subsequent encounter +T20411S Corrosion of unspecified degree of right ear [any part, except ear drum], sequela +T20412A Corrosion of unspecified degree of left ear [any part, except ear drum], initial encounter +T20412D Corrosion of unspecified degree of left ear [any part, except ear drum], subsequent encounter +T20412S Corrosion of unspecified degree of left ear [any part, except ear drum], sequela +T20419A Corrosion of unspecified degree of unspecified ear [any part, except ear drum], initial encounter +T20419D Corrosion of unspecified degree of unspecified ear [any part, except ear drum], subsequent encounter +T20419S Corrosion of unspecified degree of unspecified ear [any part, except ear drum], sequela +T2042XA Corrosion of unspecified degree of lip(s), initial encounter +T2042XD Corrosion of unspecified degree of lip(s), subsequent encounter +T2042XS Corrosion of unspecified degree of lip(s), sequela +T2043XA Corrosion of unspecified degree of chin, initial encounter +T2043XD Corrosion of unspecified degree of chin, subsequent encounter +T2043XS Corrosion of unspecified degree of chin, sequela +T2044XA Corrosion of unspecified degree of nose (septum), initial encounter +T2044XD Corrosion of unspecified degree of nose (septum), subsequent encounter +T2044XS Corrosion of unspecified degree of nose (septum), sequela +T2045XA Corrosion of unspecified degree of scalp [any part], initial encounter +T2045XD Corrosion of unspecified degree of scalp [any part], subsequent encounter +T2045XS Corrosion of unspecified degree of scalp [any part], sequela +T2046XA Corrosion of unspecified degree of forehead and cheek, initial encounter +T2046XD Corrosion of unspecified degree of forehead and cheek, subsequent encounter +T2046XS Corrosion of unspecified degree of forehead and cheek, sequela +T2047XA Corrosion of unspecified degree of neck, initial encounter +T2047XD Corrosion of unspecified degree of neck, subsequent encounter +T2047XS Corrosion of unspecified degree of neck, sequela +T2049XA Corrosion of unspecified degree of multiple sites of head, face, and neck, initial encounter +T2049XD Corrosion of unspecified degree of multiple sites of head, face, and neck, subsequent encounter +T2049XS Corrosion of unspecified degree of multiple sites of head, face, and neck, sequela +T2050XA Corrosion of first degree of head, face, and neck, unspecified site, initial encounter +T2050XD Corrosion of first degree of head, face, and neck, unspecified site, subsequent encounter +T2050XS Corrosion of first degree of head, face, and neck, unspecified site, sequela +T20511A Corrosion of first degree of right ear [any part, except ear drum], initial encounter +T20511D Corrosion of first degree of right ear [any part, except ear drum], subsequent encounter +T20511S Corrosion of first degree of right ear [any part, except ear drum], sequela +T20512A Corrosion of first degree of left ear [any part, except ear drum], initial encounter +T20512D Corrosion of first degree of left ear [any part, except ear drum], subsequent encounter +T20512S Corrosion of first degree of left ear [any part, except ear drum], sequela +T20519A Corrosion of first degree of unspecified ear [any part, except ear drum], initial encounter +T20519D Corrosion of first degree of unspecified ear [any part, except ear drum], subsequent encounter +T20519S Corrosion of first degree of unspecified ear [any part, except ear drum], sequela +T2052XA Corrosion of first degree of lip(s), initial encounter +T2052XD Corrosion of first degree of lip(s), subsequent encounter +T2052XS Corrosion of first degree of lip(s), sequela +T2053XA Corrosion of first degree of chin, initial encounter +T2053XD Corrosion of first degree of chin, subsequent encounter +T2053XS Corrosion of first degree of chin, sequela +T2054XA Corrosion of first degree of nose (septum), initial encounter +T2054XD Corrosion of first degree of nose (septum), subsequent encounter +T2054XS Corrosion of first degree of nose (septum), sequela +T2055XA Corrosion of first degree of scalp [any part], initial encounter +T2055XD Corrosion of first degree of scalp [any part], subsequent encounter +T2055XS Corrosion of first degree of scalp [any part], sequela +T2056XA Corrosion of first degree of forehead and cheek, initial encounter +T2056XD Corrosion of first degree of forehead and cheek, subsequent encounter +T2056XS Corrosion of first degree of forehead and cheek, sequela +T2057XA Corrosion of first degree of neck, initial encounter +T2057XD Corrosion of first degree of neck, subsequent encounter +T2057XS Corrosion of first degree of neck, sequela +T2059XA Corrosion of first degree of multiple sites of head, face, and neck, initial encounter +T2059XD Corrosion of first degree of multiple sites of head, face, and neck, subsequent encounter +T2059XS Corrosion of first degree of multiple sites of head, face, and neck, sequela +T2060XA Corrosion of second degree of head, face, and neck, unspecified site, initial encounter +T2060XD Corrosion of second degree of head, face, and neck, unspecified site, subsequent encounter +T2060XS Corrosion of second degree of head, face, and neck, unspecified site, sequela +T20611A Corrosion of second degree of right ear [any part, except ear drum], initial encounter +T20611D Corrosion of second degree of right ear [any part, except ear drum], subsequent encounter +T20611S Corrosion of second degree of right ear [any part, except ear drum], sequela +T20612A Corrosion of second degree of left ear [any part, except ear drum], initial encounter +T20612D Corrosion of second degree of left ear [any part, except ear drum], subsequent encounter +T20612S Corrosion of second degree of left ear [any part, except ear drum], sequela +T20619A Corrosion of second degree of unspecified ear [any part, except ear drum], initial encounter +T20619D Corrosion of second degree of unspecified ear [any part, except ear drum], subsequent encounter +T20619S Corrosion of second degree of unspecified ear [any part, except ear drum], sequela +T2062XA Corrosion of second degree of lip(s), initial encounter +T2062XD Corrosion of second degree of lip(s), subsequent encounter +T2062XS Corrosion of second degree of lip(s), sequela +T2063XA Corrosion of second degree of chin, initial encounter +T2063XD Corrosion of second degree of chin, subsequent encounter +T2063XS Corrosion of second degree of chin, sequela +T2064XA Corrosion of second degree of nose (septum), initial encounter +T2064XD Corrosion of second degree of nose (septum), subsequent encounter +T2064XS Corrosion of second degree of nose (septum), sequela +T2065XA Corrosion of second degree of scalp [any part], initial encounter +T2065XD Corrosion of second degree of scalp [any part], subsequent encounter +T2065XS Corrosion of second degree of scalp [any part], sequela +T2066XA Corrosion of second degree of forehead and cheek, initial encounter +T2066XD Corrosion of second degree of forehead and cheek, subsequent encounter +T2066XS Corrosion of second degree of forehead and cheek, sequela +T2067XA Corrosion of second degree of neck, initial encounter +T2067XD Corrosion of second degree of neck, subsequent encounter +T2067XS Corrosion of second degree of neck, sequela +T2069XA Corrosion of second degree of multiple sites of head, face, and neck, initial encounter +T2069XD Corrosion of second degree of multiple sites of head, face, and neck, subsequent encounter +T2069XS Corrosion of second degree of multiple sites of head, face, and neck, sequela +T2070XA Corrosion of third degree of head, face, and neck, unspecified site, initial encounter +T2070XD Corrosion of third degree of head, face, and neck, unspecified site, subsequent encounter +T2070XS Corrosion of third degree of head, face, and neck, unspecified site, sequela +T20711A Corrosion of third degree of right ear [any part, except ear drum], initial encounter +T20711D Corrosion of third degree of right ear [any part, except ear drum], subsequent encounter +T20711S Corrosion of third degree of right ear [any part, except ear drum], sequela +T20712A Corrosion of third degree of left ear [any part, except ear drum], initial encounter +T20712D Corrosion of third degree of left ear [any part, except ear drum], subsequent encounter +T20712S Corrosion of third degree of left ear [any part, except ear drum], sequela +T20719A Corrosion of third degree of unspecified ear [any part, except ear drum], initial encounter +T20719D Corrosion of third degree of unspecified ear [any part, except ear drum], subsequent encounter +T20719S Corrosion of third degree of unspecified ear [any part, except ear drum], sequela +T2072XA Corrosion of third degree of lip(s), initial encounter +T2072XD Corrosion of third degree of lip(s), subsequent encounter +T2072XS Corrosion of third degree of lip(s), sequela +T2073XA Corrosion of third degree of chin, initial encounter +T2073XD Corrosion of third degree of chin, subsequent encounter +T2073XS Corrosion of third degree of chin, sequela +T2074XA Corrosion of third degree of nose (septum), initial encounter +T2074XD Corrosion of third degree of nose (septum), subsequent encounter +T2074XS Corrosion of third degree of nose (septum), sequela +T2075XA Corrosion of third degree of scalp [any part], initial encounter +T2075XD Corrosion of third degree of scalp [any part], subsequent encounter +T2075XS Corrosion of third degree of scalp [any part], sequela +T2076XA Corrosion of third degree of forehead and cheek, initial encounter +T2076XD Corrosion of third degree of forehead and cheek, subsequent encounter +T2076XS Corrosion of third degree of forehead and cheek, sequela +T2077XA Corrosion of third degree of neck, initial encounter +T2077XD Corrosion of third degree of neck, subsequent encounter +T2077XS Corrosion of third degree of neck, sequela +T2079XA Corrosion of third degree of multiple sites of head, face, and neck, initial encounter +T2079XD Corrosion of third degree of multiple sites of head, face, and neck, subsequent encounter +T2079XS Corrosion of third degree of multiple sites of head, face, and neck, sequela +T2100XA Burn of unspecified degree of trunk, unspecified site, initial encounter +T2100XD Burn of unspecified degree of trunk, unspecified site, subsequent encounter +T2100XS Burn of unspecified degree of trunk, unspecified site, sequela +T2101XA Burn of unspecified degree of chest wall, initial encounter +T2101XD Burn of unspecified degree of chest wall, subsequent encounter +T2101XS Burn of unspecified degree of chest wall, sequela +T2102XA Burn of unspecified degree of abdominal wall, initial encounter +T2102XD Burn of unspecified degree of abdominal wall, subsequent encounter +T2102XS Burn of unspecified degree of abdominal wall, sequela +T2103XA Burn of unspecified degree of upper back, initial encounter +T2103XD Burn of unspecified degree of upper back, subsequent encounter +T2103XS Burn of unspecified degree of upper back, sequela +T2104XA Burn of unspecified degree of lower back, initial encounter +T2104XD Burn of unspecified degree of lower back, subsequent encounter +T2104XS Burn of unspecified degree of lower back, sequela +T2105XA Burn of unspecified degree of buttock, initial encounter +T2105XD Burn of unspecified degree of buttock, subsequent encounter +T2105XS Burn of unspecified degree of buttock, sequela +T2106XA Burn of unspecified degree of male genital region, initial encounter +T2106XD Burn of unspecified degree of male genital region, subsequent encounter +T2106XS Burn of unspecified degree of male genital region, sequela +T2107XA Burn of unspecified degree of female genital region, initial encounter +T2107XD Burn of unspecified degree of female genital region, subsequent encounter +T2107XS Burn of unspecified degree of female genital region, sequela +T2109XA Burn of unspecified degree of other site of trunk, initial encounter +T2109XD Burn of unspecified degree of other site of trunk, subsequent encounter +T2109XS Burn of unspecified degree of other site of trunk, sequela +T2110XA Burn of first degree of trunk, unspecified site, initial encounter +T2110XD Burn of first degree of trunk, unspecified site, subsequent encounter +T2110XS Burn of first degree of trunk, unspecified site, sequela +T2111XA Burn of first degree of chest wall, initial encounter +T2111XD Burn of first degree of chest wall, subsequent encounter +T2111XS Burn of first degree of chest wall, sequela +T2112XA Burn of first degree of abdominal wall, initial encounter +T2112XD Burn of first degree of abdominal wall, subsequent encounter +T2112XS Burn of first degree of abdominal wall, sequela +T2113XA Burn of first degree of upper back, initial encounter +T2113XD Burn of first degree of upper back, subsequent encounter +T2113XS Burn of first degree of upper back, sequela +T2114XA Burn of first degree of lower back, initial encounter +T2114XD Burn of first degree of lower back, subsequent encounter +T2114XS Burn of first degree of lower back, sequela +T2115XA Burn of first degree of buttock, initial encounter +T2115XD Burn of first degree of buttock, subsequent encounter +T2115XS Burn of first degree of buttock, sequela +T2116XA Burn of first degree of male genital region, initial encounter +T2116XD Burn of first degree of male genital region, subsequent encounter +T2116XS Burn of first degree of male genital region, sequela +T2117XA Burn of first degree of female genital region, initial encounter +T2117XD Burn of first degree of female genital region, subsequent encounter +T2117XS Burn of first degree of female genital region, sequela +T2119XA Burn of first degree of other site of trunk, initial encounter +T2119XD Burn of first degree of other site of trunk, subsequent encounter +T2119XS Burn of first degree of other site of trunk, sequela +T2120XA Burn of second degree of trunk, unspecified site, initial encounter +T2120XD Burn of second degree of trunk, unspecified site, subsequent encounter +T2120XS Burn of second degree of trunk, unspecified site, sequela +T2121XA Burn of second degree of chest wall, initial encounter +T2121XD Burn of second degree of chest wall, subsequent encounter +T2121XS Burn of second degree of chest wall, sequela +T2122XA Burn of second degree of abdominal wall, initial encounter +T2122XD Burn of second degree of abdominal wall, subsequent encounter +T2122XS Burn of second degree of abdominal wall, sequela +T2123XA Burn of second degree of upper back, initial encounter +T2123XD Burn of second degree of upper back, subsequent encounter +T2123XS Burn of second degree of upper back, sequela +T2124XA Burn of second degree of lower back, initial encounter +T2124XD Burn of second degree of lower back, subsequent encounter +T2124XS Burn of second degree of lower back, sequela +T2125XA Burn of second degree of buttock, initial encounter +T2125XD Burn of second degree of buttock, subsequent encounter +T2125XS Burn of second degree of buttock, sequela +T2126XA Burn of second degree of male genital region, initial encounter +T2126XD Burn of second degree of male genital region, subsequent encounter +T2126XS Burn of second degree of male genital region, sequela +T2127XA Burn of second degree of female genital region, initial encounter +T2127XD Burn of second degree of female genital region, subsequent encounter +T2127XS Burn of second degree of female genital region, sequela +T2129XA Burn of second degree of other site of trunk, initial encounter +T2129XD Burn of second degree of other site of trunk, subsequent encounter +T2129XS Burn of second degree of other site of trunk, sequela +T2130XA Burn of third degree of trunk, unspecified site, initial encounter +T2130XD Burn of third degree of trunk, unspecified site, subsequent encounter +T2130XS Burn of third degree of trunk, unspecified site, sequela +T2131XA Burn of third degree of chest wall, initial encounter +T2131XD Burn of third degree of chest wall, subsequent encounter +T2131XS Burn of third degree of chest wall, sequela +T2132XA Burn of third degree of abdominal wall, initial encounter +T2132XD Burn of third degree of abdominal wall, subsequent encounter +T2132XS Burn of third degree of abdominal wall, sequela +T2133XA Burn of third degree of upper back, initial encounter +T2133XD Burn of third degree of upper back, subsequent encounter +T2133XS Burn of third degree of upper back, sequela +T2134XA Burn of third degree of lower back, initial encounter +T2134XD Burn of third degree of lower back, subsequent encounter +T2134XS Burn of third degree of lower back, sequela +T2135XA Burn of third degree of buttock, initial encounter +T2135XD Burn of third degree of buttock, subsequent encounter +T2135XS Burn of third degree of buttock, sequela +T2136XA Burn of third degree of male genital region, initial encounter +T2136XD Burn of third degree of male genital region, subsequent encounter +T2136XS Burn of third degree of male genital region, sequela +T2137XA Burn of third degree of female genital region, initial encounter +T2137XD Burn of third degree of female genital region, subsequent encounter +T2137XS Burn of third degree of female genital region, sequela +T2139XA Burn of third degree of other site of trunk, initial encounter +T2139XD Burn of third degree of other site of trunk, subsequent encounter +T2139XS Burn of third degree of other site of trunk, sequela +T2140XA Corrosion of unspecified degree of trunk, unspecified site, initial encounter +T2140XD Corrosion of unspecified degree of trunk, unspecified site, subsequent encounter +T2140XS Corrosion of unspecified degree of trunk, unspecified site, sequela +T2141XA Corrosion of unspecified degree of chest wall, initial encounter +T2141XD Corrosion of unspecified degree of chest wall, subsequent encounter +T2141XS Corrosion of unspecified degree of chest wall, sequela +T2142XA Corrosion of unspecified degree of abdominal wall, initial encounter +T2142XD Corrosion of unspecified degree of abdominal wall, subsequent encounter +T2142XS Corrosion of unspecified degree of abdominal wall, sequela +T2143XA Corrosion of unspecified degree of upper back, initial encounter +T2143XD Corrosion of unspecified degree of upper back, subsequent encounter +T2143XS Corrosion of unspecified degree of upper back, sequela +T2144XA Corrosion of unspecified degree of lower back, initial encounter +T2144XD Corrosion of unspecified degree of lower back, subsequent encounter +T2144XS Corrosion of unspecified degree of lower back, sequela +T2145XA Corrosion of unspecified degree of buttock, initial encounter +T2145XD Corrosion of unspecified degree of buttock, subsequent encounter +T2145XS Corrosion of unspecified degree of buttock, sequela +T2146XA Corrosion of unspecified degree of male genital region, initial encounter +T2146XD Corrosion of unspecified degree of male genital region, subsequent encounter +T2146XS Corrosion of unspecified degree of male genital region, sequela +T2147XA Corrosion of unspecified degree of female genital region, initial encounter +T2147XD Corrosion of unspecified degree of female genital region, subsequent encounter +T2147XS Corrosion of unspecified degree of female genital region, sequela +T2149XA Corrosion of unspecified degree of other site of trunk, initial encounter +T2149XD Corrosion of unspecified degree of other site of trunk, subsequent encounter +T2149XS Corrosion of unspecified degree of other site of trunk, sequela +T2150XA Corrosion of first degree of trunk, unspecified site, initial encounter +T2150XD Corrosion of first degree of trunk, unspecified site, subsequent encounter +T2150XS Corrosion of first degree of trunk, unspecified site, sequela +T2151XA Corrosion of first degree of chest wall, initial encounter +T2151XD Corrosion of first degree of chest wall, subsequent encounter +T2151XS Corrosion of first degree of chest wall, sequela +T2152XA Corrosion of first degree of abdominal wall, initial encounter +T2152XD Corrosion of first degree of abdominal wall, subsequent encounter +T2152XS Corrosion of first degree of abdominal wall, sequela +T2153XA Corrosion of first degree of upper back, initial encounter +T2153XD Corrosion of first degree of upper back, subsequent encounter +T2153XS Corrosion of first degree of upper back, sequela +T2154XA Corrosion of first degree of lower back, initial encounter +T2154XD Corrosion of first degree of lower back, subsequent encounter +T2154XS Corrosion of first degree of lower back, sequela +T2155XA Corrosion of first degree of buttock, initial encounter +T2155XD Corrosion of first degree of buttock, subsequent encounter +T2155XS Corrosion of first degree of buttock, sequela +T2156XA Corrosion of first degree of male genital region, initial encounter +T2156XD Corrosion of first degree of male genital region, subsequent encounter +T2156XS Corrosion of first degree of male genital region, sequela +T2157XA Corrosion of first degree of female genital region, initial encounter +T2157XD Corrosion of first degree of female genital region, subsequent encounter +T2157XS Corrosion of first degree of female genital region, sequela +T2159XA Corrosion of first degree of other site of trunk, initial encounter +T2159XD Corrosion of first degree of other site of trunk, subsequent encounter +T2159XS Corrosion of first degree of other site of trunk, sequela +T2160XA Corrosion of second degree of trunk, unspecified site, initial encounter +T2160XD Corrosion of second degree of trunk, unspecified site, subsequent encounter +T2160XS Corrosion of second degree of trunk, unspecified site, sequela +T2161XA Corrosion of second degree of chest wall, initial encounter +T2161XD Corrosion of second degree of chest wall, subsequent encounter +T2161XS Corrosion of second degree of chest wall, sequela +T2162XA Corrosion of second degree of abdominal wall, initial encounter +T2162XD Corrosion of second degree of abdominal wall, subsequent encounter +T2162XS Corrosion of second degree of abdominal wall, sequela +T2163XA Corrosion of second degree of upper back, initial encounter +T2163XD Corrosion of second degree of upper back, subsequent encounter +T2163XS Corrosion of second degree of upper back, sequela +T2164XA Corrosion of second degree of lower back, initial encounter +T2164XD Corrosion of second degree of lower back, subsequent encounter +T2164XS Corrosion of second degree of lower back, sequela +T2165XA Corrosion of second degree of buttock, initial encounter +T2165XD Corrosion of second degree of buttock, subsequent encounter +T2165XS Corrosion of second degree of buttock, sequela +T2166XA Corrosion of second degree of male genital region, initial encounter +T2166XD Corrosion of second degree of male genital region, subsequent encounter +T2166XS Corrosion of second degree of male genital region, sequela +T2167XA Corrosion of second degree of female genital region, initial encounter +T2167XD Corrosion of second degree of female genital region, subsequent encounter +T2167XS Corrosion of second degree of female genital region, sequela +T2169XA Corrosion of second degree of other site of trunk, initial encounter +T2169XD Corrosion of second degree of other site of trunk, subsequent encounter +T2169XS Corrosion of second degree of other site of trunk, sequela +T2170XA Corrosion of third degree of trunk, unspecified site, initial encounter +T2170XD Corrosion of third degree of trunk, unspecified site, subsequent encounter +T2170XS Corrosion of third degree of trunk, unspecified site, sequela +T2171XA Corrosion of third degree of chest wall, initial encounter +T2171XD Corrosion of third degree of chest wall, subsequent encounter +T2171XS Corrosion of third degree of chest wall, sequela +T2172XA Corrosion of third degree of abdominal wall, initial encounter +T2172XD Corrosion of third degree of abdominal wall, subsequent encounter +T2172XS Corrosion of third degree of abdominal wall, sequela +T2173XA Corrosion of third degree of upper back, initial encounter +T2173XD Corrosion of third degree of upper back, subsequent encounter +T2173XS Corrosion of third degree of upper back, sequela +T2174XA Corrosion of third degree of lower back, initial encounter +T2174XD Corrosion of third degree of lower back, subsequent encounter +T2174XS Corrosion of third degree of lower back, sequela +T2175XA Corrosion of third degree of buttock, initial encounter +T2175XD Corrosion of third degree of buttock, subsequent encounter +T2175XS Corrosion of third degree of buttock, sequela +T2176XA Corrosion of third degree of male genital region, initial encounter +T2176XD Corrosion of third degree of male genital region, subsequent encounter +T2176XS Corrosion of third degree of male genital region, sequela +T2177XA Corrosion of third degree of female genital region, initial encounter +T2177XD Corrosion of third degree of female genital region, subsequent encounter +T2177XS Corrosion of third degree of female genital region, sequela +T2179XA Corrosion of third degree of other site of trunk, initial encounter +T2179XD Corrosion of third degree of other site of trunk, subsequent encounter +T2179XS Corrosion of third degree of other site of trunk, sequela +T2200XA Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter +T2200XD Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter +T2200XS Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela +T22011A Burn of unspecified degree of right forearm, initial encounter +T22011D Burn of unspecified degree of right forearm, subsequent encounter +T22011S Burn of unspecified degree of right forearm, sequela +T22012A Burn of unspecified degree of left forearm, initial encounter +T22012D Burn of unspecified degree of left forearm, subsequent encounter +T22012S Burn of unspecified degree of left forearm, sequela +T22019A Burn of unspecified degree of unspecified forearm, initial encounter +T22019D Burn of unspecified degree of unspecified forearm, subsequent encounter +T22019S Burn of unspecified degree of unspecified forearm, sequela +T22021A Burn of unspecified degree of right elbow, initial encounter +T22021D Burn of unspecified degree of right elbow, subsequent encounter +T22021S Burn of unspecified degree of right elbow, sequela +T22022A Burn of unspecified degree of left elbow, initial encounter +T22022D Burn of unspecified degree of left elbow, subsequent encounter +T22022S Burn of unspecified degree of left elbow, sequela +T22029A Burn of unspecified degree of unspecified elbow, initial encounter +T22029D Burn of unspecified degree of unspecified elbow, subsequent encounter +T22029S Burn of unspecified degree of unspecified elbow, sequela +T22031A Burn of unspecified degree of right upper arm, initial encounter +T22031D Burn of unspecified degree of right upper arm, subsequent encounter +T22031S Burn of unspecified degree of right upper arm, sequela +T22032A Burn of unspecified degree of left upper arm, initial encounter +T22032D Burn of unspecified degree of left upper arm, subsequent encounter +T22032S Burn of unspecified degree of left upper arm, sequela +T22039A Burn of unspecified degree of unspecified upper arm, initial encounter +T22039D Burn of unspecified degree of unspecified upper arm, subsequent encounter +T22039S Burn of unspecified degree of unspecified upper arm, sequela +T22041A Burn of unspecified degree of right axilla, initial encounter +T22041D Burn of unspecified degree of right axilla, subsequent encounter +T22041S Burn of unspecified degree of right axilla, sequela +T22042A Burn of unspecified degree of left axilla, initial encounter +T22042D Burn of unspecified degree of left axilla, subsequent encounter +T22042S Burn of unspecified degree of left axilla, sequela +T22049A Burn of unspecified degree of unspecified axilla, initial encounter +T22049D Burn of unspecified degree of unspecified axilla, subsequent encounter +T22049S Burn of unspecified degree of unspecified axilla, sequela +T22051A Burn of unspecified degree of right shoulder, initial encounter +T22051D Burn of unspecified degree of right shoulder, subsequent encounter +T22051S Burn of unspecified degree of right shoulder, sequela +T22052A Burn of unspecified degree of left shoulder, initial encounter +T22052D Burn of unspecified degree of left shoulder, subsequent encounter +T22052S Burn of unspecified degree of left shoulder, sequela +T22059A Burn of unspecified degree of unspecified shoulder, initial encounter +T22059D Burn of unspecified degree of unspecified shoulder, subsequent encounter +T22059S Burn of unspecified degree of unspecified shoulder, sequela +T22061A Burn of unspecified degree of right scapular region, initial encounter +T22061D Burn of unspecified degree of right scapular region, subsequent encounter +T22061S Burn of unspecified degree of right scapular region, sequela +T22062A Burn of unspecified degree of left scapular region, initial encounter +T22062D Burn of unspecified degree of left scapular region, subsequent encounter +T22062S Burn of unspecified degree of left scapular region, sequela +T22069A Burn of unspecified degree of unspecified scapular region, initial encounter +T22069D Burn of unspecified degree of unspecified scapular region, subsequent encounter +T22069S Burn of unspecified degree of unspecified scapular region, sequela +T22091A Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter +T22091D Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter +T22091S Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela +T22092A Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter +T22092D Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter +T22092S Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela +T22099A Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter +T22099D Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter +T22099S Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela +T2210XA Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter +T2210XD Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter +T2210XS Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela +T22111A Burn of first degree of right forearm, initial encounter +T22111D Burn of first degree of right forearm, subsequent encounter +T22111S Burn of first degree of right forearm, sequela +T22112A Burn of first degree of left forearm, initial encounter +T22112D Burn of first degree of left forearm, subsequent encounter +T22112S Burn of first degree of left forearm, sequela +T22119A Burn of first degree of unspecified forearm, initial encounter +T22119D Burn of first degree of unspecified forearm, subsequent encounter +T22119S Burn of first degree of unspecified forearm, sequela +T22121A Burn of first degree of right elbow, initial encounter +T22121D Burn of first degree of right elbow, subsequent encounter +T22121S Burn of first degree of right elbow, sequela +T22122A Burn of first degree of left elbow, initial encounter +T22122D Burn of first degree of left elbow, subsequent encounter +T22122S Burn of first degree of left elbow, sequela +T22129A Burn of first degree of unspecified elbow, initial encounter +T22129D Burn of first degree of unspecified elbow, subsequent encounter +T22129S Burn of first degree of unspecified elbow, sequela +T22131A Burn of first degree of right upper arm, initial encounter +T22131D Burn of first degree of right upper arm, subsequent encounter +T22131S Burn of first degree of right upper arm, sequela +T22132A Burn of first degree of left upper arm, initial encounter +T22132D Burn of first degree of left upper arm, subsequent encounter +T22132S Burn of first degree of left upper arm, sequela +T22139A Burn of first degree of unspecified upper arm, initial encounter +T22139D Burn of first degree of unspecified upper arm, subsequent encounter +T22139S Burn of first degree of unspecified upper arm, sequela +T22141A Burn of first degree of right axilla, initial encounter +T22141D Burn of first degree of right axilla, subsequent encounter +T22141S Burn of first degree of right axilla, sequela +T22142A Burn of first degree of left axilla, initial encounter +T22142D Burn of first degree of left axilla, subsequent encounter +T22142S Burn of first degree of left axilla, sequela +T22149A Burn of first degree of unspecified axilla, initial encounter +T22149D Burn of first degree of unspecified axilla, subsequent encounter +T22149S Burn of first degree of unspecified axilla, sequela +T22151A Burn of first degree of right shoulder, initial encounter +T22151D Burn of first degree of right shoulder, subsequent encounter +T22151S Burn of first degree of right shoulder, sequela +T22152A Burn of first degree of left shoulder, initial encounter +T22152D Burn of first degree of left shoulder, subsequent encounter +T22152S Burn of first degree of left shoulder, sequela +T22159A Burn of first degree of unspecified shoulder, initial encounter +T22159D Burn of first degree of unspecified shoulder, subsequent encounter +T22159S Burn of first degree of unspecified shoulder, sequela +T22161A Burn of first degree of right scapular region, initial encounter +T22161D Burn of first degree of right scapular region, subsequent encounter +T22161S Burn of first degree of right scapular region, sequela +T22162A Burn of first degree of left scapular region, initial encounter +T22162D Burn of first degree of left scapular region, subsequent encounter +T22162S Burn of first degree of left scapular region, sequela +T22169A Burn of first degree of unspecified scapular region, initial encounter +T22169D Burn of first degree of unspecified scapular region, subsequent encounter +T22169S Burn of first degree of unspecified scapular region, sequela +T22191A Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter +T22191D Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter +T22191S Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela +T22192A Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter +T22192D Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter +T22192S Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela +T22199A Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter +T22199D Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter +T22199S Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela +T2220XA Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter +T2220XD Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter +T2220XS Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela +T22211A Burn of second degree of right forearm, initial encounter +T22211D Burn of second degree of right forearm, subsequent encounter +T22211S Burn of second degree of right forearm, sequela +T22212A Burn of second degree of left forearm, initial encounter +T22212D Burn of second degree of left forearm, subsequent encounter +T22212S Burn of second degree of left forearm, sequela +T22219A Burn of second degree of unspecified forearm, initial encounter +T22219D Burn of second degree of unspecified forearm, subsequent encounter +T22219S Burn of second degree of unspecified forearm, sequela +T22221A Burn of second degree of right elbow, initial encounter +T22221D Burn of second degree of right elbow, subsequent encounter +T22221S Burn of second degree of right elbow, sequela +T22222A Burn of second degree of left elbow, initial encounter +T22222D Burn of second degree of left elbow, subsequent encounter +T22222S Burn of second degree of left elbow, sequela +T22229A Burn of second degree of unspecified elbow, initial encounter +T22229D Burn of second degree of unspecified elbow, subsequent encounter +T22229S Burn of second degree of unspecified elbow, sequela +T22231A Burn of second degree of right upper arm, initial encounter +T22231D Burn of second degree of right upper arm, subsequent encounter +T22231S Burn of second degree of right upper arm, sequela +T22232A Burn of second degree of left upper arm, initial encounter +T22232D Burn of second degree of left upper arm, subsequent encounter +T22232S Burn of second degree of left upper arm, sequela +T22239A Burn of second degree of unspecified upper arm, initial encounter +T22239D Burn of second degree of unspecified upper arm, subsequent encounter +T22239S Burn of second degree of unspecified upper arm, sequela +T22241A Burn of second degree of right axilla, initial encounter +T22241D Burn of second degree of right axilla, subsequent encounter +T22241S Burn of second degree of right axilla, sequela +T22242A Burn of second degree of left axilla, initial encounter +T22242D Burn of second degree of left axilla, subsequent encounter +T22242S Burn of second degree of left axilla, sequela +T22249A Burn of second degree of unspecified axilla, initial encounter +T22249D Burn of second degree of unspecified axilla, subsequent encounter +T22249S Burn of second degree of unspecified axilla, sequela +T22251A Burn of second degree of right shoulder, initial encounter +T22251D Burn of second degree of right shoulder, subsequent encounter +T22251S Burn of second degree of right shoulder, sequela +T22252A Burn of second degree of left shoulder, initial encounter +T22252D Burn of second degree of left shoulder, subsequent encounter +T22252S Burn of second degree of left shoulder, sequela +T22259A Burn of second degree of unspecified shoulder, initial encounter +T22259D Burn of second degree of unspecified shoulder, subsequent encounter +T22259S Burn of second degree of unspecified shoulder, sequela +T22261A Burn of second degree of right scapular region, initial encounter +T22261D Burn of second degree of right scapular region, subsequent encounter +T22261S Burn of second degree of right scapular region, sequela +T22262A Burn of second degree of left scapular region, initial encounter +T22262D Burn of second degree of left scapular region, subsequent encounter +T22262S Burn of second degree of left scapular region, sequela +T22269A Burn of second degree of unspecified scapular region, initial encounter +T22269D Burn of second degree of unspecified scapular region, subsequent encounter +T22269S Burn of second degree of unspecified scapular region, sequela +T22291A Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter +T22291D Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter +T22291S Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela +T22292A Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter +T22292D Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter +T22292S Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela +T22299A Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter +T22299D Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter +T22299S Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela +T2230XA Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter +T2230XD Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter +T2230XS Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela +T22311A Burn of third degree of right forearm, initial encounter +T22311D Burn of third degree of right forearm, subsequent encounter +T22311S Burn of third degree of right forearm, sequela +T22312A Burn of third degree of left forearm, initial encounter +T22312D Burn of third degree of left forearm, subsequent encounter +T22312S Burn of third degree of left forearm, sequela +T22319A Burn of third degree of unspecified forearm, initial encounter +T22319D Burn of third degree of unspecified forearm, subsequent encounter +T22319S Burn of third degree of unspecified forearm, sequela +T22321A Burn of third degree of right elbow, initial encounter +T22321D Burn of third degree of right elbow, subsequent encounter +T22321S Burn of third degree of right elbow, sequela +T22322A Burn of third degree of left elbow, initial encounter +T22322D Burn of third degree of left elbow, subsequent encounter +T22322S Burn of third degree of left elbow, sequela +T22329A Burn of third degree of unspecified elbow, initial encounter +T22329D Burn of third degree of unspecified elbow, subsequent encounter +T22329S Burn of third degree of unspecified elbow, sequela +T22331A Burn of third degree of right upper arm, initial encounter +T22331D Burn of third degree of right upper arm, subsequent encounter +T22331S Burn of third degree of right upper arm, sequela +T22332A Burn of third degree of left upper arm, initial encounter +T22332D Burn of third degree of left upper arm, subsequent encounter +T22332S Burn of third degree of left upper arm, sequela +T22339A Burn of third degree of unspecified upper arm, initial encounter +T22339D Burn of third degree of unspecified upper arm, subsequent encounter +T22339S Burn of third degree of unspecified upper arm, sequela +T22341A Burn of third degree of right axilla, initial encounter +T22341D Burn of third degree of right axilla, subsequent encounter +T22341S Burn of third degree of right axilla, sequela +T22342A Burn of third degree of left axilla, initial encounter +T22342D Burn of third degree of left axilla, subsequent encounter +T22342S Burn of third degree of left axilla, sequela +T22349A Burn of third degree of unspecified axilla, initial encounter +T22349D Burn of third degree of unspecified axilla, subsequent encounter +T22349S Burn of third degree of unspecified axilla, sequela +T22351A Burn of third degree of right shoulder, initial encounter +T22351D Burn of third degree of right shoulder, subsequent encounter +T22351S Burn of third degree of right shoulder, sequela +T22352A Burn of third degree of left shoulder, initial encounter +T22352D Burn of third degree of left shoulder, subsequent encounter +T22352S Burn of third degree of left shoulder, sequela +T22359A Burn of third degree of unspecified shoulder, initial encounter +T22359D Burn of third degree of unspecified shoulder, subsequent encounter +T22359S Burn of third degree of unspecified shoulder, sequela +T22361A Burn of third degree of right scapular region, initial encounter +T22361D Burn of third degree of right scapular region, subsequent encounter +T22361S Burn of third degree of right scapular region, sequela +T22362A Burn of third degree of left scapular region, initial encounter +T22362D Burn of third degree of left scapular region, subsequent encounter +T22362S Burn of third degree of left scapular region, sequela +T22369A Burn of third degree of unspecified scapular region, initial encounter +T22369D Burn of third degree of unspecified scapular region, subsequent encounter +T22369S Burn of third degree of unspecified scapular region, sequela +T22391A Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter +T22391D Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter +T22391S Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela +T22392A Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter +T22392D Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter +T22392S Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela +T22399A Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter +T22399D Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter +T22399S Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela +T2240XA Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter +T2240XD Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter +T2240XS Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela +T22411A Corrosion of unspecified degree of right forearm, initial encounter +T22411D Corrosion of unspecified degree of right forearm, subsequent encounter +T22411S Corrosion of unspecified degree of right forearm, sequela +T22412A Corrosion of unspecified degree of left forearm, initial encounter +T22412D Corrosion of unspecified degree of left forearm, subsequent encounter +T22412S Corrosion of unspecified degree of left forearm, sequela +T22419A Corrosion of unspecified degree of unspecified forearm, initial encounter +T22419D Corrosion of unspecified degree of unspecified forearm, subsequent encounter +T22419S Corrosion of unspecified degree of unspecified forearm, sequela +T22421A Corrosion of unspecified degree of right elbow, initial encounter +T22421D Corrosion of unspecified degree of right elbow, subsequent encounter +T22421S Corrosion of unspecified degree of right elbow, sequela +T22422A Corrosion of unspecified degree of left elbow, initial encounter +T22422D Corrosion of unspecified degree of left elbow, subsequent encounter +T22422S Corrosion of unspecified degree of left elbow, sequela +T22429A Corrosion of unspecified degree of unspecified elbow, initial encounter +T22429D Corrosion of unspecified degree of unspecified elbow, subsequent encounter +T22429S Corrosion of unspecified degree of unspecified elbow, sequela +T22431A Corrosion of unspecified degree of right upper arm, initial encounter +T22431D Corrosion of unspecified degree of right upper arm, subsequent encounter +T22431S Corrosion of unspecified degree of right upper arm, sequela +T22432A Corrosion of unspecified degree of left upper arm, initial encounter +T22432D Corrosion of unspecified degree of left upper arm, subsequent encounter +T22432S Corrosion of unspecified degree of left upper arm, sequela +T22439A Corrosion of unspecified degree of unspecified upper arm, initial encounter +T22439D Corrosion of unspecified degree of unspecified upper arm, subsequent encounter +T22439S Corrosion of unspecified degree of unspecified upper arm, sequela +T22441A Corrosion of unspecified degree of right axilla, initial encounter +T22441D Corrosion of unspecified degree of right axilla, subsequent encounter +T22441S Corrosion of unspecified degree of right axilla, sequela +T22442A Corrosion of unspecified degree of left axilla, initial encounter +T22442D Corrosion of unspecified degree of left axilla, subsequent encounter +T22442S Corrosion of unspecified degree of left axilla, sequela +T22449A Corrosion of unspecified degree of unspecified axilla, initial encounter +T22449D Corrosion of unspecified degree of unspecified axilla, subsequent encounter +T22449S Corrosion of unspecified degree of unspecified axilla, sequela +T22451A Corrosion of unspecified degree of right shoulder, initial encounter +T22451D Corrosion of unspecified degree of right shoulder, subsequent encounter +T22451S Corrosion of unspecified degree of right shoulder, sequela +T22452A Corrosion of unspecified degree of left shoulder, initial encounter +T22452D Corrosion of unspecified degree of left shoulder, subsequent encounter +T22452S Corrosion of unspecified degree of left shoulder, sequela +T22459A Corrosion of unspecified degree of unspecified shoulder, initial encounter +T22459D Corrosion of unspecified degree of unspecified shoulder, subsequent encounter +T22459S Corrosion of unspecified degree of unspecified shoulder, sequela +T22461A Corrosion of unspecified degree of right scapular region, initial encounter +T22461D Corrosion of unspecified degree of right scapular region, subsequent encounter +T22461S Corrosion of unspecified degree of right scapular region, sequela +T22462A Corrosion of unspecified degree of left scapular region, initial encounter +T22462D Corrosion of unspecified degree of left scapular region, subsequent encounter +T22462S Corrosion of unspecified degree of left scapular region, sequela +T22469A Corrosion of unspecified degree of unspecified scapular region, initial encounter +T22469D Corrosion of unspecified degree of unspecified scapular region, subsequent encounter +T22469S Corrosion of unspecified degree of unspecified scapular region, sequela +T22491A Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter +T22491D Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter +T22491S Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela +T22492A Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter +T22492D Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter +T22492S Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela +T22499A Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter +T22499D Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter +T22499S Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela +T2250XA Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site, initial encounter +T2250XD Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site, subsequent encounter +T2250XS Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site, sequela +T22511A Corrosion of first degree of right forearm, initial encounter +T22511D Corrosion of first degree of right forearm, subsequent encounter +T22511S Corrosion of first degree of right forearm, sequela +T22512A Corrosion of first degree of left forearm, initial encounter +T22512D Corrosion of first degree of left forearm, subsequent encounter +T22512S Corrosion of first degree of left forearm, sequela +T22519A Corrosion of first degree of unspecified forearm, initial encounter +T22519D Corrosion of first degree of unspecified forearm, subsequent encounter +T22519S Corrosion of first degree of unspecified forearm, sequela +T22521A Corrosion of first degree of right elbow, initial encounter +T22521D Corrosion of first degree of right elbow, subsequent encounter +T22521S Corrosion of first degree of right elbow, sequela +T22522A Corrosion of first degree of left elbow, initial encounter +T22522D Corrosion of first degree of left elbow, subsequent encounter +T22522S Corrosion of first degree of left elbow, sequela +T22529A Corrosion of first degree of unspecified elbow, initial encounter +T22529D Corrosion of first degree of unspecified elbow, subsequent encounter +T22529S Corrosion of first degree of unspecified elbow, sequela +T22531A Corrosion of first degree of right upper arm, initial encounter +T22531D Corrosion of first degree of right upper arm, subsequent encounter +T22531S Corrosion of first degree of right upper arm, sequela +T22532A Corrosion of first degree of left upper arm, initial encounter +T22532D Corrosion of first degree of left upper arm, subsequent encounter +T22532S Corrosion of first degree of left upper arm, sequela +T22539A Corrosion of first degree of unspecified upper arm, initial encounter +T22539D Corrosion of first degree of unspecified upper arm, subsequent encounter +T22539S Corrosion of first degree of unspecified upper arm, sequela +T22541A Corrosion of first degree of right axilla, initial encounter +T22541D Corrosion of first degree of right axilla, subsequent encounter +T22541S Corrosion of first degree of right axilla, sequela +T22542A Corrosion of first degree of left axilla, initial encounter +T22542D Corrosion of first degree of left axilla, subsequent encounter +T22542S Corrosion of first degree of left axilla, sequela +T22549A Corrosion of first degree of unspecified axilla, initial encounter +T22549D Corrosion of first degree of unspecified axilla, subsequent encounter +T22549S Corrosion of first degree of unspecified axilla, sequela +T22551A Corrosion of first degree of right shoulder, initial encounter +T22551D Corrosion of first degree of right shoulder, subsequent encounter +T22551S Corrosion of first degree of right shoulder, sequela +T22552A Corrosion of first degree of left shoulder, initial encounter +T22552D Corrosion of first degree of left shoulder, subsequent encounter +T22552S Corrosion of first degree of left shoulder, sequela +T22559A Corrosion of first degree of unspecified shoulder, initial encounter +T22559D Corrosion of first degree of unspecified shoulder, subsequent encounter +T22559S Corrosion of first degree of unspecified shoulder, sequela +T22561A Corrosion of first degree of right scapular region, initial encounter +T22561D Corrosion of first degree of right scapular region, subsequent encounter +T22561S Corrosion of first degree of right scapular region, sequela +T22562A Corrosion of first degree of left scapular region, initial encounter +T22562D Corrosion of first degree of left scapular region, subsequent encounter +T22562S Corrosion of first degree of left scapular region, sequela +T22569A Corrosion of first degree of unspecified scapular region, initial encounter +T22569D Corrosion of first degree of unspecified scapular region, subsequent encounter +T22569S Corrosion of first degree of unspecified scapular region, sequela +T22591A Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter +T22591D Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter +T22591S Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela +T22592A Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter +T22592D Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter +T22592S Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela +T22599A Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter +T22599D Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter +T22599S Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela +T2260XA Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter +T2260XD Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter +T2260XS Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela +T22611A Corrosion of second degree of right forearm, initial encounter +T22611D Corrosion of second degree of right forearm, subsequent encounter +T22611S Corrosion of second degree of right forearm, sequela +T22612A Corrosion of second degree of left forearm, initial encounter +T22612D Corrosion of second degree of left forearm, subsequent encounter +T22612S Corrosion of second degree of left forearm, sequela +T22619A Corrosion of second degree of unspecified forearm, initial encounter +T22619D Corrosion of second degree of unspecified forearm, subsequent encounter +T22619S Corrosion of second degree of unspecified forearm, sequela +T22621A Corrosion of second degree of right elbow, initial encounter +T22621D Corrosion of second degree of right elbow, subsequent encounter +T22621S Corrosion of second degree of right elbow, sequela +T22622A Corrosion of second degree of left elbow, initial encounter +T22622D Corrosion of second degree of left elbow, subsequent encounter +T22622S Corrosion of second degree of left elbow, sequela +T22629A Corrosion of second degree of unspecified elbow, initial encounter +T22629D Corrosion of second degree of unspecified elbow, subsequent encounter +T22629S Corrosion of second degree of unspecified elbow, sequela +T22631A Corrosion of second degree of right upper arm, initial encounter +T22631D Corrosion of second degree of right upper arm, subsequent encounter +T22631S Corrosion of second degree of right upper arm, sequela +T22632A Corrosion of second degree of left upper arm, initial encounter +T22632D Corrosion of second degree of left upper arm, subsequent encounter +T22632S Corrosion of second degree of left upper arm, sequela +T22639A Corrosion of second degree of unspecified upper arm, initial encounter +T22639D Corrosion of second degree of unspecified upper arm, subsequent encounter +T22639S Corrosion of second degree of unspecified upper arm, sequela +T22641A Corrosion of second degree of right axilla, initial encounter +T22641D Corrosion of second degree of right axilla, subsequent encounter +T22641S Corrosion of second degree of right axilla, sequela +T22642A Corrosion of second degree of left axilla, initial encounter +T22642D Corrosion of second degree of left axilla, subsequent encounter +T22642S Corrosion of second degree of left axilla, sequela +T22649A Corrosion of second degree of unspecified axilla, initial encounter +T22649D Corrosion of second degree of unspecified axilla, subsequent encounter +T22649S Corrosion of second degree of unspecified axilla, sequela +T22651A Corrosion of second degree of right shoulder, initial encounter +T22651D Corrosion of second degree of right shoulder, subsequent encounter +T22651S Corrosion of second degree of right shoulder, sequela +T22652A Corrosion of second degree of left shoulder, initial encounter +T22652D Corrosion of second degree of left shoulder, subsequent encounter +T22652S Corrosion of second degree of left shoulder, sequela +T22659A Corrosion of second degree of unspecified shoulder, initial encounter +T22659D Corrosion of second degree of unspecified shoulder, subsequent encounter +T22659S Corrosion of second degree of unspecified shoulder, sequela +T22661A Corrosion of second degree of right scapular region, initial encounter +T22661D Corrosion of second degree of right scapular region, subsequent encounter +T22661S Corrosion of second degree of right scapular region, sequela +T22662A Corrosion of second degree of left scapular region, initial encounter +T22662D Corrosion of second degree of left scapular region, subsequent encounter +T22662S Corrosion of second degree of left scapular region, sequela +T22669A Corrosion of second degree of unspecified scapular region, initial encounter +T22669D Corrosion of second degree of unspecified scapular region, subsequent encounter +T22669S Corrosion of second degree of unspecified scapular region, sequela +T22691A Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter +T22691D Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter +T22691S Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela +T22692A Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter +T22692D Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter +T22692S Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela +T22699A Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter +T22699D Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter +T22699S Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela +T2270XA Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter +T2270XD Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter +T2270XS Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela +T22711A Corrosion of third degree of right forearm, initial encounter +T22711D Corrosion of third degree of right forearm, subsequent encounter +T22711S Corrosion of third degree of right forearm, sequela +T22712A Corrosion of third degree of left forearm, initial encounter +T22712D Corrosion of third degree of left forearm, subsequent encounter +T22712S Corrosion of third degree of left forearm, sequela +T22719A Corrosion of third degree of unspecified forearm, initial encounter +T22719D Corrosion of third degree of unspecified forearm, subsequent encounter +T22719S Corrosion of third degree of unspecified forearm, sequela +T22721A Corrosion of third degree of right elbow, initial encounter +T22721D Corrosion of third degree of right elbow, subsequent encounter +T22721S Corrosion of third degree of right elbow, sequela +T22722A Corrosion of third degree of left elbow, initial encounter +T22722D Corrosion of third degree of left elbow, subsequent encounter +T22722S Corrosion of third degree of left elbow, sequela +T22729A Corrosion of third degree of unspecified elbow, initial encounter +T22729D Corrosion of third degree of unspecified elbow, subsequent encounter +T22729S Corrosion of third degree of unspecified elbow, sequela +T22731A Corrosion of third degree of right upper arm, initial encounter +T22731D Corrosion of third degree of right upper arm, subsequent encounter +T22731S Corrosion of third degree of right upper arm, sequela +T22732A Corrosion of third degree of left upper arm, initial encounter +T22732D Corrosion of third degree of left upper arm, subsequent encounter +T22732S Corrosion of third degree of left upper arm, sequela +T22739A Corrosion of third degree of unspecified upper arm, initial encounter +T22739D Corrosion of third degree of unspecified upper arm, subsequent encounter +T22739S Corrosion of third degree of unspecified upper arm, sequela +T22741A Corrosion of third degree of right axilla, initial encounter +T22741D Corrosion of third degree of right axilla, subsequent encounter +T22741S Corrosion of third degree of right axilla, sequela +T22742A Corrosion of third degree of left axilla, initial encounter +T22742D Corrosion of third degree of left axilla, subsequent encounter +T22742S Corrosion of third degree of left axilla, sequela +T22749A Corrosion of third degree of unspecified axilla, initial encounter +T22749D Corrosion of third degree of unspecified axilla, subsequent encounter +T22749S Corrosion of third degree of unspecified axilla, sequela +T22751A Corrosion of third degree of right shoulder, initial encounter +T22751D Corrosion of third degree of right shoulder, subsequent encounter +T22751S Corrosion of third degree of right shoulder, sequela +T22752A Corrosion of third degree of left shoulder, initial encounter +T22752D Corrosion of third degree of left shoulder, subsequent encounter +T22752S Corrosion of third degree of left shoulder, sequela +T22759A Corrosion of third degree of unspecified shoulder, initial encounter +T22759D Corrosion of third degree of unspecified shoulder, subsequent encounter +T22759S Corrosion of third degree of unspecified shoulder, sequela +T22761A Corrosion of third degree of right scapular region, initial encounter +T22761D Corrosion of third degree of right scapular region, subsequent encounter +T22761S Corrosion of third degree of right scapular region, sequela +T22762A Corrosion of third degree of left scapular region, initial encounter +T22762D Corrosion of third degree of left scapular region, subsequent encounter +T22762S Corrosion of third degree of left scapular region, sequela +T22769A Corrosion of third degree of unspecified scapular region, initial encounter +T22769D Corrosion of third degree of unspecified scapular region, subsequent encounter +T22769S Corrosion of third degree of unspecified scapular region, sequela +T22791A Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter +T22791D Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter +T22791S Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela +T22792A Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter +T22792D Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter +T22792S Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela +T22799A Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter +T22799D Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter +T22799S Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela +T23001A Burn of unspecified degree of right hand, unspecified site, initial encounter +T23001D Burn of unspecified degree of right hand, unspecified site, subsequent encounter +T23001S Burn of unspecified degree of right hand, unspecified site, sequela +T23002A Burn of unspecified degree of left hand, unspecified site, initial encounter +T23002D Burn of unspecified degree of left hand, unspecified site, subsequent encounter +T23002S Burn of unspecified degree of left hand, unspecified site, sequela +T23009A Burn of unspecified degree of unspecified hand, unspecified site, initial encounter +T23009D Burn of unspecified degree of unspecified hand, unspecified site, subsequent encounter +T23009S Burn of unspecified degree of unspecified hand, unspecified site, sequela +T23011A Burn of unspecified degree of right thumb (nail), initial encounter +T23011D Burn of unspecified degree of right thumb (nail), subsequent encounter +T23011S Burn of unspecified degree of right thumb (nail), sequela +T23012A Burn of unspecified degree of left thumb (nail), initial encounter +T23012D Burn of unspecified degree of left thumb (nail), subsequent encounter +T23012S Burn of unspecified degree of left thumb (nail), sequela +T23019A Burn of unspecified degree of unspecified thumb (nail), initial encounter +T23019D Burn of unspecified degree of unspecified thumb (nail), subsequent encounter +T23019S Burn of unspecified degree of unspecified thumb (nail), sequela +T23021A Burn of unspecified degree of single right finger (nail) except thumb, initial encounter +T23021D Burn of unspecified degree of single right finger (nail) except thumb, subsequent encounter +T23021S Burn of unspecified degree of single right finger (nail) except thumb, sequela +T23022A Burn of unspecified degree of single left finger (nail) except thumb, initial encounter +T23022D Burn of unspecified degree of single left finger (nail) except thumb, subsequent encounter +T23022S Burn of unspecified degree of single left finger (nail) except thumb, sequela +T23029A Burn of unspecified degree of unspecified single finger (nail) except thumb, initial encounter +T23029D Burn of unspecified degree of unspecified single finger (nail) except thumb, subsequent encounter +T23029S Burn of unspecified degree of unspecified single finger (nail) except thumb, sequela +T23031A Burn of unspecified degree of multiple right fingers (nail), not including thumb, initial encounter +T23031D Burn of unspecified degree of multiple right fingers (nail), not including thumb, subsequent encounter +T23031S Burn of unspecified degree of multiple right fingers (nail), not including thumb, sequela +T23032A Burn of unspecified degree of multiple left fingers (nail), not including thumb, initial encounter +T23032D Burn of unspecified degree of multiple left fingers (nail), not including thumb, subsequent encounter +T23032S Burn of unspecified degree of multiple left fingers (nail), not including thumb, sequela +T23039A Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb, initial encounter +T23039D Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter +T23039S Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb, sequela +T23041A Burn of unspecified degree of multiple right fingers (nail), including thumb, initial encounter +T23041D Burn of unspecified degree of multiple right fingers (nail), including thumb, subsequent encounter +T23041S Burn of unspecified degree of multiple right fingers (nail), including thumb, sequela +T23042A Burn of unspecified degree of multiple left fingers (nail), including thumb, initial encounter +T23042D Burn of unspecified degree of multiple left fingers (nail), including thumb, subsequent encounter +T23042S Burn of unspecified degree of multiple left fingers (nail), including thumb, sequela +T23049A Burn of unspecified degree of unspecified multiple fingers (nail), including thumb, initial encounter +T23049D Burn of unspecified degree of unspecified multiple fingers (nail), including thumb, subsequent encounter +T23049S Burn of unspecified degree of unspecified multiple fingers (nail), including thumb, sequela +T23051A Burn of unspecified degree of right palm, initial encounter +T23051D Burn of unspecified degree of right palm, subsequent encounter +T23051S Burn of unspecified degree of right palm, sequela +T23052A Burn of unspecified degree of left palm, initial encounter +T23052D Burn of unspecified degree of left palm, subsequent encounter +T23052S Burn of unspecified degree of left palm, sequela +T23059A Burn of unspecified degree of unspecified palm, initial encounter +T23059D Burn of unspecified degree of unspecified palm, subsequent encounter +T23059S Burn of unspecified degree of unspecified palm, sequela +T23061A Burn of unspecified degree of back of right hand, initial encounter +T23061D Burn of unspecified degree of back of right hand, subsequent encounter +T23061S Burn of unspecified degree of back of right hand, sequela +T23062A Burn of unspecified degree of back of left hand, initial encounter +T23062D Burn of unspecified degree of back of left hand, subsequent encounter +T23062S Burn of unspecified degree of back of left hand, sequela +T23069A Burn of unspecified degree of back of unspecified hand, initial encounter +T23069D Burn of unspecified degree of back of unspecified hand, subsequent encounter +T23069S Burn of unspecified degree of back of unspecified hand, sequela +T23071A Burn of unspecified degree of right wrist, initial encounter +T23071D Burn of unspecified degree of right wrist, subsequent encounter +T23071S Burn of unspecified degree of right wrist, sequela +T23072A Burn of unspecified degree of left wrist, initial encounter +T23072D Burn of unspecified degree of left wrist, subsequent encounter +T23072S Burn of unspecified degree of left wrist, sequela +T23079A Burn of unspecified degree of unspecified wrist, initial encounter +T23079D Burn of unspecified degree of unspecified wrist, subsequent encounter +T23079S Burn of unspecified degree of unspecified wrist, sequela +T23091A Burn of unspecified degree of multiple sites of right wrist and hand, initial encounter +T23091D Burn of unspecified degree of multiple sites of right wrist and hand, subsequent encounter +T23091S Burn of unspecified degree of multiple sites of right wrist and hand, sequela +T23092A Burn of unspecified degree of multiple sites of left wrist and hand, initial encounter +T23092D Burn of unspecified degree of multiple sites of left wrist and hand, subsequent encounter +T23092S Burn of unspecified degree of multiple sites of left wrist and hand, sequela +T23099A Burn of unspecified degree of multiple sites of unspecified wrist and hand, initial encounter +T23099D Burn of unspecified degree of multiple sites of unspecified wrist and hand, subsequent encounter +T23099S Burn of unspecified degree of multiple sites of unspecified wrist and hand, sequela +T23101A Burn of first degree of right hand, unspecified site, initial encounter +T23101D Burn of first degree of right hand, unspecified site, subsequent encounter +T23101S Burn of first degree of right hand, unspecified site, sequela +T23102A Burn of first degree of left hand, unspecified site, initial encounter +T23102D Burn of first degree of left hand, unspecified site, subsequent encounter +T23102S Burn of first degree of left hand, unspecified site, sequela +T23109A Burn of first degree of unspecified hand, unspecified site, initial encounter +T23109D Burn of first degree of unspecified hand, unspecified site, subsequent encounter +T23109S Burn of first degree of unspecified hand, unspecified site, sequela +T23111A Burn of first degree of right thumb (nail), initial encounter +T23111D Burn of first degree of right thumb (nail), subsequent encounter +T23111S Burn of first degree of right thumb (nail), sequela +T23112A Burn of first degree of left thumb (nail), initial encounter +T23112D Burn of first degree of left thumb (nail), subsequent encounter +T23112S Burn of first degree of left thumb (nail), sequela +T23119A Burn of first degree of unspecified thumb (nail), initial encounter +T23119D Burn of first degree of unspecified thumb (nail), subsequent encounter +T23119S Burn of first degree of unspecified thumb (nail), sequela +T23121A Burn of first degree of single right finger (nail) except thumb, initial encounter +T23121D Burn of first degree of single right finger (nail) except thumb, subsequent encounter +T23121S Burn of first degree of single right finger (nail) except thumb, sequela +T23122A Burn of first degree of single left finger (nail) except thumb, initial encounter +T23122D Burn of first degree of single left finger (nail) except thumb, subsequent encounter +T23122S Burn of first degree of single left finger (nail) except thumb, sequela +T23129A Burn of first degree of unspecified single finger (nail) except thumb, initial encounter +T23129D Burn of first degree of unspecified single finger (nail) except thumb, subsequent encounter +T23129S Burn of first degree of unspecified single finger (nail) except thumb, sequela +T23131A Burn of first degree of multiple right fingers (nail), not including thumb, initial encounter +T23131D Burn of first degree of multiple right fingers (nail), not including thumb, subsequent encounter +T23131S Burn of first degree of multiple right fingers (nail), not including thumb, sequela +T23132A Burn of first degree of multiple left fingers (nail), not including thumb, initial encounter +T23132D Burn of first degree of multiple left fingers (nail), not including thumb, subsequent encounter +T23132S Burn of first degree of multiple left fingers (nail), not including thumb, sequela +T23139A Burn of first degree of unspecified multiple fingers (nail), not including thumb, initial encounter +T23139D Burn of first degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter +T23139S Burn of first degree of unspecified multiple fingers (nail), not including thumb, sequela +T23141A Burn of first degree of multiple right fingers (nail), including thumb, initial encounter +T23141D Burn of first degree of multiple right fingers (nail), including thumb, subsequent encounter +T23141S Burn of first degree of multiple right fingers (nail), including thumb, sequela +T23142A Burn of first degree of multiple left fingers (nail), including thumb, initial encounter +T23142D Burn of first degree of multiple left fingers (nail), including thumb, subsequent encounter +T23142S Burn of first degree of multiple left fingers (nail), including thumb, sequela +T23149A Burn of first degree of unspecified multiple fingers (nail), including thumb, initial encounter +T23149D Burn of first degree of unspecified multiple fingers (nail), including thumb, subsequent encounter +T23149S Burn of first degree of unspecified multiple fingers (nail), including thumb, sequela +T23151A Burn of first degree of right palm, initial encounter +T23151D Burn of first degree of right palm, subsequent encounter +T23151S Burn of first degree of right palm, sequela +T23152A Burn of first degree of left palm, initial encounter +T23152D Burn of first degree of left palm, subsequent encounter +T23152S Burn of first degree of left palm, sequela +T23159A Burn of first degree of unspecified palm, initial encounter +T23159D Burn of first degree of unspecified palm, subsequent encounter +T23159S Burn of first degree of unspecified palm, sequela +T23161A Burn of first degree of back of right hand, initial encounter +T23161D Burn of first degree of back of right hand, subsequent encounter +T23161S Burn of first degree of back of right hand, sequela +T23162A Burn of first degree of back of left hand, initial encounter +T23162D Burn of first degree of back of left hand, subsequent encounter +T23162S Burn of first degree of back of left hand, sequela +T23169A Burn of first degree of back of unspecified hand, initial encounter +T23169D Burn of first degree of back of unspecified hand, subsequent encounter +T23169S Burn of first degree of back of unspecified hand, sequela +T23171A Burn of first degree of right wrist, initial encounter +T23171D Burn of first degree of right wrist, subsequent encounter +T23171S Burn of first degree of right wrist, sequela +T23172A Burn of first degree of left wrist, initial encounter +T23172D Burn of first degree of left wrist, subsequent encounter +T23172S Burn of first degree of left wrist, sequela +T23179A Burn of first degree of unspecified wrist, initial encounter +T23179D Burn of first degree of unspecified wrist, subsequent encounter +T23179S Burn of first degree of unspecified wrist, sequela +T23191A Burn of first degree of multiple sites of right wrist and hand, initial encounter +T23191D Burn of first degree of multiple sites of right wrist and hand, subsequent encounter +T23191S Burn of first degree of multiple sites of right wrist and hand, sequela +T23192A Burn of first degree of multiple sites of left wrist and hand, initial encounter +T23192D Burn of first degree of multiple sites of left wrist and hand, subsequent encounter +T23192S Burn of first degree of multiple sites of left wrist and hand, sequela +T23199A Burn of first degree of multiple sites of unspecified wrist and hand, initial encounter +T23199D Burn of first degree of multiple sites of unspecified wrist and hand, subsequent encounter +T23199S Burn of first degree of multiple sites of unspecified wrist and hand, sequela +T23201A Burn of second degree of right hand, unspecified site, initial encounter +T23201D Burn of second degree of right hand, unspecified site, subsequent encounter +T23201S Burn of second degree of right hand, unspecified site, sequela +T23202A Burn of second degree of left hand, unspecified site, initial encounter +T23202D Burn of second degree of left hand, unspecified site, subsequent encounter +T23202S Burn of second degree of left hand, unspecified site, sequela +T23209A Burn of second degree of unspecified hand, unspecified site, initial encounter +T23209D Burn of second degree of unspecified hand, unspecified site, subsequent encounter +T23209S Burn of second degree of unspecified hand, unspecified site, sequela +T23211A Burn of second degree of right thumb (nail), initial encounter +T23211D Burn of second degree of right thumb (nail), subsequent encounter +T23211S Burn of second degree of right thumb (nail), sequela +T23212A Burn of second degree of left thumb (nail), initial encounter +T23212D Burn of second degree of left thumb (nail), subsequent encounter +T23212S Burn of second degree of left thumb (nail), sequela +T23219A Burn of second degree of unspecified thumb (nail), initial encounter +T23219D Burn of second degree of unspecified thumb (nail), subsequent encounter +T23219S Burn of second degree of unspecified thumb (nail), sequela +T23221A Burn of second degree of single right finger (nail) except thumb, initial encounter +T23221D Burn of second degree of single right finger (nail) except thumb, subsequent encounter +T23221S Burn of second degree of single right finger (nail) except thumb, sequela +T23222A Burn of second degree of single left finger (nail) except thumb, initial encounter +T23222D Burn of second degree of single left finger (nail) except thumb, subsequent encounter +T23222S Burn of second degree of single left finger (nail) except thumb, sequela +T23229A Burn of second degree of unspecified single finger (nail) except thumb, initial encounter +T23229D Burn of second degree of unspecified single finger (nail) except thumb, subsequent encounter +T23229S Burn of second degree of unspecified single finger (nail) except thumb, sequela +T23231A Burn of second degree of multiple right fingers (nail), not including thumb, initial encounter +T23231D Burn of second degree of multiple right fingers (nail), not including thumb, subsequent encounter +T23231S Burn of second degree of multiple right fingers (nail), not including thumb, sequela +T23232A Burn of second degree of multiple left fingers (nail), not including thumb, initial encounter +T23232D Burn of second degree of multiple left fingers (nail), not including thumb, subsequent encounter +T23232S Burn of second degree of multiple left fingers (nail), not including thumb, sequela +T23239A Burn of second degree of unspecified multiple fingers (nail), not including thumb, initial encounter +T23239D Burn of second degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter +T23239S Burn of second degree of unspecified multiple fingers (nail), not including thumb, sequela +T23241A Burn of second degree of multiple right fingers (nail), including thumb, initial encounter +T23241D Burn of second degree of multiple right fingers (nail), including thumb, subsequent encounter +T23241S Burn of second degree of multiple right fingers (nail), including thumb, sequela +T23242A Burn of second degree of multiple left fingers (nail), including thumb, initial encounter +T23242D Burn of second degree of multiple left fingers (nail), including thumb, subsequent encounter +T23242S Burn of second degree of multiple left fingers (nail), including thumb, sequela +T23249A Burn of second degree of unspecified multiple fingers (nail), including thumb, initial encounter +T23249D Burn of second degree of unspecified multiple fingers (nail), including thumb, subsequent encounter +T23249S Burn of second degree of unspecified multiple fingers (nail), including thumb, sequela +T23251A Burn of second degree of right palm, initial encounter +T23251D Burn of second degree of right palm, subsequent encounter +T23251S Burn of second degree of right palm, sequela +T23252A Burn of second degree of left palm, initial encounter +T23252D Burn of second degree of left palm, subsequent encounter +T23252S Burn of second degree of left palm, sequela +T23259A Burn of second degree of unspecified palm, initial encounter +T23259D Burn of second degree of unspecified palm, subsequent encounter +T23259S Burn of second degree of unspecified palm, sequela +T23261A Burn of second degree of back of right hand, initial encounter +T23261D Burn of second degree of back of right hand, subsequent encounter +T23261S Burn of second degree of back of right hand, sequela +T23262A Burn of second degree of back of left hand, initial encounter +T23262D Burn of second degree of back of left hand, subsequent encounter +T23262S Burn of second degree of back of left hand, sequela +T23269A Burn of second degree of back of unspecified hand, initial encounter +T23269D Burn of second degree of back of unspecified hand, subsequent encounter +T23269S Burn of second degree of back of unspecified hand, sequela +T23271A Burn of second degree of right wrist, initial encounter +T23271D Burn of second degree of right wrist, subsequent encounter +T23271S Burn of second degree of right wrist, sequela +T23272A Burn of second degree of left wrist, initial encounter +T23272D Burn of second degree of left wrist, subsequent encounter +T23272S Burn of second degree of left wrist, sequela +T23279A Burn of second degree of unspecified wrist, initial encounter +T23279D Burn of second degree of unspecified wrist, subsequent encounter +T23279S Burn of second degree of unspecified wrist, sequela +T23291A Burn of second degree of multiple sites of right wrist and hand, initial encounter +T23291D Burn of second degree of multiple sites of right wrist and hand, subsequent encounter +T23291S Burn of second degree of multiple sites of right wrist and hand, sequela +T23292A Burn of second degree of multiple sites of left wrist and hand, initial encounter +T23292D Burn of second degree of multiple sites of left wrist and hand, subsequent encounter +T23292S Burn of second degree of multiple sites of left wrist and hand, sequela +T23299A Burn of second degree of multiple sites of unspecified wrist and hand, initial encounter +T23299D Burn of second degree of multiple sites of unspecified wrist and hand, subsequent encounter +T23299S Burn of second degree of multiple sites of unspecified wrist and hand, sequela +T23301A Burn of third degree of right hand, unspecified site, initial encounter +T23301D Burn of third degree of right hand, unspecified site, subsequent encounter +T23301S Burn of third degree of right hand, unspecified site, sequela +T23302A Burn of third degree of left hand, unspecified site, initial encounter +T23302D Burn of third degree of left hand, unspecified site, subsequent encounter +T23302S Burn of third degree of left hand, unspecified site, sequela +T23309A Burn of third degree of unspecified hand, unspecified site, initial encounter +T23309D Burn of third degree of unspecified hand, unspecified site, subsequent encounter +T23309S Burn of third degree of unspecified hand, unspecified site, sequela +T23311A Burn of third degree of right thumb (nail), initial encounter +T23311D Burn of third degree of right thumb (nail), subsequent encounter +T23311S Burn of third degree of right thumb (nail), sequela +T23312A Burn of third degree of left thumb (nail), initial encounter +T23312D Burn of third degree of left thumb (nail), subsequent encounter +T23312S Burn of third degree of left thumb (nail), sequela +T23319A Burn of third degree of unspecified thumb (nail), initial encounter +T23319D Burn of third degree of unspecified thumb (nail), subsequent encounter +T23319S Burn of third degree of unspecified thumb (nail), sequela +T23321A Burn of third degree of single right finger (nail) except thumb, initial encounter +T23321D Burn of third degree of single right finger (nail) except thumb, subsequent encounter +T23321S Burn of third degree of single right finger (nail) except thumb, sequela +T23322A Burn of third degree of single left finger (nail) except thumb, initial encounter +T23322D Burn of third degree of single left finger (nail) except thumb, subsequent encounter +T23322S Burn of third degree of single left finger (nail) except thumb, sequela +T23329A Burn of third degree of unspecified single finger (nail) except thumb, initial encounter +T23329D Burn of third degree of unspecified single finger (nail) except thumb, subsequent encounter +T23329S Burn of third degree of unspecified single finger (nail) except thumb, sequela +T23331A Burn of third degree of multiple right fingers (nail), not including thumb, initial encounter +T23331D Burn of third degree of multiple right fingers (nail), not including thumb, subsequent encounter +T23331S Burn of third degree of multiple right fingers (nail), not including thumb, sequela +T23332A Burn of third degree of multiple left fingers (nail), not including thumb, initial encounter +T23332D Burn of third degree of multiple left fingers (nail), not including thumb, subsequent encounter +T23332S Burn of third degree of multiple left fingers (nail), not including thumb, sequela +T23339A Burn of third degree of unspecified multiple fingers (nail), not including thumb, initial encounter +T23339D Burn of third degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter +T23339S Burn of third degree of unspecified multiple fingers (nail), not including thumb, sequela +T23341A Burn of third degree of multiple right fingers (nail), including thumb, initial encounter +T23341D Burn of third degree of multiple right fingers (nail), including thumb, subsequent encounter +T23341S Burn of third degree of multiple right fingers (nail), including thumb, sequela +T23342A Burn of third degree of multiple left fingers (nail), including thumb, initial encounter +T23342D Burn of third degree of multiple left fingers (nail), including thumb, subsequent encounter +T23342S Burn of third degree of multiple left fingers (nail), including thumb, sequela +T23349A Burn of third degree of unspecified multiple fingers (nail), including thumb, initial encounter +T23349D Burn of third degree of unspecified multiple fingers (nail), including thumb, subsequent encounter +T23349S Burn of third degree of unspecified multiple fingers (nail), including thumb, sequela +T23351A Burn of third degree of right palm, initial encounter +T23351D Burn of third degree of right palm, subsequent encounter +T23351S Burn of third degree of right palm, sequela +T23352A Burn of third degree of left palm, initial encounter +T23352D Burn of third degree of left palm, subsequent encounter +T23352S Burn of third degree of left palm, sequela +T23359A Burn of third degree of unspecified palm, initial encounter +T23359D Burn of third degree of unspecified palm, subsequent encounter +T23359S Burn of third degree of unspecified palm, sequela +T23361A Burn of third degree of back of right hand, initial encounter +T23361D Burn of third degree of back of right hand, subsequent encounter +T23361S Burn of third degree of back of right hand, sequela +T23362A Burn of third degree of back of left hand, initial encounter +T23362D Burn of third degree of back of left hand, subsequent encounter +T23362S Burn of third degree of back of left hand, sequela +T23369A Burn of third degree of back of unspecified hand, initial encounter +T23369D Burn of third degree of back of unspecified hand, subsequent encounter +T23369S Burn of third degree of back of unspecified hand, sequela +T23371A Burn of third degree of right wrist, initial encounter +T23371D Burn of third degree of right wrist, subsequent encounter +T23371S Burn of third degree of right wrist, sequela +T23372A Burn of third degree of left wrist, initial encounter +T23372D Burn of third degree of left wrist, subsequent encounter +T23372S Burn of third degree of left wrist, sequela +T23379A Burn of third degree of unspecified wrist, initial encounter +T23379D Burn of third degree of unspecified wrist, subsequent encounter +T23379S Burn of third degree of unspecified wrist, sequela +T23391A Burn of third degree of multiple sites of right wrist and hand, initial encounter +T23391D Burn of third degree of multiple sites of right wrist and hand, subsequent encounter +T23391S Burn of third degree of multiple sites of right wrist and hand, sequela +T23392A Burn of third degree of multiple sites of left wrist and hand, initial encounter +T23392D Burn of third degree of multiple sites of left wrist and hand, subsequent encounter +T23392S Burn of third degree of multiple sites of left wrist and hand, sequela +T23399A Burn of third degree of multiple sites of unspecified wrist and hand, initial encounter +T23399D Burn of third degree of multiple sites of unspecified wrist and hand, subsequent encounter +T23399S Burn of third degree of multiple sites of unspecified wrist and hand, sequela +T23401A Corrosion of unspecified degree of right hand, unspecified site, initial encounter +T23401D Corrosion of unspecified degree of right hand, unspecified site, subsequent encounter +T23401S Corrosion of unspecified degree of right hand, unspecified site, sequela +T23402A Corrosion of unspecified degree of left hand, unspecified site, initial encounter +T23402D Corrosion of unspecified degree of left hand, unspecified site, subsequent encounter +T23402S Corrosion of unspecified degree of left hand, unspecified site, sequela +T23409A Corrosion of unspecified degree of unspecified hand, unspecified site, initial encounter +T23409D Corrosion of unspecified degree of unspecified hand, unspecified site, subsequent encounter +T23409S Corrosion of unspecified degree of unspecified hand, unspecified site, sequela +T23411A Corrosion of unspecified degree of right thumb (nail), initial encounter +T23411D Corrosion of unspecified degree of right thumb (nail), subsequent encounter +T23411S Corrosion of unspecified degree of right thumb (nail), sequela +T23412A Corrosion of unspecified degree of left thumb (nail), initial encounter +T23412D Corrosion of unspecified degree of left thumb (nail), subsequent encounter +T23412S Corrosion of unspecified degree of left thumb (nail), sequela +T23419A Corrosion of unspecified degree of unspecified thumb (nail), initial encounter +T23419D Corrosion of unspecified degree of unspecified thumb (nail), subsequent encounter +T23419S Corrosion of unspecified degree of unspecified thumb (nail), sequela +T23421A Corrosion of unspecified degree of single right finger (nail) except thumb, initial encounter +T23421D Corrosion of unspecified degree of single right finger (nail) except thumb, subsequent encounter +T23421S Corrosion of unspecified degree of single right finger (nail) except thumb, sequela +T23422A Corrosion of unspecified degree of single left finger (nail) except thumb, initial encounter +T23422D Corrosion of unspecified degree of single left finger (nail) except thumb, subsequent encounter +T23422S Corrosion of unspecified degree of single left finger (nail) except thumb, sequela +T23429A Corrosion of unspecified degree of unspecified single finger (nail) except thumb, initial encounter +T23429D Corrosion of unspecified degree of unspecified single finger (nail) except thumb, subsequent encounter +T23429S Corrosion of unspecified degree of unspecified single finger (nail) except thumb, sequela +T23431A Corrosion of unspecified degree of multiple right fingers (nail), not including thumb, initial encounter +T23431D Corrosion of unspecified degree of multiple right fingers (nail), not including thumb, subsequent encounter +T23431S Corrosion of unspecified degree of multiple right fingers (nail), not including thumb, sequela +T23432A Corrosion of unspecified degree of multiple left fingers (nail), not including thumb, initial encounter +T23432D Corrosion of unspecified degree of multiple left fingers (nail), not including thumb, subsequent encounter +T23432S Corrosion of unspecified degree of multiple left fingers (nail), not including thumb, sequela +T23439A Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb, initial encounter +T23439D Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter +T23439S Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb, sequela +T23441A Corrosion of unspecified degree of multiple right fingers (nail), including thumb, initial encounter +T23441D Corrosion of unspecified degree of multiple right fingers (nail), including thumb, subsequent encounter +T23441S Corrosion of unspecified degree of multiple right fingers (nail), including thumb, sequela +T23442A Corrosion of unspecified degree of multiple left fingers (nail), including thumb, initial encounter +T23442D Corrosion of unspecified degree of multiple left fingers (nail), including thumb, subsequent encounter +T23442S Corrosion of unspecified degree of multiple left fingers (nail), including thumb, sequela +T23449A Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb, initial encounter +T23449D Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb, subsequent encounter +T23449S Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb, sequela +T23451A Corrosion of unspecified degree of right palm, initial encounter +T23451D Corrosion of unspecified degree of right palm, subsequent encounter +T23451S Corrosion of unspecified degree of right palm, sequela +T23452A Corrosion of unspecified degree of left palm, initial encounter +T23452D Corrosion of unspecified degree of left palm, subsequent encounter +T23452S Corrosion of unspecified degree of left palm, sequela +T23459A Corrosion of unspecified degree of unspecified palm, initial encounter +T23459D Corrosion of unspecified degree of unspecified palm, subsequent encounter +T23459S Corrosion of unspecified degree of unspecified palm, sequela +T23461A Corrosion of unspecified degree of back of right hand, initial encounter +T23461D Corrosion of unspecified degree of back of right hand, subsequent encounter +T23461S Corrosion of unspecified degree of back of right hand, sequela +T23462A Corrosion of unspecified degree of back of left hand, initial encounter +T23462D Corrosion of unspecified degree of back of left hand, subsequent encounter +T23462S Corrosion of unspecified degree of back of left hand, sequela +T23469A Corrosion of unspecified degree of back of unspecified hand, initial encounter +T23469D Corrosion of unspecified degree of back of unspecified hand, subsequent encounter +T23469S Corrosion of unspecified degree of back of unspecified hand, sequela +T23471A Corrosion of unspecified degree of right wrist, initial encounter +T23471D Corrosion of unspecified degree of right wrist, subsequent encounter +T23471S Corrosion of unspecified degree of right wrist, sequela +T23472A Corrosion of unspecified degree of left wrist, initial encounter +T23472D Corrosion of unspecified degree of left wrist, subsequent encounter +T23472S Corrosion of unspecified degree of left wrist, sequela +T23479A Corrosion of unspecified degree of unspecified wrist, initial encounter +T23479D Corrosion of unspecified degree of unspecified wrist, subsequent encounter +T23479S Corrosion of unspecified degree of unspecified wrist, sequela +T23491A Corrosion of unspecified degree of multiple sites of right wrist and hand, initial encounter +T23491D Corrosion of unspecified degree of multiple sites of right wrist and hand, subsequent encounter +T23491S Corrosion of unspecified degree of multiple sites of right wrist and hand, sequela +T23492A Corrosion of unspecified degree of multiple sites of left wrist and hand, initial encounter +T23492D Corrosion of unspecified degree of multiple sites of left wrist and hand, subsequent encounter +T23492S Corrosion of unspecified degree of multiple sites of left wrist and hand, sequela +T23499A Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, initial encounter +T23499D Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, subsequent encounter +T23499S Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, sequela +T23501A Corrosion of first degree of right hand, unspecified site, initial encounter +T23501D Corrosion of first degree of right hand, unspecified site, subsequent encounter +T23501S Corrosion of first degree of right hand, unspecified site, sequela +T23502A Corrosion of first degree of left hand, unspecified site, initial encounter +T23502D Corrosion of first degree of left hand, unspecified site, subsequent encounter +T23502S Corrosion of first degree of left hand, unspecified site, sequela +T23509A Corrosion of first degree of unspecified hand, unspecified site, initial encounter +T23509D Corrosion of first degree of unspecified hand, unspecified site, subsequent encounter +T23509S Corrosion of first degree of unspecified hand, unspecified site, sequela +T23511A Corrosion of first degree of right thumb (nail), initial encounter +T23511D Corrosion of first degree of right thumb (nail), subsequent encounter +T23511S Corrosion of first degree of right thumb (nail), sequela +T23512A Corrosion of first degree of left thumb (nail), initial encounter +T23512D Corrosion of first degree of left thumb (nail), subsequent encounter +T23512S Corrosion of first degree of left thumb (nail), sequela +T23519A Corrosion of first degree of unspecified thumb (nail), initial encounter +T23519D Corrosion of first degree of unspecified thumb (nail), subsequent encounter +T23519S Corrosion of first degree of unspecified thumb (nail), sequela +T23521A Corrosion of first degree of single right finger (nail) except thumb, initial encounter +T23521D Corrosion of first degree of single right finger (nail) except thumb, subsequent encounter +T23521S Corrosion of first degree of single right finger (nail) except thumb, sequela +T23522A Corrosion of first degree of single left finger (nail) except thumb, initial encounter +T23522D Corrosion of first degree of single left finger (nail) except thumb, subsequent encounter +T23522S Corrosion of first degree of single left finger (nail) except thumb, sequela +T23529A Corrosion of first degree of unspecified single finger (nail) except thumb, initial encounter +T23529D Corrosion of first degree of unspecified single finger (nail) except thumb, subsequent encounter +T23529S Corrosion of first degree of unspecified single finger (nail) except thumb, sequela +T23531A Corrosion of first degree of multiple right fingers (nail), not including thumb, initial encounter +T23531D Corrosion of first degree of multiple right fingers (nail), not including thumb, subsequent encounter +T23531S Corrosion of first degree of multiple right fingers (nail), not including thumb, sequela +T23532A Corrosion of first degree of multiple left fingers (nail), not including thumb, initial encounter +T23532D Corrosion of first degree of multiple left fingers (nail), not including thumb, subsequent encounter +T23532S Corrosion of first degree of multiple left fingers (nail), not including thumb, sequela +T23539A Corrosion of first degree of unspecified multiple fingers (nail), not including thumb, initial encounter +T23539D Corrosion of first degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter +T23539S Corrosion of first degree of unspecified multiple fingers (nail), not including thumb, sequela +T23541A Corrosion of first degree of multiple right fingers (nail), including thumb, initial encounter +T23541D Corrosion of first degree of multiple right fingers (nail), including thumb, subsequent encounter +T23541S Corrosion of first degree of multiple right fingers (nail), including thumb, sequela +T23542A Corrosion of first degree of multiple left fingers (nail), including thumb, initial encounter +T23542D Corrosion of first degree of multiple left fingers (nail), including thumb, subsequent encounter +T23542S Corrosion of first degree of multiple left fingers (nail), including thumb, sequela +T23549A Corrosion of first degree of unspecified multiple fingers (nail), including thumb, initial encounter +T23549D Corrosion of first degree of unspecified multiple fingers (nail), including thumb, subsequent encounter +T23549S Corrosion of first degree of unspecified multiple fingers (nail), including thumb, sequela +T23551A Corrosion of first degree of right palm, initial encounter +T23551D Corrosion of first degree of right palm, subsequent encounter +T23551S Corrosion of first degree of right palm, sequela +T23552A Corrosion of first degree of left palm, initial encounter +T23552D Corrosion of first degree of left palm, subsequent encounter +T23552S Corrosion of first degree of left palm, sequela +T23559A Corrosion of first degree of unspecified palm, initial encounter +T23559D Corrosion of first degree of unspecified palm, subsequent encounter +T23559S Corrosion of first degree of unspecified palm, sequela +T23561A Corrosion of first degree of back of right hand, initial encounter +T23561D Corrosion of first degree of back of right hand, subsequent encounter +T23561S Corrosion of first degree of back of right hand, sequela +T23562A Corrosion of first degree of back of left hand, initial encounter +T23562D Corrosion of first degree of back of left hand, subsequent encounter +T23562S Corrosion of first degree of back of left hand, sequela +T23569A Corrosion of first degree of back of unspecified hand, initial encounter +T23569D Corrosion of first degree of back of unspecified hand, subsequent encounter +T23569S Corrosion of first degree of back of unspecified hand, sequela +T23571A Corrosion of first degree of right wrist, initial encounter +T23571D Corrosion of first degree of right wrist, subsequent encounter +T23571S Corrosion of first degree of right wrist, sequela +T23572A Corrosion of first degree of left wrist, initial encounter +T23572D Corrosion of first degree of left wrist, subsequent encounter +T23572S Corrosion of first degree of left wrist, sequela +T23579A Corrosion of first degree of unspecified wrist, initial encounter +T23579D Corrosion of first degree of unspecified wrist, subsequent encounter +T23579S Corrosion of first degree of unspecified wrist, sequela +T23591A Corrosion of first degree of multiple sites of right wrist and hand, initial encounter +T23591D Corrosion of first degree of multiple sites of right wrist and hand, subsequent encounter +T23591S Corrosion of first degree of multiple sites of right wrist and hand, sequela +T23592A Corrosion of first degree of multiple sites of left wrist and hand, initial encounter +T23592D Corrosion of first degree of multiple sites of left wrist and hand, subsequent encounter +T23592S Corrosion of first degree of multiple sites of left wrist and hand, sequela +T23599A Corrosion of first degree of multiple sites of unspecified wrist and hand, initial encounter +T23599D Corrosion of first degree of multiple sites of unspecified wrist and hand, subsequent encounter +T23599S Corrosion of first degree of multiple sites of unspecified wrist and hand, sequela +T23601A Corrosion of second degree of right hand, unspecified site, initial encounter +T23601D Corrosion of second degree of right hand, unspecified site, subsequent encounter +T23601S Corrosion of second degree of right hand, unspecified site, sequela +T23602A Corrosion of second degree of left hand, unspecified site, initial encounter +T23602D Corrosion of second degree of left hand, unspecified site, subsequent encounter +T23602S Corrosion of second degree of left hand, unspecified site, sequela +T23609A Corrosion of second degree of unspecified hand, unspecified site, initial encounter +T23609D Corrosion of second degree of unspecified hand, unspecified site, subsequent encounter +T23609S Corrosion of second degree of unspecified hand, unspecified site, sequela +T23611A Corrosion of second degree of right thumb (nail), initial encounter +T23611D Corrosion of second degree of right thumb (nail), subsequent encounter +T23611S Corrosion of second degree of right thumb (nail), sequela +T23612A Corrosion of second degree of left thumb (nail), initial encounter +T23612D Corrosion of second degree of left thumb (nail), subsequent encounter +T23612S Corrosion of second degree of left thumb (nail), sequela +T23619A Corrosion of second degree of unspecified thumb (nail), initial encounter +T23619D Corrosion of second degree of unspecified thumb (nail), subsequent encounter +T23619S Corrosion of second degree of unspecified thumb (nail), sequela +T23621A Corrosion of second degree of single right finger (nail) except thumb, initial encounter +T23621D Corrosion of second degree of single right finger (nail) except thumb, subsequent encounter +T23621S Corrosion of second degree of single right finger (nail) except thumb, sequela +T23622A Corrosion of second degree of single left finger (nail) except thumb, initial encounter +T23622D Corrosion of second degree of single left finger (nail) except thumb, subsequent encounter +T23622S Corrosion of second degree of single left finger (nail) except thumb, sequela +T23629A Corrosion of second degree of unspecified single finger (nail) except thumb, initial encounter +T23629D Corrosion of second degree of unspecified single finger (nail) except thumb, subsequent encounter +T23629S Corrosion of second degree of unspecified single finger (nail) except thumb, sequela +T23631A Corrosion of second degree of multiple right fingers (nail), not including thumb, initial encounter +T23631D Corrosion of second degree of multiple right fingers (nail), not including thumb, subsequent encounter +T23631S Corrosion of second degree of multiple right fingers (nail), not including thumb, sequela +T23632A Corrosion of second degree of multiple left fingers (nail), not including thumb, initial encounter +T23632D Corrosion of second degree of multiple left fingers (nail), not including thumb, subsequent encounter +T23632S Corrosion of second degree of multiple left fingers (nail), not including thumb, sequela +T23639A Corrosion of second degree of unspecified multiple fingers (nail), not including thumb, initial encounter +T23639D Corrosion of second degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter +T23639S Corrosion of second degree of unspecified multiple fingers (nail), not including thumb, sequela +T23641A Corrosion of second degree of multiple right fingers (nail), including thumb, initial encounter +T23641D Corrosion of second degree of multiple right fingers (nail), including thumb, subsequent encounter +T23641S Corrosion of second degree of multiple right fingers (nail), including thumb, sequela +T23642A Corrosion of second degree of multiple left fingers (nail), including thumb, initial encounter +T23642D Corrosion of second degree of multiple left fingers (nail), including thumb, subsequent encounter +T23642S Corrosion of second degree of multiple left fingers (nail), including thumb, sequela +T23649A Corrosion of second degree of unspecified multiple fingers (nail), including thumb, initial encounter +T23649D Corrosion of second degree of unspecified multiple fingers (nail), including thumb, subsequent encounter +T23649S Corrosion of second degree of unspecified multiple fingers (nail), including thumb, sequela +T23651A Corrosion of second degree of right palm, initial encounter +T23651D Corrosion of second degree of right palm, subsequent encounter +T23651S Corrosion of second degree of right palm, sequela +T23652A Corrosion of second degree of left palm, initial encounter +T23652D Corrosion of second degree of left palm, subsequent encounter +T23652S Corrosion of second degree of left palm, sequela +T23659A Corrosion of second degree of unspecified palm, initial encounter +T23659D Corrosion of second degree of unspecified palm, subsequent encounter +T23659S Corrosion of second degree of unspecified palm, sequela +T23661A Corrosion of second degree back of right hand, initial encounter +T23661D Corrosion of second degree back of right hand, subsequent encounter +T23661S Corrosion of second degree back of right hand, sequela +T23662A Corrosion of second degree back of left hand, initial encounter +T23662D Corrosion of second degree back of left hand, subsequent encounter +T23662S Corrosion of second degree back of left hand, sequela +T23669A Corrosion of second degree back of unspecified hand, initial encounter +T23669D Corrosion of second degree back of unspecified hand, subsequent encounter +T23669S Corrosion of second degree back of unspecified hand, sequela +T23671A Corrosion of second degree of right wrist, initial encounter +T23671D Corrosion of second degree of right wrist, subsequent encounter +T23671S Corrosion of second degree of right wrist, sequela +T23672A Corrosion of second degree of left wrist, initial encounter +T23672D Corrosion of second degree of left wrist, subsequent encounter +T23672S Corrosion of second degree of left wrist, sequela +T23679A Corrosion of second degree of unspecified wrist, initial encounter +T23679D Corrosion of second degree of unspecified wrist, subsequent encounter +T23679S Corrosion of second degree of unspecified wrist, sequela +T23691A Corrosion of second degree of multiple sites of right wrist and hand, initial encounter +T23691D Corrosion of second degree of multiple sites of right wrist and hand, subsequent encounter +T23691S Corrosion of second degree of multiple sites of right wrist and hand, sequela +T23692A Corrosion of second degree of multiple sites of left wrist and hand, initial encounter +T23692D Corrosion of second degree of multiple sites of left wrist and hand, subsequent encounter +T23692S Corrosion of second degree of multiple sites of left wrist and hand, sequela +T23699A Corrosion of second degree of multiple sites of unspecified wrist and hand, initial encounter +T23699D Corrosion of second degree of multiple sites of unspecified wrist and hand, subsequent encounter +T23699S Corrosion of second degree of multiple sites of unspecified wrist and hand, sequela +T23701A Corrosion of third degree of right hand, unspecified site, initial encounter +T23701D Corrosion of third degree of right hand, unspecified site, subsequent encounter +T23701S Corrosion of third degree of right hand, unspecified site, sequela +T23702A Corrosion of third degree of left hand, unspecified site, initial encounter +T23702D Corrosion of third degree of left hand, unspecified site, subsequent encounter +T23702S Corrosion of third degree of left hand, unspecified site, sequela +T23709A Corrosion of third degree of unspecified hand, unspecified site, initial encounter +T23709D Corrosion of third degree of unspecified hand, unspecified site, subsequent encounter +T23709S Corrosion of third degree of unspecified hand, unspecified site, sequela +T23711A Corrosion of third degree of right thumb (nail), initial encounter +T23711D Corrosion of third degree of right thumb (nail), subsequent encounter +T23711S Corrosion of third degree of right thumb (nail), sequela +T23712A Corrosion of third degree of left thumb (nail), initial encounter +T23712D Corrosion of third degree of left thumb (nail), subsequent encounter +T23712S Corrosion of third degree of left thumb (nail), sequela +T23719A Corrosion of third degree of unspecified thumb (nail), initial encounter +T23719D Corrosion of third degree of unspecified thumb (nail), subsequent encounter +T23719S Corrosion of third degree of unspecified thumb (nail), sequela +T23721A Corrosion of third degree of single right finger (nail) except thumb, initial encounter +T23721D Corrosion of third degree of single right finger (nail) except thumb, subsequent encounter +T23721S Corrosion of third degree of single right finger (nail) except thumb, sequela +T23722A Corrosion of third degree of single left finger (nail) except thumb, initial encounter +T23722D Corrosion of third degree of single left finger (nail) except thumb, subsequent encounter +T23722S Corrosion of third degree of single left finger (nail) except thumb, sequela +T23729A Corrosion of third degree of unspecified single finger (nail) except thumb, initial encounter +T23729D Corrosion of third degree of unspecified single finger (nail) except thumb, subsequent encounter +T23729S Corrosion of third degree of unspecified single finger (nail) except thumb, sequela +T23731A Corrosion of third degree of multiple right fingers (nail), not including thumb, initial encounter +T23731D Corrosion of third degree of multiple right fingers (nail), not including thumb, subsequent encounter +T23731S Corrosion of third degree of multiple right fingers (nail), not including thumb, sequela +T23732A Corrosion of third degree of multiple left fingers (nail), not including thumb, initial encounter +T23732D Corrosion of third degree of multiple left fingers (nail), not including thumb, subsequent encounter +T23732S Corrosion of third degree of multiple left fingers (nail), not including thumb, sequela +T23739A Corrosion of third degree of unspecified multiple fingers (nail), not including thumb, initial encounter +T23739D Corrosion of third degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter +T23739S Corrosion of third degree of unspecified multiple fingers (nail), not including thumb, sequela +T23741A Corrosion of third degree of multiple right fingers (nail), including thumb, initial encounter +T23741D Corrosion of third degree of multiple right fingers (nail), including thumb, subsequent encounter +T23741S Corrosion of third degree of multiple right fingers (nail), including thumb, sequela +T23742A Corrosion of third degree of multiple left fingers (nail), including thumb, initial encounter +T23742D Corrosion of third degree of multiple left fingers (nail), including thumb, subsequent encounter +T23742S Corrosion of third degree of multiple left fingers (nail), including thumb, sequela +T23749A Corrosion of third degree of unspecified multiple fingers (nail), including thumb, initial encounter +T23749D Corrosion of third degree of unspecified multiple fingers (nail), including thumb, subsequent encounter +T23749S Corrosion of third degree of unspecified multiple fingers (nail), including thumb, sequela +T23751A Corrosion of third degree of right palm, initial encounter +T23751D Corrosion of third degree of right palm, subsequent encounter +T23751S Corrosion of third degree of right palm, sequela +T23752A Corrosion of third degree of left palm, initial encounter +T23752D Corrosion of third degree of left palm, subsequent encounter +T23752S Corrosion of third degree of left palm, sequela +T23759A Corrosion of third degree of unspecified palm, initial encounter +T23759D Corrosion of third degree of unspecified palm, subsequent encounter +T23759S Corrosion of third degree of unspecified palm, sequela +T23761A Corrosion of third degree of back of right hand, initial encounter +T23761D Corrosion of third degree of back of right hand, subsequent encounter +T23761S Corrosion of third degree of back of right hand, sequela +T23762A Corrosion of third degree of back of left hand, initial encounter +T23762D Corrosion of third degree of back of left hand, subsequent encounter +T23762S Corrosion of third degree of back of left hand, sequela +T23769A Corrosion of third degree back of unspecified hand, initial encounter +T23769D Corrosion of third degree back of unspecified hand, subsequent encounter +T23769S Corrosion of third degree back of unspecified hand, sequela +T23771A Corrosion of third degree of right wrist, initial encounter +T23771D Corrosion of third degree of right wrist, subsequent encounter +T23771S Corrosion of third degree of right wrist, sequela +T23772A Corrosion of third degree of left wrist, initial encounter +T23772D Corrosion of third degree of left wrist, subsequent encounter +T23772S Corrosion of third degree of left wrist, sequela +T23779A Corrosion of third degree of unspecified wrist, initial encounter +T23779D Corrosion of third degree of unspecified wrist, subsequent encounter +T23779S Corrosion of third degree of unspecified wrist, sequela +T23791A Corrosion of third degree of multiple sites of right wrist and hand, initial encounter +T23791D Corrosion of third degree of multiple sites of right wrist and hand, subsequent encounter +T23791S Corrosion of third degree of multiple sites of right wrist and hand, sequela +T23792A Corrosion of third degree of multiple sites of left wrist and hand, initial encounter +T23792D Corrosion of third degree of multiple sites of left wrist and hand, subsequent encounter +T23792S Corrosion of third degree of multiple sites of left wrist and hand, sequela +T23799A Corrosion of third degree of multiple sites of unspecified wrist and hand, initial encounter +T23799D Corrosion of third degree of multiple sites of unspecified wrist and hand, subsequent encounter +T23799S Corrosion of third degree of multiple sites of unspecified wrist and hand, sequela +T24001A Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot, initial encounter +T24001D Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter +T24001S Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot, sequela +T24002A Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot, initial encounter +T24002D Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter +T24002S Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot, sequela +T24009A Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter +T24009D Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter +T24009S Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, sequela +T24011A Burn of unspecified degree of right thigh, initial encounter +T24011D Burn of unspecified degree of right thigh, subsequent encounter +T24011S Burn of unspecified degree of right thigh, sequela +T24012A Burn of unspecified degree of left thigh, initial encounter +T24012D Burn of unspecified degree of left thigh, subsequent encounter +T24012S Burn of unspecified degree of left thigh, sequela +T24019A Burn of unspecified degree of unspecified thigh, initial encounter +T24019D Burn of unspecified degree of unspecified thigh, subsequent encounter +T24019S Burn of unspecified degree of unspecified thigh, sequela +T24021A Burn of unspecified degree of right knee, initial encounter +T24021D Burn of unspecified degree of right knee, subsequent encounter +T24021S Burn of unspecified degree of right knee, sequela +T24022A Burn of unspecified degree of left knee, initial encounter +T24022D Burn of unspecified degree of left knee, subsequent encounter +T24022S Burn of unspecified degree of left knee, sequela +T24029A Burn of unspecified degree of unspecified knee, initial encounter +T24029D Burn of unspecified degree of unspecified knee, subsequent encounter +T24029S Burn of unspecified degree of unspecified knee, sequela +T24031A Burn of unspecified degree of right lower leg, initial encounter +T24031D Burn of unspecified degree of right lower leg, subsequent encounter +T24031S Burn of unspecified degree of right lower leg, sequela +T24032A Burn of unspecified degree of left lower leg, initial encounter +T24032D Burn of unspecified degree of left lower leg, subsequent encounter +T24032S Burn of unspecified degree of left lower leg, sequela +T24039A Burn of unspecified degree of unspecified lower leg, initial encounter +T24039D Burn of unspecified degree of unspecified lower leg, subsequent encounter +T24039S Burn of unspecified degree of unspecified lower leg, sequela +T24091A Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot, initial encounter +T24091D Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter +T24091S Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot, sequela +T24092A Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot, initial encounter +T24092D Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter +T24092S Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot, sequela +T24099A Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter +T24099D Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter +T24099S Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, sequela +T24101A Burn of first degree of unspecified site of right lower limb, except ankle and foot, initial encounter +T24101D Burn of first degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter +T24101S Burn of first degree of unspecified site of right lower limb, except ankle and foot, sequela +T24102A Burn of first degree of unspecified site of left lower limb, except ankle and foot, initial encounter +T24102D Burn of first degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter +T24102S Burn of first degree of unspecified site of left lower limb, except ankle and foot, sequela +T24109A Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter +T24109D Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter +T24109S Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot, sequela +T24111A Burn of first degree of right thigh, initial encounter +T24111D Burn of first degree of right thigh, subsequent encounter +T24111S Burn of first degree of right thigh, sequela +T24112A Burn of first degree of left thigh, initial encounter +T24112D Burn of first degree of left thigh, subsequent encounter +T24112S Burn of first degree of left thigh, sequela +T24119A Burn of first degree of unspecified thigh, initial encounter +T24119D Burn of first degree of unspecified thigh, subsequent encounter +T24119S Burn of first degree of unspecified thigh, sequela +T24121A Burn of first degree of right knee, initial encounter +T24121D Burn of first degree of right knee, subsequent encounter +T24121S Burn of first degree of right knee, sequela +T24122A Burn of first degree of left knee, initial encounter +T24122D Burn of first degree of left knee, subsequent encounter +T24122S Burn of first degree of left knee, sequela +T24129A Burn of first degree of unspecified knee, initial encounter +T24129D Burn of first degree of unspecified knee, subsequent encounter +T24129S Burn of first degree of unspecified knee, sequela +T24131A Burn of first degree of right lower leg, initial encounter +T24131D Burn of first degree of right lower leg, subsequent encounter +T24131S Burn of first degree of right lower leg, sequela +T24132A Burn of first degree of left lower leg, initial encounter +T24132D Burn of first degree of left lower leg, subsequent encounter +T24132S Burn of first degree of left lower leg, sequela +T24139A Burn of first degree of unspecified lower leg, initial encounter +T24139D Burn of first degree of unspecified lower leg, subsequent encounter +T24139S Burn of first degree of unspecified lower leg, sequela +T24191A Burn of first degree of multiple sites of right lower limb, except ankle and foot, initial encounter +T24191D Burn of first degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter +T24191S Burn of first degree of multiple sites of right lower limb, except ankle and foot, sequela +T24192A Burn of first degree of multiple sites of left lower limb, except ankle and foot, initial encounter +T24192D Burn of first degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter +T24192S Burn of first degree of multiple sites of left lower limb, except ankle and foot, sequela +T24199A Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter +T24199D Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter +T24199S Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot, sequela +T24201A Burn of second degree of unspecified site of right lower limb, except ankle and foot, initial encounter +T24201D Burn of second degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter +T24201S Burn of second degree of unspecified site of right lower limb, except ankle and foot, sequela +T24202A Burn of second degree of unspecified site of left lower limb, except ankle and foot, initial encounter +T24202D Burn of second degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter +T24202S Burn of second degree of unspecified site of left lower limb, except ankle and foot, sequela +T24209A Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter +T24209D Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter +T24209S Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot, sequela +T24211A Burn of second degree of right thigh, initial encounter +T24211D Burn of second degree of right thigh, subsequent encounter +T24211S Burn of second degree of right thigh, sequela +T24212A Burn of second degree of left thigh, initial encounter +T24212D Burn of second degree of left thigh, subsequent encounter +T24212S Burn of second degree of left thigh, sequela +T24219A Burn of second degree of unspecified thigh, initial encounter +T24219D Burn of second degree of unspecified thigh, subsequent encounter +T24219S Burn of second degree of unspecified thigh, sequela +T24221A Burn of second degree of right knee, initial encounter +T24221D Burn of second degree of right knee, subsequent encounter +T24221S Burn of second degree of right knee, sequela +T24222A Burn of second degree of left knee, initial encounter +T24222D Burn of second degree of left knee, subsequent encounter +T24222S Burn of second degree of left knee, sequela +T24229A Burn of second degree of unspecified knee, initial encounter +T24229D Burn of second degree of unspecified knee, subsequent encounter +T24229S Burn of second degree of unspecified knee, sequela +T24231A Burn of second degree of right lower leg, initial encounter +T24231D Burn of second degree of right lower leg, subsequent encounter +T24231S Burn of second degree of right lower leg, sequela +T24232A Burn of second degree of left lower leg, initial encounter +T24232D Burn of second degree of left lower leg, subsequent encounter +T24232S Burn of second degree of left lower leg, sequela +T24239A Burn of second degree of unspecified lower leg, initial encounter +T24239D Burn of second degree of unspecified lower leg, subsequent encounter +T24239S Burn of second degree of unspecified lower leg, sequela +T24291A Burn of second degree of multiple sites of right lower limb, except ankle and foot, initial encounter +T24291D Burn of second degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter +T24291S Burn of second degree of multiple sites of right lower limb, except ankle and foot, sequela +T24292A Burn of second degree of multiple sites of left lower limb, except ankle and foot, initial encounter +T24292D Burn of second degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter +T24292S Burn of second degree of multiple sites of left lower limb, except ankle and foot, sequela +T24299A Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter +T24299D Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter +T24299S Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot, sequela +T24301A Burn of third degree of unspecified site of right lower limb, except ankle and foot, initial encounter +T24301D Burn of third degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter +T24301S Burn of third degree of unspecified site of right lower limb, except ankle and foot, sequela +T24302A Burn of third degree of unspecified site of left lower limb, except ankle and foot, initial encounter +T24302D Burn of third degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter +T24302S Burn of third degree of unspecified site of left lower limb, except ankle and foot, sequela +T24309A Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter +T24309D Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter +T24309S Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot, sequela +T24311A Burn of third degree of right thigh, initial encounter +T24311D Burn of third degree of right thigh, subsequent encounter +T24311S Burn of third degree of right thigh, sequela +T24312A Burn of third degree of left thigh, initial encounter +T24312D Burn of third degree of left thigh, subsequent encounter +T24312S Burn of third degree of left thigh, sequela +T24319A Burn of third degree of unspecified thigh, initial encounter +T24319D Burn of third degree of unspecified thigh, subsequent encounter +T24319S Burn of third degree of unspecified thigh, sequela +T24321A Burn of third degree of right knee, initial encounter +T24321D Burn of third degree of right knee, subsequent encounter +T24321S Burn of third degree of right knee, sequela +T24322A Burn of third degree of left knee, initial encounter +T24322D Burn of third degree of left knee, subsequent encounter +T24322S Burn of third degree of left knee, sequela +T24329A Burn of third degree of unspecified knee, initial encounter +T24329D Burn of third degree of unspecified knee, subsequent encounter +T24329S Burn of third degree of unspecified knee, sequela +T24331A Burn of third degree of right lower leg, initial encounter +T24331D Burn of third degree of right lower leg, subsequent encounter +T24331S Burn of third degree of right lower leg, sequela +T24332A Burn of third degree of left lower leg, initial encounter +T24332D Burn of third degree of left lower leg, subsequent encounter +T24332S Burn of third degree of left lower leg, sequela +T24339A Burn of third degree of unspecified lower leg, initial encounter +T24339D Burn of third degree of unspecified lower leg, subsequent encounter +T24339S Burn of third degree of unspecified lower leg, sequela +T24391A Burn of third degree of multiple sites of right lower limb, except ankle and foot, initial encounter +T24391D Burn of third degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter +T24391S Burn of third degree of multiple sites of right lower limb, except ankle and foot, sequela +T24392A Burn of third degree of multiple sites of left lower limb, except ankle and foot, initial encounter +T24392D Burn of third degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter +T24392S Burn of third degree of multiple sites of left lower limb, except ankle and foot, sequela +T24399A Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter +T24399D Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter +T24399S Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot, sequela +T24401A Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot, initial encounter +T24401D Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter +T24401S Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot, sequela +T24402A Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot, initial encounter +T24402D Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter +T24402S Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot, sequela +T24409A Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter +T24409D Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter +T24409S Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, sequela +T24411A Corrosion of unspecified degree of right thigh, initial encounter +T24411D Corrosion of unspecified degree of right thigh, subsequent encounter +T24411S Corrosion of unspecified degree of right thigh, sequela +T24412A Corrosion of unspecified degree of left thigh, initial encounter +T24412D Corrosion of unspecified degree of left thigh, subsequent encounter +T24412S Corrosion of unspecified degree of left thigh, sequela +T24419A Corrosion of unspecified degree of unspecified thigh, initial encounter +T24419D Corrosion of unspecified degree of unspecified thigh, subsequent encounter +T24419S Corrosion of unspecified degree of unspecified thigh, sequela +T24421A Corrosion of unspecified degree of right knee, initial encounter +T24421D Corrosion of unspecified degree of right knee, subsequent encounter +T24421S Corrosion of unspecified degree of right knee, sequela +T24422A Corrosion of unspecified degree of left knee, initial encounter +T24422D Corrosion of unspecified degree of left knee, subsequent encounter +T24422S Corrosion of unspecified degree of left knee, sequela +T24429A Corrosion of unspecified degree of unspecified knee, initial encounter +T24429D Corrosion of unspecified degree of unspecified knee, subsequent encounter +T24429S Corrosion of unspecified degree of unspecified knee, sequela +T24431A Corrosion of unspecified degree of right lower leg, initial encounter +T24431D Corrosion of unspecified degree of right lower leg, subsequent encounter +T24431S Corrosion of unspecified degree of right lower leg, sequela +T24432A Corrosion of unspecified degree of left lower leg, initial encounter +T24432D Corrosion of unspecified degree of left lower leg, subsequent encounter +T24432S Corrosion of unspecified degree of left lower leg, sequela +T24439A Corrosion of unspecified degree of unspecified lower leg, initial encounter +T24439D Corrosion of unspecified degree of unspecified lower leg, subsequent encounter +T24439S Corrosion of unspecified degree of unspecified lower leg, sequela +T24491A Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot, initial encounter +T24491D Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter +T24491S Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot, sequela +T24492A Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot, initial encounter +T24492D Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter +T24492S Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot, sequela +T24499A Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter +T24499D Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter +T24499S Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, sequela +T24501A Corrosion of first degree of unspecified site of right lower limb, except ankle and foot, initial encounter +T24501D Corrosion of first degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter +T24501S Corrosion of first degree of unspecified site of right lower limb, except ankle and foot, sequela +T24502A Corrosion of first degree of unspecified site of left lower limb, except ankle and foot, initial encounter +T24502D Corrosion of first degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter +T24502S Corrosion of first degree of unspecified site of left lower limb, except ankle and foot, sequela +T24509A Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter +T24509D Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter +T24509S Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot, sequela +T24511A Corrosion of first degree of right thigh, initial encounter +T24511D Corrosion of first degree of right thigh, subsequent encounter +T24511S Corrosion of first degree of right thigh, sequela +T24512A Corrosion of first degree of left thigh, initial encounter +T24512D Corrosion of first degree of left thigh, subsequent encounter +T24512S Corrosion of first degree of left thigh, sequela +T24519A Corrosion of first degree of unspecified thigh, initial encounter +T24519D Corrosion of first degree of unspecified thigh, subsequent encounter +T24519S Corrosion of first degree of unspecified thigh, sequela +T24521A Corrosion of first degree of right knee, initial encounter +T24521D Corrosion of first degree of right knee, subsequent encounter +T24521S Corrosion of first degree of right knee, sequela +T24522A Corrosion of first degree of left knee, initial encounter +T24522D Corrosion of first degree of left knee, subsequent encounter +T24522S Corrosion of first degree of left knee, sequela +T24529A Corrosion of first degree of unspecified knee, initial encounter +T24529D Corrosion of first degree of unspecified knee, subsequent encounter +T24529S Corrosion of first degree of unspecified knee, sequela +T24531A Corrosion of first degree of right lower leg, initial encounter +T24531D Corrosion of first degree of right lower leg, subsequent encounter +T24531S Corrosion of first degree of right lower leg, sequela +T24532A Corrosion of first degree of left lower leg, initial encounter +T24532D Corrosion of first degree of left lower leg, subsequent encounter +T24532S Corrosion of first degree of left lower leg, sequela +T24539A Corrosion of first degree of unspecified lower leg, initial encounter +T24539D Corrosion of first degree of unspecified lower leg, subsequent encounter +T24539S Corrosion of first degree of unspecified lower leg, sequela +T24591A Corrosion of first degree of multiple sites of right lower limb, except ankle and foot, initial encounter +T24591D Corrosion of first degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter +T24591S Corrosion of first degree of multiple sites of right lower limb, except ankle and foot, sequela +T24592A Corrosion of first degree of multiple sites of left lower limb, except ankle and foot, initial encounter +T24592D Corrosion of first degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter +T24592S Corrosion of first degree of multiple sites of left lower limb, except ankle and foot, sequela +T24599A Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter +T24599D Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter +T24599S Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot, sequela +T24601A Corrosion of second degree of unspecified site of right lower limb, except ankle and foot, initial encounter +T24601D Corrosion of second degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter +T24601S Corrosion of second degree of unspecified site of right lower limb, except ankle and foot, sequela +T24602A Corrosion of second degree of unspecified site of left lower limb, except ankle and foot, initial encounter +T24602D Corrosion of second degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter +T24602S Corrosion of second degree of unspecified site of left lower limb, except ankle and foot, sequela +T24609A Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter +T24609D Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter +T24609S Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot, sequela +T24611A Corrosion of second degree of right thigh, initial encounter +T24611D Corrosion of second degree of right thigh, subsequent encounter +T24611S Corrosion of second degree of right thigh, sequela +T24612A Corrosion of second degree of left thigh, initial encounter +T24612D Corrosion of second degree of left thigh, subsequent encounter +T24612S Corrosion of second degree of left thigh, sequela +T24619A Corrosion of second degree of unspecified thigh, initial encounter +T24619D Corrosion of second degree of unspecified thigh, subsequent encounter +T24619S Corrosion of second degree of unspecified thigh, sequela +T24621A Corrosion of second degree of right knee, initial encounter +T24621D Corrosion of second degree of right knee, subsequent encounter +T24621S Corrosion of second degree of right knee, sequela +T24622A Corrosion of second degree of left knee, initial encounter +T24622D Corrosion of second degree of left knee, subsequent encounter +T24622S Corrosion of second degree of left knee, sequela +T24629A Corrosion of second degree of unspecified knee, initial encounter +T24629D Corrosion of second degree of unspecified knee, subsequent encounter +T24629S Corrosion of second degree of unspecified knee, sequela +T24631A Corrosion of second degree of right lower leg, initial encounter +T24631D Corrosion of second degree of right lower leg, subsequent encounter +T24631S Corrosion of second degree of right lower leg, sequela +T24632A Corrosion of second degree of left lower leg, initial encounter +T24632D Corrosion of second degree of left lower leg, subsequent encounter +T24632S Corrosion of second degree of left lower leg, sequela +T24639A Corrosion of second degree of unspecified lower leg, initial encounter +T24639D Corrosion of second degree of unspecified lower leg, subsequent encounter +T24639S Corrosion of second degree of unspecified lower leg, sequela +T24691A Corrosion of second degree of multiple sites of right lower limb, except ankle and foot, initial encounter +T24691D Corrosion of second degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter +T24691S Corrosion of second degree of multiple sites of right lower limb, except ankle and foot, sequela +T24692A Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, initial encounter +T24692D Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter +T24692S Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, sequela +T24699A Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter +T24699D Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter +T24699S Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot, sequela +T24701A Corrosion of third degree of unspecified site of right lower limb, except ankle and foot, initial encounter +T24701D Corrosion of third degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter +T24701S Corrosion of third degree of unspecified site of right lower limb, except ankle and foot, sequela +T24702A Corrosion of third degree of unspecified site of left lower limb, except ankle and foot, initial encounter +T24702D Corrosion of third degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter +T24702S Corrosion of third degree of unspecified site of left lower limb, except ankle and foot, sequela +T24709A Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter +T24709D Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter +T24709S Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot, sequela +T24711A Corrosion of third degree of right thigh, initial encounter +T24711D Corrosion of third degree of right thigh, subsequent encounter +T24711S Corrosion of third degree of right thigh, sequela +T24712A Corrosion of third degree of left thigh, initial encounter +T24712D Corrosion of third degree of left thigh, subsequent encounter +T24712S Corrosion of third degree of left thigh, sequela +T24719A Corrosion of third degree of unspecified thigh, initial encounter +T24719D Corrosion of third degree of unspecified thigh, subsequent encounter +T24719S Corrosion of third degree of unspecified thigh, sequela +T24721A Corrosion of third degree of right knee, initial encounter +T24721D Corrosion of third degree of right knee, subsequent encounter +T24721S Corrosion of third degree of right knee, sequela +T24722A Corrosion of third degree of left knee, initial encounter +T24722D Corrosion of third degree of left knee, subsequent encounter +T24722S Corrosion of third degree of left knee, sequela +T24729A Corrosion of third degree of unspecified knee, initial encounter +T24729D Corrosion of third degree of unspecified knee, subsequent encounter +T24729S Corrosion of third degree of unspecified knee, sequela +T24731A Corrosion of third degree of right lower leg, initial encounter +T24731D Corrosion of third degree of right lower leg, subsequent encounter +T24731S Corrosion of third degree of right lower leg, sequela +T24732A Corrosion of third degree of left lower leg, initial encounter +T24732D Corrosion of third degree of left lower leg, subsequent encounter +T24732S Corrosion of third degree of left lower leg, sequela +T24739A Corrosion of third degree of unspecified lower leg, initial encounter +T24739D Corrosion of third degree of unspecified lower leg, subsequent encounter +T24739S Corrosion of third degree of unspecified lower leg, sequela +T24791A Corrosion of third degree of multiple sites of right lower limb, except ankle and foot, initial encounter +T24791D Corrosion of third degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter +T24791S Corrosion of third degree of multiple sites of right lower limb, except ankle and foot, sequela +T24792A Corrosion of third degree of multiple sites of left lower limb, except ankle and foot, initial encounter +T24792D Corrosion of third degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter +T24792S Corrosion of third degree of multiple sites of left lower limb, except ankle and foot, sequela +T24799A Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter +T24799D Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter +T24799S Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot, sequela +T25011A Burn of unspecified degree of right ankle, initial encounter +T25011D Burn of unspecified degree of right ankle, subsequent encounter +T25011S Burn of unspecified degree of right ankle, sequela +T25012A Burn of unspecified degree of left ankle, initial encounter +T25012D Burn of unspecified degree of left ankle, subsequent encounter +T25012S Burn of unspecified degree of left ankle, sequela +T25019A Burn of unspecified degree of unspecified ankle, initial encounter +T25019D Burn of unspecified degree of unspecified ankle, subsequent encounter +T25019S Burn of unspecified degree of unspecified ankle, sequela +T25021A Burn of unspecified degree of right foot, initial encounter +T25021D Burn of unspecified degree of right foot, subsequent encounter +T25021S Burn of unspecified degree of right foot, sequela +T25022A Burn of unspecified degree of left foot, initial encounter +T25022D Burn of unspecified degree of left foot, subsequent encounter +T25022S Burn of unspecified degree of left foot, sequela +T25029A Burn of unspecified degree of unspecified foot, initial encounter +T25029D Burn of unspecified degree of unspecified foot, subsequent encounter +T25029S Burn of unspecified degree of unspecified foot, sequela +T25031A Burn of unspecified degree of right toe(s) (nail), initial encounter +T25031D Burn of unspecified degree of right toe(s) (nail), subsequent encounter +T25031S Burn of unspecified degree of right toe(s) (nail), sequela +T25032A Burn of unspecified degree of left toe(s) (nail), initial encounter +T25032D Burn of unspecified degree of left toe(s) (nail), subsequent encounter +T25032S Burn of unspecified degree of left toe(s) (nail), sequela +T25039A Burn of unspecified degree of unspecified toe(s) (nail), initial encounter +T25039D Burn of unspecified degree of unspecified toe(s) (nail), subsequent encounter +T25039S Burn of unspecified degree of unspecified toe(s) (nail), sequela +T25091A Burn of unspecified degree of multiple sites of right ankle and foot, initial encounter +T25091D Burn of unspecified degree of multiple sites of right ankle and foot, subsequent encounter +T25091S Burn of unspecified degree of multiple sites of right ankle and foot, sequela +T25092A Burn of unspecified degree of multiple sites of left ankle and foot, initial encounter +T25092D Burn of unspecified degree of multiple sites of left ankle and foot, subsequent encounter +T25092S Burn of unspecified degree of multiple sites of left ankle and foot, sequela +T25099A Burn of unspecified degree of multiple sites of unspecified ankle and foot, initial encounter +T25099D Burn of unspecified degree of multiple sites of unspecified ankle and foot, subsequent encounter +T25099S Burn of unspecified degree of multiple sites of unspecified ankle and foot, sequela +T25111A Burn of first degree of right ankle, initial encounter +T25111D Burn of first degree of right ankle, subsequent encounter +T25111S Burn of first degree of right ankle, sequela +T25112A Burn of first degree of left ankle, initial encounter +T25112D Burn of first degree of left ankle, subsequent encounter +T25112S Burn of first degree of left ankle, sequela +T25119A Burn of first degree of unspecified ankle, initial encounter +T25119D Burn of first degree of unspecified ankle, subsequent encounter +T25119S Burn of first degree of unspecified ankle, sequela +T25121A Burn of first degree of right foot, initial encounter +T25121D Burn of first degree of right foot, subsequent encounter +T25121S Burn of first degree of right foot, sequela +T25122A Burn of first degree of left foot, initial encounter +T25122D Burn of first degree of left foot, subsequent encounter +T25122S Burn of first degree of left foot, sequela +T25129A Burn of first degree of unspecified foot, initial encounter +T25129D Burn of first degree of unspecified foot, subsequent encounter +T25129S Burn of first degree of unspecified foot, sequela +T25131A Burn of first degree of right toe(s) (nail), initial encounter +T25131D Burn of first degree of right toe(s) (nail), subsequent encounter +T25131S Burn of first degree of right toe(s) (nail), sequela +T25132A Burn of first degree of left toe(s) (nail), initial encounter +T25132D Burn of first degree of left toe(s) (nail), subsequent encounter +T25132S Burn of first degree of left toe(s) (nail), sequela +T25139A Burn of first degree of unspecified toe(s) (nail), initial encounter +T25139D Burn of first degree of unspecified toe(s) (nail), subsequent encounter +T25139S Burn of first degree of unspecified toe(s) (nail), sequela +T25191A Burn of first degree of multiple sites of right ankle and foot, initial encounter +T25191D Burn of first degree of multiple sites of right ankle and foot, subsequent encounter +T25191S Burn of first degree of multiple sites of right ankle and foot, sequela +T25192A Burn of first degree of multiple sites of left ankle and foot, initial encounter +T25192D Burn of first degree of multiple sites of left ankle and foot, subsequent encounter +T25192S Burn of first degree of multiple sites of left ankle and foot, sequela +T25199A Burn of first degree of multiple sites of unspecified ankle and foot, initial encounter +T25199D Burn of first degree of multiple sites of unspecified ankle and foot, subsequent encounter +T25199S Burn of first degree of multiple sites of unspecified ankle and foot, sequela +T25211A Burn of second degree of right ankle, initial encounter +T25211D Burn of second degree of right ankle, subsequent encounter +T25211S Burn of second degree of right ankle, sequela +T25212A Burn of second degree of left ankle, initial encounter +T25212D Burn of second degree of left ankle, subsequent encounter +T25212S Burn of second degree of left ankle, sequela +T25219A Burn of second degree of unspecified ankle, initial encounter +T25219D Burn of second degree of unspecified ankle, subsequent encounter +T25219S Burn of second degree of unspecified ankle, sequela +T25221A Burn of second degree of right foot, initial encounter +T25221D Burn of second degree of right foot, subsequent encounter +T25221S Burn of second degree of right foot, sequela +T25222A Burn of second degree of left foot, initial encounter +T25222D Burn of second degree of left foot, subsequent encounter +T25222S Burn of second degree of left foot, sequela +T25229A Burn of second degree of unspecified foot, initial encounter +T25229D Burn of second degree of unspecified foot, subsequent encounter +T25229S Burn of second degree of unspecified foot, sequela +T25231A Burn of second degree of right toe(s) (nail), initial encounter +T25231D Burn of second degree of right toe(s) (nail), subsequent encounter +T25231S Burn of second degree of right toe(s) (nail), sequela +T25232A Burn of second degree of left toe(s) (nail), initial encounter +T25232D Burn of second degree of left toe(s) (nail), subsequent encounter +T25232S Burn of second degree of left toe(s) (nail), sequela +T25239A Burn of second degree of unspecified toe(s) (nail), initial encounter +T25239D Burn of second degree of unspecified toe(s) (nail), subsequent encounter +T25239S Burn of second degree of unspecified toe(s) (nail), sequela +T25291A Burn of second degree of multiple sites of right ankle and foot, initial encounter +T25291D Burn of second degree of multiple sites of right ankle and foot, subsequent encounter +T25291S Burn of second degree of multiple sites of right ankle and foot, sequela +T25292A Burn of second degree of multiple sites of left ankle and foot, initial encounter +T25292D Burn of second degree of multiple sites of left ankle and foot, subsequent encounter +T25292S Burn of second degree of multiple sites of left ankle and foot, sequela +T25299A Burn of second degree of multiple sites of unspecified ankle and foot, initial encounter +T25299D Burn of second degree of multiple sites of unspecified ankle and foot, subsequent encounter +T25299S Burn of second degree of multiple sites of unspecified ankle and foot, sequela +T25311A Burn of third degree of right ankle, initial encounter +T25311D Burn of third degree of right ankle, subsequent encounter +T25311S Burn of third degree of right ankle, sequela +T25312A Burn of third degree of left ankle, initial encounter +T25312D Burn of third degree of left ankle, subsequent encounter +T25312S Burn of third degree of left ankle, sequela +T25319A Burn of third degree of unspecified ankle, initial encounter +T25319D Burn of third degree of unspecified ankle, subsequent encounter +T25319S Burn of third degree of unspecified ankle, sequela +T25321A Burn of third degree of right foot, initial encounter +T25321D Burn of third degree of right foot, subsequent encounter +T25321S Burn of third degree of right foot, sequela +T25322A Burn of third degree of left foot, initial encounter +T25322D Burn of third degree of left foot, subsequent encounter +T25322S Burn of third degree of left foot, sequela +T25329A Burn of third degree of unspecified foot, initial encounter +T25329D Burn of third degree of unspecified foot, subsequent encounter +T25329S Burn of third degree of unspecified foot, sequela +T25331A Burn of third degree of right toe(s) (nail), initial encounter +T25331D Burn of third degree of right toe(s) (nail), subsequent encounter +T25331S Burn of third degree of right toe(s) (nail), sequela +T25332A Burn of third degree of left toe(s) (nail), initial encounter +T25332D Burn of third degree of left toe(s) (nail), subsequent encounter +T25332S Burn of third degree of left toe(s) (nail), sequela +T25339A Burn of third degree of unspecified toe(s) (nail), initial encounter +T25339D Burn of third degree of unspecified toe(s) (nail), subsequent encounter +T25339S Burn of third degree of unspecified toe(s) (nail), sequela +T25391A Burn of third degree of multiple sites of right ankle and foot, initial encounter +T25391D Burn of third degree of multiple sites of right ankle and foot, subsequent encounter +T25391S Burn of third degree of multiple sites of right ankle and foot, sequela +T25392A Burn of third degree of multiple sites of left ankle and foot, initial encounter +T25392D Burn of third degree of multiple sites of left ankle and foot, subsequent encounter +T25392S Burn of third degree of multiple sites of left ankle and foot, sequela +T25399A Burn of third degree of multiple sites of unspecified ankle and foot, initial encounter +T25399D Burn of third degree of multiple sites of unspecified ankle and foot, subsequent encounter +T25399S Burn of third degree of multiple sites of unspecified ankle and foot, sequela +T25411A Corrosion of unspecified degree of right ankle, initial encounter +T25411D Corrosion of unspecified degree of right ankle, subsequent encounter +T25411S Corrosion of unspecified degree of right ankle, sequela +T25412A Corrosion of unspecified degree of left ankle, initial encounter +T25412D Corrosion of unspecified degree of left ankle, subsequent encounter +T25412S Corrosion of unspecified degree of left ankle, sequela +T25419A Corrosion of unspecified degree of unspecified ankle, initial encounter +T25419D Corrosion of unspecified degree of unspecified ankle, subsequent encounter +T25419S Corrosion of unspecified degree of unspecified ankle, sequela +T25421A Corrosion of unspecified degree of right foot, initial encounter +T25421D Corrosion of unspecified degree of right foot, subsequent encounter +T25421S Corrosion of unspecified degree of right foot, sequela +T25422A Corrosion of unspecified degree of left foot, initial encounter +T25422D Corrosion of unspecified degree of left foot, subsequent encounter +T25422S Corrosion of unspecified degree of left foot, sequela +T25429A Corrosion of unspecified degree of unspecified foot, initial encounter +T25429D Corrosion of unspecified degree of unspecified foot, subsequent encounter +T25429S Corrosion of unspecified degree of unspecified foot, sequela +T25431A Corrosion of unspecified degree of right toe(s) (nail), initial encounter +T25431D Corrosion of unspecified degree of right toe(s) (nail), subsequent encounter +T25431S Corrosion of unspecified degree of right toe(s) (nail), sequela +T25432A Corrosion of unspecified degree of left toe(s) (nail), initial encounter +T25432D Corrosion of unspecified degree of left toe(s) (nail), subsequent encounter +T25432S Corrosion of unspecified degree of left toe(s) (nail), sequela +T25439A Corrosion of unspecified degree of unspecified toe(s) (nail), initial encounter +T25439D Corrosion of unspecified degree of unspecified toe(s) (nail), subsequent encounter +T25439S Corrosion of unspecified degree of unspecified toe(s) (nail), sequela +T25491A Corrosion of unspecified degree of multiple sites of right ankle and foot, initial encounter +T25491D Corrosion of unspecified degree of multiple sites of right ankle and foot, subsequent encounter +T25491S Corrosion of unspecified degree of multiple sites of right ankle and foot, sequela +T25492A Corrosion of unspecified degree of multiple sites of left ankle and foot, initial encounter +T25492D Corrosion of unspecified degree of multiple sites of left ankle and foot, subsequent encounter +T25492S Corrosion of unspecified degree of multiple sites of left ankle and foot, sequela +T25499A Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, initial encounter +T25499D Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, subsequent encounter +T25499S Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, sequela +T25511A Corrosion of first degree of right ankle, initial encounter +T25511D Corrosion of first degree of right ankle, subsequent encounter +T25511S Corrosion of first degree of right ankle, sequela +T25512A Corrosion of first degree of left ankle, initial encounter +T25512D Corrosion of first degree of left ankle, subsequent encounter +T25512S Corrosion of first degree of left ankle, sequela +T25519A Corrosion of first degree of unspecified ankle, initial encounter +T25519D Corrosion of first degree of unspecified ankle, subsequent encounter +T25519S Corrosion of first degree of unspecified ankle, sequela +T25521A Corrosion of first degree of right foot, initial encounter +T25521D Corrosion of first degree of right foot, subsequent encounter +T25521S Corrosion of first degree of right foot, sequela +T25522A Corrosion of first degree of left foot, initial encounter +T25522D Corrosion of first degree of left foot, subsequent encounter +T25522S Corrosion of first degree of left foot, sequela +T25529A Corrosion of first degree of unspecified foot, initial encounter +T25529D Corrosion of first degree of unspecified foot, subsequent encounter +T25529S Corrosion of first degree of unspecified foot, sequela +T25531A Corrosion of first degree of right toe(s) (nail), initial encounter +T25531D Corrosion of first degree of right toe(s) (nail), subsequent encounter +T25531S Corrosion of first degree of right toe(s) (nail), sequela +T25532A Corrosion of first degree of left toe(s) (nail), initial encounter +T25532D Corrosion of first degree of left toe(s) (nail), subsequent encounter +T25532S Corrosion of first degree of left toe(s) (nail), sequela +T25539A Corrosion of first degree of unspecified toe(s) (nail), initial encounter +T25539D Corrosion of first degree of unspecified toe(s) (nail), subsequent encounter +T25539S Corrosion of first degree of unspecified toe(s) (nail), sequela +T25591A Corrosion of first degree of multiple sites of right ankle and foot, initial encounter +T25591D Corrosion of first degree of multiple sites of right ankle and foot, subsequent encounter +T25591S Corrosion of first degree of multiple sites of right ankle and foot, sequela +T25592A Corrosion of first degree of multiple sites of left ankle and foot, initial encounter +T25592D Corrosion of first degree of multiple sites of left ankle and foot, subsequent encounter +T25592S Corrosion of first degree of multiple sites of left ankle and foot, sequela +T25599A Corrosion of first degree of multiple sites of unspecified ankle and foot, initial encounter +T25599D Corrosion of first degree of multiple sites of unspecified ankle and foot, subsequent encounter +T25599S Corrosion of first degree of multiple sites of unspecified ankle and foot, sequela +T25611A Corrosion of second degree of right ankle, initial encounter +T25611D Corrosion of second degree of right ankle, subsequent encounter +T25611S Corrosion of second degree of right ankle, sequela +T25612A Corrosion of second degree of left ankle, initial encounter +T25612D Corrosion of second degree of left ankle, subsequent encounter +T25612S Corrosion of second degree of left ankle, sequela +T25619A Corrosion of second degree of unspecified ankle, initial encounter +T25619D Corrosion of second degree of unspecified ankle, subsequent encounter +T25619S Corrosion of second degree of unspecified ankle, sequela +T25621A Corrosion of second degree of right foot, initial encounter +T25621D Corrosion of second degree of right foot, subsequent encounter +T25621S Corrosion of second degree of right foot, sequela +T25622A Corrosion of second degree of left foot, initial encounter +T25622D Corrosion of second degree of left foot, subsequent encounter +T25622S Corrosion of second degree of left foot, sequela +T25629A Corrosion of second degree of unspecified foot, initial encounter +T25629D Corrosion of second degree of unspecified foot, subsequent encounter +T25629S Corrosion of second degree of unspecified foot, sequela +T25631A Corrosion of second degree of right toe(s) (nail), initial encounter +T25631D Corrosion of second degree of right toe(s) (nail), subsequent encounter +T25631S Corrosion of second degree of right toe(s) (nail), sequela +T25632A Corrosion of second degree of left toe(s) (nail), initial encounter +T25632D Corrosion of second degree of left toe(s) (nail), subsequent encounter +T25632S Corrosion of second degree of left toe(s) (nail), sequela +T25639A Corrosion of second degree of unspecified toe(s) (nail), initial encounter +T25639D Corrosion of second degree of unspecified toe(s) (nail), subsequent encounter +T25639S Corrosion of second degree of unspecified toe(s) (nail), sequela +T25691A Corrosion of second degree of right ankle and foot, initial encounter +T25691D Corrosion of second degree of right ankle and foot, subsequent encounter +T25691S Corrosion of second degree of right ankle and foot, sequela +T25692A Corrosion of second degree of left ankle and foot, initial encounter +T25692D Corrosion of second degree of left ankle and foot, subsequent encounter +T25692S Corrosion of second degree of left ankle and foot, sequela +T25699A Corrosion of second degree of unspecified ankle and foot, initial encounter +T25699D Corrosion of second degree of unspecified ankle and foot, subsequent encounter +T25699S Corrosion of second degree of unspecified ankle and foot, sequela +T25711A Corrosion of third degree of right ankle, initial encounter +T25711D Corrosion of third degree of right ankle, subsequent encounter +T25711S Corrosion of third degree of right ankle, sequela +T25712A Corrosion of third degree of left ankle, initial encounter +T25712D Corrosion of third degree of left ankle, subsequent encounter +T25712S Corrosion of third degree of left ankle, sequela +T25719A Corrosion of third degree of unspecified ankle, initial encounter +T25719D Corrosion of third degree of unspecified ankle, subsequent encounter +T25719S Corrosion of third degree of unspecified ankle, sequela +T25721A Corrosion of third degree of right foot, initial encounter +T25721D Corrosion of third degree of right foot, subsequent encounter +T25721S Corrosion of third degree of right foot, sequela +T25722A Corrosion of third degree of left foot, initial encounter +T25722D Corrosion of third degree of left foot, subsequent encounter +T25722S Corrosion of third degree of left foot, sequela +T25729A Corrosion of third degree of unspecified foot, initial encounter +T25729D Corrosion of third degree of unspecified foot, subsequent encounter +T25729S Corrosion of third degree of unspecified foot, sequela +T25731A Corrosion of third degree of right toe(s) (nail), initial encounter +T25731D Corrosion of third degree of right toe(s) (nail), subsequent encounter +T25731S Corrosion of third degree of right toe(s) (nail), sequela +T25732A Corrosion of third degree of left toe(s) (nail), initial encounter +T25732D Corrosion of third degree of left toe(s) (nail), subsequent encounter +T25732S Corrosion of third degree of left toe(s) (nail), sequela +T25739A Corrosion of third degree of unspecified toe(s) (nail), initial encounter +T25739D Corrosion of third degree of unspecified toe(s) (nail), subsequent encounter +T25739S Corrosion of third degree of unspecified toe(s) (nail), sequela +T25791A Corrosion of third degree of multiple sites of right ankle and foot, initial encounter +T25791D Corrosion of third degree of multiple sites of right ankle and foot, subsequent encounter +T25791S Corrosion of third degree of multiple sites of right ankle and foot, sequela +T25792A Corrosion of third degree of multiple sites of left ankle and foot, initial encounter +T25792D Corrosion of third degree of multiple sites of left ankle and foot, subsequent encounter +T25792S Corrosion of third degree of multiple sites of left ankle and foot, sequela +T25799A Corrosion of third degree of multiple sites of unspecified ankle and foot, initial encounter +T25799D Corrosion of third degree of multiple sites of unspecified ankle and foot, subsequent encounter +T25799S Corrosion of third degree of multiple sites of unspecified ankle and foot, sequela +T2600XA Burn of unspecified eyelid and periocular area, initial encounter +T2600XD Burn of unspecified eyelid and periocular area, subsequent encounter +T2600XS Burn of unspecified eyelid and periocular area, sequela +T2601XA Burn of right eyelid and periocular area, initial encounter +T2601XD Burn of right eyelid and periocular area, subsequent encounter +T2601XS Burn of right eyelid and periocular area, sequela +T2602XA Burn of left eyelid and periocular area, initial encounter +T2602XD Burn of left eyelid and periocular area, subsequent encounter +T2602XS Burn of left eyelid and periocular area, sequela +T2610XA Burn of cornea and conjunctival sac, unspecified eye, initial encounter +T2610XD Burn of cornea and conjunctival sac, unspecified eye, subsequent encounter +T2610XS Burn of cornea and conjunctival sac, unspecified eye, sequela +T2611XA Burn of cornea and conjunctival sac, right eye, initial encounter +T2611XD Burn of cornea and conjunctival sac, right eye, subsequent encounter +T2611XS Burn of cornea and conjunctival sac, right eye, sequela +T2612XA Burn of cornea and conjunctival sac, left eye, initial encounter +T2612XD Burn of cornea and conjunctival sac, left eye, subsequent encounter +T2612XS Burn of cornea and conjunctival sac, left eye, sequela +T2620XA Burn with resulting rupture and destruction of unspecified eyeball, initial encounter +T2620XD Burn with resulting rupture and destruction of unspecified eyeball, subsequent encounter +T2620XS Burn with resulting rupture and destruction of unspecified eyeball, sequela +T2621XA Burn with resulting rupture and destruction of right eyeball, initial encounter +T2621XD Burn with resulting rupture and destruction of right eyeball, subsequent encounter +T2621XS Burn with resulting rupture and destruction of right eyeball, sequela +T2622XA Burn with resulting rupture and destruction of left eyeball, initial encounter +T2622XD Burn with resulting rupture and destruction of left eyeball, subsequent encounter +T2622XS Burn with resulting rupture and destruction of left eyeball, sequela +T2630XA Burns of other specified parts of unspecified eye and adnexa, initial encounter +T2630XD Burns of other specified parts of unspecified eye and adnexa, subsequent encounter +T2630XS Burns of other specified parts of unspecified eye and adnexa, sequela +T2631XA Burns of other specified parts of right eye and adnexa, initial encounter +T2631XD Burns of other specified parts of right eye and adnexa, subsequent encounter +T2631XS Burns of other specified parts of right eye and adnexa, sequela +T2632XA Burns of other specified parts of left eye and adnexa, initial encounter +T2632XD Burns of other specified parts of left eye and adnexa, subsequent encounter +T2632XS Burns of other specified parts of left eye and adnexa, sequela +T2640XA Burn of unspecified eye and adnexa, part unspecified, initial encounter +T2640XD Burn of unspecified eye and adnexa, part unspecified, subsequent encounter +T2640XS Burn of unspecified eye and adnexa, part unspecified, sequela +T2641XA Burn of right eye and adnexa, part unspecified, initial encounter +T2641XD Burn of right eye and adnexa, part unspecified, subsequent encounter +T2641XS Burn of right eye and adnexa, part unspecified, sequela +T2642XA Burn of left eye and adnexa, part unspecified, initial encounter +T2642XD Burn of left eye and adnexa, part unspecified, subsequent encounter +T2642XS Burn of left eye and adnexa, part unspecified, sequela +T2650XA Corrosion of unspecified eyelid and periocular area, initial encounter +T2650XD Corrosion of unspecified eyelid and periocular area, subsequent encounter +T2650XS Corrosion of unspecified eyelid and periocular area, sequela +T2651XA Corrosion of right eyelid and periocular area, initial encounter +T2651XD Corrosion of right eyelid and periocular area, subsequent encounter +T2651XS Corrosion of right eyelid and periocular area, sequela +T2652XA Corrosion of left eyelid and periocular area, initial encounter +T2652XD Corrosion of left eyelid and periocular area, subsequent encounter +T2652XS Corrosion of left eyelid and periocular area, sequela +T2660XA Corrosion of cornea and conjunctival sac, unspecified eye, initial encounter +T2660XD Corrosion of cornea and conjunctival sac, unspecified eye, subsequent encounter +T2660XS Corrosion of cornea and conjunctival sac, unspecified eye, sequela +T2661XA Corrosion of cornea and conjunctival sac, right eye, initial encounter +T2661XD Corrosion of cornea and conjunctival sac, right eye, subsequent encounter +T2661XS Corrosion of cornea and conjunctival sac, right eye, sequela +T2662XA Corrosion of cornea and conjunctival sac, left eye, initial encounter +T2662XD Corrosion of cornea and conjunctival sac, left eye, subsequent encounter +T2662XS Corrosion of cornea and conjunctival sac, left eye, sequela +T2670XA Corrosion with resulting rupture and destruction of unspecified eyeball, initial encounter +T2670XD Corrosion with resulting rupture and destruction of unspecified eyeball, subsequent encounter +T2670XS Corrosion with resulting rupture and destruction of unspecified eyeball, sequela +T2671XA Corrosion with resulting rupture and destruction of right eyeball, initial encounter +T2671XD Corrosion with resulting rupture and destruction of right eyeball, subsequent encounter +T2671XS Corrosion with resulting rupture and destruction of right eyeball, sequela +T2672XA Corrosion with resulting rupture and destruction of left eyeball, initial encounter +T2672XD Corrosion with resulting rupture and destruction of left eyeball, subsequent encounter +T2672XS Corrosion with resulting rupture and destruction of left eyeball, sequela +T2680XA Corrosions of other specified parts of unspecified eye and adnexa, initial encounter +T2680XD Corrosions of other specified parts of unspecified eye and adnexa, subsequent encounter +T2680XS Corrosions of other specified parts of unspecified eye and adnexa, sequela +T2681XA Corrosions of other specified parts of right eye and adnexa, initial encounter +T2681XD Corrosions of other specified parts of right eye and adnexa, subsequent encounter +T2681XS Corrosions of other specified parts of right eye and adnexa, sequela +T2682XA Corrosions of other specified parts of left eye and adnexa, initial encounter +T2682XD Corrosions of other specified parts of left eye and adnexa, subsequent encounter +T2682XS Corrosions of other specified parts of left eye and adnexa, sequela +T2690XA Corrosion of unspecified eye and adnexa, part unspecified, initial encounter +T2690XD Corrosion of unspecified eye and adnexa, part unspecified, subsequent encounter +T2690XS Corrosion of unspecified eye and adnexa, part unspecified, sequela +T2691XA Corrosion of right eye and adnexa, part unspecified, initial encounter +T2691XD Corrosion of right eye and adnexa, part unspecified, subsequent encounter +T2691XS Corrosion of right eye and adnexa, part unspecified, sequela +T2692XA Corrosion of left eye and adnexa, part unspecified, initial encounter +T2692XD Corrosion of left eye and adnexa, part unspecified, subsequent encounter +T2692XS Corrosion of left eye and adnexa, part unspecified, sequela +T270XXA Burn of larynx and trachea, initial encounter +T270XXD Burn of larynx and trachea, subsequent encounter +T270XXS Burn of larynx and trachea, sequela +T271XXA Burn involving larynx and trachea with lung, initial encounter +T271XXD Burn involving larynx and trachea with lung, subsequent encounter +T271XXS Burn involving larynx and trachea with lung, sequela +T272XXA Burn of other parts of respiratory tract, initial encounter +T272XXD Burn of other parts of respiratory tract, subsequent encounter +T272XXS Burn of other parts of respiratory tract, sequela +T273XXA Burn of respiratory tract, part unspecified, initial encounter +T273XXD Burn of respiratory tract, part unspecified, subsequent encounter +T273XXS Burn of respiratory tract, part unspecified, sequela +T274XXA Corrosion of larynx and trachea, initial encounter +T274XXD Corrosion of larynx and trachea, subsequent encounter +T274XXS Corrosion of larynx and trachea, sequela +T275XXA Corrosion involving larynx and trachea with lung, initial encounter +T275XXD Corrosion involving larynx and trachea with lung, subsequent encounter +T275XXS Corrosion involving larynx and trachea with lung, sequela +T276XXA Corrosion of other parts of respiratory tract, initial encounter +T276XXD Corrosion of other parts of respiratory tract, subsequent encounter +T276XXS Corrosion of other parts of respiratory tract, sequela +T277XXA Corrosion of respiratory tract, part unspecified, initial encounter +T277XXD Corrosion of respiratory tract, part unspecified, subsequent encounter +T277XXS Corrosion of respiratory tract, part unspecified, sequela +T280XXA Burn of mouth and pharynx, initial encounter +T280XXD Burn of mouth and pharynx, subsequent encounter +T280XXS Burn of mouth and pharynx, sequela +T281XXA Burn of esophagus, initial encounter +T281XXD Burn of esophagus, subsequent encounter +T281XXS Burn of esophagus, sequela +T282XXA Burn of other parts of alimentary tract, initial encounter +T282XXD Burn of other parts of alimentary tract, subsequent encounter +T282XXS Burn of other parts of alimentary tract, sequela +T283XXA Burn of internal genitourinary organs, initial encounter +T283XXD Burn of internal genitourinary organs, subsequent encounter +T283XXS Burn of internal genitourinary organs, sequela +T2840XA Burn of unspecified internal organ, initial encounter +T2840XD Burn of unspecified internal organ, subsequent encounter +T2840XS Burn of unspecified internal organ, sequela +T28411A Burn of right ear drum, initial encounter +T28411D Burn of right ear drum, subsequent encounter +T28411S Burn of right ear drum, sequela +T28412A Burn of left ear drum, initial encounter +T28412D Burn of left ear drum, subsequent encounter +T28412S Burn of left ear drum, sequela +T28419A Burn of unspecified ear drum, initial encounter +T28419D Burn of unspecified ear drum, subsequent encounter +T28419S Burn of unspecified ear drum, sequela +T2849XA Burn of other internal organ, initial encounter +T2849XD Burn of other internal organ, subsequent encounter +T2849XS Burn of other internal organ, sequela +T285XXA Corrosion of mouth and pharynx, initial encounter +T285XXD Corrosion of mouth and pharynx, subsequent encounter +T285XXS Corrosion of mouth and pharynx, sequela +T286XXA Corrosion of esophagus, initial encounter +T286XXD Corrosion of esophagus, subsequent encounter +T286XXS Corrosion of esophagus, sequela +T287XXA Corrosion of other parts of alimentary tract, initial encounter +T287XXD Corrosion of other parts of alimentary tract, subsequent encounter +T287XXS Corrosion of other parts of alimentary tract, sequela +T288XXA Corrosion of internal genitourinary organs, initial encounter +T288XXD Corrosion of internal genitourinary organs, subsequent encounter +T288XXS Corrosion of internal genitourinary organs, sequela +T2890XA Corrosions of unspecified internal organs, initial encounter +T2890XD Corrosions of unspecified internal organs, subsequent encounter +T2890XS Corrosions of unspecified internal organs, sequela +T28911A Corrosions of right ear drum, initial encounter +T28911D Corrosions of right ear drum, subsequent encounter +T28911S Corrosions of right ear drum, sequela +T28912A Corrosions of left ear drum, initial encounter +T28912D Corrosions of left ear drum, subsequent encounter +T28912S Corrosions of left ear drum, sequela +T28919A Corrosions of unspecified ear drum, initial encounter +T28919D Corrosions of unspecified ear drum, subsequent encounter +T28919S Corrosions of unspecified ear drum, sequela +T2899XA Corrosions of other internal organs, initial encounter +T2899XD Corrosions of other internal organs, subsequent encounter +T2899XS Corrosions of other internal organs, sequela +T300 Burn of unspecified body region, unspecified degree +T304 Corrosion of unspecified body region, unspecified degree +T310 Burns involving less than 10% of body surface +T3110 Burns involving 10-19% of body surface with 0% to 9% third degree burns +T3111 Burns involving 10-19% of body surface with 10-19% third degree burns +T3120 Burns involving 20-29% of body surface with 0% to 9% third degree burns +T3121 Burns involving 20-29% of body surface with 10-19% third degree burns +T3122 Burns involving 20-29% of body surface with 20-29% third degree burns +T3130 Burns involving 30-39% of body surface with 0% to 9% third degree burns +T3131 Burns involving 30-39% of body surface with 10-19% third degree burns +T3132 Burns involving 30-39% of body surface with 20-29% third degree burns +T3133 Burns involving 30-39% of body surface with 30-39% third degree burns +T3140 Burns involving 40-49% of body surface with 0% to 9% third degree burns +T3141 Burns involving 40-49% of body surface with 10-19% third degree burns +T3142 Burns involving 40-49% of body surface with 20-29% third degree burns +T3143 Burns involving 40-49% of body surface with 30-39% third degree burns +T3144 Burns involving 40-49% of body surface with 40-49% third degree burns +T3150 Burns involving 50-59% of body surface with 0% to 9% third degree burns +T3151 Burns involving 50-59% of body surface with 10-19% third degree burns +T3152 Burns involving 50-59% of body surface with 20-29% third degree burns +T3153 Burns involving 50-59% of body surface with 30-39% third degree burns +T3154 Burns involving 50-59% of body surface with 40-49% third degree burns +T3155 Burns involving 50-59% of body surface with 50-59% third degree burns +T3160 Burns involving 60-69% of body surface with 0% to 9% third degree burns +T3161 Burns involving 60-69% of body surface with 10-19% third degree burns +T3162 Burns involving 60-69% of body surface with 20-29% third degree burns +T3163 Burns involving 60-69% of body surface with 30-39% third degree burns +T3164 Burns involving 60-69% of body surface with 40-49% third degree burns +T3165 Burns involving 60-69% of body surface with 50-59% third degree burns +T3166 Burns involving 60-69% of body surface with 60-69% third degree burns +T3170 Burns involving 70-79% of body surface with 0% to 9% third degree burns +T3171 Burns involving 70-79% of body surface with 10-19% third degree burns +T3172 Burns involving 70-79% of body surface with 20-29% third degree burns +T3173 Burns involving 70-79% of body surface with 30-39% third degree burns +T3174 Burns involving 70-79% of body surface with 40-49% third degree burns +T3175 Burns involving 70-79% of body surface with 50-59% third degree burns +T3176 Burns involving 70-79% of body surface with 60-69% third degree burns +T3177 Burns involving 70-79% of body surface with 70-79% third degree burns +T3180 Burns involving 80-89% of body surface with 0% to 9% third degree burns +T3181 Burns involving 80-89% of body surface with 10-19% third degree burns +T3182 Burns involving 80-89% of body surface with 20-29% third degree burns +T3183 Burns involving 80-89% of body surface with 30-39% third degree burns +T3184 Burns involving 80-89% of body surface with 40-49% third degree burns +T3185 Burns involving 80-89% of body surface with 50-59% third degree burns +T3186 Burns involving 80-89% of body surface with 60-69% third degree burns +T3187 Burns involving 80-89% of body surface with 70-79% third degree burns +T3188 Burns involving 80-89% of body surface with 80-89% third degree burns +T3190 Burns involving 90% or more of body surface with 0% to 9% third degree burns +T3191 Burns involving 90% or more of body surface with 10-19% third degree burns +T3192 Burns involving 90% or more of body surface with 20-29% third degree burns +T3193 Burns involving 90% or more of body surface with 30-39% third degree burns +T3194 Burns involving 90% or more of body surface with 40-49% third degree burns +T3195 Burns involving 90% or more of body surface with 50-59% third degree burns +T3196 Burns involving 90% or more of body surface with 60-69% third degree burns +T3197 Burns involving 90% or more of body surface with 70-79% third degree burns +T3198 Burns involving 90% or more of body surface with 80-89% third degree burns +T3199 Burns involving 90% or more of body surface with 90% or more third degree burns +T320 Corrosions involving less than 10% of body surface +T3210 Corrosions involving 10-19% of body surface with 0% to 9% third degree corrosion +T3211 Corrosions involving 10-19% of body surface with 10-19% third degree corrosion +T3220 Corrosions involving 20-29% of body surface with 0% to 9% third degree corrosion +T3221 Corrosions involving 20-29% of body surface with 10-19% third degree corrosion +T3222 Corrosions involving 20-29% of body surface with 20-29% third degree corrosion +T3230 Corrosions involving 30-39% of body surface with 0% to 9% third degree corrosion +T3231 Corrosions involving 30-39% of body surface with 10-19% third degree corrosion +T3232 Corrosions involving 30-39% of body surface with 20-29% third degree corrosion +T3233 Corrosions involving 30-39% of body surface with 30-39% third degree corrosion +T3240 Corrosions involving 40-49% of body surface with 0% to 9% third degree corrosion +T3241 Corrosions involving 40-49% of body surface with 10-19% third degree corrosion +T3242 Corrosions involving 40-49% of body surface with 20-29% third degree corrosion +T3243 Corrosions involving 40-49% of body surface with 30-39% third degree corrosion +T3244 Corrosions involving 40-49% of body surface with 40-49% third degree corrosion +T3250 Corrosions involving 50-59% of body surface with 0% to 9% third degree corrosion +T3251 Corrosions involving 50-59% of body surface with 10-19% third degree corrosion +T3252 Corrosions involving 50-59% of body surface with 20-29% third degree corrosion +T3253 Corrosions involving 50-59% of body surface with 30-39% third degree corrosion +T3254 Corrosions involving 50-59% of body surface with 40-49% third degree corrosion +T3255 Corrosions involving 50-59% of body surface with 50-59% third degree corrosion +T3260 Corrosions involving 60-69% of body surface with 0% to 9% third degree corrosion +T3261 Corrosions involving 60-69% of body surface with 10-19% third degree corrosion +T3262 Corrosions involving 60-69% of body surface with 20-29% third degree corrosion +T3263 Corrosions involving 60-69% of body surface with 30-39% third degree corrosion +T3264 Corrosions involving 60-69% of body surface with 40-49% third degree corrosion +T3265 Corrosions involving 60-69% of body surface with 50-59% third degree corrosion +T3266 Corrosions involving 60-69% of body surface with 60-69% third degree corrosion +T3270 Corrosions involving 70-79% of body surface with 0% to 9% third degree corrosion +T3271 Corrosions involving 70-79% of body surface with 10-19% third degree corrosion +T3272 Corrosions involving 70-79% of body surface with 20-29% third degree corrosion +T3273 Corrosions involving 70-79% of body surface with 30-39% third degree corrosion +T3274 Corrosions involving 70-79% of body surface with 40-49% third degree corrosion +T3275 Corrosions involving 70-79% of body surface with 50-59% third degree corrosion +T3276 Corrosions involving 70-79% of body surface with 60-69% third degree corrosion +T3277 Corrosions involving 70-79% of body surface with 70-79% third degree corrosion +T3280 Corrosions involving 80-89% of body surface with 0% to 9% third degree corrosion +T3281 Corrosions involving 80-89% of body surface with 10-19% third degree corrosion +T3282 Corrosions involving 80-89% of body surface with 20-29% third degree corrosion +T3283 Corrosions involving 80-89% of body surface with 30-39% third degree corrosion +T3284 Corrosions involving 80-89% of body surface with 40-49% third degree corrosion +T3285 Corrosions involving 80-89% of body surface with 50-59% third degree corrosion +T3286 Corrosions involving 80-89% of body surface with 60-69% third degree corrosion +T3287 Corrosions involving 80-89% of body surface with 70-79% third degree corrosion +T3288 Corrosions involving 80-89% of body surface with 80-89% third degree corrosion +T3290 Corrosions involving 90% or more of body surface with 0% to 9% third degree corrosion +T3291 Corrosions involving 90% or more of body surface with 10-19% third degree corrosion +T3292 Corrosions involving 90% or more of body surface with 20-29% third degree corrosion +T3293 Corrosions involving 90% or more of body surface with 30-39% third degree corrosion +T3294 Corrosions involving 90% or more of body surface with 40-49% third degree corrosion +T3295 Corrosions involving 90% or more of body surface with 50-59% third degree corrosion +T3296 Corrosions involving 90% or more of body surface with 60-69% third degree corrosion +T3297 Corrosions involving 90% or more of body surface with 70-79% third degree corrosion +T3298 Corrosions involving 90% or more of body surface with 80-89% third degree corrosion +T3299 Corrosions involving 90% or more of body surface with 90% or more third degree corrosion +T33011A Superficial frostbite of right ear, initial encounter +T33011D Superficial frostbite of right ear, subsequent encounter +T33011S Superficial frostbite of right ear, sequela +T33012A Superficial frostbite of left ear, initial encounter +T33012D Superficial frostbite of left ear, subsequent encounter +T33012S Superficial frostbite of left ear, sequela +T33019A Superficial frostbite of unspecified ear, initial encounter +T33019D Superficial frostbite of unspecified ear, subsequent encounter +T33019S Superficial frostbite of unspecified ear, sequela +T3302XA Superficial frostbite of nose, initial encounter +T3302XD Superficial frostbite of nose, subsequent encounter +T3302XS Superficial frostbite of nose, sequela +T3309XA Superficial frostbite of other part of head, initial encounter +T3309XD Superficial frostbite of other part of head, subsequent encounter +T3309XS Superficial frostbite of other part of head, sequela +T331XXA Superficial frostbite of neck, initial encounter +T331XXD Superficial frostbite of neck, subsequent encounter +T331XXS Superficial frostbite of neck, sequela +T332XXA Superficial frostbite of thorax, initial encounter +T332XXD Superficial frostbite of thorax, subsequent encounter +T332XXS Superficial frostbite of thorax, sequela +T333XXA Superficial frostbite of abdominal wall, lower back and pelvis, initial encounter +T333XXD Superficial frostbite of abdominal wall, lower back and pelvis, subsequent encounter +T333XXS Superficial frostbite of abdominal wall, lower back and pelvis, sequela +T3340XA Superficial frostbite of unspecified arm, initial encounter +T3340XD Superficial frostbite of unspecified arm, subsequent encounter +T3340XS Superficial frostbite of unspecified arm, sequela +T3341XA Superficial frostbite of right arm, initial encounter +T3341XD Superficial frostbite of right arm, subsequent encounter +T3341XS Superficial frostbite of right arm, sequela +T3342XA Superficial frostbite of left arm, initial encounter +T3342XD Superficial frostbite of left arm, subsequent encounter +T3342XS Superficial frostbite of left arm, sequela +T33511A Superficial frostbite of right wrist, initial encounter +T33511D Superficial frostbite of right wrist, subsequent encounter +T33511S Superficial frostbite of right wrist, sequela +T33512A Superficial frostbite of left wrist, initial encounter +T33512D Superficial frostbite of left wrist, subsequent encounter +T33512S Superficial frostbite of left wrist, sequela +T33519A Superficial frostbite of unspecified wrist, initial encounter +T33519D Superficial frostbite of unspecified wrist, subsequent encounter +T33519S Superficial frostbite of unspecified wrist, sequela +T33521A Superficial frostbite of right hand, initial encounter +T33521D Superficial frostbite of right hand, subsequent encounter +T33521S Superficial frostbite of right hand, sequela +T33522A Superficial frostbite of left hand, initial encounter +T33522D Superficial frostbite of left hand, subsequent encounter +T33522S Superficial frostbite of left hand, sequela +T33529A Superficial frostbite of unspecified hand, initial encounter +T33529D Superficial frostbite of unspecified hand, subsequent encounter +T33529S Superficial frostbite of unspecified hand, sequela +T33531A Superficial frostbite of right finger(s), initial encounter +T33531D Superficial frostbite of right finger(s), subsequent encounter +T33531S Superficial frostbite of right finger(s), sequela +T33532A Superficial frostbite of left finger(s), initial encounter +T33532D Superficial frostbite of left finger(s), subsequent encounter +T33532S Superficial frostbite of left finger(s), sequela +T33539A Superficial frostbite of unspecified finger(s), initial encounter +T33539D Superficial frostbite of unspecified finger(s), subsequent encounter +T33539S Superficial frostbite of unspecified finger(s), sequela +T3360XA Superficial frostbite of unspecified hip and thigh, initial encounter +T3360XD Superficial frostbite of unspecified hip and thigh, subsequent encounter +T3360XS Superficial frostbite of unspecified hip and thigh, sequela +T3361XA Superficial frostbite of right hip and thigh, initial encounter +T3361XD Superficial frostbite of right hip and thigh, subsequent encounter +T3361XS Superficial frostbite of right hip and thigh, sequela +T3362XA Superficial frostbite of left hip and thigh, initial encounter +T3362XD Superficial frostbite of left hip and thigh, subsequent encounter +T3362XS Superficial frostbite of left hip and thigh, sequela +T3370XA Superficial frostbite of unspecified knee and lower leg, initial encounter +T3370XD Superficial frostbite of unspecified knee and lower leg, subsequent encounter +T3370XS Superficial frostbite of unspecified knee and lower leg, sequela +T3371XA Superficial frostbite of right knee and lower leg, initial encounter +T3371XD Superficial frostbite of right knee and lower leg, subsequent encounter +T3371XS Superficial frostbite of right knee and lower leg, sequela +T3372XA Superficial frostbite of left knee and lower leg, initial encounter +T3372XD Superficial frostbite of left knee and lower leg, subsequent encounter +T3372XS Superficial frostbite of left knee and lower leg, sequela +T33811A Superficial frostbite of right ankle, initial encounter +T33811D Superficial frostbite of right ankle, subsequent encounter +T33811S Superficial frostbite of right ankle, sequela +T33812A Superficial frostbite of left ankle, initial encounter +T33812D Superficial frostbite of left ankle, subsequent encounter +T33812S Superficial frostbite of left ankle, sequela +T33819A Superficial frostbite of unspecified ankle, initial encounter +T33819D Superficial frostbite of unspecified ankle, subsequent encounter +T33819S Superficial frostbite of unspecified ankle, sequela +T33821A Superficial frostbite of right foot, initial encounter +T33821D Superficial frostbite of right foot, subsequent encounter +T33821S Superficial frostbite of right foot, sequela +T33822A Superficial frostbite of left foot, initial encounter +T33822D Superficial frostbite of left foot, subsequent encounter +T33822S Superficial frostbite of left foot, sequela +T33829A Superficial frostbite of unspecified foot, initial encounter +T33829D Superficial frostbite of unspecified foot, subsequent encounter +T33829S Superficial frostbite of unspecified foot, sequela +T33831A Superficial frostbite of right toe(s), initial encounter +T33831D Superficial frostbite of right toe(s), subsequent encounter +T33831S Superficial frostbite of right toe(s), sequela +T33832A Superficial frostbite of left toe(s), initial encounter +T33832D Superficial frostbite of left toe(s), subsequent encounter +T33832S Superficial frostbite of left toe(s), sequela +T33839A Superficial frostbite of unspecified toe(s), initial encounter +T33839D Superficial frostbite of unspecified toe(s), subsequent encounter +T33839S Superficial frostbite of unspecified toe(s), sequela +T3390XA Superficial frostbite of unspecified sites, initial encounter +T3390XD Superficial frostbite of unspecified sites, subsequent encounter +T3390XS Superficial frostbite of unspecified sites, sequela +T3399XA Superficial frostbite of other sites, initial encounter +T3399XD Superficial frostbite of other sites, subsequent encounter +T3399XS Superficial frostbite of other sites, sequela +T34011A Frostbite with tissue necrosis of right ear, initial encounter +T34011D Frostbite with tissue necrosis of right ear, subsequent encounter +T34011S Frostbite with tissue necrosis of right ear, sequela +T34012A Frostbite with tissue necrosis of left ear, initial encounter +T34012D Frostbite with tissue necrosis of left ear, subsequent encounter +T34012S Frostbite with tissue necrosis of left ear, sequela +T34019A Frostbite with tissue necrosis of unspecified ear, initial encounter +T34019D Frostbite with tissue necrosis of unspecified ear, subsequent encounter +T34019S Frostbite with tissue necrosis of unspecified ear, sequela +T3402XA Frostbite with tissue necrosis of nose, initial encounter +T3402XD Frostbite with tissue necrosis of nose, subsequent encounter +T3402XS Frostbite with tissue necrosis of nose, sequela +T3409XA Frostbite with tissue necrosis of other part of head, initial encounter +T3409XD Frostbite with tissue necrosis of other part of head, subsequent encounter +T3409XS Frostbite with tissue necrosis of other part of head, sequela +T341XXA Frostbite with tissue necrosis of neck, initial encounter +T341XXD Frostbite with tissue necrosis of neck, subsequent encounter +T341XXS Frostbite with tissue necrosis of neck, sequela +T342XXA Frostbite with tissue necrosis of thorax, initial encounter +T342XXD Frostbite with tissue necrosis of thorax, subsequent encounter +T342XXS Frostbite with tissue necrosis of thorax, sequela +T343XXA Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, initial encounter +T343XXD Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, subsequent encounter +T343XXS Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, sequela +T3440XA Frostbite with tissue necrosis of unspecified arm, initial encounter +T3440XD Frostbite with tissue necrosis of unspecified arm, subsequent encounter +T3440XS Frostbite with tissue necrosis of unspecified arm, sequela +T3441XA Frostbite with tissue necrosis of right arm, initial encounter +T3441XD Frostbite with tissue necrosis of right arm, subsequent encounter +T3441XS Frostbite with tissue necrosis of right arm, sequela +T3442XA Frostbite with tissue necrosis of left arm, initial encounter +T3442XD Frostbite with tissue necrosis of left arm, subsequent encounter +T3442XS Frostbite with tissue necrosis of left arm, sequela +T34511A Frostbite with tissue necrosis of right wrist, initial encounter +T34511D Frostbite with tissue necrosis of right wrist, subsequent encounter +T34511S Frostbite with tissue necrosis of right wrist, sequela +T34512A Frostbite with tissue necrosis of left wrist, initial encounter +T34512D Frostbite with tissue necrosis of left wrist, subsequent encounter +T34512S Frostbite with tissue necrosis of left wrist, sequela +T34519A Frostbite with tissue necrosis of unspecified wrist, initial encounter +T34519D Frostbite with tissue necrosis of unspecified wrist, subsequent encounter +T34519S Frostbite with tissue necrosis of unspecified wrist, sequela +T34521A Frostbite with tissue necrosis of right hand, initial encounter +T34521D Frostbite with tissue necrosis of right hand, subsequent encounter +T34521S Frostbite with tissue necrosis of right hand, sequela +T34522A Frostbite with tissue necrosis of left hand, initial encounter +T34522D Frostbite with tissue necrosis of left hand, subsequent encounter +T34522S Frostbite with tissue necrosis of left hand, sequela +T34529A Frostbite with tissue necrosis of unspecified hand, initial encounter +T34529D Frostbite with tissue necrosis of unspecified hand, subsequent encounter +T34529S Frostbite with tissue necrosis of unspecified hand, sequela +T34531A Frostbite with tissue necrosis of right finger(s), initial encounter +T34531D Frostbite with tissue necrosis of right finger(s), subsequent encounter +T34531S Frostbite with tissue necrosis of right finger(s), sequela +T34532A Frostbite with tissue necrosis of left finger(s), initial encounter +T34532D Frostbite with tissue necrosis of left finger(s), subsequent encounter +T34532S Frostbite with tissue necrosis of left finger(s), sequela +T34539A Frostbite with tissue necrosis of unspecified finger(s), initial encounter +T34539D Frostbite with tissue necrosis of unspecified finger(s), subsequent encounter +T34539S Frostbite with tissue necrosis of unspecified finger(s), sequela +T3460XA Frostbite with tissue necrosis of unspecified hip and thigh, initial encounter +T3460XD Frostbite with tissue necrosis of unspecified hip and thigh, subsequent encounter +T3460XS Frostbite with tissue necrosis of unspecified hip and thigh, sequela +T3461XA Frostbite with tissue necrosis of right hip and thigh, initial encounter +T3461XD Frostbite with tissue necrosis of right hip and thigh, subsequent encounter +T3461XS Frostbite with tissue necrosis of right hip and thigh, sequela +T3462XA Frostbite with tissue necrosis of left hip and thigh, initial encounter +T3462XD Frostbite with tissue necrosis of left hip and thigh, subsequent encounter +T3462XS Frostbite with tissue necrosis of left hip and thigh, sequela +T3470XA Frostbite with tissue necrosis of unspecified knee and lower leg, initial encounter +T3470XD Frostbite with tissue necrosis of unspecified knee and lower leg, subsequent encounter +T3470XS Frostbite with tissue necrosis of unspecified knee and lower leg, sequela +T3471XA Frostbite with tissue necrosis of right knee and lower leg, initial encounter +T3471XD Frostbite with tissue necrosis of right knee and lower leg, subsequent encounter +T3471XS Frostbite with tissue necrosis of right knee and lower leg, sequela +T3472XA Frostbite with tissue necrosis of left knee and lower leg, initial encounter +T3472XD Frostbite with tissue necrosis of left knee and lower leg, subsequent encounter +T3472XS Frostbite with tissue necrosis of left knee and lower leg, sequela +T34811A Frostbite with tissue necrosis of right ankle, initial encounter +T34811D Frostbite with tissue necrosis of right ankle, subsequent encounter +T34811S Frostbite with tissue necrosis of right ankle, sequela +T34812A Frostbite with tissue necrosis of left ankle, initial encounter +T34812D Frostbite with tissue necrosis of left ankle, subsequent encounter +T34812S Frostbite with tissue necrosis of left ankle, sequela +T34819A Frostbite with tissue necrosis of unspecified ankle, initial encounter +T34819D Frostbite with tissue necrosis of unspecified ankle, subsequent encounter +T34819S Frostbite with tissue necrosis of unspecified ankle, sequela +T34821A Frostbite with tissue necrosis of right foot, initial encounter +T34821D Frostbite with tissue necrosis of right foot, subsequent encounter +T34821S Frostbite with tissue necrosis of right foot, sequela +T34822A Frostbite with tissue necrosis of left foot, initial encounter +T34822D Frostbite with tissue necrosis of left foot, subsequent encounter +T34822S Frostbite with tissue necrosis of left foot, sequela +T34829A Frostbite with tissue necrosis of unspecified foot, initial encounter +T34829D Frostbite with tissue necrosis of unspecified foot, subsequent encounter +T34829S Frostbite with tissue necrosis of unspecified foot, sequela +T34831A Frostbite with tissue necrosis of right toe(s), initial encounter +T34831D Frostbite with tissue necrosis of right toe(s), subsequent encounter +T34831S Frostbite with tissue necrosis of right toe(s), sequela +T34832A Frostbite with tissue necrosis of left toe(s), initial encounter +T34832D Frostbite with tissue necrosis of left toe(s), subsequent encounter +T34832S Frostbite with tissue necrosis of left toe(s), sequela +T34839A Frostbite with tissue necrosis of unspecified toe(s), initial encounter +T34839D Frostbite with tissue necrosis of unspecified toe(s), subsequent encounter +T34839S Frostbite with tissue necrosis of unspecified toe(s), sequela +T3490XA Frostbite with tissue necrosis of unspecified sites, initial encounter +T3490XD Frostbite with tissue necrosis of unspecified sites, subsequent encounter +T3490XS Frostbite with tissue necrosis of unspecified sites, sequela +T3499XA Frostbite with tissue necrosis of other sites, initial encounter +T3499XD Frostbite with tissue necrosis of other sites, subsequent encounter +T3499XS Frostbite with tissue necrosis of other sites, sequela +T360X1A Poisoning by penicillins, accidental (unintentional), initial encounter +T360X1D Poisoning by penicillins, accidental (unintentional), subsequent encounter +T360X1S Poisoning by penicillins, accidental (unintentional), sequela +T360X2A Poisoning by penicillins, intentional self-harm, initial encounter +T360X2D Poisoning by penicillins, intentional self-harm, subsequent encounter +T360X2S Poisoning by penicillins, intentional self-harm, sequela +T360X3A Poisoning by penicillins, assault, initial encounter +T360X3D Poisoning by penicillins, assault, subsequent encounter +T360X3S Poisoning by penicillins, assault, sequela +T360X4A Poisoning by penicillins, undetermined, initial encounter +T360X4D Poisoning by penicillins, undetermined, subsequent encounter +T360X4S Poisoning by penicillins, undetermined, sequela +T360X5A Adverse effect of penicillins, initial encounter +T360X5D Adverse effect of penicillins, subsequent encounter +T360X5S Adverse effect of penicillins, sequela +T360X6A Underdosing of penicillins, initial encounter +T360X6D Underdosing of penicillins, subsequent encounter +T360X6S Underdosing of penicillins, sequela +T361X1A Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional), initial encounter +T361X1D Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional), subsequent encounter +T361X1S Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional), sequela +T361X2A Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, initial encounter +T361X2D Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, subsequent encounter +T361X2S Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, sequela +T361X3A Poisoning by cephalosporins and other beta-lactam antibiotics, assault, initial encounter +T361X3D Poisoning by cephalosporins and other beta-lactam antibiotics, assault, subsequent encounter +T361X3S Poisoning by cephalosporins and other beta-lactam antibiotics, assault, sequela +T361X4A Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, initial encounter +T361X4D Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, subsequent encounter +T361X4S Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, sequela +T361X5A Adverse effect of cephalosporins and other beta-lactam antibiotics, initial encounter +T361X5D Adverse effect of cephalosporins and other beta-lactam antibiotics, subsequent encounter +T361X5S Adverse effect of cephalosporins and other beta-lactam antibiotics, sequela +T361X6A Underdosing of cephalosporins and other beta-lactam antibiotics, initial encounter +T361X6D Underdosing of cephalosporins and other beta-lactam antibiotics, subsequent encounter +T361X6S Underdosing of cephalosporins and other beta-lactam antibiotics, sequela +T362X1A Poisoning by chloramphenicol group, accidental (unintentional), initial encounter +T362X1D Poisoning by chloramphenicol group, accidental (unintentional), subsequent encounter +T362X1S Poisoning by chloramphenicol group, accidental (unintentional), sequela +T362X2A Poisoning by chloramphenicol group, intentional self-harm, initial encounter +T362X2D Poisoning by chloramphenicol group, intentional self-harm, subsequent encounter +T362X2S Poisoning by chloramphenicol group, intentional self-harm, sequela +T362X3A Poisoning by chloramphenicol group, assault, initial encounter +T362X3D Poisoning by chloramphenicol group, assault, subsequent encounter +T362X3S Poisoning by chloramphenicol group, assault, sequela +T362X4A Poisoning by chloramphenicol group, undetermined, initial encounter +T362X4D Poisoning by chloramphenicol group, undetermined, subsequent encounter +T362X4S Poisoning by chloramphenicol group, undetermined, sequela +T362X5A Adverse effect of chloramphenicol group, initial encounter +T362X5D Adverse effect of chloramphenicol group, subsequent encounter +T362X5S Adverse effect of chloramphenicol group, sequela +T362X6A Underdosing of chloramphenicol group, initial encounter +T362X6D Underdosing of chloramphenicol group, subsequent encounter +T362X6S Underdosing of chloramphenicol group, sequela +T363X1A Poisoning by macrolides, accidental (unintentional), initial encounter +T363X1D Poisoning by macrolides, accidental (unintentional), subsequent encounter +T363X1S Poisoning by macrolides, accidental (unintentional), sequela +T363X2A Poisoning by macrolides, intentional self-harm, initial encounter +T363X2D Poisoning by macrolides, intentional self-harm, subsequent encounter +T363X2S Poisoning by macrolides, intentional self-harm, sequela +T363X3A Poisoning by macrolides, assault, initial encounter +T363X3D Poisoning by macrolides, assault, subsequent encounter +T363X3S Poisoning by macrolides, assault, sequela +T363X4A Poisoning by macrolides, undetermined, initial encounter +T363X4D Poisoning by macrolides, undetermined, subsequent encounter +T363X4S Poisoning by macrolides, undetermined, sequela +T363X5A Adverse effect of macrolides, initial encounter +T363X5D Adverse effect of macrolides, subsequent encounter +T363X5S Adverse effect of macrolides, sequela +T363X6A Underdosing of macrolides, initial encounter +T363X6D Underdosing of macrolides, subsequent encounter +T363X6S Underdosing of macrolides, sequela +T364X1A Poisoning by tetracyclines, accidental (unintentional), initial encounter +T364X1D Poisoning by tetracyclines, accidental (unintentional), subsequent encounter +T364X1S Poisoning by tetracyclines, accidental (unintentional), sequela +T364X2A Poisoning by tetracyclines, intentional self-harm, initial encounter +T364X2D Poisoning by tetracyclines, intentional self-harm, subsequent encounter +T364X2S Poisoning by tetracyclines, intentional self-harm, sequela +T364X3A Poisoning by tetracyclines, assault, initial encounter +T364X3D Poisoning by tetracyclines, assault, subsequent encounter +T364X3S Poisoning by tetracyclines, assault, sequela +T364X4A Poisoning by tetracyclines, undetermined, initial encounter +T364X4D Poisoning by tetracyclines, undetermined, subsequent encounter +T364X4S Poisoning by tetracyclines, undetermined, sequela +T364X5A Adverse effect of tetracyclines, initial encounter +T364X5D Adverse effect of tetracyclines, subsequent encounter +T364X5S Adverse effect of tetracyclines, sequela +T364X6A Underdosing of tetracyclines, initial encounter +T364X6D Underdosing of tetracyclines, subsequent encounter +T364X6S Underdosing of tetracyclines, sequela +T365X1A Poisoning by aminoglycosides, accidental (unintentional), initial encounter +T365X1D Poisoning by aminoglycosides, accidental (unintentional), subsequent encounter +T365X1S Poisoning by aminoglycosides, accidental (unintentional), sequela +T365X2A Poisoning by aminoglycosides, intentional self-harm, initial encounter +T365X2D Poisoning by aminoglycosides, intentional self-harm, subsequent encounter +T365X2S Poisoning by aminoglycosides, intentional self-harm, sequela +T365X3A Poisoning by aminoglycosides, assault, initial encounter +T365X3D Poisoning by aminoglycosides, assault, subsequent encounter +T365X3S Poisoning by aminoglycosides, assault, sequela +T365X4A Poisoning by aminoglycosides, undetermined, initial encounter +T365X4D Poisoning by aminoglycosides, undetermined, subsequent encounter +T365X4S Poisoning by aminoglycosides, undetermined, sequela +T365X5A Adverse effect of aminoglycosides, initial encounter +T365X5D Adverse effect of aminoglycosides, subsequent encounter +T365X5S Adverse effect of aminoglycosides, sequela +T365X6A Underdosing of aminoglycosides, initial encounter +T365X6D Underdosing of aminoglycosides, subsequent encounter +T365X6S Underdosing of aminoglycosides, sequela +T366X1A Poisoning by rifampicins, accidental (unintentional), initial encounter +T366X1D Poisoning by rifampicins, accidental (unintentional), subsequent encounter +T366X1S Poisoning by rifampicins, accidental (unintentional), sequela +T366X2A Poisoning by rifampicins, intentional self-harm, initial encounter +T366X2D Poisoning by rifampicins, intentional self-harm, subsequent encounter +T366X2S Poisoning by rifampicins, intentional self-harm, sequela +T366X3A Poisoning by rifampicins, assault, initial encounter +T366X3D Poisoning by rifampicins, assault, subsequent encounter +T366X3S Poisoning by rifampicins, assault, sequela +T366X4A Poisoning by rifampicins, undetermined, initial encounter +T366X4D Poisoning by rifampicins, undetermined, subsequent encounter +T366X4S Poisoning by rifampicins, undetermined, sequela +T366X5A Adverse effect of rifampicins, initial encounter +T366X5D Adverse effect of rifampicins, subsequent encounter +T366X5S Adverse effect of rifampicins, sequela +T366X6A Underdosing of rifampicins, initial encounter +T366X6D Underdosing of rifampicins, subsequent encounter +T366X6S Underdosing of rifampicins, sequela +T367X1A Poisoning by antifungal antibiotics, systemically used, accidental (unintentional), initial encounter +T367X1D Poisoning by antifungal antibiotics, systemically used, accidental (unintentional), subsequent encounter +T367X1S Poisoning by antifungal antibiotics, systemically used, accidental (unintentional), sequela +T367X2A Poisoning by antifungal antibiotics, systemically used, intentional self-harm, initial encounter +T367X2D Poisoning by antifungal antibiotics, systemically used, intentional self-harm, subsequent encounter +T367X2S Poisoning by antifungal antibiotics, systemically used, intentional self-harm, sequela +T367X3A Poisoning by antifungal antibiotics, systemically used, assault, initial encounter +T367X3D Poisoning by antifungal antibiotics, systemically used, assault, subsequent encounter +T367X3S Poisoning by antifungal antibiotics, systemically used, assault, sequela +T367X4A Poisoning by antifungal antibiotics, systemically used, undetermined, initial encounter +T367X4D Poisoning by antifungal antibiotics, systemically used, undetermined, subsequent encounter +T367X4S Poisoning by antifungal antibiotics, systemically used, undetermined, sequela +T367X5A Adverse effect of antifungal antibiotics, systemically used, initial encounter +T367X5D Adverse effect of antifungal antibiotics, systemically used, subsequent encounter +T367X5S Adverse effect of antifungal antibiotics, systemically used, sequela +T367X6A Underdosing of antifungal antibiotics, systemically used, initial encounter +T367X6D Underdosing of antifungal antibiotics, systemically used, subsequent encounter +T367X6S Underdosing of antifungal antibiotics, systemically used, sequela +T368X1A Poisoning by other systemic antibiotics, accidental (unintentional), initial encounter +T368X1D Poisoning by other systemic antibiotics, accidental (unintentional), subsequent encounter +T368X1S Poisoning by other systemic antibiotics, accidental (unintentional), sequela +T368X2A Poisoning by other systemic antibiotics, intentional self-harm, initial encounter +T368X2D Poisoning by other systemic antibiotics, intentional self-harm, subsequent encounter +T368X2S Poisoning by other systemic antibiotics, intentional self-harm, sequela +T368X3A Poisoning by other systemic antibiotics, assault, initial encounter +T368X3D Poisoning by other systemic antibiotics, assault, subsequent encounter +T368X3S Poisoning by other systemic antibiotics, assault, sequela +T368X4A Poisoning by other systemic antibiotics, undetermined, initial encounter +T368X4D Poisoning by other systemic antibiotics, undetermined, subsequent encounter +T368X4S Poisoning by other systemic antibiotics, undetermined, sequela +T368X5A Adverse effect of other systemic antibiotics, initial encounter +T368X5D Adverse effect of other systemic antibiotics, subsequent encounter +T368X5S Adverse effect of other systemic antibiotics, sequela +T368X6A Underdosing of other systemic antibiotics, initial encounter +T368X6D Underdosing of other systemic antibiotics, subsequent encounter +T368X6S Underdosing of other systemic antibiotics, sequela +T3691XA Poisoning by unspecified systemic antibiotic, accidental (unintentional), initial encounter +T3691XD Poisoning by unspecified systemic antibiotic, accidental (unintentional), subsequent encounter +T3691XS Poisoning by unspecified systemic antibiotic, accidental (unintentional), sequela +T3692XA Poisoning by unspecified systemic antibiotic, intentional self-harm, initial encounter +T3692XD Poisoning by unspecified systemic antibiotic, intentional self-harm, subsequent encounter +T3692XS Poisoning by unspecified systemic antibiotic, intentional self-harm, sequela +T3693XA Poisoning by unspecified systemic antibiotic, assault, initial encounter +T3693XD Poisoning by unspecified systemic antibiotic, assault, subsequent encounter +T3693XS Poisoning by unspecified systemic antibiotic, assault, sequela +T3694XA Poisoning by unspecified systemic antibiotic, undetermined, initial encounter +T3694XD Poisoning by unspecified systemic antibiotic, undetermined, subsequent encounter +T3694XS Poisoning by unspecified systemic antibiotic, undetermined, sequela +T3695XA Adverse effect of unspecified systemic antibiotic, initial encounter +T3695XD Adverse effect of unspecified systemic antibiotic, subsequent encounter +T3695XS Adverse effect of unspecified systemic antibiotic, sequela +T3696XA Underdosing of unspecified systemic antibiotic, initial encounter +T3696XD Underdosing of unspecified systemic antibiotic, subsequent encounter +T3696XS Underdosing of unspecified systemic antibiotic, sequela +T370X1A Poisoning by sulfonamides, accidental (unintentional), initial encounter +T370X1D Poisoning by sulfonamides, accidental (unintentional), subsequent encounter +T370X1S Poisoning by sulfonamides, accidental (unintentional), sequela +T370X2A Poisoning by sulfonamides, intentional self-harm, initial encounter +T370X2D Poisoning by sulfonamides, intentional self-harm, subsequent encounter +T370X2S Poisoning by sulfonamides, intentional self-harm, sequela +T370X3A Poisoning by sulfonamides, assault, initial encounter +T370X3D Poisoning by sulfonamides, assault, subsequent encounter +T370X3S Poisoning by sulfonamides, assault, sequela +T370X4A Poisoning by sulfonamides, undetermined, initial encounter +T370X4D Poisoning by sulfonamides, undetermined, subsequent encounter +T370X4S Poisoning by sulfonamides, undetermined, sequela +T370X5A Adverse effect of sulfonamides, initial encounter +T370X5D Adverse effect of sulfonamides, subsequent encounter +T370X5S Adverse effect of sulfonamides, sequela +T370X6A Underdosing of sulfonamides, initial encounter +T370X6D Underdosing of sulfonamides, subsequent encounter +T370X6S Underdosing of sulfonamides, sequela +T371X1A Poisoning by antimycobacterial drugs, accidental (unintentional), initial encounter +T371X1D Poisoning by antimycobacterial drugs, accidental (unintentional), subsequent encounter +T371X1S Poisoning by antimycobacterial drugs, accidental (unintentional), sequela +T371X2A Poisoning by antimycobacterial drugs, intentional self-harm, initial encounter +T371X2D Poisoning by antimycobacterial drugs, intentional self-harm, subsequent encounter +T371X2S Poisoning by antimycobacterial drugs, intentional self-harm, sequela +T371X3A Poisoning by antimycobacterial drugs, assault, initial encounter +T371X3D Poisoning by antimycobacterial drugs, assault, subsequent encounter +T371X3S Poisoning by antimycobacterial drugs, assault, sequela +T371X4A Poisoning by antimycobacterial drugs, undetermined, initial encounter +T371X4D Poisoning by antimycobacterial drugs, undetermined, subsequent encounter +T371X4S Poisoning by antimycobacterial drugs, undetermined, sequela +T371X5A Adverse effect of antimycobacterial drugs, initial encounter +T371X5D Adverse effect of antimycobacterial drugs, subsequent encounter +T371X5S Adverse effect of antimycobacterial drugs, sequela +T371X6A Underdosing of antimycobacterial drugs, initial encounter +T371X6D Underdosing of antimycobacterial drugs, subsequent encounter +T371X6S Underdosing of antimycobacterial drugs, sequela +T372X1A Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional), initial encounter +T372X1D Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional), subsequent encounter +T372X1S Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional), sequela +T372X2A Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm, initial encounter +T372X2D Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm, subsequent encounter +T372X2S Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm, sequela +T372X3A Poisoning by antimalarials and drugs acting on other blood protozoa, assault, initial encounter +T372X3D Poisoning by antimalarials and drugs acting on other blood protozoa, assault, subsequent encounter +T372X3S Poisoning by antimalarials and drugs acting on other blood protozoa, assault, sequela +T372X4A Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, initial encounter +T372X4D Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, subsequent encounter +T372X4S Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, sequela +T372X5A Adverse effect of antimalarials and drugs acting on other blood protozoa, initial encounter +T372X5D Adverse effect of antimalarials and drugs acting on other blood protozoa, subsequent encounter +T372X5S Adverse effect of antimalarials and drugs acting on other blood protozoa, sequela +T372X6A Underdosing of antimalarials and drugs acting on other blood protozoa, initial encounter +T372X6D Underdosing of antimalarials and drugs acting on other blood protozoa, subsequent encounter +T372X6S Underdosing of antimalarials and drugs acting on other blood protozoa, sequela +T373X1A Poisoning by other antiprotozoal drugs, accidental (unintentional), initial encounter +T373X1D Poisoning by other antiprotozoal drugs, accidental (unintentional), subsequent encounter +T373X1S Poisoning by other antiprotozoal drugs, accidental (unintentional), sequela +T373X2A Poisoning by other antiprotozoal drugs, intentional self-harm, initial encounter +T373X2D Poisoning by other antiprotozoal drugs, intentional self-harm, subsequent encounter +T373X2S Poisoning by other antiprotozoal drugs, intentional self-harm, sequela +T373X3A Poisoning by other antiprotozoal drugs, assault, initial encounter +T373X3D Poisoning by other antiprotozoal drugs, assault, subsequent encounter +T373X3S Poisoning by other antiprotozoal drugs, assault, sequela +T373X4A Poisoning by other antiprotozoal drugs, undetermined, initial encounter +T373X4D Poisoning by other antiprotozoal drugs, undetermined, subsequent encounter +T373X4S Poisoning by other antiprotozoal drugs, undetermined, sequela +T373X5A Adverse effect of other antiprotozoal drugs, initial encounter +T373X5D Adverse effect of other antiprotozoal drugs, subsequent encounter +T373X5S Adverse effect of other antiprotozoal drugs, sequela +T373X6A Underdosing of other antiprotozoal drugs, initial encounter +T373X6D Underdosing of other antiprotozoal drugs, subsequent encounter +T373X6S Underdosing of other antiprotozoal drugs, sequela +T374X1A Poisoning by anthelminthics, accidental (unintentional), initial encounter +T374X1D Poisoning by anthelminthics, accidental (unintentional), subsequent encounter +T374X1S Poisoning by anthelminthics, accidental (unintentional), sequela +T374X2A Poisoning by anthelminthics, intentional self-harm, initial encounter +T374X2D Poisoning by anthelminthics, intentional self-harm, subsequent encounter +T374X2S Poisoning by anthelminthics, intentional self-harm, sequela +T374X3A Poisoning by anthelminthics, assault, initial encounter +T374X3D Poisoning by anthelminthics, assault, subsequent encounter +T374X3S Poisoning by anthelminthics, assault, sequela +T374X4A Poisoning by anthelminthics, undetermined, initial encounter +T374X4D Poisoning by anthelminthics, undetermined, subsequent encounter +T374X4S Poisoning by anthelminthics, undetermined, sequela +T374X5A Adverse effect of anthelminthics, initial encounter +T374X5D Adverse effect of anthelminthics, subsequent encounter +T374X5S Adverse effect of anthelminthics, sequela +T374X6A Underdosing of anthelminthics, initial encounter +T374X6D Underdosing of anthelminthics, subsequent encounter +T374X6S Underdosing of anthelminthics, sequela +T375X1A Poisoning by antiviral drugs, accidental (unintentional), initial encounter +T375X1D Poisoning by antiviral drugs, accidental (unintentional), subsequent encounter +T375X1S Poisoning by antiviral drugs, accidental (unintentional), sequela +T375X2A Poisoning by antiviral drugs, intentional self-harm, initial encounter +T375X2D Poisoning by antiviral drugs, intentional self-harm, subsequent encounter +T375X2S Poisoning by antiviral drugs, intentional self-harm, sequela +T375X3A Poisoning by antiviral drugs, assault, initial encounter +T375X3D Poisoning by antiviral drugs, assault, subsequent encounter +T375X3S Poisoning by antiviral drugs, assault, sequela +T375X4A Poisoning by antiviral drugs, undetermined, initial encounter +T375X4D Poisoning by antiviral drugs, undetermined, subsequent encounter +T375X4S Poisoning by antiviral drugs, undetermined, sequela +T375X5A Adverse effect of antiviral drugs, initial encounter +T375X5D Adverse effect of antiviral drugs, subsequent encounter +T375X5S Adverse effect of antiviral drugs, sequela +T375X6A Underdosing of antiviral drugs, initial encounter +T375X6D Underdosing of antiviral drugs, subsequent encounter +T375X6S Underdosing of antiviral drugs, sequela +T378X1A Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional), initial encounter +T378X1D Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional), subsequent encounter +T378X1S Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional), sequela +T378X2A Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm, initial encounter +T378X2D Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm, subsequent encounter +T378X2S Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm, sequela +T378X3A Poisoning by other specified systemic anti-infectives and antiparasitics, assault, initial encounter +T378X3D Poisoning by other specified systemic anti-infectives and antiparasitics, assault, subsequent encounter +T378X3S Poisoning by other specified systemic anti-infectives and antiparasitics, assault, sequela +T378X4A Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined, initial encounter +T378X4D Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined, subsequent encounter +T378X4S Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined, sequela +T378X5A Adverse effect of other specified systemic anti-infectives and antiparasitics, initial encounter +T378X5D Adverse effect of other specified systemic anti-infectives and antiparasitics, subsequent encounter +T378X5S Adverse effect of other specified systemic anti-infectives and antiparasitics, sequela +T378X6A Underdosing of other specified systemic anti-infectives and antiparasitics, initial encounter +T378X6D Underdosing of other specified systemic anti-infectives and antiparasitics, subsequent encounter +T378X6S Underdosing of other specified systemic anti-infectives and antiparasitics, sequela +T3791XA Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional), initial encounter +T3791XD Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional), subsequent encounter +T3791XS Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional), sequela +T3792XA Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm, initial encounter +T3792XD Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm, subsequent encounter +T3792XS Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm, sequela +T3793XA Poisoning by unspecified systemic anti-infective and antiparasitics, assault, initial encounter +T3793XD Poisoning by unspecified systemic anti-infective and antiparasitics, assault, subsequent encounter +T3793XS Poisoning by unspecified systemic anti-infective and antiparasitics, assault, sequela +T3794XA Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, initial encounter +T3794XD Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, subsequent encounter +T3794XS Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, sequela +T3795XA Adverse effect of unspecified systemic anti-infective and antiparasitic, initial encounter +T3795XD Adverse effect of unspecified systemic anti-infective and antiparasitic, subsequent encounter +T3795XS Adverse effect of unspecified systemic anti-infective and antiparasitic, sequela +T3796XA Underdosing of unspecified systemic anti-infectives and antiparasitics, initial encounter +T3796XD Underdosing of unspecified systemic anti-infectives and antiparasitics, subsequent encounter +T3796XS Underdosing of unspecified systemic anti-infectives and antiparasitics, sequela +T380X1A Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), initial encounter +T380X1D Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), subsequent encounter +T380X1S Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), sequela +T380X2A Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, initial encounter +T380X2D Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, subsequent encounter +T380X2S Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, sequela +T380X3A Poisoning by glucocorticoids and synthetic analogues, assault, initial encounter +T380X3D Poisoning by glucocorticoids and synthetic analogues, assault, subsequent encounter +T380X3S Poisoning by glucocorticoids and synthetic analogues, assault, sequela +T380X4A Poisoning by glucocorticoids and synthetic analogues, undetermined, initial encounter +T380X4D Poisoning by glucocorticoids and synthetic analogues, undetermined, subsequent encounter +T380X4S Poisoning by glucocorticoids and synthetic analogues, undetermined, sequela +T380X5A Adverse effect of glucocorticoids and synthetic analogues, initial encounter +T380X5D Adverse effect of glucocorticoids and synthetic analogues, subsequent encounter +T380X5S Adverse effect of glucocorticoids and synthetic analogues, sequela +T380X6A Underdosing of glucocorticoids and synthetic analogues, initial encounter +T380X6D Underdosing of glucocorticoids and synthetic analogues, subsequent encounter +T380X6S Underdosing of glucocorticoids and synthetic analogues, sequela +T381X1A Poisoning by thyroid hormones and substitutes, accidental (unintentional), initial encounter +T381X1D Poisoning by thyroid hormones and substitutes, accidental (unintentional), subsequent encounter +T381X1S Poisoning by thyroid hormones and substitutes, accidental (unintentional), sequela +T381X2A Poisoning by thyroid hormones and substitutes, intentional self-harm, initial encounter +T381X2D Poisoning by thyroid hormones and substitutes, intentional self-harm, subsequent encounter +T381X2S Poisoning by thyroid hormones and substitutes, intentional self-harm, sequela +T381X3A Poisoning by thyroid hormones and substitutes, assault, initial encounter +T381X3D Poisoning by thyroid hormones and substitutes, assault, subsequent encounter +T381X3S Poisoning by thyroid hormones and substitutes, assault, sequela +T381X4A Poisoning by thyroid hormones and substitutes, undetermined, initial encounter +T381X4D Poisoning by thyroid hormones and substitutes, undetermined, subsequent encounter +T381X4S Poisoning by thyroid hormones and substitutes, undetermined, sequela +T381X5A Adverse effect of thyroid hormones and substitutes, initial encounter +T381X5D Adverse effect of thyroid hormones and substitutes, subsequent encounter +T381X5S Adverse effect of thyroid hormones and substitutes, sequela +T381X6A Underdosing of thyroid hormones and substitutes, initial encounter +T381X6D Underdosing of thyroid hormones and substitutes, subsequent encounter +T381X6S Underdosing of thyroid hormones and substitutes, sequela +T382X1A Poisoning by antithyroid drugs, accidental (unintentional), initial encounter +T382X1D Poisoning by antithyroid drugs, accidental (unintentional), subsequent encounter +T382X1S Poisoning by antithyroid drugs, accidental (unintentional), sequela +T382X2A Poisoning by antithyroid drugs, intentional self-harm, initial encounter +T382X2D Poisoning by antithyroid drugs, intentional self-harm, subsequent encounter +T382X2S Poisoning by antithyroid drugs, intentional self-harm, sequela +T382X3A Poisoning by antithyroid drugs, assault, initial encounter +T382X3D Poisoning by antithyroid drugs, assault, subsequent encounter +T382X3S Poisoning by antithyroid drugs, assault, sequela +T382X4A Poisoning by antithyroid drugs, undetermined, initial encounter +T382X4D Poisoning by antithyroid drugs, undetermined, subsequent encounter +T382X4S Poisoning by antithyroid drugs, undetermined, sequela +T382X5A Adverse effect of antithyroid drugs, initial encounter +T382X5D Adverse effect of antithyroid drugs, subsequent encounter +T382X5S Adverse effect of antithyroid drugs, sequela +T382X6A Underdosing of antithyroid drugs, initial encounter +T382X6D Underdosing of antithyroid drugs, subsequent encounter +T382X6S Underdosing of antithyroid drugs, sequela +T383X1A Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional), initial encounter +T383X1D Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional), subsequent encounter +T383X1S Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional), sequela +T383X2A Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm, initial encounter +T383X2D Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm, subsequent encounter +T383X2S Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm, sequela +T383X3A Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, initial encounter +T383X3D Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, subsequent encounter +T383X3S Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, sequela +T383X4A Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, initial encounter +T383X4D Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, subsequent encounter +T383X4S Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, sequela +T383X5A Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, initial encounter +T383X5D Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, subsequent encounter +T383X5S Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, sequela +T383X6A Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, initial encounter +T383X6D Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, subsequent encounter +T383X6S Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, sequela +T384X1A Poisoning by oral contraceptives, accidental (unintentional), initial encounter +T384X1D Poisoning by oral contraceptives, accidental (unintentional), subsequent encounter +T384X1S Poisoning by oral contraceptives, accidental (unintentional), sequela +T384X2A Poisoning by oral contraceptives, intentional self-harm, initial encounter +T384X2D Poisoning by oral contraceptives, intentional self-harm, subsequent encounter +T384X2S Poisoning by oral contraceptives, intentional self-harm, sequela +T384X3A Poisoning by oral contraceptives, assault, initial encounter +T384X3D Poisoning by oral contraceptives, assault, subsequent encounter +T384X3S Poisoning by oral contraceptives, assault, sequela +T384X4A Poisoning by oral contraceptives, undetermined, initial encounter +T384X4D Poisoning by oral contraceptives, undetermined, subsequent encounter +T384X4S Poisoning by oral contraceptives, undetermined, sequela +T384X5A Adverse effect of oral contraceptives, initial encounter +T384X5D Adverse effect of oral contraceptives, subsequent encounter +T384X5S Adverse effect of oral contraceptives, sequela +T384X6A Underdosing of oral contraceptives, initial encounter +T384X6D Underdosing of oral contraceptives, subsequent encounter +T384X6S Underdosing of oral contraceptives, sequela +T385X1A Poisoning by other estrogens and progestogens, accidental (unintentional), initial encounter +T385X1D Poisoning by other estrogens and progestogens, accidental (unintentional), subsequent encounter +T385X1S Poisoning by other estrogens and progestogens, accidental (unintentional), sequela +T385X2A Poisoning by other estrogens and progestogens, intentional self-harm, initial encounter +T385X2D Poisoning by other estrogens and progestogens, intentional self-harm, subsequent encounter +T385X2S Poisoning by other estrogens and progestogens, intentional self-harm, sequela +T385X3A Poisoning by other estrogens and progestogens, assault, initial encounter +T385X3D Poisoning by other estrogens and progestogens, assault, subsequent encounter +T385X3S Poisoning by other estrogens and progestogens, assault, sequela +T385X4A Poisoning by other estrogens and progestogens, undetermined, initial encounter +T385X4D Poisoning by other estrogens and progestogens, undetermined, subsequent encounter +T385X4S Poisoning by other estrogens and progestogens, undetermined, sequela +T385X5A Adverse effect of other estrogens and progestogens, initial encounter +T385X5D Adverse effect of other estrogens and progestogens, subsequent encounter +T385X5S Adverse effect of other estrogens and progestogens, sequela +T385X6A Underdosing of other estrogens and progestogens, initial encounter +T385X6D Underdosing of other estrogens and progestogens, subsequent encounter +T385X6S Underdosing of other estrogens and progestogens, sequela +T386X1A Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional), initial encounter +T386X1D Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional), subsequent encounter +T386X1S Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional), sequela +T386X2A Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm, initial encounter +T386X2D Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm, subsequent encounter +T386X2S Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm, sequela +T386X3A Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault, initial encounter +T386X3D Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault, subsequent encounter +T386X3S Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault, sequela +T386X4A Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined, initial encounter +T386X4D Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined, subsequent encounter +T386X4S Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined, sequela +T386X5A Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, initial encounter +T386X5D Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, subsequent encounter +T386X5S Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, sequela +T386X6A Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, initial encounter +T386X6D Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, subsequent encounter +T386X6S Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, sequela +T387X1A Poisoning by androgens and anabolic congeners, accidental (unintentional), initial encounter +T387X1D Poisoning by androgens and anabolic congeners, accidental (unintentional), subsequent encounter +T387X1S Poisoning by androgens and anabolic congeners, accidental (unintentional), sequela +T387X2A Poisoning by androgens and anabolic congeners, intentional self-harm, initial encounter +T387X2D Poisoning by androgens and anabolic congeners, intentional self-harm, subsequent encounter +T387X2S Poisoning by androgens and anabolic congeners, intentional self-harm, sequela +T387X3A Poisoning by androgens and anabolic congeners, assault, initial encounter +T387X3D Poisoning by androgens and anabolic congeners, assault, subsequent encounter +T387X3S Poisoning by androgens and anabolic congeners, assault, sequela +T387X4A Poisoning by androgens and anabolic congeners, undetermined, initial encounter +T387X4D Poisoning by androgens and anabolic congeners, undetermined, subsequent encounter +T387X4S Poisoning by androgens and anabolic congeners, undetermined, sequela +T387X5A Adverse effect of androgens and anabolic congeners, initial encounter +T387X5D Adverse effect of androgens and anabolic congeners, subsequent encounter +T387X5S Adverse effect of androgens and anabolic congeners, sequela +T387X6A Underdosing of androgens and anabolic congeners, initial encounter +T387X6D Underdosing of androgens and anabolic congeners, subsequent encounter +T387X6S Underdosing of androgens and anabolic congeners, sequela +T38801A Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional), initial encounter +T38801D Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional), subsequent encounter +T38801S Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional), sequela +T38802A Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm, initial encounter +T38802D Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm, subsequent encounter +T38802S Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm, sequela +T38803A Poisoning by unspecified hormones and synthetic substitutes, assault, initial encounter +T38803D Poisoning by unspecified hormones and synthetic substitutes, assault, subsequent encounter +T38803S Poisoning by unspecified hormones and synthetic substitutes, assault, sequela +T38804A Poisoning by unspecified hormones and synthetic substitutes, undetermined, initial encounter +T38804D Poisoning by unspecified hormones and synthetic substitutes, undetermined, subsequent encounter +T38804S Poisoning by unspecified hormones and synthetic substitutes, undetermined, sequela +T38805A Adverse effect of unspecified hormones and synthetic substitutes, initial encounter +T38805D Adverse effect of unspecified hormones and synthetic substitutes, subsequent encounter +T38805S Adverse effect of unspecified hormones and synthetic substitutes, sequela +T38806A Underdosing of unspecified hormones and synthetic substitutes, initial encounter +T38806D Underdosing of unspecified hormones and synthetic substitutes, subsequent encounter +T38806S Underdosing of unspecified hormones and synthetic substitutes, sequela +T38811A Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional), initial encounter +T38811D Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional), subsequent encounter +T38811S Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional), sequela +T38812A Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm, initial encounter +T38812D Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm, subsequent encounter +T38812S Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm, sequela +T38813A Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, initial encounter +T38813D Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, subsequent encounter +T38813S Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, sequela +T38814A Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, initial encounter +T38814D Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, subsequent encounter +T38814S Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, sequela +T38815A Adverse effect of anterior pituitary [adenohypophyseal] hormones, initial encounter +T38815D Adverse effect of anterior pituitary [adenohypophyseal] hormones, subsequent encounter +T38815S Adverse effect of anterior pituitary [adenohypophyseal] hormones, sequela +T38816A Underdosing of anterior pituitary [adenohypophyseal] hormones, initial encounter +T38816D Underdosing of anterior pituitary [adenohypophyseal] hormones, subsequent encounter +T38816S Underdosing of anterior pituitary [adenohypophyseal] hormones, sequela +T38891A Poisoning by other hormones and synthetic substitutes, accidental (unintentional), initial encounter +T38891D Poisoning by other hormones and synthetic substitutes, accidental (unintentional), subsequent encounter +T38891S Poisoning by other hormones and synthetic substitutes, accidental (unintentional), sequela +T38892A Poisoning by other hormones and synthetic substitutes, intentional self-harm, initial encounter +T38892D Poisoning by other hormones and synthetic substitutes, intentional self-harm, subsequent encounter +T38892S Poisoning by other hormones and synthetic substitutes, intentional self-harm, sequela +T38893A Poisoning by other hormones and synthetic substitutes, assault, initial encounter +T38893D Poisoning by other hormones and synthetic substitutes, assault, subsequent encounter +T38893S Poisoning by other hormones and synthetic substitutes, assault, sequela +T38894A Poisoning by other hormones and synthetic substitutes, undetermined, initial encounter +T38894D Poisoning by other hormones and synthetic substitutes, undetermined, subsequent encounter +T38894S Poisoning by other hormones and synthetic substitutes, undetermined, sequela +T38895A Adverse effect of other hormones and synthetic substitutes, initial encounter +T38895D Adverse effect of other hormones and synthetic substitutes, subsequent encounter +T38895S Adverse effect of other hormones and synthetic substitutes, sequela +T38896A Underdosing of other hormones and synthetic substitutes, initial encounter +T38896D Underdosing of other hormones and synthetic substitutes, subsequent encounter +T38896S Underdosing of other hormones and synthetic substitutes, sequela +T38901A Poisoning by unspecified hormone antagonists, accidental (unintentional), initial encounter +T38901D Poisoning by unspecified hormone antagonists, accidental (unintentional), subsequent encounter +T38901S Poisoning by unspecified hormone antagonists, accidental (unintentional), sequela +T38902A Poisoning by unspecified hormone antagonists, intentional self-harm, initial encounter +T38902D Poisoning by unspecified hormone antagonists, intentional self-harm, subsequent encounter +T38902S Poisoning by unspecified hormone antagonists, intentional self-harm, sequela +T38903A Poisoning by unspecified hormone antagonists, assault, initial encounter +T38903D Poisoning by unspecified hormone antagonists, assault, subsequent encounter +T38903S Poisoning by unspecified hormone antagonists, assault, sequela +T38904A Poisoning by unspecified hormone antagonists, undetermined, initial encounter +T38904D Poisoning by unspecified hormone antagonists, undetermined, subsequent encounter +T38904S Poisoning by unspecified hormone antagonists, undetermined, sequela +T38905A Adverse effect of unspecified hormone antagonists, initial encounter +T38905D Adverse effect of unspecified hormone antagonists, subsequent encounter +T38905S Adverse effect of unspecified hormone antagonists, sequela +T38906A Underdosing of unspecified hormone antagonists, initial encounter +T38906D Underdosing of unspecified hormone antagonists, subsequent encounter +T38906S Underdosing of unspecified hormone antagonists, sequela +T38991A Poisoning by other hormone antagonists, accidental (unintentional), initial encounter +T38991D Poisoning by other hormone antagonists, accidental (unintentional), subsequent encounter +T38991S Poisoning by other hormone antagonists, accidental (unintentional), sequela +T38992A Poisoning by other hormone antagonists, intentional self-harm, initial encounter +T38992D Poisoning by other hormone antagonists, intentional self-harm, subsequent encounter +T38992S Poisoning by other hormone antagonists, intentional self-harm, sequela +T38993A Poisoning by other hormone antagonists, assault, initial encounter +T38993D Poisoning by other hormone antagonists, assault, subsequent encounter +T38993S Poisoning by other hormone antagonists, assault, sequela +T38994A Poisoning by other hormone antagonists, undetermined, initial encounter +T38994D Poisoning by other hormone antagonists, undetermined, subsequent encounter +T38994S Poisoning by other hormone antagonists, undetermined, sequela +T38995A Adverse effect of other hormone antagonists, initial encounter +T38995D Adverse effect of other hormone antagonists, subsequent encounter +T38995S Adverse effect of other hormone antagonists, sequela +T38996A Underdosing of other hormone antagonists, initial encounter +T38996D Underdosing of other hormone antagonists, subsequent encounter +T38996S Underdosing of other hormone antagonists, sequela +T39011A Poisoning by aspirin, accidental (unintentional), initial encounter +T39011D Poisoning by aspirin, accidental (unintentional), subsequent encounter +T39011S Poisoning by aspirin, accidental (unintentional), sequela +T39012A Poisoning by aspirin, intentional self-harm, initial encounter +T39012D Poisoning by aspirin, intentional self-harm, subsequent encounter +T39012S Poisoning by aspirin, intentional self-harm, sequela +T39013A Poisoning by aspirin, assault, initial encounter +T39013D Poisoning by aspirin, assault, subsequent encounter +T39013S Poisoning by aspirin, assault, sequela +T39014A Poisoning by aspirin, undetermined, initial encounter +T39014D Poisoning by aspirin, undetermined, subsequent encounter +T39014S Poisoning by aspirin, undetermined, sequela +T39015A Adverse effect of aspirin, initial encounter +T39015D Adverse effect of aspirin, subsequent encounter +T39015S Adverse effect of aspirin, sequela +T39016A Underdosing of aspirin, initial encounter +T39016D Underdosing of aspirin, subsequent encounter +T39016S Underdosing of aspirin, sequela +T39091A Poisoning by salicylates, accidental (unintentional), initial encounter +T39091D Poisoning by salicylates, accidental (unintentional), subsequent encounter +T39091S Poisoning by salicylates, accidental (unintentional), sequela +T39092A Poisoning by salicylates, intentional self-harm, initial encounter +T39092D Poisoning by salicylates, intentional self-harm, subsequent encounter +T39092S Poisoning by salicylates, intentional self-harm, sequela +T39093A Poisoning by salicylates, assault, initial encounter +T39093D Poisoning by salicylates, assault, subsequent encounter +T39093S Poisoning by salicylates, assault, sequela +T39094A Poisoning by salicylates, undetermined, initial encounter +T39094D Poisoning by salicylates, undetermined, subsequent encounter +T39094S Poisoning by salicylates, undetermined, sequela +T39095A Adverse effect of salicylates, initial encounter +T39095D Adverse effect of salicylates, subsequent encounter +T39095S Adverse effect of salicylates, sequela +T39096A Underdosing of salicylates, initial encounter +T39096D Underdosing of salicylates, subsequent encounter +T39096S Underdosing of salicylates, sequela +T391X1A Poisoning by 4-Aminophenol derivatives, accidental (unintentional), initial encounter +T391X1D Poisoning by 4-Aminophenol derivatives, accidental (unintentional), subsequent encounter +T391X1S Poisoning by 4-Aminophenol derivatives, accidental (unintentional), sequela +T391X2A Poisoning by 4-Aminophenol derivatives, intentional self-harm, initial encounter +T391X2D Poisoning by 4-Aminophenol derivatives, intentional self-harm, subsequent encounter +T391X2S Poisoning by 4-Aminophenol derivatives, intentional self-harm, sequela +T391X3A Poisoning by 4-Aminophenol derivatives, assault, initial encounter +T391X3D Poisoning by 4-Aminophenol derivatives, assault, subsequent encounter +T391X3S Poisoning by 4-Aminophenol derivatives, assault, sequela +T391X4A Poisoning by 4-Aminophenol derivatives, undetermined, initial encounter +T391X4D Poisoning by 4-Aminophenol derivatives, undetermined, subsequent encounter +T391X4S Poisoning by 4-Aminophenol derivatives, undetermined, sequela +T391X5A Adverse effect of 4-Aminophenol derivatives, initial encounter +T391X5D Adverse effect of 4-Aminophenol derivatives, subsequent encounter +T391X5S Adverse effect of 4-Aminophenol derivatives, sequela +T391X6A Underdosing of 4-Aminophenol derivatives, initial encounter +T391X6D Underdosing of 4-Aminophenol derivatives, subsequent encounter +T391X6S Underdosing of 4-Aminophenol derivatives, sequela +T392X1A Poisoning by pyrazolone derivatives, accidental (unintentional), initial encounter +T392X1D Poisoning by pyrazolone derivatives, accidental (unintentional), subsequent encounter +T392X1S Poisoning by pyrazolone derivatives, accidental (unintentional), sequela +T392X2A Poisoning by pyrazolone derivatives, intentional self-harm, initial encounter +T392X2D Poisoning by pyrazolone derivatives, intentional self-harm, subsequent encounter +T392X2S Poisoning by pyrazolone derivatives, intentional self-harm, sequela +T392X3A Poisoning by pyrazolone derivatives, assault, initial encounter +T392X3D Poisoning by pyrazolone derivatives, assault, subsequent encounter +T392X3S Poisoning by pyrazolone derivatives, assault, sequela +T392X4A Poisoning by pyrazolone derivatives, undetermined, initial encounter +T392X4D Poisoning by pyrazolone derivatives, undetermined, subsequent encounter +T392X4S Poisoning by pyrazolone derivatives, undetermined, sequela +T392X5A Adverse effect of pyrazolone derivatives, initial encounter +T392X5D Adverse effect of pyrazolone derivatives, subsequent encounter +T392X5S Adverse effect of pyrazolone derivatives, sequela +T392X6A Underdosing of pyrazolone derivatives, initial encounter +T392X6D Underdosing of pyrazolone derivatives, subsequent encounter +T392X6S Underdosing of pyrazolone derivatives, sequela +T39311A Poisoning by propionic acid derivatives, accidental (unintentional), initial encounter +T39311D Poisoning by propionic acid derivatives, accidental (unintentional), subsequent encounter +T39311S Poisoning by propionic acid derivatives, accidental (unintentional), sequela +T39312A Poisoning by propionic acid derivatives, intentional self-harm, initial encounter +T39312D Poisoning by propionic acid derivatives, intentional self-harm, subsequent encounter +T39312S Poisoning by propionic acid derivatives, intentional self-harm, sequela +T39313A Poisoning by propionic acid derivatives, assault, initial encounter +T39313D Poisoning by propionic acid derivatives, assault, subsequent encounter +T39313S Poisoning by propionic acid derivatives, assault, sequela +T39314A Poisoning by propionic acid derivatives, undetermined, initial encounter +T39314D Poisoning by propionic acid derivatives, undetermined, subsequent encounter +T39314S Poisoning by propionic acid derivatives, undetermined, sequela +T39315A Adverse effect of propionic acid derivatives, initial encounter +T39315D Adverse effect of propionic acid derivatives, subsequent encounter +T39315S Adverse effect of propionic acid derivatives, sequela +T39316A Underdosing of propionic acid derivatives, initial encounter +T39316D Underdosing of propionic acid derivatives, subsequent encounter +T39316S Underdosing of propionic acid derivatives, sequela +T39391A Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), initial encounter +T39391D Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), subsequent encounter +T39391S Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), sequela +T39392A Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, initial encounter +T39392D Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, subsequent encounter +T39392S Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, sequela +T39393A Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, initial encounter +T39393D Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, subsequent encounter +T39393S Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, sequela +T39394A Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, initial encounter +T39394D Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, subsequent encounter +T39394S Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, sequela +T39395A Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], initial encounter +T39395D Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], subsequent encounter +T39395S Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], sequela +T39396A Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], initial encounter +T39396D Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], subsequent encounter +T39396S Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], sequela +T394X1A Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), initial encounter +T394X1D Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), subsequent encounter +T394X1S Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), sequela +T394X2A Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, initial encounter +T394X2D Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, subsequent encounter +T394X2S Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, sequela +T394X3A Poisoning by antirheumatics, not elsewhere classified, assault, initial encounter +T394X3D Poisoning by antirheumatics, not elsewhere classified, assault, subsequent encounter +T394X3S Poisoning by antirheumatics, not elsewhere classified, assault, sequela +T394X4A Poisoning by antirheumatics, not elsewhere classified, undetermined, initial encounter +T394X4D Poisoning by antirheumatics, not elsewhere classified, undetermined, subsequent encounter +T394X4S Poisoning by antirheumatics, not elsewhere classified, undetermined, sequela +T394X5A Adverse effect of antirheumatics, not elsewhere classified, initial encounter +T394X5D Adverse effect of antirheumatics, not elsewhere classified, subsequent encounter +T394X5S Adverse effect of antirheumatics, not elsewhere classified, sequela +T394X6A Underdosing of antirheumatics, not elsewhere classified, initial encounter +T394X6D Underdosing of antirheumatics, not elsewhere classified, subsequent encounter +T394X6S Underdosing of antirheumatics, not elsewhere classified, sequela +T398X1A Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional), initial encounter +T398X1D Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional), subsequent encounter +T398X1S Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional), sequela +T398X2A Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm, initial encounter +T398X2D Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm, subsequent encounter +T398X2S Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm, sequela +T398X3A Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, initial encounter +T398X3D Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, subsequent encounter +T398X3S Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, sequela +T398X4A Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined, initial encounter +T398X4D Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined, subsequent encounter +T398X4S Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined, sequela +T398X5A Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified, initial encounter +T398X5D Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified, subsequent encounter +T398X5S Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified, sequela +T398X6A Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified, initial encounter +T398X6D Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified, subsequent encounter +T398X6S Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified, sequela +T3991XA Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional), initial encounter +T3991XD Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional), subsequent encounter +T3991XS Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional), sequela +T3992XA Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm, initial encounter +T3992XD Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm, subsequent encounter +T3992XS Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm, sequela +T3993XA Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, initial encounter +T3993XD Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, subsequent encounter +T3993XS Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, sequela +T3994XA Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, initial encounter +T3994XD Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, subsequent encounter +T3994XS Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, sequela +T3995XA Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, initial encounter +T3995XD Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, subsequent encounter +T3995XS Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, sequela +T3996XA Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, initial encounter +T3996XD Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, subsequent encounter +T3996XS Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, sequela +T400X1A Poisoning by opium, accidental (unintentional), initial encounter +T400X1D Poisoning by opium, accidental (unintentional), subsequent encounter +T400X1S Poisoning by opium, accidental (unintentional), sequela +T400X2A Poisoning by opium, intentional self-harm, initial encounter +T400X2D Poisoning by opium, intentional self-harm, subsequent encounter +T400X2S Poisoning by opium, intentional self-harm, sequela +T400X3A Poisoning by opium, assault, initial encounter +T400X3D Poisoning by opium, assault, subsequent encounter +T400X3S Poisoning by opium, assault, sequela +T400X4A Poisoning by opium, undetermined, initial encounter +T400X4D Poisoning by opium, undetermined, subsequent encounter +T400X4S Poisoning by opium, undetermined, sequela +T400X5A Adverse effect of opium, initial encounter +T400X5D Adverse effect of opium, subsequent encounter +T400X5S Adverse effect of opium, sequela +T400X6A Underdosing of opium, initial encounter +T400X6D Underdosing of opium, subsequent encounter +T400X6S Underdosing of opium, sequela +T401X1A Poisoning by heroin, accidental (unintentional), initial encounter +T401X1D Poisoning by heroin, accidental (unintentional), subsequent encounter +T401X1S Poisoning by heroin, accidental (unintentional), sequela +T401X2A Poisoning by heroin, intentional self-harm, initial encounter +T401X2D Poisoning by heroin, intentional self-harm, subsequent encounter +T401X2S Poisoning by heroin, intentional self-harm, sequela +T401X3A Poisoning by heroin, assault, initial encounter +T401X3D Poisoning by heroin, assault, subsequent encounter +T401X3S Poisoning by heroin, assault, sequela +T401X4A Poisoning by heroin, undetermined, initial encounter +T401X4D Poisoning by heroin, undetermined, subsequent encounter +T401X4S Poisoning by heroin, undetermined, sequela +T401X5A Adverse effect of heroin, initial encounter +T401X5D Adverse effect of heroin, subsequent encounter +T401X5S Adverse effect of heroin, sequela +T402X1A Poisoning by other opioids, accidental (unintentional), initial encounter +T402X1D Poisoning by other opioids, accidental (unintentional), subsequent encounter +T402X1S Poisoning by other opioids, accidental (unintentional), sequela +T402X2A Poisoning by other opioids, intentional self-harm, initial encounter +T402X2D Poisoning by other opioids, intentional self-harm, subsequent encounter +T402X2S Poisoning by other opioids, intentional self-harm, sequela +T402X3A Poisoning by other opioids, assault, initial encounter +T402X3D Poisoning by other opioids, assault, subsequent encounter +T402X3S Poisoning by other opioids, assault, sequela +T402X4A Poisoning by other opioids, undetermined, initial encounter +T402X4D Poisoning by other opioids, undetermined, subsequent encounter +T402X4S Poisoning by other opioids, undetermined, sequela +T402X5A Adverse effect of other opioids, initial encounter +T402X5D Adverse effect of other opioids, subsequent encounter +T402X5S Adverse effect of other opioids, sequela +T402X6A Underdosing of other opioids, initial encounter +T402X6D Underdosing of other opioids, subsequent encounter +T402X6S Underdosing of other opioids, sequela +T403X1A Poisoning by methadone, accidental (unintentional), initial encounter +T403X1D Poisoning by methadone, accidental (unintentional), subsequent encounter +T403X1S Poisoning by methadone, accidental (unintentional), sequela +T403X2A Poisoning by methadone, intentional self-harm, initial encounter +T403X2D Poisoning by methadone, intentional self-harm, subsequent encounter +T403X2S Poisoning by methadone, intentional self-harm, sequela +T403X3A Poisoning by methadone, assault, initial encounter +T403X3D Poisoning by methadone, assault, subsequent encounter +T403X3S Poisoning by methadone, assault, sequela +T403X4A Poisoning by methadone, undetermined, initial encounter +T403X4D Poisoning by methadone, undetermined, subsequent encounter +T403X4S Poisoning by methadone, undetermined, sequela +T403X5A Adverse effect of methadone, initial encounter +T403X5D Adverse effect of methadone, subsequent encounter +T403X5S Adverse effect of methadone, sequela +T403X6A Underdosing of methadone, initial encounter +T403X6D Underdosing of methadone, subsequent encounter +T403X6S Underdosing of methadone, sequela +T404X1A Poisoning by other synthetic narcotics, accidental (unintentional), initial encounter +T404X1D Poisoning by other synthetic narcotics, accidental (unintentional), subsequent encounter +T404X1S Poisoning by other synthetic narcotics, accidental (unintentional), sequela +T404X2A Poisoning by other synthetic narcotics, intentional self-harm, initial encounter +T404X2D Poisoning by other synthetic narcotics, intentional self-harm, subsequent encounter +T404X2S Poisoning by other synthetic narcotics, intentional self-harm, sequela +T404X3A Poisoning by other synthetic narcotics, assault, initial encounter +T404X3D Poisoning by other synthetic narcotics, assault, subsequent encounter +T404X3S Poisoning by other synthetic narcotics, assault, sequela +T404X4A Poisoning by other synthetic narcotics, undetermined, initial encounter +T404X4D Poisoning by other synthetic narcotics, undetermined, subsequent encounter +T404X4S Poisoning by other synthetic narcotics, undetermined, sequela +T404X5A Adverse effect of other synthetic narcotics, initial encounter +T404X5D Adverse effect of other synthetic narcotics, subsequent encounter +T404X5S Adverse effect of other synthetic narcotics, sequela +T404X6A Underdosing of other synthetic narcotics, initial encounter +T404X6D Underdosing of other synthetic narcotics, subsequent encounter +T404X6S Underdosing of other synthetic narcotics, sequela +T405X1A Poisoning by cocaine, accidental (unintentional), initial encounter +T405X1D Poisoning by cocaine, accidental (unintentional), subsequent encounter +T405X1S Poisoning by cocaine, accidental (unintentional), sequela +T405X2A Poisoning by cocaine, intentional self-harm, initial encounter +T405X2D Poisoning by cocaine, intentional self-harm, subsequent encounter +T405X2S Poisoning by cocaine, intentional self-harm, sequela +T405X3A Poisoning by cocaine, assault, initial encounter +T405X3D Poisoning by cocaine, assault, subsequent encounter +T405X3S Poisoning by cocaine, assault, sequela +T405X4A Poisoning by cocaine, undetermined, initial encounter +T405X4D Poisoning by cocaine, undetermined, subsequent encounter +T405X4S Poisoning by cocaine, undetermined, sequela +T405X5A Adverse effect of cocaine, initial encounter +T405X5D Adverse effect of cocaine, subsequent encounter +T405X5S Adverse effect of cocaine, sequela +T405X6A Underdosing of cocaine, initial encounter +T405X6D Underdosing of cocaine, subsequent encounter +T405X6S Underdosing of cocaine, sequela +T40601A Poisoning by unspecified narcotics, accidental (unintentional), initial encounter +T40601D Poisoning by unspecified narcotics, accidental (unintentional), subsequent encounter +T40601S Poisoning by unspecified narcotics, accidental (unintentional), sequela +T40602A Poisoning by unspecified narcotics, intentional self-harm, initial encounter +T40602D Poisoning by unspecified narcotics, intentional self-harm, subsequent encounter +T40602S Poisoning by unspecified narcotics, intentional self-harm, sequela +T40603A Poisoning by unspecified narcotics, assault, initial encounter +T40603D Poisoning by unspecified narcotics, assault, subsequent encounter +T40603S Poisoning by unspecified narcotics, assault, sequela +T40604A Poisoning by unspecified narcotics, undetermined, initial encounter +T40604D Poisoning by unspecified narcotics, undetermined, subsequent encounter +T40604S Poisoning by unspecified narcotics, undetermined, sequela +T40605A Adverse effect of unspecified narcotics, initial encounter +T40605D Adverse effect of unspecified narcotics, subsequent encounter +T40605S Adverse effect of unspecified narcotics, sequela +T40606A Underdosing of unspecified narcotics, initial encounter +T40606D Underdosing of unspecified narcotics, subsequent encounter +T40606S Underdosing of unspecified narcotics, sequela +T40691A Poisoning by other narcotics, accidental (unintentional), initial encounter +T40691D Poisoning by other narcotics, accidental (unintentional), subsequent encounter +T40691S Poisoning by other narcotics, accidental (unintentional), sequela +T40692A Poisoning by other narcotics, intentional self-harm, initial encounter +T40692D Poisoning by other narcotics, intentional self-harm, subsequent encounter +T40692S Poisoning by other narcotics, intentional self-harm, sequela +T40693A Poisoning by other narcotics, assault, initial encounter +T40693D Poisoning by other narcotics, assault, subsequent encounter +T40693S Poisoning by other narcotics, assault, sequela +T40694A Poisoning by other narcotics, undetermined, initial encounter +T40694D Poisoning by other narcotics, undetermined, subsequent encounter +T40694S Poisoning by other narcotics, undetermined, sequela +T40695A Adverse effect of other narcotics, initial encounter +T40695D Adverse effect of other narcotics, subsequent encounter +T40695S Adverse effect of other narcotics, sequela +T40696A Underdosing of other narcotics, initial encounter +T40696D Underdosing of other narcotics, subsequent encounter +T40696S Underdosing of other narcotics, sequela +T407X1A Poisoning by cannabis (derivatives), accidental (unintentional), initial encounter +T407X1D Poisoning by cannabis (derivatives), accidental (unintentional), subsequent encounter +T407X1S Poisoning by cannabis (derivatives), accidental (unintentional), sequela +T407X2A Poisoning by cannabis (derivatives), intentional self-harm, initial encounter +T407X2D Poisoning by cannabis (derivatives), intentional self-harm, subsequent encounter +T407X2S Poisoning by cannabis (derivatives), intentional self-harm, sequela +T407X3A Poisoning by cannabis (derivatives), assault, initial encounter +T407X3D Poisoning by cannabis (derivatives), assault, subsequent encounter +T407X3S Poisoning by cannabis (derivatives), assault, sequela +T407X4A Poisoning by cannabis (derivatives), undetermined, initial encounter +T407X4D Poisoning by cannabis (derivatives), undetermined, subsequent encounter +T407X4S Poisoning by cannabis (derivatives), undetermined, sequela +T407X5A Adverse effect of cannabis (derivatives), initial encounter +T407X5D Adverse effect of cannabis (derivatives), subsequent encounter +T407X5S Adverse effect of cannabis (derivatives), sequela +T407X6A Underdosing of cannabis (derivatives), initial encounter +T407X6D Underdosing of cannabis (derivatives), subsequent encounter +T407X6S Underdosing of cannabis (derivatives), sequela +T408X1A Poisoning by lysergide [LSD], accidental (unintentional), initial encounter +T408X1D Poisoning by lysergide [LSD], accidental (unintentional), subsequent encounter +T408X1S Poisoning by lysergide [LSD], accidental (unintentional), sequela +T408X2A Poisoning by lysergide [LSD], intentional self-harm, initial encounter +T408X2D Poisoning by lysergide [LSD], intentional self-harm, subsequent encounter +T408X2S Poisoning by lysergide [LSD], intentional self-harm, sequela +T408X3A Poisoning by lysergide [LSD], assault, initial encounter +T408X3D Poisoning by lysergide [LSD], assault, subsequent encounter +T408X3S Poisoning by lysergide [LSD], assault, sequela +T408X4A Poisoning by lysergide [LSD], undetermined, initial encounter +T408X4D Poisoning by lysergide [LSD], undetermined, subsequent encounter +T408X4S Poisoning by lysergide [LSD], undetermined, sequela +T408X5A Adverse effect of lysergide [LSD], initial encounter +T408X5D Adverse effect of lysergide [LSD], subsequent encounter +T408X5S Adverse effect of lysergide [LSD], sequela +T40901A Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), initial encounter +T40901D Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), subsequent encounter +T40901S Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), sequela +T40902A Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, initial encounter +T40902D Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, subsequent encounter +T40902S Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, sequela +T40903A Poisoning by unspecified psychodysleptics [hallucinogens], assault, initial encounter +T40903D Poisoning by unspecified psychodysleptics [hallucinogens], assault, subsequent encounter +T40903S Poisoning by unspecified psychodysleptics [hallucinogens], assault, sequela +T40904A Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, initial encounter +T40904D Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, subsequent encounter +T40904S Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, sequela +T40905A Adverse effect of unspecified psychodysleptics [hallucinogens], initial encounter +T40905D Adverse effect of unspecified psychodysleptics [hallucinogens], subsequent encounter +T40905S Adverse effect of unspecified psychodysleptics [hallucinogens], sequela +T40906A Underdosing of unspecified psychodysleptics [hallucinogens], initial encounter +T40906D Underdosing of unspecified psychodysleptics [hallucinogens], subsequent encounter +T40906S Underdosing of unspecified psychodysleptics [hallucinogens], sequela +T40991A Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), initial encounter +T40991D Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), subsequent encounter +T40991S Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), sequela +T40992A Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, initial encounter +T40992D Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, subsequent encounter +T40992S Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, sequela +T40993A Poisoning by other psychodysleptics [hallucinogens], assault, initial encounter +T40993D Poisoning by other psychodysleptics [hallucinogens], assault, subsequent encounter +T40993S Poisoning by other psychodysleptics [hallucinogens], assault, sequela +T40994A Poisoning by other psychodysleptics [hallucinogens], undetermined, initial encounter +T40994D Poisoning by other psychodysleptics [hallucinogens], undetermined, subsequent encounter +T40994S Poisoning by other psychodysleptics [hallucinogens], undetermined, sequela +T40995A Adverse effect of other psychodysleptics [hallucinogens], initial encounter +T40995D Adverse effect of other psychodysleptics [hallucinogens], subsequent encounter +T40995S Adverse effect of other psychodysleptics [hallucinogens], sequela +T40996A Underdosing of other psychodysleptics [hallucinogens], initial encounter +T40996D Underdosing of other psychodysleptics [hallucinogens], subsequent encounter +T40996S Underdosing of other psychodysleptics [hallucinogens], sequela +T410X1A Poisoning by inhaled anesthetics, accidental (unintentional), initial encounter +T410X1D Poisoning by inhaled anesthetics, accidental (unintentional), subsequent encounter +T410X1S Poisoning by inhaled anesthetics, accidental (unintentional), sequela +T410X2A Poisoning by inhaled anesthetics, intentional self-harm, initial encounter +T410X2D Poisoning by inhaled anesthetics, intentional self-harm, subsequent encounter +T410X2S Poisoning by inhaled anesthetics, intentional self-harm, sequela +T410X3A Poisoning by inhaled anesthetics, assault, initial encounter +T410X3D Poisoning by inhaled anesthetics, assault, subsequent encounter +T410X3S Poisoning by inhaled anesthetics, assault, sequela +T410X4A Poisoning by inhaled anesthetics, undetermined, initial encounter +T410X4D Poisoning by inhaled anesthetics, undetermined, subsequent encounter +T410X4S Poisoning by inhaled anesthetics, undetermined, sequela +T410X5A Adverse effect of inhaled anesthetics, initial encounter +T410X5D Adverse effect of inhaled anesthetics, subsequent encounter +T410X5S Adverse effect of inhaled anesthetics, sequela +T410X6A Underdosing of inhaled anesthetics, initial encounter +T410X6D Underdosing of inhaled anesthetics, subsequent encounter +T410X6S Underdosing of inhaled anesthetics, sequela +T411X1A Poisoning by intravenous anesthetics, accidental (unintentional), initial encounter +T411X1D Poisoning by intravenous anesthetics, accidental (unintentional), subsequent encounter +T411X1S Poisoning by intravenous anesthetics, accidental (unintentional), sequela +T411X2A Poisoning by intravenous anesthetics, intentional self-harm, initial encounter +T411X2D Poisoning by intravenous anesthetics, intentional self-harm, subsequent encounter +T411X2S Poisoning by intravenous anesthetics, intentional self-harm, sequela +T411X3A Poisoning by intravenous anesthetics, assault, initial encounter +T411X3D Poisoning by intravenous anesthetics, assault, subsequent encounter +T411X3S Poisoning by intravenous anesthetics, assault, sequela +T411X4A Poisoning by intravenous anesthetics, undetermined, initial encounter +T411X4D Poisoning by intravenous anesthetics, undetermined, subsequent encounter +T411X4S Poisoning by intravenous anesthetics, undetermined, sequela +T411X5A Adverse effect of intravenous anesthetics, initial encounter +T411X5D Adverse effect of intravenous anesthetics, subsequent encounter +T411X5S Adverse effect of intravenous anesthetics, sequela +T411X6A Underdosing of intravenous anesthetics, initial encounter +T411X6D Underdosing of intravenous anesthetics, subsequent encounter +T411X6S Underdosing of intravenous anesthetics, sequela +T41201A Poisoning by unspecified general anesthetics, accidental (unintentional), initial encounter +T41201D Poisoning by unspecified general anesthetics, accidental (unintentional), subsequent encounter +T41201S Poisoning by unspecified general anesthetics, accidental (unintentional), sequela +T41202A Poisoning by unspecified general anesthetics, intentional self-harm, initial encounter +T41202D Poisoning by unspecified general anesthetics, intentional self-harm, subsequent encounter +T41202S Poisoning by unspecified general anesthetics, intentional self-harm, sequela +T41203A Poisoning by unspecified general anesthetics, assault, initial encounter +T41203D Poisoning by unspecified general anesthetics, assault, subsequent encounter +T41203S Poisoning by unspecified general anesthetics, assault, sequela +T41204A Poisoning by unspecified general anesthetics, undetermined, initial encounter +T41204D Poisoning by unspecified general anesthetics, undetermined, subsequent encounter +T41204S Poisoning by unspecified general anesthetics, undetermined, sequela +T41205A Adverse effect of unspecified general anesthetics, initial encounter +T41205D Adverse effect of unspecified general anesthetics, subsequent encounter +T41205S Adverse effect of unspecified general anesthetics, sequela +T41206A Underdosing of unspecified general anesthetics, initial encounter +T41206D Underdosing of unspecified general anesthetics, subsequent encounter +T41206S Underdosing of unspecified general anesthetics, sequela +T41291A Poisoning by other general anesthetics, accidental (unintentional), initial encounter +T41291D Poisoning by other general anesthetics, accidental (unintentional), subsequent encounter +T41291S Poisoning by other general anesthetics, accidental (unintentional), sequela +T41292A Poisoning by other general anesthetics, intentional self-harm, initial encounter +T41292D Poisoning by other general anesthetics, intentional self-harm, subsequent encounter +T41292S Poisoning by other general anesthetics, intentional self-harm, sequela +T41293A Poisoning by other general anesthetics, assault, initial encounter +T41293D Poisoning by other general anesthetics, assault, subsequent encounter +T41293S Poisoning by other general anesthetics, assault, sequela +T41294A Poisoning by other general anesthetics, undetermined, initial encounter +T41294D Poisoning by other general anesthetics, undetermined, subsequent encounter +T41294S Poisoning by other general anesthetics, undetermined, sequela +T41295A Adverse effect of other general anesthetics, initial encounter +T41295D Adverse effect of other general anesthetics, subsequent encounter +T41295S Adverse effect of other general anesthetics, sequela +T41296A Underdosing of other general anesthetics, initial encounter +T41296D Underdosing of other general anesthetics, subsequent encounter +T41296S Underdosing of other general anesthetics, sequela +T413X1A Poisoning by local anesthetics, accidental (unintentional), initial encounter +T413X1D Poisoning by local anesthetics, accidental (unintentional), subsequent encounter +T413X1S Poisoning by local anesthetics, accidental (unintentional), sequela +T413X2A Poisoning by local anesthetics, intentional self-harm, initial encounter +T413X2D Poisoning by local anesthetics, intentional self-harm, subsequent encounter +T413X2S Poisoning by local anesthetics, intentional self-harm, sequela +T413X3A Poisoning by local anesthetics, assault, initial encounter +T413X3D Poisoning by local anesthetics, assault, subsequent encounter +T413X3S Poisoning by local anesthetics, assault, sequela +T413X4A Poisoning by local anesthetics, undetermined, initial encounter +T413X4D Poisoning by local anesthetics, undetermined, subsequent encounter +T413X4S Poisoning by local anesthetics, undetermined, sequela +T413X5A Adverse effect of local anesthetics, initial encounter +T413X5D Adverse effect of local anesthetics, subsequent encounter +T413X5S Adverse effect of local anesthetics, sequela +T413X6A Underdosing of local anesthetics, initial encounter +T413X6D Underdosing of local anesthetics, subsequent encounter +T413X6S Underdosing of local anesthetics, sequela +T4141XA Poisoning by unspecified anesthetic, accidental (unintentional), initial encounter +T4141XD Poisoning by unspecified anesthetic, accidental (unintentional), subsequent encounter +T4141XS Poisoning by unspecified anesthetic, accidental (unintentional), sequela +T4142XA Poisoning by unspecified anesthetic, intentional self-harm, initial encounter +T4142XD Poisoning by unspecified anesthetic, intentional self-harm, subsequent encounter +T4142XS Poisoning by unspecified anesthetic, intentional self-harm, sequela +T4143XA Poisoning by unspecified anesthetic, assault, initial encounter +T4143XD Poisoning by unspecified anesthetic, assault, subsequent encounter +T4143XS Poisoning by unspecified anesthetic, assault, sequela +T4144XA Poisoning by unspecified anesthetic, undetermined, initial encounter +T4144XD Poisoning by unspecified anesthetic, undetermined, subsequent encounter +T4144XS Poisoning by unspecified anesthetic, undetermined, sequela +T4145XA Adverse effect of unspecified anesthetic, initial encounter +T4145XD Adverse effect of unspecified anesthetic, subsequent encounter +T4145XS Adverse effect of unspecified anesthetic, sequela +T4146XA Underdosing of unspecified anesthetics, initial encounter +T4146XD Underdosing of unspecified anesthetics, subsequent encounter +T4146XS Underdosing of unspecified anesthetics, sequela +T415X1A Poisoning by therapeutic gases, accidental (unintentional), initial encounter +T415X1D Poisoning by therapeutic gases, accidental (unintentional), subsequent encounter +T415X1S Poisoning by therapeutic gases, accidental (unintentional), sequela +T415X2A Poisoning by therapeutic gases, intentional self-harm, initial encounter +T415X2D Poisoning by therapeutic gases, intentional self-harm, subsequent encounter +T415X2S Poisoning by therapeutic gases, intentional self-harm, sequela +T415X3A Poisoning by therapeutic gases, assault, initial encounter +T415X3D Poisoning by therapeutic gases, assault, subsequent encounter +T415X3S Poisoning by therapeutic gases, assault, sequela +T415X4A Poisoning by therapeutic gases, undetermined, initial encounter +T415X4D Poisoning by therapeutic gases, undetermined, subsequent encounter +T415X4S Poisoning by therapeutic gases, undetermined, sequela +T415X5A Adverse effect of therapeutic gases, initial encounter +T415X5D Adverse effect of therapeutic gases, subsequent encounter +T415X5S Adverse effect of therapeutic gases, sequela +T415X6A Underdosing of therapeutic gases, initial encounter +T415X6D Underdosing of therapeutic gases, subsequent encounter +T415X6S Underdosing of therapeutic gases, sequela +T420X1A Poisoning by hydantoin derivatives, accidental (unintentional), initial encounter +T420X1D Poisoning by hydantoin derivatives, accidental (unintentional), subsequent encounter +T420X1S Poisoning by hydantoin derivatives, accidental (unintentional), sequela +T420X2A Poisoning by hydantoin derivatives, intentional self-harm, initial encounter +T420X2D Poisoning by hydantoin derivatives, intentional self-harm, subsequent encounter +T420X2S Poisoning by hydantoin derivatives, intentional self-harm, sequela +T420X3A Poisoning by hydantoin derivatives, assault, initial encounter +T420X3D Poisoning by hydantoin derivatives, assault, subsequent encounter +T420X3S Poisoning by hydantoin derivatives, assault, sequela +T420X4A Poisoning by hydantoin derivatives, undetermined, initial encounter +T420X4D Poisoning by hydantoin derivatives, undetermined, subsequent encounter +T420X4S Poisoning by hydantoin derivatives, undetermined, sequela +T420X5A Adverse effect of hydantoin derivatives, initial encounter +T420X5D Adverse effect of hydantoin derivatives, subsequent encounter +T420X5S Adverse effect of hydantoin derivatives, sequela +T420X6A Underdosing of hydantoin derivatives, initial encounter +T420X6D Underdosing of hydantoin derivatives, subsequent encounter +T420X6S Underdosing of hydantoin derivatives, sequela +T421X1A Poisoning by iminostilbenes, accidental (unintentional), initial encounter +T421X1D Poisoning by iminostilbenes, accidental (unintentional), subsequent encounter +T421X1S Poisoning by iminostilbenes, accidental (unintentional), sequela +T421X2A Poisoning by iminostilbenes, intentional self-harm, initial encounter +T421X2D Poisoning by iminostilbenes, intentional self-harm, subsequent encounter +T421X2S Poisoning by iminostilbenes, intentional self-harm, sequela +T421X3A Poisoning by iminostilbenes, assault, initial encounter +T421X3D Poisoning by iminostilbenes, assault, subsequent encounter +T421X3S Poisoning by iminostilbenes, assault, sequela +T421X4A Poisoning by iminostilbenes, undetermined, initial encounter +T421X4D Poisoning by iminostilbenes, undetermined, subsequent encounter +T421X4S Poisoning by iminostilbenes, undetermined, sequela +T421X5A Adverse effect of iminostilbenes, initial encounter +T421X5D Adverse effect of iminostilbenes, subsequent encounter +T421X5S Adverse effect of iminostilbenes, sequela +T421X6A Underdosing of iminostilbenes, initial encounter +T421X6D Underdosing of iminostilbenes, subsequent encounter +T421X6S Underdosing of iminostilbenes, sequela +T422X1A Poisoning by succinimides and oxazolidinediones, accidental (unintentional), initial encounter +T422X1D Poisoning by succinimides and oxazolidinediones, accidental (unintentional), subsequent encounter +T422X1S Poisoning by succinimides and oxazolidinediones, accidental (unintentional), sequela +T422X2A Poisoning by succinimides and oxazolidinediones, intentional self-harm, initial encounter +T422X2D Poisoning by succinimides and oxazolidinediones, intentional self-harm, subsequent encounter +T422X2S Poisoning by succinimides and oxazolidinediones, intentional self-harm, sequela +T422X3A Poisoning by succinimides and oxazolidinediones, assault, initial encounter +T422X3D Poisoning by succinimides and oxazolidinediones, assault, subsequent encounter +T422X3S Poisoning by succinimides and oxazolidinediones, assault, sequela +T422X4A Poisoning by succinimides and oxazolidinediones, undetermined, initial encounter +T422X4D Poisoning by succinimides and oxazolidinediones, undetermined, subsequent encounter +T422X4S Poisoning by succinimides and oxazolidinediones, undetermined, sequela +T422X5A Adverse effect of succinimides and oxazolidinediones, initial encounter +T422X5D Adverse effect of succinimides and oxazolidinediones, subsequent encounter +T422X5S Adverse effect of succinimides and oxazolidinediones, sequela +T422X6A Underdosing of succinimides and oxazolidinediones, initial encounter +T422X6D Underdosing of succinimides and oxazolidinediones, subsequent encounter +T422X6S Underdosing of succinimides and oxazolidinediones, sequela +T423X1A Poisoning by barbiturates, accidental (unintentional), initial encounter +T423X1D Poisoning by barbiturates, accidental (unintentional), subsequent encounter +T423X1S Poisoning by barbiturates, accidental (unintentional), sequela +T423X2A Poisoning by barbiturates, intentional self-harm, initial encounter +T423X2D Poisoning by barbiturates, intentional self-harm, subsequent encounter +T423X2S Poisoning by barbiturates, intentional self-harm, sequela +T423X3A Poisoning by barbiturates, assault, initial encounter +T423X3D Poisoning by barbiturates, assault, subsequent encounter +T423X3S Poisoning by barbiturates, assault, sequela +T423X4A Poisoning by barbiturates, undetermined, initial encounter +T423X4D Poisoning by barbiturates, undetermined, subsequent encounter +T423X4S Poisoning by barbiturates, undetermined, sequela +T423X5A Adverse effect of barbiturates, initial encounter +T423X5D Adverse effect of barbiturates, subsequent encounter +T423X5S Adverse effect of barbiturates, sequela +T423X6A Underdosing of barbiturates, initial encounter +T423X6D Underdosing of barbiturates, subsequent encounter +T423X6S Underdosing of barbiturates, sequela +T424X1A Poisoning by benzodiazepines, accidental (unintentional), initial encounter +T424X1D Poisoning by benzodiazepines, accidental (unintentional), subsequent encounter +T424X1S Poisoning by benzodiazepines, accidental (unintentional), sequela +T424X2A Poisoning by benzodiazepines, intentional self-harm, initial encounter +T424X2D Poisoning by benzodiazepines, intentional self-harm, subsequent encounter +T424X2S Poisoning by benzodiazepines, intentional self-harm, sequela +T424X3A Poisoning by benzodiazepines, assault, initial encounter +T424X3D Poisoning by benzodiazepines, assault, subsequent encounter +T424X3S Poisoning by benzodiazepines, assault, sequela +T424X4A Poisoning by benzodiazepines, undetermined, initial encounter +T424X4D Poisoning by benzodiazepines, undetermined, subsequent encounter +T424X4S Poisoning by benzodiazepines, undetermined, sequela +T424X5A Adverse effect of benzodiazepines, initial encounter +T424X5D Adverse effect of benzodiazepines, subsequent encounter +T424X5S Adverse effect of benzodiazepines, sequela +T424X6A Underdosing of benzodiazepines, initial encounter +T424X6D Underdosing of benzodiazepines, subsequent encounter +T424X6S Underdosing of benzodiazepines, sequela +T425X1A Poisoning by mixed antiepileptics, accidental (unintentional), initial encounter +T425X1D Poisoning by mixed antiepileptics, accidental (unintentional), subsequent encounter +T425X1S Poisoning by mixed antiepileptics, accidental (unintentional), sequela +T425X2A Poisoning by mixed antiepileptics, intentional self-harm, initial encounter +T425X2D Poisoning by mixed antiepileptics, intentional self-harm, subsequent encounter +T425X2S Poisoning by mixed antiepileptics, intentional self-harm, sequela +T425X3A Poisoning by mixed antiepileptics, assault, initial encounter +T425X3D Poisoning by mixed antiepileptics, assault, subsequent encounter +T425X3S Poisoning by mixed antiepileptics, assault, sequela +T425X4A Poisoning by mixed antiepileptics, undetermined, initial encounter +T425X4D Poisoning by mixed antiepileptics, undetermined, subsequent encounter +T425X4S Poisoning by mixed antiepileptics, undetermined, sequela +T425X5A Adverse effect of mixed antiepileptics, initial encounter +T425X5D Adverse effect of mixed antiepileptics, subsequent encounter +T425X5S Adverse effect of mixed antiepileptics, sequela +T425X6A Underdosing of mixed antiepileptics, initial encounter +T425X6D Underdosing of mixed antiepileptics, subsequent encounter +T425X6S Underdosing of mixed antiepileptics, sequela +T426X1A Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), initial encounter +T426X1D Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), subsequent encounter +T426X1S Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), sequela +T426X2A Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, initial encounter +T426X2D Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, subsequent encounter +T426X2S Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, sequela +T426X3A Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, initial encounter +T426X3D Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, subsequent encounter +T426X3S Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, sequela +T426X4A Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter +T426X4D Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, subsequent encounter +T426X4S Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, sequela +T426X5A Adverse effect of other antiepileptic and sedative-hypnotic drugs, initial encounter +T426X5D Adverse effect of other antiepileptic and sedative-hypnotic drugs, subsequent encounter +T426X5S Adverse effect of other antiepileptic and sedative-hypnotic drugs, sequela +T426X6A Underdosing of other antiepileptic and sedative-hypnotic drugs, initial encounter +T426X6D Underdosing of other antiepileptic and sedative-hypnotic drugs, subsequent encounter +T426X6S Underdosing of other antiepileptic and sedative-hypnotic drugs, sequela +T4271XA Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional), initial encounter +T4271XD Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional), subsequent encounter +T4271XS Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional), sequela +T4272XA Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, initial encounter +T4272XD Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, subsequent encounter +T4272XS Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, sequela +T4273XA Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, initial encounter +T4273XD Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, subsequent encounter +T4273XS Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, sequela +T4274XA Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter +T4274XD Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, subsequent encounter +T4274XS Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, sequela +T4275XA Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, initial encounter +T4275XD Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, subsequent encounter +T4275XS Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, sequela +T4276XA Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, initial encounter +T4276XD Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, subsequent encounter +T4276XS Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, sequela +T428X1A Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional), initial encounter +T428X1D Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional), subsequent encounter +T428X1S Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional), sequela +T428X2A Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm, initial encounter +T428X2D Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm, subsequent encounter +T428X2S Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm, sequela +T428X3A Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, initial encounter +T428X3D Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, subsequent encounter +T428X3S Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, sequela +T428X4A Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, initial encounter +T428X4D Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, subsequent encounter +T428X4S Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, sequela +T428X5A Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants, initial encounter +T428X5D Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants, subsequent encounter +T428X5S Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants, sequela +T428X6A Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, initial encounter +T428X6D Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, subsequent encounter +T428X6S Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, sequela +T43011A Poisoning by tricyclic antidepressants, accidental (unintentional), initial encounter +T43011D Poisoning by tricyclic antidepressants, accidental (unintentional), subsequent encounter +T43011S Poisoning by tricyclic antidepressants, accidental (unintentional), sequela +T43012A Poisoning by tricyclic antidepressants, intentional self-harm, initial encounter +T43012D Poisoning by tricyclic antidepressants, intentional self-harm, subsequent encounter +T43012S Poisoning by tricyclic antidepressants, intentional self-harm, sequela +T43013A Poisoning by tricyclic antidepressants, assault, initial encounter +T43013D Poisoning by tricyclic antidepressants, assault, subsequent encounter +T43013S Poisoning by tricyclic antidepressants, assault, sequela +T43014A Poisoning by tricyclic antidepressants, undetermined, initial encounter +T43014D Poisoning by tricyclic antidepressants, undetermined, subsequent encounter +T43014S Poisoning by tricyclic antidepressants, undetermined, sequela +T43015A Adverse effect of tricyclic antidepressants, initial encounter +T43015D Adverse effect of tricyclic antidepressants, subsequent encounter +T43015S Adverse effect of tricyclic antidepressants, sequela +T43016A Underdosing of tricyclic antidepressants, initial encounter +T43016D Underdosing of tricyclic antidepressants, subsequent encounter +T43016S Underdosing of tricyclic antidepressants, sequela +T43021A Poisoning by tetracyclic antidepressants, accidental (unintentional), initial encounter +T43021D Poisoning by tetracyclic antidepressants, accidental (unintentional), subsequent encounter +T43021S Poisoning by tetracyclic antidepressants, accidental (unintentional), sequela +T43022A Poisoning by tetracyclic antidepressants, intentional self-harm, initial encounter +T43022D Poisoning by tetracyclic antidepressants, intentional self-harm, subsequent encounter +T43022S Poisoning by tetracyclic antidepressants, intentional self-harm, sequela +T43023A Poisoning by tetracyclic antidepressants, assault, initial encounter +T43023D Poisoning by tetracyclic antidepressants, assault, subsequent encounter +T43023S Poisoning by tetracyclic antidepressants, assault, sequela +T43024A Poisoning by tetracyclic antidepressants, undetermined, initial encounter +T43024D Poisoning by tetracyclic antidepressants, undetermined, subsequent encounter +T43024S Poisoning by tetracyclic antidepressants, undetermined, sequela +T43025A Adverse effect of tetracyclic antidepressants, initial encounter +T43025D Adverse effect of tetracyclic antidepressants, subsequent encounter +T43025S Adverse effect of tetracyclic antidepressants, sequela +T43026A Underdosing of tetracyclic antidepressants, initial encounter +T43026D Underdosing of tetracyclic antidepressants, subsequent encounter +T43026S Underdosing of tetracyclic antidepressants, sequela +T431X1A Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional), initial encounter +T431X1D Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional), subsequent encounter +T431X1S Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional), sequela +T431X2A Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, initial encounter +T431X2D Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, subsequent encounter +T431X2S Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, sequela +T431X3A Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, initial encounter +T431X3D Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, subsequent encounter +T431X3S Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, sequela +T431X4A Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, initial encounter +T431X4D Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, subsequent encounter +T431X4S Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, sequela +T431X5A Adverse effect of monoamine-oxidase-inhibitor antidepressants, initial encounter +T431X5D Adverse effect of monoamine-oxidase-inhibitor antidepressants, subsequent encounter +T431X5S Adverse effect of monoamine-oxidase-inhibitor antidepressants, sequela +T431X6A Underdosing of monoamine-oxidase-inhibitor antidepressants, initial encounter +T431X6D Underdosing of monoamine-oxidase-inhibitor antidepressants, subsequent encounter +T431X6S Underdosing of monoamine-oxidase-inhibitor antidepressants, sequela +T43201A Poisoning by unspecified antidepressants, accidental (unintentional), initial encounter +T43201D Poisoning by unspecified antidepressants, accidental (unintentional), subsequent encounter +T43201S Poisoning by unspecified antidepressants, accidental (unintentional), sequela +T43202A Poisoning by unspecified antidepressants, intentional self-harm, initial encounter +T43202D Poisoning by unspecified antidepressants, intentional self-harm, subsequent encounter +T43202S Poisoning by unspecified antidepressants, intentional self-harm, sequela +T43203A Poisoning by unspecified antidepressants, assault, initial encounter +T43203D Poisoning by unspecified antidepressants, assault, subsequent encounter +T43203S Poisoning by unspecified antidepressants, assault, sequela +T43204A Poisoning by unspecified antidepressants, undetermined, initial encounter +T43204D Poisoning by unspecified antidepressants, undetermined, subsequent encounter +T43204S Poisoning by unspecified antidepressants, undetermined, sequela +T43205A Adverse effect of unspecified antidepressants, initial encounter +T43205D Adverse effect of unspecified antidepressants, subsequent encounter +T43205S Adverse effect of unspecified antidepressants, sequela +T43206A Underdosing of unspecified antidepressants, initial encounter +T43206D Underdosing of unspecified antidepressants, subsequent encounter +T43206S Underdosing of unspecified antidepressants, sequela +T43211A Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional), initial encounter +T43211D Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional), subsequent encounter +T43211S Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional), sequela +T43212A Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm, initial encounter +T43212D Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm, subsequent encounter +T43212S Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm, sequela +T43213A Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, initial encounter +T43213D Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, subsequent encounter +T43213S Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, sequela +T43214A Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined, initial encounter +T43214D Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined, subsequent encounter +T43214S Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined, sequela +T43215A Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, initial encounter +T43215D Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, subsequent encounter +T43215S Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, sequela +T43216A Underdosing of selective serotonin and norepinephrine reuptake inhibitors, initial encounter +T43216D Underdosing of selective serotonin and norepinephrine reuptake inhibitors, subsequent encounter +T43216S Underdosing of selective serotonin and norepinephrine reuptake inhibitors, sequela +T43221A Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), initial encounter +T43221D Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), subsequent encounter +T43221S Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), sequela +T43222A Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, initial encounter +T43222D Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, subsequent encounter +T43222S Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, sequela +T43223A Poisoning by selective serotonin reuptake inhibitors, assault, initial encounter +T43223D Poisoning by selective serotonin reuptake inhibitors, assault, subsequent encounter +T43223S Poisoning by selective serotonin reuptake inhibitors, assault, sequela +T43224A Poisoning by selective serotonin reuptake inhibitors, undetermined, initial encounter +T43224D Poisoning by selective serotonin reuptake inhibitors, undetermined, subsequent encounter +T43224S Poisoning by selective serotonin reuptake inhibitors, undetermined, sequela +T43225A Adverse effect of selective serotonin reuptake inhibitors, initial encounter +T43225D Adverse effect of selective serotonin reuptake inhibitors, subsequent encounter +T43225S Adverse effect of selective serotonin reuptake inhibitors, sequela +T43226A Underdosing of selective serotonin reuptake inhibitors, initial encounter +T43226D Underdosing of selective serotonin reuptake inhibitors, subsequent encounter +T43226S Underdosing of selective serotonin reuptake inhibitors, sequela +T43291A Poisoning by other antidepressants, accidental (unintentional), initial encounter +T43291D Poisoning by other antidepressants, accidental (unintentional), subsequent encounter +T43291S Poisoning by other antidepressants, accidental (unintentional), sequela +T43292A Poisoning by other antidepressants, intentional self-harm, initial encounter +T43292D Poisoning by other antidepressants, intentional self-harm, subsequent encounter +T43292S Poisoning by other antidepressants, intentional self-harm, sequela +T43293A Poisoning by other antidepressants, assault, initial encounter +T43293D Poisoning by other antidepressants, assault, subsequent encounter +T43293S Poisoning by other antidepressants, assault, sequela +T43294A Poisoning by other antidepressants, undetermined, initial encounter +T43294D Poisoning by other antidepressants, undetermined, subsequent encounter +T43294S Poisoning by other antidepressants, undetermined, sequela +T43295A Adverse effect of other antidepressants, initial encounter +T43295D Adverse effect of other antidepressants, subsequent encounter +T43295S Adverse effect of other antidepressants, sequela +T43296A Underdosing of other antidepressants, initial encounter +T43296D Underdosing of other antidepressants, subsequent encounter +T43296S Underdosing of other antidepressants, sequela +T433X1A Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional), initial encounter +T433X1D Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional), subsequent encounter +T433X1S Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional), sequela +T433X2A Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, initial encounter +T433X2D Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, subsequent encounter +T433X2S Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, sequela +T433X3A Poisoning by phenothiazine antipsychotics and neuroleptics, assault, initial encounter +T433X3D Poisoning by phenothiazine antipsychotics and neuroleptics, assault, subsequent encounter +T433X3S Poisoning by phenothiazine antipsychotics and neuroleptics, assault, sequela +T433X4A Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, initial encounter +T433X4D Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, subsequent encounter +T433X4S Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, sequela +T433X5A Adverse effect of phenothiazine antipsychotics and neuroleptics, initial encounter +T433X5D Adverse effect of phenothiazine antipsychotics and neuroleptics, subsequent encounter +T433X5S Adverse effect of phenothiazine antipsychotics and neuroleptics, sequela +T433X6A Underdosing of phenothiazine antipsychotics and neuroleptics, initial encounter +T433X6D Underdosing of phenothiazine antipsychotics and neuroleptics, subsequent encounter +T433X6S Underdosing of phenothiazine antipsychotics and neuroleptics, sequela +T434X1A Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional), initial encounter +T434X1D Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional), subsequent encounter +T434X1S Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional), sequela +T434X2A Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, initial encounter +T434X2D Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, subsequent encounter +T434X2S Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, sequela +T434X3A Poisoning by butyrophenone and thiothixene neuroleptics, assault, initial encounter +T434X3D Poisoning by butyrophenone and thiothixene neuroleptics, assault, subsequent encounter +T434X3S Poisoning by butyrophenone and thiothixene neuroleptics, assault, sequela +T434X4A Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, initial encounter +T434X4D Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, subsequent encounter +T434X4S Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, sequela +T434X5A Adverse effect of butyrophenone and thiothixene neuroleptics, initial encounter +T434X5D Adverse effect of butyrophenone and thiothixene neuroleptics, subsequent encounter +T434X5S Adverse effect of butyrophenone and thiothixene neuroleptics, sequela +T434X6A Underdosing of butyrophenone and thiothixene neuroleptics, initial encounter +T434X6D Underdosing of butyrophenone and thiothixene neuroleptics, subsequent encounter +T434X6S Underdosing of butyrophenone and thiothixene neuroleptics, sequela +T43501A Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional), initial encounter +T43501D Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional), subsequent encounter +T43501S Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional), sequela +T43502A Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, initial encounter +T43502D Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, subsequent encounter +T43502S Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, sequela +T43503A Poisoning by unspecified antipsychotics and neuroleptics, assault, initial encounter +T43503D Poisoning by unspecified antipsychotics and neuroleptics, assault, subsequent encounter +T43503S Poisoning by unspecified antipsychotics and neuroleptics, assault, sequela +T43504A Poisoning by unspecified antipsychotics and neuroleptics, undetermined, initial encounter +T43504D Poisoning by unspecified antipsychotics and neuroleptics, undetermined, subsequent encounter +T43504S Poisoning by unspecified antipsychotics and neuroleptics, undetermined, sequela +T43505A Adverse effect of unspecified antipsychotics and neuroleptics, initial encounter +T43505D Adverse effect of unspecified antipsychotics and neuroleptics, subsequent encounter +T43505S Adverse effect of unspecified antipsychotics and neuroleptics, sequela +T43506A Underdosing of unspecified antipsychotics and neuroleptics, initial encounter +T43506D Underdosing of unspecified antipsychotics and neuroleptics, subsequent encounter +T43506S Underdosing of unspecified antipsychotics and neuroleptics, sequela +T43591A Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), initial encounter +T43591D Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), subsequent encounter +T43591S Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), sequela +T43592A Poisoning by other antipsychotics and neuroleptics, intentional self-harm, initial encounter +T43592D Poisoning by other antipsychotics and neuroleptics, intentional self-harm, subsequent encounter +T43592S Poisoning by other antipsychotics and neuroleptics, intentional self-harm, sequela +T43593A Poisoning by other antipsychotics and neuroleptics, assault, initial encounter +T43593D Poisoning by other antipsychotics and neuroleptics, assault, subsequent encounter +T43593S Poisoning by other antipsychotics and neuroleptics, assault, sequela +T43594A Poisoning by other antipsychotics and neuroleptics, undetermined, initial encounter +T43594D Poisoning by other antipsychotics and neuroleptics, undetermined, subsequent encounter +T43594S Poisoning by other antipsychotics and neuroleptics, undetermined, sequela +T43595A Adverse effect of other antipsychotics and neuroleptics, initial encounter +T43595D Adverse effect of other antipsychotics and neuroleptics, subsequent encounter +T43595S Adverse effect of other antipsychotics and neuroleptics, sequela +T43596A Underdosing of other antipsychotics and neuroleptics, initial encounter +T43596D Underdosing of other antipsychotics and neuroleptics, subsequent encounter +T43596S Underdosing of other antipsychotics and neuroleptics, sequela +T43601A Poisoning by unspecified psychostimulants, accidental (unintentional), initial encounter +T43601D Poisoning by unspecified psychostimulants, accidental (unintentional), subsequent encounter +T43601S Poisoning by unspecified psychostimulants, accidental (unintentional), sequela +T43602A Poisoning by unspecified psychostimulants, intentional self-harm, initial encounter +T43602D Poisoning by unspecified psychostimulants, intentional self-harm, subsequent encounter +T43602S Poisoning by unspecified psychostimulants, intentional self-harm, sequela +T43603A Poisoning by unspecified psychostimulants, assault, initial encounter +T43603D Poisoning by unspecified psychostimulants, assault, subsequent encounter +T43603S Poisoning by unspecified psychostimulants, assault, sequela +T43604A Poisoning by unspecified psychostimulants, undetermined, initial encounter +T43604D Poisoning by unspecified psychostimulants, undetermined, subsequent encounter +T43604S Poisoning by unspecified psychostimulants, undetermined, sequela +T43605A Adverse effect of unspecified psychostimulants, initial encounter +T43605D Adverse effect of unspecified psychostimulants, subsequent encounter +T43605S Adverse effect of unspecified psychostimulants, sequela +T43606A Underdosing of unspecified psychostimulants, initial encounter +T43606D Underdosing of unspecified psychostimulants, subsequent encounter +T43606S Underdosing of unspecified psychostimulants, sequela +T43611A Poisoning by caffeine, accidental (unintentional), initial encounter +T43611D Poisoning by caffeine, accidental (unintentional), subsequent encounter +T43611S Poisoning by caffeine, accidental (unintentional), sequela +T43612A Poisoning by caffeine, intentional self-harm, initial encounter +T43612D Poisoning by caffeine, intentional self-harm, subsequent encounter +T43612S Poisoning by caffeine, intentional self-harm, sequela +T43613A Poisoning by caffeine, assault, initial encounter +T43613D Poisoning by caffeine, assault, subsequent encounter +T43613S Poisoning by caffeine, assault, sequela +T43614A Poisoning by caffeine, undetermined, initial encounter +T43614D Poisoning by caffeine, undetermined, subsequent encounter +T43614S Poisoning by caffeine, undetermined, sequela +T43615A Adverse effect of caffeine, initial encounter +T43615D Adverse effect of caffeine, subsequent encounter +T43615S Adverse effect of caffeine, sequela +T43616A Underdosing of caffeine, initial encounter +T43616D Underdosing of caffeine, subsequent encounter +T43616S Underdosing of caffeine, sequela +T43621A Poisoning by amphetamines, accidental (unintentional), initial encounter +T43621D Poisoning by amphetamines, accidental (unintentional), subsequent encounter +T43621S Poisoning by amphetamines, accidental (unintentional), sequela +T43622A Poisoning by amphetamines, intentional self-harm, initial encounter +T43622D Poisoning by amphetamines, intentional self-harm, subsequent encounter +T43622S Poisoning by amphetamines, intentional self-harm, sequela +T43623A Poisoning by amphetamines, assault, initial encounter +T43623D Poisoning by amphetamines, assault, subsequent encounter +T43623S Poisoning by amphetamines, assault, sequela +T43624A Poisoning by amphetamines, undetermined, initial encounter +T43624D Poisoning by amphetamines, undetermined, subsequent encounter +T43624S Poisoning by amphetamines, undetermined, sequela +T43625A Adverse effect of amphetamines, initial encounter +T43625D Adverse effect of amphetamines, subsequent encounter +T43625S Adverse effect of amphetamines, sequela +T43626A Underdosing of amphetamines, initial encounter +T43626D Underdosing of amphetamines, subsequent encounter +T43626S Underdosing of amphetamines, sequela +T43631A Poisoning by methylphenidate, accidental (unintentional), initial encounter +T43631D Poisoning by methylphenidate, accidental (unintentional), subsequent encounter +T43631S Poisoning by methylphenidate, accidental (unintentional), sequela +T43632A Poisoning by methylphenidate, intentional self-harm, initial encounter +T43632D Poisoning by methylphenidate, intentional self-harm, subsequent encounter +T43632S Poisoning by methylphenidate, intentional self-harm, sequela +T43633A Poisoning by methylphenidate, assault, initial encounter +T43633D Poisoning by methylphenidate, assault, subsequent encounter +T43633S Poisoning by methylphenidate, assault, sequela +T43634A Poisoning by methylphenidate, undetermined, initial encounter +T43634D Poisoning by methylphenidate, undetermined, subsequent encounter +T43634S Poisoning by methylphenidate, undetermined, sequela +T43635A Adverse effect of methylphenidate, initial encounter +T43635D Adverse effect of methylphenidate, subsequent encounter +T43635S Adverse effect of methylphenidate, sequela +T43636A Underdosing of methylphenidate, initial encounter +T43636D Underdosing of methylphenidate, subsequent encounter +T43636S Underdosing of methylphenidate, sequela +T43641A Poisoning by ecstasy, accidental (unintentional), initial encounter +T43641D Poisoning by ecstasy, accidental (unintentional), subsequent encounter +T43641S Poisoning by ecstasy, accidental (unintentional), sequela +T43642A Poisoning by ecstasy, intentional self-harm, initial encounter +T43642D Poisoning by ecstasy, intentional self-harm, subsequent encounter +T43642S Poisoning by ecstasy, intentional self-harm, sequela +T43643A Poisoning by ecstasy, assault, initial encounter +T43643D Poisoning by ecstasy, assault, subsequent encounter +T43643S Poisoning by ecstasy, assault, sequela +T43644A Poisoning by ecstasy, undetermined, initial encounter +T43644D Poisoning by ecstasy, undetermined, subsequent encounter +T43644S Poisoning by ecstasy, undetermined, sequela +T43691A Poisoning by other psychostimulants, accidental (unintentional), initial encounter +T43691D Poisoning by other psychostimulants, accidental (unintentional), subsequent encounter +T43691S Poisoning by other psychostimulants, accidental (unintentional), sequela +T43692A Poisoning by other psychostimulants, intentional self-harm, initial encounter +T43692D Poisoning by other psychostimulants, intentional self-harm, subsequent encounter +T43692S Poisoning by other psychostimulants, intentional self-harm, sequela +T43693A Poisoning by other psychostimulants, assault, initial encounter +T43693D Poisoning by other psychostimulants, assault, subsequent encounter +T43693S Poisoning by other psychostimulants, assault, sequela +T43694A Poisoning by other psychostimulants, undetermined, initial encounter +T43694D Poisoning by other psychostimulants, undetermined, subsequent encounter +T43694S Poisoning by other psychostimulants, undetermined, sequela +T43695A Adverse effect of other psychostimulants, initial encounter +T43695D Adverse effect of other psychostimulants, subsequent encounter +T43695S Adverse effect of other psychostimulants, sequela +T43696A Underdosing of other psychostimulants, initial encounter +T43696D Underdosing of other psychostimulants, subsequent encounter +T43696S Underdosing of other psychostimulants, sequela +T438X1A Poisoning by other psychotropic drugs, accidental (unintentional), initial encounter +T438X1D Poisoning by other psychotropic drugs, accidental (unintentional), subsequent encounter +T438X1S Poisoning by other psychotropic drugs, accidental (unintentional), sequela +T438X2A Poisoning by other psychotropic drugs, intentional self-harm, initial encounter +T438X2D Poisoning by other psychotropic drugs, intentional self-harm, subsequent encounter +T438X2S Poisoning by other psychotropic drugs, intentional self-harm, sequela +T438X3A Poisoning by other psychotropic drugs, assault, initial encounter +T438X3D Poisoning by other psychotropic drugs, assault, subsequent encounter +T438X3S Poisoning by other psychotropic drugs, assault, sequela +T438X4A Poisoning by other psychotropic drugs, undetermined, initial encounter +T438X4D Poisoning by other psychotropic drugs, undetermined, subsequent encounter +T438X4S Poisoning by other psychotropic drugs, undetermined, sequela +T438X5A Adverse effect of other psychotropic drugs, initial encounter +T438X5D Adverse effect of other psychotropic drugs, subsequent encounter +T438X5S Adverse effect of other psychotropic drugs, sequela +T438X6A Underdosing of other psychotropic drugs, initial encounter +T438X6D Underdosing of other psychotropic drugs, subsequent encounter +T438X6S Underdosing of other psychotropic drugs, sequela +T4391XA Poisoning by unspecified psychotropic drug, accidental (unintentional), initial encounter +T4391XD Poisoning by unspecified psychotropic drug, accidental (unintentional), subsequent encounter +T4391XS Poisoning by unspecified psychotropic drug, accidental (unintentional), sequela +T4392XA Poisoning by unspecified psychotropic drug, intentional self-harm, initial encounter +T4392XD Poisoning by unspecified psychotropic drug, intentional self-harm, subsequent encounter +T4392XS Poisoning by unspecified psychotropic drug, intentional self-harm, sequela +T4393XA Poisoning by unspecified psychotropic drug, assault, initial encounter +T4393XD Poisoning by unspecified psychotropic drug, assault, subsequent encounter +T4393XS Poisoning by unspecified psychotropic drug, assault, sequela +T4394XA Poisoning by unspecified psychotropic drug, undetermined, initial encounter +T4394XD Poisoning by unspecified psychotropic drug, undetermined, subsequent encounter +T4394XS Poisoning by unspecified psychotropic drug, undetermined, sequela +T4395XA Adverse effect of unspecified psychotropic drug, initial encounter +T4395XD Adverse effect of unspecified psychotropic drug, subsequent encounter +T4395XS Adverse effect of unspecified psychotropic drug, sequela +T4396XA Underdosing of unspecified psychotropic drug, initial encounter +T4396XD Underdosing of unspecified psychotropic drug, subsequent encounter +T4396XS Underdosing of unspecified psychotropic drug, sequela +T440X1A Poisoning by anticholinesterase agents, accidental (unintentional), initial encounter +T440X1D Poisoning by anticholinesterase agents, accidental (unintentional), subsequent encounter +T440X1S Poisoning by anticholinesterase agents, accidental (unintentional), sequela +T440X2A Poisoning by anticholinesterase agents, intentional self-harm, initial encounter +T440X2D Poisoning by anticholinesterase agents, intentional self-harm, subsequent encounter +T440X2S Poisoning by anticholinesterase agents, intentional self-harm, sequela +T440X3A Poisoning by anticholinesterase agents, assault, initial encounter +T440X3D Poisoning by anticholinesterase agents, assault, subsequent encounter +T440X3S Poisoning by anticholinesterase agents, assault, sequela +T440X4A Poisoning by anticholinesterase agents, undetermined, initial encounter +T440X4D Poisoning by anticholinesterase agents, undetermined, subsequent encounter +T440X4S Poisoning by anticholinesterase agents, undetermined, sequela +T440X5A Adverse effect of anticholinesterase agents, initial encounter +T440X5D Adverse effect of anticholinesterase agents, subsequent encounter +T440X5S Adverse effect of anticholinesterase agents, sequela +T440X6A Underdosing of anticholinesterase agents, initial encounter +T440X6D Underdosing of anticholinesterase agents, subsequent encounter +T440X6S Underdosing of anticholinesterase agents, sequela +T441X1A Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional), initial encounter +T441X1D Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional), subsequent encounter +T441X1S Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional), sequela +T441X2A Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, initial encounter +T441X2D Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, subsequent encounter +T441X2S Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, sequela +T441X3A Poisoning by other parasympathomimetics [cholinergics], assault, initial encounter +T441X3D Poisoning by other parasympathomimetics [cholinergics], assault, subsequent encounter +T441X3S Poisoning by other parasympathomimetics [cholinergics], assault, sequela +T441X4A Poisoning by other parasympathomimetics [cholinergics], undetermined, initial encounter +T441X4D Poisoning by other parasympathomimetics [cholinergics], undetermined, subsequent encounter +T441X4S Poisoning by other parasympathomimetics [cholinergics], undetermined, sequela +T441X5A Adverse effect of other parasympathomimetics [cholinergics], initial encounter +T441X5D Adverse effect of other parasympathomimetics [cholinergics], subsequent encounter +T441X5S Adverse effect of other parasympathomimetics [cholinergics], sequela +T441X6A Underdosing of other parasympathomimetics [cholinergics], initial encounter +T441X6D Underdosing of other parasympathomimetics [cholinergics], subsequent encounter +T441X6S Underdosing of other parasympathomimetics [cholinergics], sequela +T442X1A Poisoning by ganglionic blocking drugs, accidental (unintentional), initial encounter +T442X1D Poisoning by ganglionic blocking drugs, accidental (unintentional), subsequent encounter +T442X1S Poisoning by ganglionic blocking drugs, accidental (unintentional), sequela +T442X2A Poisoning by ganglionic blocking drugs, intentional self-harm, initial encounter +T442X2D Poisoning by ganglionic blocking drugs, intentional self-harm, subsequent encounter +T442X2S Poisoning by ganglionic blocking drugs, intentional self-harm, sequela +T442X3A Poisoning by ganglionic blocking drugs, assault, initial encounter +T442X3D Poisoning by ganglionic blocking drugs, assault, subsequent encounter +T442X3S Poisoning by ganglionic blocking drugs, assault, sequela +T442X4A Poisoning by ganglionic blocking drugs, undetermined, initial encounter +T442X4D Poisoning by ganglionic blocking drugs, undetermined, subsequent encounter +T442X4S Poisoning by ganglionic blocking drugs, undetermined, sequela +T442X5A Adverse effect of ganglionic blocking drugs, initial encounter +T442X5D Adverse effect of ganglionic blocking drugs, subsequent encounter +T442X5S Adverse effect of ganglionic blocking drugs, sequela +T442X6A Underdosing of ganglionic blocking drugs, initial encounter +T442X6D Underdosing of ganglionic blocking drugs, subsequent encounter +T442X6S Underdosing of ganglionic blocking drugs, sequela +T443X1A Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional), initial encounter +T443X1D Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional), subsequent encounter +T443X1S Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional), sequela +T443X2A Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm, initial encounter +T443X2D Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm, subsequent encounter +T443X2S Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm, sequela +T443X3A Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault, initial encounter +T443X3D Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault, subsequent encounter +T443X3S Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault, sequela +T443X4A Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined, initial encounter +T443X4D Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined, subsequent encounter +T443X4S Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined, sequela +T443X5A Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, initial encounter +T443X5D Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, subsequent encounter +T443X5S Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, sequela +T443X6A Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, initial encounter +T443X6D Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, subsequent encounter +T443X6S Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, sequela +T444X1A Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional), initial encounter +T444X1D Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional), subsequent encounter +T444X1S Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional), sequela +T444X2A Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, initial encounter +T444X2D Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, subsequent encounter +T444X2S Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, sequela +T444X3A Poisoning by predominantly alpha-adrenoreceptor agonists, assault, initial encounter +T444X3D Poisoning by predominantly alpha-adrenoreceptor agonists, assault, subsequent encounter +T444X3S Poisoning by predominantly alpha-adrenoreceptor agonists, assault, sequela +T444X4A Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, initial encounter +T444X4D Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, subsequent encounter +T444X4S Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, sequela +T444X5A Adverse effect of predominantly alpha-adrenoreceptor agonists, initial encounter +T444X5D Adverse effect of predominantly alpha-adrenoreceptor agonists, subsequent encounter +T444X5S Adverse effect of predominantly alpha-adrenoreceptor agonists, sequela +T444X6A Underdosing of predominantly alpha-adrenoreceptor agonists, initial encounter +T444X6D Underdosing of predominantly alpha-adrenoreceptor agonists, subsequent encounter +T444X6S Underdosing of predominantly alpha-adrenoreceptor agonists, sequela +T445X1A Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional), initial encounter +T445X1D Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional), subsequent encounter +T445X1S Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional), sequela +T445X2A Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, initial encounter +T445X2D Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, subsequent encounter +T445X2S Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, sequela +T445X3A Poisoning by predominantly beta-adrenoreceptor agonists, assault, initial encounter +T445X3D Poisoning by predominantly beta-adrenoreceptor agonists, assault, subsequent encounter +T445X3S Poisoning by predominantly beta-adrenoreceptor agonists, assault, sequela +T445X4A Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, initial encounter +T445X4D Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, subsequent encounter +T445X4S Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, sequela +T445X5A Adverse effect of predominantly beta-adrenoreceptor agonists, initial encounter +T445X5D Adverse effect of predominantly beta-adrenoreceptor agonists, subsequent encounter +T445X5S Adverse effect of predominantly beta-adrenoreceptor agonists, sequela +T445X6A Underdosing of predominantly beta-adrenoreceptor agonists, initial encounter +T445X6D Underdosing of predominantly beta-adrenoreceptor agonists, subsequent encounter +T445X6S Underdosing of predominantly beta-adrenoreceptor agonists, sequela +T446X1A Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), initial encounter +T446X1D Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), subsequent encounter +T446X1S Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), sequela +T446X2A Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, initial encounter +T446X2D Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, subsequent encounter +T446X2S Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, sequela +T446X3A Poisoning by alpha-adrenoreceptor antagonists, assault, initial encounter +T446X3D Poisoning by alpha-adrenoreceptor antagonists, assault, subsequent encounter +T446X3S Poisoning by alpha-adrenoreceptor antagonists, assault, sequela +T446X4A Poisoning by alpha-adrenoreceptor antagonists, undetermined, initial encounter +T446X4D Poisoning by alpha-adrenoreceptor antagonists, undetermined, subsequent encounter +T446X4S Poisoning by alpha-adrenoreceptor antagonists, undetermined, sequela +T446X5A Adverse effect of alpha-adrenoreceptor antagonists, initial encounter +T446X5D Adverse effect of alpha-adrenoreceptor antagonists, subsequent encounter +T446X5S Adverse effect of alpha-adrenoreceptor antagonists, sequela +T446X6A Underdosing of alpha-adrenoreceptor antagonists, initial encounter +T446X6D Underdosing of alpha-adrenoreceptor antagonists, subsequent encounter +T446X6S Underdosing of alpha-adrenoreceptor antagonists, sequela +T447X1A Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), initial encounter +T447X1D Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), subsequent encounter +T447X1S Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), sequela +T447X2A Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, initial encounter +T447X2D Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, subsequent encounter +T447X2S Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, sequela +T447X3A Poisoning by beta-adrenoreceptor antagonists, assault, initial encounter +T447X3D Poisoning by beta-adrenoreceptor antagonists, assault, subsequent encounter +T447X3S Poisoning by beta-adrenoreceptor antagonists, assault, sequela +T447X4A Poisoning by beta-adrenoreceptor antagonists, undetermined, initial encounter +T447X4D Poisoning by beta-adrenoreceptor antagonists, undetermined, subsequent encounter +T447X4S Poisoning by beta-adrenoreceptor antagonists, undetermined, sequela +T447X5A Adverse effect of beta-adrenoreceptor antagonists, initial encounter +T447X5D Adverse effect of beta-adrenoreceptor antagonists, subsequent encounter +T447X5S Adverse effect of beta-adrenoreceptor antagonists, sequela +T447X6A Underdosing of beta-adrenoreceptor antagonists, initial encounter +T447X6D Underdosing of beta-adrenoreceptor antagonists, subsequent encounter +T447X6S Underdosing of beta-adrenoreceptor antagonists, sequela +T448X1A Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional), initial encounter +T448X1D Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional), subsequent encounter +T448X1S Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional), sequela +T448X2A Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm, initial encounter +T448X2D Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm, subsequent encounter +T448X2S Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm, sequela +T448X3A Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, initial encounter +T448X3D Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, subsequent encounter +T448X3S Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, sequela +T448X4A Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, initial encounter +T448X4D Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, subsequent encounter +T448X4S Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, sequela +T448X5A Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, initial encounter +T448X5D Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, subsequent encounter +T448X5S Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, sequela +T448X6A Underdosing of centrally-acting and adrenergic-neuron-blocking agents, initial encounter +T448X6D Underdosing of centrally-acting and adrenergic-neuron-blocking agents, subsequent encounter +T448X6S Underdosing of centrally-acting and adrenergic-neuron-blocking agents, sequela +T44901A Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional), initial encounter +T44901D Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional), subsequent encounter +T44901S Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional), sequela +T44902A Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm, initial encounter +T44902D Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm, subsequent encounter +T44902S Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm, sequela +T44903A Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault, initial encounter +T44903D Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault, subsequent encounter +T44903S Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault, sequela +T44904A Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined, initial encounter +T44904D Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined, subsequent encounter +T44904S Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined, sequela +T44905A Adverse effect of unspecified drugs primarily affecting the autonomic nervous system, initial encounter +T44905D Adverse effect of unspecified drugs primarily affecting the autonomic nervous system, subsequent encounter +T44905S Adverse effect of unspecified drugs primarily affecting the autonomic nervous system, sequela +T44906A Underdosing of unspecified drugs primarily affecting the autonomic nervous system, initial encounter +T44906D Underdosing of unspecified drugs primarily affecting the autonomic nervous system, subsequent encounter +T44906S Underdosing of unspecified drugs primarily affecting the autonomic nervous system, sequela +T44991A Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional), initial encounter +T44991D Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional), subsequent encounter +T44991S Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional), sequela +T44992A Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm, initial encounter +T44992D Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm, subsequent encounter +T44992S Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm, sequela +T44993A Poisoning by other drug primarily affecting the autonomic nervous system, assault, initial encounter +T44993D Poisoning by other drug primarily affecting the autonomic nervous system, assault, subsequent encounter +T44993S Poisoning by other drug primarily affecting the autonomic nervous system, assault, sequela +T44994A Poisoning by other drug primarily affecting the autonomic nervous system, undetermined, initial encounter +T44994D Poisoning by other drug primarily affecting the autonomic nervous system, undetermined, subsequent encounter +T44994S Poisoning by other drug primarily affecting the autonomic nervous system, undetermined, sequela +T44995A Adverse effect of other drug primarily affecting the autonomic nervous system, initial encounter +T44995D Adverse effect of other drug primarily affecting the autonomic nervous system, subsequent encounter +T44995S Adverse effect of other drug primarily affecting the autonomic nervous system, sequela +T44996A Underdosing of other drug primarily affecting the autonomic nervous system, initial encounter +T44996D Underdosing of other drug primarily affecting the autonomic nervous system, subsequent encounter +T44996S Underdosing of other drug primarily affecting the autonomic nervous system, sequela +T450X1A Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), initial encounter +T450X1D Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), subsequent encounter +T450X1S Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), sequela +T450X2A Poisoning by antiallergic and antiemetic drugs, intentional self-harm, initial encounter +T450X2D Poisoning by antiallergic and antiemetic drugs, intentional self-harm, subsequent encounter +T450X2S Poisoning by antiallergic and antiemetic drugs, intentional self-harm, sequela +T450X3A Poisoning by antiallergic and antiemetic drugs, assault, initial encounter +T450X3D Poisoning by antiallergic and antiemetic drugs, assault, subsequent encounter +T450X3S Poisoning by antiallergic and antiemetic drugs, assault, sequela +T450X4A Poisoning by antiallergic and antiemetic drugs, undetermined, initial encounter +T450X4D Poisoning by antiallergic and antiemetic drugs, undetermined, subsequent encounter +T450X4S Poisoning by antiallergic and antiemetic drugs, undetermined, sequela +T450X5A Adverse effect of antiallergic and antiemetic drugs, initial encounter +T450X5D Adverse effect of antiallergic and antiemetic drugs, subsequent encounter +T450X5S Adverse effect of antiallergic and antiemetic drugs, sequela +T450X6A Underdosing of antiallergic and antiemetic drugs, initial encounter +T450X6D Underdosing of antiallergic and antiemetic drugs, subsequent encounter +T450X6S Underdosing of antiallergic and antiemetic drugs, sequela +T451X1A Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional), initial encounter +T451X1D Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional), subsequent encounter +T451X1S Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional), sequela +T451X2A Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, initial encounter +T451X2D Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, subsequent encounter +T451X2S Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, sequela +T451X3A Poisoning by antineoplastic and immunosuppressive drugs, assault, initial encounter +T451X3D Poisoning by antineoplastic and immunosuppressive drugs, assault, subsequent encounter +T451X3S Poisoning by antineoplastic and immunosuppressive drugs, assault, sequela +T451X4A Poisoning by antineoplastic and immunosuppressive drugs, undetermined, initial encounter +T451X4D Poisoning by antineoplastic and immunosuppressive drugs, undetermined, subsequent encounter +T451X4S Poisoning by antineoplastic and immunosuppressive drugs, undetermined, sequela +T451X5A Adverse effect of antineoplastic and immunosuppressive drugs, initial encounter +T451X5D Adverse effect of antineoplastic and immunosuppressive drugs, subsequent encounter +T451X5S Adverse effect of antineoplastic and immunosuppressive drugs, sequela +T451X6A Underdosing of antineoplastic and immunosuppressive drugs, initial encounter +T451X6D Underdosing of antineoplastic and immunosuppressive drugs, subsequent encounter +T451X6S Underdosing of antineoplastic and immunosuppressive drugs, sequela +T452X1A Poisoning by vitamins, accidental (unintentional), initial encounter +T452X1D Poisoning by vitamins, accidental (unintentional), subsequent encounter +T452X1S Poisoning by vitamins, accidental (unintentional), sequela +T452X2A Poisoning by vitamins, intentional self-harm, initial encounter +T452X2D Poisoning by vitamins, intentional self-harm, subsequent encounter +T452X2S Poisoning by vitamins, intentional self-harm, sequela +T452X3A Poisoning by vitamins, assault, initial encounter +T452X3D Poisoning by vitamins, assault, subsequent encounter +T452X3S Poisoning by vitamins, assault, sequela +T452X4A Poisoning by vitamins, undetermined, initial encounter +T452X4D Poisoning by vitamins, undetermined, subsequent encounter +T452X4S Poisoning by vitamins, undetermined, sequela +T452X5A Adverse effect of vitamins, initial encounter +T452X5D Adverse effect of vitamins, subsequent encounter +T452X5S Adverse effect of vitamins, sequela +T452X6A Underdosing of vitamins, initial encounter +T452X6D Underdosing of vitamins, subsequent encounter +T452X6S Underdosing of vitamins, sequela +T453X1A Poisoning by enzymes, accidental (unintentional), initial encounter +T453X1D Poisoning by enzymes, accidental (unintentional), subsequent encounter +T453X1S Poisoning by enzymes, accidental (unintentional), sequela +T453X2A Poisoning by enzymes, intentional self-harm, initial encounter +T453X2D Poisoning by enzymes, intentional self-harm, subsequent encounter +T453X2S Poisoning by enzymes, intentional self-harm, sequela +T453X3A Poisoning by enzymes, assault, initial encounter +T453X3D Poisoning by enzymes, assault, subsequent encounter +T453X3S Poisoning by enzymes, assault, sequela +T453X4A Poisoning by enzymes, undetermined, initial encounter +T453X4D Poisoning by enzymes, undetermined, subsequent encounter +T453X4S Poisoning by enzymes, undetermined, sequela +T453X5A Adverse effect of enzymes, initial encounter +T453X5D Adverse effect of enzymes, subsequent encounter +T453X5S Adverse effect of enzymes, sequela +T453X6A Underdosing of enzymes, initial encounter +T453X6D Underdosing of enzymes, subsequent encounter +T453X6S Underdosing of enzymes, sequela +T454X1A Poisoning by iron and its compounds, accidental (unintentional), initial encounter +T454X1D Poisoning by iron and its compounds, accidental (unintentional), subsequent encounter +T454X1S Poisoning by iron and its compounds, accidental (unintentional), sequela +T454X2A Poisoning by iron and its compounds, intentional self-harm, initial encounter +T454X2D Poisoning by iron and its compounds, intentional self-harm, subsequent encounter +T454X2S Poisoning by iron and its compounds, intentional self-harm, sequela +T454X3A Poisoning by iron and its compounds, assault, initial encounter +T454X3D Poisoning by iron and its compounds, assault, subsequent encounter +T454X3S Poisoning by iron and its compounds, assault, sequela +T454X4A Poisoning by iron and its compounds, undetermined, initial encounter +T454X4D Poisoning by iron and its compounds, undetermined, subsequent encounter +T454X4S Poisoning by iron and its compounds, undetermined, sequela +T454X5A Adverse effect of iron and its compounds, initial encounter +T454X5D Adverse effect of iron and its compounds, subsequent encounter +T454X5S Adverse effect of iron and its compounds, sequela +T454X6A Underdosing of iron and its compounds, initial encounter +T454X6D Underdosing of iron and its compounds, subsequent encounter +T454X6S Underdosing of iron and its compounds, sequela +T45511A Poisoning by anticoagulants, accidental (unintentional), initial encounter +T45511D Poisoning by anticoagulants, accidental (unintentional), subsequent encounter +T45511S Poisoning by anticoagulants, accidental (unintentional), sequela +T45512A Poisoning by anticoagulants, intentional self-harm, initial encounter +T45512D Poisoning by anticoagulants, intentional self-harm, subsequent encounter +T45512S Poisoning by anticoagulants, intentional self-harm, sequela +T45513A Poisoning by anticoagulants, assault, initial encounter +T45513D Poisoning by anticoagulants, assault, subsequent encounter +T45513S Poisoning by anticoagulants, assault, sequela +T45514A Poisoning by anticoagulants, undetermined, initial encounter +T45514D Poisoning by anticoagulants, undetermined, subsequent encounter +T45514S Poisoning by anticoagulants, undetermined, sequela +T45515A Adverse effect of anticoagulants, initial encounter +T45515D Adverse effect of anticoagulants, subsequent encounter +T45515S Adverse effect of anticoagulants, sequela +T45516A Underdosing of anticoagulants, initial encounter +T45516D Underdosing of anticoagulants, subsequent encounter +T45516S Underdosing of anticoagulants, sequela +T45521A Poisoning by antithrombotic drugs, accidental (unintentional), initial encounter +T45521D Poisoning by antithrombotic drugs, accidental (unintentional), subsequent encounter +T45521S Poisoning by antithrombotic drugs, accidental (unintentional), sequela +T45522A Poisoning by antithrombotic drugs, intentional self-harm, initial encounter +T45522D Poisoning by antithrombotic drugs, intentional self-harm, subsequent encounter +T45522S Poisoning by antithrombotic drugs, intentional self-harm, sequela +T45523A Poisoning by antithrombotic drugs, assault, initial encounter +T45523D Poisoning by antithrombotic drugs, assault, subsequent encounter +T45523S Poisoning by antithrombotic drugs, assault, sequela +T45524A Poisoning by antithrombotic drugs, undetermined, initial encounter +T45524D Poisoning by antithrombotic drugs, undetermined, subsequent encounter +T45524S Poisoning by antithrombotic drugs, undetermined, sequela +T45525A Adverse effect of antithrombotic drugs, initial encounter +T45525D Adverse effect of antithrombotic drugs, subsequent encounter +T45525S Adverse effect of antithrombotic drugs, sequela +T45526A Underdosing of antithrombotic drugs, initial encounter +T45526D Underdosing of antithrombotic drugs, subsequent encounter +T45526S Underdosing of antithrombotic drugs, sequela +T45601A Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), initial encounter +T45601D Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), subsequent encounter +T45601S Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), sequela +T45602A Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, initial encounter +T45602D Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, subsequent encounter +T45602S Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, sequela +T45603A Poisoning by unspecified fibrinolysis-affecting drugs, assault, initial encounter +T45603D Poisoning by unspecified fibrinolysis-affecting drugs, assault, subsequent encounter +T45603S Poisoning by unspecified fibrinolysis-affecting drugs, assault, sequela +T45604A Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, initial encounter +T45604D Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, subsequent encounter +T45604S Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, sequela +T45605A Adverse effect of unspecified fibrinolysis-affecting drugs, initial encounter +T45605D Adverse effect of unspecified fibrinolysis-affecting drugs, subsequent encounter +T45605S Adverse effect of unspecified fibrinolysis-affecting drugs, sequela +T45606A Underdosing of unspecified fibrinolysis-affecting drugs, initial encounter +T45606D Underdosing of unspecified fibrinolysis-affecting drugs, subsequent encounter +T45606S Underdosing of unspecified fibrinolysis-affecting drugs, sequela +T45611A Poisoning by thrombolytic drug, accidental (unintentional), initial encounter +T45611D Poisoning by thrombolytic drug, accidental (unintentional), subsequent encounter +T45611S Poisoning by thrombolytic drug, accidental (unintentional), sequela +T45612A Poisoning by thrombolytic drug, intentional self-harm, initial encounter +T45612D Poisoning by thrombolytic drug, intentional self-harm, subsequent encounter +T45612S Poisoning by thrombolytic drug, intentional self-harm, sequela +T45613A Poisoning by thrombolytic drug, assault, initial encounter +T45613D Poisoning by thrombolytic drug, assault, subsequent encounter +T45613S Poisoning by thrombolytic drug, assault, sequela +T45614A Poisoning by thrombolytic drug, undetermined, initial encounter +T45614D Poisoning by thrombolytic drug, undetermined, subsequent encounter +T45614S Poisoning by thrombolytic drug, undetermined, sequela +T45615A Adverse effect of thrombolytic drugs, initial encounter +T45615D Adverse effect of thrombolytic drugs, subsequent encounter +T45615S Adverse effect of thrombolytic drugs, sequela +T45616A Underdosing of thrombolytic drugs, initial encounter +T45616D Underdosing of thrombolytic drugs, subsequent encounter +T45616S Underdosing of thrombolytic drugs, sequela +T45621A Poisoning by hemostatic drug, accidental (unintentional), initial encounter +T45621D Poisoning by hemostatic drug, accidental (unintentional), subsequent encounter +T45621S Poisoning by hemostatic drug, accidental (unintentional), sequela +T45622A Poisoning by hemostatic drug, intentional self-harm, initial encounter +T45622D Poisoning by hemostatic drug, intentional self-harm, subsequent encounter +T45622S Poisoning by hemostatic drug, intentional self-harm, sequela +T45623A Poisoning by hemostatic drug, assault, initial encounter +T45623D Poisoning by hemostatic drug, assault, subsequent encounter +T45623S Poisoning by hemostatic drug, assault, sequela +T45624A Poisoning by hemostatic drug, undetermined, initial encounter +T45624D Poisoning by hemostatic drug, undetermined, subsequent encounter +T45624S Poisoning by hemostatic drug, undetermined, sequela +T45625A Adverse effect of hemostatic drug, initial encounter +T45625D Adverse effect of hemostatic drug, subsequent encounter +T45625S Adverse effect of hemostatic drug, sequela +T45626A Underdosing of hemostatic drugs, initial encounter +T45626D Underdosing of hemostatic drugs, subsequent encounter +T45626S Underdosing of hemostatic drugs, sequela +T45691A Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), initial encounter +T45691D Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), subsequent encounter +T45691S Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), sequela +T45692A Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, initial encounter +T45692D Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, subsequent encounter +T45692S Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, sequela +T45693A Poisoning by other fibrinolysis-affecting drugs, assault, initial encounter +T45693D Poisoning by other fibrinolysis-affecting drugs, assault, subsequent encounter +T45693S Poisoning by other fibrinolysis-affecting drugs, assault, sequela +T45694A Poisoning by other fibrinolysis-affecting drugs, undetermined, initial encounter +T45694D Poisoning by other fibrinolysis-affecting drugs, undetermined, subsequent encounter +T45694S Poisoning by other fibrinolysis-affecting drugs, undetermined, sequela +T45695A Adverse effect of other fibrinolysis-affecting drugs, initial encounter +T45695D Adverse effect of other fibrinolysis-affecting drugs, subsequent encounter +T45695S Adverse effect of other fibrinolysis-affecting drugs, sequela +T45696A Underdosing of other fibrinolysis-affecting drugs, initial encounter +T45696D Underdosing of other fibrinolysis-affecting drugs, subsequent encounter +T45696S Underdosing of other fibrinolysis-affecting drugs, sequela +T457X1A Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional), initial encounter +T457X1D Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional), subsequent encounter +T457X1S Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional), sequela +T457X2A Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm, initial encounter +T457X2D Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm, subsequent encounter +T457X2S Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm, sequela +T457X3A Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, initial encounter +T457X3D Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, subsequent encounter +T457X3S Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, sequela +T457X4A Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined, initial encounter +T457X4D Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined, subsequent encounter +T457X4S Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined, sequela +T457X5A Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, initial encounter +T457X5D Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, subsequent encounter +T457X5S Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, sequela +T457X6A Underdosing of anticoagulant antagonist, vitamin K and other coagulants, initial encounter +T457X6D Underdosing of anticoagulant antagonist, vitamin K and other coagulants, subsequent encounter +T457X6S Underdosing of anticoagulant antagonist, vitamin K and other coagulants, sequela +T458X1A Poisoning by other primarily systemic and hematological agents, accidental (unintentional), initial encounter +T458X1D Poisoning by other primarily systemic and hematological agents, accidental (unintentional), subsequent encounter +T458X1S Poisoning by other primarily systemic and hematological agents, accidental (unintentional), sequela +T458X2A Poisoning by other primarily systemic and hematological agents, intentional self-harm, initial encounter +T458X2D Poisoning by other primarily systemic and hematological agents, intentional self-harm, subsequent encounter +T458X2S Poisoning by other primarily systemic and hematological agents, intentional self-harm, sequela +T458X3A Poisoning by other primarily systemic and hematological agents, assault, initial encounter +T458X3D Poisoning by other primarily systemic and hematological agents, assault, subsequent encounter +T458X3S Poisoning by other primarily systemic and hematological agents, assault, sequela +T458X4A Poisoning by other primarily systemic and hematological agents, undetermined, initial encounter +T458X4D Poisoning by other primarily systemic and hematological agents, undetermined, subsequent encounter +T458X4S Poisoning by other primarily systemic and hematological agents, undetermined, sequela +T458X5A Adverse effect of other primarily systemic and hematological agents, initial encounter +T458X5D Adverse effect of other primarily systemic and hematological agents, subsequent encounter +T458X5S Adverse effect of other primarily systemic and hematological agents, sequela +T458X6A Underdosing of other primarily systemic and hematological agents, initial encounter +T458X6D Underdosing of other primarily systemic and hematological agents, subsequent encounter +T458X6S Underdosing of other primarily systemic and hematological agents, sequela +T4591XA Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional), initial encounter +T4591XD Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional), subsequent encounter +T4591XS Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional), sequela +T4592XA Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm, initial encounter +T4592XD Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm, subsequent encounter +T4592XS Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm, sequela +T4593XA Poisoning by unspecified primarily systemic and hematological agent, assault, initial encounter +T4593XD Poisoning by unspecified primarily systemic and hematological agent, assault, subsequent encounter +T4593XS Poisoning by unspecified primarily systemic and hematological agent, assault, sequela +T4594XA Poisoning by unspecified primarily systemic and hematological agent, undetermined, initial encounter +T4594XD Poisoning by unspecified primarily systemic and hematological agent, undetermined, subsequent encounter +T4594XS Poisoning by unspecified primarily systemic and hematological agent, undetermined, sequela +T4595XA Adverse effect of unspecified primarily systemic and hematological agent, initial encounter +T4595XD Adverse effect of unspecified primarily systemic and hematological agent, subsequent encounter +T4595XS Adverse effect of unspecified primarily systemic and hematological agent, sequela +T4596XA Underdosing of unspecified primarily systemic and hematological agent, initial encounter +T4596XD Underdosing of unspecified primarily systemic and hematological agent, subsequent encounter +T4596XS Underdosing of unspecified primarily systemic and hematological agent, sequela +T460X1A Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional), initial encounter +T460X1D Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional), subsequent encounter +T460X1S Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional), sequela +T460X2A Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm, initial encounter +T460X2D Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm, subsequent encounter +T460X2S Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm, sequela +T460X3A Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, initial encounter +T460X3D Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, subsequent encounter +T460X3S Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, sequela +T460X4A Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined, initial encounter +T460X4D Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined, subsequent encounter +T460X4S Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined, sequela +T460X5A Adverse effect of cardiac-stimulant glycosides and drugs of similar action, initial encounter +T460X5D Adverse effect of cardiac-stimulant glycosides and drugs of similar action, subsequent encounter +T460X5S Adverse effect of cardiac-stimulant glycosides and drugs of similar action, sequela +T460X6A Underdosing of cardiac-stimulant glycosides and drugs of similar action, initial encounter +T460X6D Underdosing of cardiac-stimulant glycosides and drugs of similar action, subsequent encounter +T460X6S Underdosing of cardiac-stimulant glycosides and drugs of similar action, sequela +T461X1A Poisoning by calcium-channel blockers, accidental (unintentional), initial encounter +T461X1D Poisoning by calcium-channel blockers, accidental (unintentional), subsequent encounter +T461X1S Poisoning by calcium-channel blockers, accidental (unintentional), sequela +T461X2A Poisoning by calcium-channel blockers, intentional self-harm, initial encounter +T461X2D Poisoning by calcium-channel blockers, intentional self-harm, subsequent encounter +T461X2S Poisoning by calcium-channel blockers, intentional self-harm, sequela +T461X3A Poisoning by calcium-channel blockers, assault, initial encounter +T461X3D Poisoning by calcium-channel blockers, assault, subsequent encounter +T461X3S Poisoning by calcium-channel blockers, assault, sequela +T461X4A Poisoning by calcium-channel blockers, undetermined, initial encounter +T461X4D Poisoning by calcium-channel blockers, undetermined, subsequent encounter +T461X4S Poisoning by calcium-channel blockers, undetermined, sequela +T461X5A Adverse effect of calcium-channel blockers, initial encounter +T461X5D Adverse effect of calcium-channel blockers, subsequent encounter +T461X5S Adverse effect of calcium-channel blockers, sequela +T461X6A Underdosing of calcium-channel blockers, initial encounter +T461X6D Underdosing of calcium-channel blockers, subsequent encounter +T461X6S Underdosing of calcium-channel blockers, sequela +T462X1A Poisoning by other antidysrhythmic drugs, accidental (unintentional), initial encounter +T462X1D Poisoning by other antidysrhythmic drugs, accidental (unintentional), subsequent encounter +T462X1S Poisoning by other antidysrhythmic drugs, accidental (unintentional), sequela +T462X2A Poisoning by other antidysrhythmic drugs, intentional self-harm, initial encounter +T462X2D Poisoning by other antidysrhythmic drugs, intentional self-harm, subsequent encounter +T462X2S Poisoning by other antidysrhythmic drugs, intentional self-harm, sequela +T462X3A Poisoning by other antidysrhythmic drugs, assault, initial encounter +T462X3D Poisoning by other antidysrhythmic drugs, assault, subsequent encounter +T462X3S Poisoning by other antidysrhythmic drugs, assault, sequela +T462X4A Poisoning by other antidysrhythmic drugs, undetermined, initial encounter +T462X4D Poisoning by other antidysrhythmic drugs, undetermined, subsequent encounter +T462X4S Poisoning by other antidysrhythmic drugs, undetermined, sequela +T462X5A Adverse effect of other antidysrhythmic drugs, initial encounter +T462X5D Adverse effect of other antidysrhythmic drugs, subsequent encounter +T462X5S Adverse effect of other antidysrhythmic drugs, sequela +T462X6A Underdosing of other antidysrhythmic drugs, initial encounter +T462X6D Underdosing of other antidysrhythmic drugs, subsequent encounter +T462X6S Underdosing of other antidysrhythmic drugs, sequela +T463X1A Poisoning by coronary vasodilators, accidental (unintentional), initial encounter +T463X1D Poisoning by coronary vasodilators, accidental (unintentional), subsequent encounter +T463X1S Poisoning by coronary vasodilators, accidental (unintentional), sequela +T463X2A Poisoning by coronary vasodilators, intentional self-harm, initial encounter +T463X2D Poisoning by coronary vasodilators, intentional self-harm, subsequent encounter +T463X2S Poisoning by coronary vasodilators, intentional self-harm, sequela +T463X3A Poisoning by coronary vasodilators, assault, initial encounter +T463X3D Poisoning by coronary vasodilators, assault, subsequent encounter +T463X3S Poisoning by coronary vasodilators, assault, sequela +T463X4A Poisoning by coronary vasodilators, undetermined, initial encounter +T463X4D Poisoning by coronary vasodilators, undetermined, subsequent encounter +T463X4S Poisoning by coronary vasodilators, undetermined, sequela +T463X5A Adverse effect of coronary vasodilators, initial encounter +T463X5D Adverse effect of coronary vasodilators, subsequent encounter +T463X5S Adverse effect of coronary vasodilators, sequela +T463X6A Underdosing of coronary vasodilators, initial encounter +T463X6D Underdosing of coronary vasodilators, subsequent encounter +T463X6S Underdosing of coronary vasodilators, sequela +T464X1A Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), initial encounter +T464X1D Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), subsequent encounter +T464X1S Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), sequela +T464X2A Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, initial encounter +T464X2D Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, subsequent encounter +T464X2S Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, sequela +T464X3A Poisoning by angiotensin-converting-enzyme inhibitors, assault, initial encounter +T464X3D Poisoning by angiotensin-converting-enzyme inhibitors, assault, subsequent encounter +T464X3S Poisoning by angiotensin-converting-enzyme inhibitors, assault, sequela +T464X4A Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, initial encounter +T464X4D Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, subsequent encounter +T464X4S Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, sequela +T464X5A Adverse effect of angiotensin-converting-enzyme inhibitors, initial encounter +T464X5D Adverse effect of angiotensin-converting-enzyme inhibitors, subsequent encounter +T464X5S Adverse effect of angiotensin-converting-enzyme inhibitors, sequela +T464X6A Underdosing of angiotensin-converting-enzyme inhibitors, initial encounter +T464X6D Underdosing of angiotensin-converting-enzyme inhibitors, subsequent encounter +T464X6S Underdosing of angiotensin-converting-enzyme inhibitors, sequela +T465X1A Poisoning by other antihypertensive drugs, accidental (unintentional), initial encounter +T465X1D Poisoning by other antihypertensive drugs, accidental (unintentional), subsequent encounter +T465X1S Poisoning by other antihypertensive drugs, accidental (unintentional), sequela +T465X2A Poisoning by other antihypertensive drugs, intentional self-harm, initial encounter +T465X2D Poisoning by other antihypertensive drugs, intentional self-harm, subsequent encounter +T465X2S Poisoning by other antihypertensive drugs, intentional self-harm, sequela +T465X3A Poisoning by other antihypertensive drugs, assault, initial encounter +T465X3D Poisoning by other antihypertensive drugs, assault, subsequent encounter +T465X3S Poisoning by other antihypertensive drugs, assault, sequela +T465X4A Poisoning by other antihypertensive drugs, undetermined, initial encounter +T465X4D Poisoning by other antihypertensive drugs, undetermined, subsequent encounter +T465X4S Poisoning by other antihypertensive drugs, undetermined, sequela +T465X5A Adverse effect of other antihypertensive drugs, initial encounter +T465X5D Adverse effect of other antihypertensive drugs, subsequent encounter +T465X5S Adverse effect of other antihypertensive drugs, sequela +T465X6A Underdosing of other antihypertensive drugs, initial encounter +T465X6D Underdosing of other antihypertensive drugs, subsequent encounter +T465X6S Underdosing of other antihypertensive drugs, sequela +T466X1A Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional), initial encounter +T466X1D Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional), subsequent encounter +T466X1S Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional), sequela +T466X2A Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm, initial encounter +T466X2D Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm, subsequent encounter +T466X2S Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm, sequela +T466X3A Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, initial encounter +T466X3D Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, subsequent encounter +T466X3S Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, sequela +T466X4A Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, initial encounter +T466X4D Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, subsequent encounter +T466X4S Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, sequela +T466X5A Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, initial encounter +T466X5D Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, subsequent encounter +T466X5S Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, sequela +T466X6A Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, initial encounter +T466X6D Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, subsequent encounter +T466X6S Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, sequela +T467X1A Poisoning by peripheral vasodilators, accidental (unintentional), initial encounter +T467X1D Poisoning by peripheral vasodilators, accidental (unintentional), subsequent encounter +T467X1S Poisoning by peripheral vasodilators, accidental (unintentional), sequela +T467X2A Poisoning by peripheral vasodilators, intentional self-harm, initial encounter +T467X2D Poisoning by peripheral vasodilators, intentional self-harm, subsequent encounter +T467X2S Poisoning by peripheral vasodilators, intentional self-harm, sequela +T467X3A Poisoning by peripheral vasodilators, assault, initial encounter +T467X3D Poisoning by peripheral vasodilators, assault, subsequent encounter +T467X3S Poisoning by peripheral vasodilators, assault, sequela +T467X4A Poisoning by peripheral vasodilators, undetermined, initial encounter +T467X4D Poisoning by peripheral vasodilators, undetermined, subsequent encounter +T467X4S Poisoning by peripheral vasodilators, undetermined, sequela +T467X5A Adverse effect of peripheral vasodilators, initial encounter +T467X5D Adverse effect of peripheral vasodilators, subsequent encounter +T467X5S Adverse effect of peripheral vasodilators, sequela +T467X6A Underdosing of peripheral vasodilators, initial encounter +T467X6D Underdosing of peripheral vasodilators, subsequent encounter +T467X6S Underdosing of peripheral vasodilators, sequela +T468X1A Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), initial encounter +T468X1D Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), subsequent encounter +T468X1S Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), sequela +T468X2A Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm, initial encounter +T468X2D Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm, subsequent encounter +T468X2S Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm, sequela +T468X3A Poisoning by antivaricose drugs, including sclerosing agents, assault, initial encounter +T468X3D Poisoning by antivaricose drugs, including sclerosing agents, assault, subsequent encounter +T468X3S Poisoning by antivaricose drugs, including sclerosing agents, assault, sequela +T468X4A Poisoning by antivaricose drugs, including sclerosing agents, undetermined, initial encounter +T468X4D Poisoning by antivaricose drugs, including sclerosing agents, undetermined, subsequent encounter +T468X4S Poisoning by antivaricose drugs, including sclerosing agents, undetermined, sequela +T468X5A Adverse effect of antivaricose drugs, including sclerosing agents, initial encounter +T468X5D Adverse effect of antivaricose drugs, including sclerosing agents, subsequent encounter +T468X5S Adverse effect of antivaricose drugs, including sclerosing agents, sequela +T468X6A Underdosing of antivaricose drugs, including sclerosing agents, initial encounter +T468X6D Underdosing of antivaricose drugs, including sclerosing agents, subsequent encounter +T468X6S Underdosing of antivaricose drugs, including sclerosing agents, sequela +T46901A Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional), initial encounter +T46901D Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional), subsequent encounter +T46901S Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional), sequela +T46902A Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm, initial encounter +T46902D Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm, subsequent encounter +T46902S Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm, sequela +T46903A Poisoning by unspecified agents primarily affecting the cardiovascular system, assault, initial encounter +T46903D Poisoning by unspecified agents primarily affecting the cardiovascular system, assault, subsequent encounter +T46903S Poisoning by unspecified agents primarily affecting the cardiovascular system, assault, sequela +T46904A Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined, initial encounter +T46904D Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined, subsequent encounter +T46904S Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined, sequela +T46905A Adverse effect of unspecified agents primarily affecting the cardiovascular system, initial encounter +T46905D Adverse effect of unspecified agents primarily affecting the cardiovascular system, subsequent encounter +T46905S Adverse effect of unspecified agents primarily affecting the cardiovascular system, sequela +T46906A Underdosing of unspecified agents primarily affecting the cardiovascular system, initial encounter +T46906D Underdosing of unspecified agents primarily affecting the cardiovascular system, subsequent encounter +T46906S Underdosing of unspecified agents primarily affecting the cardiovascular system, sequela +T46991A Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional), initial encounter +T46991D Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional), subsequent encounter +T46991S Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional), sequela +T46992A Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm, initial encounter +T46992D Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm, subsequent encounter +T46992S Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm, sequela +T46993A Poisoning by other agents primarily affecting the cardiovascular system, assault, initial encounter +T46993D Poisoning by other agents primarily affecting the cardiovascular system, assault, subsequent encounter +T46993S Poisoning by other agents primarily affecting the cardiovascular system, assault, sequela +T46994A Poisoning by other agents primarily affecting the cardiovascular system, undetermined, initial encounter +T46994D Poisoning by other agents primarily affecting the cardiovascular system, undetermined, subsequent encounter +T46994S Poisoning by other agents primarily affecting the cardiovascular system, undetermined, sequela +T46995A Adverse effect of other agents primarily affecting the cardiovascular system, initial encounter +T46995D Adverse effect of other agents primarily affecting the cardiovascular system, subsequent encounter +T46995S Adverse effect of other agents primarily affecting the cardiovascular system, sequela +T46996A Underdosing of other agents primarily affecting the cardiovascular system, initial encounter +T46996D Underdosing of other agents primarily affecting the cardiovascular system, subsequent encounter +T46996S Underdosing of other agents primarily affecting the cardiovascular system, sequela +T470X1A Poisoning by histamine H2-receptor blockers, accidental (unintentional), initial encounter +T470X1D Poisoning by histamine H2-receptor blockers, accidental (unintentional), subsequent encounter +T470X1S Poisoning by histamine H2-receptor blockers, accidental (unintentional), sequela +T470X2A Poisoning by histamine H2-receptor blockers, intentional self-harm, initial encounter +T470X2D Poisoning by histamine H2-receptor blockers, intentional self-harm, subsequent encounter +T470X2S Poisoning by histamine H2-receptor blockers, intentional self-harm, sequela +T470X3A Poisoning by histamine H2-receptor blockers, assault, initial encounter +T470X3D Poisoning by histamine H2-receptor blockers, assault, subsequent encounter +T470X3S Poisoning by histamine H2-receptor blockers, assault, sequela +T470X4A Poisoning by histamine H2-receptor blockers, undetermined, initial encounter +T470X4D Poisoning by histamine H2-receptor blockers, undetermined, subsequent encounter +T470X4S Poisoning by histamine H2-receptor blockers, undetermined, sequela +T470X5A Adverse effect of histamine H2-receptor blockers, initial encounter +T470X5D Adverse effect of histamine H2-receptor blockers, subsequent encounter +T470X5S Adverse effect of histamine H2-receptor blockers, sequela +T470X6A Underdosing of histamine H2-receptor blockers, initial encounter +T470X6D Underdosing of histamine H2-receptor blockers, subsequent encounter +T470X6S Underdosing of histamine H2-receptor blockers, sequela +T471X1A Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional), initial encounter +T471X1D Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional), subsequent encounter +T471X1S Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional), sequela +T471X2A Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm, initial encounter +T471X2D Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm, subsequent encounter +T471X2S Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm, sequela +T471X3A Poisoning by other antacids and anti-gastric-secretion drugs, assault, initial encounter +T471X3D Poisoning by other antacids and anti-gastric-secretion drugs, assault, subsequent encounter +T471X3S Poisoning by other antacids and anti-gastric-secretion drugs, assault, sequela +T471X4A Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, initial encounter +T471X4D Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, subsequent encounter +T471X4S Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, sequela +T471X5A Adverse effect of other antacids and anti-gastric-secretion drugs, initial encounter +T471X5D Adverse effect of other antacids and anti-gastric-secretion drugs, subsequent encounter +T471X5S Adverse effect of other antacids and anti-gastric-secretion drugs, sequela +T471X6A Underdosing of other antacids and anti-gastric-secretion drugs, initial encounter +T471X6D Underdosing of other antacids and anti-gastric-secretion drugs, subsequent encounter +T471X6S Underdosing of other antacids and anti-gastric-secretion drugs, sequela +T472X1A Poisoning by stimulant laxatives, accidental (unintentional), initial encounter +T472X1D Poisoning by stimulant laxatives, accidental (unintentional), subsequent encounter +T472X1S Poisoning by stimulant laxatives, accidental (unintentional), sequela +T472X2A Poisoning by stimulant laxatives, intentional self-harm, initial encounter +T472X2D Poisoning by stimulant laxatives, intentional self-harm, subsequent encounter +T472X2S Poisoning by stimulant laxatives, intentional self-harm, sequela +T472X3A Poisoning by stimulant laxatives, assault, initial encounter +T472X3D Poisoning by stimulant laxatives, assault, subsequent encounter +T472X3S Poisoning by stimulant laxatives, assault, sequela +T472X4A Poisoning by stimulant laxatives, undetermined, initial encounter +T472X4D Poisoning by stimulant laxatives, undetermined, subsequent encounter +T472X4S Poisoning by stimulant laxatives, undetermined, sequela +T472X5A Adverse effect of stimulant laxatives, initial encounter +T472X5D Adverse effect of stimulant laxatives, subsequent encounter +T472X5S Adverse effect of stimulant laxatives, sequela +T472X6A Underdosing of stimulant laxatives, initial encounter +T472X6D Underdosing of stimulant laxatives, subsequent encounter +T472X6S Underdosing of stimulant laxatives, sequela +T473X1A Poisoning by saline and osmotic laxatives, accidental (unintentional), initial encounter +T473X1D Poisoning by saline and osmotic laxatives, accidental (unintentional), subsequent encounter +T473X1S Poisoning by saline and osmotic laxatives, accidental (unintentional), sequela +T473X2A Poisoning by saline and osmotic laxatives, intentional self-harm, initial encounter +T473X2D Poisoning by saline and osmotic laxatives, intentional self-harm, subsequent encounter +T473X2S Poisoning by saline and osmotic laxatives, intentional self-harm, sequela +T473X3A Poisoning by saline and osmotic laxatives, assault, initial encounter +T473X3D Poisoning by saline and osmotic laxatives, assault, subsequent encounter +T473X3S Poisoning by saline and osmotic laxatives, assault, sequela +T473X4A Poisoning by saline and osmotic laxatives, undetermined, initial encounter +T473X4D Poisoning by saline and osmotic laxatives, undetermined, subsequent encounter +T473X4S Poisoning by saline and osmotic laxatives, undetermined, sequela +T473X5A Adverse effect of saline and osmotic laxatives, initial encounter +T473X5D Adverse effect of saline and osmotic laxatives, subsequent encounter +T473X5S Adverse effect of saline and osmotic laxatives, sequela +T473X6A Underdosing of saline and osmotic laxatives, initial encounter +T473X6D Underdosing of saline and osmotic laxatives, subsequent encounter +T473X6S Underdosing of saline and osmotic laxatives, sequela +T474X1A Poisoning by other laxatives, accidental (unintentional), initial encounter +T474X1D Poisoning by other laxatives, accidental (unintentional), subsequent encounter +T474X1S Poisoning by other laxatives, accidental (unintentional), sequela +T474X2A Poisoning by other laxatives, intentional self-harm, initial encounter +T474X2D Poisoning by other laxatives, intentional self-harm, subsequent encounter +T474X2S Poisoning by other laxatives, intentional self-harm, sequela +T474X3A Poisoning by other laxatives, assault, initial encounter +T474X3D Poisoning by other laxatives, assault, subsequent encounter +T474X3S Poisoning by other laxatives, assault, sequela +T474X4A Poisoning by other laxatives, undetermined, initial encounter +T474X4D Poisoning by other laxatives, undetermined, subsequent encounter +T474X4S Poisoning by other laxatives, undetermined, sequela +T474X5A Adverse effect of other laxatives, initial encounter +T474X5D Adverse effect of other laxatives, subsequent encounter +T474X5S Adverse effect of other laxatives, sequela +T474X6A Underdosing of other laxatives, initial encounter +T474X6D Underdosing of other laxatives, subsequent encounter +T474X6S Underdosing of other laxatives, sequela +T475X1A Poisoning by digestants, accidental (unintentional), initial encounter +T475X1D Poisoning by digestants, accidental (unintentional), subsequent encounter +T475X1S Poisoning by digestants, accidental (unintentional), sequela +T475X2A Poisoning by digestants, intentional self-harm, initial encounter +T475X2D Poisoning by digestants, intentional self-harm, subsequent encounter +T475X2S Poisoning by digestants, intentional self-harm, sequela +T475X3A Poisoning by digestants, assault, initial encounter +T475X3D Poisoning by digestants, assault, subsequent encounter +T475X3S Poisoning by digestants, assault, sequela +T475X4A Poisoning by digestants, undetermined, initial encounter +T475X4D Poisoning by digestants, undetermined, subsequent encounter +T475X4S Poisoning by digestants, undetermined, sequela +T475X5A Adverse effect of digestants, initial encounter +T475X5D Adverse effect of digestants, subsequent encounter +T475X5S Adverse effect of digestants, sequela +T475X6A Underdosing of digestants, initial encounter +T475X6D Underdosing of digestants, subsequent encounter +T475X6S Underdosing of digestants, sequela +T476X1A Poisoning by antidiarrheal drugs, accidental (unintentional), initial encounter +T476X1D Poisoning by antidiarrheal drugs, accidental (unintentional), subsequent encounter +T476X1S Poisoning by antidiarrheal drugs, accidental (unintentional), sequela +T476X2A Poisoning by antidiarrheal drugs, intentional self-harm, initial encounter +T476X2D Poisoning by antidiarrheal drugs, intentional self-harm, subsequent encounter +T476X2S Poisoning by antidiarrheal drugs, intentional self-harm, sequela +T476X3A Poisoning by antidiarrheal drugs, assault, initial encounter +T476X3D Poisoning by antidiarrheal drugs, assault, subsequent encounter +T476X3S Poisoning by antidiarrheal drugs, assault, sequela +T476X4A Poisoning by antidiarrheal drugs, undetermined, initial encounter +T476X4D Poisoning by antidiarrheal drugs, undetermined, subsequent encounter +T476X4S Poisoning by antidiarrheal drugs, undetermined, sequela +T476X5A Adverse effect of antidiarrheal drugs, initial encounter +T476X5D Adverse effect of antidiarrheal drugs, subsequent encounter +T476X5S Adverse effect of antidiarrheal drugs, sequela +T476X6A Underdosing of antidiarrheal drugs, initial encounter +T476X6D Underdosing of antidiarrheal drugs, subsequent encounter +T476X6S Underdosing of antidiarrheal drugs, sequela +T477X1A Poisoning by emetics, accidental (unintentional), initial encounter +T477X1D Poisoning by emetics, accidental (unintentional), subsequent encounter +T477X1S Poisoning by emetics, accidental (unintentional), sequela +T477X2A Poisoning by emetics, intentional self-harm, initial encounter +T477X2D Poisoning by emetics, intentional self-harm, subsequent encounter +T477X2S Poisoning by emetics, intentional self-harm, sequela +T477X3A Poisoning by emetics, assault, initial encounter +T477X3D Poisoning by emetics, assault, subsequent encounter +T477X3S Poisoning by emetics, assault, sequela +T477X4A Poisoning by emetics, undetermined, initial encounter +T477X4D Poisoning by emetics, undetermined, subsequent encounter +T477X4S Poisoning by emetics, undetermined, sequela +T477X5A Adverse effect of emetics, initial encounter +T477X5D Adverse effect of emetics, subsequent encounter +T477X5S Adverse effect of emetics, sequela +T477X6A Underdosing of emetics, initial encounter +T477X6D Underdosing of emetics, subsequent encounter +T477X6S Underdosing of emetics, sequela +T478X1A Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional), initial encounter +T478X1D Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional), subsequent encounter +T478X1S Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional), sequela +T478X2A Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm, initial encounter +T478X2D Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm, subsequent encounter +T478X2S Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm, sequela +T478X3A Poisoning by other agents primarily affecting gastrointestinal system, assault, initial encounter +T478X3D Poisoning by other agents primarily affecting gastrointestinal system, assault, subsequent encounter +T478X3S Poisoning by other agents primarily affecting gastrointestinal system, assault, sequela +T478X4A Poisoning by other agents primarily affecting gastrointestinal system, undetermined, initial encounter +T478X4D Poisoning by other agents primarily affecting gastrointestinal system, undetermined, subsequent encounter +T478X4S Poisoning by other agents primarily affecting gastrointestinal system, undetermined, sequela +T478X5A Adverse effect of other agents primarily affecting gastrointestinal system, initial encounter +T478X5D Adverse effect of other agents primarily affecting gastrointestinal system, subsequent encounter +T478X5S Adverse effect of other agents primarily affecting gastrointestinal system, sequela +T478X6A Underdosing of other agents primarily affecting gastrointestinal system, initial encounter +T478X6D Underdosing of other agents primarily affecting gastrointestinal system, subsequent encounter +T478X6S Underdosing of other agents primarily affecting gastrointestinal system, sequela +T4791XA Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional), initial encounter +T4791XD Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional), subsequent encounter +T4791XS Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional), sequela +T4792XA Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm, initial encounter +T4792XD Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm, subsequent encounter +T4792XS Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm, sequela +T4793XA Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault, initial encounter +T4793XD Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault, subsequent encounter +T4793XS Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault, sequela +T4794XA Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined, initial encounter +T4794XD Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined, subsequent encounter +T4794XS Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined, sequela +T4795XA Adverse effect of unspecified agents primarily affecting the gastrointestinal system, initial encounter +T4795XD Adverse effect of unspecified agents primarily affecting the gastrointestinal system, subsequent encounter +T4795XS Adverse effect of unspecified agents primarily affecting the gastrointestinal system, sequela +T4796XA Underdosing of unspecified agents primarily affecting the gastrointestinal system, initial encounter +T4796XD Underdosing of unspecified agents primarily affecting the gastrointestinal system, subsequent encounter +T4796XS Underdosing of unspecified agents primarily affecting the gastrointestinal system, sequela +T480X1A Poisoning by oxytocic drugs, accidental (unintentional), initial encounter +T480X1D Poisoning by oxytocic drugs, accidental (unintentional), subsequent encounter +T480X1S Poisoning by oxytocic drugs, accidental (unintentional), sequela +T480X2A Poisoning by oxytocic drugs, intentional self-harm, initial encounter +T480X2D Poisoning by oxytocic drugs, intentional self-harm, subsequent encounter +T480X2S Poisoning by oxytocic drugs, intentional self-harm, sequela +T480X3A Poisoning by oxytocic drugs, assault, initial encounter +T480X3D Poisoning by oxytocic drugs, assault, subsequent encounter +T480X3S Poisoning by oxytocic drugs, assault, sequela +T480X4A Poisoning by oxytocic drugs, undetermined, initial encounter +T480X4D Poisoning by oxytocic drugs, undetermined, subsequent encounter +T480X4S Poisoning by oxytocic drugs, undetermined, sequela +T480X5A Adverse effect of oxytocic drugs, initial encounter +T480X5D Adverse effect of oxytocic drugs, subsequent encounter +T480X5S Adverse effect of oxytocic drugs, sequela +T480X6A Underdosing of oxytocic drugs, initial encounter +T480X6D Underdosing of oxytocic drugs, subsequent encounter +T480X6S Underdosing of oxytocic drugs, sequela +T481X1A Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional), initial encounter +T481X1D Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional), subsequent encounter +T481X1S Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional), sequela +T481X2A Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm, initial encounter +T481X2D Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm, subsequent encounter +T481X2S Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm, sequela +T481X3A Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, initial encounter +T481X3D Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, subsequent encounter +T481X3S Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, sequela +T481X4A Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, initial encounter +T481X4D Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, subsequent encounter +T481X4S Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, sequela +T481X5A Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], initial encounter +T481X5D Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], subsequent encounter +T481X5S Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], sequela +T481X6A Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], initial encounter +T481X6D Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], subsequent encounter +T481X6S Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], sequela +T48201A Poisoning by unspecified drugs acting on muscles, accidental (unintentional), initial encounter +T48201D Poisoning by unspecified drugs acting on muscles, accidental (unintentional), subsequent encounter +T48201S Poisoning by unspecified drugs acting on muscles, accidental (unintentional), sequela +T48202A Poisoning by unspecified drugs acting on muscles, intentional self-harm, initial encounter +T48202D Poisoning by unspecified drugs acting on muscles, intentional self-harm, subsequent encounter +T48202S Poisoning by unspecified drugs acting on muscles, intentional self-harm, sequela +T48203A Poisoning by unspecified drugs acting on muscles, assault, initial encounter +T48203D Poisoning by unspecified drugs acting on muscles, assault, subsequent encounter +T48203S Poisoning by unspecified drugs acting on muscles, assault, sequela +T48204A Poisoning by unspecified drugs acting on muscles, undetermined, initial encounter +T48204D Poisoning by unspecified drugs acting on muscles, undetermined, subsequent encounter +T48204S Poisoning by unspecified drugs acting on muscles, undetermined, sequela +T48205A Adverse effect of unspecified drugs acting on muscles, initial encounter +T48205D Adverse effect of unspecified drugs acting on muscles, subsequent encounter +T48205S Adverse effect of unspecified drugs acting on muscles, sequela +T48206A Underdosing of unspecified drugs acting on muscles, initial encounter +T48206D Underdosing of unspecified drugs acting on muscles, subsequent encounter +T48206S Underdosing of unspecified drugs acting on muscles, sequela +T48291A Poisoning by other drugs acting on muscles, accidental (unintentional), initial encounter +T48291D Poisoning by other drugs acting on muscles, accidental (unintentional), subsequent encounter +T48291S Poisoning by other drugs acting on muscles, accidental (unintentional), sequela +T48292A Poisoning by other drugs acting on muscles, intentional self-harm, initial encounter +T48292D Poisoning by other drugs acting on muscles, intentional self-harm, subsequent encounter +T48292S Poisoning by other drugs acting on muscles, intentional self-harm, sequela +T48293A Poisoning by other drugs acting on muscles, assault, initial encounter +T48293D Poisoning by other drugs acting on muscles, assault, subsequent encounter +T48293S Poisoning by other drugs acting on muscles, assault, sequela +T48294A Poisoning by other drugs acting on muscles, undetermined, initial encounter +T48294D Poisoning by other drugs acting on muscles, undetermined, subsequent encounter +T48294S Poisoning by other drugs acting on muscles, undetermined, sequela +T48295A Adverse effect of other drugs acting on muscles, initial encounter +T48295D Adverse effect of other drugs acting on muscles, subsequent encounter +T48295S Adverse effect of other drugs acting on muscles, sequela +T48296A Underdosing of other drugs acting on muscles, initial encounter +T48296D Underdosing of other drugs acting on muscles, subsequent encounter +T48296S Underdosing of other drugs acting on muscles, sequela +T483X1A Poisoning by antitussives, accidental (unintentional), initial encounter +T483X1D Poisoning by antitussives, accidental (unintentional), subsequent encounter +T483X1S Poisoning by antitussives, accidental (unintentional), sequela +T483X2A Poisoning by antitussives, intentional self-harm, initial encounter +T483X2D Poisoning by antitussives, intentional self-harm, subsequent encounter +T483X2S Poisoning by antitussives, intentional self-harm, sequela +T483X3A Poisoning by antitussives, assault, initial encounter +T483X3D Poisoning by antitussives, assault, subsequent encounter +T483X3S Poisoning by antitussives, assault, sequela +T483X4A Poisoning by antitussives, undetermined, initial encounter +T483X4D Poisoning by antitussives, undetermined, subsequent encounter +T483X4S Poisoning by antitussives, undetermined, sequela +T483X5A Adverse effect of antitussives, initial encounter +T483X5D Adverse effect of antitussives, subsequent encounter +T483X5S Adverse effect of antitussives, sequela +T483X6A Underdosing of antitussives, initial encounter +T483X6D Underdosing of antitussives, subsequent encounter +T483X6S Underdosing of antitussives, sequela +T484X1A Poisoning by expectorants, accidental (unintentional), initial encounter +T484X1D Poisoning by expectorants, accidental (unintentional), subsequent encounter +T484X1S Poisoning by expectorants, accidental (unintentional), sequela +T484X2A Poisoning by expectorants, intentional self-harm, initial encounter +T484X2D Poisoning by expectorants, intentional self-harm, subsequent encounter +T484X2S Poisoning by expectorants, intentional self-harm, sequela +T484X3A Poisoning by expectorants, assault, initial encounter +T484X3D Poisoning by expectorants, assault, subsequent encounter +T484X3S Poisoning by expectorants, assault, sequela +T484X4A Poisoning by expectorants, undetermined, initial encounter +T484X4D Poisoning by expectorants, undetermined, subsequent encounter +T484X4S Poisoning by expectorants, undetermined, sequela +T484X5A Adverse effect of expectorants, initial encounter +T484X5D Adverse effect of expectorants, subsequent encounter +T484X5S Adverse effect of expectorants, sequela +T484X6A Underdosing of expectorants, initial encounter +T484X6D Underdosing of expectorants, subsequent encounter +T484X6S Underdosing of expectorants, sequela +T485X1A Poisoning by other anti-common-cold drugs, accidental (unintentional), initial encounter +T485X1D Poisoning by other anti-common-cold drugs, accidental (unintentional), subsequent encounter +T485X1S Poisoning by other anti-common-cold drugs, accidental (unintentional), sequela +T485X2A Poisoning by other anti-common-cold drugs, intentional self-harm, initial encounter +T485X2D Poisoning by other anti-common-cold drugs, intentional self-harm, subsequent encounter +T485X2S Poisoning by other anti-common-cold drugs, intentional self-harm, sequela +T485X3A Poisoning by other anti-common-cold drugs, assault, initial encounter +T485X3D Poisoning by other anti-common-cold drugs, assault, subsequent encounter +T485X3S Poisoning by other anti-common-cold drugs, assault, sequela +T485X4A Poisoning by other anti-common-cold drugs, undetermined, initial encounter +T485X4D Poisoning by other anti-common-cold drugs, undetermined, subsequent encounter +T485X4S Poisoning by other anti-common-cold drugs, undetermined, sequela +T485X5A Adverse effect of other anti-common-cold drugs, initial encounter +T485X5D Adverse effect of other anti-common-cold drugs, subsequent encounter +T485X5S Adverse effect of other anti-common-cold drugs, sequela +T485X6A Underdosing of other anti-common-cold drugs, initial encounter +T485X6D Underdosing of other anti-common-cold drugs, subsequent encounter +T485X6S Underdosing of other anti-common-cold drugs, sequela +T486X1A Poisoning by antiasthmatics, accidental (unintentional), initial encounter +T486X1D Poisoning by antiasthmatics, accidental (unintentional), subsequent encounter +T486X1S Poisoning by antiasthmatics, accidental (unintentional), sequela +T486X2A Poisoning by antiasthmatics, intentional self-harm, initial encounter +T486X2D Poisoning by antiasthmatics, intentional self-harm, subsequent encounter +T486X2S Poisoning by antiasthmatics, intentional self-harm, sequela +T486X3A Poisoning by antiasthmatics, assault, initial encounter +T486X3D Poisoning by antiasthmatics, assault, subsequent encounter +T486X3S Poisoning by antiasthmatics, assault, sequela +T486X4A Poisoning by antiasthmatics, undetermined, initial encounter +T486X4D Poisoning by antiasthmatics, undetermined, subsequent encounter +T486X4S Poisoning by antiasthmatics, undetermined, sequela +T486X5A Adverse effect of antiasthmatics, initial encounter +T486X5D Adverse effect of antiasthmatics, subsequent encounter +T486X5S Adverse effect of antiasthmatics, sequela +T486X6A Underdosing of antiasthmatics, initial encounter +T486X6D Underdosing of antiasthmatics, subsequent encounter +T486X6S Underdosing of antiasthmatics, sequela +T48901A Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional), initial encounter +T48901D Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional), subsequent encounter +T48901S Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional), sequela +T48902A Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm, initial encounter +T48902D Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm, subsequent encounter +T48902S Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm, sequela +T48903A Poisoning by unspecified agents primarily acting on the respiratory system, assault, initial encounter +T48903D Poisoning by unspecified agents primarily acting on the respiratory system, assault, subsequent encounter +T48903S Poisoning by unspecified agents primarily acting on the respiratory system, assault, sequela +T48904A Poisoning by unspecified agents primarily acting on the respiratory system, undetermined, initial encounter +T48904D Poisoning by unspecified agents primarily acting on the respiratory system, undetermined, subsequent encounter +T48904S Poisoning by unspecified agents primarily acting on the respiratory system, undetermined, sequela +T48905A Adverse effect of unspecified agents primarily acting on the respiratory system, initial encounter +T48905D Adverse effect of unspecified agents primarily acting on the respiratory system, subsequent encounter +T48905S Adverse effect of unspecified agents primarily acting on the respiratory system, sequela +T48906A Underdosing of unspecified agents primarily acting on the respiratory system, initial encounter +T48906D Underdosing of unspecified agents primarily acting on the respiratory system, subsequent encounter +T48906S Underdosing of unspecified agents primarily acting on the respiratory system, sequela +T48991A Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional), initial encounter +T48991D Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional), subsequent encounter +T48991S Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional), sequela +T48992A Poisoning by other agents primarily acting on the respiratory system, intentional self-harm, initial encounter +T48992D Poisoning by other agents primarily acting on the respiratory system, intentional self-harm, subsequent encounter +T48992S Poisoning by other agents primarily acting on the respiratory system, intentional self-harm, sequela +T48993A Poisoning by other agents primarily acting on the respiratory system, assault, initial encounter +T48993D Poisoning by other agents primarily acting on the respiratory system, assault, subsequent encounter +T48993S Poisoning by other agents primarily acting on the respiratory system, assault, sequela +T48994A Poisoning by other agents primarily acting on the respiratory system, undetermined, initial encounter +T48994D Poisoning by other agents primarily acting on the respiratory system, undetermined, subsequent encounter +T48994S Poisoning by other agents primarily acting on the respiratory system, undetermined, sequela +T48995A Adverse effect of other agents primarily acting on the respiratory system, initial encounter +T48995D Adverse effect of other agents primarily acting on the respiratory system, subsequent encounter +T48995S Adverse effect of other agents primarily acting on the respiratory system, sequela +T48996A Underdosing of other agents primarily acting on the respiratory system, initial encounter +T48996D Underdosing of other agents primarily acting on the respiratory system, subsequent encounter +T48996S Underdosing of other agents primarily acting on the respiratory system, sequela +T490X1A Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional), initial encounter +T490X1D Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional), subsequent encounter +T490X1S Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional), sequela +T490X2A Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm, initial encounter +T490X2D Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm, subsequent encounter +T490X2S Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm, sequela +T490X3A Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault, initial encounter +T490X3D Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault, subsequent encounter +T490X3S Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault, sequela +T490X4A Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined, initial encounter +T490X4D Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined, subsequent encounter +T490X4S Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined, sequela +T490X5A Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, initial encounter +T490X5D Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, subsequent encounter +T490X5S Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, sequela +T490X6A Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, initial encounter +T490X6D Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, subsequent encounter +T490X6S Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, sequela +T491X1A Poisoning by antipruritics, accidental (unintentional), initial encounter +T491X1D Poisoning by antipruritics, accidental (unintentional), subsequent encounter +T491X1S Poisoning by antipruritics, accidental (unintentional), sequela +T491X2A Poisoning by antipruritics, intentional self-harm, initial encounter +T491X2D Poisoning by antipruritics, intentional self-harm, subsequent encounter +T491X2S Poisoning by antipruritics, intentional self-harm, sequela +T491X3A Poisoning by antipruritics, assault, initial encounter +T491X3D Poisoning by antipruritics, assault, subsequent encounter +T491X3S Poisoning by antipruritics, assault, sequela +T491X4A Poisoning by antipruritics, undetermined, initial encounter +T491X4D Poisoning by antipruritics, undetermined, subsequent encounter +T491X4S Poisoning by antipruritics, undetermined, sequela +T491X5A Adverse effect of antipruritics, initial encounter +T491X5D Adverse effect of antipruritics, subsequent encounter +T491X5S Adverse effect of antipruritics, sequela +T491X6A Underdosing of antipruritics, initial encounter +T491X6D Underdosing of antipruritics, subsequent encounter +T491X6S Underdosing of antipruritics, sequela +T492X1A Poisoning by local astringents and local detergents, accidental (unintentional), initial encounter +T492X1D Poisoning by local astringents and local detergents, accidental (unintentional), subsequent encounter +T492X1S Poisoning by local astringents and local detergents, accidental (unintentional), sequela +T492X2A Poisoning by local astringents and local detergents, intentional self-harm, initial encounter +T492X2D Poisoning by local astringents and local detergents, intentional self-harm, subsequent encounter +T492X2S Poisoning by local astringents and local detergents, intentional self-harm, sequela +T492X3A Poisoning by local astringents and local detergents, assault, initial encounter +T492X3D Poisoning by local astringents and local detergents, assault, subsequent encounter +T492X3S Poisoning by local astringents and local detergents, assault, sequela +T492X4A Poisoning by local astringents and local detergents, undetermined, initial encounter +T492X4D Poisoning by local astringents and local detergents, undetermined, subsequent encounter +T492X4S Poisoning by local astringents and local detergents, undetermined, sequela +T492X5A Adverse effect of local astringents and local detergents, initial encounter +T492X5D Adverse effect of local astringents and local detergents, subsequent encounter +T492X5S Adverse effect of local astringents and local detergents, sequela +T492X6A Underdosing of local astringents and local detergents, initial encounter +T492X6D Underdosing of local astringents and local detergents, subsequent encounter +T492X6S Underdosing of local astringents and local detergents, sequela +T493X1A Poisoning by emollients, demulcents and protectants, accidental (unintentional), initial encounter +T493X1D Poisoning by emollients, demulcents and protectants, accidental (unintentional), subsequent encounter +T493X1S Poisoning by emollients, demulcents and protectants, accidental (unintentional), sequela +T493X2A Poisoning by emollients, demulcents and protectants, intentional self-harm, initial encounter +T493X2D Poisoning by emollients, demulcents and protectants, intentional self-harm, subsequent encounter +T493X2S Poisoning by emollients, demulcents and protectants, intentional self-harm, sequela +T493X3A Poisoning by emollients, demulcents and protectants, assault, initial encounter +T493X3D Poisoning by emollients, demulcents and protectants, assault, subsequent encounter +T493X3S Poisoning by emollients, demulcents and protectants, assault, sequela +T493X4A Poisoning by emollients, demulcents and protectants, undetermined, initial encounter +T493X4D Poisoning by emollients, demulcents and protectants, undetermined, subsequent encounter +T493X4S Poisoning by emollients, demulcents and protectants, undetermined, sequela +T493X5A Adverse effect of emollients, demulcents and protectants, initial encounter +T493X5D Adverse effect of emollients, demulcents and protectants, subsequent encounter +T493X5S Adverse effect of emollients, demulcents and protectants, sequela +T493X6A Underdosing of emollients, demulcents and protectants, initial encounter +T493X6D Underdosing of emollients, demulcents and protectants, subsequent encounter +T493X6S Underdosing of emollients, demulcents and protectants, sequela +T494X1A Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional), initial encounter +T494X1D Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional), subsequent encounter +T494X1S Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional), sequela +T494X2A Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm, initial encounter +T494X2D Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm, subsequent encounter +T494X2S Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm, sequela +T494X3A Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault, initial encounter +T494X3D Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault, subsequent encounter +T494X3S Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault, sequela +T494X4A Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined, initial encounter +T494X4D Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined, subsequent encounter +T494X4S Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined, sequela +T494X5A Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations, initial encounter +T494X5D Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations, subsequent encounter +T494X5S Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations, sequela +T494X6A Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations, initial encounter +T494X6D Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations, subsequent encounter +T494X6S Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations, sequela +T495X1A Poisoning by ophthalmological drugs and preparations, accidental (unintentional), initial encounter +T495X1D Poisoning by ophthalmological drugs and preparations, accidental (unintentional), subsequent encounter +T495X1S Poisoning by ophthalmological drugs and preparations, accidental (unintentional), sequela +T495X2A Poisoning by ophthalmological drugs and preparations, intentional self-harm, initial encounter +T495X2D Poisoning by ophthalmological drugs and preparations, intentional self-harm, subsequent encounter +T495X2S Poisoning by ophthalmological drugs and preparations, intentional self-harm, sequela +T495X3A Poisoning by ophthalmological drugs and preparations, assault, initial encounter +T495X3D Poisoning by ophthalmological drugs and preparations, assault, subsequent encounter +T495X3S Poisoning by ophthalmological drugs and preparations, assault, sequela +T495X4A Poisoning by ophthalmological drugs and preparations, undetermined, initial encounter +T495X4D Poisoning by ophthalmological drugs and preparations, undetermined, subsequent encounter +T495X4S Poisoning by ophthalmological drugs and preparations, undetermined, sequela +T495X5A Adverse effect of ophthalmological drugs and preparations, initial encounter +T495X5D Adverse effect of ophthalmological drugs and preparations, subsequent encounter +T495X5S Adverse effect of ophthalmological drugs and preparations, sequela +T495X6A Underdosing of ophthalmological drugs and preparations, initial encounter +T495X6D Underdosing of ophthalmological drugs and preparations, subsequent encounter +T495X6S Underdosing of ophthalmological drugs and preparations, sequela +T496X1A Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional), initial encounter +T496X1D Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional), subsequent encounter +T496X1S Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional), sequela +T496X2A Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, initial encounter +T496X2D Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, subsequent encounter +T496X2S Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, sequela +T496X3A Poisoning by otorhinolaryngological drugs and preparations, assault, initial encounter +T496X3D Poisoning by otorhinolaryngological drugs and preparations, assault, subsequent encounter +T496X3S Poisoning by otorhinolaryngological drugs and preparations, assault, sequela +T496X4A Poisoning by otorhinolaryngological drugs and preparations, undetermined, initial encounter +T496X4D Poisoning by otorhinolaryngological drugs and preparations, undetermined, subsequent encounter +T496X4S Poisoning by otorhinolaryngological drugs and preparations, undetermined, sequela +T496X5A Adverse effect of otorhinolaryngological drugs and preparations, initial encounter +T496X5D Adverse effect of otorhinolaryngological drugs and preparations, subsequent encounter +T496X5S Adverse effect of otorhinolaryngological drugs and preparations, sequela +T496X6A Underdosing of otorhinolaryngological drugs and preparations, initial encounter +T496X6D Underdosing of otorhinolaryngological drugs and preparations, subsequent encounter +T496X6S Underdosing of otorhinolaryngological drugs and preparations, sequela +T497X1A Poisoning by dental drugs, topically applied, accidental (unintentional), initial encounter +T497X1D Poisoning by dental drugs, topically applied, accidental (unintentional), subsequent encounter +T497X1S Poisoning by dental drugs, topically applied, accidental (unintentional), sequela +T497X2A Poisoning by dental drugs, topically applied, intentional self-harm, initial encounter +T497X2D Poisoning by dental drugs, topically applied, intentional self-harm, subsequent encounter +T497X2S Poisoning by dental drugs, topically applied, intentional self-harm, sequela +T497X3A Poisoning by dental drugs, topically applied, assault, initial encounter +T497X3D Poisoning by dental drugs, topically applied, assault, subsequent encounter +T497X3S Poisoning by dental drugs, topically applied, assault, sequela +T497X4A Poisoning by dental drugs, topically applied, undetermined, initial encounter +T497X4D Poisoning by dental drugs, topically applied, undetermined, subsequent encounter +T497X4S Poisoning by dental drugs, topically applied, undetermined, sequela +T497X5A Adverse effect of dental drugs, topically applied, initial encounter +T497X5D Adverse effect of dental drugs, topically applied, subsequent encounter +T497X5S Adverse effect of dental drugs, topically applied, sequela +T497X6A Underdosing of dental drugs, topically applied, initial encounter +T497X6D Underdosing of dental drugs, topically applied, subsequent encounter +T497X6S Underdosing of dental drugs, topically applied, sequela +T498X1A Poisoning by other topical agents, accidental (unintentional), initial encounter +T498X1D Poisoning by other topical agents, accidental (unintentional), subsequent encounter +T498X1S Poisoning by other topical agents, accidental (unintentional), sequela +T498X2A Poisoning by other topical agents, intentional self-harm, initial encounter +T498X2D Poisoning by other topical agents, intentional self-harm, subsequent encounter +T498X2S Poisoning by other topical agents, intentional self-harm, sequela +T498X3A Poisoning by other topical agents, assault, initial encounter +T498X3D Poisoning by other topical agents, assault, subsequent encounter +T498X3S Poisoning by other topical agents, assault, sequela +T498X4A Poisoning by other topical agents, undetermined, initial encounter +T498X4D Poisoning by other topical agents, undetermined, subsequent encounter +T498X4S Poisoning by other topical agents, undetermined, sequela +T498X5A Adverse effect of other topical agents, initial encounter +T498X5D Adverse effect of other topical agents, subsequent encounter +T498X5S Adverse effect of other topical agents, sequela +T498X6A Underdosing of other topical agents, initial encounter +T498X6D Underdosing of other topical agents, subsequent encounter +T498X6S Underdosing of other topical agents, sequela +T4991XA Poisoning by unspecified topical agent, accidental (unintentional), initial encounter +T4991XD Poisoning by unspecified topical agent, accidental (unintentional), subsequent encounter +T4991XS Poisoning by unspecified topical agent, accidental (unintentional), sequela +T4992XA Poisoning by unspecified topical agent, intentional self-harm, initial encounter +T4992XD Poisoning by unspecified topical agent, intentional self-harm, subsequent encounter +T4992XS Poisoning by unspecified topical agent, intentional self-harm, sequela +T4993XA Poisoning by unspecified topical agent, assault, initial encounter +T4993XD Poisoning by unspecified topical agent, assault, subsequent encounter +T4993XS Poisoning by unspecified topical agent, assault, sequela +T4994XA Poisoning by unspecified topical agent, undetermined, initial encounter +T4994XD Poisoning by unspecified topical agent, undetermined, subsequent encounter +T4994XS Poisoning by unspecified topical agent, undetermined, sequela +T4995XA Adverse effect of unspecified topical agent, initial encounter +T4995XD Adverse effect of unspecified topical agent, subsequent encounter +T4995XS Adverse effect of unspecified topical agent, sequela +T4996XA Underdosing of unspecified topical agent, initial encounter +T4996XD Underdosing of unspecified topical agent, subsequent encounter +T4996XS Underdosing of unspecified topical agent, sequela +T500X1A Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), initial encounter +T500X1D Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), subsequent encounter +T500X1S Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), sequela +T500X2A Poisoning by mineralocorticoids and their antagonists, intentional self-harm, initial encounter +T500X2D Poisoning by mineralocorticoids and their antagonists, intentional self-harm, subsequent encounter +T500X2S Poisoning by mineralocorticoids and their antagonists, intentional self-harm, sequela +T500X3A Poisoning by mineralocorticoids and their antagonists, assault, initial encounter +T500X3D Poisoning by mineralocorticoids and their antagonists, assault, subsequent encounter +T500X3S Poisoning by mineralocorticoids and their antagonists, assault, sequela +T500X4A Poisoning by mineralocorticoids and their antagonists, undetermined, initial encounter +T500X4D Poisoning by mineralocorticoids and their antagonists, undetermined, subsequent encounter +T500X4S Poisoning by mineralocorticoids and their antagonists, undetermined, sequela +T500X5A Adverse effect of mineralocorticoids and their antagonists, initial encounter +T500X5D Adverse effect of mineralocorticoids and their antagonists, subsequent encounter +T500X5S Adverse effect of mineralocorticoids and their antagonists, sequela +T500X6A Underdosing of mineralocorticoids and their antagonists, initial encounter +T500X6D Underdosing of mineralocorticoids and their antagonists, subsequent encounter +T500X6S Underdosing of mineralocorticoids and their antagonists, sequela +T501X1A Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), initial encounter +T501X1D Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), subsequent encounter +T501X1S Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), sequela +T501X2A Poisoning by loop [high-ceiling] diuretics, intentional self-harm, initial encounter +T501X2D Poisoning by loop [high-ceiling] diuretics, intentional self-harm, subsequent encounter +T501X2S Poisoning by loop [high-ceiling] diuretics, intentional self-harm, sequela +T501X3A Poisoning by loop [high-ceiling] diuretics, assault, initial encounter +T501X3D Poisoning by loop [high-ceiling] diuretics, assault, subsequent encounter +T501X3S Poisoning by loop [high-ceiling] diuretics, assault, sequela +T501X4A Poisoning by loop [high-ceiling] diuretics, undetermined, initial encounter +T501X4D Poisoning by loop [high-ceiling] diuretics, undetermined, subsequent encounter +T501X4S Poisoning by loop [high-ceiling] diuretics, undetermined, sequela +T501X5A Adverse effect of loop [high-ceiling] diuretics, initial encounter +T501X5D Adverse effect of loop [high-ceiling] diuretics, subsequent encounter +T501X5S Adverse effect of loop [high-ceiling] diuretics, sequela +T501X6A Underdosing of loop [high-ceiling] diuretics, initial encounter +T501X6D Underdosing of loop [high-ceiling] diuretics, subsequent encounter +T501X6S Underdosing of loop [high-ceiling] diuretics, sequela +T502X1A Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional), initial encounter +T502X1D Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional), subsequent encounter +T502X1S Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional), sequela +T502X2A Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm, initial encounter +T502X2D Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm, subsequent encounter +T502X2S Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm, sequela +T502X3A Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault, initial encounter +T502X3D Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault, subsequent encounter +T502X3S Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault, sequela +T502X4A Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined, initial encounter +T502X4D Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined, subsequent encounter +T502X4S Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined, sequela +T502X5A Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, initial encounter +T502X5D Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, subsequent encounter +T502X5S Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, sequela +T502X6A Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, initial encounter +T502X6D Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, subsequent encounter +T502X6S Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, sequela +T503X1A Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional), initial encounter +T503X1D Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional), subsequent encounter +T503X1S Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional), sequela +T503X2A Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm, initial encounter +T503X2D Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm, subsequent encounter +T503X2S Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm, sequela +T503X3A Poisoning by electrolytic, caloric and water-balance agents, assault, initial encounter +T503X3D Poisoning by electrolytic, caloric and water-balance agents, assault, subsequent encounter +T503X3S Poisoning by electrolytic, caloric and water-balance agents, assault, sequela +T503X4A Poisoning by electrolytic, caloric and water-balance agents, undetermined, initial encounter +T503X4D Poisoning by electrolytic, caloric and water-balance agents, undetermined, subsequent encounter +T503X4S Poisoning by electrolytic, caloric and water-balance agents, undetermined, sequela +T503X5A Adverse effect of electrolytic, caloric and water-balance agents, initial encounter +T503X5D Adverse effect of electrolytic, caloric and water-balance agents, subsequent encounter +T503X5S Adverse effect of electrolytic, caloric and water-balance agents, sequela +T503X6A Underdosing of electrolytic, caloric and water-balance agents, initial encounter +T503X6D Underdosing of electrolytic, caloric and water-balance agents, subsequent encounter +T503X6S Underdosing of electrolytic, caloric and water-balance agents, sequela +T504X1A Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), initial encounter +T504X1D Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), subsequent encounter +T504X1S Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), sequela +T504X2A Poisoning by drugs affecting uric acid metabolism, intentional self-harm, initial encounter +T504X2D Poisoning by drugs affecting uric acid metabolism, intentional self-harm, subsequent encounter +T504X2S Poisoning by drugs affecting uric acid metabolism, intentional self-harm, sequela +T504X3A Poisoning by drugs affecting uric acid metabolism, assault, initial encounter +T504X3D Poisoning by drugs affecting uric acid metabolism, assault, subsequent encounter +T504X3S Poisoning by drugs affecting uric acid metabolism, assault, sequela +T504X4A Poisoning by drugs affecting uric acid metabolism, undetermined, initial encounter +T504X4D Poisoning by drugs affecting uric acid metabolism, undetermined, subsequent encounter +T504X4S Poisoning by drugs affecting uric acid metabolism, undetermined, sequela +T504X5A Adverse effect of drugs affecting uric acid metabolism, initial encounter +T504X5D Adverse effect of drugs affecting uric acid metabolism, subsequent encounter +T504X5S Adverse effect of drugs affecting uric acid metabolism, sequela +T504X6A Underdosing of drugs affecting uric acid metabolism, initial encounter +T504X6D Underdosing of drugs affecting uric acid metabolism, subsequent encounter +T504X6S Underdosing of drugs affecting uric acid metabolism, sequela +T505X1A Poisoning by appetite depressants, accidental (unintentional), initial encounter +T505X1D Poisoning by appetite depressants, accidental (unintentional), subsequent encounter +T505X1S Poisoning by appetite depressants, accidental (unintentional), sequela +T505X2A Poisoning by appetite depressants, intentional self-harm, initial encounter +T505X2D Poisoning by appetite depressants, intentional self-harm, subsequent encounter +T505X2S Poisoning by appetite depressants, intentional self-harm, sequela +T505X3A Poisoning by appetite depressants, assault, initial encounter +T505X3D Poisoning by appetite depressants, assault, subsequent encounter +T505X3S Poisoning by appetite depressants, assault, sequela +T505X4A Poisoning by appetite depressants, undetermined, initial encounter +T505X4D Poisoning by appetite depressants, undetermined, subsequent encounter +T505X4S Poisoning by appetite depressants, undetermined, sequela +T505X5A Adverse effect of appetite depressants, initial encounter +T505X5D Adverse effect of appetite depressants, subsequent encounter +T505X5S Adverse effect of appetite depressants, sequela +T505X6A Underdosing of appetite depressants, initial encounter +T505X6D Underdosing of appetite depressants, subsequent encounter +T505X6S Underdosing of appetite depressants, sequela +T506X1A Poisoning by antidotes and chelating agents, accidental (unintentional), initial encounter +T506X1D Poisoning by antidotes and chelating agents, accidental (unintentional), subsequent encounter +T506X1S Poisoning by antidotes and chelating agents, accidental (unintentional), sequela +T506X2A Poisoning by antidotes and chelating agents, intentional self-harm, initial encounter +T506X2D Poisoning by antidotes and chelating agents, intentional self-harm, subsequent encounter +T506X2S Poisoning by antidotes and chelating agents, intentional self-harm, sequela +T506X3A Poisoning by antidotes and chelating agents, assault, initial encounter +T506X3D Poisoning by antidotes and chelating agents, assault, subsequent encounter +T506X3S Poisoning by antidotes and chelating agents, assault, sequela +T506X4A Poisoning by antidotes and chelating agents, undetermined, initial encounter +T506X4D Poisoning by antidotes and chelating agents, undetermined, subsequent encounter +T506X4S Poisoning by antidotes and chelating agents, undetermined, sequela +T506X5A Adverse effect of antidotes and chelating agents, initial encounter +T506X5D Adverse effect of antidotes and chelating agents, subsequent encounter +T506X5S Adverse effect of antidotes and chelating agents, sequela +T506X6A Underdosing of antidotes and chelating agents, initial encounter +T506X6D Underdosing of antidotes and chelating agents, subsequent encounter +T506X6S Underdosing of antidotes and chelating agents, sequela +T507X1A Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional), initial encounter +T507X1D Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional), subsequent encounter +T507X1S Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional), sequela +T507X2A Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, initial encounter +T507X2D Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, subsequent encounter +T507X2S Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, sequela +T507X3A Poisoning by analeptics and opioid receptor antagonists, assault, initial encounter +T507X3D Poisoning by analeptics and opioid receptor antagonists, assault, subsequent encounter +T507X3S Poisoning by analeptics and opioid receptor antagonists, assault, sequela +T507X4A Poisoning by analeptics and opioid receptor antagonists, undetermined, initial encounter +T507X4D Poisoning by analeptics and opioid receptor antagonists, undetermined, subsequent encounter +T507X4S Poisoning by analeptics and opioid receptor antagonists, undetermined, sequela +T507X5A Adverse effect of analeptics and opioid receptor antagonists, initial encounter +T507X5D Adverse effect of analeptics and opioid receptor antagonists, subsequent encounter +T507X5S Adverse effect of analeptics and opioid receptor antagonists, sequela +T507X6A Underdosing of analeptics and opioid receptor antagonists, initial encounter +T507X6D Underdosing of analeptics and opioid receptor antagonists, subsequent encounter +T507X6S Underdosing of analeptics and opioid receptor antagonists, sequela +T508X1A Poisoning by diagnostic agents, accidental (unintentional), initial encounter +T508X1D Poisoning by diagnostic agents, accidental (unintentional), subsequent encounter +T508X1S Poisoning by diagnostic agents, accidental (unintentional), sequela +T508X2A Poisoning by diagnostic agents, intentional self-harm, initial encounter +T508X2D Poisoning by diagnostic agents, intentional self-harm, subsequent encounter +T508X2S Poisoning by diagnostic agents, intentional self-harm, sequela +T508X3A Poisoning by diagnostic agents, assault, initial encounter +T508X3D Poisoning by diagnostic agents, assault, subsequent encounter +T508X3S Poisoning by diagnostic agents, assault, sequela +T508X4A Poisoning by diagnostic agents, undetermined, initial encounter +T508X4D Poisoning by diagnostic agents, undetermined, subsequent encounter +T508X4S Poisoning by diagnostic agents, undetermined, sequela +T508X5A Adverse effect of diagnostic agents, initial encounter +T508X5D Adverse effect of diagnostic agents, subsequent encounter +T508X5S Adverse effect of diagnostic agents, sequela +T508X6A Underdosing of diagnostic agents, initial encounter +T508X6D Underdosing of diagnostic agents, subsequent encounter +T508X6S Underdosing of diagnostic agents, sequela +T50901A Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional), initial encounter +T50901D Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional), subsequent encounter +T50901S Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional), sequela +T50902A Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm, initial encounter +T50902D Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm, subsequent encounter +T50902S Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm, sequela +T50903A Poisoning by unspecified drugs, medicaments and biological substances, assault, initial encounter +T50903D Poisoning by unspecified drugs, medicaments and biological substances, assault, subsequent encounter +T50903S Poisoning by unspecified drugs, medicaments and biological substances, assault, sequela +T50904A Poisoning by unspecified drugs, medicaments and biological substances, undetermined, initial encounter +T50904D Poisoning by unspecified drugs, medicaments and biological substances, undetermined, subsequent encounter +T50904S Poisoning by unspecified drugs, medicaments and biological substances, undetermined, sequela +T50905A Adverse effect of unspecified drugs, medicaments and biological substances, initial encounter +T50905D Adverse effect of unspecified drugs, medicaments and biological substances, subsequent encounter +T50905S Adverse effect of unspecified drugs, medicaments and biological substances, sequela +T50906A Underdosing of unspecified drugs, medicaments and biological substances, initial encounter +T50906D Underdosing of unspecified drugs, medicaments and biological substances, subsequent encounter +T50906S Underdosing of unspecified drugs, medicaments and biological substances, sequela +T50911A Poisoning by multiple unspecified drugs, medicaments and biological substances, accidental (unintentional), initial encounter +T50911D Poisoning by multiple unspecified drugs, medicaments and biological substances, accidental (unintentional), subsequent encounter +T50911S Poisoning by multiple unspecified drugs, medicaments and biological substances, accidental (unintentional), sequela +T50912A Poisoning by multiple unspecified drugs, medicaments and biological substances, intentional self-harm, initial encounter +T50912D Poisoning by multiple unspecified drugs, medicaments and biological substances, intentional self-harm, subsequent encounter +T50912S Poisoning by multiple unspecified drugs, medicaments and biological substances, intentional self-harm, sequela +T50913A Poisoning by multiple unspecified drugs, medicaments and biological substances, assault, initial encounter +T50913D Poisoning by multiple unspecified drugs, medicaments and biological substances, assault, subsequent encounter +T50913S Poisoning by multiple unspecified drugs, medicaments and biological substances, assault, sequela +T50914A Poisoning by multiple unspecified drugs, medicaments and biological substances, undetermined, initial encounter +T50914D Poisoning by multiple unspecified drugs, medicaments and biological substances, undetermined, subsequent encounter +T50914S Poisoning by multiple unspecified drugs, medicaments and biological substances, undetermined, sequela +T50915A Adverse effect of multiple unspecified drugs, medicaments and biological substances, initial encounter +T50915D Adverse effect of multiple unspecified drugs, medicaments and biological substances, subsequent encounter +T50915S Adverse effect of multiple unspecified drugs, medicaments and biological substances, sequela +T50916A Underdosing of multiple unspecified drugs, medicaments and biological substances, initial encounter +T50916D Underdosing of multiple unspecified drugs, medicaments and biological substances, subsequent encounter +T50916S Underdosing of multiple unspecified drugs, medicaments and biological substances, sequela +T50991A Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), initial encounter +T50991D Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), subsequent encounter +T50991S Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), sequela +T50992A Poisoning by other drugs, medicaments and biological substances, intentional self-harm, initial encounter +T50992D Poisoning by other drugs, medicaments and biological substances, intentional self-harm, subsequent encounter +T50992S Poisoning by other drugs, medicaments and biological substances, intentional self-harm, sequela +T50993A Poisoning by other drugs, medicaments and biological substances, assault, initial encounter +T50993D Poisoning by other drugs, medicaments and biological substances, assault, subsequent encounter +T50993S Poisoning by other drugs, medicaments and biological substances, assault, sequela +T50994A Poisoning by other drugs, medicaments and biological substances, undetermined, initial encounter +T50994D Poisoning by other drugs, medicaments and biological substances, undetermined, subsequent encounter +T50994S Poisoning by other drugs, medicaments and biological substances, undetermined, sequela +T50995A Adverse effect of other drugs, medicaments and biological substances, initial encounter +T50995D Adverse effect of other drugs, medicaments and biological substances, subsequent encounter +T50995S Adverse effect of other drugs, medicaments and biological substances, sequela +T50996A Underdosing of other drugs, medicaments and biological substances, initial encounter +T50996D Underdosing of other drugs, medicaments and biological substances, subsequent encounter +T50996S Underdosing of other drugs, medicaments and biological substances, sequela +T50A11A Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional), initial encounter +T50A11D Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional), subsequent encounter +T50A11S Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional), sequela +T50A12A Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm, initial encounter +T50A12D Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm, subsequent encounter +T50A12S Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm, sequela +T50A13A Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, initial encounter +T50A13D Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, subsequent encounter +T50A13S Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, sequela +T50A14A Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined, initial encounter +T50A14D Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined, subsequent encounter +T50A14S Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined, sequela +T50A15A Adverse effect of pertussis vaccine, including combinations with a pertussis component, initial encounter +T50A15D Adverse effect of pertussis vaccine, including combinations with a pertussis component, subsequent encounter +T50A15S Adverse effect of pertussis vaccine, including combinations with a pertussis component, sequela +T50A16A Underdosing of pertussis vaccine, including combinations with a pertussis component, initial encounter +T50A16D Underdosing of pertussis vaccine, including combinations with a pertussis component, subsequent encounter +T50A16S Underdosing of pertussis vaccine, including combinations with a pertussis component, sequela +T50A21A Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional), initial encounter +T50A21D Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional), subsequent encounter +T50A21S Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional), sequela +T50A22A Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, initial encounter +T50A22D Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, subsequent encounter +T50A22S Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, sequela +T50A23A Poisoning by mixed bacterial vaccines without a pertussis component, assault, initial encounter +T50A23D Poisoning by mixed bacterial vaccines without a pertussis component, assault, subsequent encounter +T50A23S Poisoning by mixed bacterial vaccines without a pertussis component, assault, sequela +T50A24A Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, initial encounter +T50A24D Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, subsequent encounter +T50A24S Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, sequela +T50A25A Adverse effect of mixed bacterial vaccines without a pertussis component, initial encounter +T50A25D Adverse effect of mixed bacterial vaccines without a pertussis component, subsequent encounter +T50A25S Adverse effect of mixed bacterial vaccines without a pertussis component, sequela +T50A26A Underdosing of mixed bacterial vaccines without a pertussis component, initial encounter +T50A26D Underdosing of mixed bacterial vaccines without a pertussis component, subsequent encounter +T50A26S Underdosing of mixed bacterial vaccines without a pertussis component, sequela +T50A91A Poisoning by other bacterial vaccines, accidental (unintentional), initial encounter +T50A91D Poisoning by other bacterial vaccines, accidental (unintentional), subsequent encounter +T50A91S Poisoning by other bacterial vaccines, accidental (unintentional), sequela +T50A92A Poisoning by other bacterial vaccines, intentional self-harm, initial encounter +T50A92D Poisoning by other bacterial vaccines, intentional self-harm, subsequent encounter +T50A92S Poisoning by other bacterial vaccines, intentional self-harm, sequela +T50A93A Poisoning by other bacterial vaccines, assault, initial encounter +T50A93D Poisoning by other bacterial vaccines, assault, subsequent encounter +T50A93S Poisoning by other bacterial vaccines, assault, sequela +T50A94A Poisoning by other bacterial vaccines, undetermined, initial encounter +T50A94D Poisoning by other bacterial vaccines, undetermined, subsequent encounter +T50A94S Poisoning by other bacterial vaccines, undetermined, sequela +T50A95A Adverse effect of other bacterial vaccines, initial encounter +T50A95D Adverse effect of other bacterial vaccines, subsequent encounter +T50A95S Adverse effect of other bacterial vaccines, sequela +T50A96A Underdosing of other bacterial vaccines, initial encounter +T50A96D Underdosing of other bacterial vaccines, subsequent encounter +T50A96S Underdosing of other bacterial vaccines, sequela +T50B11A Poisoning by smallpox vaccines, accidental (unintentional), initial encounter +T50B11D Poisoning by smallpox vaccines, accidental (unintentional), subsequent encounter +T50B11S Poisoning by smallpox vaccines, accidental (unintentional), sequela +T50B12A Poisoning by smallpox vaccines, intentional self-harm, initial encounter +T50B12D Poisoning by smallpox vaccines, intentional self-harm, subsequent encounter +T50B12S Poisoning by smallpox vaccines, intentional self-harm, sequela +T50B13A Poisoning by smallpox vaccines, assault, initial encounter +T50B13D Poisoning by smallpox vaccines, assault, subsequent encounter +T50B13S Poisoning by smallpox vaccines, assault, sequela +T50B14A Poisoning by smallpox vaccines, undetermined, initial encounter +T50B14D Poisoning by smallpox vaccines, undetermined, subsequent encounter +T50B14S Poisoning by smallpox vaccines, undetermined, sequela +T50B15A Adverse effect of smallpox vaccines, initial encounter +T50B15D Adverse effect of smallpox vaccines, subsequent encounter +T50B15S Adverse effect of smallpox vaccines, sequela +T50B16A Underdosing of smallpox vaccines, initial encounter +T50B16D Underdosing of smallpox vaccines, subsequent encounter +T50B16S Underdosing of smallpox vaccines, sequela +T50B91A Poisoning by other viral vaccines, accidental (unintentional), initial encounter +T50B91D Poisoning by other viral vaccines, accidental (unintentional), subsequent encounter +T50B91S Poisoning by other viral vaccines, accidental (unintentional), sequela +T50B92A Poisoning by other viral vaccines, intentional self-harm, initial encounter +T50B92D Poisoning by other viral vaccines, intentional self-harm, subsequent encounter +T50B92S Poisoning by other viral vaccines, intentional self-harm, sequela +T50B93A Poisoning by other viral vaccines, assault, initial encounter +T50B93D Poisoning by other viral vaccines, assault, subsequent encounter +T50B93S Poisoning by other viral vaccines, assault, sequela +T50B94A Poisoning by other viral vaccines, undetermined, initial encounter +T50B94D Poisoning by other viral vaccines, undetermined, subsequent encounter +T50B94S Poisoning by other viral vaccines, undetermined, sequela +T50B95A Adverse effect of other viral vaccines, initial encounter +T50B95D Adverse effect of other viral vaccines, subsequent encounter +T50B95S Adverse effect of other viral vaccines, sequela +T50B96A Underdosing of other viral vaccines, initial encounter +T50B96D Underdosing of other viral vaccines, subsequent encounter +T50B96S Underdosing of other viral vaccines, sequela +T50Z11A Poisoning by immunoglobulin, accidental (unintentional), initial encounter +T50Z11D Poisoning by immunoglobulin, accidental (unintentional), subsequent encounter +T50Z11S Poisoning by immunoglobulin, accidental (unintentional), sequela +T50Z12A Poisoning by immunoglobulin, intentional self-harm, initial encounter +T50Z12D Poisoning by immunoglobulin, intentional self-harm, subsequent encounter +T50Z12S Poisoning by immunoglobulin, intentional self-harm, sequela +T50Z13A Poisoning by immunoglobulin, assault, initial encounter +T50Z13D Poisoning by immunoglobulin, assault, subsequent encounter +T50Z13S Poisoning by immunoglobulin, assault, sequela +T50Z14A Poisoning by immunoglobulin, undetermined, initial encounter +T50Z14D Poisoning by immunoglobulin, undetermined, subsequent encounter +T50Z14S Poisoning by immunoglobulin, undetermined, sequela +T50Z15A Adverse effect of immunoglobulin, initial encounter +T50Z15D Adverse effect of immunoglobulin, subsequent encounter +T50Z15S Adverse effect of immunoglobulin, sequela +T50Z16A Underdosing of immunoglobulin, initial encounter +T50Z16D Underdosing of immunoglobulin, subsequent encounter +T50Z16S Underdosing of immunoglobulin, sequela +T50Z91A Poisoning by other vaccines and biological substances, accidental (unintentional), initial encounter +T50Z91D Poisoning by other vaccines and biological substances, accidental (unintentional), subsequent encounter +T50Z91S Poisoning by other vaccines and biological substances, accidental (unintentional), sequela +T50Z92A Poisoning by other vaccines and biological substances, intentional self-harm, initial encounter +T50Z92D Poisoning by other vaccines and biological substances, intentional self-harm, subsequent encounter +T50Z92S Poisoning by other vaccines and biological substances, intentional self-harm, sequela +T50Z93A Poisoning by other vaccines and biological substances, assault, initial encounter +T50Z93D Poisoning by other vaccines and biological substances, assault, subsequent encounter +T50Z93S Poisoning by other vaccines and biological substances, assault, sequela +T50Z94A Poisoning by other vaccines and biological substances, undetermined, initial encounter +T50Z94D Poisoning by other vaccines and biological substances, undetermined, subsequent encounter +T50Z94S Poisoning by other vaccines and biological substances, undetermined, sequela +T50Z95A Adverse effect of other vaccines and biological substances, initial encounter +T50Z95D Adverse effect of other vaccines and biological substances, subsequent encounter +T50Z95S Adverse effect of other vaccines and biological substances, sequela +T50Z96A Underdosing of other vaccines and biological substances, initial encounter +T50Z96D Underdosing of other vaccines and biological substances, subsequent encounter +T50Z96S Underdosing of other vaccines and biological substances, sequela +T510X1A Toxic effect of ethanol, accidental (unintentional), initial encounter +T510X1D Toxic effect of ethanol, accidental (unintentional), subsequent encounter +T510X1S Toxic effect of ethanol, accidental (unintentional), sequela +T510X2A Toxic effect of ethanol, intentional self-harm, initial encounter +T510X2D Toxic effect of ethanol, intentional self-harm, subsequent encounter +T510X2S Toxic effect of ethanol, intentional self-harm, sequela +T510X3A Toxic effect of ethanol, assault, initial encounter +T510X3D Toxic effect of ethanol, assault, subsequent encounter +T510X3S Toxic effect of ethanol, assault, sequela +T510X4A Toxic effect of ethanol, undetermined, initial encounter +T510X4D Toxic effect of ethanol, undetermined, subsequent encounter +T510X4S Toxic effect of ethanol, undetermined, sequela +T511X1A Toxic effect of methanol, accidental (unintentional), initial encounter +T511X1D Toxic effect of methanol, accidental (unintentional), subsequent encounter +T511X1S Toxic effect of methanol, accidental (unintentional), sequela +T511X2A Toxic effect of methanol, intentional self-harm, initial encounter +T511X2D Toxic effect of methanol, intentional self-harm, subsequent encounter +T511X2S Toxic effect of methanol, intentional self-harm, sequela +T511X3A Toxic effect of methanol, assault, initial encounter +T511X3D Toxic effect of methanol, assault, subsequent encounter +T511X3S Toxic effect of methanol, assault, sequela +T511X4A Toxic effect of methanol, undetermined, initial encounter +T511X4D Toxic effect of methanol, undetermined, subsequent encounter +T511X4S Toxic effect of methanol, undetermined, sequela +T512X1A Toxic effect of 2-Propanol, accidental (unintentional), initial encounter +T512X1D Toxic effect of 2-Propanol, accidental (unintentional), subsequent encounter +T512X1S Toxic effect of 2-Propanol, accidental (unintentional), sequela +T512X2A Toxic effect of 2-Propanol, intentional self-harm, initial encounter +T512X2D Toxic effect of 2-Propanol, intentional self-harm, subsequent encounter +T512X2S Toxic effect of 2-Propanol, intentional self-harm, sequela +T512X3A Toxic effect of 2-Propanol, assault, initial encounter +T512X3D Toxic effect of 2-Propanol, assault, subsequent encounter +T512X3S Toxic effect of 2-Propanol, assault, sequela +T512X4A Toxic effect of 2-Propanol, undetermined, initial encounter +T512X4D Toxic effect of 2-Propanol, undetermined, subsequent encounter +T512X4S Toxic effect of 2-Propanol, undetermined, sequela +T513X1A Toxic effect of fusel oil, accidental (unintentional), initial encounter +T513X1D Toxic effect of fusel oil, accidental (unintentional), subsequent encounter +T513X1S Toxic effect of fusel oil, accidental (unintentional), sequela +T513X2A Toxic effect of fusel oil, intentional self-harm, initial encounter +T513X2D Toxic effect of fusel oil, intentional self-harm, subsequent encounter +T513X2S Toxic effect of fusel oil, intentional self-harm, sequela +T513X3A Toxic effect of fusel oil, assault, initial encounter +T513X3D Toxic effect of fusel oil, assault, subsequent encounter +T513X3S Toxic effect of fusel oil, assault, sequela +T513X4A Toxic effect of fusel oil, undetermined, initial encounter +T513X4D Toxic effect of fusel oil, undetermined, subsequent encounter +T513X4S Toxic effect of fusel oil, undetermined, sequela +T518X1A Toxic effect of other alcohols, accidental (unintentional), initial encounter +T518X1D Toxic effect of other alcohols, accidental (unintentional), subsequent encounter +T518X1S Toxic effect of other alcohols, accidental (unintentional), sequela +T518X2A Toxic effect of other alcohols, intentional self-harm, initial encounter +T518X2D Toxic effect of other alcohols, intentional self-harm, subsequent encounter +T518X2S Toxic effect of other alcohols, intentional self-harm, sequela +T518X3A Toxic effect of other alcohols, assault, initial encounter +T518X3D Toxic effect of other alcohols, assault, subsequent encounter +T518X3S Toxic effect of other alcohols, assault, sequela +T518X4A Toxic effect of other alcohols, undetermined, initial encounter +T518X4D Toxic effect of other alcohols, undetermined, subsequent encounter +T518X4S Toxic effect of other alcohols, undetermined, sequela +T5191XA Toxic effect of unspecified alcohol, accidental (unintentional), initial encounter +T5191XD Toxic effect of unspecified alcohol, accidental (unintentional), subsequent encounter +T5191XS Toxic effect of unspecified alcohol, accidental (unintentional), sequela +T5192XA Toxic effect of unspecified alcohol, intentional self-harm, initial encounter +T5192XD Toxic effect of unspecified alcohol, intentional self-harm, subsequent encounter +T5192XS Toxic effect of unspecified alcohol, intentional self-harm, sequela +T5193XA Toxic effect of unspecified alcohol, assault, initial encounter +T5193XD Toxic effect of unspecified alcohol, assault, subsequent encounter +T5193XS Toxic effect of unspecified alcohol, assault, sequela +T5194XA Toxic effect of unspecified alcohol, undetermined, initial encounter +T5194XD Toxic effect of unspecified alcohol, undetermined, subsequent encounter +T5194XS Toxic effect of unspecified alcohol, undetermined, sequela +T520X1A Toxic effect of petroleum products, accidental (unintentional), initial encounter +T520X1D Toxic effect of petroleum products, accidental (unintentional), subsequent encounter +T520X1S Toxic effect of petroleum products, accidental (unintentional), sequela +T520X2A Toxic effect of petroleum products, intentional self-harm, initial encounter +T520X2D Toxic effect of petroleum products, intentional self-harm, subsequent encounter +T520X2S Toxic effect of petroleum products, intentional self-harm, sequela +T520X3A Toxic effect of petroleum products, assault, initial encounter +T520X3D Toxic effect of petroleum products, assault, subsequent encounter +T520X3S Toxic effect of petroleum products, assault, sequela +T520X4A Toxic effect of petroleum products, undetermined, initial encounter +T520X4D Toxic effect of petroleum products, undetermined, subsequent encounter +T520X4S Toxic effect of petroleum products, undetermined, sequela +T521X1A Toxic effect of benzene, accidental (unintentional), initial encounter +T521X1D Toxic effect of benzene, accidental (unintentional), subsequent encounter +T521X1S Toxic effect of benzene, accidental (unintentional), sequela +T521X2A Toxic effect of benzene, intentional self-harm, initial encounter +T521X2D Toxic effect of benzene, intentional self-harm, subsequent encounter +T521X2S Toxic effect of benzene, intentional self-harm, sequela +T521X3A Toxic effect of benzene, assault, initial encounter +T521X3D Toxic effect of benzene, assault, subsequent encounter +T521X3S Toxic effect of benzene, assault, sequela +T521X4A Toxic effect of benzene, undetermined, initial encounter +T521X4D Toxic effect of benzene, undetermined, subsequent encounter +T521X4S Toxic effect of benzene, undetermined, sequela +T522X1A Toxic effect of homologues of benzene, accidental (unintentional), initial encounter +T522X1D Toxic effect of homologues of benzene, accidental (unintentional), subsequent encounter +T522X1S Toxic effect of homologues of benzene, accidental (unintentional), sequela +T522X2A Toxic effect of homologues of benzene, intentional self-harm, initial encounter +T522X2D Toxic effect of homologues of benzene, intentional self-harm, subsequent encounter +T522X2S Toxic effect of homologues of benzene, intentional self-harm, sequela +T522X3A Toxic effect of homologues of benzene, assault, initial encounter +T522X3D Toxic effect of homologues of benzene, assault, subsequent encounter +T522X3S Toxic effect of homologues of benzene, assault, sequela +T522X4A Toxic effect of homologues of benzene, undetermined, initial encounter +T522X4D Toxic effect of homologues of benzene, undetermined, subsequent encounter +T522X4S Toxic effect of homologues of benzene, undetermined, sequela +T523X1A Toxic effect of glycols, accidental (unintentional), initial encounter +T523X1D Toxic effect of glycols, accidental (unintentional), subsequent encounter +T523X1S Toxic effect of glycols, accidental (unintentional), sequela +T523X2A Toxic effect of glycols, intentional self-harm, initial encounter +T523X2D Toxic effect of glycols, intentional self-harm, subsequent encounter +T523X2S Toxic effect of glycols, intentional self-harm, sequela +T523X3A Toxic effect of glycols, assault, initial encounter +T523X3D Toxic effect of glycols, assault, subsequent encounter +T523X3S Toxic effect of glycols, assault, sequela +T523X4A Toxic effect of glycols, undetermined, initial encounter +T523X4D Toxic effect of glycols, undetermined, subsequent encounter +T523X4S Toxic effect of glycols, undetermined, sequela +T524X1A Toxic effect of ketones, accidental (unintentional), initial encounter +T524X1D Toxic effect of ketones, accidental (unintentional), subsequent encounter +T524X1S Toxic effect of ketones, accidental (unintentional), sequela +T524X2A Toxic effect of ketones, intentional self-harm, initial encounter +T524X2D Toxic effect of ketones, intentional self-harm, subsequent encounter +T524X2S Toxic effect of ketones, intentional self-harm, sequela +T524X3A Toxic effect of ketones, assault, initial encounter +T524X3D Toxic effect of ketones, assault, subsequent encounter +T524X3S Toxic effect of ketones, assault, sequela +T524X4A Toxic effect of ketones, undetermined, initial encounter +T524X4D Toxic effect of ketones, undetermined, subsequent encounter +T524X4S Toxic effect of ketones, undetermined, sequela +T528X1A Toxic effect of other organic solvents, accidental (unintentional), initial encounter +T528X1D Toxic effect of other organic solvents, accidental (unintentional), subsequent encounter +T528X1S Toxic effect of other organic solvents, accidental (unintentional), sequela +T528X2A Toxic effect of other organic solvents, intentional self-harm, initial encounter +T528X2D Toxic effect of other organic solvents, intentional self-harm, subsequent encounter +T528X2S Toxic effect of other organic solvents, intentional self-harm, sequela +T528X3A Toxic effect of other organic solvents, assault, initial encounter +T528X3D Toxic effect of other organic solvents, assault, subsequent encounter +T528X3S Toxic effect of other organic solvents, assault, sequela +T528X4A Toxic effect of other organic solvents, undetermined, initial encounter +T528X4D Toxic effect of other organic solvents, undetermined, subsequent encounter +T528X4S Toxic effect of other organic solvents, undetermined, sequela +T5291XA Toxic effect of unspecified organic solvent, accidental (unintentional), initial encounter +T5291XD Toxic effect of unspecified organic solvent, accidental (unintentional), subsequent encounter +T5291XS Toxic effect of unspecified organic solvent, accidental (unintentional), sequela +T5292XA Toxic effect of unspecified organic solvent, intentional self-harm, initial encounter +T5292XD Toxic effect of unspecified organic solvent, intentional self-harm, subsequent encounter +T5292XS Toxic effect of unspecified organic solvent, intentional self-harm, sequela +T5293XA Toxic effect of unspecified organic solvent, assault, initial encounter +T5293XD Toxic effect of unspecified organic solvent, assault, subsequent encounter +T5293XS Toxic effect of unspecified organic solvent, assault, sequela +T5294XA Toxic effect of unspecified organic solvent, undetermined, initial encounter +T5294XD Toxic effect of unspecified organic solvent, undetermined, subsequent encounter +T5294XS Toxic effect of unspecified organic solvent, undetermined, sequela +T530X1A Toxic effect of carbon tetrachloride, accidental (unintentional), initial encounter +T530X1D Toxic effect of carbon tetrachloride, accidental (unintentional), subsequent encounter +T530X1S Toxic effect of carbon tetrachloride, accidental (unintentional), sequela +T530X2A Toxic effect of carbon tetrachloride, intentional self-harm, initial encounter +T530X2D Toxic effect of carbon tetrachloride, intentional self-harm, subsequent encounter +T530X2S Toxic effect of carbon tetrachloride, intentional self-harm, sequela +T530X3A Toxic effect of carbon tetrachloride, assault, initial encounter +T530X3D Toxic effect of carbon tetrachloride, assault, subsequent encounter +T530X3S Toxic effect of carbon tetrachloride, assault, sequela +T530X4A Toxic effect of carbon tetrachloride, undetermined, initial encounter +T530X4D Toxic effect of carbon tetrachloride, undetermined, subsequent encounter +T530X4S Toxic effect of carbon tetrachloride, undetermined, sequela +T531X1A Toxic effect of chloroform, accidental (unintentional), initial encounter +T531X1D Toxic effect of chloroform, accidental (unintentional), subsequent encounter +T531X1S Toxic effect of chloroform, accidental (unintentional), sequela +T531X2A Toxic effect of chloroform, intentional self-harm, initial encounter +T531X2D Toxic effect of chloroform, intentional self-harm, subsequent encounter +T531X2S Toxic effect of chloroform, intentional self-harm, sequela +T531X3A Toxic effect of chloroform, assault, initial encounter +T531X3D Toxic effect of chloroform, assault, subsequent encounter +T531X3S Toxic effect of chloroform, assault, sequela +T531X4A Toxic effect of chloroform, undetermined, initial encounter +T531X4D Toxic effect of chloroform, undetermined, subsequent encounter +T531X4S Toxic effect of chloroform, undetermined, sequela +T532X1A Toxic effect of trichloroethylene, accidental (unintentional), initial encounter +T532X1D Toxic effect of trichloroethylene, accidental (unintentional), subsequent encounter +T532X1S Toxic effect of trichloroethylene, accidental (unintentional), sequela +T532X2A Toxic effect of trichloroethylene, intentional self-harm, initial encounter +T532X2D Toxic effect of trichloroethylene, intentional self-harm, subsequent encounter +T532X2S Toxic effect of trichloroethylene, intentional self-harm, sequela +T532X3A Toxic effect of trichloroethylene, assault, initial encounter +T532X3D Toxic effect of trichloroethylene, assault, subsequent encounter +T532X3S Toxic effect of trichloroethylene, assault, sequela +T532X4A Toxic effect of trichloroethylene, undetermined, initial encounter +T532X4D Toxic effect of trichloroethylene, undetermined, subsequent encounter +T532X4S Toxic effect of trichloroethylene, undetermined, sequela +T533X1A Toxic effect of tetrachloroethylene, accidental (unintentional), initial encounter +T533X1D Toxic effect of tetrachloroethylene, accidental (unintentional), subsequent encounter +T533X1S Toxic effect of tetrachloroethylene, accidental (unintentional), sequela +T533X2A Toxic effect of tetrachloroethylene, intentional self-harm, initial encounter +T533X2D Toxic effect of tetrachloroethylene, intentional self-harm, subsequent encounter +T533X2S Toxic effect of tetrachloroethylene, intentional self-harm, sequela +T533X3A Toxic effect of tetrachloroethylene, assault, initial encounter +T533X3D Toxic effect of tetrachloroethylene, assault, subsequent encounter +T533X3S Toxic effect of tetrachloroethylene, assault, sequela +T533X4A Toxic effect of tetrachloroethylene, undetermined, initial encounter +T533X4D Toxic effect of tetrachloroethylene, undetermined, subsequent encounter +T533X4S Toxic effect of tetrachloroethylene, undetermined, sequela +T534X1A Toxic effect of dichloromethane, accidental (unintentional), initial encounter +T534X1D Toxic effect of dichloromethane, accidental (unintentional), subsequent encounter +T534X1S Toxic effect of dichloromethane, accidental (unintentional), sequela +T534X2A Toxic effect of dichloromethane, intentional self-harm, initial encounter +T534X2D Toxic effect of dichloromethane, intentional self-harm, subsequent encounter +T534X2S Toxic effect of dichloromethane, intentional self-harm, sequela +T534X3A Toxic effect of dichloromethane, assault, initial encounter +T534X3D Toxic effect of dichloromethane, assault, subsequent encounter +T534X3S Toxic effect of dichloromethane, assault, sequela +T534X4A Toxic effect of dichloromethane, undetermined, initial encounter +T534X4D Toxic effect of dichloromethane, undetermined, subsequent encounter +T534X4S Toxic effect of dichloromethane, undetermined, sequela +T535X1A Toxic effect of chlorofluorocarbons, accidental (unintentional), initial encounter +T535X1D Toxic effect of chlorofluorocarbons, accidental (unintentional), subsequent encounter +T535X1S Toxic effect of chlorofluorocarbons, accidental (unintentional), sequela +T535X2A Toxic effect of chlorofluorocarbons, intentional self-harm, initial encounter +T535X2D Toxic effect of chlorofluorocarbons, intentional self-harm, subsequent encounter +T535X2S Toxic effect of chlorofluorocarbons, intentional self-harm, sequela +T535X3A Toxic effect of chlorofluorocarbons, assault, initial encounter +T535X3D Toxic effect of chlorofluorocarbons, assault, subsequent encounter +T535X3S Toxic effect of chlorofluorocarbons, assault, sequela +T535X4A Toxic effect of chlorofluorocarbons, undetermined, initial encounter +T535X4D Toxic effect of chlorofluorocarbons, undetermined, subsequent encounter +T535X4S Toxic effect of chlorofluorocarbons, undetermined, sequela +T536X1A Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional), initial encounter +T536X1D Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional), subsequent encounter +T536X1S Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional), sequela +T536X2A Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm, initial encounter +T536X2D Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm, subsequent encounter +T536X2S Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm, sequela +T536X3A Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, initial encounter +T536X3D Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, subsequent encounter +T536X3S Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, sequela +T536X4A Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, initial encounter +T536X4D Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, subsequent encounter +T536X4S Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, sequela +T537X1A Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional), initial encounter +T537X1D Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional), subsequent encounter +T537X1S Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional), sequela +T537X2A Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm, initial encounter +T537X2D Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm, subsequent encounter +T537X2S Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm, sequela +T537X3A Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, initial encounter +T537X3D Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, subsequent encounter +T537X3S Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, sequela +T537X4A Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, initial encounter +T537X4D Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, subsequent encounter +T537X4S Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, sequela +T5391XA Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional), initial encounter +T5391XD Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional), subsequent encounter +T5391XS Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional), sequela +T5392XA Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm, initial encounter +T5392XD Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm, subsequent encounter +T5392XS Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm, sequela +T5393XA Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault, initial encounter +T5393XD Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault, subsequent encounter +T5393XS Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault, sequela +T5394XA Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined, initial encounter +T5394XD Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined, subsequent encounter +T5394XS Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined, sequela +T540X1A Toxic effect of phenol and phenol homologues, accidental (unintentional), initial encounter +T540X1D Toxic effect of phenol and phenol homologues, accidental (unintentional), subsequent encounter +T540X1S Toxic effect of phenol and phenol homologues, accidental (unintentional), sequela +T540X2A Toxic effect of phenol and phenol homologues, intentional self-harm, initial encounter +T540X2D Toxic effect of phenol and phenol homologues, intentional self-harm, subsequent encounter +T540X2S Toxic effect of phenol and phenol homologues, intentional self-harm, sequela +T540X3A Toxic effect of phenol and phenol homologues, assault, initial encounter +T540X3D Toxic effect of phenol and phenol homologues, assault, subsequent encounter +T540X3S Toxic effect of phenol and phenol homologues, assault, sequela +T540X4A Toxic effect of phenol and phenol homologues, undetermined, initial encounter +T540X4D Toxic effect of phenol and phenol homologues, undetermined, subsequent encounter +T540X4S Toxic effect of phenol and phenol homologues, undetermined, sequela +T541X1A Toxic effect of other corrosive organic compounds, accidental (unintentional), initial encounter +T541X1D Toxic effect of other corrosive organic compounds, accidental (unintentional), subsequent encounter +T541X1S Toxic effect of other corrosive organic compounds, accidental (unintentional), sequela +T541X2A Toxic effect of other corrosive organic compounds, intentional self-harm, initial encounter +T541X2D Toxic effect of other corrosive organic compounds, intentional self-harm, subsequent encounter +T541X2S Toxic effect of other corrosive organic compounds, intentional self-harm, sequela +T541X3A Toxic effect of other corrosive organic compounds, assault, initial encounter +T541X3D Toxic effect of other corrosive organic compounds, assault, subsequent encounter +T541X3S Toxic effect of other corrosive organic compounds, assault, sequela +T541X4A Toxic effect of other corrosive organic compounds, undetermined, initial encounter +T541X4D Toxic effect of other corrosive organic compounds, undetermined, subsequent encounter +T541X4S Toxic effect of other corrosive organic compounds, undetermined, sequela +T542X1A Toxic effect of corrosive acids and acid-like substances, accidental (unintentional), initial encounter +T542X1D Toxic effect of corrosive acids and acid-like substances, accidental (unintentional), subsequent encounter +T542X1S Toxic effect of corrosive acids and acid-like substances, accidental (unintentional), sequela +T542X2A Toxic effect of corrosive acids and acid-like substances, intentional self-harm, initial encounter +T542X2D Toxic effect of corrosive acids and acid-like substances, intentional self-harm, subsequent encounter +T542X2S Toxic effect of corrosive acids and acid-like substances, intentional self-harm, sequela +T542X3A Toxic effect of corrosive acids and acid-like substances, assault, initial encounter +T542X3D Toxic effect of corrosive acids and acid-like substances, assault, subsequent encounter +T542X3S Toxic effect of corrosive acids and acid-like substances, assault, sequela +T542X4A Toxic effect of corrosive acids and acid-like substances, undetermined, initial encounter +T542X4D Toxic effect of corrosive acids and acid-like substances, undetermined, subsequent encounter +T542X4S Toxic effect of corrosive acids and acid-like substances, undetermined, sequela +T543X1A Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), initial encounter +T543X1D Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), subsequent encounter +T543X1S Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), sequela +T543X2A Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm, initial encounter +T543X2D Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm, subsequent encounter +T543X2S Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm, sequela +T543X3A Toxic effect of corrosive alkalis and alkali-like substances, assault, initial encounter +T543X3D Toxic effect of corrosive alkalis and alkali-like substances, assault, subsequent encounter +T543X3S Toxic effect of corrosive alkalis and alkali-like substances, assault, sequela +T543X4A Toxic effect of corrosive alkalis and alkali-like substances, undetermined, initial encounter +T543X4D Toxic effect of corrosive alkalis and alkali-like substances, undetermined, subsequent encounter +T543X4S Toxic effect of corrosive alkalis and alkali-like substances, undetermined, sequela +T5491XA Toxic effect of unspecified corrosive substance, accidental (unintentional), initial encounter +T5491XD Toxic effect of unspecified corrosive substance, accidental (unintentional), subsequent encounter +T5491XS Toxic effect of unspecified corrosive substance, accidental (unintentional), sequela +T5492XA Toxic effect of unspecified corrosive substance, intentional self-harm, initial encounter +T5492XD Toxic effect of unspecified corrosive substance, intentional self-harm, subsequent encounter +T5492XS Toxic effect of unspecified corrosive substance, intentional self-harm, sequela +T5493XA Toxic effect of unspecified corrosive substance, assault, initial encounter +T5493XD Toxic effect of unspecified corrosive substance, assault, subsequent encounter +T5493XS Toxic effect of unspecified corrosive substance, assault, sequela +T5494XA Toxic effect of unspecified corrosive substance, undetermined, initial encounter +T5494XD Toxic effect of unspecified corrosive substance, undetermined, subsequent encounter +T5494XS Toxic effect of unspecified corrosive substance, undetermined, sequela +T550X1A Toxic effect of soaps, accidental (unintentional), initial encounter +T550X1D Toxic effect of soaps, accidental (unintentional), subsequent encounter +T550X1S Toxic effect of soaps, accidental (unintentional), sequela +T550X2A Toxic effect of soaps, intentional self-harm, initial encounter +T550X2D Toxic effect of soaps, intentional self-harm, subsequent encounter +T550X2S Toxic effect of soaps, intentional self-harm, sequela +T550X3A Toxic effect of soaps, assault, initial encounter +T550X3D Toxic effect of soaps, assault, subsequent encounter +T550X3S Toxic effect of soaps, assault, sequela +T550X4A Toxic effect of soaps, undetermined, initial encounter +T550X4D Toxic effect of soaps, undetermined, subsequent encounter +T550X4S Toxic effect of soaps, undetermined, sequela +T551X1A Toxic effect of detergents, accidental (unintentional), initial encounter +T551X1D Toxic effect of detergents, accidental (unintentional), subsequent encounter +T551X1S Toxic effect of detergents, accidental (unintentional), sequela +T551X2A Toxic effect of detergents, intentional self-harm, initial encounter +T551X2D Toxic effect of detergents, intentional self-harm, subsequent encounter +T551X2S Toxic effect of detergents, intentional self-harm, sequela +T551X3A Toxic effect of detergents, assault, initial encounter +T551X3D Toxic effect of detergents, assault, subsequent encounter +T551X3S Toxic effect of detergents, assault, sequela +T551X4A Toxic effect of detergents, undetermined, initial encounter +T551X4D Toxic effect of detergents, undetermined, subsequent encounter +T551X4S Toxic effect of detergents, undetermined, sequela +T560X1A Toxic effect of lead and its compounds, accidental (unintentional), initial encounter +T560X1D Toxic effect of lead and its compounds, accidental (unintentional), subsequent encounter +T560X1S Toxic effect of lead and its compounds, accidental (unintentional), sequela +T560X2A Toxic effect of lead and its compounds, intentional self-harm, initial encounter +T560X2D Toxic effect of lead and its compounds, intentional self-harm, subsequent encounter +T560X2S Toxic effect of lead and its compounds, intentional self-harm, sequela +T560X3A Toxic effect of lead and its compounds, assault, initial encounter +T560X3D Toxic effect of lead and its compounds, assault, subsequent encounter +T560X3S Toxic effect of lead and its compounds, assault, sequela +T560X4A Toxic effect of lead and its compounds, undetermined, initial encounter +T560X4D Toxic effect of lead and its compounds, undetermined, subsequent encounter +T560X4S Toxic effect of lead and its compounds, undetermined, sequela +T561X1A Toxic effect of mercury and its compounds, accidental (unintentional), initial encounter +T561X1D Toxic effect of mercury and its compounds, accidental (unintentional), subsequent encounter +T561X1S Toxic effect of mercury and its compounds, accidental (unintentional), sequela +T561X2A Toxic effect of mercury and its compounds, intentional self-harm, initial encounter +T561X2D Toxic effect of mercury and its compounds, intentional self-harm, subsequent encounter +T561X2S Toxic effect of mercury and its compounds, intentional self-harm, sequela +T561X3A Toxic effect of mercury and its compounds, assault, initial encounter +T561X3D Toxic effect of mercury and its compounds, assault, subsequent encounter +T561X3S Toxic effect of mercury and its compounds, assault, sequela +T561X4A Toxic effect of mercury and its compounds, undetermined, initial encounter +T561X4D Toxic effect of mercury and its compounds, undetermined, subsequent encounter +T561X4S Toxic effect of mercury and its compounds, undetermined, sequela +T562X1A Toxic effect of chromium and its compounds, accidental (unintentional), initial encounter +T562X1D Toxic effect of chromium and its compounds, accidental (unintentional), subsequent encounter +T562X1S Toxic effect of chromium and its compounds, accidental (unintentional), sequela +T562X2A Toxic effect of chromium and its compounds, intentional self-harm, initial encounter +T562X2D Toxic effect of chromium and its compounds, intentional self-harm, subsequent encounter +T562X2S Toxic effect of chromium and its compounds, intentional self-harm, sequela +T562X3A Toxic effect of chromium and its compounds, assault, initial encounter +T562X3D Toxic effect of chromium and its compounds, assault, subsequent encounter +T562X3S Toxic effect of chromium and its compounds, assault, sequela +T562X4A Toxic effect of chromium and its compounds, undetermined, initial encounter +T562X4D Toxic effect of chromium and its compounds, undetermined, subsequent encounter +T562X4S Toxic effect of chromium and its compounds, undetermined, sequela +T563X1A Toxic effect of cadmium and its compounds, accidental (unintentional), initial encounter +T563X1D Toxic effect of cadmium and its compounds, accidental (unintentional), subsequent encounter +T563X1S Toxic effect of cadmium and its compounds, accidental (unintentional), sequela +T563X2A Toxic effect of cadmium and its compounds, intentional self-harm, initial encounter +T563X2D Toxic effect of cadmium and its compounds, intentional self-harm, subsequent encounter +T563X2S Toxic effect of cadmium and its compounds, intentional self-harm, sequela +T563X3A Toxic effect of cadmium and its compounds, assault, initial encounter +T563X3D Toxic effect of cadmium and its compounds, assault, subsequent encounter +T563X3S Toxic effect of cadmium and its compounds, assault, sequela +T563X4A Toxic effect of cadmium and its compounds, undetermined, initial encounter +T563X4D Toxic effect of cadmium and its compounds, undetermined, subsequent encounter +T563X4S Toxic effect of cadmium and its compounds, undetermined, sequela +T564X1A Toxic effect of copper and its compounds, accidental (unintentional), initial encounter +T564X1D Toxic effect of copper and its compounds, accidental (unintentional), subsequent encounter +T564X1S Toxic effect of copper and its compounds, accidental (unintentional), sequela +T564X2A Toxic effect of copper and its compounds, intentional self-harm, initial encounter +T564X2D Toxic effect of copper and its compounds, intentional self-harm, subsequent encounter +T564X2S Toxic effect of copper and its compounds, intentional self-harm, sequela +T564X3A Toxic effect of copper and its compounds, assault, initial encounter +T564X3D Toxic effect of copper and its compounds, assault, subsequent encounter +T564X3S Toxic effect of copper and its compounds, assault, sequela +T564X4A Toxic effect of copper and its compounds, undetermined, initial encounter +T564X4D Toxic effect of copper and its compounds, undetermined, subsequent encounter +T564X4S Toxic effect of copper and its compounds, undetermined, sequela +T565X1A Toxic effect of zinc and its compounds, accidental (unintentional), initial encounter +T565X1D Toxic effect of zinc and its compounds, accidental (unintentional), subsequent encounter +T565X1S Toxic effect of zinc and its compounds, accidental (unintentional), sequela +T565X2A Toxic effect of zinc and its compounds, intentional self-harm, initial encounter +T565X2D Toxic effect of zinc and its compounds, intentional self-harm, subsequent encounter +T565X2S Toxic effect of zinc and its compounds, intentional self-harm, sequela +T565X3A Toxic effect of zinc and its compounds, assault, initial encounter +T565X3D Toxic effect of zinc and its compounds, assault, subsequent encounter +T565X3S Toxic effect of zinc and its compounds, assault, sequela +T565X4A Toxic effect of zinc and its compounds, undetermined, initial encounter +T565X4D Toxic effect of zinc and its compounds, undetermined, subsequent encounter +T565X4S Toxic effect of zinc and its compounds, undetermined, sequela +T566X1A Toxic effect of tin and its compounds, accidental (unintentional), initial encounter +T566X1D Toxic effect of tin and its compounds, accidental (unintentional), subsequent encounter +T566X1S Toxic effect of tin and its compounds, accidental (unintentional), sequela +T566X2A Toxic effect of tin and its compounds, intentional self-harm, initial encounter +T566X2D Toxic effect of tin and its compounds, intentional self-harm, subsequent encounter +T566X2S Toxic effect of tin and its compounds, intentional self-harm, sequela +T566X3A Toxic effect of tin and its compounds, assault, initial encounter +T566X3D Toxic effect of tin and its compounds, assault, subsequent encounter +T566X3S Toxic effect of tin and its compounds, assault, sequela +T566X4A Toxic effect of tin and its compounds, undetermined, initial encounter +T566X4D Toxic effect of tin and its compounds, undetermined, subsequent encounter +T566X4S Toxic effect of tin and its compounds, undetermined, sequela +T567X1A Toxic effect of beryllium and its compounds, accidental (unintentional), initial encounter +T567X1D Toxic effect of beryllium and its compounds, accidental (unintentional), subsequent encounter +T567X1S Toxic effect of beryllium and its compounds, accidental (unintentional), sequela +T567X2A Toxic effect of beryllium and its compounds, intentional self-harm, initial encounter +T567X2D Toxic effect of beryllium and its compounds, intentional self-harm, subsequent encounter +T567X2S Toxic effect of beryllium and its compounds, intentional self-harm, sequela +T567X3A Toxic effect of beryllium and its compounds, assault, initial encounter +T567X3D Toxic effect of beryllium and its compounds, assault, subsequent encounter +T567X3S Toxic effect of beryllium and its compounds, assault, sequela +T567X4A Toxic effect of beryllium and its compounds, undetermined, initial encounter +T567X4D Toxic effect of beryllium and its compounds, undetermined, subsequent encounter +T567X4S Toxic effect of beryllium and its compounds, undetermined, sequela +T56811A Toxic effect of thallium, accidental (unintentional), initial encounter +T56811D Toxic effect of thallium, accidental (unintentional), subsequent encounter +T56811S Toxic effect of thallium, accidental (unintentional), sequela +T56812A Toxic effect of thallium, intentional self-harm, initial encounter +T56812D Toxic effect of thallium, intentional self-harm, subsequent encounter +T56812S Toxic effect of thallium, intentional self-harm, sequela +T56813A Toxic effect of thallium, assault, initial encounter +T56813D Toxic effect of thallium, assault, subsequent encounter +T56813S Toxic effect of thallium, assault, sequela +T56814A Toxic effect of thallium, undetermined, initial encounter +T56814D Toxic effect of thallium, undetermined, subsequent encounter +T56814S Toxic effect of thallium, undetermined, sequela +T56891A Toxic effect of other metals, accidental (unintentional), initial encounter +T56891D Toxic effect of other metals, accidental (unintentional), subsequent encounter +T56891S Toxic effect of other metals, accidental (unintentional), sequela +T56892A Toxic effect of other metals, intentional self-harm, initial encounter +T56892D Toxic effect of other metals, intentional self-harm, subsequent encounter +T56892S Toxic effect of other metals, intentional self-harm, sequela +T56893A Toxic effect of other metals, assault, initial encounter +T56893D Toxic effect of other metals, assault, subsequent encounter +T56893S Toxic effect of other metals, assault, sequela +T56894A Toxic effect of other metals, undetermined, initial encounter +T56894D Toxic effect of other metals, undetermined, subsequent encounter +T56894S Toxic effect of other metals, undetermined, sequela +T5691XA Toxic effect of unspecified metal, accidental (unintentional), initial encounter +T5691XD Toxic effect of unspecified metal, accidental (unintentional), subsequent encounter +T5691XS Toxic effect of unspecified metal, accidental (unintentional), sequela +T5692XA Toxic effect of unspecified metal, intentional self-harm, initial encounter +T5692XD Toxic effect of unspecified metal, intentional self-harm, subsequent encounter +T5692XS Toxic effect of unspecified metal, intentional self-harm, sequela +T5693XA Toxic effect of unspecified metal, assault, initial encounter +T5693XD Toxic effect of unspecified metal, assault, subsequent encounter +T5693XS Toxic effect of unspecified metal, assault, sequela +T5694XA Toxic effect of unspecified metal, undetermined, initial encounter +T5694XD Toxic effect of unspecified metal, undetermined, subsequent encounter +T5694XS Toxic effect of unspecified metal, undetermined, sequela +T570X1A Toxic effect of arsenic and its compounds, accidental (unintentional), initial encounter +T570X1D Toxic effect of arsenic and its compounds, accidental (unintentional), subsequent encounter +T570X1S Toxic effect of arsenic and its compounds, accidental (unintentional), sequela +T570X2A Toxic effect of arsenic and its compounds, intentional self-harm, initial encounter +T570X2D Toxic effect of arsenic and its compounds, intentional self-harm, subsequent encounter +T570X2S Toxic effect of arsenic and its compounds, intentional self-harm, sequela +T570X3A Toxic effect of arsenic and its compounds, assault, initial encounter +T570X3D Toxic effect of arsenic and its compounds, assault, subsequent encounter +T570X3S Toxic effect of arsenic and its compounds, assault, sequela +T570X4A Toxic effect of arsenic and its compounds, undetermined, initial encounter +T570X4D Toxic effect of arsenic and its compounds, undetermined, subsequent encounter +T570X4S Toxic effect of arsenic and its compounds, undetermined, sequela +T571X1A Toxic effect of phosphorus and its compounds, accidental (unintentional), initial encounter +T571X1D Toxic effect of phosphorus and its compounds, accidental (unintentional), subsequent encounter +T571X1S Toxic effect of phosphorus and its compounds, accidental (unintentional), sequela +T571X2A Toxic effect of phosphorus and its compounds, intentional self-harm, initial encounter +T571X2D Toxic effect of phosphorus and its compounds, intentional self-harm, subsequent encounter +T571X2S Toxic effect of phosphorus and its compounds, intentional self-harm, sequela +T571X3A Toxic effect of phosphorus and its compounds, assault, initial encounter +T571X3D Toxic effect of phosphorus and its compounds, assault, subsequent encounter +T571X3S Toxic effect of phosphorus and its compounds, assault, sequela +T571X4A Toxic effect of phosphorus and its compounds, undetermined, initial encounter +T571X4D Toxic effect of phosphorus and its compounds, undetermined, subsequent encounter +T571X4S Toxic effect of phosphorus and its compounds, undetermined, sequela +T572X1A Toxic effect of manganese and its compounds, accidental (unintentional), initial encounter +T572X1D Toxic effect of manganese and its compounds, accidental (unintentional), subsequent encounter +T572X1S Toxic effect of manganese and its compounds, accidental (unintentional), sequela +T572X2A Toxic effect of manganese and its compounds, intentional self-harm, initial encounter +T572X2D Toxic effect of manganese and its compounds, intentional self-harm, subsequent encounter +T572X2S Toxic effect of manganese and its compounds, intentional self-harm, sequela +T572X3A Toxic effect of manganese and its compounds, assault, initial encounter +T572X3D Toxic effect of manganese and its compounds, assault, subsequent encounter +T572X3S Toxic effect of manganese and its compounds, assault, sequela +T572X4A Toxic effect of manganese and its compounds, undetermined, initial encounter +T572X4D Toxic effect of manganese and its compounds, undetermined, subsequent encounter +T572X4S Toxic effect of manganese and its compounds, undetermined, sequela +T573X1A Toxic effect of hydrogen cyanide, accidental (unintentional), initial encounter +T573X1D Toxic effect of hydrogen cyanide, accidental (unintentional), subsequent encounter +T573X1S Toxic effect of hydrogen cyanide, accidental (unintentional), sequela +T573X2A Toxic effect of hydrogen cyanide, intentional self-harm, initial encounter +T573X2D Toxic effect of hydrogen cyanide, intentional self-harm, subsequent encounter +T573X2S Toxic effect of hydrogen cyanide, intentional self-harm, sequela +T573X3A Toxic effect of hydrogen cyanide, assault, initial encounter +T573X3D Toxic effect of hydrogen cyanide, assault, subsequent encounter +T573X3S Toxic effect of hydrogen cyanide, assault, sequela +T573X4A Toxic effect of hydrogen cyanide, undetermined, initial encounter +T573X4D Toxic effect of hydrogen cyanide, undetermined, subsequent encounter +T573X4S Toxic effect of hydrogen cyanide, undetermined, sequela +T578X1A Toxic effect of other specified inorganic substances, accidental (unintentional), initial encounter +T578X1D Toxic effect of other specified inorganic substances, accidental (unintentional), subsequent encounter +T578X1S Toxic effect of other specified inorganic substances, accidental (unintentional), sequela +T578X2A Toxic effect of other specified inorganic substances, intentional self-harm, initial encounter +T578X2D Toxic effect of other specified inorganic substances, intentional self-harm, subsequent encounter +T578X2S Toxic effect of other specified inorganic substances, intentional self-harm, sequela +T578X3A Toxic effect of other specified inorganic substances, assault, initial encounter +T578X3D Toxic effect of other specified inorganic substances, assault, subsequent encounter +T578X3S Toxic effect of other specified inorganic substances, assault, sequela +T578X4A Toxic effect of other specified inorganic substances, undetermined, initial encounter +T578X4D Toxic effect of other specified inorganic substances, undetermined, subsequent encounter +T578X4S Toxic effect of other specified inorganic substances, undetermined, sequela +T5791XA Toxic effect of unspecified inorganic substance, accidental (unintentional), initial encounter +T5791XD Toxic effect of unspecified inorganic substance, accidental (unintentional), subsequent encounter +T5791XS Toxic effect of unspecified inorganic substance, accidental (unintentional), sequela +T5792XA Toxic effect of unspecified inorganic substance, intentional self-harm, initial encounter +T5792XD Toxic effect of unspecified inorganic substance, intentional self-harm, subsequent encounter +T5792XS Toxic effect of unspecified inorganic substance, intentional self-harm, sequela +T5793XA Toxic effect of unspecified inorganic substance, assault, initial encounter +T5793XD Toxic effect of unspecified inorganic substance, assault, subsequent encounter +T5793XS Toxic effect of unspecified inorganic substance, assault, sequela +T5794XA Toxic effect of unspecified inorganic substance, undetermined, initial encounter +T5794XD Toxic effect of unspecified inorganic substance, undetermined, subsequent encounter +T5794XS Toxic effect of unspecified inorganic substance, undetermined, sequela +T5801XA Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), initial encounter +T5801XD Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), subsequent encounter +T5801XS Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), sequela +T5802XA Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, initial encounter +T5802XD Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, subsequent encounter +T5802XS Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, sequela +T5803XA Toxic effect of carbon monoxide from motor vehicle exhaust, assault, initial encounter +T5803XD Toxic effect of carbon monoxide from motor vehicle exhaust, assault, subsequent encounter +T5803XS Toxic effect of carbon monoxide from motor vehicle exhaust, assault, sequela +T5804XA Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, initial encounter +T5804XD Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, subsequent encounter +T5804XS Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, sequela +T5811XA Toxic effect of carbon monoxide from utility gas, accidental (unintentional), initial encounter +T5811XD Toxic effect of carbon monoxide from utility gas, accidental (unintentional), subsequent encounter +T5811XS Toxic effect of carbon monoxide from utility gas, accidental (unintentional), sequela +T5812XA Toxic effect of carbon monoxide from utility gas, intentional self-harm, initial encounter +T5812XD Toxic effect of carbon monoxide from utility gas, intentional self-harm, subsequent encounter +T5812XS Toxic effect of carbon monoxide from utility gas, intentional self-harm, sequela +T5813XA Toxic effect of carbon monoxide from utility gas, assault, initial encounter +T5813XD Toxic effect of carbon monoxide from utility gas, assault, subsequent encounter +T5813XS Toxic effect of carbon monoxide from utility gas, assault, sequela +T5814XA Toxic effect of carbon monoxide from utility gas, undetermined, initial encounter +T5814XD Toxic effect of carbon monoxide from utility gas, undetermined, subsequent encounter +T5814XS Toxic effect of carbon monoxide from utility gas, undetermined, sequela +T582X1A Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional), initial encounter +T582X1D Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional), subsequent encounter +T582X1S Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional), sequela +T582X2A Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm, initial encounter +T582X2D Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm, subsequent encounter +T582X2S Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm, sequela +T582X3A Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, initial encounter +T582X3D Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, subsequent encounter +T582X3S Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, sequela +T582X4A Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined, initial encounter +T582X4D Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined, subsequent encounter +T582X4S Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined, sequela +T588X1A Toxic effect of carbon monoxide from other source, accidental (unintentional), initial encounter +T588X1D Toxic effect of carbon monoxide from other source, accidental (unintentional), subsequent encounter +T588X1S Toxic effect of carbon monoxide from other source, accidental (unintentional), sequela +T588X2A Toxic effect of carbon monoxide from other source, intentional self-harm, initial encounter +T588X2D Toxic effect of carbon monoxide from other source, intentional self-harm, subsequent encounter +T588X2S Toxic effect of carbon monoxide from other source, intentional self-harm, sequela +T588X3A Toxic effect of carbon monoxide from other source, assault, initial encounter +T588X3D Toxic effect of carbon monoxide from other source, assault, subsequent encounter +T588X3S Toxic effect of carbon monoxide from other source, assault, sequela +T588X4A Toxic effect of carbon monoxide from other source, undetermined, initial encounter +T588X4D Toxic effect of carbon monoxide from other source, undetermined, subsequent encounter +T588X4S Toxic effect of carbon monoxide from other source, undetermined, sequela +T5891XA Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), initial encounter +T5891XD Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), subsequent encounter +T5891XS Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), sequela +T5892XA Toxic effect of carbon monoxide from unspecified source, intentional self-harm, initial encounter +T5892XD Toxic effect of carbon monoxide from unspecified source, intentional self-harm, subsequent encounter +T5892XS Toxic effect of carbon monoxide from unspecified source, intentional self-harm, sequela +T5893XA Toxic effect of carbon monoxide from unspecified source, assault, initial encounter +T5893XD Toxic effect of carbon monoxide from unspecified source, assault, subsequent encounter +T5893XS Toxic effect of carbon monoxide from unspecified source, assault, sequela +T5894XA Toxic effect of carbon monoxide from unspecified source, undetermined, initial encounter +T5894XD Toxic effect of carbon monoxide from unspecified source, undetermined, subsequent encounter +T5894XS Toxic effect of carbon monoxide from unspecified source, undetermined, sequela +T590X1A Toxic effect of nitrogen oxides, accidental (unintentional), initial encounter +T590X1D Toxic effect of nitrogen oxides, accidental (unintentional), subsequent encounter +T590X1S Toxic effect of nitrogen oxides, accidental (unintentional), sequela +T590X2A Toxic effect of nitrogen oxides, intentional self-harm, initial encounter +T590X2D Toxic effect of nitrogen oxides, intentional self-harm, subsequent encounter +T590X2S Toxic effect of nitrogen oxides, intentional self-harm, sequela +T590X3A Toxic effect of nitrogen oxides, assault, initial encounter +T590X3D Toxic effect of nitrogen oxides, assault, subsequent encounter +T590X3S Toxic effect of nitrogen oxides, assault, sequela +T590X4A Toxic effect of nitrogen oxides, undetermined, initial encounter +T590X4D Toxic effect of nitrogen oxides, undetermined, subsequent encounter +T590X4S Toxic effect of nitrogen oxides, undetermined, sequela +T591X1A Toxic effect of sulfur dioxide, accidental (unintentional), initial encounter +T591X1D Toxic effect of sulfur dioxide, accidental (unintentional), subsequent encounter +T591X1S Toxic effect of sulfur dioxide, accidental (unintentional), sequela +T591X2A Toxic effect of sulfur dioxide, intentional self-harm, initial encounter +T591X2D Toxic effect of sulfur dioxide, intentional self-harm, subsequent encounter +T591X2S Toxic effect of sulfur dioxide, intentional self-harm, sequela +T591X3A Toxic effect of sulfur dioxide, assault, initial encounter +T591X3D Toxic effect of sulfur dioxide, assault, subsequent encounter +T591X3S Toxic effect of sulfur dioxide, assault, sequela +T591X4A Toxic effect of sulfur dioxide, undetermined, initial encounter +T591X4D Toxic effect of sulfur dioxide, undetermined, subsequent encounter +T591X4S Toxic effect of sulfur dioxide, undetermined, sequela +T592X1A Toxic effect of formaldehyde, accidental (unintentional), initial encounter +T592X1D Toxic effect of formaldehyde, accidental (unintentional), subsequent encounter +T592X1S Toxic effect of formaldehyde, accidental (unintentional), sequela +T592X2A Toxic effect of formaldehyde, intentional self-harm, initial encounter +T592X2D Toxic effect of formaldehyde, intentional self-harm, subsequent encounter +T592X2S Toxic effect of formaldehyde, intentional self-harm, sequela +T592X3A Toxic effect of formaldehyde, assault, initial encounter +T592X3D Toxic effect of formaldehyde, assault, subsequent encounter +T592X3S Toxic effect of formaldehyde, assault, sequela +T592X4A Toxic effect of formaldehyde, undetermined, initial encounter +T592X4D Toxic effect of formaldehyde, undetermined, subsequent encounter +T592X4S Toxic effect of formaldehyde, undetermined, sequela +T593X1A Toxic effect of lacrimogenic gas, accidental (unintentional), initial encounter +T593X1D Toxic effect of lacrimogenic gas, accidental (unintentional), subsequent encounter +T593X1S Toxic effect of lacrimogenic gas, accidental (unintentional), sequela +T593X2A Toxic effect of lacrimogenic gas, intentional self-harm, initial encounter +T593X2D Toxic effect of lacrimogenic gas, intentional self-harm, subsequent encounter +T593X2S Toxic effect of lacrimogenic gas, intentional self-harm, sequela +T593X3A Toxic effect of lacrimogenic gas, assault, initial encounter +T593X3D Toxic effect of lacrimogenic gas, assault, subsequent encounter +T593X3S Toxic effect of lacrimogenic gas, assault, sequela +T593X4A Toxic effect of lacrimogenic gas, undetermined, initial encounter +T593X4D Toxic effect of lacrimogenic gas, undetermined, subsequent encounter +T593X4S Toxic effect of lacrimogenic gas, undetermined, sequela +T594X1A Toxic effect of chlorine gas, accidental (unintentional), initial encounter +T594X1D Toxic effect of chlorine gas, accidental (unintentional), subsequent encounter +T594X1S Toxic effect of chlorine gas, accidental (unintentional), sequela +T594X2A Toxic effect of chlorine gas, intentional self-harm, initial encounter +T594X2D Toxic effect of chlorine gas, intentional self-harm, subsequent encounter +T594X2S Toxic effect of chlorine gas, intentional self-harm, sequela +T594X3A Toxic effect of chlorine gas, assault, initial encounter +T594X3D Toxic effect of chlorine gas, assault, subsequent encounter +T594X3S Toxic effect of chlorine gas, assault, sequela +T594X4A Toxic effect of chlorine gas, undetermined, initial encounter +T594X4D Toxic effect of chlorine gas, undetermined, subsequent encounter +T594X4S Toxic effect of chlorine gas, undetermined, sequela +T595X1A Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), initial encounter +T595X1D Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), subsequent encounter +T595X1S Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), sequela +T595X2A Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, initial encounter +T595X2D Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, subsequent encounter +T595X2S Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, sequela +T595X3A Toxic effect of fluorine gas and hydrogen fluoride, assault, initial encounter +T595X3D Toxic effect of fluorine gas and hydrogen fluoride, assault, subsequent encounter +T595X3S Toxic effect of fluorine gas and hydrogen fluoride, assault, sequela +T595X4A Toxic effect of fluorine gas and hydrogen fluoride, undetermined, initial encounter +T595X4D Toxic effect of fluorine gas and hydrogen fluoride, undetermined, subsequent encounter +T595X4S Toxic effect of fluorine gas and hydrogen fluoride, undetermined, sequela +T596X1A Toxic effect of hydrogen sulfide, accidental (unintentional), initial encounter +T596X1D Toxic effect of hydrogen sulfide, accidental (unintentional), subsequent encounter +T596X1S Toxic effect of hydrogen sulfide, accidental (unintentional), sequela +T596X2A Toxic effect of hydrogen sulfide, intentional self-harm, initial encounter +T596X2D Toxic effect of hydrogen sulfide, intentional self-harm, subsequent encounter +T596X2S Toxic effect of hydrogen sulfide, intentional self-harm, sequela +T596X3A Toxic effect of hydrogen sulfide, assault, initial encounter +T596X3D Toxic effect of hydrogen sulfide, assault, subsequent encounter +T596X3S Toxic effect of hydrogen sulfide, assault, sequela +T596X4A Toxic effect of hydrogen sulfide, undetermined, initial encounter +T596X4D Toxic effect of hydrogen sulfide, undetermined, subsequent encounter +T596X4S Toxic effect of hydrogen sulfide, undetermined, sequela +T597X1A Toxic effect of carbon dioxide, accidental (unintentional), initial encounter +T597X1D Toxic effect of carbon dioxide, accidental (unintentional), subsequent encounter +T597X1S Toxic effect of carbon dioxide, accidental (unintentional), sequela +T597X2A Toxic effect of carbon dioxide, intentional self-harm, initial encounter +T597X2D Toxic effect of carbon dioxide, intentional self-harm, subsequent encounter +T597X2S Toxic effect of carbon dioxide, intentional self-harm, sequela +T597X3A Toxic effect of carbon dioxide, assault, initial encounter +T597X3D Toxic effect of carbon dioxide, assault, subsequent encounter +T597X3S Toxic effect of carbon dioxide, assault, sequela +T597X4A Toxic effect of carbon dioxide, undetermined, initial encounter +T597X4D Toxic effect of carbon dioxide, undetermined, subsequent encounter +T597X4S Toxic effect of carbon dioxide, undetermined, sequela +T59811A Toxic effect of smoke, accidental (unintentional), initial encounter +T59811D Toxic effect of smoke, accidental (unintentional), subsequent encounter +T59811S Toxic effect of smoke, accidental (unintentional), sequela +T59812A Toxic effect of smoke, intentional self-harm, initial encounter +T59812D Toxic effect of smoke, intentional self-harm, subsequent encounter +T59812S Toxic effect of smoke, intentional self-harm, sequela +T59813A Toxic effect of smoke, assault, initial encounter +T59813D Toxic effect of smoke, assault, subsequent encounter +T59813S Toxic effect of smoke, assault, sequela +T59814A Toxic effect of smoke, undetermined, initial encounter +T59814D Toxic effect of smoke, undetermined, subsequent encounter +T59814S Toxic effect of smoke, undetermined, sequela +T59891A Toxic effect of other specified gases, fumes and vapors, accidental (unintentional), initial encounter +T59891D Toxic effect of other specified gases, fumes and vapors, accidental (unintentional), subsequent encounter +T59891S Toxic effect of other specified gases, fumes and vapors, accidental (unintentional), sequela +T59892A Toxic effect of other specified gases, fumes and vapors, intentional self-harm, initial encounter +T59892D Toxic effect of other specified gases, fumes and vapors, intentional self-harm, subsequent encounter +T59892S Toxic effect of other specified gases, fumes and vapors, intentional self-harm, sequela +T59893A Toxic effect of other specified gases, fumes and vapors, assault, initial encounter +T59893D Toxic effect of other specified gases, fumes and vapors, assault, subsequent encounter +T59893S Toxic effect of other specified gases, fumes and vapors, assault, sequela +T59894A Toxic effect of other specified gases, fumes and vapors, undetermined, initial encounter +T59894D Toxic effect of other specified gases, fumes and vapors, undetermined, subsequent encounter +T59894S Toxic effect of other specified gases, fumes and vapors, undetermined, sequela +T5991XA Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), initial encounter +T5991XD Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), subsequent encounter +T5991XS Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), sequela +T5992XA Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, initial encounter +T5992XD Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, subsequent encounter +T5992XS Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, sequela +T5993XA Toxic effect of unspecified gases, fumes and vapors, assault, initial encounter +T5993XD Toxic effect of unspecified gases, fumes and vapors, assault, subsequent encounter +T5993XS Toxic effect of unspecified gases, fumes and vapors, assault, sequela +T5994XA Toxic effect of unspecified gases, fumes and vapors, undetermined, initial encounter +T5994XD Toxic effect of unspecified gases, fumes and vapors, undetermined, subsequent encounter +T5994XS Toxic effect of unspecified gases, fumes and vapors, undetermined, sequela +T600X1A Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), initial encounter +T600X1D Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), subsequent encounter +T600X1S Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), sequela +T600X2A Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, initial encounter +T600X2D Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, subsequent encounter +T600X2S Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, sequela +T600X3A Toxic effect of organophosphate and carbamate insecticides, assault, initial encounter +T600X3D Toxic effect of organophosphate and carbamate insecticides, assault, subsequent encounter +T600X3S Toxic effect of organophosphate and carbamate insecticides, assault, sequela +T600X4A Toxic effect of organophosphate and carbamate insecticides, undetermined, initial encounter +T600X4D Toxic effect of organophosphate and carbamate insecticides, undetermined, subsequent encounter +T600X4S Toxic effect of organophosphate and carbamate insecticides, undetermined, sequela +T601X1A Toxic effect of halogenated insecticides, accidental (unintentional), initial encounter +T601X1D Toxic effect of halogenated insecticides, accidental (unintentional), subsequent encounter +T601X1S Toxic effect of halogenated insecticides, accidental (unintentional), sequela +T601X2A Toxic effect of halogenated insecticides, intentional self-harm, initial encounter +T601X2D Toxic effect of halogenated insecticides, intentional self-harm, subsequent encounter +T601X2S Toxic effect of halogenated insecticides, intentional self-harm, sequela +T601X3A Toxic effect of halogenated insecticides, assault, initial encounter +T601X3D Toxic effect of halogenated insecticides, assault, subsequent encounter +T601X3S Toxic effect of halogenated insecticides, assault, sequela +T601X4A Toxic effect of halogenated insecticides, undetermined, initial encounter +T601X4D Toxic effect of halogenated insecticides, undetermined, subsequent encounter +T601X4S Toxic effect of halogenated insecticides, undetermined, sequela +T602X1A Toxic effect of other insecticides, accidental (unintentional), initial encounter +T602X1D Toxic effect of other insecticides, accidental (unintentional), subsequent encounter +T602X1S Toxic effect of other insecticides, accidental (unintentional), sequela +T602X2A Toxic effect of other insecticides, intentional self-harm, initial encounter +T602X2D Toxic effect of other insecticides, intentional self-harm, subsequent encounter +T602X2S Toxic effect of other insecticides, intentional self-harm, sequela +T602X3A Toxic effect of other insecticides, assault, initial encounter +T602X3D Toxic effect of other insecticides, assault, subsequent encounter +T602X3S Toxic effect of other insecticides, assault, sequela +T602X4A Toxic effect of other insecticides, undetermined, initial encounter +T602X4D Toxic effect of other insecticides, undetermined, subsequent encounter +T602X4S Toxic effect of other insecticides, undetermined, sequela +T603X1A Toxic effect of herbicides and fungicides, accidental (unintentional), initial encounter +T603X1D Toxic effect of herbicides and fungicides, accidental (unintentional), subsequent encounter +T603X1S Toxic effect of herbicides and fungicides, accidental (unintentional), sequela +T603X2A Toxic effect of herbicides and fungicides, intentional self-harm, initial encounter +T603X2D Toxic effect of herbicides and fungicides, intentional self-harm, subsequent encounter +T603X2S Toxic effect of herbicides and fungicides, intentional self-harm, sequela +T603X3A Toxic effect of herbicides and fungicides, assault, initial encounter +T603X3D Toxic effect of herbicides and fungicides, assault, subsequent encounter +T603X3S Toxic effect of herbicides and fungicides, assault, sequela +T603X4A Toxic effect of herbicides and fungicides, undetermined, initial encounter +T603X4D Toxic effect of herbicides and fungicides, undetermined, subsequent encounter +T603X4S Toxic effect of herbicides and fungicides, undetermined, sequela +T604X1A Toxic effect of rodenticides, accidental (unintentional), initial encounter +T604X1D Toxic effect of rodenticides, accidental (unintentional), subsequent encounter +T604X1S Toxic effect of rodenticides, accidental (unintentional), sequela +T604X2A Toxic effect of rodenticides, intentional self-harm, initial encounter +T604X2D Toxic effect of rodenticides, intentional self-harm, subsequent encounter +T604X2S Toxic effect of rodenticides, intentional self-harm, sequela +T604X3A Toxic effect of rodenticides, assault, initial encounter +T604X3D Toxic effect of rodenticides, assault, subsequent encounter +T604X3S Toxic effect of rodenticides, assault, sequela +T604X4A Toxic effect of rodenticides, undetermined, initial encounter +T604X4D Toxic effect of rodenticides, undetermined, subsequent encounter +T604X4S Toxic effect of rodenticides, undetermined, sequela +T608X1A Toxic effect of other pesticides, accidental (unintentional), initial encounter +T608X1D Toxic effect of other pesticides, accidental (unintentional), subsequent encounter +T608X1S Toxic effect of other pesticides, accidental (unintentional), sequela +T608X2A Toxic effect of other pesticides, intentional self-harm, initial encounter +T608X2D Toxic effect of other pesticides, intentional self-harm, subsequent encounter +T608X2S Toxic effect of other pesticides, intentional self-harm, sequela +T608X3A Toxic effect of other pesticides, assault, initial encounter +T608X3D Toxic effect of other pesticides, assault, subsequent encounter +T608X3S Toxic effect of other pesticides, assault, sequela +T608X4A Toxic effect of other pesticides, undetermined, initial encounter +T608X4D Toxic effect of other pesticides, undetermined, subsequent encounter +T608X4S Toxic effect of other pesticides, undetermined, sequela +T6091XA Toxic effect of unspecified pesticide, accidental (unintentional), initial encounter +T6091XD Toxic effect of unspecified pesticide, accidental (unintentional), subsequent encounter +T6091XS Toxic effect of unspecified pesticide, accidental (unintentional), sequela +T6092XA Toxic effect of unspecified pesticide, intentional self-harm, initial encounter +T6092XD Toxic effect of unspecified pesticide, intentional self-harm, subsequent encounter +T6092XS Toxic effect of unspecified pesticide, intentional self-harm, sequela +T6093XA Toxic effect of unspecified pesticide, assault, initial encounter +T6093XD Toxic effect of unspecified pesticide, assault, subsequent encounter +T6093XS Toxic effect of unspecified pesticide, assault, sequela +T6094XA Toxic effect of unspecified pesticide, undetermined, initial encounter +T6094XD Toxic effect of unspecified pesticide, undetermined, subsequent encounter +T6094XS Toxic effect of unspecified pesticide, undetermined, sequela +T6101XA Ciguatera fish poisoning, accidental (unintentional), initial encounter +T6101XD Ciguatera fish poisoning, accidental (unintentional), subsequent encounter +T6101XS Ciguatera fish poisoning, accidental (unintentional), sequela +T6102XA Ciguatera fish poisoning, intentional self-harm, initial encounter +T6102XD Ciguatera fish poisoning, intentional self-harm, subsequent encounter +T6102XS Ciguatera fish poisoning, intentional self-harm, sequela +T6103XA Ciguatera fish poisoning, assault, initial encounter +T6103XD Ciguatera fish poisoning, assault, subsequent encounter +T6103XS Ciguatera fish poisoning, assault, sequela +T6104XA Ciguatera fish poisoning, undetermined, initial encounter +T6104XD Ciguatera fish poisoning, undetermined, subsequent encounter +T6104XS Ciguatera fish poisoning, undetermined, sequela +T6111XA Scombroid fish poisoning, accidental (unintentional), initial encounter +T6111XD Scombroid fish poisoning, accidental (unintentional), subsequent encounter +T6111XS Scombroid fish poisoning, accidental (unintentional), sequela +T6112XA Scombroid fish poisoning, intentional self-harm, initial encounter +T6112XD Scombroid fish poisoning, intentional self-harm, subsequent encounter +T6112XS Scombroid fish poisoning, intentional self-harm, sequela +T6113XA Scombroid fish poisoning, assault, initial encounter +T6113XD Scombroid fish poisoning, assault, subsequent encounter +T6113XS Scombroid fish poisoning, assault, sequela +T6114XA Scombroid fish poisoning, undetermined, initial encounter +T6114XD Scombroid fish poisoning, undetermined, subsequent encounter +T6114XS Scombroid fish poisoning, undetermined, sequela +T61771A Other fish poisoning, accidental (unintentional), initial encounter +T61771D Other fish poisoning, accidental (unintentional), subsequent encounter +T61771S Other fish poisoning, accidental (unintentional), sequela +T61772A Other fish poisoning, intentional self-harm, initial encounter +T61772D Other fish poisoning, intentional self-harm, subsequent encounter +T61772S Other fish poisoning, intentional self-harm, sequela +T61773A Other fish poisoning, assault, initial encounter +T61773D Other fish poisoning, assault, subsequent encounter +T61773S Other fish poisoning, assault, sequela +T61774A Other fish poisoning, undetermined, initial encounter +T61774D Other fish poisoning, undetermined, subsequent encounter +T61774S Other fish poisoning, undetermined, sequela +T61781A Other shellfish poisoning, accidental (unintentional), initial encounter +T61781D Other shellfish poisoning, accidental (unintentional), subsequent encounter +T61781S Other shellfish poisoning, accidental (unintentional), sequela +T61782A Other shellfish poisoning, intentional self-harm, initial encounter +T61782D Other shellfish poisoning, intentional self-harm, subsequent encounter +T61782S Other shellfish poisoning, intentional self-harm, sequela +T61783A Other shellfish poisoning, assault, initial encounter +T61783D Other shellfish poisoning, assault, subsequent encounter +T61783S Other shellfish poisoning, assault, sequela +T61784A Other shellfish poisoning, undetermined, initial encounter +T61784D Other shellfish poisoning, undetermined, subsequent encounter +T61784S Other shellfish poisoning, undetermined, sequela +T618X1A Toxic effect of other seafood, accidental (unintentional), initial encounter +T618X1D Toxic effect of other seafood, accidental (unintentional), subsequent encounter +T618X1S Toxic effect of other seafood, accidental (unintentional), sequela +T618X2A Toxic effect of other seafood, intentional self-harm, initial encounter +T618X2D Toxic effect of other seafood, intentional self-harm, subsequent encounter +T618X2S Toxic effect of other seafood, intentional self-harm, sequela +T618X3A Toxic effect of other seafood, assault, initial encounter +T618X3D Toxic effect of other seafood, assault, subsequent encounter +T618X3S Toxic effect of other seafood, assault, sequela +T618X4A Toxic effect of other seafood, undetermined, initial encounter +T618X4D Toxic effect of other seafood, undetermined, subsequent encounter +T618X4S Toxic effect of other seafood, undetermined, sequela +T6191XA Toxic effect of unspecified seafood, accidental (unintentional), initial encounter +T6191XD Toxic effect of unspecified seafood, accidental (unintentional), subsequent encounter +T6191XS Toxic effect of unspecified seafood, accidental (unintentional), sequela +T6192XA Toxic effect of unspecified seafood, intentional self-harm, initial encounter +T6192XD Toxic effect of unspecified seafood, intentional self-harm, subsequent encounter +T6192XS Toxic effect of unspecified seafood, intentional self-harm, sequela +T6193XA Toxic effect of unspecified seafood, assault, initial encounter +T6193XD Toxic effect of unspecified seafood, assault, subsequent encounter +T6193XS Toxic effect of unspecified seafood, assault, sequela +T6194XA Toxic effect of unspecified seafood, undetermined, initial encounter +T6194XD Toxic effect of unspecified seafood, undetermined, subsequent encounter +T6194XS Toxic effect of unspecified seafood, undetermined, sequela +T620X1A Toxic effect of ingested mushrooms, accidental (unintentional), initial encounter +T620X1D Toxic effect of ingested mushrooms, accidental (unintentional), subsequent encounter +T620X1S Toxic effect of ingested mushrooms, accidental (unintentional), sequela +T620X2A Toxic effect of ingested mushrooms, intentional self-harm, initial encounter +T620X2D Toxic effect of ingested mushrooms, intentional self-harm, subsequent encounter +T620X2S Toxic effect of ingested mushrooms, intentional self-harm, sequela +T620X3A Toxic effect of ingested mushrooms, assault, initial encounter +T620X3D Toxic effect of ingested mushrooms, assault, subsequent encounter +T620X3S Toxic effect of ingested mushrooms, assault, sequela +T620X4A Toxic effect of ingested mushrooms, undetermined, initial encounter +T620X4D Toxic effect of ingested mushrooms, undetermined, subsequent encounter +T620X4S Toxic effect of ingested mushrooms, undetermined, sequela +T621X1A Toxic effect of ingested berries, accidental (unintentional), initial encounter +T621X1D Toxic effect of ingested berries, accidental (unintentional), subsequent encounter +T621X1S Toxic effect of ingested berries, accidental (unintentional), sequela +T621X2A Toxic effect of ingested berries, intentional self-harm, initial encounter +T621X2D Toxic effect of ingested berries, intentional self-harm, subsequent encounter +T621X2S Toxic effect of ingested berries, intentional self-harm, sequela +T621X3A Toxic effect of ingested berries, assault, initial encounter +T621X3D Toxic effect of ingested berries, assault, subsequent encounter +T621X3S Toxic effect of ingested berries, assault, sequela +T621X4A Toxic effect of ingested berries, undetermined, initial encounter +T621X4D Toxic effect of ingested berries, undetermined, subsequent encounter +T621X4S Toxic effect of ingested berries, undetermined, sequela +T622X1A Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), initial encounter +T622X1D Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), subsequent encounter +T622X1S Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), sequela +T622X2A Toxic effect of other ingested (parts of) plant(s), intentional self-harm, initial encounter +T622X2D Toxic effect of other ingested (parts of) plant(s), intentional self-harm, subsequent encounter +T622X2S Toxic effect of other ingested (parts of) plant(s), intentional self-harm, sequela +T622X3A Toxic effect of other ingested (parts of) plant(s), assault, initial encounter +T622X3D Toxic effect of other ingested (parts of) plant(s), assault, subsequent encounter +T622X3S Toxic effect of other ingested (parts of) plant(s), assault, sequela +T622X4A Toxic effect of other ingested (parts of) plant(s), undetermined, initial encounter +T622X4D Toxic effect of other ingested (parts of) plant(s), undetermined, subsequent encounter +T622X4S Toxic effect of other ingested (parts of) plant(s), undetermined, sequela +T628X1A Toxic effect of other specified noxious substances eaten as food, accidental (unintentional), initial encounter +T628X1D Toxic effect of other specified noxious substances eaten as food, accidental (unintentional), subsequent encounter +T628X1S Toxic effect of other specified noxious substances eaten as food, accidental (unintentional), sequela +T628X2A Toxic effect of other specified noxious substances eaten as food, intentional self-harm, initial encounter +T628X2D Toxic effect of other specified noxious substances eaten as food, intentional self-harm, subsequent encounter +T628X2S Toxic effect of other specified noxious substances eaten as food, intentional self-harm, sequela +T628X3A Toxic effect of other specified noxious substances eaten as food, assault, initial encounter +T628X3D Toxic effect of other specified noxious substances eaten as food, assault, subsequent encounter +T628X3S Toxic effect of other specified noxious substances eaten as food, assault, sequela +T628X4A Toxic effect of other specified noxious substances eaten as food, undetermined, initial encounter +T628X4D Toxic effect of other specified noxious substances eaten as food, undetermined, subsequent encounter +T628X4S Toxic effect of other specified noxious substances eaten as food, undetermined, sequela +T6291XA Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional), initial encounter +T6291XD Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional), subsequent encounter +T6291XS Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional), sequela +T6292XA Toxic effect of unspecified noxious substance eaten as food, intentional self-harm, initial encounter +T6292XD Toxic effect of unspecified noxious substance eaten as food, intentional self-harm, subsequent encounter +T6292XS Toxic effect of unspecified noxious substance eaten as food, intentional self-harm, sequela +T6293XA Toxic effect of unspecified noxious substance eaten as food, assault, initial encounter +T6293XD Toxic effect of unspecified noxious substance eaten as food, assault, subsequent encounter +T6293XS Toxic effect of unspecified noxious substance eaten as food, assault, sequela +T6294XA Toxic effect of unspecified noxious substance eaten as food, undetermined, initial encounter +T6294XD Toxic effect of unspecified noxious substance eaten as food, undetermined, subsequent encounter +T6294XS Toxic effect of unspecified noxious substance eaten as food, undetermined, sequela +T63001A Toxic effect of unspecified snake venom, accidental (unintentional), initial encounter +T63001D Toxic effect of unspecified snake venom, accidental (unintentional), subsequent encounter +T63001S Toxic effect of unspecified snake venom, accidental (unintentional), sequela +T63002A Toxic effect of unspecified snake venom, intentional self-harm, initial encounter +T63002D Toxic effect of unspecified snake venom, intentional self-harm, subsequent encounter +T63002S Toxic effect of unspecified snake venom, intentional self-harm, sequela +T63003A Toxic effect of unspecified snake venom, assault, initial encounter +T63003D Toxic effect of unspecified snake venom, assault, subsequent encounter +T63003S Toxic effect of unspecified snake venom, assault, sequela +T63004A Toxic effect of unspecified snake venom, undetermined, initial encounter +T63004D Toxic effect of unspecified snake venom, undetermined, subsequent encounter +T63004S Toxic effect of unspecified snake venom, undetermined, sequela +T63011A Toxic effect of rattlesnake venom, accidental (unintentional), initial encounter +T63011D Toxic effect of rattlesnake venom, accidental (unintentional), subsequent encounter +T63011S Toxic effect of rattlesnake venom, accidental (unintentional), sequela +T63012A Toxic effect of rattlesnake venom, intentional self-harm, initial encounter +T63012D Toxic effect of rattlesnake venom, intentional self-harm, subsequent encounter +T63012S Toxic effect of rattlesnake venom, intentional self-harm, sequela +T63013A Toxic effect of rattlesnake venom, assault, initial encounter +T63013D Toxic effect of rattlesnake venom, assault, subsequent encounter +T63013S Toxic effect of rattlesnake venom, assault, sequela +T63014A Toxic effect of rattlesnake venom, undetermined, initial encounter +T63014D Toxic effect of rattlesnake venom, undetermined, subsequent encounter +T63014S Toxic effect of rattlesnake venom, undetermined, sequela +T63021A Toxic effect of coral snake venom, accidental (unintentional), initial encounter +T63021D Toxic effect of coral snake venom, accidental (unintentional), subsequent encounter +T63021S Toxic effect of coral snake venom, accidental (unintentional), sequela +T63022A Toxic effect of coral snake venom, intentional self-harm, initial encounter +T63022D Toxic effect of coral snake venom, intentional self-harm, subsequent encounter +T63022S Toxic effect of coral snake venom, intentional self-harm, sequela +T63023A Toxic effect of coral snake venom, assault, initial encounter +T63023D Toxic effect of coral snake venom, assault, subsequent encounter +T63023S Toxic effect of coral snake venom, assault, sequela +T63024A Toxic effect of coral snake venom, undetermined, initial encounter +T63024D Toxic effect of coral snake venom, undetermined, subsequent encounter +T63024S Toxic effect of coral snake venom, undetermined, sequela +T63031A Toxic effect of taipan venom, accidental (unintentional), initial encounter +T63031D Toxic effect of taipan venom, accidental (unintentional), subsequent encounter +T63031S Toxic effect of taipan venom, accidental (unintentional), sequela +T63032A Toxic effect of taipan venom, intentional self-harm, initial encounter +T63032D Toxic effect of taipan venom, intentional self-harm, subsequent encounter +T63032S Toxic effect of taipan venom, intentional self-harm, sequela +T63033A Toxic effect of taipan venom, assault, initial encounter +T63033D Toxic effect of taipan venom, assault, subsequent encounter +T63033S Toxic effect of taipan venom, assault, sequela +T63034A Toxic effect of taipan venom, undetermined, initial encounter +T63034D Toxic effect of taipan venom, undetermined, subsequent encounter +T63034S Toxic effect of taipan venom, undetermined, sequela +T63041A Toxic effect of cobra venom, accidental (unintentional), initial encounter +T63041D Toxic effect of cobra venom, accidental (unintentional), subsequent encounter +T63041S Toxic effect of cobra venom, accidental (unintentional), sequela +T63042A Toxic effect of cobra venom, intentional self-harm, initial encounter +T63042D Toxic effect of cobra venom, intentional self-harm, subsequent encounter +T63042S Toxic effect of cobra venom, intentional self-harm, sequela +T63043A Toxic effect of cobra venom, assault, initial encounter +T63043D Toxic effect of cobra venom, assault, subsequent encounter +T63043S Toxic effect of cobra venom, assault, sequela +T63044A Toxic effect of cobra venom, undetermined, initial encounter +T63044D Toxic effect of cobra venom, undetermined, subsequent encounter +T63044S Toxic effect of cobra venom, undetermined, sequela +T63061A Toxic effect of venom of other North and South American snake, accidental (unintentional), initial encounter +T63061D Toxic effect of venom of other North and South American snake, accidental (unintentional), subsequent encounter +T63061S Toxic effect of venom of other North and South American snake, accidental (unintentional), sequela +T63062A Toxic effect of venom of other North and South American snake, intentional self-harm, initial encounter +T63062D Toxic effect of venom of other North and South American snake, intentional self-harm, subsequent encounter +T63062S Toxic effect of venom of other North and South American snake, intentional self-harm, sequela +T63063A Toxic effect of venom of other North and South American snake, assault, initial encounter +T63063D Toxic effect of venom of other North and South American snake, assault, subsequent encounter +T63063S Toxic effect of venom of other North and South American snake, assault, sequela +T63064A Toxic effect of venom of other North and South American snake, undetermined, initial encounter +T63064D Toxic effect of venom of other North and South American snake, undetermined, subsequent encounter +T63064S Toxic effect of venom of other North and South American snake, undetermined, sequela +T63071A Toxic effect of venom of other Australian snake, accidental (unintentional), initial encounter +T63071D Toxic effect of venom of other Australian snake, accidental (unintentional), subsequent encounter +T63071S Toxic effect of venom of other Australian snake, accidental (unintentional), sequela +T63072A Toxic effect of venom of other Australian snake, intentional self-harm, initial encounter +T63072D Toxic effect of venom of other Australian snake, intentional self-harm, subsequent encounter +T63072S Toxic effect of venom of other Australian snake, intentional self-harm, sequela +T63073A Toxic effect of venom of other Australian snake, assault, initial encounter +T63073D Toxic effect of venom of other Australian snake, assault, subsequent encounter +T63073S Toxic effect of venom of other Australian snake, assault, sequela +T63074A Toxic effect of venom of other Australian snake, undetermined, initial encounter +T63074D Toxic effect of venom of other Australian snake, undetermined, subsequent encounter +T63074S Toxic effect of venom of other Australian snake, undetermined, sequela +T63081A Toxic effect of venom of other African and Asian snake, accidental (unintentional), initial encounter +T63081D Toxic effect of venom of other African and Asian snake, accidental (unintentional), subsequent encounter +T63081S Toxic effect of venom of other African and Asian snake, accidental (unintentional), sequela +T63082A Toxic effect of venom of other African and Asian snake, intentional self-harm, initial encounter +T63082D Toxic effect of venom of other African and Asian snake, intentional self-harm, subsequent encounter +T63082S Toxic effect of venom of other African and Asian snake, intentional self-harm, sequela +T63083A Toxic effect of venom of other African and Asian snake, assault, initial encounter +T63083D Toxic effect of venom of other African and Asian snake, assault, subsequent encounter +T63083S Toxic effect of venom of other African and Asian snake, assault, sequela +T63084A Toxic effect of venom of other African and Asian snake, undetermined, initial encounter +T63084D Toxic effect of venom of other African and Asian snake, undetermined, subsequent encounter +T63084S Toxic effect of venom of other African and Asian snake, undetermined, sequela +T63091A Toxic effect of venom of other snake, accidental (unintentional), initial encounter +T63091D Toxic effect of venom of other snake, accidental (unintentional), subsequent encounter +T63091S Toxic effect of venom of other snake, accidental (unintentional), sequela +T63092A Toxic effect of venom of other snake, intentional self-harm, initial encounter +T63092D Toxic effect of venom of other snake, intentional self-harm, subsequent encounter +T63092S Toxic effect of venom of other snake, intentional self-harm, sequela +T63093A Toxic effect of venom of other snake, assault, initial encounter +T63093D Toxic effect of venom of other snake, assault, subsequent encounter +T63093S Toxic effect of venom of other snake, assault, sequela +T63094A Toxic effect of venom of other snake, undetermined, initial encounter +T63094D Toxic effect of venom of other snake, undetermined, subsequent encounter +T63094S Toxic effect of venom of other snake, undetermined, sequela +T63111A Toxic effect of venom of gila monster, accidental (unintentional), initial encounter +T63111D Toxic effect of venom of gila monster, accidental (unintentional), subsequent encounter +T63111S Toxic effect of venom of gila monster, accidental (unintentional), sequela +T63112A Toxic effect of venom of gila monster, intentional self-harm, initial encounter +T63112D Toxic effect of venom of gila monster, intentional self-harm, subsequent encounter +T63112S Toxic effect of venom of gila monster, intentional self-harm, sequela +T63113A Toxic effect of venom of gila monster, assault, initial encounter +T63113D Toxic effect of venom of gila monster, assault, subsequent encounter +T63113S Toxic effect of venom of gila monster, assault, sequela +T63114A Toxic effect of venom of gila monster, undetermined, initial encounter +T63114D Toxic effect of venom of gila monster, undetermined, subsequent encounter +T63114S Toxic effect of venom of gila monster, undetermined, sequela +T63121A Toxic effect of venom of other venomous lizard, accidental (unintentional), initial encounter +T63121D Toxic effect of venom of other venomous lizard, accidental (unintentional), subsequent encounter +T63121S Toxic effect of venom of other venomous lizard, accidental (unintentional), sequela +T63122A Toxic effect of venom of other venomous lizard, intentional self-harm, initial encounter +T63122D Toxic effect of venom of other venomous lizard, intentional self-harm, subsequent encounter +T63122S Toxic effect of venom of other venomous lizard, intentional self-harm, sequela +T63123A Toxic effect of venom of other venomous lizard, assault, initial encounter +T63123D Toxic effect of venom of other venomous lizard, assault, subsequent encounter +T63123S Toxic effect of venom of other venomous lizard, assault, sequela +T63124A Toxic effect of venom of other venomous lizard, undetermined, initial encounter +T63124D Toxic effect of venom of other venomous lizard, undetermined, subsequent encounter +T63124S Toxic effect of venom of other venomous lizard, undetermined, sequela +T63191A Toxic effect of venom of other reptiles, accidental (unintentional), initial encounter +T63191D Toxic effect of venom of other reptiles, accidental (unintentional), subsequent encounter +T63191S Toxic effect of venom of other reptiles, accidental (unintentional), sequela +T63192A Toxic effect of venom of other reptiles, intentional self-harm, initial encounter +T63192D Toxic effect of venom of other reptiles, intentional self-harm, subsequent encounter +T63192S Toxic effect of venom of other reptiles, intentional self-harm, sequela +T63193A Toxic effect of venom of other reptiles, assault, initial encounter +T63193D Toxic effect of venom of other reptiles, assault, subsequent encounter +T63193S Toxic effect of venom of other reptiles, assault, sequela +T63194A Toxic effect of venom of other reptiles, undetermined, initial encounter +T63194D Toxic effect of venom of other reptiles, undetermined, subsequent encounter +T63194S Toxic effect of venom of other reptiles, undetermined, sequela +T632X1A Toxic effect of venom of scorpion, accidental (unintentional), initial encounter +T632X1D Toxic effect of venom of scorpion, accidental (unintentional), subsequent encounter +T632X1S Toxic effect of venom of scorpion, accidental (unintentional), sequela +T632X2A Toxic effect of venom of scorpion, intentional self-harm, initial encounter +T632X2D Toxic effect of venom of scorpion, intentional self-harm, subsequent encounter +T632X2S Toxic effect of venom of scorpion, intentional self-harm, sequela +T632X3A Toxic effect of venom of scorpion, assault, initial encounter +T632X3D Toxic effect of venom of scorpion, assault, subsequent encounter +T632X3S Toxic effect of venom of scorpion, assault, sequela +T632X4A Toxic effect of venom of scorpion, undetermined, initial encounter +T632X4D Toxic effect of venom of scorpion, undetermined, subsequent encounter +T632X4S Toxic effect of venom of scorpion, undetermined, sequela +T63301A Toxic effect of unspecified spider venom, accidental (unintentional), initial encounter +T63301D Toxic effect of unspecified spider venom, accidental (unintentional), subsequent encounter +T63301S Toxic effect of unspecified spider venom, accidental (unintentional), sequela +T63302A Toxic effect of unspecified spider venom, intentional self-harm, initial encounter +T63302D Toxic effect of unspecified spider venom, intentional self-harm, subsequent encounter +T63302S Toxic effect of unspecified spider venom, intentional self-harm, sequela +T63303A Toxic effect of unspecified spider venom, assault, initial encounter +T63303D Toxic effect of unspecified spider venom, assault, subsequent encounter +T63303S Toxic effect of unspecified spider venom, assault, sequela +T63304A Toxic effect of unspecified spider venom, undetermined, initial encounter +T63304D Toxic effect of unspecified spider venom, undetermined, subsequent encounter +T63304S Toxic effect of unspecified spider venom, undetermined, sequela +T63311A Toxic effect of venom of black widow spider, accidental (unintentional), initial encounter +T63311D Toxic effect of venom of black widow spider, accidental (unintentional), subsequent encounter +T63311S Toxic effect of venom of black widow spider, accidental (unintentional), sequela +T63312A Toxic effect of venom of black widow spider, intentional self-harm, initial encounter +T63312D Toxic effect of venom of black widow spider, intentional self-harm, subsequent encounter +T63312S Toxic effect of venom of black widow spider, intentional self-harm, sequela +T63313A Toxic effect of venom of black widow spider, assault, initial encounter +T63313D Toxic effect of venom of black widow spider, assault, subsequent encounter +T63313S Toxic effect of venom of black widow spider, assault, sequela +T63314A Toxic effect of venom of black widow spider, undetermined, initial encounter +T63314D Toxic effect of venom of black widow spider, undetermined, subsequent encounter +T63314S Toxic effect of venom of black widow spider, undetermined, sequela +T63321A Toxic effect of venom of tarantula, accidental (unintentional), initial encounter +T63321D Toxic effect of venom of tarantula, accidental (unintentional), subsequent encounter +T63321S Toxic effect of venom of tarantula, accidental (unintentional), sequela +T63322A Toxic effect of venom of tarantula, intentional self-harm, initial encounter +T63322D Toxic effect of venom of tarantula, intentional self-harm, subsequent encounter +T63322S Toxic effect of venom of tarantula, intentional self-harm, sequela +T63323A Toxic effect of venom of tarantula, assault, initial encounter +T63323D Toxic effect of venom of tarantula, assault, subsequent encounter +T63323S Toxic effect of venom of tarantula, assault, sequela +T63324A Toxic effect of venom of tarantula, undetermined, initial encounter +T63324D Toxic effect of venom of tarantula, undetermined, subsequent encounter +T63324S Toxic effect of venom of tarantula, undetermined, sequela +T63331A Toxic effect of venom of brown recluse spider, accidental (unintentional), initial encounter +T63331D Toxic effect of venom of brown recluse spider, accidental (unintentional), subsequent encounter +T63331S Toxic effect of venom of brown recluse spider, accidental (unintentional), sequela +T63332A Toxic effect of venom of brown recluse spider, intentional self-harm, initial encounter +T63332D Toxic effect of venom of brown recluse spider, intentional self-harm, subsequent encounter +T63332S Toxic effect of venom of brown recluse spider, intentional self-harm, sequela +T63333A Toxic effect of venom of brown recluse spider, assault, initial encounter +T63333D Toxic effect of venom of brown recluse spider, assault, subsequent encounter +T63333S Toxic effect of venom of brown recluse spider, assault, sequela +T63334A Toxic effect of venom of brown recluse spider, undetermined, initial encounter +T63334D Toxic effect of venom of brown recluse spider, undetermined, subsequent encounter +T63334S Toxic effect of venom of brown recluse spider, undetermined, sequela +T63391A Toxic effect of venom of other spider, accidental (unintentional), initial encounter +T63391D Toxic effect of venom of other spider, accidental (unintentional), subsequent encounter +T63391S Toxic effect of venom of other spider, accidental (unintentional), sequela +T63392A Toxic effect of venom of other spider, intentional self-harm, initial encounter +T63392D Toxic effect of venom of other spider, intentional self-harm, subsequent encounter +T63392S Toxic effect of venom of other spider, intentional self-harm, sequela +T63393A Toxic effect of venom of other spider, assault, initial encounter +T63393D Toxic effect of venom of other spider, assault, subsequent encounter +T63393S Toxic effect of venom of other spider, assault, sequela +T63394A Toxic effect of venom of other spider, undetermined, initial encounter +T63394D Toxic effect of venom of other spider, undetermined, subsequent encounter +T63394S Toxic effect of venom of other spider, undetermined, sequela +T63411A Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional), initial encounter +T63411D Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional), subsequent encounter +T63411S Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional), sequela +T63412A Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm, initial encounter +T63412D Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm, subsequent encounter +T63412S Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm, sequela +T63413A Toxic effect of venom of centipedes and venomous millipedes, assault, initial encounter +T63413D Toxic effect of venom of centipedes and venomous millipedes, assault, subsequent encounter +T63413S Toxic effect of venom of centipedes and venomous millipedes, assault, sequela +T63414A Toxic effect of venom of centipedes and venomous millipedes, undetermined, initial encounter +T63414D Toxic effect of venom of centipedes and venomous millipedes, undetermined, subsequent encounter +T63414S Toxic effect of venom of centipedes and venomous millipedes, undetermined, sequela +T63421A Toxic effect of venom of ants, accidental (unintentional), initial encounter +T63421D Toxic effect of venom of ants, accidental (unintentional), subsequent encounter +T63421S Toxic effect of venom of ants, accidental (unintentional), sequela +T63422A Toxic effect of venom of ants, intentional self-harm, initial encounter +T63422D Toxic effect of venom of ants, intentional self-harm, subsequent encounter +T63422S Toxic effect of venom of ants, intentional self-harm, sequela +T63423A Toxic effect of venom of ants, assault, initial encounter +T63423D Toxic effect of venom of ants, assault, subsequent encounter +T63423S Toxic effect of venom of ants, assault, sequela +T63424A Toxic effect of venom of ants, undetermined, initial encounter +T63424D Toxic effect of venom of ants, undetermined, subsequent encounter +T63424S Toxic effect of venom of ants, undetermined, sequela +T63431A Toxic effect of venom of caterpillars, accidental (unintentional), initial encounter +T63431D Toxic effect of venom of caterpillars, accidental (unintentional), subsequent encounter +T63431S Toxic effect of venom of caterpillars, accidental (unintentional), sequela +T63432A Toxic effect of venom of caterpillars, intentional self-harm, initial encounter +T63432D Toxic effect of venom of caterpillars, intentional self-harm, subsequent encounter +T63432S Toxic effect of venom of caterpillars, intentional self-harm, sequela +T63433A Toxic effect of venom of caterpillars, assault, initial encounter +T63433D Toxic effect of venom of caterpillars, assault, subsequent encounter +T63433S Toxic effect of venom of caterpillars, assault, sequela +T63434A Toxic effect of venom of caterpillars, undetermined, initial encounter +T63434D Toxic effect of venom of caterpillars, undetermined, subsequent encounter +T63434S Toxic effect of venom of caterpillars, undetermined, sequela +T63441A Toxic effect of venom of bees, accidental (unintentional), initial encounter +T63441D Toxic effect of venom of bees, accidental (unintentional), subsequent encounter +T63441S Toxic effect of venom of bees, accidental (unintentional), sequela +T63442A Toxic effect of venom of bees, intentional self-harm, initial encounter +T63442D Toxic effect of venom of bees, intentional self-harm, subsequent encounter +T63442S Toxic effect of venom of bees, intentional self-harm, sequela +T63443A Toxic effect of venom of bees, assault, initial encounter +T63443D Toxic effect of venom of bees, assault, subsequent encounter +T63443S Toxic effect of venom of bees, assault, sequela +T63444A Toxic effect of venom of bees, undetermined, initial encounter +T63444D Toxic effect of venom of bees, undetermined, subsequent encounter +T63444S Toxic effect of venom of bees, undetermined, sequela +T63451A Toxic effect of venom of hornets, accidental (unintentional), initial encounter +T63451D Toxic effect of venom of hornets, accidental (unintentional), subsequent encounter +T63451S Toxic effect of venom of hornets, accidental (unintentional), sequela +T63452A Toxic effect of venom of hornets, intentional self-harm, initial encounter +T63452D Toxic effect of venom of hornets, intentional self-harm, subsequent encounter +T63452S Toxic effect of venom of hornets, intentional self-harm, sequela +T63453A Toxic effect of venom of hornets, assault, initial encounter +T63453D Toxic effect of venom of hornets, assault, subsequent encounter +T63453S Toxic effect of venom of hornets, assault, sequela +T63454A Toxic effect of venom of hornets, undetermined, initial encounter +T63454D Toxic effect of venom of hornets, undetermined, subsequent encounter +T63454S Toxic effect of venom of hornets, undetermined, sequela +T63461A Toxic effect of venom of wasps, accidental (unintentional), initial encounter +T63461D Toxic effect of venom of wasps, accidental (unintentional), subsequent encounter +T63461S Toxic effect of venom of wasps, accidental (unintentional), sequela +T63462A Toxic effect of venom of wasps, intentional self-harm, initial encounter +T63462D Toxic effect of venom of wasps, intentional self-harm, subsequent encounter +T63462S Toxic effect of venom of wasps, intentional self-harm, sequela +T63463A Toxic effect of venom of wasps, assault, initial encounter +T63463D Toxic effect of venom of wasps, assault, subsequent encounter +T63463S Toxic effect of venom of wasps, assault, sequela +T63464A Toxic effect of venom of wasps, undetermined, initial encounter +T63464D Toxic effect of venom of wasps, undetermined, subsequent encounter +T63464S Toxic effect of venom of wasps, undetermined, sequela +T63481A Toxic effect of venom of other arthropod, accidental (unintentional), initial encounter +T63481D Toxic effect of venom of other arthropod, accidental (unintentional), subsequent encounter +T63481S Toxic effect of venom of other arthropod, accidental (unintentional), sequela +T63482A Toxic effect of venom of other arthropod, intentional self-harm, initial encounter +T63482D Toxic effect of venom of other arthropod, intentional self-harm, subsequent encounter +T63482S Toxic effect of venom of other arthropod, intentional self-harm, sequela +T63483A Toxic effect of venom of other arthropod, assault, initial encounter +T63483D Toxic effect of venom of other arthropod, assault, subsequent encounter +T63483S Toxic effect of venom of other arthropod, assault, sequela +T63484A Toxic effect of venom of other arthropod, undetermined, initial encounter +T63484D Toxic effect of venom of other arthropod, undetermined, subsequent encounter +T63484S Toxic effect of venom of other arthropod, undetermined, sequela +T63511A Toxic effect of contact with stingray, accidental (unintentional), initial encounter +T63511D Toxic effect of contact with stingray, accidental (unintentional), subsequent encounter +T63511S Toxic effect of contact with stingray, accidental (unintentional), sequela +T63512A Toxic effect of contact with stingray, intentional self-harm, initial encounter +T63512D Toxic effect of contact with stingray, intentional self-harm, subsequent encounter +T63512S Toxic effect of contact with stingray, intentional self-harm, sequela +T63513A Toxic effect of contact with stingray, assault, initial encounter +T63513D Toxic effect of contact with stingray, assault, subsequent encounter +T63513S Toxic effect of contact with stingray, assault, sequela +T63514A Toxic effect of contact with stingray, undetermined, initial encounter +T63514D Toxic effect of contact with stingray, undetermined, subsequent encounter +T63514S Toxic effect of contact with stingray, undetermined, sequela +T63591A Toxic effect of contact with other venomous fish, accidental (unintentional), initial encounter +T63591D Toxic effect of contact with other venomous fish, accidental (unintentional), subsequent encounter +T63591S Toxic effect of contact with other venomous fish, accidental (unintentional), sequela +T63592A Toxic effect of contact with other venomous fish, intentional self-harm, initial encounter +T63592D Toxic effect of contact with other venomous fish, intentional self-harm, subsequent encounter +T63592S Toxic effect of contact with other venomous fish, intentional self-harm, sequela +T63593A Toxic effect of contact with other venomous fish, assault, initial encounter +T63593D Toxic effect of contact with other venomous fish, assault, subsequent encounter +T63593S Toxic effect of contact with other venomous fish, assault, sequela +T63594A Toxic effect of contact with other venomous fish, undetermined, initial encounter +T63594D Toxic effect of contact with other venomous fish, undetermined, subsequent encounter +T63594S Toxic effect of contact with other venomous fish, undetermined, sequela +T63611A Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), initial encounter +T63611D Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), subsequent encounter +T63611S Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), sequela +T63612A Toxic effect of contact with Portugese Man-o-war, intentional self-harm, initial encounter +T63612D Toxic effect of contact with Portugese Man-o-war, intentional self-harm, subsequent encounter +T63612S Toxic effect of contact with Portugese Man-o-war, intentional self-harm, sequela +T63613A Toxic effect of contact with Portugese Man-o-war, assault, initial encounter +T63613D Toxic effect of contact with Portugese Man-o-war, assault, subsequent encounter +T63613S Toxic effect of contact with Portugese Man-o-war, assault, sequela +T63614A Toxic effect of contact with Portugese Man-o-war, undetermined, initial encounter +T63614D Toxic effect of contact with Portugese Man-o-war, undetermined, subsequent encounter +T63614S Toxic effect of contact with Portugese Man-o-war, undetermined, sequela +T63621A Toxic effect of contact with other jellyfish, accidental (unintentional), initial encounter +T63621D Toxic effect of contact with other jellyfish, accidental (unintentional), subsequent encounter +T63621S Toxic effect of contact with other jellyfish, accidental (unintentional), sequela +T63622A Toxic effect of contact with other jellyfish, intentional self-harm, initial encounter +T63622D Toxic effect of contact with other jellyfish, intentional self-harm, subsequent encounter +T63622S Toxic effect of contact with other jellyfish, intentional self-harm, sequela +T63623A Toxic effect of contact with other jellyfish, assault, initial encounter +T63623D Toxic effect of contact with other jellyfish, assault, subsequent encounter +T63623S Toxic effect of contact with other jellyfish, assault, sequela +T63624A Toxic effect of contact with other jellyfish, undetermined, initial encounter +T63624D Toxic effect of contact with other jellyfish, undetermined, subsequent encounter +T63624S Toxic effect of contact with other jellyfish, undetermined, sequela +T63631A Toxic effect of contact with sea anemone, accidental (unintentional), initial encounter +T63631D Toxic effect of contact with sea anemone, accidental (unintentional), subsequent encounter +T63631S Toxic effect of contact with sea anemone, accidental (unintentional), sequela +T63632A Toxic effect of contact with sea anemone, intentional self-harm, initial encounter +T63632D Toxic effect of contact with sea anemone, intentional self-harm, subsequent encounter +T63632S Toxic effect of contact with sea anemone, intentional self-harm, sequela +T63633A Toxic effect of contact with sea anemone, assault, initial encounter +T63633D Toxic effect of contact with sea anemone, assault, subsequent encounter +T63633S Toxic effect of contact with sea anemone, assault, sequela +T63634A Toxic effect of contact with sea anemone, undetermined, initial encounter +T63634D Toxic effect of contact with sea anemone, undetermined, subsequent encounter +T63634S Toxic effect of contact with sea anemone, undetermined, sequela +T63691A Toxic effect of contact with other venomous marine animals, accidental (unintentional), initial encounter +T63691D Toxic effect of contact with other venomous marine animals, accidental (unintentional), subsequent encounter +T63691S Toxic effect of contact with other venomous marine animals, accidental (unintentional), sequela +T63692A Toxic effect of contact with other venomous marine animals, intentional self-harm, initial encounter +T63692D Toxic effect of contact with other venomous marine animals, intentional self-harm, subsequent encounter +T63692S Toxic effect of contact with other venomous marine animals, intentional self-harm, sequela +T63693A Toxic effect of contact with other venomous marine animals, assault, initial encounter +T63693D Toxic effect of contact with other venomous marine animals, assault, subsequent encounter +T63693S Toxic effect of contact with other venomous marine animals, assault, sequela +T63694A Toxic effect of contact with other venomous marine animals, undetermined, initial encounter +T63694D Toxic effect of contact with other venomous marine animals, undetermined, subsequent encounter +T63694S Toxic effect of contact with other venomous marine animals, undetermined, sequela +T63711A Toxic effect of contact with venomous marine plant, accidental (unintentional), initial encounter +T63711D Toxic effect of contact with venomous marine plant, accidental (unintentional), subsequent encounter +T63711S Toxic effect of contact with venomous marine plant, accidental (unintentional), sequela +T63712A Toxic effect of contact with venomous marine plant, intentional self-harm, initial encounter +T63712D Toxic effect of contact with venomous marine plant, intentional self-harm, subsequent encounter +T63712S Toxic effect of contact with venomous marine plant, intentional self-harm, sequela +T63713A Toxic effect of contact with venomous marine plant, assault, initial encounter +T63713D Toxic effect of contact with venomous marine plant, assault, subsequent encounter +T63713S Toxic effect of contact with venomous marine plant, assault, sequela +T63714A Toxic effect of contact with venomous marine plant, undetermined, initial encounter +T63714D Toxic effect of contact with venomous marine plant, undetermined, subsequent encounter +T63714S Toxic effect of contact with venomous marine plant, undetermined, sequela +T63791A Toxic effect of contact with other venomous plant, accidental (unintentional), initial encounter +T63791D Toxic effect of contact with other venomous plant, accidental (unintentional), subsequent encounter +T63791S Toxic effect of contact with other venomous plant, accidental (unintentional), sequela +T63792A Toxic effect of contact with other venomous plant, intentional self-harm, initial encounter +T63792D Toxic effect of contact with other venomous plant, intentional self-harm, subsequent encounter +T63792S Toxic effect of contact with other venomous plant, intentional self-harm, sequela +T63793A Toxic effect of contact with other venomous plant, assault, initial encounter +T63793D Toxic effect of contact with other venomous plant, assault, subsequent encounter +T63793S Toxic effect of contact with other venomous plant, assault, sequela +T63794A Toxic effect of contact with other venomous plant, undetermined, initial encounter +T63794D Toxic effect of contact with other venomous plant, undetermined, subsequent encounter +T63794S Toxic effect of contact with other venomous plant, undetermined, sequela +T63811A Toxic effect of contact with venomous frog, accidental (unintentional), initial encounter +T63811D Toxic effect of contact with venomous frog, accidental (unintentional), subsequent encounter +T63811S Toxic effect of contact with venomous frog, accidental (unintentional), sequela +T63812A Toxic effect of contact with venomous frog, intentional self-harm, initial encounter +T63812D Toxic effect of contact with venomous frog, intentional self-harm, subsequent encounter +T63812S Toxic effect of contact with venomous frog, intentional self-harm, sequela +T63813A Toxic effect of contact with venomous frog, assault, initial encounter +T63813D Toxic effect of contact with venomous frog, assault, subsequent encounter +T63813S Toxic effect of contact with venomous frog, assault, sequela +T63814A Toxic effect of contact with venomous frog, undetermined, initial encounter +T63814D Toxic effect of contact with venomous frog, undetermined, subsequent encounter +T63814S Toxic effect of contact with venomous frog, undetermined, sequela +T63821A Toxic effect of contact with venomous toad, accidental (unintentional), initial encounter +T63821D Toxic effect of contact with venomous toad, accidental (unintentional), subsequent encounter +T63821S Toxic effect of contact with venomous toad, accidental (unintentional), sequela +T63822A Toxic effect of contact with venomous toad, intentional self-harm, initial encounter +T63822D Toxic effect of contact with venomous toad, intentional self-harm, subsequent encounter +T63822S Toxic effect of contact with venomous toad, intentional self-harm, sequela +T63823A Toxic effect of contact with venomous toad, assault, initial encounter +T63823D Toxic effect of contact with venomous toad, assault, subsequent encounter +T63823S Toxic effect of contact with venomous toad, assault, sequela +T63824A Toxic effect of contact with venomous toad, undetermined, initial encounter +T63824D Toxic effect of contact with venomous toad, undetermined, subsequent encounter +T63824S Toxic effect of contact with venomous toad, undetermined, sequela +T63831A Toxic effect of contact with other venomous amphibian, accidental (unintentional), initial encounter +T63831D Toxic effect of contact with other venomous amphibian, accidental (unintentional), subsequent encounter +T63831S Toxic effect of contact with other venomous amphibian, accidental (unintentional), sequela +T63832A Toxic effect of contact with other venomous amphibian, intentional self-harm, initial encounter +T63832D Toxic effect of contact with other venomous amphibian, intentional self-harm, subsequent encounter +T63832S Toxic effect of contact with other venomous amphibian, intentional self-harm, sequela +T63833A Toxic effect of contact with other venomous amphibian, assault, initial encounter +T63833D Toxic effect of contact with other venomous amphibian, assault, subsequent encounter +T63833S Toxic effect of contact with other venomous amphibian, assault, sequela +T63834A Toxic effect of contact with other venomous amphibian, undetermined, initial encounter +T63834D Toxic effect of contact with other venomous amphibian, undetermined, subsequent encounter +T63834S Toxic effect of contact with other venomous amphibian, undetermined, sequela +T63891A Toxic effect of contact with other venomous animals, accidental (unintentional), initial encounter +T63891D Toxic effect of contact with other venomous animals, accidental (unintentional), subsequent encounter +T63891S Toxic effect of contact with other venomous animals, accidental (unintentional), sequela +T63892A Toxic effect of contact with other venomous animals, intentional self-harm, initial encounter +T63892D Toxic effect of contact with other venomous animals, intentional self-harm, subsequent encounter +T63892S Toxic effect of contact with other venomous animals, intentional self-harm, sequela +T63893A Toxic effect of contact with other venomous animals, assault, initial encounter +T63893D Toxic effect of contact with other venomous animals, assault, subsequent encounter +T63893S Toxic effect of contact with other venomous animals, assault, sequela +T63894A Toxic effect of contact with other venomous animals, undetermined, initial encounter +T63894D Toxic effect of contact with other venomous animals, undetermined, subsequent encounter +T63894S Toxic effect of contact with other venomous animals, undetermined, sequela +T6391XA Toxic effect of contact with unspecified venomous animal, accidental (unintentional), initial encounter +T6391XD Toxic effect of contact with unspecified venomous animal, accidental (unintentional), subsequent encounter +T6391XS Toxic effect of contact with unspecified venomous animal, accidental (unintentional), sequela +T6392XA Toxic effect of contact with unspecified venomous animal, intentional self-harm, initial encounter +T6392XD Toxic effect of contact with unspecified venomous animal, intentional self-harm, subsequent encounter +T6392XS Toxic effect of contact with unspecified venomous animal, intentional self-harm, sequela +T6393XA Toxic effect of contact with unspecified venomous animal, assault, initial encounter +T6393XD Toxic effect of contact with unspecified venomous animal, assault, subsequent encounter +T6393XS Toxic effect of contact with unspecified venomous animal, assault, sequela +T6394XA Toxic effect of contact with unspecified venomous animal, undetermined, initial encounter +T6394XD Toxic effect of contact with unspecified venomous animal, undetermined, subsequent encounter +T6394XS Toxic effect of contact with unspecified venomous animal, undetermined, sequela +T6401XA Toxic effect of aflatoxin, accidental (unintentional), initial encounter +T6401XD Toxic effect of aflatoxin, accidental (unintentional), subsequent encounter +T6401XS Toxic effect of aflatoxin, accidental (unintentional), sequela +T6402XA Toxic effect of aflatoxin, intentional self-harm, initial encounter +T6402XD Toxic effect of aflatoxin, intentional self-harm, subsequent encounter +T6402XS Toxic effect of aflatoxin, intentional self-harm, sequela +T6403XA Toxic effect of aflatoxin, assault, initial encounter +T6403XD Toxic effect of aflatoxin, assault, subsequent encounter +T6403XS Toxic effect of aflatoxin, assault, sequela +T6404XA Toxic effect of aflatoxin, undetermined, initial encounter +T6404XD Toxic effect of aflatoxin, undetermined, subsequent encounter +T6404XS Toxic effect of aflatoxin, undetermined, sequela +T6481XA Toxic effect of other mycotoxin food contaminants, accidental (unintentional), initial encounter +T6481XD Toxic effect of other mycotoxin food contaminants, accidental (unintentional), subsequent encounter +T6481XS Toxic effect of other mycotoxin food contaminants, accidental (unintentional), sequela +T6482XA Toxic effect of other mycotoxin food contaminants, intentional self-harm, initial encounter +T6482XD Toxic effect of other mycotoxin food contaminants, intentional self-harm, subsequent encounter +T6482XS Toxic effect of other mycotoxin food contaminants, intentional self-harm, sequela +T6483XA Toxic effect of other mycotoxin food contaminants, assault, initial encounter +T6483XD Toxic effect of other mycotoxin food contaminants, assault, subsequent encounter +T6483XS Toxic effect of other mycotoxin food contaminants, assault, sequela +T6484XA Toxic effect of other mycotoxin food contaminants, undetermined, initial encounter +T6484XD Toxic effect of other mycotoxin food contaminants, undetermined, subsequent encounter +T6484XS Toxic effect of other mycotoxin food contaminants, undetermined, sequela +T650X1A Toxic effect of cyanides, accidental (unintentional), initial encounter +T650X1D Toxic effect of cyanides, accidental (unintentional), subsequent encounter +T650X1S Toxic effect of cyanides, accidental (unintentional), sequela +T650X2A Toxic effect of cyanides, intentional self-harm, initial encounter +T650X2D Toxic effect of cyanides, intentional self-harm, subsequent encounter +T650X2S Toxic effect of cyanides, intentional self-harm, sequela +T650X3A Toxic effect of cyanides, assault, initial encounter +T650X3D Toxic effect of cyanides, assault, subsequent encounter +T650X3S Toxic effect of cyanides, assault, sequela +T650X4A Toxic effect of cyanides, undetermined, initial encounter +T650X4D Toxic effect of cyanides, undetermined, subsequent encounter +T650X4S Toxic effect of cyanides, undetermined, sequela +T651X1A Toxic effect of strychnine and its salts, accidental (unintentional), initial encounter +T651X1D Toxic effect of strychnine and its salts, accidental (unintentional), subsequent encounter +T651X1S Toxic effect of strychnine and its salts, accidental (unintentional), sequela +T651X2A Toxic effect of strychnine and its salts, intentional self-harm, initial encounter +T651X2D Toxic effect of strychnine and its salts, intentional self-harm, subsequent encounter +T651X2S Toxic effect of strychnine and its salts, intentional self-harm, sequela +T651X3A Toxic effect of strychnine and its salts, assault, initial encounter +T651X3D Toxic effect of strychnine and its salts, assault, subsequent encounter +T651X3S Toxic effect of strychnine and its salts, assault, sequela +T651X4A Toxic effect of strychnine and its salts, undetermined, initial encounter +T651X4D Toxic effect of strychnine and its salts, undetermined, subsequent encounter +T651X4S Toxic effect of strychnine and its salts, undetermined, sequela +T65211A Toxic effect of chewing tobacco, accidental (unintentional), initial encounter +T65211D Toxic effect of chewing tobacco, accidental (unintentional), subsequent encounter +T65211S Toxic effect of chewing tobacco, accidental (unintentional), sequela +T65212A Toxic effect of chewing tobacco, intentional self-harm, initial encounter +T65212D Toxic effect of chewing tobacco, intentional self-harm, subsequent encounter +T65212S Toxic effect of chewing tobacco, intentional self-harm, sequela +T65213A Toxic effect of chewing tobacco, assault, initial encounter +T65213D Toxic effect of chewing tobacco, assault, subsequent encounter +T65213S Toxic effect of chewing tobacco, assault, sequela +T65214A Toxic effect of chewing tobacco, undetermined, initial encounter +T65214D Toxic effect of chewing tobacco, undetermined, subsequent encounter +T65214S Toxic effect of chewing tobacco, undetermined, sequela +T65221A Toxic effect of tobacco cigarettes, accidental (unintentional), initial encounter +T65221D Toxic effect of tobacco cigarettes, accidental (unintentional), subsequent encounter +T65221S Toxic effect of tobacco cigarettes, accidental (unintentional), sequela +T65222A Toxic effect of tobacco cigarettes, intentional self-harm, initial encounter +T65222D Toxic effect of tobacco cigarettes, intentional self-harm, subsequent encounter +T65222S Toxic effect of tobacco cigarettes, intentional self-harm, sequela +T65223A Toxic effect of tobacco cigarettes, assault, initial encounter +T65223D Toxic effect of tobacco cigarettes, assault, subsequent encounter +T65223S Toxic effect of tobacco cigarettes, assault, sequela +T65224A Toxic effect of tobacco cigarettes, undetermined, initial encounter +T65224D Toxic effect of tobacco cigarettes, undetermined, subsequent encounter +T65224S Toxic effect of tobacco cigarettes, undetermined, sequela +T65291A Toxic effect of other tobacco and nicotine, accidental (unintentional), initial encounter +T65291D Toxic effect of other tobacco and nicotine, accidental (unintentional), subsequent encounter +T65291S Toxic effect of other tobacco and nicotine, accidental (unintentional), sequela +T65292A Toxic effect of other tobacco and nicotine, intentional self-harm, initial encounter +T65292D Toxic effect of other tobacco and nicotine, intentional self-harm, subsequent encounter +T65292S Toxic effect of other tobacco and nicotine, intentional self-harm, sequela +T65293A Toxic effect of other tobacco and nicotine, assault, initial encounter +T65293D Toxic effect of other tobacco and nicotine, assault, subsequent encounter +T65293S Toxic effect of other tobacco and nicotine, assault, sequela +T65294A Toxic effect of other tobacco and nicotine, undetermined, initial encounter +T65294D Toxic effect of other tobacco and nicotine, undetermined, subsequent encounter +T65294S Toxic effect of other tobacco and nicotine, undetermined, sequela +T653X1A Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional), initial encounter +T653X1D Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional), subsequent encounter +T653X1S Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional), sequela +T653X2A Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm, initial encounter +T653X2D Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm, subsequent encounter +T653X2S Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm, sequela +T653X3A Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault, initial encounter +T653X3D Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault, subsequent encounter +T653X3S Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault, sequela +T653X4A Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined, initial encounter +T653X4D Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined, subsequent encounter +T653X4S Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined, sequela +T654X1A Toxic effect of carbon disulfide, accidental (unintentional), initial encounter +T654X1D Toxic effect of carbon disulfide, accidental (unintentional), subsequent encounter +T654X1S Toxic effect of carbon disulfide, accidental (unintentional), sequela +T654X2A Toxic effect of carbon disulfide, intentional self-harm, initial encounter +T654X2D Toxic effect of carbon disulfide, intentional self-harm, subsequent encounter +T654X2S Toxic effect of carbon disulfide, intentional self-harm, sequela +T654X3A Toxic effect of carbon disulfide, assault, initial encounter +T654X3D Toxic effect of carbon disulfide, assault, subsequent encounter +T654X3S Toxic effect of carbon disulfide, assault, sequela +T654X4A Toxic effect of carbon disulfide, undetermined, initial encounter +T654X4D Toxic effect of carbon disulfide, undetermined, subsequent encounter +T654X4S Toxic effect of carbon disulfide, undetermined, sequela +T655X1A Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional), initial encounter +T655X1D Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional), subsequent encounter +T655X1S Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional), sequela +T655X2A Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm, initial encounter +T655X2D Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm, subsequent encounter +T655X2S Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm, sequela +T655X3A Toxic effect of nitroglycerin and other nitric acids and esters, assault, initial encounter +T655X3D Toxic effect of nitroglycerin and other nitric acids and esters, assault, subsequent encounter +T655X3S Toxic effect of nitroglycerin and other nitric acids and esters, assault, sequela +T655X4A Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, initial encounter +T655X4D Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, subsequent encounter +T655X4S Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, sequela +T656X1A Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional), initial encounter +T656X1D Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional), subsequent encounter +T656X1S Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional), sequela +T656X2A Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, initial encounter +T656X2D Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, subsequent encounter +T656X2S Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, sequela +T656X3A Toxic effect of paints and dyes, not elsewhere classified, assault, initial encounter +T656X3D Toxic effect of paints and dyes, not elsewhere classified, assault, subsequent encounter +T656X3S Toxic effect of paints and dyes, not elsewhere classified, assault, sequela +T656X4A Toxic effect of paints and dyes, not elsewhere classified, undetermined, initial encounter +T656X4D Toxic effect of paints and dyes, not elsewhere classified, undetermined, subsequent encounter +T656X4S Toxic effect of paints and dyes, not elsewhere classified, undetermined, sequela +T65811A Toxic effect of latex, accidental (unintentional), initial encounter +T65811D Toxic effect of latex, accidental (unintentional), subsequent encounter +T65811S Toxic effect of latex, accidental (unintentional), sequela +T65812A Toxic effect of latex, intentional self-harm, initial encounter +T65812D Toxic effect of latex, intentional self-harm, subsequent encounter +T65812S Toxic effect of latex, intentional self-harm, sequela +T65813A Toxic effect of latex, assault, initial encounter +T65813D Toxic effect of latex, assault, subsequent encounter +T65813S Toxic effect of latex, assault, sequela +T65814A Toxic effect of latex, undetermined, initial encounter +T65814D Toxic effect of latex, undetermined, subsequent encounter +T65814S Toxic effect of latex, undetermined, sequela +T65821A Toxic effect of harmful algae and algae toxins, accidental (unintentional), initial encounter +T65821D Toxic effect of harmful algae and algae toxins, accidental (unintentional), subsequent encounter +T65821S Toxic effect of harmful algae and algae toxins, accidental (unintentional), sequela +T65822A Toxic effect of harmful algae and algae toxins, intentional self-harm, initial encounter +T65822D Toxic effect of harmful algae and algae toxins, intentional self-harm, subsequent encounter +T65822S Toxic effect of harmful algae and algae toxins, intentional self-harm, sequela +T65823A Toxic effect of harmful algae and algae toxins, assault, initial encounter +T65823D Toxic effect of harmful algae and algae toxins, assault, subsequent encounter +T65823S Toxic effect of harmful algae and algae toxins, assault, sequela +T65824A Toxic effect of harmful algae and algae toxins, undetermined, initial encounter +T65824D Toxic effect of harmful algae and algae toxins, undetermined, subsequent encounter +T65824S Toxic effect of harmful algae and algae toxins, undetermined, sequela +T65831A Toxic effect of fiberglass, accidental (unintentional), initial encounter +T65831D Toxic effect of fiberglass, accidental (unintentional), subsequent encounter +T65831S Toxic effect of fiberglass, accidental (unintentional), sequela +T65832A Toxic effect of fiberglass, intentional self-harm, initial encounter +T65832D Toxic effect of fiberglass, intentional self-harm, subsequent encounter +T65832S Toxic effect of fiberglass, intentional self-harm, sequela +T65833A Toxic effect of fiberglass, assault, initial encounter +T65833D Toxic effect of fiberglass, assault, subsequent encounter +T65833S Toxic effect of fiberglass, assault, sequela +T65834A Toxic effect of fiberglass, undetermined, initial encounter +T65834D Toxic effect of fiberglass, undetermined, subsequent encounter +T65834S Toxic effect of fiberglass, undetermined, sequela +T65891A Toxic effect of other specified substances, accidental (unintentional), initial encounter +T65891D Toxic effect of other specified substances, accidental (unintentional), subsequent encounter +T65891S Toxic effect of other specified substances, accidental (unintentional), sequela +T65892A Toxic effect of other specified substances, intentional self-harm, initial encounter +T65892D Toxic effect of other specified substances, intentional self-harm, subsequent encounter +T65892S Toxic effect of other specified substances, intentional self-harm, sequela +T65893A Toxic effect of other specified substances, assault, initial encounter +T65893D Toxic effect of other specified substances, assault, subsequent encounter +T65893S Toxic effect of other specified substances, assault, sequela +T65894A Toxic effect of other specified substances, undetermined, initial encounter +T65894D Toxic effect of other specified substances, undetermined, subsequent encounter +T65894S Toxic effect of other specified substances, undetermined, sequela +T6591XA Toxic effect of unspecified substance, accidental (unintentional), initial encounter +T6591XD Toxic effect of unspecified substance, accidental (unintentional), subsequent encounter +T6591XS Toxic effect of unspecified substance, accidental (unintentional), sequela +T6592XA Toxic effect of unspecified substance, intentional self-harm, initial encounter +T6592XD Toxic effect of unspecified substance, intentional self-harm, subsequent encounter +T6592XS Toxic effect of unspecified substance, intentional self-harm, sequela +T6593XA Toxic effect of unspecified substance, assault, initial encounter +T6593XD Toxic effect of unspecified substance, assault, subsequent encounter +T6593XS Toxic effect of unspecified substance, assault, sequela +T6594XA Toxic effect of unspecified substance, undetermined, initial encounter +T6594XD Toxic effect of unspecified substance, undetermined, subsequent encounter +T6594XS Toxic effect of unspecified substance, undetermined, sequela +T66XXXA Radiation sickness, unspecified, initial encounter +T66XXXD Radiation sickness, unspecified, subsequent encounter +T66XXXS Radiation sickness, unspecified, sequela +T671XXA Heat syncope, initial encounter +T671XXD Heat syncope, subsequent encounter +T671XXS Heat syncope, sequela +T672XXA Heat cramp, initial encounter +T672XXD Heat cramp, subsequent encounter +T672XXS Heat cramp, sequela +T673XXA Heat exhaustion, anhydrotic, initial encounter +T673XXD Heat exhaustion, anhydrotic, subsequent encounter +T673XXS Heat exhaustion, anhydrotic, sequela +T674XXA Heat exhaustion due to salt depletion, initial encounter +T674XXD Heat exhaustion due to salt depletion, subsequent encounter +T674XXS Heat exhaustion due to salt depletion, sequela +T675XXA Heat exhaustion, unspecified, initial encounter +T675XXD Heat exhaustion, unspecified, subsequent encounter +T675XXS Heat exhaustion, unspecified, sequela +T676XXA Heat fatigue, transient, initial encounter +T676XXD Heat fatigue, transient, subsequent encounter +T676XXS Heat fatigue, transient, sequela +T677XXA Heat edema, initial encounter +T677XXD Heat edema, subsequent encounter +T677XXS Heat edema, sequela +T678XXA Other effects of heat and light, initial encounter +T678XXD Other effects of heat and light, subsequent encounter +T678XXS Other effects of heat and light, sequela +T679XXA Effect of heat and light, unspecified, initial encounter +T679XXD Effect of heat and light, unspecified, subsequent encounter +T679XXS Effect of heat and light, unspecified, sequela +T68XXXA Hypothermia, initial encounter +T68XXXD Hypothermia, subsequent encounter +T68XXXS Hypothermia, sequela +T69011A Immersion hand, right hand, initial encounter +T69011D Immersion hand, right hand, subsequent encounter +T69011S Immersion hand, right hand, sequela +T69012A Immersion hand, left hand, initial encounter +T69012D Immersion hand, left hand, subsequent encounter +T69012S Immersion hand, left hand, sequela +T69019A Immersion hand, unspecified hand, initial encounter +T69019D Immersion hand, unspecified hand, subsequent encounter +T69019S Immersion hand, unspecified hand, sequela +T69021A Immersion foot, right foot, initial encounter +T69021D Immersion foot, right foot, subsequent encounter +T69021S Immersion foot, right foot, sequela +T69022A Immersion foot, left foot, initial encounter +T69022D Immersion foot, left foot, subsequent encounter +T69022S Immersion foot, left foot, sequela +T69029A Immersion foot, unspecified foot, initial encounter +T69029D Immersion foot, unspecified foot, subsequent encounter +T69029S Immersion foot, unspecified foot, sequela +T691XXA Chilblains, initial encounter +T691XXD Chilblains, subsequent encounter +T691XXS Chilblains, sequela +T698XXA Other specified effects of reduced temperature, initial encounter +T698XXD Other specified effects of reduced temperature, subsequent encounter +T698XXS Other specified effects of reduced temperature, sequela +T699XXA Effect of reduced temperature, unspecified, initial encounter +T699XXD Effect of reduced temperature, unspecified, subsequent encounter +T699XXS Effect of reduced temperature, unspecified, sequela +T700XXA Otitic barotrauma, initial encounter +T700XXD Otitic barotrauma, subsequent encounter +T700XXS Otitic barotrauma, sequela +T701XXA Sinus barotrauma, initial encounter +T701XXD Sinus barotrauma, subsequent encounter +T701XXS Sinus barotrauma, sequela +T7020XA Unspecified effects of high altitude, initial encounter +T7020XD Unspecified effects of high altitude, subsequent encounter +T7020XS Unspecified effects of high altitude, sequela +T7029XA Other effects of high altitude, initial encounter +T7029XD Other effects of high altitude, subsequent encounter +T7029XS Other effects of high altitude, sequela +T703XXA Caisson disease [decompression sickness], initial encounter +T703XXD Caisson disease [decompression sickness], subsequent encounter +T703XXS Caisson disease [decompression sickness], sequela +T704XXA Effects of high-pressure fluids, initial encounter +T704XXD Effects of high-pressure fluids, subsequent encounter +T704XXS Effects of high-pressure fluids, sequela +T708XXA Other effects of air pressure and water pressure, initial encounter +T708XXD Other effects of air pressure and water pressure, subsequent encounter +T708XXS Other effects of air pressure and water pressure, sequela +T709XXA Effect of air pressure and water pressure, unspecified, initial encounter +T709XXD Effect of air pressure and water pressure, unspecified, subsequent encounter +T709XXS Effect of air pressure and water pressure, unspecified, sequela +T71111A Asphyxiation due to smothering under pillow, accidental, initial encounter +T71111D Asphyxiation due to smothering under pillow, accidental, subsequent encounter +T71111S Asphyxiation due to smothering under pillow, accidental, sequela +T71112A Asphyxiation due to smothering under pillow, intentional self-harm, initial encounter +T71112D Asphyxiation due to smothering under pillow, intentional self-harm, subsequent encounter +T71112S Asphyxiation due to smothering under pillow, intentional self-harm, sequela +T71113A Asphyxiation due to smothering under pillow, assault, initial encounter +T71113D Asphyxiation due to smothering under pillow, assault, subsequent encounter +T71113S Asphyxiation due to smothering under pillow, assault, sequela +T71114A Asphyxiation due to smothering under pillow, undetermined, initial encounter +T71114D Asphyxiation due to smothering under pillow, undetermined, subsequent encounter +T71114S Asphyxiation due to smothering under pillow, undetermined, sequela +T71121A Asphyxiation due to plastic bag, accidental, initial encounter +T71121D Asphyxiation due to plastic bag, accidental, subsequent encounter +T71121S Asphyxiation due to plastic bag, accidental, sequela +T71122A Asphyxiation due to plastic bag, intentional self-harm, initial encounter +T71122D Asphyxiation due to plastic bag, intentional self-harm, subsequent encounter +T71122S Asphyxiation due to plastic bag, intentional self-harm, sequela +T71123A Asphyxiation due to plastic bag, assault, initial encounter +T71123D Asphyxiation due to plastic bag, assault, subsequent encounter +T71123S Asphyxiation due to plastic bag, assault, sequela +T71124A Asphyxiation due to plastic bag, undetermined, initial encounter +T71124D Asphyxiation due to plastic bag, undetermined, subsequent encounter +T71124S Asphyxiation due to plastic bag, undetermined, sequela +T71131A Asphyxiation due to being trapped in bed linens, accidental, initial encounter +T71131D Asphyxiation due to being trapped in bed linens, accidental, subsequent encounter +T71131S Asphyxiation due to being trapped in bed linens, accidental, sequela +T71132A Asphyxiation due to being trapped in bed linens, intentional self-harm, initial encounter +T71132D Asphyxiation due to being trapped in bed linens, intentional self-harm, subsequent encounter +T71132S Asphyxiation due to being trapped in bed linens, intentional self-harm, sequela +T71133A Asphyxiation due to being trapped in bed linens, assault, initial encounter +T71133D Asphyxiation due to being trapped in bed linens, assault, subsequent encounter +T71133S Asphyxiation due to being trapped in bed linens, assault, sequela +T71134A Asphyxiation due to being trapped in bed linens, undetermined, initial encounter +T71134D Asphyxiation due to being trapped in bed linens, undetermined, subsequent encounter +T71134S Asphyxiation due to being trapped in bed linens, undetermined, sequela +T71141A Asphyxiation due to smothering under another person's body (in bed), accidental, initial encounter +T71141D Asphyxiation due to smothering under another person's body (in bed), accidental, subsequent encounter +T71141S Asphyxiation due to smothering under another person's body (in bed), accidental, sequela +T71143A Asphyxiation due to smothering under another person's body (in bed), assault, initial encounter +T71143D Asphyxiation due to smothering under another person's body (in bed), assault, subsequent encounter +T71143S Asphyxiation due to smothering under another person's body (in bed), assault, sequela +T71144A Asphyxiation due to smothering under another person's body (in bed), undetermined, initial encounter +T71144D Asphyxiation due to smothering under another person's body (in bed), undetermined, subsequent encounter +T71144S Asphyxiation due to smothering under another person's body (in bed), undetermined, sequela +T71151A Asphyxiation due to smothering in furniture, accidental, initial encounter +T71151D Asphyxiation due to smothering in furniture, accidental, subsequent encounter +T71151S Asphyxiation due to smothering in furniture, accidental, sequela +T71152A Asphyxiation due to smothering in furniture, intentional self-harm, initial encounter +T71152D Asphyxiation due to smothering in furniture, intentional self-harm, subsequent encounter +T71152S Asphyxiation due to smothering in furniture, intentional self-harm, sequela +T71153A Asphyxiation due to smothering in furniture, assault, initial encounter +T71153D Asphyxiation due to smothering in furniture, assault, subsequent encounter +T71153S Asphyxiation due to smothering in furniture, assault, sequela +T71154A Asphyxiation due to smothering in furniture, undetermined, initial encounter +T71154D Asphyxiation due to smothering in furniture, undetermined, subsequent encounter +T71154S Asphyxiation due to smothering in furniture, undetermined, sequela +T71161A Asphyxiation due to hanging, accidental, initial encounter +T71161D Asphyxiation due to hanging, accidental, subsequent encounter +T71161S Asphyxiation due to hanging, accidental, sequela +T71162A Asphyxiation due to hanging, intentional self-harm, initial encounter +T71162D Asphyxiation due to hanging, intentional self-harm, subsequent encounter +T71162S Asphyxiation due to hanging, intentional self-harm, sequela +T71163A Asphyxiation due to hanging, assault, initial encounter +T71163D Asphyxiation due to hanging, assault, subsequent encounter +T71163S Asphyxiation due to hanging, assault, sequela +T71164A Asphyxiation due to hanging, undetermined, initial encounter +T71164D Asphyxiation due to hanging, undetermined, subsequent encounter +T71164S Asphyxiation due to hanging, undetermined, sequela +T71191A Asphyxiation due to mechanical threat to breathing due to other causes, accidental, initial encounter +T71191D Asphyxiation due to mechanical threat to breathing due to other causes, accidental, subsequent encounter +T71191S Asphyxiation due to mechanical threat to breathing due to other causes, accidental, sequela +T71192A Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm, initial encounter +T71192D Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm, subsequent encounter +T71192S Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm, sequela +T71193A Asphyxiation due to mechanical threat to breathing due to other causes, assault, initial encounter +T71193D Asphyxiation due to mechanical threat to breathing due to other causes, assault, subsequent encounter +T71193S Asphyxiation due to mechanical threat to breathing due to other causes, assault, sequela +T71194A Asphyxiation due to mechanical threat to breathing due to other causes, undetermined, initial encounter +T71194D Asphyxiation due to mechanical threat to breathing due to other causes, undetermined, subsequent encounter +T71194S Asphyxiation due to mechanical threat to breathing due to other causes, undetermined, sequela +T7120XA Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause, initial encounter +T7120XD Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause, subsequent encounter +T7120XS Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause, sequela +T7121XA Asphyxiation due to cave-in or falling earth, initial encounter +T7121XD Asphyxiation due to cave-in or falling earth, subsequent encounter +T7121XS Asphyxiation due to cave-in or falling earth, sequela +T71221A Asphyxiation due to being trapped in a car trunk, accidental, initial encounter +T71221D Asphyxiation due to being trapped in a car trunk, accidental, subsequent encounter +T71221S Asphyxiation due to being trapped in a car trunk, accidental, sequela +T71222A Asphyxiation due to being trapped in a car trunk, intentional self-harm, initial encounter +T71222D Asphyxiation due to being trapped in a car trunk, intentional self-harm, subsequent encounter +T71222S Asphyxiation due to being trapped in a car trunk, intentional self-harm, sequela +T71223A Asphyxiation due to being trapped in a car trunk, assault, initial encounter +T71223D Asphyxiation due to being trapped in a car trunk, assault, subsequent encounter +T71223S Asphyxiation due to being trapped in a car trunk, assault, sequela +T71224A Asphyxiation due to being trapped in a car trunk, undetermined, initial encounter +T71224D Asphyxiation due to being trapped in a car trunk, undetermined, subsequent encounter +T71224S Asphyxiation due to being trapped in a car trunk, undetermined, sequela +T71231A Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, initial encounter +T71231D Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, subsequent encounter +T71231S Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, sequela +T71232A Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm, initial encounter +T71232D Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm, subsequent encounter +T71232S Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm, sequela +T71233A Asphyxiation due to being trapped in a (discarded) refrigerator, assault, initial encounter +T71233D Asphyxiation due to being trapped in a (discarded) refrigerator, assault, subsequent encounter +T71233S Asphyxiation due to being trapped in a (discarded) refrigerator, assault, sequela +T71234A Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, initial encounter +T71234D Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, subsequent encounter +T71234S Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, sequela +T7129XA Asphyxiation due to being trapped in other low oxygen environment, initial encounter +T7129XD Asphyxiation due to being trapped in other low oxygen environment, subsequent encounter +T7129XS Asphyxiation due to being trapped in other low oxygen environment, sequela +T719XXA Asphyxiation due to unspecified cause, initial encounter +T719XXD Asphyxiation due to unspecified cause, subsequent encounter +T719XXS Asphyxiation due to unspecified cause, sequela +T730XXA Starvation, initial encounter +T730XXD Starvation, subsequent encounter +T730XXS Starvation, sequela +T731XXA Deprivation of water, initial encounter +T731XXD Deprivation of water, subsequent encounter +T731XXS Deprivation of water, sequela +T732XXA Exhaustion due to exposure, initial encounter +T732XXD Exhaustion due to exposure, subsequent encounter +T732XXS Exhaustion due to exposure, sequela +T733XXA Exhaustion due to excessive exertion, initial encounter +T733XXD Exhaustion due to excessive exertion, subsequent encounter +T733XXS Exhaustion due to excessive exertion, sequela +T738XXA Other effects of deprivation, initial encounter +T738XXD Other effects of deprivation, subsequent encounter +T738XXS Other effects of deprivation, sequela +T739XXA Effect of deprivation, unspecified, initial encounter +T739XXD Effect of deprivation, unspecified, subsequent encounter +T739XXS Effect of deprivation, unspecified, sequela +T7401XA Adult neglect or abandonment, confirmed, initial encounter +T7401XD Adult neglect or abandonment, confirmed, subsequent encounter +T7401XS Adult neglect or abandonment, confirmed, sequela +T7402XA Child neglect or abandonment, confirmed, initial encounter +T7402XD Child neglect or abandonment, confirmed, subsequent encounter +T7402XS Child neglect or abandonment, confirmed, sequela +T7411XA Adult physical abuse, confirmed, initial encounter +T7411XD Adult physical abuse, confirmed, subsequent encounter +T7411XS Adult physical abuse, confirmed, sequela +T7412XA Child physical abuse, confirmed, initial encounter +T7412XD Child physical abuse, confirmed, subsequent encounter +T7412XS Child physical abuse, confirmed, sequela +T7421XA Adult sexual abuse, confirmed, initial encounter +T7421XD Adult sexual abuse, confirmed, subsequent encounter +T7421XS Adult sexual abuse, confirmed, sequela +T7422XA Child sexual abuse, confirmed, initial encounter +T7422XD Child sexual abuse, confirmed, subsequent encounter +T7422XS Child sexual abuse, confirmed, sequela +T7431XA Adult psychological abuse, confirmed, initial encounter +T7431XD Adult psychological abuse, confirmed, subsequent encounter +T7431XS Adult psychological abuse, confirmed, sequela +T7432XA Child psychological abuse, confirmed, initial encounter +T7432XD Child psychological abuse, confirmed, subsequent encounter +T7432XS Child psychological abuse, confirmed, sequela +T744XXA Shaken infant syndrome, initial encounter +T744XXD Shaken infant syndrome, subsequent encounter +T744XXS Shaken infant syndrome, sequela +T7451XA Adult forced sexual exploitation, confirmed, initial encounter +T7451XD Adult forced sexual exploitation, confirmed, subsequent encounter +T7451XS Adult forced sexual exploitation, confirmed, sequela +T7452XA Child sexual exploitation, confirmed, initial encounter +T7452XD Child sexual exploitation, confirmed, subsequent encounter +T7452XS Child sexual exploitation, confirmed, sequela +T7461XA Adult forced labor exploitation, confirmed, initial encounter +T7461XD Adult forced labor exploitation, confirmed, subsequent encounte +T7461XS Adult forced labor exploitation, confirmed, sequela +T7462XA Child forced labor exploitation, confirmed, initial encounter +T7462XD Child forced labor exploitation, confirmed, subsequent encounter +T7462XS Child forced labor exploitation, confirmed, sequela +T7491XA Unspecified adult maltreatment, confirmed, initial encounter +T7491XD Unspecified adult maltreatment, confirmed, subsequent encounter +T7491XS Unspecified adult maltreatment, confirmed, sequela +T7492XA Unspecified child maltreatment, confirmed, initial encounter +T7492XD Unspecified child maltreatment, confirmed, subsequent encounter +T7492XS Unspecified child maltreatment, confirmed, sequela +T7500XA Unspecified effects of lightning, initial encounter +T7500XD Unspecified effects of lightning, subsequent encounter +T7500XS Unspecified effects of lightning, sequela +T7501XA Shock due to being struck by lightning, initial encounter +T7501XD Shock due to being struck by lightning, subsequent encounter +T7501XS Shock due to being struck by lightning, sequela +T7509XA Other effects of lightning, initial encounter +T7509XD Other effects of lightning, subsequent encounter +T7509XS Other effects of lightning, sequela +T751XXA Unspecified effects of drowning and nonfatal submersion, initial encounter +T751XXD Unspecified effects of drowning and nonfatal submersion, subsequent encounter +T751XXS Unspecified effects of drowning and nonfatal submersion, sequela +T7520XA Unspecified effects of vibration, initial encounter +T7520XD Unspecified effects of vibration, subsequent encounter +T7520XS Unspecified effects of vibration, sequela +T7521XA Pneumatic hammer syndrome, initial encounter +T7521XD Pneumatic hammer syndrome, subsequent encounter +T7521XS Pneumatic hammer syndrome, sequela +T7522XA Traumatic vasospastic syndrome, initial encounter +T7522XD Traumatic vasospastic syndrome, subsequent encounter +T7522XS Traumatic vasospastic syndrome, sequela +T7523XA Vertigo from infrasound, initial encounter +T7523XD Vertigo from infrasound, subsequent encounter +T7523XS Vertigo from infrasound, sequela +T7529XA Other effects of vibration, initial encounter +T7529XD Other effects of vibration, subsequent encounter +T7529XS Other effects of vibration, sequela +T753XXA Motion sickness, initial encounter +T753XXD Motion sickness, subsequent encounter +T753XXS Motion sickness, sequela +T754XXA Electrocution, initial encounter +T754XXD Electrocution, subsequent encounter +T754XXS Electrocution, sequela +T7581XA Effects of abnormal gravitation [G] forces, initial encounter +T7581XD Effects of abnormal gravitation [G] forces, subsequent encounter +T7581XS Effects of abnormal gravitation [G] forces, sequela +T7582XA Effects of weightlessness, initial encounter +T7582XD Effects of weightlessness, subsequent encounter +T7582XS Effects of weightlessness, sequela +T7589XA Other specified effects of external causes, initial encounter +T7589XD Other specified effects of external causes, subsequent encounter +T7589XS Other specified effects of external causes, sequela +T7601XA Adult neglect or abandonment, suspected, initial encounter +T7601XD Adult neglect or abandonment, suspected, subsequent encounter +T7601XS Adult neglect or abandonment, suspected, sequela +T7602XA Child neglect or abandonment, suspected, initial encounter +T7602XD Child neglect or abandonment, suspected, subsequent encounter +T7602XS Child neglect or abandonment, suspected, sequela +T7611XA Adult physical abuse, suspected, initial encounter +T7611XD Adult physical abuse, suspected, subsequent encounter +T7611XS Adult physical abuse, suspected, sequela +T7612XA Child physical abuse, suspected, initial encounter +T7612XD Child physical abuse, suspected, subsequent encounter +T7612XS Child physical abuse, suspected, sequela +T7621XA Adult sexual abuse, suspected, initial encounter +T7621XD Adult sexual abuse, suspected, subsequent encounter +T7621XS Adult sexual abuse, suspected, sequela +T7622XA Child sexual abuse, suspected, initial encounter +T7622XD Child sexual abuse, suspected, subsequent encounter +T7622XS Child sexual abuse, suspected, sequela +T7631XA Adult psychological abuse, suspected, initial encounter +T7631XD Adult psychological abuse, suspected, subsequent encounter +T7631XS Adult psychological abuse, suspected, sequela +T7632XA Child psychological abuse, suspected, initial encounter +T7632XD Child psychological abuse, suspected, subsequent encounter +T7632XS Child psychological abuse, suspected, sequela +T7651XA Adult forced sexual exploitation, suspected, initial encounter +T7651XD Adult forced sexual exploitation, suspected, subsequent encounter +T7651XS Adult forced sexual exploitation, suspected, sequela +T7652XA Child sexual exploitation, suspected, initial encounter +T7652XD Child sexual exploitation, suspected, subsequent encounter +T7652XS Child sexual exploitation, suspected, sequela +T7661XA Adult forced labor exploitation, suspected, initial encounter +T7661XD Adult forced labor exploitation, suspected, subsequent encounter +T7661XS Adult forced labor exploitation, suspected, sequela +T7662XA Child forced labor exploitation, suspected, initial encounter +T7662XD Child forced labor exploitation, suspected, subsequent encounter +T7662XS Child forced labor exploitation, suspected, sequela +T7691XA Unspecified adult maltreatment, suspected, initial encounter +T7691XD Unspecified adult maltreatment, suspected, subsequent encounter +T7691XS Unspecified adult maltreatment, suspected, sequela +T7692XA Unspecified child maltreatment, suspected, initial encounter +T7692XD Unspecified child maltreatment, suspected, subsequent encounter +T7692XS Unspecified child maltreatment, suspected, sequela +T7800XA Anaphylactic reaction due to unspecified food, initial encounter +T7800XD Anaphylactic reaction due to unspecified food, subsequent encounter +T7800XS Anaphylactic reaction due to unspecified food, sequela +T7801XA Anaphylactic reaction due to peanuts, initial encounter +T7801XD Anaphylactic reaction due to peanuts, subsequent encounter +T7801XS Anaphylactic reaction due to peanuts, sequela +T7802XA Anaphylactic reaction due to shellfish (crustaceans), initial encounter +T7802XD Anaphylactic reaction due to shellfish (crustaceans), subsequent encounter +T7802XS Anaphylactic reaction due to shellfish (crustaceans), sequela +T7803XA Anaphylactic reaction due to other fish, initial encounter +T7803XD Anaphylactic reaction due to other fish, subsequent encounter +T7803XS Anaphylactic reaction due to other fish, sequela +T7804XA Anaphylactic reaction due to fruits and vegetables, initial encounter +T7804XD Anaphylactic reaction due to fruits and vegetables, subsequent encounter +T7804XS Anaphylactic reaction due to fruits and vegetables, sequela +T7805XA Anaphylactic reaction due to tree nuts and seeds, initial encounter +T7805XD Anaphylactic reaction due to tree nuts and seeds, subsequent encounter +T7805XS Anaphylactic reaction due to tree nuts and seeds, sequela +T7806XA Anaphylactic reaction due to food additives, initial encounter +T7806XD Anaphylactic reaction due to food additives, subsequent encounter +T7806XS Anaphylactic reaction due to food additives, sequela +T7807XA Anaphylactic reaction due to milk and dairy products, initial encounter +T7807XD Anaphylactic reaction due to milk and dairy products, subsequent encounter +T7807XS Anaphylactic reaction due to milk and dairy products, sequela +T7808XA Anaphylactic reaction due to eggs, initial encounter +T7808XD Anaphylactic reaction due to eggs, subsequent encounter +T7808XS Anaphylactic reaction due to eggs, sequela +T7809XA Anaphylactic reaction due to other food products, initial encounter +T7809XD Anaphylactic reaction due to other food products, subsequent encounter +T7809XS Anaphylactic reaction due to other food products, sequela +T781XXA Other adverse food reactions, not elsewhere classified, initial encounter +T781XXD Other adverse food reactions, not elsewhere classified, subsequent encounter +T781XXS Other adverse food reactions, not elsewhere classified, sequela +T782XXA Anaphylactic shock, unspecified, initial encounter +T782XXD Anaphylactic shock, unspecified, subsequent encounter +T782XXS Anaphylactic shock, unspecified, sequela +T783XXA Angioneurotic edema, initial encounter +T783XXD Angioneurotic edema, subsequent encounter +T783XXS Angioneurotic edema, sequela +T7840XA Allergy, unspecified, initial encounter +T7840XD Allergy, unspecified, subsequent encounter +T7840XS Allergy, unspecified, sequela +T7841XA Arthus phenomenon, initial encounter +T7841XD Arthus phenomenon, subsequent encounter +T7841XS Arthus phenomenon, sequela +T7849XA Other allergy, initial encounter +T7849XD Other allergy, subsequent encounter +T7849XS Other allergy, sequela +T788XXA Other adverse effects, not elsewhere classified, initial encounter +T788XXD Other adverse effects, not elsewhere classified, subsequent encounter +T788XXS Other adverse effects, not elsewhere classified, sequela +T790XXA Air embolism (traumatic), initial encounter +T790XXD Air embolism (traumatic), subsequent encounter +T790XXS Air embolism (traumatic), sequela +T791XXA Fat embolism (traumatic), initial encounter +T791XXD Fat embolism (traumatic), subsequent encounter +T791XXS Fat embolism (traumatic), sequela +T792XXA Traumatic secondary and recurrent hemorrhage and seroma, initial encounter +T792XXD Traumatic secondary and recurrent hemorrhage and seroma, subsequent encounter +T792XXS Traumatic secondary and recurrent hemorrhage and seroma, sequela +T794XXA Traumatic shock, initial encounter +T794XXD Traumatic shock, subsequent encounter +T794XXS Traumatic shock, sequela +T795XXA Traumatic anuria, initial encounter +T795XXD Traumatic anuria, subsequent encounter +T795XXS Traumatic anuria, sequela +T796XXA Traumatic ischemia of muscle, initial encounter +T796XXD Traumatic ischemia of muscle, subsequent encounter +T796XXS Traumatic ischemia of muscle, sequela +T797XXA Traumatic subcutaneous emphysema, initial encounter +T797XXD Traumatic subcutaneous emphysema, subsequent encounter +T797XXS Traumatic subcutaneous emphysema, sequela +T798XXA Other early complications of trauma, initial encounter +T798XXD Other early complications of trauma, subsequent encounter +T798XXS Other early complications of trauma, sequela +T799XXA Unspecified early complication of trauma, initial encounter +T799XXD Unspecified early complication of trauma, subsequent encounter +T799XXS Unspecified early complication of trauma, sequela +T79A0XA Compartment syndrome, unspecified, initial encounter +T79A0XD Compartment syndrome, unspecified, subsequent encounter +T79A0XS Compartment syndrome, unspecified, sequela +T79A11A Traumatic compartment syndrome of right upper extremity, initial encounter +T79A11D Traumatic compartment syndrome of right upper extremity, subsequent encounter +T79A11S Traumatic compartment syndrome of right upper extremity, sequela +T79A12A Traumatic compartment syndrome of left upper extremity, initial encounter +T79A12D Traumatic compartment syndrome of left upper extremity, subsequent encounter +T79A12S Traumatic compartment syndrome of left upper extremity, sequela +T79A19A Traumatic compartment syndrome of unspecified upper extremity, initial encounter +T79A19D Traumatic compartment syndrome of unspecified upper extremity, subsequent encounter +T79A19S Traumatic compartment syndrome of unspecified upper extremity, sequela +T79A21A Traumatic compartment syndrome of right lower extremity, initial encounter +T79A21D Traumatic compartment syndrome of right lower extremity, subsequent encounter +T79A21S Traumatic compartment syndrome of right lower extremity, sequela +T79A22A Traumatic compartment syndrome of left lower extremity, initial encounter +T79A22D Traumatic compartment syndrome of left lower extremity, subsequent encounter +T79A22S Traumatic compartment syndrome of left lower extremity, sequela +T79A29A Traumatic compartment syndrome of unspecified lower extremity, initial encounter +T79A29D Traumatic compartment syndrome of unspecified lower extremity, subsequent encounter +T79A29S Traumatic compartment syndrome of unspecified lower extremity, sequela +T79A3XA Traumatic compartment syndrome of abdomen, initial encounter +T79A3XD Traumatic compartment syndrome of abdomen, subsequent encounter +T79A3XS Traumatic compartment syndrome of abdomen, sequela +T79A9XA Traumatic compartment syndrome of other sites, initial encounter +T79A9XD Traumatic compartment syndrome of other sites, subsequent encounter +T79A9XS Traumatic compartment syndrome of other sites, sequela +T800XXA Air embolism following infusion, transfusion and therapeutic injection, initial encounter +T800XXD Air embolism following infusion, transfusion and therapeutic injection, subsequent encounter +T800XXS Air embolism following infusion, transfusion and therapeutic injection, sequela +T801XXA Vascular complications following infusion, transfusion and therapeutic injection, initial encounter +T801XXD Vascular complications following infusion, transfusion and therapeutic injection, subsequent encounter +T801XXS Vascular complications following infusion, transfusion and therapeutic injection, sequela +T80211A Bloodstream infection due to central venous catheter, initial encounter +T80211D Bloodstream infection due to central venous catheter, subsequent encounter +T80211S Bloodstream infection due to central venous catheter, sequela +T80212A Local infection due to central venous catheter, initial encounter +T80212D Local infection due to central venous catheter, subsequent encounter +T80212S Local infection due to central venous catheter, sequela +T80218A Other infection due to central venous catheter, initial encounter +T80218D Other infection due to central venous catheter, subsequent encounter +T80218S Other infection due to central venous catheter, sequela +T80219A Unspecified infection due to central venous catheter, initial encounter +T80219D Unspecified infection due to central venous catheter, subsequent encounter +T80219S Unspecified infection due to central venous catheter, sequela +T8022XA Acute infection following transfusion, infusion, or injection of blood and blood products, initial encounter +T8022XD Acute infection following transfusion, infusion, or injection of blood and blood products, subsequent encounter +T8022XS Acute infection following transfusion, infusion, or injection of blood and blood products, sequela +T8029XA Infection following other infusion, transfusion and therapeutic injection, initial encounter +T8029XD Infection following other infusion, transfusion and therapeutic injection, subsequent encounter +T8029XS Infection following other infusion, transfusion and therapeutic injection, sequela +T8030XA ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, initial encounter +T8030XD ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, subsequent encounter +T8030XS ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela +T80310A ABO incompatibility with acute hemolytic transfusion reaction, initial encounter +T80310D ABO incompatibility with acute hemolytic transfusion reaction, subsequent encounter +T80310S ABO incompatibility with acute hemolytic transfusion reaction, sequela +T80311A ABO incompatibility with delayed hemolytic transfusion reaction, initial encounter +T80311D ABO incompatibility with delayed hemolytic transfusion reaction, subsequent encounter +T80311S ABO incompatibility with delayed hemolytic transfusion reaction, sequela +T80319A ABO incompatibility with hemolytic transfusion reaction, unspecified, initial encounter +T80319D ABO incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter +T80319S ABO incompatibility with hemolytic transfusion reaction, unspecified, sequela +T8039XA Other ABO incompatibility reaction due to transfusion of blood or blood products, initial encounter +T8039XD Other ABO incompatibility reaction due to transfusion of blood or blood products, subsequent encounter +T8039XS Other ABO incompatibility reaction due to transfusion of blood or blood products, sequela +T8040XA Rh incompatibility reaction due to transfusion of blood or blood products, unspecified, initial encounter +T8040XD Rh incompatibility reaction due to transfusion of blood or blood products, unspecified, subsequent encounter +T8040XS Rh incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela +T80410A Rh incompatibility with acute hemolytic transfusion reaction, initial encounter +T80410D Rh incompatibility with acute hemolytic transfusion reaction, subsequent encounter +T80410S Rh incompatibility with acute hemolytic transfusion reaction, sequela +T80411A Rh incompatibility with delayed hemolytic transfusion reaction, initial encounter +T80411D Rh incompatibility with delayed hemolytic transfusion reaction, subsequent encounter +T80411S Rh incompatibility with delayed hemolytic transfusion reaction, sequela +T80419A Rh incompatibility with hemolytic transfusion reaction, unspecified, initial encounter +T80419D Rh incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter +T80419S Rh incompatibility with hemolytic transfusion reaction, unspecified, sequela +T8049XA Other Rh incompatibility reaction due to transfusion of blood or blood products, initial encounter +T8049XD Other Rh incompatibility reaction due to transfusion of blood or blood products, subsequent encounter +T8049XS Other Rh incompatibility reaction due to transfusion of blood or blood products, sequela +T8051XA Anaphylactic reaction due to administration of blood and blood products, initial encounter +T8051XD Anaphylactic reaction due to administration of blood and blood products, subsequent encounter +T8051XS Anaphylactic reaction due to administration of blood and blood products, sequela +T8052XA Anaphylactic reaction due to vaccination, initial encounter +T8052XD Anaphylactic reaction due to vaccination, subsequent encounter +T8052XS Anaphylactic reaction due to vaccination, sequela +T8059XA Anaphylactic reaction due to other serum, initial encounter +T8059XD Anaphylactic reaction due to other serum, subsequent encounter +T8059XS Anaphylactic reaction due to other serum, sequela +T8061XA Other serum reaction due to administration of blood and blood products, initial encounter +T8061XD Other serum reaction due to administration of blood and blood products, subsequent encounter +T8061XS Other serum reaction due to administration of blood and blood products, sequela +T8062XA Other serum reaction due to vaccination, initial encounter +T8062XD Other serum reaction due to vaccination, subsequent encounter +T8062XS Other serum reaction due to vaccination, sequela +T8069XA Other serum reaction due to other serum, initial encounter +T8069XD Other serum reaction due to other serum, subsequent encounter +T8069XS Other serum reaction due to other serum, sequela +T80810A Extravasation of vesicant antineoplastic chemotherapy, initial encounter +T80810D Extravasation of vesicant antineoplastic chemotherapy, subsequent encounter +T80810S Extravasation of vesicant antineoplastic chemotherapy, sequela +T80818A Extravasation of other vesicant agent, initial encounter +T80818D Extravasation of other vesicant agent, subsequent encounter +T80818S Extravasation of other vesicant agent, sequela +T8089XA Other complications following infusion, transfusion and therapeutic injection, initial encounter +T8089XD Other complications following infusion, transfusion and therapeutic injection, subsequent encounter +T8089XS Other complications following infusion, transfusion and therapeutic injection, sequela +T8090XA Unspecified complication following infusion and therapeutic injection, initial encounter +T8090XD Unspecified complication following infusion and therapeutic injection, subsequent encounter +T8090XS Unspecified complication following infusion and therapeutic injection, sequela +T80910A Acute hemolytic transfusion reaction, unspecified incompatibility, initial encounter +T80910D Acute hemolytic transfusion reaction, unspecified incompatibility, subsequent encounter +T80910S Acute hemolytic transfusion reaction, unspecified incompatibility, sequela +T80911A Delayed hemolytic transfusion reaction, unspecified incompatibility, initial encounter +T80911D Delayed hemolytic transfusion reaction, unspecified incompatibility, subsequent encounter +T80911S Delayed hemolytic transfusion reaction, unspecified incompatibility, sequela +T80919A Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed, initial encounter +T80919D Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed, subsequent encounter +T80919S Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed, sequela +T8092XA Unspecified transfusion reaction, initial encounter +T8092XD Unspecified transfusion reaction, subsequent encounter +T8092XS Unspecified transfusion reaction, sequela +T80A0XA Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, initial encounter +T80A0XD Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, subsequent encounter +T80A0XS Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela +T80A10A Non-ABO incompatibility with acute hemolytic transfusion reaction, initial encounter +T80A10D Non-ABO incompatibility with acute hemolytic transfusion reaction, subsequent encounter +T80A10S Non-ABO incompatibility with acute hemolytic transfusion reaction, sequela +T80A11A Non-ABO incompatibility with delayed hemolytic transfusion reaction, initial encounter +T80A11D Non-ABO incompatibility with delayed hemolytic transfusion reaction, subsequent encounter +T80A11S Non-ABO incompatibility with delayed hemolytic transfusion reaction, sequela +T80A19A Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, initial encounter +T80A19D Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter +T80A19S Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, sequela +T80A9XA Other non-ABO incompatibility reaction due to transfusion of blood or blood products, initial encounter +T80A9XD Other non-ABO incompatibility reaction due to transfusion of blood or blood products, subsequent encounter +T80A9XS Other non-ABO incompatibility reaction due to transfusion of blood or blood products, sequela +T8110XA Postprocedural shock unspecified, initial encounter +T8110XD Postprocedural shock unspecified, subsequent encounter +T8110XS Postprocedural shock unspecified, sequela +T8111XA Postprocedural cardiogenic shock, initial encounter +T8111XD Postprocedural cardiogenic shock, subsequent encounter +T8111XS Postprocedural cardiogenic shock, sequela +T8112XA Postprocedural septic shock, initial encounter +T8112XD Postprocedural septic shock, subsequent encounter +T8112XS Postprocedural septic shock, sequela +T8119XA Other postprocedural shock, initial encounter +T8119XD Other postprocedural shock, subsequent encounter +T8119XS Other postprocedural shock, sequela +T8130XA Disruption of wound, unspecified, initial encounter +T8130XD Disruption of wound, unspecified, subsequent encounter +T8130XS Disruption of wound, unspecified, sequela +T8131XA Disruption of external operation (surgical) wound, not elsewhere classified, initial encounter +T8131XD Disruption of external operation (surgical) wound, not elsewhere classified, subsequent encounter +T8131XS Disruption of external operation (surgical) wound, not elsewhere classified, sequela +T8132XA Disruption of internal operation (surgical) wound, not elsewhere classified, initial encounter +T8132XD Disruption of internal operation (surgical) wound, not elsewhere classified, subsequent encounter +T8132XS Disruption of internal operation (surgical) wound, not elsewhere classified, sequela +T8133XA Disruption of traumatic injury wound repair, initial encounter +T8133XD Disruption of traumatic injury wound repair, subsequent encounter +T8133XS Disruption of traumatic injury wound repair, sequela +T8140XA Infection following a procedure, unspecified, initial encounter +T8140XD Infection following a procedure, unspecified, subsequent encounter +T8140XS Infection following a procedure, unspecified, sequela +T8141XA Infection following a procedure, superficial incisional surgical site, initial encounter +T8141XD Infection following a procedure, superficial incisional surgical site, subsequent encounter +T8141XS Infection following a procedure, superficial incisional surgical site, sequela +T8142XA Infection following a procedure, deep incisional surgical site, initial encounter +T8142XD Infection following a procedure, deep incisional surgical site, subsequent encounter +T8142XS Infection following a procedure, deep incisional surgical site, sequela +T8143XA Infection following a procedure, organ and space surgical site, initial encounter +T8143XD Infection following a procedure, organ and space surgical site, subsequent encounter +T8143XS Infection following a procedure, organ and space surgical site, sequela +T8144XA Sepsis following a procedure, initial encounter +T8144XD Sepsis following a procedure, subsequent encounter +T8144XS Sepsis following a procedure, sequela +T8149XA Infection following a procedure, other surgical site, initial encounter +T8149XD Infection following a procedure, other surgical site, subsequent encounter +T8149XS Infection following a procedure, other surgical site, sequela +T814XXA Infection following a procedure, initial encounter +T814XXD Infection following a procedure, subsequent encounter +T814XXS Infection following a procedure, sequela +T81500A Unspecified complication of foreign body accidentally left in body following surgical operation, initial encounter +T81500D Unspecified complication of foreign body accidentally left in body following surgical operation, subsequent encounter +T81500S Unspecified complication of foreign body accidentally left in body following surgical operation, sequela +T81501A Unspecified complication of foreign body accidentally left in body following infusion or transfusion, initial encounter +T81501D Unspecified complication of foreign body accidentally left in body following infusion or transfusion, subsequent encounter +T81501S Unspecified complication of foreign body accidentally left in body following infusion or transfusion, sequela +T81502A Unspecified complication of foreign body accidentally left in body following kidney dialysis, initial encounter +T81502D Unspecified complication of foreign body accidentally left in body following kidney dialysis, subsequent encounter +T81502S Unspecified complication of foreign body accidentally left in body following kidney dialysis, sequela +T81503A Unspecified complication of foreign body accidentally left in body following injection or immunization, initial encounter +T81503D Unspecified complication of foreign body accidentally left in body following injection or immunization, subsequent encounter +T81503S Unspecified complication of foreign body accidentally left in body following injection or immunization, sequela +T81504A Unspecified complication of foreign body accidentally left in body following endoscopic examination, initial encounter +T81504D Unspecified complication of foreign body accidentally left in body following endoscopic examination, subsequent encounter +T81504S Unspecified complication of foreign body accidentally left in body following endoscopic examination, sequela +T81505A Unspecified complication of foreign body accidentally left in body following heart catheterization, initial encounter +T81505D Unspecified complication of foreign body accidentally left in body following heart catheterization, subsequent encounter +T81505S Unspecified complication of foreign body accidentally left in body following heart catheterization, sequela +T81506A Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter +T81506D Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter +T81506S Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela +T81507A Unspecified complication of foreign body accidentally left in body following removal of catheter or packing, initial encounter +T81507D Unspecified complication of foreign body accidentally left in body following removal of catheter or packing, subsequent encounter +T81507S Unspecified complication of foreign body accidentally left in body following removal of catheter or packing, sequela +T81508A Unspecified complication of foreign body accidentally left in body following other procedure, initial encounter +T81508D Unspecified complication of foreign body accidentally left in body following other procedure, subsequent encounter +T81508S Unspecified complication of foreign body accidentally left in body following other procedure, sequela +T81509A Unspecified complication of foreign body accidentally left in body following unspecified procedure, initial encounter +T81509D Unspecified complication of foreign body accidentally left in body following unspecified procedure, subsequent encounter +T81509S Unspecified complication of foreign body accidentally left in body following unspecified procedure, sequela +T81510A Adhesions due to foreign body accidentally left in body following surgical operation, initial encounter +T81510D Adhesions due to foreign body accidentally left in body following surgical operation, subsequent encounter +T81510S Adhesions due to foreign body accidentally left in body following surgical operation, sequela +T81511A Adhesions due to foreign body accidentally left in body following infusion or transfusion, initial encounter +T81511D Adhesions due to foreign body accidentally left in body following infusion or transfusion, subsequent encounter +T81511S Adhesions due to foreign body accidentally left in body following infusion or transfusion, sequela +T81512A Adhesions due to foreign body accidentally left in body following kidney dialysis, initial encounter +T81512D Adhesions due to foreign body accidentally left in body following kidney dialysis, subsequent encounter +T81512S Adhesions due to foreign body accidentally left in body following kidney dialysis, sequela +T81513A Adhesions due to foreign body accidentally left in body following injection or immunization, initial encounter +T81513D Adhesions due to foreign body accidentally left in body following injection or immunization, subsequent encounter +T81513S Adhesions due to foreign body accidentally left in body following injection or immunization, sequela +T81514A Adhesions due to foreign body accidentally left in body following endoscopic examination, initial encounter +T81514D Adhesions due to foreign body accidentally left in body following endoscopic examination, subsequent encounter +T81514S Adhesions due to foreign body accidentally left in body following endoscopic examination, sequela +T81515A Adhesions due to foreign body accidentally left in body following heart catheterization, initial encounter +T81515D Adhesions due to foreign body accidentally left in body following heart catheterization, subsequent encounter +T81515S Adhesions due to foreign body accidentally left in body following heart catheterization, sequela +T81516A Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter +T81516D Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter +T81516S Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela +T81517A Adhesions due to foreign body accidentally left in body following removal of catheter or packing, initial encounter +T81517D Adhesions due to foreign body accidentally left in body following removal of catheter or packing, subsequent encounter +T81517S Adhesions due to foreign body accidentally left in body following removal of catheter or packing, sequela +T81518A Adhesions due to foreign body accidentally left in body following other procedure, initial encounter +T81518D Adhesions due to foreign body accidentally left in body following other procedure, subsequent encounter +T81518S Adhesions due to foreign body accidentally left in body following other procedure, sequela +T81519A Adhesions due to foreign body accidentally left in body following unspecified procedure, initial encounter +T81519D Adhesions due to foreign body accidentally left in body following unspecified procedure, subsequent encounter +T81519S Adhesions due to foreign body accidentally left in body following unspecified procedure, sequela +T81520A Obstruction due to foreign body accidentally left in body following surgical operation, initial encounter +T81520D Obstruction due to foreign body accidentally left in body following surgical operation, subsequent encounter +T81520S Obstruction due to foreign body accidentally left in body following surgical operation, sequela +T81521A Obstruction due to foreign body accidentally left in body following infusion or transfusion, initial encounter +T81521D Obstruction due to foreign body accidentally left in body following infusion or transfusion, subsequent encounter +T81521S Obstruction due to foreign body accidentally left in body following infusion or transfusion, sequela +T81522A Obstruction due to foreign body accidentally left in body following kidney dialysis, initial encounter +T81522D Obstruction due to foreign body accidentally left in body following kidney dialysis, subsequent encounter +T81522S Obstruction due to foreign body accidentally left in body following kidney dialysis, sequela +T81523A Obstruction due to foreign body accidentally left in body following injection or immunization, initial encounter +T81523D Obstruction due to foreign body accidentally left in body following injection or immunization, subsequent encounter +T81523S Obstruction due to foreign body accidentally left in body following injection or immunization, sequela +T81524A Obstruction due to foreign body accidentally left in body following endoscopic examination, initial encounter +T81524D Obstruction due to foreign body accidentally left in body following endoscopic examination, subsequent encounter +T81524S Obstruction due to foreign body accidentally left in body following endoscopic examination, sequela +T81525A Obstruction due to foreign body accidentally left in body following heart catheterization, initial encounter +T81525D Obstruction due to foreign body accidentally left in body following heart catheterization, subsequent encounter +T81525S Obstruction due to foreign body accidentally left in body following heart catheterization, sequela +T81526A Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter +T81526D Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter +T81526S Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela +T81527A Obstruction due to foreign body accidentally left in body following removal of catheter or packing, initial encounter +T81527D Obstruction due to foreign body accidentally left in body following removal of catheter or packing, subsequent encounter +T81527S Obstruction due to foreign body accidentally left in body following removal of catheter or packing, sequela +T81528A Obstruction due to foreign body accidentally left in body following other procedure, initial encounter +T81528D Obstruction due to foreign body accidentally left in body following other procedure, subsequent encounter +T81528S Obstruction due to foreign body accidentally left in body following other procedure, sequela +T81529A Obstruction due to foreign body accidentally left in body following unspecified procedure, initial encounter +T81529D Obstruction due to foreign body accidentally left in body following unspecified procedure, subsequent encounter +T81529S Obstruction due to foreign body accidentally left in body following unspecified procedure, sequela +T81530A Perforation due to foreign body accidentally left in body following surgical operation, initial encounter +T81530D Perforation due to foreign body accidentally left in body following surgical operation, subsequent encounter +T81530S Perforation due to foreign body accidentally left in body following surgical operation, sequela +T81531A Perforation due to foreign body accidentally left in body following infusion or transfusion, initial encounter +T81531D Perforation due to foreign body accidentally left in body following infusion or transfusion, subsequent encounter +T81531S Perforation due to foreign body accidentally left in body following infusion or transfusion, sequela +T81532A Perforation due to foreign body accidentally left in body following kidney dialysis, initial encounter +T81532D Perforation due to foreign body accidentally left in body following kidney dialysis, subsequent encounter +T81532S Perforation due to foreign body accidentally left in body following kidney dialysis, sequela +T81533A Perforation due to foreign body accidentally left in body following injection or immunization, initial encounter +T81533D Perforation due to foreign body accidentally left in body following injection or immunization, subsequent encounter +T81533S Perforation due to foreign body accidentally left in body following injection or immunization, sequela +T81534A Perforation due to foreign body accidentally left in body following endoscopic examination, initial encounter +T81534D Perforation due to foreign body accidentally left in body following endoscopic examination, subsequent encounter +T81534S Perforation due to foreign body accidentally left in body following endoscopic examination, sequela +T81535A Perforation due to foreign body accidentally left in body following heart catheterization, initial encounter +T81535D Perforation due to foreign body accidentally left in body following heart catheterization, subsequent encounter +T81535S Perforation due to foreign body accidentally left in body following heart catheterization, sequela +T81536A Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter +T81536D Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter +T81536S Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela +T81537A Perforation due to foreign body accidentally left in body following removal of catheter or packing, initial encounter +T81537D Perforation due to foreign body accidentally left in body following removal of catheter or packing, subsequent encounter +T81537S Perforation due to foreign body accidentally left in body following removal of catheter or packing, sequela +T81538A Perforation due to foreign body accidentally left in body following other procedure, initial encounter +T81538D Perforation due to foreign body accidentally left in body following other procedure, subsequent encounter +T81538S Perforation due to foreign body accidentally left in body following other procedure, sequela +T81539A Perforation due to foreign body accidentally left in body following unspecified procedure, initial encounter +T81539D Perforation due to foreign body accidentally left in body following unspecified procedure, subsequent encounter +T81539S Perforation due to foreign body accidentally left in body following unspecified procedure, sequela +T81590A Other complications of foreign body accidentally left in body following surgical operation, initial encounter +T81590D Other complications of foreign body accidentally left in body following surgical operation, subsequent encounter +T81590S Other complications of foreign body accidentally left in body following surgical operation, sequela +T81591A Other complications of foreign body accidentally left in body following infusion or transfusion, initial encounter +T81591D Other complications of foreign body accidentally left in body following infusion or transfusion, subsequent encounter +T81591S Other complications of foreign body accidentally left in body following infusion or transfusion, sequela +T81592A Other complications of foreign body accidentally left in body following kidney dialysis, initial encounter +T81592D Other complications of foreign body accidentally left in body following kidney dialysis, subsequent encounter +T81592S Other complications of foreign body accidentally left in body following kidney dialysis, sequela +T81593A Other complications of foreign body accidentally left in body following injection or immunization, initial encounter +T81593D Other complications of foreign body accidentally left in body following injection or immunization, subsequent encounter +T81593S Other complications of foreign body accidentally left in body following injection or immunization, sequela +T81594A Other complications of foreign body accidentally left in body following endoscopic examination, initial encounter +T81594D Other complications of foreign body accidentally left in body following endoscopic examination, subsequent encounter +T81594S Other complications of foreign body accidentally left in body following endoscopic examination, sequela +T81595A Other complications of foreign body accidentally left in body following heart catheterization, initial encounter +T81595D Other complications of foreign body accidentally left in body following heart catheterization, subsequent encounter +T81595S Other complications of foreign body accidentally left in body following heart catheterization, sequela +T81596A Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter +T81596D Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter +T81596S Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela +T81597A Other complications of foreign body accidentally left in body following removal of catheter or packing, initial encounter +T81597D Other complications of foreign body accidentally left in body following removal of catheter or packing, subsequent encounter +T81597S Other complications of foreign body accidentally left in body following removal of catheter or packing, sequela +T81598A Other complications of foreign body accidentally left in body following other procedure, initial encounter +T81598D Other complications of foreign body accidentally left in body following other procedure, subsequent encounter +T81598S Other complications of foreign body accidentally left in body following other procedure, sequela +T81599A Other complications of foreign body accidentally left in body following unspecified procedure, initial encounter +T81599D Other complications of foreign body accidentally left in body following unspecified procedure, subsequent encounter +T81599S Other complications of foreign body accidentally left in body following unspecified procedure, sequela +T8160XA Unspecified acute reaction to foreign substance accidentally left during a procedure, initial encounter +T8160XD Unspecified acute reaction to foreign substance accidentally left during a procedure, subsequent encounter +T8160XS Unspecified acute reaction to foreign substance accidentally left during a procedure, sequela +T8161XA Aseptic peritonitis due to foreign substance accidentally left during a procedure, initial encounter +T8161XD Aseptic peritonitis due to foreign substance accidentally left during a procedure, subsequent encounter +T8161XS Aseptic peritonitis due to foreign substance accidentally left during a procedure, sequela +T8169XA Other acute reaction to foreign substance accidentally left during a procedure, initial encounter +T8169XD Other acute reaction to foreign substance accidentally left during a procedure, subsequent encounter +T8169XS Other acute reaction to foreign substance accidentally left during a procedure, sequela +T81710A Complication of mesenteric artery following a procedure, not elsewhere classified, initial encounter +T81710D Complication of mesenteric artery following a procedure, not elsewhere classified, subsequent encounter +T81710S Complication of mesenteric artery following a procedure, not elsewhere classified, sequela +T81711A Complication of renal artery following a procedure, not elsewhere classified, initial encounter +T81711D Complication of renal artery following a procedure, not elsewhere classified, subsequent encounter +T81711S Complication of renal artery following a procedure, not elsewhere classified, sequela +T81718A Complication of other artery following a procedure, not elsewhere classified, initial encounter +T81718D Complication of other artery following a procedure, not elsewhere classified, subsequent encounter +T81718S Complication of other artery following a procedure, not elsewhere classified, sequela +T81719A Complication of unspecified artery following a procedure, not elsewhere classified, initial encounter +T81719D Complication of unspecified artery following a procedure, not elsewhere classified, subsequent encounter +T81719S Complication of unspecified artery following a procedure, not elsewhere classified, sequela +T8172XA Complication of vein following a procedure, not elsewhere classified, initial encounter +T8172XD Complication of vein following a procedure, not elsewhere classified, subsequent encounter +T8172XS Complication of vein following a procedure, not elsewhere classified, sequela +T8181XA Complication of inhalation therapy, initial encounter +T8181XD Complication of inhalation therapy, subsequent encounter +T8181XS Complication of inhalation therapy, sequela +T8182XA Emphysema (subcutaneous) resulting from a procedure, initial encounter +T8182XD Emphysema (subcutaneous) resulting from a procedure, subsequent encounter +T8182XS Emphysema (subcutaneous) resulting from a procedure, sequela +T8183XA Persistent postprocedural fistula, initial encounter +T8183XD Persistent postprocedural fistula, subsequent encounter +T8183XS Persistent postprocedural fistula, sequela +T8189XA Other complications of procedures, not elsewhere classified, initial encounter +T8189XD Other complications of procedures, not elsewhere classified, subsequent encounter +T8189XS Other complications of procedures, not elsewhere classified, sequela +T819XXA Unspecified complication of procedure, initial encounter +T819XXD Unspecified complication of procedure, subsequent encounter +T819XXS Unspecified complication of procedure, sequela +T8201XA Breakdown (mechanical) of heart valve prosthesis, initial encounter +T8201XD Breakdown (mechanical) of heart valve prosthesis, subsequent encounter +T8201XS Breakdown (mechanical) of heart valve prosthesis, sequela +T8202XA Displacement of heart valve prosthesis, initial encounter +T8202XD Displacement of heart valve prosthesis, subsequent encounter +T8202XS Displacement of heart valve prosthesis, sequela +T8203XA Leakage of heart valve prosthesis, initial encounter +T8203XD Leakage of heart valve prosthesis, subsequent encounter +T8203XS Leakage of heart valve prosthesis, sequela +T8209XA Other mechanical complication of heart valve prosthesis, initial encounter +T8209XD Other mechanical complication of heart valve prosthesis, subsequent encounter +T8209XS Other mechanical complication of heart valve prosthesis, sequela +T82110A Breakdown (mechanical) of cardiac electrode, initial encounter +T82110D Breakdown (mechanical) of cardiac electrode, subsequent encounter +T82110S Breakdown (mechanical) of cardiac electrode, sequela +T82111A Breakdown (mechanical) of cardiac pulse generator (battery), initial encounter +T82111D Breakdown (mechanical) of cardiac pulse generator (battery), subsequent encounter +T82111S Breakdown (mechanical) of cardiac pulse generator (battery), sequela +T82118A Breakdown (mechanical) of other cardiac electronic device, initial encounter +T82118D Breakdown (mechanical) of other cardiac electronic device, subsequent encounter +T82118S Breakdown (mechanical) of other cardiac electronic device, sequela +T82119A Breakdown (mechanical) of unspecified cardiac electronic device, initial encounter +T82119D Breakdown (mechanical) of unspecified cardiac electronic device, subsequent encounter +T82119S Breakdown (mechanical) of unspecified cardiac electronic device, sequela +T82120A Displacement of cardiac electrode, initial encounter +T82120D Displacement of cardiac electrode, subsequent encounter +T82120S Displacement of cardiac electrode, sequela +T82121A Displacement of cardiac pulse generator (battery), initial encounter +T82121D Displacement of cardiac pulse generator (battery), subsequent encounter +T82121S Displacement of cardiac pulse generator (battery), sequela +T82128A Displacement of other cardiac electronic device, initial encounter +T82128D Displacement of other cardiac electronic device, subsequent encounter +T82128S Displacement of other cardiac electronic device, sequela +T82129A Displacement of unspecified cardiac electronic device, initial encounter +T82129D Displacement of unspecified cardiac electronic device, subsequent encounter +T82129S Displacement of unspecified cardiac electronic device, sequela +T82190A Other mechanical complication of cardiac electrode, initial encounter +T82190D Other mechanical complication of cardiac electrode, subsequent encounter +T82190S Other mechanical complication of cardiac electrode, sequela +T82191A Other mechanical complication of cardiac pulse generator (battery), initial encounter +T82191D Other mechanical complication of cardiac pulse generator (battery), subsequent encounter +T82191S Other mechanical complication of cardiac pulse generator (battery), sequela +T82198A Other mechanical complication of other cardiac electronic device, initial encounter +T82198D Other mechanical complication of other cardiac electronic device, subsequent encounter +T82198S Other mechanical complication of other cardiac electronic device, sequela +T82199A Other mechanical complication of unspecified cardiac device, initial encounter +T82199D Other mechanical complication of unspecified cardiac device, subsequent encounter +T82199S Other mechanical complication of unspecified cardiac device, sequela +T82211A Breakdown (mechanical) of coronary artery bypass graft, initial encounter +T82211D Breakdown (mechanical) of coronary artery bypass graft, subsequent encounter +T82211S Breakdown (mechanical) of coronary artery bypass graft, sequela +T82212A Displacement of coronary artery bypass graft, initial encounter +T82212D Displacement of coronary artery bypass graft, subsequent encounter +T82212S Displacement of coronary artery bypass graft, sequela +T82213A Leakage of coronary artery bypass graft, initial encounter +T82213D Leakage of coronary artery bypass graft, subsequent encounter +T82213S Leakage of coronary artery bypass graft, sequela +T82218A Other mechanical complication of coronary artery bypass graft, initial encounter +T82218D Other mechanical complication of coronary artery bypass graft, subsequent encounter +T82218S Other mechanical complication of coronary artery bypass graft, sequela +T82221A Breakdown (mechanical) of biological heart valve graft, initial encounter +T82221D Breakdown (mechanical) of biological heart valve graft, subsequent encounter +T82221S Breakdown (mechanical) of biological heart valve graft, sequela +T82222A Displacement of biological heart valve graft, initial encounter +T82222D Displacement of biological heart valve graft, subsequent encounter +T82222S Displacement of biological heart valve graft, sequela +T82223A Leakage of biological heart valve graft, initial encounter +T82223D Leakage of biological heart valve graft, subsequent encounter +T82223S Leakage of biological heart valve graft, sequela +T82228A Other mechanical complication of biological heart valve graft, initial encounter +T82228D Other mechanical complication of biological heart valve graft, subsequent encounter +T82228S Other mechanical complication of biological heart valve graft, sequela +T82310A Breakdown (mechanical) of aortic (bifurcation) graft (replacement), initial encounter +T82310D Breakdown (mechanical) of aortic (bifurcation) graft (replacement), subsequent encounter +T82310S Breakdown (mechanical) of aortic (bifurcation) graft (replacement), sequela +T82311A Breakdown (mechanical) of carotid arterial graft (bypass), initial encounter +T82311D Breakdown (mechanical) of carotid arterial graft (bypass), subsequent encounter +T82311S Breakdown (mechanical) of carotid arterial graft (bypass), sequela +T82312A Breakdown (mechanical) of femoral arterial graft (bypass), initial encounter +T82312D Breakdown (mechanical) of femoral arterial graft (bypass), subsequent encounter +T82312S Breakdown (mechanical) of femoral arterial graft (bypass), sequela +T82318A Breakdown (mechanical) of other vascular grafts, initial encounter +T82318D Breakdown (mechanical) of other vascular grafts, subsequent encounter +T82318S Breakdown (mechanical) of other vascular grafts, sequela +T82319A Breakdown (mechanical) of unspecified vascular grafts, initial encounter +T82319D Breakdown (mechanical) of unspecified vascular grafts, subsequent encounter +T82319S Breakdown (mechanical) of unspecified vascular grafts, sequela +T82320A Displacement of aortic (bifurcation) graft (replacement), initial encounter +T82320D Displacement of aortic (bifurcation) graft (replacement), subsequent encounter +T82320S Displacement of aortic (bifurcation) graft (replacement), sequela +T82321A Displacement of carotid arterial graft (bypass), initial encounter +T82321D Displacement of carotid arterial graft (bypass), subsequent encounter +T82321S Displacement of carotid arterial graft (bypass), sequela +T82322A Displacement of femoral arterial graft (bypass), initial encounter +T82322D Displacement of femoral arterial graft (bypass), subsequent encounter +T82322S Displacement of femoral arterial graft (bypass), sequela +T82328A Displacement of other vascular grafts, initial encounter +T82328D Displacement of other vascular grafts, subsequent encounter +T82328S Displacement of other vascular grafts, sequela +T82329A Displacement of unspecified vascular grafts, initial encounter +T82329D Displacement of unspecified vascular grafts, subsequent encounter +T82329S Displacement of unspecified vascular grafts, sequela +T82330A Leakage of aortic (bifurcation) graft (replacement), initial encounter +T82330D Leakage of aortic (bifurcation) graft (replacement), subsequent encounter +T82330S Leakage of aortic (bifurcation) graft (replacement), sequela +T82331A Leakage of carotid arterial graft (bypass), initial encounter +T82331D Leakage of carotid arterial graft (bypass), subsequent encounter +T82331S Leakage of carotid arterial graft (bypass), sequela +T82332A Leakage of femoral arterial graft (bypass), initial encounter +T82332D Leakage of femoral arterial graft (bypass), subsequent encounter +T82332S Leakage of femoral arterial graft (bypass), sequela +T82338A Leakage of other vascular grafts, initial encounter +T82338D Leakage of other vascular grafts, subsequent encounter +T82338S Leakage of other vascular grafts, sequela +T82339A Leakage of unspecified vascular graft, initial encounter +T82339D Leakage of unspecified vascular graft, subsequent encounter +T82339S Leakage of unspecified vascular graft, sequela +T82390A Other mechanical complication of aortic (bifurcation) graft (replacement), initial encounter +T82390D Other mechanical complication of aortic (bifurcation) graft (replacement), subsequent encounter +T82390S Other mechanical complication of aortic (bifurcation) graft (replacement), sequela +T82391A Other mechanical complication of carotid arterial graft (bypass), initial encounter +T82391D Other mechanical complication of carotid arterial graft (bypass), subsequent encounter +T82391S Other mechanical complication of carotid arterial graft (bypass), sequela +T82392A Other mechanical complication of femoral arterial graft (bypass), initial encounter +T82392D Other mechanical complication of femoral arterial graft (bypass), subsequent encounter +T82392S Other mechanical complication of femoral arterial graft (bypass), sequela +T82398A Other mechanical complication of other vascular grafts, initial encounter +T82398D Other mechanical complication of other vascular grafts, subsequent encounter +T82398S Other mechanical complication of other vascular grafts, sequela +T82399A Other mechanical complication of unspecified vascular grafts, initial encounter +T82399D Other mechanical complication of unspecified vascular grafts, subsequent encounter +T82399S Other mechanical complication of unspecified vascular grafts, sequela +T8241XA Breakdown (mechanical) of vascular dialysis catheter, initial encounter +T8241XD Breakdown (mechanical) of vascular dialysis catheter, subsequent encounter +T8241XS Breakdown (mechanical) of vascular dialysis catheter, sequela +T8242XA Displacement of vascular dialysis catheter, initial encounter +T8242XD Displacement of vascular dialysis catheter, subsequent encounter +T8242XS Displacement of vascular dialysis catheter, sequela +T8243XA Leakage of vascular dialysis catheter, initial encounter +T8243XD Leakage of vascular dialysis catheter, subsequent encounter +T8243XS Leakage of vascular dialysis catheter, sequela +T8249XA Other complication of vascular dialysis catheter, initial encounter +T8249XD Other complication of vascular dialysis catheter, subsequent encounter +T8249XS Other complication of vascular dialysis catheter, sequela +T82510A Breakdown (mechanical) of surgically created arteriovenous fistula, initial encounter +T82510D Breakdown (mechanical) of surgically created arteriovenous fistula, subsequent encounter +T82510S Breakdown (mechanical) of surgically created arteriovenous fistula, sequela +T82511A Breakdown (mechanical) of surgically created arteriovenous shunt, initial encounter +T82511D Breakdown (mechanical) of surgically created arteriovenous shunt, subsequent encounter +T82511S Breakdown (mechanical) of surgically created arteriovenous shunt, sequela +T82512A Breakdown (mechanical) of artificial heart, initial encounter +T82512D Breakdown (mechanical) of artificial heart, subsequent encounter +T82512S Breakdown (mechanical) of artificial heart, sequela +T82513A Breakdown (mechanical) of balloon (counterpulsation) device, initial encounter +T82513D Breakdown (mechanical) of balloon (counterpulsation) device, subsequent encounter +T82513S Breakdown (mechanical) of balloon (counterpulsation) device, sequela +T82514A Breakdown (mechanical) of infusion catheter, initial encounter +T82514D Breakdown (mechanical) of infusion catheter, subsequent encounter +T82514S Breakdown (mechanical) of infusion catheter, sequela +T82515A Breakdown (mechanical) of umbrella device, initial encounter +T82515D Breakdown (mechanical) of umbrella device, subsequent encounter +T82515S Breakdown (mechanical) of umbrella device, sequela +T82518A Breakdown (mechanical) of other cardiac and vascular devices and implants, initial encounter +T82518D Breakdown (mechanical) of other cardiac and vascular devices and implants, subsequent encounter +T82518S Breakdown (mechanical) of other cardiac and vascular devices and implants, sequela +T82519A Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, initial encounter +T82519D Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, subsequent encounter +T82519S Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, sequela +T82520A Displacement of surgically created arteriovenous fistula, initial encounter +T82520D Displacement of surgically created arteriovenous fistula, subsequent encounter +T82520S Displacement of surgically created arteriovenous fistula, sequela +T82521A Displacement of surgically created arteriovenous shunt, initial encounter +T82521D Displacement of surgically created arteriovenous shunt, subsequent encounter +T82521S Displacement of surgically created arteriovenous shunt, sequela +T82522A Displacement of artificial heart, initial encounter +T82522D Displacement of artificial heart, subsequent encounter +T82522S Displacement of artificial heart, sequela +T82523A Displacement of balloon (counterpulsation) device, initial encounter +T82523D Displacement of balloon (counterpulsation) device, subsequent encounter +T82523S Displacement of balloon (counterpulsation) device, sequela +T82524A Displacement of infusion catheter, initial encounter +T82524D Displacement of infusion catheter, subsequent encounter +T82524S Displacement of infusion catheter, sequela +T82525A Displacement of umbrella device, initial encounter +T82525D Displacement of umbrella device, subsequent encounter +T82525S Displacement of umbrella device, sequela +T82528A Displacement of other cardiac and vascular devices and implants, initial encounter +T82528D Displacement of other cardiac and vascular devices and implants, subsequent encounter +T82528S Displacement of other cardiac and vascular devices and implants, sequela +T82529A Displacement of unspecified cardiac and vascular devices and implants, initial encounter +T82529D Displacement of unspecified cardiac and vascular devices and implants, subsequent encounter +T82529S Displacement of unspecified cardiac and vascular devices and implants, sequela +T82530A Leakage of surgically created arteriovenous fistula, initial encounter +T82530D Leakage of surgically created arteriovenous fistula, subsequent encounter +T82530S Leakage of surgically created arteriovenous fistula, sequela +T82531A Leakage of surgically created arteriovenous shunt, initial encounter +T82531D Leakage of surgically created arteriovenous shunt, subsequent encounter +T82531S Leakage of surgically created arteriovenous shunt, sequela +T82532A Leakage of artificial heart, initial encounter +T82532D Leakage of artificial heart, subsequent encounter +T82532S Leakage of artificial heart, sequela +T82533A Leakage of balloon (counterpulsation) device, initial encounter +T82533D Leakage of balloon (counterpulsation) device, subsequent encounter +T82533S Leakage of balloon (counterpulsation) device, sequela +T82534A Leakage of infusion catheter, initial encounter +T82534D Leakage of infusion catheter, subsequent encounter +T82534S Leakage of infusion catheter, sequela +T82535A Leakage of umbrella device, initial encounter +T82535D Leakage of umbrella device, subsequent encounter +T82535S Leakage of umbrella device, sequela +T82538A Leakage of other cardiac and vascular devices and implants, initial encounter +T82538D Leakage of other cardiac and vascular devices and implants, subsequent encounter +T82538S Leakage of other cardiac and vascular devices and implants, sequela +T82539A Leakage of unspecified cardiac and vascular devices and implants, initial encounter +T82539D Leakage of unspecified cardiac and vascular devices and implants, subsequent encounter +T82539S Leakage of unspecified cardiac and vascular devices and implants, sequela +T82590A Other mechanical complication of surgically created arteriovenous fistula, initial encounter +T82590D Other mechanical complication of surgically created arteriovenous fistula, subsequent encounter +T82590S Other mechanical complication of surgically created arteriovenous fistula, sequela +T82591A Other mechanical complication of surgically created arteriovenous shunt, initial encounter +T82591D Other mechanical complication of surgically created arteriovenous shunt, subsequent encounter +T82591S Other mechanical complication of surgically created arteriovenous shunt, sequela +T82592A Other mechanical complication of artificial heart, initial encounter +T82592D Other mechanical complication of artificial heart, subsequent encounter +T82592S Other mechanical complication of artificial heart, sequela +T82593A Other mechanical complication of balloon (counterpulsation) device, initial encounter +T82593D Other mechanical complication of balloon (counterpulsation) device, subsequent encounter +T82593S Other mechanical complication of balloon (counterpulsation) device, sequela +T82594A Other mechanical complication of infusion catheter, initial encounter +T82594D Other mechanical complication of infusion catheter, subsequent encounter +T82594S Other mechanical complication of infusion catheter, sequela +T82595A Other mechanical complication of umbrella device, initial encounter +T82595D Other mechanical complication of umbrella device, subsequent encounter +T82595S Other mechanical complication of umbrella device, sequela +T82598A Other mechanical complication of other cardiac and vascular devices and implants, initial encounter +T82598D Other mechanical complication of other cardiac and vascular devices and implants, subsequent encounter +T82598S Other mechanical complication of other cardiac and vascular devices and implants, sequela +T82599A Other mechanical complication of unspecified cardiac and vascular devices and implants, initial encounter +T82599D Other mechanical complication of unspecified cardiac and vascular devices and implants, subsequent encounter +T82599S Other mechanical complication of unspecified cardiac and vascular devices and implants, sequela +T826XXA Infection and inflammatory reaction due to cardiac valve prosthesis, initial encounter +T826XXD Infection and inflammatory reaction due to cardiac valve prosthesis, subsequent encounter +T826XXS Infection and inflammatory reaction due to cardiac valve prosthesis, sequela +T827XXA Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts, initial encounter +T827XXD Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts, subsequent encounter +T827XXS Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts, sequela +T82817A Embolism due to cardiac prosthetic devices, implants and grafts, initial encounter +T82817D Embolism due to cardiac prosthetic devices, implants and grafts, subsequent encounter +T82817S Embolism due to cardiac prosthetic devices, implants and grafts, sequela +T82818A Embolism due to vascular prosthetic devices, implants and grafts, initial encounter +T82818D Embolism due to vascular prosthetic devices, implants and grafts, subsequent encounter +T82818S Embolism due to vascular prosthetic devices, implants and grafts, sequela +T82827A Fibrosis due to cardiac prosthetic devices, implants and grafts, initial encounter +T82827D Fibrosis due to cardiac prosthetic devices, implants and grafts, subsequent encounter +T82827S Fibrosis due to cardiac prosthetic devices, implants and grafts, sequela +T82828A Fibrosis due to vascular prosthetic devices, implants and grafts, initial encounter +T82828D Fibrosis due to vascular prosthetic devices, implants and grafts, subsequent encounter +T82828S Fibrosis due to vascular prosthetic devices, implants and grafts, sequela +T82837A Hemorrhage due to cardiac prosthetic devices, implants and grafts, initial encounter +T82837D Hemorrhage due to cardiac prosthetic devices, implants and grafts, subsequent encounter +T82837S Hemorrhage due to cardiac prosthetic devices, implants and grafts, sequela +T82838A Hemorrhage due to vascular prosthetic devices, implants and grafts, initial encounter +T82838D Hemorrhage due to vascular prosthetic devices, implants and grafts, subsequent encounter +T82838S Hemorrhage due to vascular prosthetic devices, implants and grafts, sequela +T82847A Pain due to cardiac prosthetic devices, implants and grafts, initial encounter +T82847D Pain due to cardiac prosthetic devices, implants and grafts, subsequent encounter +T82847S Pain due to cardiac prosthetic devices, implants and grafts, sequela +T82848A Pain due to vascular prosthetic devices, implants and grafts, initial encounter +T82848D Pain due to vascular prosthetic devices, implants and grafts, subsequent encounter +T82848S Pain due to vascular prosthetic devices, implants and grafts, sequela +T82855A Stenosis of coronary artery stent, initial encounter +T82855D Stenosis of coronary artery stent, subsequent encounter +T82855S Stenosis of coronary artery stent, sequela +T82856A Stenosis of peripheral vascular stent, initial encounter +T82856D Stenosis of peripheral vascular stent, subsequent encounter +T82856S Stenosis of peripheral vascular stent, sequela +T82857A Stenosis of other cardiac prosthetic devices, implants and grafts, initial encounter +T82857D Stenosis of other cardiac prosthetic devices, implants and grafts, subsequent encounter +T82857S Stenosis of other cardiac prosthetic devices, implants and grafts, sequela +T82858A Stenosis of other vascular prosthetic devices, implants and grafts, initial encounter +T82858D Stenosis of other vascular prosthetic devices, implants and grafts, subsequent encounter +T82858S Stenosis of other vascular prosthetic devices, implants and grafts, sequela +T82867A Thrombosis due to cardiac prosthetic devices, implants and grafts, initial encounter +T82867D Thrombosis due to cardiac prosthetic devices, implants and grafts, subsequent encounter +T82867S Thrombosis due to cardiac prosthetic devices, implants and grafts, sequela +T82868A Thrombosis due to vascular prosthetic devices, implants and grafts, initial encounter +T82868D Thrombosis due to vascular prosthetic devices, implants and grafts, subsequent encounter +T82868S Thrombosis due to vascular prosthetic devices, implants and grafts, sequela +T82897A Other specified complication of cardiac prosthetic devices, implants and grafts, initial encounter +T82897D Other specified complication of cardiac prosthetic devices, implants and grafts, subsequent encounter +T82897S Other specified complication of cardiac prosthetic devices, implants and grafts, sequela +T82898A Other specified complication of vascular prosthetic devices, implants and grafts, initial encounter +T82898D Other specified complication of vascular prosthetic devices, implants and grafts, subsequent encounter +T82898S Other specified complication of vascular prosthetic devices, implants and grafts, sequela +T829XXA Unspecified complication of cardiac and vascular prosthetic device, implant and graft, initial encounter +T829XXD Unspecified complication of cardiac and vascular prosthetic device, implant and graft, subsequent encounter +T829XXS Unspecified complication of cardiac and vascular prosthetic device, implant and graft, sequela +T83010A Breakdown (mechanical) of cystostomy catheter, initial encounter +T83010D Breakdown (mechanical) of cystostomy catheter, subsequent encounter +T83010S Breakdown (mechanical) of cystostomy catheter, sequela +T83011A Breakdown (mechanical) of indwelling urethral catheter, initial encounter +T83011D Breakdown (mechanical) of indwelling urethral catheter, subsequent encounter +T83011S Breakdown (mechanical) of indwelling urethral catheter, sequela +T83012A Breakdown (mechanical) of nephrostomy catheter, initial encounter +T83012D Breakdown (mechanical) of nephrostomy catheter, subsequent encounter +T83012S Breakdown (mechanical) of nephrostomy catheter, sequela +T83018A Breakdown (mechanical) of other urinary catheter, initial encounter +T83018D Breakdown (mechanical) of other urinary catheter, subsequent encounter +T83018S Breakdown (mechanical) of other indwelling urethral catheter, sequela +T83020A Displacement of cystostomy catheter, initial encounter +T83020D Displacement of cystostomy catheter, subsequent encounter +T83020S Displacement of cystostomy catheter, sequela +T83021A Displacement of indwelling urethral catheter, initial encounter +T83021D Displacement of indwelling urethral catheter, subsequent encounter +T83021S Displacement of indwelling urethral catheter, sequela +T83022A Displacement of nephrostomy catheter, initial encounter +T83022D Displacement of nephrostomy catheter, subsequent encounter +T83022S Displacement of nephrostomy catheter, sequela +T83028A Displacement of other urinary catheter, initial encounter +T83028D Displacement of other urinary catheter, subsequent encounter +T83028S Displacement of other urinary catheter, sequela +T83030A Leakage of cystostomy catheter, initial encounter +T83030D Leakage of cystostomy catheter, subsequent encounter +T83030S Leakage of cystostomy catheter, sequela +T83031A Leakage of indwelling urethral catheter, initial encounter +T83031D Leakage of indwelling urethral catheter, subsequent encounter +T83031S Leakage of indwelling urethral catheter, sequela +T83032A Leakage of nephrostomy catheter, initial encounter +T83032D Leakage of nephrostomy catheter, subsequent encounter +T83032S Leakage of nephrostomy catheter, sequela +T83038A Leakage of other urinary catheter, initial encounter +T83038D Leakage of other urinary catheter, subsequent encounter +T83038S Leakage of other urinary catheter, sequela +T83090A Other mechanical complication of cystostomy catheter, initial encounter +T83090D Other mechanical complication of cystostomy catheter, subsequent encounter +T83090S Other mechanical complication of cystostomy catheter, sequela +T83091A Other mechanical complication of indwelling urethral catheter, initial encounter +T83091D Other mechanical complication of indwelling urethral catheter, subsequent encounter +T83091S Other mechanical complication of indwelling urethral catheter, sequela +T83092A Other mechanical complication of nephrostomy catheter, initial encounter +T83092D Other mechanical complication of nephrostomy catheter, subsequent encounter +T83092S Other mechanical complication of nephrostomy catheter, sequela +T83098A Other mechanical complication of other urinary catheter, initial encounter +T83098D Other mechanical complication of other urinary catheter, subsequent encounter +T83098S Other mechanical complication of other urinary catheter, sequela +T83110A Breakdown (mechanical) of urinary electronic stimulator device, initial encounter +T83110D Breakdown (mechanical) of urinary electronic stimulator device, subsequent encounter +T83110S Breakdown (mechanical) of urinary electronic stimulator device, sequela +T83111A Breakdown (mechanical) of implanted urinary sphincter, initial encounter +T83111D Breakdown (mechanical) of implanted urinary sphincter, subsequent encounter +T83111S Breakdown (mechanical) of implanted urinary sphincter, sequela +T83112A Breakdown (mechanical) of indwelling ureteral stent, initial encounter +T83112D Breakdown (mechanical) of indwelling ureteral stent, subsequent encounter +T83112S Breakdown (mechanical) of indwelling ureteral stent, sequela +T83113A Breakdown (mechanical) of other urinary stents, initial encounter +T83113D Breakdown (mechanical) of other urinary stents, subsequent encounter +T83113S Breakdown (mechanical) of other urinary stents, sequela +T83118A Breakdown (mechanical) of other urinary devices and implants, initial encounter +T83118D Breakdown (mechanical) of other urinary devices and implants, subsequent encounter +T83118S Breakdown (mechanical) of other urinary devices and implants, sequela +T83120A Displacement of urinary electronic stimulator device, initial encounter +T83120D Displacement of urinary electronic stimulator device, subsequent encounter +T83120S Displacement of urinary electronic stimulator device, sequela +T83121A Displacement of implanted urinary sphincter, initial encounter +T83121D Displacement of implanted urinary sphincter, subsequent encounter +T83121S Displacement of implanted urinary sphincter, sequela +T83122A Displacement of cstent, initial encounter +T83122D Displacement of indwelling ureteral stent, subsequent encounter +T83122S Displacement of indwelling ureteral stent, sequela +T83123A Displacement of other urinary stents, initial encounter +T83123D Displacement of other urinary stents, subsequent encounter +T83123S Displacement of other urinary stents, sequela +T83128A Displacement of other urinary devices and implants, initial encounter +T83128D Displacement of other urinary devices and implants, subsequent encounter +T83128S Displacement of other urinary devices and implants, sequela +T83190A Other mechanical complication of urinary electronic stimulator device, initial encounter +T83190D Other mechanical complication of urinary electronic stimulator device, subsequent encounter +T83190S Other mechanical complication of urinary electronic stimulator device, sequela +T83191A Other mechanical complication of implanted urinary sphincter, initial encounter +T83191D Other mechanical complication of implanted urinary sphincter, subsequent encounter +T83191S Other mechanical complication of implanted urinary sphincter, sequela +T83192A Other mechanical complication of indwelling ureteral stent, initial encounter +T83192D Other mechanical complication of indwelling ureteral stent, subsequent encounter +T83192S Other mechanical complication of indwelling ureteral stent, sequela +T83193A Other mechanical complication of other urinary stent, initial encounter +T83193D Other mechanical complication of other urinary stent, subsequent encounter +T83193S Other mechanical complication of other urinary stent, sequela +T83198A Other mechanical complication of other urinary devices and implants, initial encounter +T83198D Other mechanical complication of other urinary devices and implants, subsequent encounter +T83198S Other mechanical complication of other urinary devices and implants, sequela +T8321XA Breakdown (mechanical) of graft of urinary organ, initial encounter +T8321XD Breakdown (mechanical) of graft of urinary organ, subsequent encounter +T8321XS Breakdown (mechanical) of graft of urinary organ, sequela +T8322XA Displacement of graft of urinary organ, initial encounter +T8322XD Displacement of graft of urinary organ, subsequent encounter +T8322XS Displacement of graft of urinary organ, sequela +T8323XA Leakage of graft of urinary organ, initial encounter +T8323XD Leakage of graft of urinary organ, subsequent encounter +T8323XS Leakage of graft of urinary organ, sequela +T8324XA Erosion of graft of urinary organ, initial encounter +T8324XD Erosion of graft of urinary organ, subsequent encounter +T8324XS Erosion of graft of urinary organ, sequela +T8325XA Exposure of graft of urinary organ, initial encounter +T8325XD Exposure of graft of urinary organ, subsequent encounter +T8325XS Exposure of graft of urinary organ, sequela +T8329XA Other mechanical complication of graft of urinary organ, initial encounter +T8329XD Other mechanical complication of graft of urinary organ, subsequent encounter +T8329XS Other mechanical complication of graft of urinary organ, sequela +T8331XA Breakdown (mechanical) of intrauterine contraceptive device, initial encounter +T8331XD Breakdown (mechanical) of intrauterine contraceptive device, subsequent encounter +T8331XS Breakdown (mechanical) of intrauterine contraceptive device, sequela +T8332XA Displacement of intrauterine contraceptive device, initial encounter +T8332XD Displacement of intrauterine contraceptive device, subsequent encounter +T8332XS Displacement of intrauterine contraceptive device, sequela +T8339XA Other mechanical complication of intrauterine contraceptive device, initial encounter +T8339XD Other mechanical complication of intrauterine contraceptive device, subsequent encounter +T8339XS Other mechanical complication of intrauterine contraceptive device, sequela +T83410A Breakdown (mechanical) of implanted penile prosthesis, initial encounter +T83410D Breakdown (mechanical) of implanted penile prosthesis, subsequent encounter +T83410S Breakdown (mechanical) of implanted penile prosthesis, sequela +T83411A Breakdown (mechanical) of implanted testicular prosthesis, initial encounter +T83411D Breakdown (mechanical) of implanted testicular prosthesis, subsequent encounter +T83411S Breakdown (mechanical) of implanted testicular prosthesis, sequela +T83418A Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract, initial encounter +T83418D Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract, subsequent encounter +T83418S Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract, sequela +T83420A Displacement of implanted penile prosthesis, initial encounter +T83420D Displacement of implanted penile prosthesis, subsequent encounter +T83420S Displacement of implanted penile prosthesis, sequela +T83421A Displacement of implanted testicular prosthesis, initial encounter +T83421D Displacement of implanted testicular prosthesis, subsequent encounter +T83421S Displacement of implanted testicular prosthesis, sequela +T83428A Displacement of other prosthetic devices, implants and grafts of genital tract, initial encounter +T83428D Displacement of other prosthetic devices, implants and grafts of genital tract, subsequent encounter +T83428S Displacement of other prosthetic devices, implants and grafts of genital tract, sequela +T83490A Other mechanical complication of implanted penile prosthesis, initial encounter +T83490D Other mechanical complication of implanted penile prosthesis, subsequent encounter +T83490S Other mechanical complication of implanted penile prosthesis, sequela +T83491A Other mechanical complication of implanted testicular prosthesis, initial encounter +T83491D Other mechanical complication of implanted testicular prosthesis, subsequent encounter +T83491S Other mechanical complication of implanted testicular prosthesis, sequela +T83498A Other mechanical complication of other prosthetic devices, implants and grafts of genital tract, initial encounter +T83498D Other mechanical complication of other prosthetic devices, implants and grafts of genital tract, subsequent encounter +T83498S Other mechanical complication of other prosthetic devices, implants and grafts of genital tract, sequela +T83510A Infection and inflammatory reaction due to cystostomy catheter, initial encounter +T83510D Infection and inflammatory reaction due to cystostomy catheter, subsequent encounter +T83510S Infection and inflammatory reaction due to cystostomy catheter, sequela +T83511A Infection and inflammatory reaction due to indwelling urethral catheter, initial encounter +T83511D Infection and inflammatory reaction due to indwelling urethral catheter, subsequent encounter +T83511S Infection and inflammatory reaction due to indwelling urethral catheter, sequela +T83512A Infection and inflammatory reaction due to nephrostomy catheter, initial encounter +T83512D Infection and inflammatory reaction due to nephrostomy catheter, subsequent encounter +T83512S Infection and inflammatory reaction due to nephrostomy catheter, sequela +T83518A Infection and inflammatory reaction due to other urinary catheter, initial encounter +T83518D Infection and inflammatory reaction due to other urinary catheter, subsequent encounter +T83518S Infection and inflammatory reaction due to other urinary catheter, sequela +T8351XA Infection and inflammatory reaction due to indwelling urinary catheter, initial encounter +T8351XD Infection and inflammatory reaction due to indwelling urinary catheter, subsequent encounter +T8351XS Infection and inflammatory reaction due to indwelling urinary catheter, sequela +T83590A Infection and inflammatory reaction due to implanted urinary neurostimulation device, initial encounter +T83590D Infection and inflammatory reaction due to implanted urinary neurostimulation device, subsequent encounter +T83590S Infection and inflammatory reaction due to implanted urinary neurostimulation device, sequela +T83591A Infection and inflammatory reaction due to implanted urinary sphincter, initial encounter +T83591D Infection and inflammatory reaction due to implanted urinary sphincter, subsequent encounter +T83591S Infection and inflammatory reaction due to implanted urinary sphincter, sequela +T83592A Infection and inflammatory reaction due to indwelling ureteral stent, initial encounter +T83592D Infection and inflammatory reaction due to indwelling ureteral stent, subsequent encounter +T83592S Infection and inflammatory reaction due to indwelling ureteral stent, sequela +T83593A Infection and inflammatory reaction due to other urinary stents, initial encounter +T83593D Infection and inflammatory reaction due to other urinary stents, subsequent encounter +T83593S Infection and inflammatory reaction due to other urinary stents, sequela +T83598A Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system, initial encounter +T83598D Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system, subsequent encounter +T83598S Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system, sequela +T8359XA Infection and inflammatory reaction due to prosthetic device, implant and graft in urinary system, initial encounter +T8359XD Infection and inflammatory reaction due to prosthetic device, implant and graft in urinary system, subsequent encounter +T8359XS Infection and inflammatory reaction due to prosthetic device, implant and graft in urinary system, sequela +T8361XA Infection and inflammatory reaction due to implanted penile prosthesis, initial encounter +T8361XD Infection and inflammatory reaction due to implanted penile prosthesis, subsequent encounter +T8361XS Infection and inflammatory reaction due to implanted penile prosthesis, sequela +T8362XA Infection and inflammatory reaction due to implanted testicular prosthesis, initial encounter +T8362XD Infection and inflammatory reaction due to implanted testicular prosthesis, subsequent encounter +T8362XS Infection and inflammatory reaction due to implanted testicular prosthesis, sequela +T8369XA Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract, initial encounter +T8369XD Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract, subsequent encounter +T8369XS Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract, sequela +T836XXA Infection and inflammatory reaction due to prosthetic device, implant and graft in genital tract, initial encounter +T836XXD Infection and inflammatory reaction due to prosthetic device, implant and graft in genital tract, subsequent encounter +T836XXS Infection and inflammatory reaction due to prosthetic device, implant and graft in genital tract, sequela +T83711A Erosion of implanted vaginal mesh to surrounding organ or tissue, initial encounter +T83711D Erosion of implanted vaginal mesh to surrounding organ or tissue, subsequent encounter +T83711S Erosion of implanted vaginal mesh to surrounding organ or tissue, sequela +T83712A Erosion of implanted urethral mesh to surrounding organ or tissue, initial encounter +T83712D Erosion of implanted urethral mesh to surrounding organ or tissue, subsequent encounter +T83712S Erosion of implanted urethral mesh to surrounding organ or tissue, sequela +T83713A Erosion of implanted urethral bulking agent to surrounding organ or tissue, initial encounter +T83713D Erosion of implanted urethral bulking agent to surrounding organ or tissue, subsequent encounter +T83713S Erosion of implanted urethral bulking agent to surrounding organ or tissue, sequela +T83714A Erosion of implanted ureteral bulking agent to surrounding organ or tissue, initial encounter +T83714D Erosion of implanted ureteral bulking agent to surrounding organ or tissue, subsequent encounter +T83714S Erosion of implanted ureteral bulking agent to surrounding organ or tissue, sequela +T83718A Erosion of other implanted mesh to surrounding organ or tissue, initial encounter +T83718D Erosion of other implanted mesh to surrounding organ or tissue, subsequent encounter +T83718S Erosion of other implanted mesh to surrounding organ or tissue, sequela +T83719A Erosion of other prosthetic materials to surrounding organ or tissue, initial encounter +T83719D Erosion of other prosthetic materials to surrounding organ or tissue, subsequent encounter +T83719S Erosion of other prosthetic materials to surrounding organ or tissue, sequela +T83721A Exposure of implanted vaginal mesh into vagina, initial encounter +T83721D Exposure of implanted vaginal mesh into vagina, subsequent encounter +T83721S Exposure of implanted vaginal mesh materials into vagina, sequela +T83722A Exposure of implanted urethral mesh into urethra, initial encounter +T83722D Exposure of implanted urethral mesh into urethra, subsequent encounter +T83722S Exposure of implanted urethral mesh into urethra, sequela +T83723A Exposure of implanted urethral bulking agent into urethra, initial encounter +T83723D Exposure of implanted urethral bulking agent into urethra, subsequent encounter +T83723S Exposure of implanted urethral bulking agent into urethra, sequela +T83724A Exposure of implanted ureteral bulking agent into ureter, initial encounter +T83724D Exposure of implanted ureteral bulking agent into ureter, subsequent encounter +T83724S Exposure of implanted ureteral bulking agent into ureter, sequela +T83728A Exposure of other implanted mesh to surrounding organ or tissue, initial encounter +T83728D Exposure of other implanted mesh to surrounding organ or tissue, subsequent encounter +T83728S Exposure of other implanted mesh to surrounding organ or tissue, sequela +T83729A Exposure of other prosthetic materials into organ or tissue, initial encounter +T83729D Exposure of other prosthetic materials into organ or tissue, subsequent encounter +T83729S Exposure of other prosthetic materials into organ or tissue, sequela +T8379XA Other specified complications due to other genitourinary prosthetic materials, initial encounter +T8379XD Other specified complications due to other genitourinary prosthetic materials, subsequent encounter +T8379XS Other specified complications due to other genitourinary prosthetic materials, sequela +T8381XA Embolism due to genitourinary prosthetic devices, implants and grafts, initial encounter +T8381XD Embolism due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +T8381XS Embolism due to genitourinary prosthetic devices, implants and grafts, sequela +T8382XA Fibrosis due to genitourinary prosthetic devices, implants and grafts, initial encounter +T8382XD Fibrosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +T8382XS Fibrosis due to genitourinary prosthetic devices, implants and grafts, sequela +T8383XA Hemorrhage due to genitourinary prosthetic devices, implants and grafts, initial encounter +T8383XD Hemorrhage due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +T8383XS Hemorrhage due to genitourinary prosthetic devices, implants and grafts, sequela +T8384XA Pain due to genitourinary prosthetic devices, implants and grafts, initial encounter +T8384XD Pain due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +T8384XS Pain due to genitourinary prosthetic devices, implants and grafts, sequela +T8385XA Stenosis due to genitourinary prosthetic devices, implants and grafts, initial encounter +T8385XD Stenosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +T8385XS Stenosis due to genitourinary prosthetic devices, implants and grafts, sequela +T8386XA Thrombosis due to genitourinary prosthetic devices, implants and grafts, initial encounter +T8386XD Thrombosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +T8386XS Thrombosis due to genitourinary prosthetic devices, implants and grafts, sequela +T8389XA Other specified complication of genitourinary prosthetic devices, implants and grafts, initial encounter +T8389XD Other specified complication of genitourinary prosthetic devices, implants and grafts, subsequent encounter +T8389XS Other specified complication of genitourinary prosthetic devices, implants and grafts, sequela +T839XXA Unspecified complication of genitourinary prosthetic device, implant and graft, initial encounter +T839XXD Unspecified complication of genitourinary prosthetic device, implant and graft, subsequent encounter +T839XXS Unspecified complication of genitourinary prosthetic device, implant and graft, sequela +T84010A Broken internal right hip prosthesis, initial encounter +T84010D Broken internal right hip prosthesis, subsequent encounter +T84010S Broken internal right hip prosthesis, sequela +T84011A Broken internal left hip prosthesis, initial encounter +T84011D Broken internal left hip prosthesis, subsequent encounter +T84011S Broken internal left hip prosthesis, sequela +T84012A Broken internal right knee prosthesis, initial encounter +T84012D Broken internal right knee prosthesis, subsequent encounter +T84012S Broken internal right knee prosthesis, sequela +T84013A Broken internal left knee prosthesis, initial encounter +T84013D Broken internal left knee prosthesis, subsequent encounter +T84013S Broken internal left knee prosthesis, sequela +T84018A Broken internal joint prosthesis, other site, initial encounter +T84018D Broken internal joint prosthesis, other site, subsequent encounter +T84018S Broken internal joint prosthesis, other site, sequela +T84019A Broken internal joint prosthesis, unspecified site, initial encounter +T84019D Broken internal joint prosthesis, unspecified site, subsequent encounter +T84019S Broken internal joint prosthesis, unspecified site, sequela +T84020A Dislocation of internal right hip prosthesis, initial encounter +T84020D Dislocation of internal right hip prosthesis, subsequent encounter +T84020S Dislocation of internal right hip prosthesis, sequela +T84021A Dislocation of internal left hip prosthesis, initial encounter +T84021D Dislocation of internal left hip prosthesis, subsequent encounter +T84021S Dislocation of internal left hip prosthesis, sequela +T84022A Instability of internal right knee prosthesis, initial encounter +T84022D Instability of internal right knee prosthesis, subsequent encounter +T84022S Instability of internal right knee prosthesis, sequela +T84023A Instability of internal left knee prosthesis, initial encounter +T84023D Instability of internal left knee prosthesis, subsequent encounter +T84023S Instability of internal left knee prosthesis, sequela +T84028A Dislocation of other internal joint prosthesis, initial encounter +T84028D Dislocation of other internal joint prosthesis, subsequent encounter +T84028S Dislocation of other internal joint prosthesis, sequela +T84029A Dislocation of unspecified internal joint prosthesis, initial encounter +T84029D Dislocation of unspecified internal joint prosthesis, subsequent encounter +T84029S Dislocation of unspecified internal joint prosthesis, sequela +T84030A Mechanical loosening of internal right hip prosthetic joint, initial encounter +T84030D Mechanical loosening of internal right hip prosthetic joint, subsequent encounter +T84030S Mechanical loosening of internal right hip prosthetic joint, sequela +T84031A Mechanical loosening of internal left hip prosthetic joint, initial encounter +T84031D Mechanical loosening of internal left hip prosthetic joint, subsequent encounter +T84031S Mechanical loosening of internal left hip prosthetic joint, sequela +T84032A Mechanical loosening of internal right knee prosthetic joint, initial encounter +T84032D Mechanical loosening of internal right knee prosthetic joint, subsequent encounter +T84032S Mechanical loosening of internal right knee prosthetic joint, sequela +T84033A Mechanical loosening of internal left knee prosthetic joint, initial encounter +T84033D Mechanical loosening of internal left knee prosthetic joint, subsequent encounter +T84033S Mechanical loosening of internal left knee prosthetic joint, sequela +T84038A Mechanical loosening of other internal prosthetic joint, initial encounter +T84038D Mechanical loosening of other internal prosthetic joint, subsequent encounter +T84038S Mechanical loosening of other internal prosthetic joint, sequela +T84039A Mechanical loosening of unspecified internal prosthetic joint, initial encounter +T84039D Mechanical loosening of unspecified internal prosthetic joint, subsequent encounter +T84039S Mechanical loosening of unspecified internal prosthetic joint, sequela +T84040A Periprosthetic fracture around internal prosthetic right hip joint, initial encounter +T84040D Periprosthetic fracture around internal prosthetic right hip joint, subsequent encounter +T84040S Periprosthetic fracture around internal prosthetic right hip joint, sequela +T84041A Periprosthetic fracture around internal prosthetic left hip joint, initial encounter +T84041D Periprosthetic fracture around internal prosthetic left hip joint, subsequent encounter +T84041S Periprosthetic fracture around internal prosthetic left hip joint, sequela +T84042A Periprosthetic fracture around internal prosthetic right knee joint, initial encounter +T84042D Periprosthetic fracture around internal prosthetic right knee joint, subsequent encounter +T84042S Periprosthetic fracture around internal prosthetic right knee joint, sequela +T84043A Periprosthetic fracture around internal prosthetic left knee joint, initial encounter +T84043D Periprosthetic fracture around internal prosthetic left knee joint, subsequent encounter +T84043S Periprosthetic fracture around internal prosthetic left knee joint, sequela +T84048A Periprosthetic fracture around other internal prosthetic joint, initial encounter +T84048D Periprosthetic fracture around other internal prosthetic joint, subsequent encounter +T84048S Periprosthetic fracture around other internal prosthetic joint, sequela +T84049A Periprosthetic fracture around unspecified internal prosthetic joint, initial encounter +T84049D Periprosthetic fracture around unspecified internal prosthetic joint, subsequent encounter +T84049S Periprosthetic fracture around unspecified internal prosthetic joint, sequela +T84050A Periprosthetic osteolysis of internal prosthetic right hip joint, initial encounter +T84050D Periprosthetic osteolysis of internal prosthetic right hip joint, subsequent encounter +T84050S Periprosthetic osteolysis of internal prosthetic right hip joint, sequela +T84051A Periprosthetic osteolysis of internal prosthetic left hip joint, initial encounter +T84051D Periprosthetic osteolysis of internal prosthetic left hip joint, subsequent encounter +T84051S Periprosthetic osteolysis of internal prosthetic left hip joint, sequela +T84052A Periprosthetic osteolysis of internal prosthetic right knee joint, initial encounter +T84052D Periprosthetic osteolysis of internal prosthetic right knee joint, subsequent encounter +T84052S Periprosthetic osteolysis of internal prosthetic right knee joint, sequela +T84053A Periprosthetic osteolysis of internal prosthetic left knee joint, initial encounter +T84053D Periprosthetic osteolysis of internal prosthetic left knee joint, subsequent encounter +T84053S Periprosthetic osteolysis of internal prosthetic left knee joint, sequela +T84058A Periprosthetic osteolysis of other internal prosthetic joint, initial encounter +T84058D Periprosthetic osteolysis of other internal prosthetic joint, subsequent encounter +T84058S Periprosthetic osteolysis of other internal prosthetic joint, sequela +T84059A Periprosthetic osteolysis of unspecified internal prosthetic joint, initial encounter +T84059D Periprosthetic osteolysis of unspecified internal prosthetic joint, subsequent encounter +T84059S Periprosthetic osteolysis of unspecified internal prosthetic joint, sequela +T84060A Wear of articular bearing surface of internal prosthetic right hip joint, initial encounter +T84060D Wear of articular bearing surface of internal prosthetic right hip joint, subsequent encounter +T84060S Wear of articular bearing surface of internal prosthetic right hip joint, sequela +T84061A Wear of articular bearing surface of internal prosthetic left hip joint, initial encounter +T84061D Wear of articular bearing surface of internal prosthetic left hip joint, subsequent encounter +T84061S Wear of articular bearing surface of internal prosthetic left hip joint, sequela +T84062A Wear of articular bearing surface of internal prosthetic right knee joint, initial encounter +T84062D Wear of articular bearing surface of internal prosthetic right knee joint, subsequent encounter +T84062S Wear of articular bearing surface of internal prosthetic right knee joint, sequela +T84063A Wear of articular bearing surface of internal prosthetic left knee joint, initial encounter +T84063D Wear of articular bearing surface of internal prosthetic left knee joint, subsequent encounter +T84063S Wear of articular bearing surface of internal prosthetic left knee joint, sequela +T84068A Wear of articular bearing surface of other internal prosthetic joint, initial encounter +T84068D Wear of articular bearing surface of other internal prosthetic joint, subsequent encounter +T84068S Wear of articular bearing surface of other internal prosthetic joint, sequela +T84069A Wear of articular bearing surface of unspecified internal prosthetic joint, initial encounter +T84069D Wear of articular bearing surface of unspecified internal prosthetic joint, subsequent encounter +T84069S Wear of articular bearing surface of unspecified internal prosthetic joint, sequela +T84090A Other mechanical complication of internal right hip prosthesis, initial encounter +T84090D Other mechanical complication of internal right hip prosthesis, subsequent encounter +T84090S Other mechanical complication of internal right hip prosthesis, sequela +T84091A Other mechanical complication of internal left hip prosthesis, initial encounter +T84091D Other mechanical complication of internal left hip prosthesis, subsequent encounter +T84091S Other mechanical complication of internal left hip prosthesis, sequela +T84092A Other mechanical complication of internal right knee prosthesis, initial encounter +T84092D Other mechanical complication of internal right knee prosthesis, subsequent encounter +T84092S Other mechanical complication of internal right knee prosthesis, sequela +T84093A Other mechanical complication of internal left knee prosthesis, initial encounter +T84093D Other mechanical complication of internal left knee prosthesis, subsequent encounter +T84093S Other mechanical complication of internal left knee prosthesis, sequela +T84098A Other mechanical complication of other internal joint prosthesis, initial encounter +T84098D Other mechanical complication of other internal joint prosthesis, subsequent encounter +T84098S Other mechanical complication of other internal joint prosthesis, sequela +T84099A Other mechanical complication of unspecified internal joint prosthesis, initial encounter +T84099D Other mechanical complication of unspecified internal joint prosthesis, subsequent encounter +T84099S Other mechanical complication of unspecified internal joint prosthesis, sequela +T84110A Breakdown (mechanical) of internal fixation device of right humerus, initial encounter +T84110D Breakdown (mechanical) of internal fixation device of right humerus, subsequent encounter +T84110S Breakdown (mechanical) of internal fixation device of right humerus, sequela +T84111A Breakdown (mechanical) of internal fixation device of left humerus, initial encounter +T84111D Breakdown (mechanical) of internal fixation device of left humerus, subsequent encounter +T84111S Breakdown (mechanical) of internal fixation device of left humerus, sequela +T84112A Breakdown (mechanical) of internal fixation device of bone of right forearm, initial encounter +T84112D Breakdown (mechanical) of internal fixation device of bone of right forearm, subsequent encounter +T84112S Breakdown (mechanical) of internal fixation device of bone of right forearm, sequela +T84113A Breakdown (mechanical) of internal fixation device of bone of left forearm, initial encounter +T84113D Breakdown (mechanical) of internal fixation device of bone of left forearm, subsequent encounter +T84113S Breakdown (mechanical) of internal fixation device of bone of left forearm, sequela +T84114A Breakdown (mechanical) of internal fixation device of right femur, initial encounter +T84114D Breakdown (mechanical) of internal fixation device of right femur, subsequent encounter +T84114S Breakdown (mechanical) of internal fixation device of right femur, sequela +T84115A Breakdown (mechanical) of internal fixation device of left femur, initial encounter +T84115D Breakdown (mechanical) of internal fixation device of left femur, subsequent encounter +T84115S Breakdown (mechanical) of internal fixation device of left femur, sequela +T84116A Breakdown (mechanical) of internal fixation device of bone of right lower leg, initial encounter +T84116D Breakdown (mechanical) of internal fixation device of bone of right lower leg, subsequent encounter +T84116S Breakdown (mechanical) of internal fixation device of bone of right lower leg, sequela +T84117A Breakdown (mechanical) of internal fixation device of bone of left lower leg, initial encounter +T84117D Breakdown (mechanical) of internal fixation device of bone of left lower leg, subsequent encounter +T84117S Breakdown (mechanical) of internal fixation device of bone of left lower leg, sequela +T84119A Breakdown (mechanical) of internal fixation device of unspecified bone of limb, initial encounter +T84119D Breakdown (mechanical) of internal fixation device of unspecified bone of limb, subsequent encounter +T84119S Breakdown (mechanical) of internal fixation device of unspecified bone of limb, sequela +T84120A Displacement of internal fixation device of right humerus, initial encounter +T84120D Displacement of internal fixation device of right humerus, subsequent encounter +T84120S Displacement of internal fixation device of right humerus, sequela +T84121A Displacement of internal fixation device of left humerus, initial encounter +T84121D Displacement of internal fixation device of left humerus, subsequent encounter +T84121S Displacement of internal fixation device of left humerus, sequela +T84122A Displacement of internal fixation device of bone of right forearm, initial encounter +T84122D Displacement of internal fixation device of bone of right forearm, subsequent encounter +T84122S Displacement of internal fixation device of bone of right forearm, sequela +T84123A Displacement of internal fixation device of bone of left forearm, initial encounter +T84123D Displacement of internal fixation device of bone of left forearm, subsequent encounter +T84123S Displacement of internal fixation device of bone of left forearm, sequela +T84124A Displacement of internal fixation device of right femur, initial encounter +T84124D Displacement of internal fixation device of right femur, subsequent encounter +T84124S Displacement of internal fixation device of right femur, sequela +T84125A Displacement of internal fixation device of left femur, initial encounter +T84125D Displacement of internal fixation device of left femur, subsequent encounter +T84125S Displacement of internal fixation device of left femur, sequela +T84126A Displacement of internal fixation device of bone of right lower leg, initial encounter +T84126D Displacement of internal fixation device of bone of right lower leg, subsequent encounter +T84126S Displacement of internal fixation device of bone of right lower leg, sequela +T84127A Displacement of internal fixation device of bone of left lower leg, initial encounter +T84127D Displacement of internal fixation device of bone of left lower leg, subsequent encounter +T84127S Displacement of internal fixation device of bone of left lower leg, sequela +T84129A Displacement of internal fixation device of unspecified bone of limb, initial encounter +T84129D Displacement of internal fixation device of unspecified bone of limb, subsequent encounter +T84129S Displacement of internal fixation device of unspecified bone of limb, sequela +T84190A Other mechanical complication of internal fixation device of right humerus, initial encounter +T84190D Other mechanical complication of internal fixation device of right humerus, subsequent encounter +T84190S Other mechanical complication of internal fixation device of right humerus, sequela +T84191A Other mechanical complication of internal fixation device of left humerus, initial encounter +T84191D Other mechanical complication of internal fixation device of left humerus, subsequent encounter +T84191S Other mechanical complication of internal fixation device of left humerus, sequela +T84192A Other mechanical complication of internal fixation device of bone of right forearm, initial encounter +T84192D Other mechanical complication of internal fixation device of bone of right forearm, subsequent encounter +T84192S Other mechanical complication of internal fixation device of bone of right forearm, sequela +T84193A Other mechanical complication of internal fixation device of bone of left forearm, initial encounter +T84193D Other mechanical complication of internal fixation device of bone of left forearm, subsequent encounter +T84193S Other mechanical complication of internal fixation device of bone of left forearm, sequela +T84194A Other mechanical complication of internal fixation device of right femur, initial encounter +T84194D Other mechanical complication of internal fixation device of right femur, subsequent encounter +T84194S Other mechanical complication of internal fixation device of right femur, sequela +T84195A Other mechanical complication of internal fixation device of left femur, initial encounter +T84195D Other mechanical complication of internal fixation device of left femur, subsequent encounter +T84195S Other mechanical complication of internal fixation device of left femur, sequela +T84196A Other mechanical complication of internal fixation device of bone of right lower leg, initial encounter +T84196D Other mechanical complication of internal fixation device of bone of right lower leg, subsequent encounter +T84196S Other mechanical complication of internal fixation device of bone of right lower leg, sequela +T84197A Other mechanical complication of internal fixation device of bone of left lower leg, initial encounter +T84197D Other mechanical complication of internal fixation device of bone of left lower leg, subsequent encounter +T84197S Other mechanical complication of internal fixation device of bone of left lower leg, sequela +T84199A Other mechanical complication of internal fixation device of unspecified bone of limb, initial encounter +T84199D Other mechanical complication of internal fixation device of unspecified bone of limb, subsequent encounter +T84199S Other mechanical complication of internal fixation device of unspecified bone of limb, sequela +T84210A Breakdown (mechanical) of internal fixation device of bones of hand and fingers, initial encounter +T84210D Breakdown (mechanical) of internal fixation device of bones of hand and fingers, subsequent encounter +T84210S Breakdown (mechanical) of internal fixation device of bones of hand and fingers, sequela +T84213A Breakdown (mechanical) of internal fixation device of bones of foot and toes, initial encounter +T84213D Breakdown (mechanical) of internal fixation device of bones of foot and toes, subsequent encounter +T84213S Breakdown (mechanical) of internal fixation device of bones of foot and toes, sequela +T84216A Breakdown (mechanical) of internal fixation device of vertebrae, initial encounter +T84216D Breakdown (mechanical) of internal fixation device of vertebrae, subsequent encounter +T84216S Breakdown (mechanical) of internal fixation device of vertebrae, sequela +T84218A Breakdown (mechanical) of internal fixation device of other bones, initial encounter +T84218D Breakdown (mechanical) of internal fixation device of other bones, subsequent encounter +T84218S Breakdown (mechanical) of internal fixation device of other bones, sequela +T84220A Displacement of internal fixation device of bones of hand and fingers, initial encounter +T84220D Displacement of internal fixation device of bones of hand and fingers, subsequent encounter +T84220S Displacement of internal fixation device of bones of hand and fingers, sequela +T84223A Displacement of internal fixation device of bones of foot and toes, initial encounter +T84223D Displacement of internal fixation device of bones of foot and toes, subsequent encounter +T84223S Displacement of internal fixation device of bones of foot and toes, sequela +T84226A Displacement of internal fixation device of vertebrae, initial encounter +T84226D Displacement of internal fixation device of vertebrae, subsequent encounter +T84226S Displacement of internal fixation device of vertebrae, sequela +T84228A Displacement of internal fixation device of other bones, initial encounter +T84228D Displacement of internal fixation device of other bones, subsequent encounter +T84228S Displacement of internal fixation device of other bones, sequela +T84290A Other mechanical complication of internal fixation device of bones of hand and fingers, initial encounter +T84290D Other mechanical complication of internal fixation device of bones of hand and fingers, subsequent encounter +T84290S Other mechanical complication of internal fixation device of bones of hand and fingers, sequela +T84293A Other mechanical complication of internal fixation device of bones of foot and toes, initial encounter +T84293D Other mechanical complication of internal fixation device of bones of foot and toes, subsequent encounter +T84293S Other mechanical complication of internal fixation device of bones of foot and toes, sequela +T84296A Other mechanical complication of internal fixation device of vertebrae, initial encounter +T84296D Other mechanical complication of internal fixation device of vertebrae, subsequent encounter +T84296S Other mechanical complication of internal fixation device of vertebrae, sequela +T84298A Other mechanical complication of internal fixation device of other bones, initial encounter +T84298D Other mechanical complication of internal fixation device of other bones, subsequent encounter +T84298S Other mechanical complication of internal fixation device of other bones, sequela +T84310A Breakdown (mechanical) of electronic bone stimulator, initial encounter +T84310D Breakdown (mechanical) of electronic bone stimulator, subsequent encounter +T84310S Breakdown (mechanical) of electronic bone stimulator, sequela +T84318A Breakdown (mechanical) of other bone devices, implants and grafts, initial encounter +T84318D Breakdown (mechanical) of other bone devices, implants and grafts, subsequent encounter +T84318S Breakdown (mechanical) of other bone devices, implants and grafts, sequela +T84320A Displacement of electronic bone stimulator, initial encounter +T84320D Displacement of electronic bone stimulator, subsequent encounter +T84320S Displacement of electronic bone stimulator, sequela +T84328A Displacement of other bone devices, implants and grafts, initial encounter +T84328D Displacement of other bone devices, implants and grafts, subsequent encounter +T84328S Displacement of other bone devices, implants and grafts, sequela +T84390A Other mechanical complication of electronic bone stimulator, initial encounter +T84390D Other mechanical complication of electronic bone stimulator, subsequent encounter +T84390S Other mechanical complication of electronic bone stimulator, sequela +T84398A Other mechanical complication of other bone devices, implants and grafts, initial encounter +T84398D Other mechanical complication of other bone devices, implants and grafts, subsequent encounter +T84398S Other mechanical complication of other bone devices, implants and grafts, sequela +T84410A Breakdown (mechanical) of muscle and tendon graft, initial encounter +T84410D Breakdown (mechanical) of muscle and tendon graft, subsequent encounter +T84410S Breakdown (mechanical) of muscle and tendon graft, sequela +T84418A Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, initial encounter +T84418D Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, subsequent encounter +T84418S Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, sequela +T84420A Displacement of muscle and tendon graft, initial encounter +T84420D Displacement of muscle and tendon graft, subsequent encounter +T84420S Displacement of muscle and tendon graft, sequela +T84428A Displacement of other internal orthopedic devices, implants and grafts, initial encounter +T84428D Displacement of other internal orthopedic devices, implants and grafts, subsequent encounter +T84428S Displacement of other internal orthopedic devices, implants and grafts, sequela +T84490A Other mechanical complication of muscle and tendon graft, initial encounter +T84490D Other mechanical complication of muscle and tendon graft, subsequent encounter +T84490S Other mechanical complication of muscle and tendon graft, sequela +T84498A Other mechanical complication of other internal orthopedic devices, implants and grafts, initial encounter +T84498D Other mechanical complication of other internal orthopedic devices, implants and grafts, subsequent encounter +T84498S Other mechanical complication of other internal orthopedic devices, implants and grafts, sequela +T8450XA Infection and inflammatory reaction due to unspecified internal joint prosthesis, initial encounter +T8450XD Infection and inflammatory reaction due to unspecified internal joint prosthesis, subsequent encounter +T8450XS Infection and inflammatory reaction due to unspecified internal joint prosthesis, sequela +T8451XA Infection and inflammatory reaction due to internal right hip prosthesis, initial encounter +T8451XD Infection and inflammatory reaction due to internal right hip prosthesis, subsequent encounter +T8451XS Infection and inflammatory reaction due to internal right hip prosthesis, sequela +T8452XA Infection and inflammatory reaction due to internal left hip prosthesis, initial encounter +T8452XD Infection and inflammatory reaction due to internal left hip prosthesis, subsequent encounter +T8452XS Infection and inflammatory reaction due to internal left hip prosthesis, sequela +T8453XA Infection and inflammatory reaction due to internal right knee prosthesis, initial encounter +T8453XD Infection and inflammatory reaction due to internal right knee prosthesis, subsequent encounter +T8453XS Infection and inflammatory reaction due to internal right knee prosthesis, sequela +T8454XA Infection and inflammatory reaction due to internal left knee prosthesis, initial encounter +T8454XD Infection and inflammatory reaction due to internal left knee prosthesis, subsequent encounter +T8454XS Infection and inflammatory reaction due to internal left knee prosthesis, sequela +T8459XA Infection and inflammatory reaction due to other internal joint prosthesis, initial encounter +T8459XD Infection and inflammatory reaction due to other internal joint prosthesis, subsequent encounter +T8459XS Infection and inflammatory reaction due to other internal joint prosthesis, sequela +T8460XA Infection and inflammatory reaction due to internal fixation device of unspecified site, initial encounter +T8460XD Infection and inflammatory reaction due to internal fixation device of unspecified site, subsequent encounter +T8460XS Infection and inflammatory reaction due to internal fixation device of unspecified site, sequela +T84610A Infection and inflammatory reaction due to internal fixation device of right humerus, initial encounter +T84610D Infection and inflammatory reaction due to internal fixation device of right humerus, subsequent encounter +T84610S Infection and inflammatory reaction due to internal fixation device of right humerus, sequela +T84611A Infection and inflammatory reaction due to internal fixation device of left humerus, initial encounter +T84611D Infection and inflammatory reaction due to internal fixation device of left humerus, subsequent encounter +T84611S Infection and inflammatory reaction due to internal fixation device of left humerus, sequela +T84612A Infection and inflammatory reaction due to internal fixation device of right radius, initial encounter +T84612D Infection and inflammatory reaction due to internal fixation device of right radius, subsequent encounter +T84612S Infection and inflammatory reaction due to internal fixation device of right radius, sequela +T84613A Infection and inflammatory reaction due to internal fixation device of left radius, initial encounter +T84613D Infection and inflammatory reaction due to internal fixation device of left radius, subsequent encounter +T84613S Infection and inflammatory reaction due to internal fixation device of left radius, sequela +T84614A Infection and inflammatory reaction due to internal fixation device of right ulna, initial encounter +T84614D Infection and inflammatory reaction due to internal fixation device of right ulna, subsequent encounter +T84614S Infection and inflammatory reaction due to internal fixation device of right ulna, sequela +T84615A Infection and inflammatory reaction due to internal fixation device of left ulna, initial encounter +T84615D Infection and inflammatory reaction due to internal fixation device of left ulna, subsequent encounter +T84615S Infection and inflammatory reaction due to internal fixation device of left ulna, sequela +T84619A Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm, initial encounter +T84619D Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm, subsequent encounter +T84619S Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm, sequela +T84620A Infection and inflammatory reaction due to internal fixation device of right femur, initial encounter +T84620D Infection and inflammatory reaction due to internal fixation device of right femur, subsequent encounter +T84620S Infection and inflammatory reaction due to internal fixation device of right femur, sequela +T84621A Infection and inflammatory reaction due to internal fixation device of left femur, initial encounter +T84621D Infection and inflammatory reaction due to internal fixation device of left femur, subsequent encounter +T84621S Infection and inflammatory reaction due to internal fixation device of left femur, sequela +T84622A Infection and inflammatory reaction due to internal fixation device of right tibia, initial encounter +T84622D Infection and inflammatory reaction due to internal fixation device of right tibia, subsequent encounter +T84622S Infection and inflammatory reaction due to internal fixation device of right tibia, sequela +T84623A Infection and inflammatory reaction due to internal fixation device of left tibia, initial encounter +T84623D Infection and inflammatory reaction due to internal fixation device of left tibia, subsequent encounter +T84623S Infection and inflammatory reaction due to internal fixation device of left tibia, sequela +T84624A Infection and inflammatory reaction due to internal fixation device of right fibula, initial encounter +T84624D Infection and inflammatory reaction due to internal fixation device of right fibula, subsequent encounter +T84624S Infection and inflammatory reaction due to internal fixation device of right fibula, sequela +T84625A Infection and inflammatory reaction due to internal fixation device of left fibula, initial encounter +T84625D Infection and inflammatory reaction due to internal fixation device of left fibula, subsequent encounter +T84625S Infection and inflammatory reaction due to internal fixation device of left fibula, sequela +T84629A Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg, initial encounter +T84629D Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg, subsequent encounter +T84629S Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg, sequela +T8463XA Infection and inflammatory reaction due to internal fixation device of spine, initial encounter +T8463XD Infection and inflammatory reaction due to internal fixation device of spine, subsequent encounter +T8463XS Infection and inflammatory reaction due to internal fixation device of spine, sequela +T8469XA Infection and inflammatory reaction due to internal fixation device of other site, initial encounter +T8469XD Infection and inflammatory reaction due to internal fixation device of other site, subsequent encounter +T8469XS Infection and inflammatory reaction due to internal fixation device of other site, sequela +T847XXA Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts, initial encounter +T847XXD Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +T847XXS Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts, sequela +T8481XA Embolism due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +T8481XD Embolism due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +T8481XS Embolism due to internal orthopedic prosthetic devices, implants and grafts, sequela +T8482XA Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +T8482XD Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +T8482XS Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, sequela +T8483XA Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +T8483XD Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +T8483XS Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, sequela +T8484XA Pain due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +T8484XD Pain due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +T8484XS Pain due to internal orthopedic prosthetic devices, implants and grafts, sequela +T8485XA Stenosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +T8485XD Stenosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +T8485XS Stenosis due to internal orthopedic prosthetic devices, implants and grafts, sequela +T8486XA Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +T8486XD Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +T8486XS Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, sequela +T8489XA Other specified complication of internal orthopedic prosthetic devices, implants and grafts, initial encounter +T8489XD Other specified complication of internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +T8489XS Other specified complication of internal orthopedic prosthetic devices, implants and grafts, sequela +T849XXA Unspecified complication of internal orthopedic prosthetic device, implant and graft, initial encounter +T849XXD Unspecified complication of internal orthopedic prosthetic device, implant and graft, subsequent encounter +T849XXS Unspecified complication of internal orthopedic prosthetic device, implant and graft, sequela +T8501XA Breakdown (mechanical) of ventricular intracranial (communicating) shunt, initial encounter +T8501XD Breakdown (mechanical) of ventricular intracranial (communicating) shunt, subsequent encounter +T8501XS Breakdown (mechanical) of ventricular intracranial (communicating) shunt, sequela +T8502XA Displacement of ventricular intracranial (communicating) shunt, initial encounter +T8502XD Displacement of ventricular intracranial (communicating) shunt, subsequent encounter +T8502XS Displacement of ventricular intracranial (communicating) shunt, sequela +T8503XA Leakage of ventricular intracranial (communicating) shunt, initial encounter +T8503XD Leakage of ventricular intracranial (communicating) shunt, subsequent encounter +T8503XS Leakage of ventricular intracranial (communicating) shunt, sequela +T8509XA Other mechanical complication of ventricular intracranial (communicating) shunt, initial encounter +T8509XD Other mechanical complication of ventricular intracranial (communicating) shunt, subsequent encounter +T8509XS Other mechanical complication of ventricular intracranial (communicating) shunt, sequela +T85110A Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead), initial encounter +T85110D Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead), subsequent encounter +T85110S Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead), sequela +T85111A Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead), initial encounter +T85111D Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead), subsequent encounter +T85111S Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead), sequela +T85112A Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead), initial encounter +T85112D Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead), subsequent encounter +T85112S Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead), sequela +T85113A Breakdown (mechanical) of implanted electronic neurostimulator, generator, initial encounter +T85113D Breakdown (mechanical) of implanted electronic neurostimulator, generator, subsequent encounter +T85113S Breakdown (mechanical) of implanted electronic neurostimulator, generator, sequela +T85118A Breakdown (mechanical) of other implanted electronic stimulator of nervous system, initial encounter +T85118D Breakdown (mechanical) of other implanted electronic stimulator of nervous system, subsequent encounter +T85118S Breakdown (mechanical) of other implanted electronic stimulator of nervous system, sequela +T85120A Displacement of implanted electronic neurostimulator of brain electrode (lead), initial encounter +T85120D Displacement of implanted electronic neurostimulator of brain electrode (lead), subsequent encounter +T85120S Displacement of implanted electronic neurostimulator of brain electrode (lead), sequela +T85121A Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead), initial encounter +T85121D Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead), subsequent encounter +T85121S Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead), sequela +T85122A Displacement of implanted electronic neurostimulator of spinal cord electrode (lead), initial encounter +T85122D Displacement of implanted electronic neurostimulator of spinal cord electrode (lead), subsequent encounter +T85122S Displacement of implanted electronic neurostimulator of spinal cord electrode (lead), sequela +T85123A Displacement of implanted electronic neurostimulator, generator, initial encounter +T85123D Displacement of implanted electronic neurostimulator, generator, subsequent encounter +T85123S Displacement of implanted electronic neurostimulator, generator, sequela +T85128A Displacement of other implanted electronic stimulator of nervous system, initial encounter +T85128D Displacement of other implanted electronic stimulator of nervous system, subsequent encounter +T85128S Displacement of other implanted electronic stimulator of nervous system, sequela +T85190A Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead), initial encounter +T85190D Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead), subsequent encounter +T85190S Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead), sequela +T85191A Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead), initial encounter +T85191D Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead), subsequent encounter +T85191S Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead), sequela +T85192A Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead), initial encounter +T85192D Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead), subsequent encounter +T85192S Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead), sequela +T85193A Other mechanical complication of implanted electronic neurostimulator, generator, initial encounter +T85193D Other mechanical complication of implanted electronic neurostimulator, generator, subsequent encounter +T85193S Other mechanical complication of implanted electronic neurostimulator, generator, sequela +T85199A Other mechanical complication of other implanted electronic stimulator of nervous system, initial encounter +T85199D Other mechanical complication of other implanted electronic stimulator of nervous system, subsequent encounter +T85199S Other mechanical complication of other implanted electronic stimulator of nervous system, sequela +T8521XA Breakdown (mechanical) of intraocular lens, initial encounter +T8521XD Breakdown (mechanical) of intraocular lens, subsequent encounter +T8521XS Breakdown (mechanical) of intraocular lens, sequela +T8522XA Displacement of intraocular lens, initial encounter +T8522XD Displacement of intraocular lens, subsequent encounter +T8522XS Displacement of intraocular lens, sequela +T8529XA Other mechanical complication of intraocular lens, initial encounter +T8529XD Other mechanical complication of intraocular lens, subsequent encounter +T8529XS Other mechanical complication of intraocular lens, sequela +T85310A Breakdown (mechanical) of prosthetic orbit of right eye, initial encounter +T85310D Breakdown (mechanical) of prosthetic orbit of right eye, subsequent encounter +T85310S Breakdown (mechanical) of prosthetic orbit of right eye, sequela +T85311A Breakdown (mechanical) of prosthetic orbit of left eye, initial encounter +T85311D Breakdown (mechanical) of prosthetic orbit of left eye, subsequent encounter +T85311S Breakdown (mechanical) of prosthetic orbit of left eye, sequela +T85318A Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, initial encounter +T85318D Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, subsequent encounter +T85318S Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, sequela +T85320A Displacement of prosthetic orbit of right eye, initial encounter +T85320D Displacement of prosthetic orbit of right eye, subsequent encounter +T85320S Displacement of prosthetic orbit of right eye, sequela +T85321A Displacement of prosthetic orbit of left eye, initial encounter +T85321D Displacement of prosthetic orbit of left eye, subsequent encounter +T85321S Displacement of prosthetic orbit of left eye, sequela +T85328A Displacement of other ocular prosthetic devices, implants and grafts, initial encounter +T85328D Displacement of other ocular prosthetic devices, implants and grafts, subsequent encounter +T85328S Displacement of other ocular prosthetic devices, implants and grafts, sequela +T85390A Other mechanical complication of prosthetic orbit of right eye, initial encounter +T85390D Other mechanical complication of prosthetic orbit of right eye, subsequent encounter +T85390S Other mechanical complication of prosthetic orbit of right eye, sequela +T85391A Other mechanical complication of prosthetic orbit of left eye, initial encounter +T85391D Other mechanical complication of prosthetic orbit of left eye, subsequent encounter +T85391S Other mechanical complication of prosthetic orbit of left eye, sequela +T85398A Other mechanical complication of other ocular prosthetic devices, implants and grafts, initial encounter +T85398D Other mechanical complication of other ocular prosthetic devices, implants and grafts, subsequent encounter +T85398S Other mechanical complication of other ocular prosthetic devices, implants and grafts, sequela +T8541XA Breakdown (mechanical) of breast prosthesis and implant, initial encounter +T8541XD Breakdown (mechanical) of breast prosthesis and implant, subsequent encounter +T8541XS Breakdown (mechanical) of breast prosthesis and implant, sequela +T8542XA Displacement of breast prosthesis and implant, initial encounter +T8542XD Displacement of breast prosthesis and implant, subsequent encounter +T8542XS Displacement of breast prosthesis and implant, sequela +T8543XA Leakage of breast prosthesis and implant, initial encounter +T8543XD Leakage of breast prosthesis and implant, subsequent encounter +T8543XS Leakage of breast prosthesis and implant, sequela +T8544XA Capsular contracture of breast implant, initial encounter +T8544XD Capsular contracture of breast implant, subsequent encounter +T8544XS Capsular contracture of breast implant, sequela +T8549XA Other mechanical complication of breast prosthesis and implant, initial encounter +T8549XD Other mechanical complication of breast prosthesis and implant, subsequent encounter +T8549XS Other mechanical complication of breast prosthesis and implant, sequela +T85510A Breakdown (mechanical) of bile duct prosthesis, initial encounter +T85510D Breakdown (mechanical) of bile duct prosthesis, subsequent encounter +T85510S Breakdown (mechanical) of bile duct prosthesis, sequela +T85511A Breakdown (mechanical) of esophageal anti-reflux device, initial encounter +T85511D Breakdown (mechanical) of esophageal anti-reflux device, subsequent encounter +T85511S Breakdown (mechanical) of esophageal anti-reflux device, sequela +T85518A Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts, initial encounter +T85518D Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts, subsequent encounter +T85518S Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts, sequela +T85520A Displacement of bile duct prosthesis, initial encounter +T85520D Displacement of bile duct prosthesis, subsequent encounter +T85520S Displacement of bile duct prosthesis, sequela +T85521A Displacement of esophageal anti-reflux device, initial encounter +T85521D Displacement of esophageal anti-reflux device, subsequent encounter +T85521S Displacement of esophageal anti-reflux device, sequela +T85528A Displacement of other gastrointestinal prosthetic devices, implants and grafts, initial encounter +T85528D Displacement of other gastrointestinal prosthetic devices, implants and grafts, subsequent encounter +T85528S Displacement of other gastrointestinal prosthetic devices, implants and grafts, sequela +T85590A Other mechanical complication of bile duct prosthesis, initial encounter +T85590D Other mechanical complication of bile duct prosthesis, subsequent encounter +T85590S Other mechanical complication of bile duct prosthesis, sequela +T85591A Other mechanical complication of esophageal anti-reflux device, initial encounter +T85591D Other mechanical complication of esophageal anti-reflux device, subsequent encounter +T85591S Other mechanical complication of esophageal anti-reflux device, sequela +T85598A Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts, initial encounter +T85598D Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts, subsequent encounter +T85598S Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts, sequela +T85610A Breakdown (mechanical) of cranial or spinal infusion catheter, initial encounter +T85610D Breakdown (mechanical) of cranial or spinal infusion catheter, subsequent encounter +T85610S Breakdown (mechanical) of cranial or spinal infusion catheter, sequela +T85611A Breakdown (mechanical) of intraperitoneal dialysis catheter, initial encounter +T85611D Breakdown (mechanical) of intraperitoneal dialysis catheter, subsequent encounter +T85611S Breakdown (mechanical) of intraperitoneal dialysis catheter, sequela +T85612A Breakdown (mechanical) of permanent sutures, initial encounter +T85612D Breakdown (mechanical) of permanent sutures, subsequent encounter +T85612S Breakdown (mechanical) of permanent sutures, sequela +T85613A Breakdown (mechanical) of artificial skin graft and decellularized allodermis, initial encounter +T85613D Breakdown (mechanical) of artificial skin graft and decellularized allodermis, subsequent encounter +T85613S Breakdown (mechanical) of artificial skin graft and decellularized allodermis, sequela +T85614A Breakdown (mechanical) of insulin pump, initial encounter +T85614D Breakdown (mechanical) of insulin pump, subsequent encounter +T85614S Breakdown (mechanical) of insulin pump, sequela +T85615A Breakdown (mechanical) of other nervous system device, implant or graft, initial encounter +T85615D Breakdown (mechanical) of other nervous system device, implant or graft, subsequent encounter +T85615S Breakdown (mechanical) of other nervous system device, implant or graft, sequela +T85618A Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts, initial encounter +T85618D Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts, subsequent encounter +T85618S Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts, sequela +T85620A Displacement of cranial or spinal infusion catheter, initial encounter +T85620D Displacement of cranial or spinal infusion catheter, subsequent encounter +T85620S Displacement of cranial or spinal infusion catheter, sequela +T85621A Displacement of intraperitoneal dialysis catheter, initial encounter +T85621D Displacement of intraperitoneal dialysis catheter, subsequent encounter +T85621S Displacement of intraperitoneal dialysis catheter, sequela +T85622A Displacement of permanent sutures, initial encounter +T85622D Displacement of permanent sutures, subsequent encounter +T85622S Displacement of permanent sutures, sequela +T85623A Displacement of artificial skin graft and decellularized allodermis, initial encounter +T85623D Displacement of artificial skin graft and decellularized allodermis, subsequent encounter +T85623S Displacement of artificial skin graft and decellularized allodermis, sequela +T85624A Displacement of insulin pump, initial encounter +T85624D Displacement of insulin pump, subsequent encounter +T85624S Displacement of insulin pump, sequela +T85625A Displacement of other nervous system device, implant or graft, initial encounter +T85625D Displacement of other nervous system device, implant or graft, subsequent encounter +T85625S Displacement of other nervous system device, implant or graft, sequela +T85628A Displacement of other specified internal prosthetic devices, implants and grafts, initial encounter +T85628D Displacement of other specified internal prosthetic devices, implants and grafts, subsequent encounter +T85628S Displacement of other specified internal prosthetic devices, implants and grafts, sequela +T85630A Leakage of cranial or spinal infusion catheter, initial encounter +T85630D Leakage of cranial or spinal infusion catheter, subsequent encounter +T85630S Leakage of cranial or spinal infusion catheter, sequela +T85631A Leakage of intraperitoneal dialysis catheter, initial encounter +T85631D Leakage of intraperitoneal dialysis catheter, subsequent encounter +T85631S Leakage of intraperitoneal dialysis catheter, sequela +T85633A Leakage of insulin pump, initial encounter +T85633D Leakage of insulin pump, subsequent encounter +T85633S Leakage of insulin pump, sequela +T85635A Leakage of other nervous system device, implant or graft, initial encounter +T85635D Leakage of other nervous system device, implant or graft, subsequent encounter +T85635S Leakage of other nervous system device, implant or graft, sequela +T85638A Leakage of other specified internal prosthetic devices, implants and grafts, initial encounter +T85638D Leakage of other specified internal prosthetic devices, implants and grafts, subsequent encounter +T85638S Leakage of other specified internal prosthetic devices, implants and grafts, sequela +T85690A Other mechanical complication of cranial or spinal infusion catheter, initial encounter +T85690D Other mechanical complication of cranial or spinal infusion catheter, subsequent encounter +T85690S Other mechanical complication of cranial or spinal infusion catheter, sequela +T85691A Other mechanical complication of intraperitoneal dialysis catheter, initial encounter +T85691D Other mechanical complication of intraperitoneal dialysis catheter, subsequent encounter +T85691S Other mechanical complication of intraperitoneal dialysis catheter, sequela +T85692A Other mechanical complication of permanent sutures, initial encounter +T85692D Other mechanical complication of permanent sutures, subsequent encounter +T85692S Other mechanical complication of permanent sutures, sequela +T85693A Other mechanical complication of artificial skin graft and decellularized allodermis, initial encounter +T85693D Other mechanical complication of artificial skin graft and decellularized allodermis, subsequent encounter +T85693S Other mechanical complication of artificial skin graft and decellularized allodermis, sequela +T85694A Other mechanical complication of insulin pump, initial encounter +T85694D Other mechanical complication of insulin pump, subsequent encounter +T85694S Other mechanical complication of insulin pump, sequela +T85695A Other mechanical complication of other nervous system device, implant or graft, initial encounter +T85695D Other mechanical complication of other nervous system device, implant or graft, subsequent encounter +T85695S Other mechanical complication of other nervous system device, implant or graft, sequela +T85698A Other mechanical complication of other specified internal prosthetic devices, implants and grafts, initial encounter +T85698D Other mechanical complication of other specified internal prosthetic devices, implants and grafts, subsequent encounter +T85698S Other mechanical complication of other specified internal prosthetic devices, implants and grafts, sequela +T8571XA Infection and inflammatory reaction due to peritoneal dialysis catheter, initial encounter +T8571XD Infection and inflammatory reaction due to peritoneal dialysis catheter, subsequent encounter +T8571XS Infection and inflammatory reaction due to peritoneal dialysis catheter, sequela +T8572XA Infection and inflammatory reaction due to insulin pump, initial encounter +T8572XD Infection and inflammatory reaction due to insulin pump, subsequent encounter +T8572XS Infection and inflammatory reaction due to insulin pump, sequela +T85730A Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt, initial encounter +T85730D Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt, subsequent encounter +T85730S Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt, sequela +T85731A Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead), initial encounter +T85731D Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead), subsequent encounter +T85731S Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead), sequela +T85732A Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead), initial encounter +T85732D Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead), subsequent encounter +T85732S Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead), sequela +T85733A Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead), initial encounter +T85733D Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead), subsequent encounter +T85733S Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead), sequela +T85734A Infection and inflammatory reaction due to implanted electronic neurostimulator, generator, initial encounter +T85734D Infection and inflammatory reaction due to implanted electronic neurostimulator, generator, subsequent encounter +T85734S Infection and inflammatory reaction due to implanted electronic neurostimulator, generator, sequela +T85735A Infection and inflammatory reaction due to cranial or spinal infusion catheter, initial encounter +T85735D Infection and inflammatory reaction due to cranial or spinal infusion catheter, subsequent encounter +T85735S Infection and inflammatory reaction due to cranial or spinal infusion catheter, sequela +T85738A Infection and inflammatory reaction due to other nervous system device, implant or graft, initial encounter +T85738D Infection and inflammatory reaction due to other nervous system device, implant or graft, subsequent encounter +T85738S Infection and inflammatory reaction due to other nervous system device, implant or graft, sequela +T8579XA Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts, initial encounter +T8579XD Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts, subsequent encounter +T8579XS Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts, sequela +T85810A Embolism due to nervous system prosthetic devices, implants and grafts, initial encounter +T85810D Embolism due to nervous system prosthetic devices, implants and grafts, subsequent encounter +T85810S Embolism due to nervous system prosthetic devices, implants and grafts, sequela +T85818A Embolism due to other internal prosthetic devices, implants and grafts, initial encounter +T85818D Embolism due to other internal prosthetic devices, implants and grafts, subsequent encounter +T85818S Embolism due to other internal prosthetic devices, implants and grafts, sequela +T8581XA Embolism due to internal prosthetic devices, implants and grafts, not elsewhere classified, initial encounter +T8581XD Embolism due to internal prosthetic devices, implants and grafts, not elsewhere classified, subsequent encounter +T8581XS Embolism due to internal prosthetic devices, implants and grafts, not elsewhere classified, sequela +T85820A Fibrosis due to nervous system prosthetic devices, implants and grafts, initial encounter +T85820D Fibrosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter +T85820S Fibrosis due to nervous system prosthetic devices, implants and grafts, sequela +T85828A Fibrosis due to other internal prosthetic devices, implants and grafts, initial encounter +T85828D Fibrosis due to other internal prosthetic devices, implants and grafts, subsequent encounter +T85828S Fibrosis due to other internal prosthetic devices, implants and grafts, sequela +T8582XA Fibrosis due to internal prosthetic devices, implants and grafts, not elsewhere classified, initial encounter +T8582XD Fibrosis due to internal prosthetic devices, implants and grafts, not elsewhere classified, subsequent encounter +T8582XS Fibrosis due to internal prosthetic devices, implants and grafts, not elsewhere classified, sequela +T85830A Hemorrhage due to nervous system prosthetic devices, implants and grafts, initial encounter +T85830D Hemorrhage due to nervous system prosthetic devices, implants and grafts, subsequent encounter +T85830S Hemorrhage due to nervous system prosthetic devices, implants and grafts, sequela +T85838A Hemorrhage due to other internal prosthetic devices, implants and grafts, initial encounter +T85838D Hemorrhage due to other internal prosthetic devices, implants and grafts, subsequent encounter +T85838S Hemorrhage due to other internal prosthetic devices, implants and grafts, sequela +T8583XA Hemorrhage due to internal prosthetic devices, implants and grafts, not elsewhere classified, initial encounter +T8583XD Hemorrhage due to internal prosthetic devices, implants and grafts, not elsewhere classified, subsequent encounter +T8583XS Hemorrhage due to internal prosthetic devices, implants and grafts, not elsewhere classified, sequela +T85840A Pain due to nervous system prosthetic devices, implants and grafts, initial encounter +T85840D Pain due to nervous system prosthetic devices, implants and grafts, subsequent encounter +T85840S Pain due to nervous system prosthetic devices, implants and grafts, sequela +T85848A Pain due to other internal prosthetic devices, implants and grafts, initial encounter +T85848D Pain due to other internal prosthetic devices, implants and grafts, subsequent encounter +T85848S Pain due to other internal prosthetic devices, implants and grafts, sequela +T8584XA Pain due to internal prosthetic devices, implants and grafts, not elsewhere classified, initial encounter +T8584XD Pain due to internal prosthetic devices, implants and grafts, not elsewhere classified, subsequent encounter +T8584XS Pain due to internal prosthetic devices, implants and grafts, not elsewhere classified, sequela +T85850A Stenosis due to nervous system prosthetic devices, implants and grafts, initial encounter +T85850D Stenosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter +T85850S Stenosis due to nervous system prosthetic devices, implants and grafts, sequela +T85858A Stenosis due to other internal prosthetic devices, implants and grafts, initial encounter +T85858D Stenosis due to other internal prosthetic devices, implants and grafts, subsequent encounter +T85858S Stenosis due to other internal prosthetic devices, implants and grafts, sequela +T8585XA Stenosis due to internal prosthetic devices, implants and grafts, not elsewhere classified, initial encounter +T8585XD Stenosis due to internal prosthetic devices, implants and grafts, not elsewhere classified, subsequent encounter +T8585XS Stenosis due to internal prosthetic devices, implants and grafts, not elsewhere classified, sequela +T85860A Thrombosis due to nervous system prosthetic devices, implants and grafts, initial encounter +T85860D Thrombosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter +T85860S Thrombosis due to nervous system prosthetic devices, implants and grafts, sequela +T85868A Thrombosis due to other internal prosthetic devices, implants and grafts, initial encounter +T85868D Thrombosis due to other internal prosthetic devices, implants and grafts, subsequent encounter +T85868S Thrombosis due to other internal prosthetic devices, implants and grafts, sequela +T8586XA Thrombosis due to internal prosthetic devices, implants and grafts, not elsewhere classified, initial encounter +T8586XD Thrombosis due to internal prosthetic devices, implants and grafts, not elsewhere classified, subsequent encounter +T8586XS Thrombosis due to internal prosthetic devices, implants and grafts, not elsewhere classified, sequela +T85890A Other specified complication of nervous system prosthetic devices, implants and grafts, initial encounter +T85890D Other specified complication of nervous system prosthetic devices, implants and grafts, subsequent encounter +T85890S Other specified complication of nervous system prosthetic devices, implants and grafts, sequela +T85898A Other specified complication of other internal prosthetic devices, implants and grafts, initial encounter +T85898D Other specified complication of other internal prosthetic devices, implants and grafts, subsequent encounter +T85898S Other specified complication of other internal prosthetic devices, implants and grafts, sequela +T8589XA Other specified complication of internal prosthetic devices, implants and grafts, not elsewhere classified, initial encounter +T8589XD Other specified complication of internal prosthetic devices, implants and grafts, not elsewhere classified, subsequent encounter +T8589XS Other specified complication of internal prosthetic devices, implants and grafts, not elsewhere classified, sequela +T859XXA Unspecified complication of internal prosthetic device, implant and graft, initial encounter +T859XXD Unspecified complication of internal prosthetic device, implant and graft, subsequent encounter +T859XXS Unspecified complication of internal prosthetic device, implant and graft, sequela +T8600 Unspecified complication of bone marrow transplant +T8601 Bone marrow transplant rejection +T8602 Bone marrow transplant failure +T8603 Bone marrow transplant infection +T8609 Other complications of bone marrow transplant +T8610 Unspecified complication of kidney transplant +T8611 Kidney transplant rejection +T8612 Kidney transplant failure +T8613 Kidney transplant infection +T8619 Other complication of kidney transplant +T8620 Unspecified complication of heart transplant +T8621 Heart transplant rejection +T8622 Heart transplant failure +T8623 Heart transplant infection +T86290 Cardiac allograft vasculopathy +T86298 Other complications of heart transplant +T8630 Unspecified complication of heart-lung transplant +T8631 Heart-lung transplant rejection +T8632 Heart-lung transplant failure +T8633 Heart-lung transplant infection +T8639 Other complications of heart-lung transplant +T8640 Unspecified complication of liver transplant +T8641 Liver transplant rejection +T8642 Liver transplant failure +T8643 Liver transplant infection +T8649 Other complications of liver transplant +T865 Complications of stem cell transplant +T86810 Lung transplant rejection +T86811 Lung transplant failure +T86812 Lung transplant infection +T86818 Other complications of lung transplant +T86819 Unspecified complication of lung transplant +T86820 Skin graft (allograft) rejection +T86821 Skin graft (allograft) (autograft) failure +T86822 Skin graft (allograft) (autograft) infection +T86828 Other complications of skin graft (allograft) (autograft) +T86829 Unspecified complication of skin graft (allograft) (autograft) +T86830 Bone graft rejection +T86831 Bone graft failure +T86832 Bone graft infection +T86838 Other complications of bone graft +T86839 Unspecified complication of bone graft +T86840 Corneal transplant rejection +T86841 Corneal transplant failure +T86842 Corneal transplant infection +T86848 Other complications of corneal transplant +T86849 Unspecified complication of corneal transplant +T86850 Intestine transplant rejection +T86851 Intestine transplant failure +T86852 Intestine transplant infection +T86858 Other complications of intestine transplant +T86859 Unspecified complication of intestine transplant +T86890 Other transplanted tissue rejection +T86891 Other transplanted tissue failure +T86892 Other transplanted tissue infection +T86898 Other complications of other transplanted tissue +T86899 Unspecified complication of other transplanted tissue +T8690 Unspecified complication of unspecified transplanted organ and tissue +T8691 Unspecified transplanted organ and tissue rejection +T8692 Unspecified transplanted organ and tissue failure +T8693 Unspecified transplanted organ and tissue infection +T8699 Other complications of unspecified transplanted organ and tissue +T870X1 Complications of reattached (part of) right upper extremity +T870X2 Complications of reattached (part of) left upper extremity +T870X9 Complications of reattached (part of) unspecified upper extremity +T871X1 Complications of reattached (part of) right lower extremity +T871X2 Complications of reattached (part of) left lower extremity +T871X9 Complications of reattached (part of) unspecified lower extremity +T872 Complications of other reattached body part +T8730 Neuroma of amputation stump, unspecified extremity +T8731 Neuroma of amputation stump, right upper extremity +T8732 Neuroma of amputation stump, left upper extremity +T8733 Neuroma of amputation stump, right lower extremity +T8734 Neuroma of amputation stump, left lower extremity +T8740 Infection of amputation stump, unspecified extremity +T8741 Infection of amputation stump, right upper extremity +T8742 Infection of amputation stump, left upper extremity +T8743 Infection of amputation stump, right lower extremity +T8744 Infection of amputation stump, left lower extremity +T8750 Necrosis of amputation stump, unspecified extremity +T8751 Necrosis of amputation stump, right upper extremity +T8752 Necrosis of amputation stump, left upper extremity +T8753 Necrosis of amputation stump, right lower extremity +T8754 Necrosis of amputation stump, left lower extremity +T8781 Dehiscence of amputation stump +T8789 Other complications of amputation stump +T879 Unspecified complications of amputation stump +T880XXA Infection following immunization, initial encounter +T880XXD Infection following immunization, subsequent encounter +T880XXS Infection following immunization, sequela +T881XXA Other complications following immunization, not elsewhere classified, initial encounter +T881XXD Other complications following immunization, not elsewhere classified, subsequent encounter +T881XXS Other complications following immunization, not elsewhere classified, sequela +T882XXA Shock due to anesthesia, initial encounter +T882XXD Shock due to anesthesia, subsequent encounter +T882XXS Shock due to anesthesia, sequela +T883XXA Malignant hyperthermia due to anesthesia, initial encounter +T883XXD Malignant hyperthermia due to anesthesia, subsequent encounter +T883XXS Malignant hyperthermia due to anesthesia, sequela +T884XXA Failed or difficult intubation, initial encounter +T884XXD Failed or difficult intubation, subsequent encounter +T884XXS Failed or difficult intubation, sequela +T8851XA Hypothermia following anesthesia, initial encounter +T8851XD Hypothermia following anesthesia, subsequent encounter +T8851XS Hypothermia following anesthesia, sequela +T8852XA Failed moderate sedation during procedure, initial encounter +T8852XD Failed moderate sedation during procedure, subsequent encounter +T8852XS Failed moderate sedation during procedure, sequela +T8853XA Unintended awareness under general anesthesia during procedure, initial encounter +T8853XD Unintended awareness under general anesthesia during procedure, subsequent encounter +T8853XS Unintended awareness under general anesthesia during procedure, sequela +T8859XA Other complications of anesthesia, initial encounter +T8859XD Other complications of anesthesia, subsequent encounter +T8859XS Other complications of anesthesia, sequela +T886XXA Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered, initial encounter +T886XXD Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered, subsequent encounter +T886XXS Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered, sequela +U071 2019-nCoV acute respiratory disease +V0001XA Pedestrian on foot injured in collision with roller-skater, initial encounter +V0001XD Pedestrian on foot injured in collision with roller-skater, subsequent encounter +V0001XS Pedestrian on foot injured in collision with roller-skater, sequela +V0002XA Pedestrian on foot injured in collision with skateboarder, initial encounter +V0002XD Pedestrian on foot injured in collision with skateboarder, subsequent encounter +V0002XS Pedestrian on foot injured in collision with skateboarder, sequela +V0009XA Pedestrian on foot injured in collision with other pedestrian conveyance, initial encounter +V0009XD Pedestrian on foot injured in collision with other pedestrian conveyance, subsequent encounter +V0009XS Pedestrian on foot injured in collision with other pedestrian conveyance, sequela +V00111A Fall from in-line roller-skates, initial encounter +V00111D Fall from in-line roller-skates, subsequent encounter +V00111S Fall from in-line roller-skates, sequela +V00112A In-line roller-skater colliding with stationary object, initial encounter +V00112D In-line roller-skater colliding with stationary object, subsequent encounter +V00112S In-line roller-skater colliding with stationary object, sequela +V00118A Other in-line roller-skate accident, initial encounter +V00118D Other in-line roller-skate accident, subsequent encounter +V00118S Other in-line roller-skate accident, sequela +V00121A Fall from non-in-line roller-skates, initial encounter +V00121D Fall from non-in-line roller-skates, subsequent encounter +V00121S Fall from non-in-line roller-skates, sequela +V00122A Non-in-line roller-skater colliding with stationary object, initial encounter +V00122D Non-in-line roller-skater colliding with stationary object, subsequent encounter +V00122S Non-in-line roller-skater colliding with stationary object, sequela +V00128A Other non-in-line roller-skating accident, initial encounter +V00128D Other non-in-line roller-skating accident, subsequent encounter +V00128S Other non-in-line roller-skating accident, sequela +V00131A Fall from skateboard, initial encounter +V00131D Fall from skateboard, subsequent encounter +V00131S Fall from skateboard, sequela +V00132A Skateboarder colliding with stationary object, initial encounter +V00132D Skateboarder colliding with stationary object, subsequent encounter +V00132S Skateboarder colliding with stationary object, sequela +V00138A Other skateboard accident, initial encounter +V00138D Other skateboard accident, subsequent encounter +V00138S Other skateboard accident, sequela +V00141A Fall from scooter (nonmotorized), initial encounter +V00141D Fall from scooter (nonmotorized), subsequent encounter +V00141S Fall from scooter (nonmotorized), sequela +V00142A Scooter (nonmotorized) colliding with stationary object, initial encounter +V00142D Scooter (nonmotorized) colliding with stationary object, subsequent encounter +V00142S Scooter (nonmotorized) colliding with stationary object, sequela +V00148A Other scooter (nonmotorized) accident, initial encounter +V00148D Other scooter (nonmotorized) accident, subsequent encounter +V00148S Other scooter (nonmotorized) accident, sequela +V00151A Fall from heelies, initial encounter +V00151D Fall from heelies, subsequent encounter +V00151S Fall from heelies, sequela +V00152A Heelies colliding with stationary object, initial encounter +V00152D Heelies colliding with stationary object, subsequent encounter +V00152S Heelies colliding with stationary object, sequela +V00158A Other heelies accident, initial encounter +V00158D Other heelies accident, subsequent encounter +V00158S Other heelies accident, sequela +V00181A Fall from other rolling-type pedestrian conveyance, initial encounter +V00181D Fall from other rolling-type pedestrian conveyance, subsequent encounter +V00181S Fall from other rolling-type pedestrian conveyance, sequela +V00182A Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object, initial encounter +V00182D Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object, subsequent encounter +V00182S Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object, sequela +V00188A Other accident on other rolling-type pedestrian conveyance, initial encounter +V00188D Other accident on other rolling-type pedestrian conveyance, subsequent encounter +V00188S Other accident on other rolling-type pedestrian conveyance, sequela +V00211A Fall from ice-skates, initial encounter +V00211D Fall from ice-skates, subsequent encounter +V00211S Fall from ice-skates, sequela +V00212A Ice-skater colliding with stationary object, initial encounter +V00212D Ice-skater colliding with stationary object, subsequent encounter +V00212S Ice-skater colliding with stationary object, sequela +V00218A Other ice-skates accident, initial encounter +V00218D Other ice-skates accident, subsequent encounter +V00218S Other ice-skates accident, sequela +V00221A Fall from sled, initial encounter +V00221D Fall from sled, subsequent encounter +V00221S Fall from sled, sequela +V00222A Sledder colliding with stationary object, initial encounter +V00222D Sledder colliding with stationary object, subsequent encounter +V00222S Sledder colliding with stationary object, sequela +V00228A Other sled accident, initial encounter +V00228D Other sled accident, subsequent encounter +V00228S Other sled accident, sequela +V00281A Fall from other gliding-type pedestrian conveyance, initial encounter +V00281D Fall from other gliding-type pedestrian conveyance, subsequent encounter +V00281S Fall from other gliding-type pedestrian conveyance, sequela +V00282A Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, initial encounter +V00282D Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, subsequent encounter +V00282S Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, sequela +V00288A Other accident on other gliding-type pedestrian conveyance, initial encounter +V00288D Other accident on other gliding-type pedestrian conveyance, subsequent encounter +V00288S Other accident on other gliding-type pedestrian conveyance, sequela +V00311A Fall from snowboard, initial encounter +V00311D Fall from snowboard, subsequent encounter +V00311S Fall from snowboard, sequela +V00312A Snowboarder colliding with stationary object, initial encounter +V00312D Snowboarder colliding with stationary object, subsequent encounter +V00312S Snowboarder colliding with stationary object, sequela +V00318A Other snowboard accident, initial encounter +V00318D Other snowboard accident, subsequent encounter +V00318S Other snowboard accident, sequela +V00321A Fall from snow-skis, initial encounter +V00321D Fall from snow-skis, subsequent encounter +V00321S Fall from snow-skis, sequela +V00322A Snow-skier colliding with stationary object, initial encounter +V00322D Snow-skier colliding with stationary object, subsequent encounter +V00322S Snow-skier colliding with stationary object, sequela +V00328A Other snow-ski accident, initial encounter +V00328D Other snow-ski accident, subsequent encounter +V00328S Other snow-ski accident, sequela +V00381A Fall from other flat-bottomed pedestrian conveyance, initial encounter +V00381D Fall from other flat-bottomed pedestrian conveyance, subsequent encounter +V00381S Fall from other flat-bottomed pedestrian conveyance, sequela +V00382A Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object, initial encounter +V00382D Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object, subsequent encounter +V00382S Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object, sequela +V00388A Other accident on other flat-bottomed pedestrian conveyance, initial encounter +V00388D Other accident on other flat-bottomed pedestrian conveyance, subsequent encounter +V00388S Other accident on other flat-bottomed pedestrian conveyance, sequela +V00811A Fall from moving wheelchair (powered), initial encounter +V00811D Fall from moving wheelchair (powered), subsequent encounter +V00811S Fall from moving wheelchair (powered), sequela +V00812A Wheelchair (powered) colliding with stationary object, initial encounter +V00812D Wheelchair (powered) colliding with stationary object, subsequent encounter +V00812S Wheelchair (powered) colliding with stationary object, sequela +V00818A Other accident with wheelchair (powered), initial encounter +V00818D Other accident with wheelchair (powered), subsequent encounter +V00818S Other accident with wheelchair (powered), sequela +V00821A Fall from baby stroller, initial encounter +V00821D Fall from baby stroller, subsequent encounter +V00821S Fall from baby stroller, sequela +V00822A Baby stroller colliding with stationary object, initial encounter +V00822D Baby stroller colliding with stationary object, subsequent encounter +V00822S Baby stroller colliding with stationary object, sequela +V00828A Other accident with baby stroller, initial encounter +V00828D Other accident with baby stroller, subsequent encounter +V00828S Other accident with baby stroller, sequela +V00831A Fall from motorized mobility scooter, initial encounter +V00831D Fall from motorized mobility scooter, subsequent encounter +V00831S Fall from motorized mobility scooter, sequela +V00832A Motorized mobility scooter colliding with stationary object, initial encounter +V00832D Motorized mobility scooter colliding with stationary object, subsequent encounter +V00832S Motorized mobility scooter colliding with stationary object, sequela +V00838A Other accident with motorized mobility scooter, initial encounter +V00838D Other accident with motorized mobility scooter, subsequent encounter +V00838S Other accident with motorized mobility scooter, sequela +V00891A Fall from other pedestrian conveyance, initial encounter +V00891D Fall from other pedestrian conveyance, subsequent encounter +V00891S Fall from other pedestrian conveyance, sequela +V00892A Pedestrian on other pedestrian conveyance colliding with stationary object, initial encounter +V00892D Pedestrian on other pedestrian conveyance colliding with stationary object, subsequent encounter +V00892S Pedestrian on other pedestrian conveyance colliding with stationary object, sequela +V00898A Other accident on other pedestrian conveyance, initial encounter +V00898D Other accident on other pedestrian conveyance, subsequent encounter +V00898S Other accident on other pedestrian conveyance, sequela +V0100XA Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, initial encounter +V0100XD Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V0100XS Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, sequela +V0101XA Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident, initial encounter +V0101XD Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V0101XS Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident, sequela +V0102XA Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident, initial encounter +V0102XD Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V0102XS Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident, sequela +V0109XA Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident, initial encounter +V0109XD Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V0109XS Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident, sequela +V0110XA Pedestrian on foot injured in collision with pedal cycle in traffic accident, initial encounter +V0110XD Pedestrian on foot injured in collision with pedal cycle in traffic accident, subsequent encounter +V0110XS Pedestrian on foot injured in collision with pedal cycle in traffic accident, sequela +V0111XA Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident, initial encounter +V0111XD Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident, subsequent encounter +V0111XS Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident, sequela +V0112XA Pedestrian on skateboard injured in collision with pedal cycle in traffic accident, initial encounter +V0112XD Pedestrian on skateboard injured in collision with pedal cycle in traffic accident, subsequent encounter +V0112XS Pedestrian on skateboard injured in collision with pedal cycle in traffic accident, sequela +V0119XA Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident, initial encounter +V0119XD Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident, subsequent encounter +V0119XS Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident, sequela +V0190XA Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter +V0190XD Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0190XS Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela +V0191XA Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter +V0191XD Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0191XS Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela +V0192XA Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter +V0192XD Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0192XS Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela +V0199XA Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter +V0199XD Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0199XS Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela +V0200XA Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V0200XD Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V0200XS Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V0201XA Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V0201XD Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V0201XS Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V0202XA Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V0202XD Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V0202XS Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V0209XA Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V0209XD Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V0209XS Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V0210XA Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V0210XD Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V0210XS Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V0211XA Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V0211XD Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V0211XS Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V0212XA Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V0212XD Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V0212XS Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V0219XA Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V0219XD Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V0219XS Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V0290XA Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0290XD Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0290XS Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela +V0291XA Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0291XD Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0291XS Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela +V0292XA Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0292XD Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0292XS Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela +V0299XA Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0299XD Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0299XS Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela +V0300XA Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V0300XD Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V0300XS Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V0301XA Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V0301XD Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V0301XS Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V0302XA Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V0302XD Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V0302XS Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V0309XA Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V0309XD Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V0309XS Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V0310XA Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V0310XD Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V0310XS Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident, sequela +V0311XA Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V0311XD Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V0311XS Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident, sequela +V0312XA Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V0312XD Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V0312XS Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident, sequela +V0319XA Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V0319XD Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V0319XS Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident, sequela +V0390XA Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter +V0390XD Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter +V0390XS Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela +V0391XA Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter +V0391XD Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter +V0391XS Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela +V0392XA Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter +V0392XD Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter +V0392XS Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela +V0399XA Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter +V0399XD Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter +V0399XS Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela +V0400XA Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V0400XD Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V0400XS Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V0401XA Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V0401XD Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V0401XS Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V0402XA Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V0402XD Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V0402XS Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V0409XA Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V0409XD Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V0409XS Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V0410XA Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V0410XD Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V0410XS Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V0411XA Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V0411XD Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V0411XS Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V0412XA Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V0412XD Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V0412XS Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V0419XA Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V0419XD Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V0419XS Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V0490XA Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter +V0490XD Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter +V0490XS Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela +V0491XA Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter +V0491XD Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter +V0491XS Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela +V0492XA Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter +V0492XD Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter +V0492XS Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela +V0499XA Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter +V0499XD Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter +V0499XS Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela +V0500XA Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V0500XD Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V0500XS Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V0501XA Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V0501XD Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V0501XS Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V0502XA Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V0502XD Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V0502XS Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V0509XA Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V0509XD Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V0509XS Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V0510XA Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V0510XD Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V0510XS Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident, sequela +V0511XA Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V0511XD Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V0511XS Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident, sequela +V0512XA Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V0512XD Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V0512XS Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident, sequela +V0519XA Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V0519XD Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V0519XS Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident, sequela +V0590XA Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0590XD Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0590XS Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela +V0591XA Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0591XD Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0591XS Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela +V0592XA Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0592XD Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0592XS Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela +V0599XA Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0599XD Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0599XS Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela +V0600XA Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V0600XD Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V0600XS Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V0601XA Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V0601XD Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V0601XS Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V0602XA Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V0602XD Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V0602XS Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V0609XA Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V0609XD Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V0609XS Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V0610XA Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V0610XD Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V0610XS Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident, sequela +V0611XA Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V0611XD Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V0611XS Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident, sequela +V0612XA Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V0612XD Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V0612XS Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident, sequela +V0619XA Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V0619XD Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V0619XS Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident, sequela +V0690XA Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0690XD Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0690XS Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela +V0691XA Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0691XD Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0691XS Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela +V0692XA Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0692XD Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0692XS Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela +V0699XA Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter +V0699XD Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter +V0699XS Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela +V0900XA Pedestrian injured in nontraffic accident involving unspecified motor vehicles, initial encounter +V0900XD Pedestrian injured in nontraffic accident involving unspecified motor vehicles, subsequent encounter +V0900XS Pedestrian injured in nontraffic accident involving unspecified motor vehicles, sequela +V0901XA Pedestrian injured in nontraffic accident involving military vehicle, initial encounter +V0901XD Pedestrian injured in nontraffic accident involving military vehicle, subsequent encounter +V0901XS Pedestrian injured in nontraffic accident involving military vehicle, sequela +V0909XA Pedestrian injured in nontraffic accident involving other motor vehicles, initial encounter +V0909XD Pedestrian injured in nontraffic accident involving other motor vehicles, subsequent encounter +V0909XS Pedestrian injured in nontraffic accident involving other motor vehicles, sequela +V091XXA Pedestrian injured in unspecified nontraffic accident, initial encounter +V091XXD Pedestrian injured in unspecified nontraffic accident, subsequent encounter +V091XXS Pedestrian injured in unspecified nontraffic accident, sequela +V0920XA Pedestrian injured in traffic accident involving unspecified motor vehicles, initial encounter +V0920XD Pedestrian injured in traffic accident involving unspecified motor vehicles, subsequent encounter +V0920XS Pedestrian injured in traffic accident involving unspecified motor vehicles, sequela +V0921XA Pedestrian injured in traffic accident involving military vehicle, initial encounter +V0921XD Pedestrian injured in traffic accident involving military vehicle, subsequent encounter +V0921XS Pedestrian injured in traffic accident involving military vehicle, sequela +V0929XA Pedestrian injured in traffic accident involving other motor vehicles, initial encounter +V0929XD Pedestrian injured in traffic accident involving other motor vehicles, subsequent encounter +V0929XS Pedestrian injured in traffic accident involving other motor vehicles, sequela +V093XXA Pedestrian injured in unspecified traffic accident, initial encounter +V093XXD Pedestrian injured in unspecified traffic accident, subsequent encounter +V093XXS Pedestrian injured in unspecified traffic accident, sequela +V099XXA Pedestrian injured in unspecified transport accident, initial encounter +V099XXD Pedestrian injured in unspecified transport accident, subsequent encounter +V099XXS Pedestrian injured in unspecified transport accident, sequela +V100XXA Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V100XXD Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V100XXS Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident, sequela +V101XXA Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V101XXD Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V101XXS Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident, sequela +V102XXA Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V102XXD Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V102XXS Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident, sequela +V103XXA Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal, initial encounter +V103XXD Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal, subsequent encounter +V103XXS Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal, sequela +V104XXA Pedal cycle driver injured in collision with pedestrian or animal in traffic accident, initial encounter +V104XXD Pedal cycle driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V104XXS Pedal cycle driver injured in collision with pedestrian or animal in traffic accident, sequela +V105XXA Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident, initial encounter +V105XXD Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V105XXS Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident, sequela +V109XXA Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident, initial encounter +V109XXD Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V109XXS Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident, sequela +V110XXA Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident, initial encounter +V110XXD Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident, subsequent encounter +V110XXS Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident, sequela +V111XXA Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident, initial encounter +V111XXD Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident, subsequent encounter +V111XXS Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident, sequela +V112XXA Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident, initial encounter +V112XXD Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident, subsequent encounter +V112XXS Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident, sequela +V113XXA Person boarding or alighting a pedal cycle injured in collision with other pedal cycle, initial encounter +V113XXD Person boarding or alighting a pedal cycle injured in collision with other pedal cycle, subsequent encounter +V113XXS Person boarding or alighting a pedal cycle injured in collision with other pedal cycle, sequela +V114XXA Pedal cycle driver injured in collision with other pedal cycle in traffic accident, initial encounter +V114XXD Pedal cycle driver injured in collision with other pedal cycle in traffic accident, subsequent encounter +V114XXS Pedal cycle driver injured in collision with other pedal cycle in traffic accident, sequela +V115XXA Pedal cycle passenger injured in collision with other pedal cycle in traffic accident, initial encounter +V115XXD Pedal cycle passenger injured in collision with other pedal cycle in traffic accident, subsequent encounter +V115XXS Pedal cycle passenger injured in collision with other pedal cycle in traffic accident, sequela +V119XXA Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident, initial encounter +V119XXD Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident, subsequent encounter +V119XXS Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident, sequela +V120XXA Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V120XXD Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V120XXS Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V121XXA Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V121XXD Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V121XXS Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V122XXA Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V122XXD Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V122XXS Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V123XXA Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, initial encounter +V123XXD Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter +V123XXS Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, sequela +V124XXA Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V124XXD Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V124XXS Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V125XXA Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V125XXD Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V125XXS Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V129XXA Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V129XXD Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V129XXS Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V130XXA Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V130XXD Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V130XXS Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V131XXA Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V131XXD Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V131XXS Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V132XXA Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V132XXD Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V132XXS Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V133XXA Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van, initial encounter +V133XXD Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van, subsequent encounter +V133XXS Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van, sequela +V134XXA Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V134XXD Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V134XXS Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident, sequela +V135XXA Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V135XXD Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V135XXS Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident, sequela +V139XXA Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V139XXD Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V139XXS Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident, sequela +V140XXA Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V140XXD Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V140XXS Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V141XXA Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V141XXD Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V141XXS Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V142XXA Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V142XXD Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V142XXS Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V143XXA Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus, initial encounter +V143XXD Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus, subsequent encounter +V143XXS Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus, sequela +V144XXA Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V144XXD Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V144XXS Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V145XXA Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V145XXD Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V145XXS Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V149XXA Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V149XXD Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V149XXS Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V150XXA Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V150XXD Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V150XXS Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V151XXA Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V151XXD Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V151XXS Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V152XXA Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V152XXD Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V152XXS Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V153XXA Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle, initial encounter +V153XXD Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle, subsequent encounter +V153XXS Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle, sequela +V154XXA Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V154XXD Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V154XXS Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident, sequela +V155XXA Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V155XXD Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V155XXS Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident, sequela +V159XXA Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V159XXD Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V159XXS Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident, sequela +V160XXA Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V160XXD Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V160XXS Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V161XXA Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V161XXD Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V161XXS Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V162XXA Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V162XXD Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V162XXS Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V163XXA Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V163XXD Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V163XXS Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V164XXA Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V164XXD Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V164XXS Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela +V165XXA Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V165XXD Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V165XXS Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela +V169XXA Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V169XXD Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V169XXS Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident, sequela +V170XXA Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V170XXD Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V170XXS Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident, sequela +V171XXA Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V171XXD Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V171XXS Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident, sequela +V172XXA Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V172XXD Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V172XXS Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident, sequela +V173XXA Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object, initial encounter +V173XXD Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object, subsequent encounter +V173XXS Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object, sequela +V174XXA Pedal cycle driver injured in collision with fixed or stationary object in traffic accident, initial encounter +V174XXD Pedal cycle driver injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V174XXS Pedal cycle driver injured in collision with fixed or stationary object in traffic accident, sequela +V175XXA Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident, initial encounter +V175XXD Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V175XXS Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident, sequela +V179XXA Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident, initial encounter +V179XXD Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V179XXS Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident, sequela +V180XXA Pedal cycle driver injured in noncollision transport accident in nontraffic accident, initial encounter +V180XXD Pedal cycle driver injured in noncollision transport accident in nontraffic accident, subsequent encounter +V180XXS Pedal cycle driver injured in noncollision transport accident in nontraffic accident, sequela +V181XXA Pedal cycle passenger injured in noncollision transport accident in nontraffic accident, initial encounter +V181XXD Pedal cycle passenger injured in noncollision transport accident in nontraffic accident, subsequent encounter +V181XXS Pedal cycle passenger injured in noncollision transport accident in nontraffic accident, sequela +V182XXA Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident, initial encounter +V182XXD Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident, subsequent encounter +V182XXS Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident, sequela +V183XXA Person boarding or alighting a pedal cycle injured in noncollision transport accident, initial encounter +V183XXD Person boarding or alighting a pedal cycle injured in noncollision transport accident, subsequent encounter +V183XXS Person boarding or alighting a pedal cycle injured in noncollision transport accident, sequela +V184XXA Pedal cycle driver injured in noncollision transport accident in traffic accident, initial encounter +V184XXD Pedal cycle driver injured in noncollision transport accident in traffic accident, subsequent encounter +V184XXS Pedal cycle driver injured in noncollision transport accident in traffic accident, sequela +V185XXA Pedal cycle passenger injured in noncollision transport accident in traffic accident, initial encounter +V185XXD Pedal cycle passenger injured in noncollision transport accident in traffic accident, subsequent encounter +V185XXS Pedal cycle passenger injured in noncollision transport accident in traffic accident, sequela +V189XXA Unspecified pedal cyclist injured in noncollision transport accident in traffic accident, initial encounter +V189XXD Unspecified pedal cyclist injured in noncollision transport accident in traffic accident, subsequent encounter +V189XXS Unspecified pedal cyclist injured in noncollision transport accident in traffic accident, sequela +V1900XA Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V1900XD Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V1900XS Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V1909XA Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, initial encounter +V1909XD Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V1909XS Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, sequela +V1910XA Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V1910XD Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V1910XS Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V1919XA Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter +V1919XD Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V1919XS Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela +V1920XA Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V1920XD Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V1920XS Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V1929XA Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, initial encounter +V1929XD Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V1929XS Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, sequela +V193XXA Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, initial encounter +V193XXD Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter +V193XXS Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, sequela +V1940XA Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V1940XD Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V1940XS Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela +V1949XA Pedal cycle driver injured in collision with other motor vehicles in traffic accident, initial encounter +V1949XD Pedal cycle driver injured in collision with other motor vehicles in traffic accident, subsequent encounter +V1949XS Pedal cycle driver injured in collision with other motor vehicles in traffic accident, sequela +V1950XA Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V1950XD Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V1950XS Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, sequela +V1959XA Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, initial encounter +V1959XD Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter +V1959XS Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, sequela +V1960XA Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V1960XD Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V1960XS Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, sequela +V1969XA Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, initial encounter +V1969XD Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, subsequent encounter +V1969XS Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, sequela +V1981XA Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle, initial encounter +V1981XD Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle, subsequent encounter +V1981XS Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle, sequela +V1988XA Pedal cyclist (driver) (passenger) injured in other specified transport accidents, initial encounter +V1988XD Pedal cyclist (driver) (passenger) injured in other specified transport accidents, subsequent encounter +V1988XS Pedal cyclist (driver) (passenger) injured in other specified transport accidents, sequela +V199XXA Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, initial encounter +V199XXD Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, subsequent encounter +V199XXS Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, sequela +V200XXA Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V200XXD Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V200XXS Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident, sequela +V201XXA Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V201XXD Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V201XXS Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident, sequela +V202XXA Unspecified motorcycle rider injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V202XXD Unspecified motorcycle rider injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V202XXS Unspecified motorcycle rider injured in collision with pedestrian or animal in nontraffic accident, sequela +V203XXA Person boarding or alighting a motorcycle injured in collision with pedestrian or animal, initial encounter +V203XXD Person boarding or alighting a motorcycle injured in collision with pedestrian or animal, subsequent encounter +V203XXS Person boarding or alighting a motorcycle injured in collision with pedestrian or animal, sequela +V204XXA Motorcycle driver injured in collision with pedestrian or animal in traffic accident, initial encounter +V204XXD Motorcycle driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V204XXS Motorcycle driver injured in collision with pedestrian or animal in traffic accident, sequela +V205XXA Motorcycle passenger injured in collision with pedestrian or animal in traffic accident, initial encounter +V205XXD Motorcycle passenger injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V205XXS Motorcycle passenger injured in collision with pedestrian or animal in traffic accident, sequela +V209XXA Unspecified motorcycle rider injured in collision with pedestrian or animal in traffic accident, initial encounter +V209XXD Unspecified motorcycle rider injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V209XXS Unspecified motorcycle rider injured in collision with pedestrian or animal in traffic accident, sequela +V210XXA Motorcycle driver injured in collision with pedal cycle in nontraffic accident, initial encounter +V210XXD Motorcycle driver injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V210XXS Motorcycle driver injured in collision with pedal cycle in nontraffic accident, sequela +V211XXA Motorcycle passenger injured in collision with pedal cycle in nontraffic accident, initial encounter +V211XXD Motorcycle passenger injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V211XXS Motorcycle passenger injured in collision with pedal cycle in nontraffic accident, sequela +V212XXA Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident, initial encounter +V212XXD Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V212XXS Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident, sequela +V213XXA Person boarding or alighting a motorcycle injured in collision with pedal cycle, initial encounter +V213XXD Person boarding or alighting a motorcycle injured in collision with pedal cycle, subsequent encounter +V213XXS Person boarding or alighting a motorcycle injured in collision with pedal cycle, sequela +V214XXA Motorcycle driver injured in collision with pedal cycle in traffic accident, initial encounter +V214XXD Motorcycle driver injured in collision with pedal cycle in traffic accident, subsequent encounter +V214XXS Motorcycle driver injured in collision with pedal cycle in traffic accident, sequela +V215XXA Motorcycle passenger injured in collision with pedal cycle in traffic accident, initial encounter +V215XXD Motorcycle passenger injured in collision with pedal cycle in traffic accident, subsequent encounter +V215XXS Motorcycle passenger injured in collision with pedal cycle in traffic accident, sequela +V219XXA Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident, initial encounter +V219XXD Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident, subsequent encounter +V219XXS Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident, sequela +V220XXA Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V220XXD Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V220XXS Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V221XXA Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V221XXD Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V221XXS Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V222XXA Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V222XXD Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V222XXS Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V223XXA Person boarding or alighting a motorcycle injured in collision with two- or three-wheeled motor vehicle, initial encounter +V223XXD Person boarding or alighting a motorcycle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter +V223XXS Person boarding or alighting a motorcycle injured in collision with two- or three-wheeled motor vehicle, sequela +V224XXA Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V224XXD Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V224XXS Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V225XXA Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V225XXD Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V225XXS Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V229XXA Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V229XXD Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V229XXS Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V230XXA Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V230XXD Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V230XXS Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V231XXA Motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V231XXD Motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V231XXS Motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V232XXA Unspecified motorcycle rider injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V232XXD Unspecified motorcycle rider injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V232XXS Unspecified motorcycle rider injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V233XXA Person boarding or alighting a motorcycle injured in collision with car, pick-up truck or van, initial encounter +V233XXD Person boarding or alighting a motorcycle injured in collision with car, pick-up truck or van, subsequent encounter +V233XXS Person boarding or alighting a motorcycle injured in collision with car, pick-up truck or van, sequela +V234XXA Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V234XXD Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V234XXS Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident, sequela +V235XXA Motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V235XXD Motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V235XXS Motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident, sequela +V239XXA Unspecified motorcycle rider injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V239XXD Unspecified motorcycle rider injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V239XXS Unspecified motorcycle rider injured in collision with car, pick-up truck or van in traffic accident, sequela +V240XXA Motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V240XXD Motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V240XXS Motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V241XXA Motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V241XXD Motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V241XXS Motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V242XXA Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V242XXD Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V242XXS Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V243XXA Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus, initial encounter +V243XXD Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus, subsequent encounter +V243XXS Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus, sequela +V244XXA Motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V244XXD Motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V244XXS Motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V245XXA Motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V245XXD Motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V245XXS Motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V249XXA Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V249XXD Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V249XXS Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V250XXA Motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V250XXD Motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V250XXS Motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V251XXA Motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V251XXD Motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V251XXS Motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V252XXA Unspecified motorcycle rider injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V252XXD Unspecified motorcycle rider injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V252XXS Unspecified motorcycle rider injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V253XXA Person boarding or alighting a motorcycle injured in collision with railway train or railway vehicle, initial encounter +V253XXD Person boarding or alighting a motorcycle injured in collision with railway train or railway vehicle, subsequent encounter +V253XXS Person boarding or alighting a motorcycle injured in collision with railway train or railway vehicle, sequela +V254XXA Motorcycle driver injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V254XXD Motorcycle driver injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V254XXS Motorcycle driver injured in collision with railway train or railway vehicle in traffic accident, sequela +V255XXA Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V255XXD Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V255XXS Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident, sequela +V259XXA Unspecified motorcycle rider injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V259XXD Unspecified motorcycle rider injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V259XXS Unspecified motorcycle rider injured in collision with railway train or railway vehicle in traffic accident, sequela +V260XXA Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V260XXD Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V260XXS Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V261XXA Motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V261XXD Motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V261XXS Motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V262XXA Unspecified motorcycle rider injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V262XXD Unspecified motorcycle rider injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V262XXS Unspecified motorcycle rider injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V263XXA Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle, initial encounter +V263XXD Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle, subsequent encounter +V263XXS Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle, sequela +V264XXA Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V264XXD Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V264XXS Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela +V265XXA Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V265XXD Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V265XXS Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela +V269XXA Unspecified motorcycle rider injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V269XXD Unspecified motorcycle rider injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V269XXS Unspecified motorcycle rider injured in collision with other nonmotor vehicle in traffic accident, sequela +V270XXA Motorcycle driver injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V270XXD Motorcycle driver injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V270XXS Motorcycle driver injured in collision with fixed or stationary object in nontraffic accident, sequela +V271XXA Motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V271XXD Motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V271XXS Motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident, sequela +V272XXA Unspecified motorcycle rider injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V272XXD Unspecified motorcycle rider injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V272XXS Unspecified motorcycle rider injured in collision with fixed or stationary object in nontraffic accident, sequela +V273XXA Person boarding or alighting a motorcycle injured in collision with fixed or stationary object, initial encounter +V273XXD Person boarding or alighting a motorcycle injured in collision with fixed or stationary object, subsequent encounter +V273XXS Person boarding or alighting a motorcycle injured in collision with fixed or stationary object, sequela +V274XXA Motorcycle driver injured in collision with fixed or stationary object in traffic accident, initial encounter +V274XXD Motorcycle driver injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V274XXS Motorcycle driver injured in collision with fixed or stationary object in traffic accident, sequela +V275XXA Motorcycle passenger injured in collision with fixed or stationary object in traffic accident, initial encounter +V275XXD Motorcycle passenger injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V275XXS Motorcycle passenger injured in collision with fixed or stationary object in traffic accident, sequela +V279XXA Unspecified motorcycle rider injured in collision with fixed or stationary object in traffic accident, initial encounter +V279XXD Unspecified motorcycle rider injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V279XXS Unspecified motorcycle rider injured in collision with fixed or stationary object in traffic accident, sequela +V280XXA Motorcycle driver injured in noncollision transport accident in nontraffic accident, initial encounter +V280XXD Motorcycle driver injured in noncollision transport accident in nontraffic accident, subsequent encounter +V280XXS Motorcycle driver injured in noncollision transport accident in nontraffic accident, sequela +V281XXA Motorcycle passenger injured in noncollision transport accident in nontraffic accident, initial encounter +V281XXD Motorcycle passenger injured in noncollision transport accident in nontraffic accident, subsequent encounter +V281XXS Motorcycle passenger injured in noncollision transport accident in nontraffic accident, sequela +V282XXA Unspecified motorcycle rider injured in noncollision transport accident in nontraffic accident, initial encounter +V282XXD Unspecified motorcycle rider injured in noncollision transport accident in nontraffic accident, subsequent encounter +V282XXS Unspecified motorcycle rider injured in noncollision transport accident in nontraffic accident, sequela +V283XXA Person boarding or alighting a motorcycle injured in noncollision transport accident, initial encounter +V283XXD Person boarding or alighting a motorcycle injured in noncollision transport accident, subsequent encounter +V283XXS Person boarding or alighting a motorcycle injured in noncollision transport accident, sequela +V284XXA Motorcycle driver injured in noncollision transport accident in traffic accident, initial encounter +V284XXD Motorcycle driver injured in noncollision transport accident in traffic accident, subsequent encounter +V284XXS Motorcycle driver injured in noncollision transport accident in traffic accident, sequela +V285XXA Motorcycle passenger injured in noncollision transport accident in traffic accident, initial encounter +V285XXD Motorcycle passenger injured in noncollision transport accident in traffic accident, subsequent encounter +V285XXS Motorcycle passenger injured in noncollision transport accident in traffic accident, sequela +V289XXA Unspecified motorcycle rider injured in noncollision transport accident in traffic accident, initial encounter +V289XXD Unspecified motorcycle rider injured in noncollision transport accident in traffic accident, subsequent encounter +V289XXS Unspecified motorcycle rider injured in noncollision transport accident in traffic accident, sequela +V2900XA Motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V2900XD Motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V2900XS Motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V2909XA Motorcycle driver injured in collision with other motor vehicles in nontraffic accident, initial encounter +V2909XD Motorcycle driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V2909XS Motorcycle driver injured in collision with other motor vehicles in nontraffic accident, sequela +V2910XA Motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V2910XD Motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V2910XS Motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V2919XA Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter +V2919XD Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V2919XS Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela +V2920XA Unspecified motorcycle rider injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V2920XD Unspecified motorcycle rider injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V2920XS Unspecified motorcycle rider injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V2929XA Unspecified motorcycle rider injured in collision with other motor vehicles in nontraffic accident, initial encounter +V2929XD Unspecified motorcycle rider injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V2929XS Unspecified motorcycle rider injured in collision with other motor vehicles in nontraffic accident, sequela +V293XXA Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident, initial encounter +V293XXD Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter +V293XXS Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident, sequela +V2940XA Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V2940XD Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V2940XS Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela +V2949XA Motorcycle driver injured in collision with other motor vehicles in traffic accident, initial encounter +V2949XD Motorcycle driver injured in collision with other motor vehicles in traffic accident, subsequent encounter +V2949XS Motorcycle driver injured in collision with other motor vehicles in traffic accident, sequela +V2950XA Motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V2950XD Motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V2950XS Motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, sequela +V2959XA Motorcycle passenger injured in collision with other motor vehicles in traffic accident, initial encounter +V2959XD Motorcycle passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter +V2959XS Motorcycle passenger injured in collision with other motor vehicles in traffic accident, sequela +V2960XA Unspecified motorcycle rider injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V2960XD Unspecified motorcycle rider injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V2960XS Unspecified motorcycle rider injured in collision with unspecified motor vehicles in traffic accident, sequela +V2969XA Unspecified motorcycle rider injured in collision with other motor vehicles in traffic accident, initial encounter +V2969XD Unspecified motorcycle rider injured in collision with other motor vehicles in traffic accident, subsequent encounter +V2969XS Unspecified motorcycle rider injured in collision with other motor vehicles in traffic accident, sequela +V2981XA Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle, initial encounter +V2981XD Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle, subsequent encounter +V2981XS Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle, sequela +V2988XA Motorcycle rider (driver) (passenger) injured in other specified transport accidents, initial encounter +V2988XD Motorcycle rider (driver) (passenger) injured in other specified transport accidents, subsequent encounter +V2988XS Motorcycle rider (driver) (passenger) injured in other specified transport accidents, sequela +V299XXA Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, initial encounter +V299XXD Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, subsequent encounter +V299XXS Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, sequela +V300XXA Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V300XXD Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V300XXS Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela +V301XXA Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V301XXD Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V301XXS Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela +V302XXA Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V302XXD Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V302XXS Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela +V303XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V303XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V303XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela +V304XXA Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, initial encounter +V304XXD Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, subsequent encounter +V304XXS Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, sequela +V305XXA Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter +V305XXD Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V305XXS Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela +V306XXA Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter +V306XXD Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V306XXS Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela +V307XXA Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter +V307XXD Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V307XXS Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela +V309XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter +V309XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V309XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela +V310XXA Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter +V310XXD Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V310XXS Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela +V311XXA Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter +V311XXD Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V311XXS Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela +V312XXA Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter +V312XXD Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V312XXS Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela +V313XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter +V313XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V313XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela +V314XXA Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, initial encounter +V314XXD Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, subsequent encounter +V314XXS Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, sequela +V315XXA Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter +V315XXD Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter +V315XXS Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela +V316XXA Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter +V316XXD Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter +V316XXS Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela +V317XXA Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter +V317XXD Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter +V317XXS Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela +V319XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter +V319XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter +V319XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela +V320XXA Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V320XXD Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V320XXS Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V321XXA Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V321XXD Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V321XXS Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V322XXA Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V322XXD Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V322XXS Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V323XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V323XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V323XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V324XXA Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter +V324XXD Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter +V324XXS Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, sequela +V325XXA Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V325XXD Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V325XXS Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V326XXA Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V326XXD Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V326XXS Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V327XXA Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V327XXD Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V327XXS Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V329XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V329XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V329XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V330XXA Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V330XXD Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V330XXS Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V331XXA Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V331XXD Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V331XXS Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V332XXA Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V332XXD Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V332XXS Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V333XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V333XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V333XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V334XXA Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, initial encounter +V334XXD Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, subsequent encounter +V334XXS Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, sequela +V335XXA Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V335XXD Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V335XXS Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela +V336XXA Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V336XXD Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V336XXS Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela +V337XXA Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V337XXD Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V337XXS Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela +V339XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V339XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V339XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela +V340XXA Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V340XXD Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V340XXS Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V341XXA Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V341XXD Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V341XXS Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V342XXA Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V342XXD Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V342XXS Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V343XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V343XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V343XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V344XXA Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, initial encounter +V344XXD Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, subsequent encounter +V344XXS Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, sequela +V345XXA Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V345XXD Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V345XXS Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V346XXA Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V346XXD Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V346XXS Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V347XXA Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V347XXD Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V347XXS Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V349XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V349XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V349XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V350XXA Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V350XXD Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V350XXS Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V351XXA Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V351XXD Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V351XXS Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V352XXA Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V352XXD Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V352XXS Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V353XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V353XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V353XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V354XXA Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, initial encounter +V354XXD Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, subsequent encounter +V354XXS Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, sequela +V355XXA Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V355XXD Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V355XXS Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela +V356XXA Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V356XXD Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V356XXS Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela +V357XXA Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V357XXD Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V357XXS Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela +V359XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V359XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V359XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela +V360XXA Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V360XXD Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V360XXS Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V361XXA Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V361XXD Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V361XXS Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V362XXA Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V362XXD Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V362XXS Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V363XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V363XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V363XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V364XXA Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, initial encounter +V364XXD Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, subsequent encounter +V364XXS Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, sequela +V365XXA Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V365XXD Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V365XXS Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela +V366XXA Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V366XXD Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V366XXS Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela +V367XXA Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V367XXD Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V367XXS Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela +V369XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V369XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V369XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela +V370XXA Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V370XXD Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V370XXS Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela +V371XXA Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V371XXD Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V371XXS Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela +V372XXA Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V372XXD Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V372XXS Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela +V373XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V373XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V373XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela +V374XXA Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, initial encounter +V374XXD Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, subsequent encounter +V374XXS Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, sequela +V375XXA Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter +V375XXD Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V375XXS Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela +V376XXA Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter +V376XXD Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V376XXS Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela +V377XXA Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter +V377XXD Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V377XXS Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela +V379XXA Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter +V379XXD Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V379XXS Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela +V380XXA Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter +V380XXD Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter +V380XXS Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela +V381XXA Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter +V381XXD Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter +V381XXS Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela +V382XXA Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter +V382XXD Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter +V382XXS Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela +V383XXA Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter +V383XXD Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter +V383XXS Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela +V384XXA Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, initial encounter +V384XXD Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, subsequent encounter +V384XXS Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, sequela +V385XXA Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter +V385XXD Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter +V385XXS Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela +V386XXA Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter +V386XXD Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter +V386XXS Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela +V387XXA Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter +V387XXD Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter +V387XXS Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela +V389XXA Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter +V389XXD Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter +V389XXS Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela +V3900XA Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V3900XD Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V3900XS Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V3909XA Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter +V3909XD Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V3909XS Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela +V3910XA Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V3910XD Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V3910XS Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V3919XA Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter +V3919XD Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V3919XS Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela +V3920XA Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V3920XD Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V3920XS Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V3929XA Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter +V3929XD Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V3929XS Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela +V393XXA Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, initial encounter +V393XXD Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, subsequent encounter +V393XXS Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, sequela +V3940XA Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V3940XD Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V3940XS Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela +V3949XA Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter +V3949XD Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter +V3949XS Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela +V3950XA Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V3950XD Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V3950XS Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela +V3959XA Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter +V3959XD Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter +V3959XS Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela +V3960XA Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V3960XD Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V3960XS Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela +V3969XA Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter +V3969XD Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter +V3969XS Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela +V3981XA Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, initial encounter +V3981XD Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, subsequent encounter +V3981XS Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, sequela +V3989XA Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, initial encounter +V3989XD Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, subsequent encounter +V3989XS Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, sequela +V399XXA Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, initial encounter +V399XXD Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, subsequent encounter +V399XXS Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, sequela +V400XXA Car driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V400XXD Car driver injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V400XXS Car driver injured in collision with pedestrian or animal in nontraffic accident, sequela +V401XXA Car passenger injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V401XXD Car passenger injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V401XXS Car passenger injured in collision with pedestrian or animal in nontraffic accident, sequela +V402XXA Person on outside of car injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V402XXD Person on outside of car injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V402XXS Person on outside of car injured in collision with pedestrian or animal in nontraffic accident, sequela +V403XXA Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V403XXD Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V403XXS Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident, sequela +V404XXA Person boarding or alighting a car injured in collision with pedestrian or animal, initial encounter +V404XXD Person boarding or alighting a car injured in collision with pedestrian or animal, subsequent encounter +V404XXS Person boarding or alighting a car injured in collision with pedestrian or animal, sequela +V405XXA Car driver injured in collision with pedestrian or animal in traffic accident, initial encounter +V405XXD Car driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V405XXS Car driver injured in collision with pedestrian or animal in traffic accident, sequela +V406XXA Car passenger injured in collision with pedestrian or animal in traffic accident, initial encounter +V406XXD Car passenger injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V406XXS Car passenger injured in collision with pedestrian or animal in traffic accident, sequela +V407XXA Person on outside of car injured in collision with pedestrian or animal in traffic accident, initial encounter +V407XXD Person on outside of car injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V407XXS Person on outside of car injured in collision with pedestrian or animal in traffic accident, sequela +V409XXA Unspecified car occupant injured in collision with pedestrian or animal in traffic accident, initial encounter +V409XXD Unspecified car occupant injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V409XXS Unspecified car occupant injured in collision with pedestrian or animal in traffic accident, sequela +V410XXA Car driver injured in collision with pedal cycle in nontraffic accident, initial encounter +V410XXD Car driver injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V410XXS Car driver injured in collision with pedal cycle in nontraffic accident, sequela +V411XXA Car passenger injured in collision with pedal cycle in nontraffic accident, initial encounter +V411XXD Car passenger injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V411XXS Car passenger injured in collision with pedal cycle in nontraffic accident, sequela +V412XXA Person on outside of car injured in collision with pedal cycle in nontraffic accident, initial encounter +V412XXD Person on outside of car injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V412XXS Person on outside of car injured in collision with pedal cycle in nontraffic accident, sequela +V413XXA Unspecified car occupant injured in collision with pedal cycle in nontraffic accident, initial encounter +V413XXD Unspecified car occupant injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V413XXS Unspecified car occupant injured in collision with pedal cycle in nontraffic accident, sequela +V414XXA Person boarding or alighting a car injured in collision with pedal cycle, initial encounter +V414XXD Person boarding or alighting a car injured in collision with pedal cycle, subsequent encounter +V414XXS Person boarding or alighting a car injured in collision with pedal cycle, sequela +V415XXA Car driver injured in collision with pedal cycle in traffic accident, initial encounter +V415XXD Car driver injured in collision with pedal cycle in traffic accident, subsequent encounter +V415XXS Car driver injured in collision with pedal cycle in traffic accident, sequela +V416XXA Car passenger injured in collision with pedal cycle in traffic accident, initial encounter +V416XXD Car passenger injured in collision with pedal cycle in traffic accident, subsequent encounter +V416XXS Car passenger injured in collision with pedal cycle in traffic accident, sequela +V417XXA Person on outside of car injured in collision with pedal cycle in traffic accident, initial encounter +V417XXD Person on outside of car injured in collision with pedal cycle in traffic accident, subsequent encounter +V417XXS Person on outside of car injured in collision with pedal cycle in traffic accident, sequela +V419XXA Unspecified car occupant injured in collision with pedal cycle in traffic accident, initial encounter +V419XXD Unspecified car occupant injured in collision with pedal cycle in traffic accident, subsequent encounter +V419XXS Unspecified car occupant injured in collision with pedal cycle in traffic accident, sequela +V420XXA Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V420XXD Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V420XXS Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V421XXA Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V421XXD Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V421XXS Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V422XXA Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V422XXD Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V422XXS Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V423XXA Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V423XXD Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V423XXS Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V424XXA Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, initial encounter +V424XXD Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, subsequent encounter +V424XXS Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, sequela +V425XXA Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V425XXD Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V425XXS Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V426XXA Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V426XXD Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V426XXS Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V427XXA Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V427XXD Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V427XXS Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V429XXA Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V429XXD Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V429XXS Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V4301XA Car driver injured in collision with sport utility vehicle in nontraffic accident, initial encounter +V4301XD Car driver injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter +V4301XS Car driver injured in collision with sport utility vehicle in nontraffic accident, sequela +V4302XA Car driver injured in collision with other type car in nontraffic accident, initial encounter +V4302XD Car driver injured in collision with other type car in nontraffic accident, subsequent encounter +V4302XS Car driver injured in collision with other type car in nontraffic accident, sequela +V4303XA Car driver injured in collision with pick-up truck in nontraffic accident, initial encounter +V4303XD Car driver injured in collision with pick-up truck in nontraffic accident, subsequent encounter +V4303XS Car driver injured in collision with pick-up truck in nontraffic accident, sequela +V4304XA Car driver injured in collision with van in nontraffic accident, initial encounter +V4304XD Car driver injured in collision with van in nontraffic accident, subsequent encounter +V4304XS Car driver injured in collision with van in nontraffic accident, sequela +V4311XA Car passenger injured in collision with sport utility vehicle in nontraffic accident, initial encounter +V4311XD Car passenger injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter +V4311XS Car passenger injured in collision with sport utility vehicle in nontraffic accident, sequela +V4312XA Car passenger injured in collision with other type car in nontraffic accident, initial encounter +V4312XD Car passenger injured in collision with other type car in nontraffic accident, subsequent encounter +V4312XS Car passenger injured in collision with other type car in nontraffic accident, sequela +V4313XA Car passenger injured in collision with pick-up truck in nontraffic accident, initial encounter +V4313XD Car passenger injured in collision with pick-up truck in nontraffic accident, subsequent encounter +V4313XS Car passenger injured in collision with pick-up truck in nontraffic accident, sequela +V4314XA Car passenger injured in collision with van in nontraffic accident, initial encounter +V4314XD Car passenger injured in collision with van in nontraffic accident, subsequent encounter +V4314XS Car passenger injured in collision with van in nontraffic accident, sequela +V4321XA Person on outside of car injured in collision with sport utility vehicle in nontraffic accident, initial encounter +V4321XD Person on outside of car injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter +V4321XS Person on outside of car injured in collision with sport utility vehicle in nontraffic accident, sequela +V4322XA Person on outside of car injured in collision with other type car in nontraffic accident, initial encounter +V4322XD Person on outside of car injured in collision with other type car in nontraffic accident, subsequent encounter +V4322XS Person on outside of car injured in collision with other type car in nontraffic accident, sequela +V4323XA Person on outside of car injured in collision with pick-up truck in nontraffic accident, initial encounter +V4323XD Person on outside of car injured in collision with pick-up truck in nontraffic accident, subsequent encounter +V4323XS Person on outside of car injured in collision with pick-up truck in nontraffic accident, sequela +V4324XA Person on outside of car injured in collision with van in nontraffic accident, initial encounter +V4324XD Person on outside of car injured in collision with van in nontraffic accident, subsequent encounter +V4324XS Person on outside of car injured in collision with van in nontraffic accident, sequela +V4331XA Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident, initial encounter +V4331XD Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter +V4331XS Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident, sequela +V4332XA Unspecified car occupant injured in collision with other type car in nontraffic accident, initial encounter +V4332XD Unspecified car occupant injured in collision with other type car in nontraffic accident, subsequent encounter +V4332XS Unspecified car occupant injured in collision with other type car in nontraffic accident, sequela +V4333XA Unspecified car occupant injured in collision with pick-up truck in nontraffic accident, initial encounter +V4333XD Unspecified car occupant injured in collision with pick-up truck in nontraffic accident, subsequent encounter +V4333XS Unspecified car occupant injured in collision with pick-up truck in nontraffic accident, sequela +V4334XA Unspecified car occupant injured in collision with van in nontraffic accident, initial encounter +V4334XD Unspecified car occupant injured in collision with van in nontraffic accident, subsequent encounter +V4334XS Unspecified car occupant injured in collision with van in nontraffic accident, sequela +V4341XA Person boarding or alighting a car injured in collision with sport utility vehicle, initial encounter +V4341XD Person boarding or alighting a car injured in collision with sport utility vehicle, subsequent encounter +V4341XS Person boarding or alighting a car injured in collision with sport utility vehicle, sequela +V4342XA Person boarding or alighting a car injured in collision with other type car, initial encounter +V4342XD Person boarding or alighting a car injured in collision with other type car, subsequent encounter +V4342XS Person boarding or alighting a car injured in collision with other type car, sequela +V4343XA Person boarding or alighting a car injured in collision with pick-up truck, initial encounter +V4343XD Person boarding or alighting a car injured in collision with pick-up truck, subsequent encounter +V4343XS Person boarding or alighting a car injured in collision with pick-up truck, sequela +V4344XA Person boarding or alighting a car injured in collision with van, initial encounter +V4344XD Person boarding or alighting a car injured in collision with van, subsequent encounter +V4344XS Person boarding or alighting a car injured in collision with van, sequela +V4351XA Car driver injured in collision with sport utility vehicle in traffic accident, initial encounter +V4351XD Car driver injured in collision with sport utility vehicle in traffic accident, subsequent encounter +V4351XS Car driver injured in collision with sport utility vehicle in traffic accident, sequela +V4352XA Car driver injured in collision with other type car in traffic accident, initial encounter +V4352XD Car driver injured in collision with other type car in traffic accident, subsequent encounter +V4352XS Car driver injured in collision with other type car in traffic accident, sequela +V4353XA Car driver injured in collision with pick-up truck in traffic accident, initial encounter +V4353XD Car driver injured in collision with pick-up truck in traffic accident, subsequent encounter +V4353XS Car driver injured in collision with pick-up truck in traffic accident, sequela +V4354XA Car driver injured in collision with van in traffic accident, initial encounter +V4354XD Car driver injured in collision with van in traffic accident, subsequent encounter +V4354XS Car driver injured in collision with van in traffic accident, sequela +V4361XA Car passenger injured in collision with sport utility vehicle in traffic accident, initial encounter +V4361XD Car passenger injured in collision with sport utility vehicle in traffic accident, subsequent encounter +V4361XS Car passenger injured in collision with sport utility vehicle in traffic accident, sequela +V4362XA Car passenger injured in collision with other type car in traffic accident, initial encounter +V4362XD Car passenger injured in collision with other type car in traffic accident, subsequent encounter +V4362XS Car passenger injured in collision with other type car in traffic accident, sequela +V4363XA Car passenger injured in collision with pick-up truck in traffic accident, initial encounter +V4363XD Car passenger injured in collision with pick-up truck in traffic accident, subsequent encounter +V4363XS Car passenger injured in collision with pick-up truck in traffic accident, sequela +V4364XA Car passenger injured in collision with van in traffic accident, initial encounter +V4364XD Car passenger injured in collision with van in traffic accident, subsequent encounter +V4364XS Car passenger injured in collision with van in traffic accident, sequela +V4371XA Person on outside of car injured in collision with sport utility vehicle in traffic accident, initial encounter +V4371XD Person on outside of car injured in collision with sport utility vehicle in traffic accident, subsequent encounter +V4371XS Person on outside of car injured in collision with sport utility vehicle in traffic accident, sequela +V4372XA Person on outside of car injured in collision with other type car in traffic accident, initial encounter +V4372XD Person on outside of car injured in collision with other type car in traffic accident, subsequent encounter +V4372XS Person on outside of car injured in collision with other type car in traffic accident, sequela +V4373XA Person on outside of car injured in collision with pick-up truck in traffic accident, initial encounter +V4373XD Person on outside of car injured in collision with pick-up truck in traffic accident, subsequent encounter +V4373XS Person on outside of car injured in collision with pick-up truck in traffic accident, sequela +V4374XA Person on outside of car injured in collision with van in traffic accident, initial encounter +V4374XD Person on outside of car injured in collision with van in traffic accident, subsequent encounter +V4374XS Person on outside of car injured in collision with van in traffic accident, sequela +V4391XA Unspecified car occupant injured in collision with sport utility vehicle in traffic accident, initial encounter +V4391XD Unspecified car occupant injured in collision with sport utility vehicle in traffic accident, subsequent encounter +V4391XS Unspecified car occupant injured in collision with sport utility vehicle in traffic accident, sequela +V4392XA Unspecified car occupant injured in collision with other type car in traffic accident, initial encounter +V4392XD Unspecified car occupant injured in collision with other type car in traffic accident, subsequent encounter +V4392XS Unspecified car occupant injured in collision with other type car in traffic accident, sequela +V4393XA Unspecified car occupant injured in collision with pick-up truck in traffic accident, initial encounter +V4393XD Unspecified car occupant injured in collision with pick-up truck in traffic accident, subsequent encounter +V4393XS Unspecified car occupant injured in collision with pick-up truck in traffic accident, sequela +V4394XA Unspecified car occupant injured in collision with van in traffic accident, initial encounter +V4394XD Unspecified car occupant injured in collision with van in traffic accident, subsequent encounter +V4394XS Unspecified car occupant injured in collision with van in traffic accident, sequela +V440XXA Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V440XXD Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V440XXS Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V441XXA Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V441XXD Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V441XXS Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V442XXA Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V442XXD Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V442XXS Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V443XXA Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V443XXD Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V443XXS Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V444XXA Person boarding or alighting a car injured in collision with heavy transport vehicle or bus, initial encounter +V444XXD Person boarding or alighting a car injured in collision with heavy transport vehicle or bus, subsequent encounter +V444XXS Person boarding or alighting a car injured in collision with heavy transport vehicle or bus, sequela +V445XXA Car driver injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V445XXD Car driver injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V445XXS Car driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V446XXA Car passenger injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V446XXD Car passenger injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V446XXS Car passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V447XXA Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V447XXD Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V447XXS Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V449XXA Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V449XXD Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V449XXS Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V450XXA Car driver injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V450XXD Car driver injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V450XXS Car driver injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V451XXA Car passenger injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V451XXD Car passenger injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V451XXS Car passenger injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V452XXA Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V452XXD Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V452XXS Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V453XXA Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V453XXD Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V453XXS Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V454XXA Person boarding or alighting a car injured in collision with railway train or railway vehicle, initial encounter +V454XXD Person boarding or alighting a car injured in collision with railway train or railway vehicle, subsequent encounter +V454XXS Person boarding or alighting a car injured in collision with railway train or railway vehicle, sequela +V455XXA Car driver injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V455XXD Car driver injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V455XXS Car driver injured in collision with railway train or railway vehicle in traffic accident, sequela +V456XXA Car passenger injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V456XXD Car passenger injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V456XXS Car passenger injured in collision with railway train or railway vehicle in traffic accident, sequela +V457XXA Person on outside of car injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V457XXD Person on outside of car injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V457XXS Person on outside of car injured in collision with railway train or railway vehicle in traffic accident, sequela +V459XXA Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V459XXD Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V459XXS Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident, sequela +V460XXA Car driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V460XXD Car driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V460XXS Car driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V461XXA Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V461XXD Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V461XXS Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V462XXA Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V462XXD Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V462XXS Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V463XXA Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V463XXD Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V463XXS Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V464XXA Person boarding or alighting a car injured in collision with other nonmotor vehicle, initial encounter +V464XXD Person boarding or alighting a car injured in collision with other nonmotor vehicle, subsequent encounter +V464XXS Person boarding or alighting a car injured in collision with other nonmotor vehicle, sequela +V465XXA Car driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V465XXD Car driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V465XXS Car driver injured in collision with other nonmotor vehicle in traffic accident, sequela +V466XXA Car passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V466XXD Car passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V466XXS Car passenger injured in collision with other nonmotor vehicle in traffic accident, sequela +V467XXA Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V467XXD Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V467XXS Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, sequela +V469XXA Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V469XXD Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V469XXS Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, sequela +V4701XA Driver of sport utility vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V4701XD Driver of sport utility vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V4701XS Driver of sport utility vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela +V4702XA Driver of other type car injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V4702XD Driver of other type car injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V4702XS Driver of other type car injured in collision with fixed or stationary object in nontraffic accident, sequela +V470XXA Car driver injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V470XXD Car driver injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V470XXS Car driver injured in collision with fixed or stationary object in nontraffic accident, sequela +V4711XA Passenger of sport utility vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V4711XD Passenger of sport utility vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V4711XS Passenger of sport utility vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela +V4712XA Passenger of other type car injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V4712XD Passenger of other type car injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V4712XS Passenger of other type car injured in collision with fixed or stationary object in nontraffic accident, sequela +V471XXA Car passenger injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V471XXD Car passenger injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V471XXS Car passenger injured in collision with fixed or stationary object in nontraffic accident, sequela +V472XXA Person on outside of car injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V472XXD Person on outside of car injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V472XXS Person on outside of car injured in collision with fixed or stationary object in nontraffic accident, sequela +V4731XA Unspecified occupant of sport utility vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V4731XD Unspecified occupant of sport utility vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V4731XS Unspecified occupant of sport utility vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela +V4732XA Unspecified occupant of other type car injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V4732XD Unspecified occupant of other type car injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V4732XS Unspecified occupant of other type car injured in collision with fixed or stationary object in nontraffic accident, sequela +V473XXA Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V473XXD Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V473XXS Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident, sequela +V474XXA Person boarding or alighting a car injured in collision with fixed or stationary object, initial encounter +V474XXD Person boarding or alighting a car injured in collision with fixed or stationary object, subsequent encounter +V474XXS Person boarding or alighting a car injured in collision with fixed or stationary object, sequela +V4751XA Driver of sport utility vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter +V4751XD Driver of sport utility vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V4751XS Driver of sport utility vehicle injured in collision with fixed or stationary object in traffic accident, sequela +V4752XA Driver of other type car injured in collision with fixed or stationary object in traffic accident, initial encounter +V4752XD Driver of other type car injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V4752XS Driver of other type car injured in collision with fixed or stationary object in traffic accident, sequela +V475XXA Car driver injured in collision with fixed or stationary object in traffic accident, initial encounter +V475XXD Car driver injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V475XXS Car driver injured in collision with fixed or stationary object in traffic accident, sequela +V4761XA Passenger of sport utility vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter +V4761XD Passenger of sport utility vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V4761XS Passenger of sport utility vehicle injured in collision with fixed or stationary object in traffic accident, sequela +V4762XA Passenger of other type car injured in collision with fixed or stationary object in traffic accident, initial encounter +V4762XD Passenger of other type car injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V4762XS Passenger of other type car injured in collision with fixed or stationary object in traffic accident, sequela +V476XXA Car passenger injured in collision with fixed or stationary object in traffic accident, initial encounter +V476XXD Car passenger injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V476XXS Car passenger injured in collision with fixed or stationary object in traffic accident, sequela +V477XXA Person on outside of car injured in collision with fixed or stationary object in traffic accident, initial encounter +V477XXD Person on outside of car injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V477XXS Person on outside of car injured in collision with fixed or stationary object in traffic accident, sequela +V4791XA Unspecified occupant of sport utility vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter +V4791XD Unspecified occupant of sport utility vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V4791XS Unspecified occupant of sport utility vehicle injured in collision with fixed or stationary object in traffic accident, sequela +V4792XA Unspecified occupant of other type car injured in collision with fixed or stationary object in traffic accident, initial encounter +V4792XD Unspecified occupant of other type car injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V4792XS Unspecified occupant of other type car injured in collision with fixed or stationary object in traffic accident, sequela +V479XXA Unspecified car occupant injured in collision with fixed or stationary object in traffic accident, initial encounter +V479XXD Unspecified car occupant injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V479XXS Unspecified car occupant injured in collision with fixed or stationary object in traffic accident, sequela +V480XXA Car driver injured in noncollision transport accident in nontraffic accident, initial encounter +V480XXD Car driver injured in noncollision transport accident in nontraffic accident, subsequent encounter +V480XXS Car driver injured in noncollision transport accident in nontraffic accident, sequela +V481XXA Car passenger injured in noncollision transport accident in nontraffic accident, initial encounter +V481XXD Car passenger injured in noncollision transport accident in nontraffic accident, subsequent encounter +V481XXS Car passenger injured in noncollision transport accident in nontraffic accident, sequela +V482XXA Person on outside of car injured in noncollision transport accident in nontraffic accident, initial encounter +V482XXD Person on outside of car injured in noncollision transport accident in nontraffic accident, subsequent encounter +V482XXS Person on outside of car injured in noncollision transport accident in nontraffic accident, sequela +V483XXA Unspecified car occupant injured in noncollision transport accident in nontraffic accident, initial encounter +V483XXD Unspecified car occupant injured in noncollision transport accident in nontraffic accident, subsequent encounter +V483XXS Unspecified car occupant injured in noncollision transport accident in nontraffic accident, sequela +V484XXA Person boarding or alighting a car injured in noncollision transport accident, initial encounter +V484XXD Person boarding or alighting a car injured in noncollision transport accident, subsequent encounter +V484XXS Person boarding or alighting a car injured in noncollision transport accident, sequela +V485XXA Car driver injured in noncollision transport accident in traffic accident, initial encounter +V485XXD Car driver injured in noncollision transport accident in traffic accident, subsequent encounter +V485XXS Car driver injured in noncollision transport accident in traffic accident, sequela +V486XXA Car passenger injured in noncollision transport accident in traffic accident, initial encounter +V486XXD Car passenger injured in noncollision transport accident in traffic accident, subsequent encounter +V486XXS Car passenger injured in noncollision transport accident in traffic accident, sequela +V487XXA Person on outside of car injured in noncollision transport accident in traffic accident, initial encounter +V487XXD Person on outside of car injured in noncollision transport accident in traffic accident, subsequent encounter +V487XXS Person on outside of car injured in noncollision transport accident in traffic accident, sequela +V489XXA Unspecified car occupant injured in noncollision transport accident in traffic accident, initial encounter +V489XXD Unspecified car occupant injured in noncollision transport accident in traffic accident, subsequent encounter +V489XXS Unspecified car occupant injured in noncollision transport accident in traffic accident, sequela +V4900XA Driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V4900XD Driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V4900XS Driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V4909XA Driver injured in collision with other motor vehicles in nontraffic accident, initial encounter +V4909XD Driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V4909XS Driver injured in collision with other motor vehicles in nontraffic accident, sequela +V4910XA Passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V4910XD Passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V4910XS Passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V4919XA Passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter +V4919XD Passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V4919XS Passenger injured in collision with other motor vehicles in nontraffic accident, sequela +V4920XA Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V4920XD Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V4920XS Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V4929XA Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, initial encounter +V4929XD Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V4929XS Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, sequela +V493XXA Car occupant (driver) (passenger) injured in unspecified nontraffic accident, initial encounter +V493XXD Car occupant (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter +V493XXS Car occupant (driver) (passenger) injured in unspecified nontraffic accident, sequela +V4940XA Driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V4940XD Driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V4940XS Driver injured in collision with unspecified motor vehicles in traffic accident, sequela +V4949XA Driver injured in collision with other motor vehicles in traffic accident, initial encounter +V4949XD Driver injured in collision with other motor vehicles in traffic accident, subsequent encounter +V4949XS Driver injured in collision with other motor vehicles in traffic accident, sequela +V4950XA Passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V4950XD Passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V4950XS Passenger injured in collision with unspecified motor vehicles in traffic accident, sequela +V4959XA Passenger injured in collision with other motor vehicles in traffic accident, initial encounter +V4959XD Passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter +V4959XS Passenger injured in collision with other motor vehicles in traffic accident, sequela +V4960XA Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V4960XD Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V4960XS Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, sequela +V4969XA Unspecified car occupant injured in collision with other motor vehicles in traffic accident, initial encounter +V4969XD Unspecified car occupant injured in collision with other motor vehicles in traffic accident, subsequent encounter +V4969XS Unspecified car occupant injured in collision with other motor vehicles in traffic accident, sequela +V4981XA Car occupant (driver) (passenger) injured in transport accident with military vehicle, initial encounter +V4981XD Car occupant (driver) (passenger) injured in transport accident with military vehicle, subsequent encounter +V4981XS Car occupant (driver) (passenger) injured in transport accident with military vehicle, sequela +V4988XA Car occupant (driver) (passenger) injured in other specified transport accidents, initial encounter +V4988XD Car occupant (driver) (passenger) injured in other specified transport accidents, subsequent encounter +V4988XS Car occupant (driver) (passenger) injured in other specified transport accidents, sequela +V499XXA Car occupant (driver) (passenger) injured in unspecified traffic accident, initial encounter +V499XXD Car occupant (driver) (passenger) injured in unspecified traffic accident, subsequent encounter +V499XXS Car occupant (driver) (passenger) injured in unspecified traffic accident, sequela +V500XXA Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V500XXD Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V500XXS Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela +V501XXA Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V501XXD Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V501XXS Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela +V502XXA Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V502XXD Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V502XXS Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela +V503XXA Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V503XXD Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V503XXS Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela +V504XXA Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal, initial encounter +V504XXD Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal, subsequent encounter +V504XXS Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal, sequela +V505XXA Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter +V505XXD Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V505XXS Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela +V506XXA Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter +V506XXD Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V506XXS Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela +V507XXA Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter +V507XXD Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V507XXS Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela +V509XXA Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter +V509XXD Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V509XXS Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela +V510XXA Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter +V510XXD Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V510XXS Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela +V511XXA Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter +V511XXD Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V511XXS Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela +V512XXA Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter +V512XXD Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V512XXS Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela +V513XXA Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter +V513XXD Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V513XXS Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela +V514XXA Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle, initial encounter +V514XXD Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle, subsequent encounter +V514XXS Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle, sequela +V515XXA Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter +V515XXD Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter +V515XXS Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela +V516XXA Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter +V516XXD Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter +V516XXS Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela +V517XXA Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter +V517XXD Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter +V517XXS Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela +V519XXA Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter +V519XXD Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter +V519XXS Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela +V520XXA Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V520XXD Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V520XXS Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V521XXA Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V521XXD Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V521XXS Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V522XXA Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V522XXD Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V522XXS Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V523XXA Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V523XXD Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V523XXS Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V524XXA Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, initial encounter +V524XXD Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, subsequent encounter +V524XXS Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, sequela +V525XXA Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V525XXD Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V525XXS Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V526XXA Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V526XXD Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V526XXS Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V527XXA Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V527XXD Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V527XXS Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V529XXA Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V529XXD Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V529XXS Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V530XXA Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V530XXD Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V530XXS Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V531XXA Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V531XXD Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V531XXS Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V532XXA Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V532XXD Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V532XXS Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V533XXA Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V533XXD Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V533XXS Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V534XXA Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van, initial encounter +V534XXD Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van, subsequent encounter +V534XXS Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van, sequela +V535XXA Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V535XXD Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V535XXS Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela +V536XXA Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V536XXD Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V536XXS Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela +V537XXA Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V537XXD Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V537XXS Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela +V539XXA Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V539XXD Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V539XXS Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela +V540XXA Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V540XXD Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V540XXS Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V541XXA Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V541XXD Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V541XXS Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V542XXA Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V542XXD Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V542XXS Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V543XXA Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V543XXD Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V543XXS Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V544XXA Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus, initial encounter +V544XXD Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus, subsequent encounter +V544XXS Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus, sequela +V545XXA Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V545XXD Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V545XXS Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V546XXA Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V546XXD Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V546XXS Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V547XXA Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V547XXD Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V547XXS Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V549XXA Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V549XXD Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V549XXS Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V550XXA Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V550XXD Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V550XXS Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V551XXA Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V551XXD Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V551XXS Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V552XXA Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V552XXD Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V552XXS Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V553XXA Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V553XXD Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V553XXS Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V554XXA Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle, initial encounter +V554XXD Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle, subsequent encounter +V554XXS Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle, sequela +V555XXA Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V555XXD Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V555XXS Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela +V556XXA Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V556XXD Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V556XXS Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela +V557XXA Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V557XXD Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V557XXS Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela +V559XXA Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V559XXD Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V559XXS Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela +V560XXA Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V560XXD Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V560XXS Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V561XXA Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V561XXD Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V561XXS Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V562XXA Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V562XXD Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V562XXS Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V563XXA Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V563XXD Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V563XXS Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V564XXA Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, initial encounter +V564XXD Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, subsequent encounter +V564XXS Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, sequela +V565XXA Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V565XXD Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V565XXS Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela +V566XXA Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V566XXD Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V566XXS Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela +V567XXA Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V567XXD Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V567XXS Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela +V569XXA Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V569XXD Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V569XXS Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela +V570XXA Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V570XXD Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V570XXS Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela +V571XXA Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V571XXD Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V571XXS Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela +V572XXA Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V572XXD Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V572XXS Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela +V573XXA Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V573XXD Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V573XXS Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela +V574XXA Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object, initial encounter +V574XXD Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object, subsequent encounter +V574XXS Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object, sequela +V575XXA Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter +V575XXD Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V575XXS Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela +V576XXA Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter +V576XXD Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V576XXS Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela +V577XXA Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter +V577XXD Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V577XXS Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela +V579XXA Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter +V579XXD Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V579XXS Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela +V580XXA Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter +V580XXD Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter +V580XXS Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela +V581XXA Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter +V581XXD Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter +V581XXS Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela +V582XXA Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter +V582XXD Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter +V582XXS Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela +V583XXA Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter +V583XXD Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter +V583XXS Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela +V584XXA Person boarding or alighting a pick-up truck or van injured in noncollision transport accident, initial encounter +V584XXD Person boarding or alighting a pick-up truck or van injured in noncollision transport accident, subsequent encounter +V584XXS Person boarding or alighting a pick-up truck or van injured in noncollision transport accident, sequela +V585XXA Driver of pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter +V585XXD Driver of pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter +V585XXS Driver of pick-up truck or van injured in noncollision transport accident in traffic accident, sequela +V586XXA Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter +V586XXD Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter +V586XXS Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident, sequela +V587XXA Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter +V587XXD Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter +V587XXS Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident, sequela +V589XXA Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter +V589XXD Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter +V589XXS Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident, sequela +V5900XA Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V5900XD Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V5900XS Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V5909XA Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter +V5909XD Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V5909XS Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela +V5910XA Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V5910XD Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V5910XS Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V5919XA Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter +V5919XD Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V5919XS Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela +V5920XA Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V5920XD Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V5920XS Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V5929XA Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter +V5929XD Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V5929XS Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela +V593XXA Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident, initial encounter +V593XXD Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident, subsequent encounter +V593XXS Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident, sequela +V5940XA Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V5940XD Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V5940XS Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela +V5949XA Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter +V5949XD Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter +V5949XS Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela +V5950XA Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V5950XD Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V5950XS Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela +V5959XA Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter +V5959XD Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter +V5959XS Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela +V5960XA Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V5960XD Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V5960XS Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela +V5969XA Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter +V5969XD Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter +V5969XS Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela +V5981XA Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle, initial encounter +V5981XD Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle, subsequent encounter +V5981XS Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle, sequela +V5988XA Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents, initial encounter +V5988XD Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents, subsequent encounter +V5988XS Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents, sequela +V599XXA Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident, initial encounter +V599XXD Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident, subsequent encounter +V599XXS Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident, sequela +V600XXA Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V600XXD Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V600XXS Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela +V601XXA Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V601XXD Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V601XXS Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela +V602XXA Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V602XXD Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V602XXS Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela +V603XXA Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V603XXD Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V603XXS Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela +V604XXA Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal, initial encounter +V604XXD Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal, subsequent encounter +V604XXS Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal, sequela +V605XXA Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter +V605XXD Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V605XXS Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela +V606XXA Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter +V606XXD Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V606XXS Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela +V607XXA Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter +V607XXD Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V607XXS Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela +V609XXA Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter +V609XXD Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V609XXS Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela +V610XXA Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter +V610XXD Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V610XXS Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela +V611XXA Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter +V611XXD Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V611XXS Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela +V612XXA Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter +V612XXD Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V612XXS Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela +V613XXA Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter +V613XXD Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V613XXS Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela +V614XXA Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting, initial encounter +V614XXD Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting, subsequent encounter +V614XXS Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting, sequela +V615XXA Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter +V615XXD Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter +V615XXS Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela +V616XXA Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter +V616XXD Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter +V616XXS Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela +V617XXA Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter +V617XXD Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter +V617XXS Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela +V619XXA Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter +V619XXD Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter +V619XXS Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela +V620XXA Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V620XXD Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V620XXS Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V621XXA Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V621XXD Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V621XXS Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V622XXA Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V622XXD Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V622XXS Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V623XXA Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V623XXD Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V623XXS Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V624XXA Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter +V624XXD Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter +V624XXS Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, sequela +V625XXA Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V625XXD Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V625XXS Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V626XXA Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V626XXD Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V626XXS Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V627XXA Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V627XXD Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V627XXS Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V629XXA Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V629XXD Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V629XXS Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V630XXA Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V630XXD Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V630XXS Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V631XXA Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V631XXD Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V631XXS Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V632XXA Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V632XXD Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V632XXS Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V633XXA Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V633XXD Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V633XXS Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V634XXA Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van, initial encounter +V634XXD Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van, subsequent encounter +V634XXS Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van, sequela +V635XXA Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V635XXD Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V635XXS Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela +V636XXA Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V636XXD Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V636XXS Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela +V637XXA Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V637XXD Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V637XXS Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela +V639XXA Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V639XXD Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V639XXS Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela +V640XXA Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V640XXD Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V640XXS Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V641XXA Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V641XXD Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V641XXS Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V642XXA Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V642XXD Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V642XXS Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V643XXA Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V643XXD Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V643XXS Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V644XXA Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting, initial encounter +V644XXD Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting, subsequent encounter +V644XXS Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting, sequela +V645XXA Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V645XXD Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V645XXS Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V646XXA Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V646XXD Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V646XXS Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V647XXA Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V647XXD Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V647XXS Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V649XXA Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V649XXD Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V649XXS Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V650XXA Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V650XXD Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V650XXS Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V651XXA Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V651XXD Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V651XXS Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V652XXA Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V652XXD Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V652XXS Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V653XXA Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V653XXD Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V653XXS Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V654XXA Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle, initial encounter +V654XXD Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle, subsequent encounter +V654XXS Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle, sequela +V655XXA Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V655XXD Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V655XXS Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela +V656XXA Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V656XXD Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V656XXS Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela +V657XXA Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V657XXD Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V657XXS Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela +V659XXA Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V659XXD Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V659XXS Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela +V660XXA Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V660XXD Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V660XXS Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V661XXA Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V661XXD Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V661XXS Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V662XXA Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V662XXD Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V662XXS Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V663XXA Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V663XXD Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V663XXS Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V664XXA Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, initial encounter +V664XXD Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, subsequent encounter +V664XXS Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, sequela +V665XXA Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V665XXD Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V665XXS Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela +V666XXA Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V666XXD Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V666XXS Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela +V667XXA Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V667XXD Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V667XXS Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela +V669XXA Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V669XXD Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V669XXS Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela +V670XXA Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V670XXD Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V670XXS Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela +V671XXA Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V671XXD Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V671XXS Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela +V672XXA Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V672XXD Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V672XXS Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela +V673XXA Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V673XXD Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V673XXS Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela +V674XXA Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object, initial encounter +V674XXD Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object, subsequent encounter +V674XXS Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object, sequela +V675XXA Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter +V675XXD Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V675XXS Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela +V676XXA Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter +V676XXD Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V676XXS Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela +V677XXA Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter +V677XXD Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V677XXS Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela +V679XXA Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter +V679XXD Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V679XXS Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela +V680XXA Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter +V680XXD Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter +V680XXS Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela +V681XXA Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter +V681XXD Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter +V681XXS Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela +V682XXA Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter +V682XXD Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter +V682XXS Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela +V683XXA Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter +V683XXD Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter +V683XXS Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela +V684XXA Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident, initial encounter +V684XXD Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident, subsequent encounter +V684XXS Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident, sequela +V685XXA Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter +V685XXD Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter +V685XXS Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela +V686XXA Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter +V686XXD Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter +V686XXS Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela +V687XXA Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter +V687XXD Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter +V687XXS Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela +V689XXA Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter +V689XXD Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter +V689XXS Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela +V6900XA Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V6900XD Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V6900XS Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V6909XA Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter +V6909XD Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V6909XS Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela +V6910XA Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V6910XD Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V6910XS Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V6919XA Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter +V6919XD Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V6919XS Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela +V6920XA Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V6920XD Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V6920XS Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V6929XA Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter +V6929XD Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V6929XS Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela +V693XXA Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident, initial encounter +V693XXD Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident, subsequent encounter +V693XXS Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident, sequela +V6940XA Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V6940XD Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V6940XS Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela +V6949XA Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter +V6949XD Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter +V6949XS Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela +V6950XA Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V6950XD Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V6950XS Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela +V6959XA Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter +V6959XD Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter +V6959XS Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela +V6960XA Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V6960XD Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V6960XS Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela +V6969XA Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter +V6969XD Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter +V6969XS Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela +V6981XA Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle, initial encounter +V6981XD Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle, subsequent encounter +V6981XS Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle, sequela +V6988XA Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents, initial encounter +V6988XD Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents, subsequent encounter +V6988XS Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents, sequela +V699XXA Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident, initial encounter +V699XXD Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident, subsequent encounter +V699XXS Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident, sequela +V700XXA Driver of bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V700XXD Driver of bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V700XXS Driver of bus injured in collision with pedestrian or animal in nontraffic accident, sequela +V701XXA Passenger on bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V701XXD Passenger on bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V701XXS Passenger on bus injured in collision with pedestrian or animal in nontraffic accident, sequela +V702XXA Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V702XXD Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V702XXS Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident, sequela +V703XXA Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter +V703XXD Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter +V703XXS Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident, sequela +V704XXA Person boarding or alighting from bus injured in collision with pedestrian or animal, initial encounter +V704XXD Person boarding or alighting from bus injured in collision with pedestrian or animal, subsequent encounter +V704XXS Person boarding or alighting from bus injured in collision with pedestrian or animal, sequela +V705XXA Driver of bus injured in collision with pedestrian or animal in traffic accident, initial encounter +V705XXD Driver of bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V705XXS Driver of bus injured in collision with pedestrian or animal in traffic accident, sequela +V706XXA Passenger on bus injured in collision with pedestrian or animal in traffic accident, initial encounter +V706XXD Passenger on bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V706XXS Passenger on bus injured in collision with pedestrian or animal in traffic accident, sequela +V707XXA Person on outside of bus injured in collision with pedestrian or animal in traffic accident, initial encounter +V707XXD Person on outside of bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V707XXS Person on outside of bus injured in collision with pedestrian or animal in traffic accident, sequela +V709XXA Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident, initial encounter +V709XXD Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter +V709XXS Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident, sequela +V710XXA Driver of bus injured in collision with pedal cycle in nontraffic accident, initial encounter +V710XXD Driver of bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V710XXS Driver of bus injured in collision with pedal cycle in nontraffic accident, sequela +V711XXA Passenger on bus injured in collision with pedal cycle in nontraffic accident, initial encounter +V711XXD Passenger on bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V711XXS Passenger on bus injured in collision with pedal cycle in nontraffic accident, sequela +V712XXA Person on outside of bus injured in collision with pedal cycle in nontraffic accident, initial encounter +V712XXD Person on outside of bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V712XXS Person on outside of bus injured in collision with pedal cycle in nontraffic accident, sequela +V713XXA Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident, initial encounter +V713XXD Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter +V713XXS Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident, sequela +V714XXA Person boarding or alighting from bus injured in collision with pedal cycle, initial encounter +V714XXD Person boarding or alighting from bus injured in collision with pedal cycle, subsequent encounter +V714XXS Person boarding or alighting from bus injured in collision with pedal cycle, sequela +V715XXA Driver of bus injured in collision with pedal cycle in traffic accident, initial encounter +V715XXD Driver of bus injured in collision with pedal cycle in traffic accident, subsequent encounter +V715XXS Driver of bus injured in collision with pedal cycle in traffic accident, sequela +V716XXA Passenger on bus injured in collision with pedal cycle in traffic accident, initial encounter +V716XXD Passenger on bus injured in collision with pedal cycle in traffic accident, subsequent encounter +V716XXS Passenger on bus injured in collision with pedal cycle in traffic accident, sequela +V717XXA Person on outside of bus injured in collision with pedal cycle in traffic accident, initial encounter +V717XXD Person on outside of bus injured in collision with pedal cycle in traffic accident, subsequent encounter +V717XXS Person on outside of bus injured in collision with pedal cycle in traffic accident, sequela +V719XXA Unspecified occupant of bus injured in collision with pedal cycle in traffic accident, initial encounter +V719XXD Unspecified occupant of bus injured in collision with pedal cycle in traffic accident, subsequent encounter +V719XXS Unspecified occupant of bus injured in collision with pedal cycle in traffic accident, sequela +V720XXA Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V720XXD Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V720XXS Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V721XXA Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V721XXD Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V721XXS Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V722XXA Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V722XXD Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V722XXS Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V723XXA Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter +V723XXD Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter +V723XXS Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela +V724XXA Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, initial encounter +V724XXD Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, subsequent encounter +V724XXS Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, sequela +V725XXA Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V725XXD Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V725XXS Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V726XXA Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V726XXD Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V726XXS Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V727XXA Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V727XXD Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V727XXS Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V729XXA Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter +V729XXD Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter +V729XXS Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela +V730XXA Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V730XXD Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V730XXS Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V731XXA Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V731XXD Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V731XXS Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V732XXA Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V732XXD Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V732XXS Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V733XXA Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter +V733XXD Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter +V733XXS Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela +V734XXA Person boarding or alighting from bus injured in collision with car, pick-up truck or van, initial encounter +V734XXD Person boarding or alighting from bus injured in collision with car, pick-up truck or van, subsequent encounter +V734XXS Person boarding or alighting from bus injured in collision with car, pick-up truck or van, sequela +V735XXA Driver of bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V735XXD Driver of bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V735XXS Driver of bus injured in collision with car, pick-up truck or van in traffic accident, sequela +V736XXA Passenger on bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V736XXD Passenger on bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V736XXS Passenger on bus injured in collision with car, pick-up truck or van in traffic accident, sequela +V737XXA Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V737XXD Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V737XXS Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident, sequela +V739XXA Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter +V739XXD Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter +V739XXS Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident, sequela +V740XXA Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V740XXD Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V740XXS Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V741XXA Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V741XXD Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V741XXS Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V742XXA Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V742XXD Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V742XXS Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V743XXA Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter +V743XXD Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter +V743XXS Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +V744XXA Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus, initial encounter +V744XXD Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus, subsequent encounter +V744XXS Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus, sequela +V745XXA Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V745XXD Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V745XXS Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V746XXA Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V746XXD Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V746XXS Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V747XXA Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V747XXD Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V747XXS Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V749XXA Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter +V749XXD Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter +V749XXS Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela +V750XXA Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V750XXD Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V750XXS Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V751XXA Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V751XXD Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V751XXS Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V752XXA Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V752XXD Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V752XXS Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V753XXA Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter +V753XXD Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter +V753XXS Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela +V754XXA Person boarding or alighting from bus injured in collision with railway train or railway vehicle, initial encounter +V754XXD Person boarding or alighting from bus injured in collision with railway train or railway vehicle, subsequent encounter +V754XXS Person boarding or alighting from bus injured in collision with railway train or railway vehicle, sequela +V755XXA Driver of bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V755XXD Driver of bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V755XXS Driver of bus injured in collision with railway train or railway vehicle in traffic accident, sequela +V756XXA Passenger on bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V756XXD Passenger on bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V756XXS Passenger on bus injured in collision with railway train or railway vehicle in traffic accident, sequela +V757XXA Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V757XXD Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V757XXS Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident, sequela +V759XXA Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter +V759XXD Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter +V759XXS Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident, sequela +V760XXA Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V760XXD Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V760XXS Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V761XXA Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V761XXD Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V761XXS Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V762XXA Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V762XXD Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V762XXS Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V763XXA Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter +V763XXD Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter +V763XXS Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela +V764XXA Person boarding or alighting from bus injured in collision with other nonmotor vehicle, initial encounter +V764XXD Person boarding or alighting from bus injured in collision with other nonmotor vehicle, subsequent encounter +V764XXS Person boarding or alighting from bus injured in collision with other nonmotor vehicle, sequela +V765XXA Driver of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V765XXD Driver of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V765XXS Driver of bus injured in collision with other nonmotor vehicle in traffic accident, sequela +V766XXA Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V766XXD Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V766XXS Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, sequela +V767XXA Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V767XXD Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V767XXS Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, sequela +V769XXA Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter +V769XXD Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter +V769XXS Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, sequela +V770XXA Driver of bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V770XXD Driver of bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V770XXS Driver of bus injured in collision with fixed or stationary object in nontraffic accident, sequela +V771XXA Passenger on bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V771XXD Passenger on bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V771XXS Passenger on bus injured in collision with fixed or stationary object in nontraffic accident, sequela +V772XXA Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V772XXD Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V772XXS Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident, sequela +V773XXA Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter +V773XXD Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter +V773XXS Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident, sequela +V774XXA Person boarding or alighting from bus injured in collision with fixed or stationary object, initial encounter +V774XXD Person boarding or alighting from bus injured in collision with fixed or stationary object, subsequent encounter +V774XXS Person boarding or alighting from bus injured in collision with fixed or stationary object, sequela +V775XXA Driver of bus injured in collision with fixed or stationary object in traffic accident, initial encounter +V775XXD Driver of bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V775XXS Driver of bus injured in collision with fixed or stationary object in traffic accident, sequela +V776XXA Passenger on bus injured in collision with fixed or stationary object in traffic accident, initial encounter +V776XXD Passenger on bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V776XXS Passenger on bus injured in collision with fixed or stationary object in traffic accident, sequela +V777XXA Person on outside of bus injured in collision with fixed or stationary object in traffic accident, initial encounter +V777XXD Person on outside of bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V777XXS Person on outside of bus injured in collision with fixed or stationary object in traffic accident, sequela +V779XXA Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident, initial encounter +V779XXD Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter +V779XXS Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident, sequela +V780XXA Driver of bus injured in noncollision transport accident in nontraffic accident, initial encounter +V780XXD Driver of bus injured in noncollision transport accident in nontraffic accident, subsequent encounter +V780XXS Driver of bus injured in noncollision transport accident in nontraffic accident, sequela +V781XXA Passenger on bus injured in noncollision transport accident in nontraffic accident, initial encounter +V781XXD Passenger on bus injured in noncollision transport accident in nontraffic accident, subsequent encounter +V781XXS Passenger on bus injured in noncollision transport accident in nontraffic accident, sequela +V782XXA Person on outside of bus injured in noncollision transport accident in nontraffic accident, initial encounter +V782XXD Person on outside of bus injured in noncollision transport accident in nontraffic accident, subsequent encounter +V782XXS Person on outside of bus injured in noncollision transport accident in nontraffic accident, sequela +V783XXA Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident, initial encounter +V783XXD Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident, subsequent encounter +V783XXS Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident, sequela +V784XXA Person boarding or alighting from bus injured in noncollision transport accident, initial encounter +V784XXD Person boarding or alighting from bus injured in noncollision transport accident, subsequent encounter +V784XXS Person boarding or alighting from bus injured in noncollision transport accident, sequela +V785XXA Driver of bus injured in noncollision transport accident in traffic accident, initial encounter +V785XXD Driver of bus injured in noncollision transport accident in traffic accident, subsequent encounter +V785XXS Driver of bus injured in noncollision transport accident in traffic accident, sequela +V786XXA Passenger on bus injured in noncollision transport accident in traffic accident, initial encounter +V786XXD Passenger on bus injured in noncollision transport accident in traffic accident, subsequent encounter +V786XXS Passenger on bus injured in noncollision transport accident in traffic accident, sequela +V787XXA Person on outside of bus injured in noncollision transport accident in traffic accident, initial encounter +V787XXD Person on outside of bus injured in noncollision transport accident in traffic accident, subsequent encounter +V787XXS Person on outside of bus injured in noncollision transport accident in traffic accident, sequela +V789XXA Unspecified occupant of bus injured in noncollision transport accident in traffic accident, initial encounter +V789XXD Unspecified occupant of bus injured in noncollision transport accident in traffic accident, subsequent encounter +V789XXS Unspecified occupant of bus injured in noncollision transport accident in traffic accident, sequela +V7900XA Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V7900XD Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V7900XS Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V7909XA Driver of bus injured in collision with other motor vehicles in nontraffic accident, initial encounter +V7909XD Driver of bus injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V7909XS Driver of bus injured in collision with other motor vehicles in nontraffic accident, sequela +V7910XA Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V7910XD Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V7910XS Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V7919XA Passenger on bus injured in collision with other motor vehicles in nontraffic accident, initial encounter +V7919XD Passenger on bus injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V7919XS Passenger on bus injured in collision with other motor vehicles in nontraffic accident, sequela +V7920XA Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter +V7920XD Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter +V7920XS Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, sequela +V7929XA Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, initial encounter +V7929XD Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +V7929XS Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, sequela +V793XXA Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, initial encounter +V793XXD Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter +V793XXS Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, sequela +V7940XA Driver of bus injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V7940XD Driver of bus injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V7940XS Driver of bus injured in collision with unspecified motor vehicles in traffic accident, sequela +V7949XA Driver of bus injured in collision with other motor vehicles in traffic accident, initial encounter +V7949XD Driver of bus injured in collision with other motor vehicles in traffic accident, subsequent encounter +V7949XS Driver of bus injured in collision with other motor vehicles in traffic accident, sequela +V7950XA Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V7950XD Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V7950XS Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, sequela +V7959XA Passenger on bus injured in collision with other motor vehicles in traffic accident, initial encounter +V7959XD Passenger on bus injured in collision with other motor vehicles in traffic accident, subsequent encounter +V7959XS Passenger on bus injured in collision with other motor vehicles in traffic accident, sequela +V7960XA Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, initial encounter +V7960XD Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter +V7960XS Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, sequela +V7969XA Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, initial encounter +V7969XD Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, subsequent encounter +V7969XS Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, sequela +V7981XA Bus occupant (driver) (passenger) injured in transport accidents with military vehicle, initial encounter +V7981XD Bus occupant (driver) (passenger) injured in transport accidents with military vehicle, subsequent encounter +V7981XS Bus occupant (driver) (passenger) injured in transport accidents with military vehicle, sequela +V7988XA Bus occupant (driver) (passenger) injured in other specified transport accidents, initial encounter +V7988XD Bus occupant (driver) (passenger) injured in other specified transport accidents, subsequent encounter +V7988XS Bus occupant (driver) (passenger) injured in other specified transport accidents, sequela +V799XXA Bus occupant (driver) (passenger) injured in unspecified traffic accident, initial encounter +V799XXD Bus occupant (driver) (passenger) injured in unspecified traffic accident, subsequent encounter +V799XXS Bus occupant (driver) (passenger) injured in unspecified traffic accident, sequela +V80010A Animal-rider injured by fall from or being thrown from horse in noncollision accident, initial encounter +V80010D Animal-rider injured by fall from or being thrown from horse in noncollision accident, subsequent encounter +V80010S Animal-rider injured by fall from or being thrown from horse in noncollision accident, sequela +V80018A Animal-rider injured by fall from or being thrown from other animal in noncollision accident, initial encounter +V80018D Animal-rider injured by fall from or being thrown from other animal in noncollision accident, subsequent encounter +V80018S Animal-rider injured by fall from or being thrown from other animal in noncollision accident, sequela +V8002XA Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident, initial encounter +V8002XD Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident, subsequent encounter +V8002XS Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident, sequela +V8011XA Animal-rider injured in collision with pedestrian or animal, initial encounter +V8011XD Animal-rider injured in collision with pedestrian or animal, subsequent encounter +V8011XS Animal-rider injured in collision with pedestrian or animal, sequela +V8012XA Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, initial encounter +V8012XD Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, subsequent encounter +V8012XS Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, sequela +V8021XA Animal-rider injured in collision with pedal cycle, initial encounter +V8021XD Animal-rider injured in collision with pedal cycle, subsequent encounter +V8021XS Animal-rider injured in collision with pedal cycle, sequela +V8022XA Occupant of animal-drawn vehicle injured in collision with pedal cycle, initial encounter +V8022XD Occupant of animal-drawn vehicle injured in collision with pedal cycle, subsequent encounter +V8022XS Occupant of animal-drawn vehicle injured in collision with pedal cycle, sequela +V8031XA Animal-rider injured in collision with two- or three-wheeled motor vehicle, initial encounter +V8031XD Animal-rider injured in collision with two- or three-wheeled motor vehicle, subsequent encounter +V8031XS Animal-rider injured in collision with two- or three-wheeled motor vehicle, sequela +V8032XA Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter +V8032XD Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter +V8032XS Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, sequela +V8041XA Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, initial encounter +V8041XD Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, subsequent encounter +V8041XS Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, sequela +V8042XA Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, initial encounter +V8042XD Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, subsequent encounter +V8042XS Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, sequela +V8051XA Animal-rider injured in collision with other specified motor vehicle, initial encounter +V8051XD Animal-rider injured in collision with other specified motor vehicle, subsequent encounter +V8051XS Animal-rider injured in collision with other specified motor vehicle, sequela +V8052XA Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, initial encounter +V8052XD Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, subsequent encounter +V8052XS Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, sequela +V8061XA Animal-rider injured in collision with railway train or railway vehicle, initial encounter +V8061XD Animal-rider injured in collision with railway train or railway vehicle, subsequent encounter +V8061XS Animal-rider injured in collision with railway train or railway vehicle, sequela +V8062XA Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle, initial encounter +V8062XD Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle, subsequent encounter +V8062XS Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle, sequela +V80710A Animal-rider injured in collision with other animal being ridden, initial encounter +V80710D Animal-rider injured in collision with other animal being ridden, subsequent encounter +V80710S Animal-rider injured in collision with other animal being ridden, sequela +V80711A Occupant of animal-drawn vehicle injured in collision with animal being ridden, initial encounter +V80711D Occupant of animal-drawn vehicle injured in collision with animal being ridden, subsequent encounter +V80711S Occupant of animal-drawn vehicle injured in collision with animal being ridden, sequela +V80720A Animal-rider injured in collision with animal-drawn vehicle, initial encounter +V80720D Animal-rider injured in collision with animal-drawn vehicle, subsequent encounter +V80720S Animal-rider injured in collision with animal-drawn vehicle, sequela +V80721A Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle, initial encounter +V80721D Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle, subsequent encounter +V80721S Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle, sequela +V80730A Animal-rider injured in collision with streetcar, initial encounter +V80730D Animal-rider injured in collision with streetcar, subsequent encounter +V80730S Animal-rider injured in collision with streetcar, sequela +V80731A Occupant of animal-drawn vehicle injured in collision with streetcar, initial encounter +V80731D Occupant of animal-drawn vehicle injured in collision with streetcar, subsequent encounter +V80731S Occupant of animal-drawn vehicle injured in collision with streetcar, sequela +V80790A Animal-rider injured in collision with other nonmotor vehicles, initial encounter +V80790D Animal-rider injured in collision with other nonmotor vehicles, subsequent encounter +V80790S Animal-rider injured in collision with other nonmotor vehicles, sequela +V80791A Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles, initial encounter +V80791D Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles, subsequent encounter +V80791S Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles, sequela +V8081XA Animal-rider injured in collision with fixed or stationary object, initial encounter +V8081XD Animal-rider injured in collision with fixed or stationary object, subsequent encounter +V8081XS Animal-rider injured in collision with fixed or stationary object, sequela +V8082XA Occupant of animal-drawn vehicle injured in collision with fixed or stationary object, initial encounter +V8082XD Occupant of animal-drawn vehicle injured in collision with fixed or stationary object, subsequent encounter +V8082XS Occupant of animal-drawn vehicle injured in collision with fixed or stationary object, sequela +V80910A Animal-rider injured in transport accident with military vehicle, initial encounter +V80910D Animal-rider injured in transport accident with military vehicle, subsequent encounter +V80910S Animal-rider injured in transport accident with military vehicle, sequela +V80918A Animal-rider injured in other transport accident, initial encounter +V80918D Animal-rider injured in other transport accident, subsequent encounter +V80918S Animal-rider injured in other transport accident, sequela +V80919A Animal-rider injured in unspecified transport accident, initial encounter +V80919D Animal-rider injured in unspecified transport accident, subsequent encounter +V80919S Animal-rider injured in unspecified transport accident, sequela +V80920A Occupant of animal-drawn vehicle injured in transport accident with military vehicle, initial encounter +V80920D Occupant of animal-drawn vehicle injured in transport accident with military vehicle, subsequent encounter +V80920S Occupant of animal-drawn vehicle injured in transport accident with military vehicle, sequela +V80928A Occupant of animal-drawn vehicle injured in other transport accident, initial encounter +V80928D Occupant of animal-drawn vehicle injured in other transport accident, subsequent encounter +V80928S Occupant of animal-drawn vehicle injured in other transport accident, sequela +V80929A Occupant of animal-drawn vehicle injured in unspecified transport accident, initial encounter +V80929D Occupant of animal-drawn vehicle injured in unspecified transport accident, subsequent encounter +V80929S Occupant of animal-drawn vehicle injured in unspecified transport accident, sequela +V810XXA Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, initial encounter +V810XXD Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, subsequent encounter +V810XXS Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, sequela +V811XXA Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, initial encounter +V811XXD Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, subsequent encounter +V811XXS Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, sequela +V812XXA Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock, initial encounter +V812XXD Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock, subsequent encounter +V812XXS Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock, sequela +V813XXA Occupant of railway train or railway vehicle injured in collision with other object, initial encounter +V813XXD Occupant of railway train or railway vehicle injured in collision with other object, subsequent encounter +V813XXS Occupant of railway train or railway vehicle injured in collision with other object, sequela +V814XXA Person injured while boarding or alighting from railway train or railway vehicle, initial encounter +V814XXD Person injured while boarding or alighting from railway train or railway vehicle, subsequent encounter +V814XXS Person injured while boarding or alighting from railway train or railway vehicle, sequela +V815XXA Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle, initial encounter +V815XXD Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle, subsequent encounter +V815XXS Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle, sequela +V816XXA Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle, initial encounter +V816XXD Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle, subsequent encounter +V816XXS Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle, sequela +V817XXA Occupant of railway train or railway vehicle injured in derailment without antecedent collision, initial encounter +V817XXD Occupant of railway train or railway vehicle injured in derailment without antecedent collision, subsequent encounter +V817XXS Occupant of railway train or railway vehicle injured in derailment without antecedent collision, sequela +V8181XA Occupant of railway train or railway vehicle injured due to explosion or fire on train, initial encounter +V8181XD Occupant of railway train or railway vehicle injured due to explosion or fire on train, subsequent encounter +V8181XS Occupant of railway train or railway vehicle injured due to explosion or fire on train, sequela +V8182XA Occupant of railway train or railway vehicle injured due to object falling onto train, initial encounter +V8182XD Occupant of railway train or railway vehicle injured due to object falling onto train, subsequent encounter +V8182XS Occupant of railway train or railway vehicle injured due to object falling onto train, sequela +V8183XA Occupant of railway train or railway vehicle injured due to collision with military vehicle, initial encounter +V8183XD Occupant of railway train or railway vehicle injured due to collision with military vehicle, subsequent encounter +V8183XS Occupant of railway train or railway vehicle injured due to collision with military vehicle, sequela +V8189XA Occupant of railway train or railway vehicle injured due to other specified railway accident, initial encounter +V8189XD Occupant of railway train or railway vehicle injured due to other specified railway accident, subsequent encounter +V8189XS Occupant of railway train or railway vehicle injured due to other specified railway accident, sequela +V819XXA Occupant of railway train or railway vehicle injured in unspecified railway accident, initial encounter +V819XXD Occupant of railway train or railway vehicle injured in unspecified railway accident, subsequent encounter +V819XXS Occupant of railway train or railway vehicle injured in unspecified railway accident, sequela +V820XXA Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, initial encounter +V820XXD Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, subsequent encounter +V820XXS Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, sequela +V821XXA Occupant of streetcar injured in collision with motor vehicle in traffic accident, initial encounter +V821XXD Occupant of streetcar injured in collision with motor vehicle in traffic accident, subsequent encounter +V821XXS Occupant of streetcar injured in collision with motor vehicle in traffic accident, sequela +V822XXA Occupant of streetcar injured in collision with or hit by rolling stock, initial encounter +V822XXD Occupant of streetcar injured in collision with or hit by rolling stock, subsequent encounter +V822XXS Occupant of streetcar injured in collision with or hit by rolling stock, sequela +V823XXA Occupant of streetcar injured in collision with other object, initial encounter +V823XXD Occupant of streetcar injured in collision with other object, subsequent encounter +V823XXS Occupant of streetcar injured in collision with other object, sequela +V824XXA Person injured while boarding or alighting from streetcar, initial encounter +V824XXD Person injured while boarding or alighting from streetcar, subsequent encounter +V824XXS Person injured while boarding or alighting from streetcar, sequela +V825XXA Occupant of streetcar injured by fall in streetcar, initial encounter +V825XXD Occupant of streetcar injured by fall in streetcar, subsequent encounter +V825XXS Occupant of streetcar injured by fall in streetcar, sequela +V826XXA Occupant of streetcar injured by fall from streetcar, initial encounter +V826XXD Occupant of streetcar injured by fall from streetcar, subsequent encounter +V826XXS Occupant of streetcar injured by fall from streetcar, sequela +V827XXA Occupant of streetcar injured in derailment without antecedent collision, initial encounter +V827XXD Occupant of streetcar injured in derailment without antecedent collision, subsequent encounter +V827XXS Occupant of streetcar injured in derailment without antecedent collision, sequela +V828XXA Occupant of streetcar injured in other specified transport accidents, initial encounter +V828XXD Occupant of streetcar injured in other specified transport accidents, subsequent encounter +V828XXS Occupant of streetcar injured in other specified transport accidents, sequela +V829XXA Occupant of streetcar injured in unspecified traffic accident, initial encounter +V829XXD Occupant of streetcar injured in unspecified traffic accident, subsequent encounter +V829XXS Occupant of streetcar injured in unspecified traffic accident, sequela +V830XXA Driver of special industrial vehicle injured in traffic accident, initial encounter +V830XXD Driver of special industrial vehicle injured in traffic accident, subsequent encounter +V830XXS Driver of special industrial vehicle injured in traffic accident, sequela +V831XXA Passenger of special industrial vehicle injured in traffic accident, initial encounter +V831XXD Passenger of special industrial vehicle injured in traffic accident, subsequent encounter +V831XXS Passenger of special industrial vehicle injured in traffic accident, sequela +V832XXA Person on outside of special industrial vehicle injured in traffic accident, initial encounter +V832XXD Person on outside of special industrial vehicle injured in traffic accident, subsequent encounter +V832XXS Person on outside of special industrial vehicle injured in traffic accident, sequela +V833XXA Unspecified occupant of special industrial vehicle injured in traffic accident, initial encounter +V833XXD Unspecified occupant of special industrial vehicle injured in traffic accident, subsequent encounter +V833XXS Unspecified occupant of special industrial vehicle injured in traffic accident, sequela +V834XXA Person injured while boarding or alighting from special industrial vehicle, initial encounter +V834XXD Person injured while boarding or alighting from special industrial vehicle, subsequent encounter +V834XXS Person injured while boarding or alighting from special industrial vehicle, sequela +V835XXA Driver of special industrial vehicle injured in nontraffic accident, initial encounter +V835XXD Driver of special industrial vehicle injured in nontraffic accident, subsequent encounter +V835XXS Driver of special industrial vehicle injured in nontraffic accident, sequela +V836XXA Passenger of special industrial vehicle injured in nontraffic accident, initial encounter +V836XXD Passenger of special industrial vehicle injured in nontraffic accident, subsequent encounter +V836XXS Passenger of special industrial vehicle injured in nontraffic accident, sequela +V837XXA Person on outside of special industrial vehicle injured in nontraffic accident, initial encounter +V837XXD Person on outside of special industrial vehicle injured in nontraffic accident, subsequent encounter +V837XXS Person on outside of special industrial vehicle injured in nontraffic accident, sequela +V839XXA Unspecified occupant of special industrial vehicle injured in nontraffic accident, initial encounter +V839XXD Unspecified occupant of special industrial vehicle injured in nontraffic accident, subsequent encounter +V839XXS Unspecified occupant of special industrial vehicle injured in nontraffic accident, sequela +V840XXA Driver of special agricultural vehicle injured in traffic accident, initial encounter +V840XXD Driver of special agricultural vehicle injured in traffic accident, subsequent encounter +V840XXS Driver of special agricultural vehicle injured in traffic accident, sequela +V841XXA Passenger of special agricultural vehicle injured in traffic accident, initial encounter +V841XXD Passenger of special agricultural vehicle injured in traffic accident, subsequent encounter +V841XXS Passenger of special agricultural vehicle injured in traffic accident, sequela +V842XXA Person on outside of special agricultural vehicle injured in traffic accident, initial encounter +V842XXD Person on outside of special agricultural vehicle injured in traffic accident, subsequent encounter +V842XXS Person on outside of special agricultural vehicle injured in traffic accident, sequela +V843XXA Unspecified occupant of special agricultural vehicle injured in traffic accident, initial encounter +V843XXD Unspecified occupant of special agricultural vehicle injured in traffic accident, subsequent encounter +V843XXS Unspecified occupant of special agricultural vehicle injured in traffic accident, sequela +V844XXA Person injured while boarding or alighting from special agricultural vehicle, initial encounter +V844XXD Person injured while boarding or alighting from special agricultural vehicle, subsequent encounter +V844XXS Person injured while boarding or alighting from special agricultural vehicle, sequela +V845XXA Driver of special agricultural vehicle injured in nontraffic accident, initial encounter +V845XXD Driver of special agricultural vehicle injured in nontraffic accident, subsequent encounter +V845XXS Driver of special agricultural vehicle injured in nontraffic accident, sequela +V846XXA Passenger of special agricultural vehicle injured in nontraffic accident, initial encounter +V846XXD Passenger of special agricultural vehicle injured in nontraffic accident, subsequent encounter +V846XXS Passenger of special agricultural vehicle injured in nontraffic accident, sequela +V847XXA Person on outside of special agricultural vehicle injured in nontraffic accident, initial encounter +V847XXD Person on outside of special agricultural vehicle injured in nontraffic accident, subsequent encounter +V847XXS Person on outside of special agricultural vehicle injured in nontraffic accident, sequela +V849XXA Unspecified occupant of special agricultural vehicle injured in nontraffic accident, initial encounter +V849XXD Unspecified occupant of special agricultural vehicle injured in nontraffic accident, subsequent encounter +V849XXS Unspecified occupant of special agricultural vehicle injured in nontraffic accident, sequela +V850XXA Driver of special construction vehicle injured in traffic accident, initial encounter +V850XXD Driver of special construction vehicle injured in traffic accident, subsequent encounter +V850XXS Driver of special construction vehicle injured in traffic accident, sequela +V851XXA Passenger of special construction vehicle injured in traffic accident, initial encounter +V851XXD Passenger of special construction vehicle injured in traffic accident, subsequent encounter +V851XXS Passenger of special construction vehicle injured in traffic accident, sequela +V852XXA Person on outside of special construction vehicle injured in traffic accident, initial encounter +V852XXD Person on outside of special construction vehicle injured in traffic accident, subsequent encounter +V852XXS Person on outside of special construction vehicle injured in traffic accident, sequela +V853XXA Unspecified occupant of special construction vehicle injured in traffic accident, initial encounter +V853XXD Unspecified occupant of special construction vehicle injured in traffic accident, subsequent encounter +V853XXS Unspecified occupant of special construction vehicle injured in traffic accident, sequela +V854XXA Person injured while boarding or alighting from special construction vehicle, initial encounter +V854XXD Person injured while boarding or alighting from special construction vehicle, subsequent encounter +V854XXS Person injured while boarding or alighting from special construction vehicle, sequela +V855XXA Driver of special construction vehicle injured in nontraffic accident, initial encounter +V855XXD Driver of special construction vehicle injured in nontraffic accident, subsequent encounter +V855XXS Driver of special construction vehicle injured in nontraffic accident, sequela +V856XXA Passenger of special construction vehicle injured in nontraffic accident, initial encounter +V856XXD Passenger of special construction vehicle injured in nontraffic accident, subsequent encounter +V856XXS Passenger of special construction vehicle injured in nontraffic accident, sequela +V857XXA Person on outside of special construction vehicle injured in nontraffic accident, initial encounter +V857XXD Person on outside of special construction vehicle injured in nontraffic accident, subsequent encounter +V857XXS Person on outside of special construction vehicle injured in nontraffic accident, sequela +V859XXA Unspecified occupant of special construction vehicle injured in nontraffic accident, initial encounter +V859XXD Unspecified occupant of special construction vehicle injured in nontraffic accident, subsequent encounter +V859XXS Unspecified occupant of special construction vehicle injured in nontraffic accident, sequela +V8601XA Driver of ambulance or fire engine injured in traffic accident, initial encounter +V8601XD Driver of ambulance or fire engine injured in traffic accident, subsequent encounter +V8601XS Driver of ambulance or fire engine injured in traffic accident, sequela +V8602XA Driver of snowmobile injured in traffic accident, initial encounter +V8602XD Driver of snowmobile injured in traffic accident, subsequent encounter +V8602XS Driver of snowmobile injured in traffic accident, sequela +V8603XA Driver of dune buggy injured in traffic accident, initial encounter +V8603XD Driver of dune buggy injured in traffic accident, subsequent encounter +V8603XS Driver of dune buggy injured in traffic accident, sequela +V8604XA Driver of military vehicle injured in traffic accident, initial encounter +V8604XD Driver of military vehicle injured in traffic accident, subsequent encounter +V8604XS Driver of military vehicle injured in traffic accident, sequela +V8605XA Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter +V8605XD Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter +V8605XS Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela +V8606XA Driver of dirt bike or motor/cross bike injured in traffic accident, initial encounter +V8606XD Driver of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter +V8606XS Driver of dirt bike or motor/cross bike injured in traffic accident, sequela +V8609XA Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter +V8609XD Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter +V8609XS Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela +V8611XA Passenger of ambulance or fire engine injured in traffic accident, initial encounter +V8611XD Passenger of ambulance or fire engine injured in traffic accident, subsequent encounter +V8611XS Passenger of ambulance or fire engine injured in traffic accident, sequela +V8612XA Passenger of snowmobile injured in traffic accident, initial encounter +V8612XD Passenger of snowmobile injured in traffic accident, subsequent encounter +V8612XS Passenger of snowmobile injured in traffic accident, sequela +V8613XA Passenger of dune buggy injured in traffic accident, initial encounter +V8613XD Passenger of dune buggy injured in traffic accident, subsequent encounter +V8613XS Passenger of dune buggy injured in traffic accident, sequela +V8614XA Passenger of military vehicle injured in traffic accident, initial encounter +V8614XD Passenger of military vehicle injured in traffic accident, subsequent encounter +V8614XS Passenger of military vehicle injured in traffic accident, sequela +V8615XA Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter +V8615XD Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter +V8615XS Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela +V8616XA Passenger of dirt bike or motor/cross bike injured in traffic accident, initial encounter +V8616XD Passenger of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter +V8616XS Passenger of dirt bike or motor/cross bike injured in traffic accident, sequela +V8619XA Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter +V8619XD Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter +V8619XS Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela +V8621XA Person on outside of ambulance or fire engine injured in traffic accident, initial encounter +V8621XD Person on outside of ambulance or fire engine injured in traffic accident, subsequent encounter +V8621XS Person on outside of ambulance or fire engine injured in traffic accident, sequela +V8622XA Person on outside of snowmobile injured in traffic accident, initial encounter +V8622XD Person on outside of snowmobile injured in traffic accident, subsequent encounter +V8622XS Person on outside of snowmobile injured in traffic accident, sequela +V8623XA Person on outside of dune buggy injured in traffic accident, initial encounter +V8623XD Person on outside of dune buggy injured in traffic accident, subsequent encounter +V8623XS Person on outside of dune buggy injured in traffic accident, sequela +V8624XA Person on outside of military vehicle injured in traffic accident, initial encounter +V8624XD Person on outside of military vehicle injured in traffic accident, subsequent encounter +V8624XS Person on outside of military vehicle injured in traffic accident, sequela +V8625XA Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter +V8625XD Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter +V8625XS Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela +V8626XA Person on outside of dirt bike or motor/cross bike injured in traffic accident, initial encounter +V8626XD Person on outside of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter +V8626XS Person on outside of dirt bike or motor/cross bike injured in traffic accident, sequela +V8629XA Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter +V8629XD Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter +V8629XS Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela +V8631XA Unspecified occupant of ambulance or fire engine injured in traffic accident, initial encounter +V8631XD Unspecified occupant of ambulance or fire engine injured in traffic accident, subsequent encounter +V8631XS Unspecified occupant of ambulance or fire engine injured in traffic accident, sequela +V8632XA Unspecified occupant of snowmobile injured in traffic accident, initial encounter +V8632XD Unspecified occupant of snowmobile injured in traffic accident, subsequent encounter +V8632XS Unspecified occupant of snowmobile injured in traffic accident, sequela +V8633XA Unspecified occupant of dune buggy injured in traffic accident, initial encounter +V8633XD Unspecified occupant of dune buggy injured in traffic accident, subsequent encounter +V8633XS Unspecified occupant of dune buggy injured in traffic accident, sequela +V8634XA Unspecified occupant of military vehicle injured in traffic accident, initial encounter +V8634XD Unspecified occupant of military vehicle injured in traffic accident, subsequent encounter +V8634XS Unspecified occupant of military vehicle injured in traffic accident, sequela +V8635XA Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter +V8635XD Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter +V8635XS Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela +V8636XA Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, initial encounter +V8636XD Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter +V8636XS Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, sequela +V8639XA Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter +V8639XD Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter +V8639XS Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela +V8641XA Person injured while boarding or alighting from ambulance or fire engine, initial encounter +V8641XD Person injured while boarding or alighting from ambulance or fire engine, subsequent encounter +V8641XS Person injured while boarding or alighting from ambulance or fire engine, sequela +V8642XA Person injured while boarding or alighting from snowmobile, initial encounter +V8642XD Person injured while boarding or alighting from snowmobile, subsequent encounter +V8642XS Person injured while boarding or alighting from snowmobile, sequela +V8643XA Person injured while boarding or alighting from dune buggy, initial encounter +V8643XD Person injured while boarding or alighting from dune buggy, subsequent encounter +V8643XS Person injured while boarding or alighting from dune buggy, sequela +V8644XA Person injured while boarding or alighting from military vehicle, initial encounter +V8644XD Person injured while boarding or alighting from military vehicle, subsequent encounter +V8644XS Person injured while boarding or alighting from military vehicle, sequela +V8645XA Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV), initial encounter +V8645XD Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV), subsequent encounter +V8645XS Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV), sequela +V8646XA Person injured while boarding or alighting from a dirt bike or motor/cross bike, initial encounter +V8646XD Person injured while boarding or alighting from a dirt bike or motor/cross bike, subsequent encounter +V8646XS Person injured while boarding or alighting from a dirt bike or motor/cross bike, sequela +V8649XA Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, initial encounter +V8649XD Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, subsequent encounter +V8649XS Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, sequela +V8651XA Driver of ambulance or fire engine injured in nontraffic accident, initial encounter +V8651XD Driver of ambulance or fire engine injured in nontraffic accident, subsequent encounter +V8651XS Driver of ambulance or fire engine injured in nontraffic accident, sequela +V8652XA Driver of snowmobile injured in nontraffic accident, initial encounter +V8652XD Driver of snowmobile injured in nontraffic accident, subsequent encounter +V8652XS Driver of snowmobile injured in nontraffic accident, sequela +V8653XA Driver of dune buggy injured in nontraffic accident, initial encounter +V8653XD Driver of dune buggy injured in nontraffic accident, subsequent encounter +V8653XS Driver of dune buggy injured in nontraffic accident, sequela +V8654XA Driver of military vehicle injured in nontraffic accident, initial encounter +V8654XD Driver of military vehicle injured in nontraffic accident, subsequent encounter +V8654XS Driver of military vehicle injured in nontraffic accident, sequela +V8655XA Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter +V8655XD Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter +V8655XS Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela +V8656XA Driver of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter +V8656XD Driver of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter +V8656XS Driver of dirt bike or motor/cross bike injured in nontraffic accident, sequela +V8659XA Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter +V8659XD Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter +V8659XS Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela +V8661XA Passenger of ambulance or fire engine injured in nontraffic accident, initial encounter +V8661XD Passenger of ambulance or fire engine injured in nontraffic accident, subsequent encounter +V8661XS Passenger of ambulance or fire engine injured in nontraffic accident, sequela +V8662XA Passenger of snowmobile injured in nontraffic accident, initial encounter +V8662XD Passenger of snowmobile injured in nontraffic accident, subsequent encounter +V8662XS Passenger of snowmobile injured in nontraffic accident, sequela +V8663XA Passenger of dune buggy injured in nontraffic accident, initial encounter +V8663XD Passenger of dune buggy injured in nontraffic accident, subsequent encounter +V8663XS Passenger of dune buggy injured in nontraffic accident, sequela +V8664XA Passenger of military vehicle injured in nontraffic accident, initial encounter +V8664XD Passenger of military vehicle injured in nontraffic accident, subsequent encounter +V8664XS Passenger of military vehicle injured in nontraffic accident, sequela +V8665XA Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter +V8665XD Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter +V8665XS Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela +V8666XA Passenger of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter +V8666XD Passenger of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter +V8666XS Passenger of dirt bike or motor/cross bike injured in nontraffic accident, sequela +V8669XA Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter +V8669XD Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter +V8669XS Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela +V8671XA Person on outside of ambulance or fire engine injured in nontraffic accident, initial encounter +V8671XD Person on outside of ambulance or fire engine injured in nontraffic accident, subsequent encounter +V8671XS Person on outside of ambulance or fire engine injured in nontraffic accident, sequela +V8672XA Person on outside of snowmobile injured in nontraffic accident, initial encounter +V8672XD Person on outside of snowmobile injured in nontraffic accident, subsequent encounter +V8672XS Person on outside of snowmobile injured in nontraffic accident, sequela +V8673XA Person on outside of dune buggy injured in nontraffic accident, initial encounter +V8673XD Person on outside of dune buggy injured in nontraffic accident, subsequent encounter +V8673XS Person on outside of dune buggy injured in nontraffic accident, sequela +V8674XA Person on outside of military vehicle injured in nontraffic accident, initial encounter +V8674XD Person on outside of military vehicle injured in nontraffic accident, subsequent encounter +V8674XS Person on outside of military vehicle injured in nontraffic accident, sequela +V8675XA Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter +V8675XD Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter +V8675XS Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela +V8676XA Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter +V8676XD Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter +V8676XS Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, sequela +V8679XA Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, initial encounter +V8679XD Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, subsequent encounter +V8679XS Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, sequela +V8691XA Unspecified occupant of ambulance or fire engine injured in nontraffic accident, initial encounter +V8691XD Unspecified occupant of ambulance or fire engine injured in nontraffic accident, subsequent encounter +V8691XS Unspecified occupant of ambulance or fire engine injured in nontraffic accident, sequela +V8692XA Unspecified occupant of snowmobile injured in nontraffic accident, initial encounter +V8692XD Unspecified occupant of snowmobile injured in nontraffic accident, subsequent encounter +V8692XS Unspecified occupant of snowmobile injured in nontraffic accident, sequela +V8693XA Unspecified occupant of dune buggy injured in nontraffic accident, initial encounter +V8693XD Unspecified occupant of dune buggy injured in nontraffic accident, subsequent encounter +V8693XS Unspecified occupant of dune buggy injured in nontraffic accident, sequela +V8694XA Unspecified occupant of military vehicle injured in nontraffic accident, initial encounter +V8694XD Unspecified occupant of military vehicle injured in nontraffic accident, subsequent encounter +V8694XS Unspecified occupant of military vehicle injured in nontraffic accident, sequela +V8695XA Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter +V8695XD Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter +V8695XS Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela +V8696XA Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter +V8696XD Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter +V8696XS Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident, sequela +V8699XA Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter +V8699XD Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter +V8699XS Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela +V870XXA Person injured in collision between car and two- or three-wheeled powered vehicle (traffic), initial encounter +V870XXD Person injured in collision between car and two- or three-wheeled powered vehicle (traffic), subsequent encounter +V870XXS Person injured in collision between car and two- or three-wheeled powered vehicle (traffic), sequela +V871XXA Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), initial encounter +V871XXD Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), subsequent encounter +V871XXS Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), sequela +V872XXA Person injured in collision between car and pick-up truck or van (traffic), initial encounter +V872XXD Person injured in collision between car and pick-up truck or van (traffic), subsequent encounter +V872XXS Person injured in collision between car and pick-up truck or van (traffic), sequela +V873XXA Person injured in collision between car and bus (traffic), initial encounter +V873XXD Person injured in collision between car and bus (traffic), subsequent encounter +V873XXS Person injured in collision between car and bus (traffic), sequela +V874XXA Person injured in collision between car and heavy transport vehicle (traffic), initial encounter +V874XXD Person injured in collision between car and heavy transport vehicle (traffic), subsequent encounter +V874XXS Person injured in collision between car and heavy transport vehicle (traffic), sequela +V875XXA Person injured in collision between heavy transport vehicle and bus (traffic), initial encounter +V875XXD Person injured in collision between heavy transport vehicle and bus (traffic), subsequent encounter +V875XXS Person injured in collision between heavy transport vehicle and bus (traffic), sequela +V876XXA Person injured in collision between railway train or railway vehicle and car (traffic), initial encounter +V876XXD Person injured in collision between railway train or railway vehicle and car (traffic), subsequent encounter +V876XXS Person injured in collision between railway train or railway vehicle and car (traffic), sequela +V877XXA Person injured in collision between other specified motor vehicles (traffic), initial encounter +V877XXD Person injured in collision between other specified motor vehicles (traffic), subsequent encounter +V877XXS Person injured in collision between other specified motor vehicles (traffic), sequela +V878XXA Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), initial encounter +V878XXD Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), subsequent encounter +V878XXS Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), sequela +V879XXA Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic), initial encounter +V879XXD Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic), subsequent encounter +V879XXS Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic), sequela +V880XXA Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, initial encounter +V880XXD Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, subsequent encounter +V880XXS Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, sequela +V881XXA Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, initial encounter +V881XXD Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, subsequent encounter +V881XXS Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, sequela +V882XXA Person injured in collision between car and pick-up truck or van, nontraffic, initial encounter +V882XXD Person injured in collision between car and pick-up truck or van, nontraffic, subsequent encounter +V882XXS Person injured in collision between car and pick-up truck or van, nontraffic, sequela +V883XXA Person injured in collision between car and bus, nontraffic, initial encounter +V883XXD Person injured in collision between car and bus, nontraffic, subsequent encounter +V883XXS Person injured in collision between car and bus, nontraffic, sequela +V884XXA Person injured in collision between car and heavy transport vehicle, nontraffic, initial encounter +V884XXD Person injured in collision between car and heavy transport vehicle, nontraffic, subsequent encounter +V884XXS Person injured in collision between car and heavy transport vehicle, nontraffic, sequela +V885XXA Person injured in collision between heavy transport vehicle and bus, nontraffic, initial encounter +V885XXD Person injured in collision between heavy transport vehicle and bus, nontraffic, subsequent encounter +V885XXS Person injured in collision between heavy transport vehicle and bus, nontraffic, sequela +V886XXA Person injured in collision between railway train or railway vehicle and car, nontraffic, initial encounter +V886XXD Person injured in collision between railway train or railway vehicle and car, nontraffic, subsequent encounter +V886XXS Person injured in collision between railway train or railway vehicle and car, nontraffic, sequela +V887XXA Person injured in collision between other specified motor vehicle, nontraffic, initial encounter +V887XXD Person injured in collision between other specified motor vehicle, nontraffic, subsequent encounter +V887XXS Person injured in collision between other specified motor vehicle, nontraffic, sequela +V888XXA Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, initial encounter +V888XXD Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, subsequent encounter +V888XXS Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, sequela +V889XXA Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic, initial encounter +V889XXD Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic, subsequent encounter +V889XXS Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic, sequela +V890XXA Person injured in unspecified motor-vehicle accident, nontraffic, initial encounter +V890XXD Person injured in unspecified motor-vehicle accident, nontraffic, subsequent encounter +V890XXS Person injured in unspecified motor-vehicle accident, nontraffic, sequela +V891XXA Person injured in unspecified nonmotor-vehicle accident, nontraffic, initial encounter +V891XXD Person injured in unspecified nonmotor-vehicle accident, nontraffic, subsequent encounter +V891XXS Person injured in unspecified nonmotor-vehicle accident, nontraffic, sequela +V892XXA Person injured in unspecified motor-vehicle accident, traffic, initial encounter +V892XXD Person injured in unspecified motor-vehicle accident, traffic, subsequent encounter +V892XXS Person injured in unspecified motor-vehicle accident, traffic, sequela +V893XXA Person injured in unspecified nonmotor-vehicle accident, traffic, initial encounter +V893XXD Person injured in unspecified nonmotor-vehicle accident, traffic, subsequent encounter +V893XXS Person injured in unspecified nonmotor-vehicle accident, traffic, sequela +V899XXA Person injured in unspecified vehicle accident, initial encounter +V899XXD Person injured in unspecified vehicle accident, subsequent encounter +V899XXS Person injured in unspecified vehicle accident, sequela +V9000XA Drowning and submersion due to merchant ship overturning, initial encounter +V9000XD Drowning and submersion due to merchant ship overturning, subsequent encounter +V9000XS Drowning and submersion due to merchant ship overturning, sequela +V9001XA Drowning and submersion due to passenger ship overturning, initial encounter +V9001XD Drowning and submersion due to passenger ship overturning, subsequent encounter +V9001XS Drowning and submersion due to passenger ship overturning, sequela +V9002XA Drowning and submersion due to fishing boat overturning, initial encounter +V9002XD Drowning and submersion due to fishing boat overturning, subsequent encounter +V9002XS Drowning and submersion due to fishing boat overturning, sequela +V9003XA Drowning and submersion due to other powered watercraft overturning, initial encounter +V9003XD Drowning and submersion due to other powered watercraft overturning, subsequent encounter +V9003XS Drowning and submersion due to other powered watercraft overturning, sequela +V9004XA Drowning and submersion due to sailboat overturning, initial encounter +V9004XD Drowning and submersion due to sailboat overturning, subsequent encounter +V9004XS Drowning and submersion due to sailboat overturning, sequela +V9005XA Drowning and submersion due to canoe or kayak overturning, initial encounter +V9005XD Drowning and submersion due to canoe or kayak overturning, subsequent encounter +V9005XS Drowning and submersion due to canoe or kayak overturning, sequela +V9006XA Drowning and submersion due to (nonpowered) inflatable craft overturning, initial encounter +V9006XD Drowning and submersion due to (nonpowered) inflatable craft overturning, subsequent encounter +V9006XS Drowning and submersion due to (nonpowered) inflatable craft overturning, sequela +V9008XA Drowning and submersion due to other unpowered watercraft overturning, initial encounter +V9008XD Drowning and submersion due to other unpowered watercraft overturning, subsequent encounter +V9008XS Drowning and submersion due to other unpowered watercraft overturning, sequela +V9009XA Drowning and submersion due to unspecified watercraft overturning, initial encounter +V9009XD Drowning and submersion due to unspecified watercraft overturning, subsequent encounter +V9009XS Drowning and submersion due to unspecified watercraft overturning, sequela +V9010XA Drowning and submersion due to merchant ship sinking, initial encounter +V9010XD Drowning and submersion due to merchant ship sinking, subsequent encounter +V9010XS Drowning and submersion due to merchant ship sinking, sequela +V9011XA Drowning and submersion due to passenger ship sinking, initial encounter +V9011XD Drowning and submersion due to passenger ship sinking, subsequent encounter +V9011XS Drowning and submersion due to passenger ship sinking, sequela +V9012XA Drowning and submersion due to fishing boat sinking, initial encounter +V9012XD Drowning and submersion due to fishing boat sinking, subsequent encounter +V9012XS Drowning and submersion due to fishing boat sinking, sequela +V9013XA Drowning and submersion due to other powered watercraft sinking, initial encounter +V9013XD Drowning and submersion due to other powered watercraft sinking, subsequent encounter +V9013XS Drowning and submersion due to other powered watercraft sinking, sequela +V9014XA Drowning and submersion due to sailboat sinking, initial encounter +V9014XD Drowning and submersion due to sailboat sinking, subsequent encounter +V9014XS Drowning and submersion due to sailboat sinking, sequela +V9015XA Drowning and submersion due to canoe or kayak sinking, initial encounter +V9015XD Drowning and submersion due to canoe or kayak sinking, subsequent encounter +V9015XS Drowning and submersion due to canoe or kayak sinking, sequela +V9016XA Drowning and submersion due to (nonpowered) inflatable craft sinking, initial encounter +V9016XD Drowning and submersion due to (nonpowered) inflatable craft sinking, subsequent encounter +V9016XS Drowning and submersion due to (nonpowered) inflatable craft sinking, sequela +V9018XA Drowning and submersion due to other unpowered watercraft sinking, initial encounter +V9018XD Drowning and submersion due to other unpowered watercraft sinking, subsequent encounter +V9018XS Drowning and submersion due to other unpowered watercraft sinking, sequela +V9019XA Drowning and submersion due to unspecified watercraft sinking, initial encounter +V9019XD Drowning and submersion due to unspecified watercraft sinking, subsequent encounter +V9019XS Drowning and submersion due to unspecified watercraft sinking, sequela +V9020XA Drowning and submersion due to falling or jumping from burning merchant ship, initial encounter +V9020XD Drowning and submersion due to falling or jumping from burning merchant ship, subsequent encounter +V9020XS Drowning and submersion due to falling or jumping from burning merchant ship, sequela +V9021XA Drowning and submersion due to falling or jumping from burning passenger ship, initial encounter +V9021XD Drowning and submersion due to falling or jumping from burning passenger ship, subsequent encounter +V9021XS Drowning and submersion due to falling or jumping from burning passenger ship, sequela +V9022XA Drowning and submersion due to falling or jumping from burning fishing boat, initial encounter +V9022XD Drowning and submersion due to falling or jumping from burning fishing boat, subsequent encounter +V9022XS Drowning and submersion due to falling or jumping from burning fishing boat, sequela +V9023XA Drowning and submersion due to falling or jumping from other burning powered watercraft, initial encounter +V9023XD Drowning and submersion due to falling or jumping from other burning powered watercraft, subsequent encounter +V9023XS Drowning and submersion due to falling or jumping from other burning powered watercraft, sequela +V9024XA Drowning and submersion due to falling or jumping from burning sailboat, initial encounter +V9024XD Drowning and submersion due to falling or jumping from burning sailboat, subsequent encounter +V9024XS Drowning and submersion due to falling or jumping from burning sailboat, sequela +V9025XA Drowning and submersion due to falling or jumping from burning canoe or kayak, initial encounter +V9025XD Drowning and submersion due to falling or jumping from burning canoe or kayak, subsequent encounter +V9025XS Drowning and submersion due to falling or jumping from burning canoe or kayak, sequela +V9026XA Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, initial encounter +V9026XD Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, subsequent encounter +V9026XS Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, sequela +V9027XA Drowning and submersion due to falling or jumping from burning water-skis, initial encounter +V9027XD Drowning and submersion due to falling or jumping from burning water-skis, subsequent encounter +V9027XS Drowning and submersion due to falling or jumping from burning water-skis, sequela +V9028XA Drowning and submersion due to falling or jumping from other burning unpowered watercraft, initial encounter +V9028XD Drowning and submersion due to falling or jumping from other burning unpowered watercraft, subsequent encounter +V9028XS Drowning and submersion due to falling or jumping from other burning unpowered watercraft, sequela +V9029XA Drowning and submersion due to falling or jumping from unspecified burning watercraft, initial encounter +V9029XD Drowning and submersion due to falling or jumping from unspecified burning watercraft, subsequent encounter +V9029XS Drowning and submersion due to falling or jumping from unspecified burning watercraft, sequela +V9030XA Drowning and submersion due to falling or jumping from crushed merchant ship, initial encounter +V9030XD Drowning and submersion due to falling or jumping from crushed merchant ship, subsequent encounter +V9030XS Drowning and submersion due to falling or jumping from crushed merchant ship, sequela +V9031XA Drowning and submersion due to falling or jumping from crushed passenger ship, initial encounter +V9031XD Drowning and submersion due to falling or jumping from crushed passenger ship, subsequent encounter +V9031XS Drowning and submersion due to falling or jumping from crushed passenger ship, sequela +V9032XA Drowning and submersion due to falling or jumping from crushed fishing boat, initial encounter +V9032XD Drowning and submersion due to falling or jumping from crushed fishing boat, subsequent encounter +V9032XS Drowning and submersion due to falling or jumping from crushed fishing boat, sequela +V9033XA Drowning and submersion due to falling or jumping from other crushed powered watercraft, initial encounter +V9033XD Drowning and submersion due to falling or jumping from other crushed powered watercraft, subsequent encounter +V9033XS Drowning and submersion due to falling or jumping from other crushed powered watercraft, sequela +V9034XA Drowning and submersion due to falling or jumping from crushed sailboat, initial encounter +V9034XD Drowning and submersion due to falling or jumping from crushed sailboat, subsequent encounter +V9034XS Drowning and submersion due to falling or jumping from crushed sailboat, sequela +V9035XA Drowning and submersion due to falling or jumping from crushed canoe or kayak, initial encounter +V9035XD Drowning and submersion due to falling or jumping from crushed canoe or kayak, subsequent encounter +V9035XS Drowning and submersion due to falling or jumping from crushed canoe or kayak, sequela +V9036XA Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, initial encounter +V9036XD Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, subsequent encounter +V9036XS Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, sequela +V9037XA Drowning and submersion due to falling or jumping from crushed water-skis, initial encounter +V9037XD Drowning and submersion due to falling or jumping from crushed water-skis, subsequent encounter +V9037XS Drowning and submersion due to falling or jumping from crushed water-skis, sequela +V9038XA Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, initial encounter +V9038XD Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, subsequent encounter +V9038XS Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, sequela +V9039XA Drowning and submersion due to falling or jumping from crushed unspecified watercraft, initial encounter +V9039XD Drowning and submersion due to falling or jumping from crushed unspecified watercraft, subsequent encounter +V9039XS Drowning and submersion due to falling or jumping from crushed unspecified watercraft, sequela +V9080XA Drowning and submersion due to other accident to merchant ship, initial encounter +V9080XD Drowning and submersion due to other accident to merchant ship, subsequent encounter +V9080XS Drowning and submersion due to other accident to merchant ship, sequela +V9081XA Drowning and submersion due to other accident to passenger ship, initial encounter +V9081XD Drowning and submersion due to other accident to passenger ship, subsequent encounter +V9081XS Drowning and submersion due to other accident to passenger ship, sequela +V9082XA Drowning and submersion due to other accident to fishing boat, initial encounter +V9082XD Drowning and submersion due to other accident to fishing boat, subsequent encounter +V9082XS Drowning and submersion due to other accident to fishing boat, sequela +V9083XA Drowning and submersion due to other accident to other powered watercraft, initial encounter +V9083XD Drowning and submersion due to other accident to other powered watercraft, subsequent encounter +V9083XS Drowning and submersion due to other accident to other powered watercraft, sequela +V9084XA Drowning and submersion due to other accident to sailboat, initial encounter +V9084XD Drowning and submersion due to other accident to sailboat, subsequent encounter +V9084XS Drowning and submersion due to other accident to sailboat, sequela +V9085XA Drowning and submersion due to other accident to canoe or kayak, initial encounter +V9085XD Drowning and submersion due to other accident to canoe or kayak, subsequent encounter +V9085XS Drowning and submersion due to other accident to canoe or kayak, sequela +V9086XA Drowning and submersion due to other accident to (nonpowered) inflatable craft, initial encounter +V9086XD Drowning and submersion due to other accident to (nonpowered) inflatable craft, subsequent encounter +V9086XS Drowning and submersion due to other accident to (nonpowered) inflatable craft, sequela +V9087XA Drowning and submersion due to other accident to water-skis, initial encounter +V9087XD Drowning and submersion due to other accident to water-skis, subsequent encounter +V9087XS Drowning and submersion due to other accident to water-skis, sequela +V9088XA Drowning and submersion due to other accident to other unpowered watercraft, initial encounter +V9088XD Drowning and submersion due to other accident to other unpowered watercraft, subsequent encounter +V9088XS Drowning and submersion due to other accident to other unpowered watercraft, sequela +V9089XA Drowning and submersion due to other accident to unspecified watercraft, initial encounter +V9089XD Drowning and submersion due to other accident to unspecified watercraft, subsequent encounter +V9089XS Drowning and submersion due to other accident to unspecified watercraft, sequela +V9100XA Burn due to merchant ship on fire, initial encounter +V9100XD Burn due to merchant ship on fire, subsequent encounter +V9100XS Burn due to merchant ship on fire, sequela +V9101XA Burn due to passenger ship on fire, initial encounter +V9101XD Burn due to passenger ship on fire, subsequent encounter +V9101XS Burn due to passenger ship on fire, sequela +V9102XA Burn due to fishing boat on fire, initial encounter +V9102XD Burn due to fishing boat on fire, subsequent encounter +V9102XS Burn due to fishing boat on fire, sequela +V9103XA Burn due to other powered watercraft on fire, initial encounter +V9103XD Burn due to other powered watercraft on fire, subsequent encounter +V9103XS Burn due to other powered watercraft on fire, sequela +V9104XA Burn due to sailboat on fire, initial encounter +V9104XD Burn due to sailboat on fire, subsequent encounter +V9104XS Burn due to sailboat on fire, sequela +V9105XA Burn due to canoe or kayak on fire, initial encounter +V9105XD Burn due to canoe or kayak on fire, subsequent encounter +V9105XS Burn due to canoe or kayak on fire, sequela +V9106XA Burn due to (nonpowered) inflatable craft on fire, initial encounter +V9106XD Burn due to (nonpowered) inflatable craft on fire, subsequent encounter +V9106XS Burn due to (nonpowered) inflatable craft on fire, sequela +V9107XA Burn due to water-skis on fire, initial encounter +V9107XD Burn due to water-skis on fire, subsequent encounter +V9107XS Burn due to water-skis on fire, sequela +V9108XA Burn due to other unpowered watercraft on fire, initial encounter +V9108XD Burn due to other unpowered watercraft on fire, subsequent encounter +V9108XS Burn due to other unpowered watercraft on fire, sequela +V9109XA Burn due to unspecified watercraft on fire, initial encounter +V9109XD Burn due to unspecified watercraft on fire, subsequent encounter +V9109XS Burn due to unspecified watercraft on fire, sequela +V9110XA Crushed between merchant ship and other watercraft or other object due to collision, initial encounter +V9110XD Crushed between merchant ship and other watercraft or other object due to collision, subsequent encounter +V9110XS Crushed between merchant ship and other watercraft or other object due to collision, sequela +V9111XA Crushed between passenger ship and other watercraft or other object due to collision, initial encounter +V9111XD Crushed between passenger ship and other watercraft or other object due to collision, subsequent encounter +V9111XS Crushed between passenger ship and other watercraft or other object due to collision, sequela +V9112XA Crushed between fishing boat and other watercraft or other object due to collision, initial encounter +V9112XD Crushed between fishing boat and other watercraft or other object due to collision, subsequent encounter +V9112XS Crushed between fishing boat and other watercraft or other object due to collision, sequela +V9113XA Crushed between other powered watercraft and other watercraft or other object due to collision, initial encounter +V9113XD Crushed between other powered watercraft and other watercraft or other object due to collision, subsequent encounter +V9113XS Crushed between other powered watercraft and other watercraft or other object due to collision, sequela +V9114XA Crushed between sailboat and other watercraft or other object due to collision, initial encounter +V9114XD Crushed between sailboat and other watercraft or other object due to collision, subsequent encounter +V9114XS Crushed between sailboat and other watercraft or other object due to collision, sequela +V9115XA Crushed between canoe or kayak and other watercraft or other object due to collision, initial encounter +V9115XD Crushed between canoe or kayak and other watercraft or other object due to collision, subsequent encounter +V9115XS Crushed between canoe or kayak and other watercraft or other object due to collision, sequela +V9116XA Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision, initial encounter +V9116XD Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision, subsequent encounter +V9116XS Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision, sequela +V9118XA Crushed between other unpowered watercraft and other watercraft or other object due to collision, initial encounter +V9118XD Crushed between other unpowered watercraft and other watercraft or other object due to collision, subsequent encounter +V9118XS Crushed between other unpowered watercraft and other watercraft or other object due to collision, sequela +V9119XA Crushed between unspecified watercraft and other watercraft or other object due to collision, initial encounter +V9119XD Crushed between unspecified watercraft and other watercraft or other object due to collision, subsequent encounter +V9119XS Crushed between unspecified watercraft and other watercraft or other object due to collision, sequela +V9120XA Fall due to collision between merchant ship and other watercraft or other object, initial encounter +V9120XD Fall due to collision between merchant ship and other watercraft or other object, subsequent encounter +V9120XS Fall due to collision between merchant ship and other watercraft or other object, sequela +V9121XA Fall due to collision between passenger ship and other watercraft or other object, initial encounter +V9121XD Fall due to collision between passenger ship and other watercraft or other object, subsequent encounter +V9121XS Fall due to collision between passenger ship and other watercraft or other object, sequela +V9122XA Fall due to collision between fishing boat and other watercraft or other object, initial encounter +V9122XD Fall due to collision between fishing boat and other watercraft or other object, subsequent encounter +V9122XS Fall due to collision between fishing boat and other watercraft or other object, sequela +V9123XA Fall due to collision between other powered watercraft and other watercraft or other object, initial encounter +V9123XD Fall due to collision between other powered watercraft and other watercraft or other object, subsequent encounter +V9123XS Fall due to collision between other powered watercraft and other watercraft or other object, sequela +V9124XA Fall due to collision between sailboat and other watercraft or other object, initial encounter +V9124XD Fall due to collision between sailboat and other watercraft or other object, subsequent encounter +V9124XS Fall due to collision between sailboat and other watercraft or other object, sequela +V9125XA Fall due to collision between canoe or kayak and other watercraft or other object, initial encounter +V9125XD Fall due to collision between canoe or kayak and other watercraft or other object, subsequent encounter +V9125XS Fall due to collision between canoe or kayak and other watercraft or other object, sequela +V9126XA Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object, initial encounter +V9126XD Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object, subsequent encounter +V9126XS Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object, sequela +V9129XA Fall due to collision between unspecified watercraft and other watercraft or other object, initial encounter +V9129XD Fall due to collision between unspecified watercraft and other watercraft or other object, subsequent encounter +V9129XS Fall due to collision between unspecified watercraft and other watercraft or other object, sequela +V9130XA Hit or struck by falling object due to accident to merchant ship, initial encounter +V9130XD Hit or struck by falling object due to accident to merchant ship, subsequent encounter +V9130XS Hit or struck by falling object due to accident to merchant ship, sequela +V9131XA Hit or struck by falling object due to accident to passenger ship, initial encounter +V9131XD Hit or struck by falling object due to accident to passenger ship, subsequent encounter +V9131XS Hit or struck by falling object due to accident to passenger ship, sequela +V9132XA Hit or struck by falling object due to accident to fishing boat, initial encounter +V9132XD Hit or struck by falling object due to accident to fishing boat, subsequent encounter +V9132XS Hit or struck by falling object due to accident to fishing boat, sequela +V9133XA Hit or struck by falling object due to accident to other powered watercraft, initial encounter +V9133XD Hit or struck by falling object due to accident to other powered watercraft, subsequent encounter +V9133XS Hit or struck by falling object due to accident to other powered watercraft, sequela +V9134XA Hit or struck by falling object due to accident to sailboat, initial encounter +V9134XD Hit or struck by falling object due to accident to sailboat, subsequent encounter +V9134XS Hit or struck by falling object due to accident to sailboat, sequela +V9135XA Hit or struck by falling object due to accident to canoe or kayak, initial encounter +V9135XD Hit or struck by falling object due to accident to canoe or kayak, subsequent encounter +V9135XS Hit or struck by falling object due to accident to canoe or kayak, sequela +V9136XA Hit or struck by falling object due to accident to (nonpowered) inflatable craft, initial encounter +V9136XD Hit or struck by falling object due to accident to (nonpowered) inflatable craft, subsequent encounter +V9136XS Hit or struck by falling object due to accident to (nonpowered) inflatable craft, sequela +V9137XA Hit or struck by falling object due to accident to water-skis, initial encounter +V9137XD Hit or struck by falling object due to accident to water-skis, subsequent encounter +V9137XS Hit or struck by falling object due to accident to water-skis, sequela +V9138XA Hit or struck by falling object due to accident to other unpowered watercraft, initial encounter +V9138XD Hit or struck by falling object due to accident to other unpowered watercraft, subsequent encounter +V9138XS Hit or struck by falling object due to accident to other unpowered watercraft, sequela +V9139XA Hit or struck by falling object due to accident to unspecified watercraft, initial encounter +V9139XD Hit or struck by falling object due to accident to unspecified watercraft, subsequent encounter +V9139XS Hit or struck by falling object due to accident to unspecified watercraft, sequela +V9180XA Other injury due to other accident to merchant ship, initial encounter +V9180XD Other injury due to other accident to merchant ship, subsequent encounter +V9180XS Other injury due to other accident to merchant ship, sequela +V9181XA Other injury due to other accident to passenger ship, initial encounter +V9181XD Other injury due to other accident to passenger ship, subsequent encounter +V9181XS Other injury due to other accident to passenger ship, sequela +V9182XA Other injury due to other accident to fishing boat, initial encounter +V9182XD Other injury due to other accident to fishing boat, subsequent encounter +V9182XS Other injury due to other accident to fishing boat, sequela +V9183XA Other injury due to other accident to other powered watercraft, initial encounter +V9183XD Other injury due to other accident to other powered watercraft, subsequent encounter +V9183XS Other injury due to other accident to other powered watercraft, sequela +V9184XA Other injury due to other accident to sailboat, initial encounter +V9184XD Other injury due to other accident to sailboat, subsequent encounter +V9184XS Other injury due to other accident to sailboat, sequela +V9185XA Other injury due to other accident to canoe or kayak, initial encounter +V9185XD Other injury due to other accident to canoe or kayak, subsequent encounter +V9185XS Other injury due to other accident to canoe or kayak, sequela +V9186XA Other injury due to other accident to (nonpowered) inflatable craft, initial encounter +V9186XD Other injury due to other accident to (nonpowered) inflatable craft, subsequent encounter +V9186XS Other injury due to other accident to (nonpowered) inflatable craft, sequela +V9187XA Other injury due to other accident to water-skis, initial encounter +V9187XD Other injury due to other accident to water-skis, subsequent encounter +V9187XS Other injury due to other accident to water-skis, sequela +V9188XA Other injury due to other accident to other unpowered watercraft, initial encounter +V9188XD Other injury due to other accident to other unpowered watercraft, subsequent encounter +V9188XS Other injury due to other accident to other unpowered watercraft, sequela +V9189XA Other injury due to other accident to unspecified watercraft, initial encounter +V9189XD Other injury due to other accident to unspecified watercraft, subsequent encounter +V9189XS Other injury due to other accident to unspecified watercraft, sequela +V9200XA Drowning and submersion due to fall off merchant ship, initial encounter +V9200XD Drowning and submersion due to fall off merchant ship, subsequent encounter +V9200XS Drowning and submersion due to fall off merchant ship, sequela +V9201XA Drowning and submersion due to fall off passenger ship, initial encounter +V9201XD Drowning and submersion due to fall off passenger ship, subsequent encounter +V9201XS Drowning and submersion due to fall off passenger ship, sequela +V9202XA Drowning and submersion due to fall off fishing boat, initial encounter +V9202XD Drowning and submersion due to fall off fishing boat, subsequent encounter +V9202XS Drowning and submersion due to fall off fishing boat, sequela +V9203XA Drowning and submersion due to fall off other powered watercraft, initial encounter +V9203XD Drowning and submersion due to fall off other powered watercraft, subsequent encounter +V9203XS Drowning and submersion due to fall off other powered watercraft, sequela +V9204XA Drowning and submersion due to fall off sailboat, initial encounter +V9204XD Drowning and submersion due to fall off sailboat, subsequent encounter +V9204XS Drowning and submersion due to fall off sailboat, sequela +V9205XA Drowning and submersion due to fall off canoe or kayak, initial encounter +V9205XD Drowning and submersion due to fall off canoe or kayak, subsequent encounter +V9205XS Drowning and submersion due to fall off canoe or kayak, sequela +V9206XA Drowning and submersion due to fall off (nonpowered) inflatable craft, initial encounter +V9206XD Drowning and submersion due to fall off (nonpowered) inflatable craft, subsequent encounter +V9206XS Drowning and submersion due to fall off (nonpowered) inflatable craft, sequela +V9207XA Drowning and submersion due to fall off water-skis, initial encounter +V9207XD Drowning and submersion due to fall off water-skis, subsequent encounter +V9207XS Drowning and submersion due to fall off water-skis, sequela +V9208XA Drowning and submersion due to fall off other unpowered watercraft, initial encounter +V9208XD Drowning and submersion due to fall off other unpowered watercraft, subsequent encounter +V9208XS Drowning and submersion due to fall off other unpowered watercraft, sequela +V9209XA Drowning and submersion due to fall off unspecified watercraft, initial encounter +V9209XD Drowning and submersion due to fall off unspecified watercraft, subsequent encounter +V9209XS Drowning and submersion due to fall off unspecified watercraft, sequela +V9210XA Drowning and submersion due to being thrown overboard by motion of merchant ship, initial encounter +V9210XD Drowning and submersion due to being thrown overboard by motion of merchant ship, subsequent encounter +V9210XS Drowning and submersion due to being thrown overboard by motion of merchant ship, sequela +V9211XA Drowning and submersion due to being thrown overboard by motion of passenger ship, initial encounter +V9211XD Drowning and submersion due to being thrown overboard by motion of passenger ship, subsequent encounter +V9211XS Drowning and submersion due to being thrown overboard by motion of passenger ship, sequela +V9212XA Drowning and submersion due to being thrown overboard by motion of fishing boat, initial encounter +V9212XD Drowning and submersion due to being thrown overboard by motion of fishing boat, subsequent encounter +V9212XS Drowning and submersion due to being thrown overboard by motion of fishing boat, sequela +V9213XA Drowning and submersion due to being thrown overboard by motion of other powered watercraft, initial encounter +V9213XD Drowning and submersion due to being thrown overboard by motion of other powered watercraft, subsequent encounter +V9213XS Drowning and submersion due to being thrown overboard by motion of other powered watercraft, sequela +V9214XA Drowning and submersion due to being thrown overboard by motion of sailboat, initial encounter +V9214XD Drowning and submersion due to being thrown overboard by motion of sailboat, subsequent encounter +V9214XS Drowning and submersion due to being thrown overboard by motion of sailboat, sequela +V9215XA Drowning and submersion due to being thrown overboard by motion of canoe or kayak, initial encounter +V9215XD Drowning and submersion due to being thrown overboard by motion of canoe or kayak, subsequent encounter +V9215XS Drowning and submersion due to being thrown overboard by motion of canoe or kayak, sequela +V9216XA Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, initial encounter +V9216XD Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, subsequent encounter +V9216XS Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, sequela +V9219XA Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, initial encounter +V9219XD Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, subsequent encounter +V9219XS Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, sequela +V9220XA Drowning and submersion due to being washed overboard from merchant ship, initial encounter +V9220XD Drowning and submersion due to being washed overboard from merchant ship, subsequent encounter +V9220XS Drowning and submersion due to being washed overboard from merchant ship, sequela +V9221XA Drowning and submersion due to being washed overboard from passenger ship, initial encounter +V9221XD Drowning and submersion due to being washed overboard from passenger ship, subsequent encounter +V9221XS Drowning and submersion due to being washed overboard from passenger ship, sequela +V9222XA Drowning and submersion due to being washed overboard from fishing boat, initial encounter +V9222XD Drowning and submersion due to being washed overboard from fishing boat, subsequent encounter +V9222XS Drowning and submersion due to being washed overboard from fishing boat, sequela +V9223XA Drowning and submersion due to being washed overboard from other powered watercraft, initial encounter +V9223XD Drowning and submersion due to being washed overboard from other powered watercraft, subsequent encounter +V9223XS Drowning and submersion due to being washed overboard from other powered watercraft, sequela +V9224XA Drowning and submersion due to being washed overboard from sailboat, initial encounter +V9224XD Drowning and submersion due to being washed overboard from sailboat, subsequent encounter +V9224XS Drowning and submersion due to being washed overboard from sailboat, sequela +V9225XA Drowning and submersion due to being washed overboard from canoe or kayak, initial encounter +V9225XD Drowning and submersion due to being washed overboard from canoe or kayak, subsequent encounter +V9225XS Drowning and submersion due to being washed overboard from canoe or kayak, sequela +V9226XA Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, initial encounter +V9226XD Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, subsequent encounter +V9226XS Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, sequela +V9227XA Drowning and submersion due to being washed overboard from water-skis, initial encounter +V9227XD Drowning and submersion due to being washed overboard from water-skis, subsequent encounter +V9227XS Drowning and submersion due to being washed overboard from water-skis, sequela +V9228XA Drowning and submersion due to being washed overboard from other unpowered watercraft, initial encounter +V9228XD Drowning and submersion due to being washed overboard from other unpowered watercraft, subsequent encounter +V9228XS Drowning and submersion due to being washed overboard from other unpowered watercraft, sequela +V9229XA Drowning and submersion due to being washed overboard from unspecified watercraft, initial encounter +V9229XD Drowning and submersion due to being washed overboard from unspecified watercraft, subsequent encounter +V9229XS Drowning and submersion due to being washed overboard from unspecified watercraft, sequela +V9300XA Burn due to localized fire on board merchant vessel, initial encounter +V9300XD Burn due to localized fire on board merchant vessel, subsequent encounter +V9300XS Burn due to localized fire on board merchant vessel, sequela +V9301XA Burn due to localized fire on board passenger vessel, initial encounter +V9301XD Burn due to localized fire on board passenger vessel, subsequent encounter +V9301XS Burn due to localized fire on board passenger vessel, sequela +V9302XA Burn due to localized fire on board fishing boat, initial encounter +V9302XD Burn due to localized fire on board fishing boat, subsequent encounter +V9302XS Burn due to localized fire on board fishing boat, sequela +V9303XA Burn due to localized fire on board other powered watercraft, initial encounter +V9303XD Burn due to localized fire on board other powered watercraft, subsequent encounter +V9303XS Burn due to localized fire on board other powered watercraft, sequela +V9304XA Burn due to localized fire on board sailboat, initial encounter +V9304XD Burn due to localized fire on board sailboat, subsequent encounter +V9304XS Burn due to localized fire on board sailboat, sequela +V9309XA Burn due to localized fire on board unspecified watercraft, initial encounter +V9309XD Burn due to localized fire on board unspecified watercraft, subsequent encounter +V9309XS Burn due to localized fire on board unspecified watercraft, sequela +V9310XA Other burn on board merchant vessel, initial encounter +V9310XD Other burn on board merchant vessel, subsequent encounter +V9310XS Other burn on board merchant vessel, sequela +V9311XA Other burn on board passenger vessel, initial encounter +V9311XD Other burn on board passenger vessel, subsequent encounter +V9311XS Other burn on board passenger vessel, sequela +V9312XA Other burn on board fishing boat, initial encounter +V9312XD Other burn on board fishing boat, subsequent encounter +V9312XS Other burn on board fishing boat, sequela +V9313XA Other burn on board other powered watercraft, initial encounter +V9313XD Other burn on board other powered watercraft, subsequent encounter +V9313XS Other burn on board other powered watercraft, sequela +V9314XA Other burn on board sailboat, initial encounter +V9314XD Other burn on board sailboat, subsequent encounter +V9314XS Other burn on board sailboat, sequela +V9319XA Other burn on board unspecified watercraft, initial encounter +V9319XD Other burn on board unspecified watercraft, subsequent encounter +V9319XS Other burn on board unspecified watercraft, sequela +V9320XA Heat exposure on board merchant ship, initial encounter +V9320XD Heat exposure on board merchant ship, subsequent encounter +V9320XS Heat exposure on board merchant ship, sequela +V9321XA Heat exposure on board passenger ship, initial encounter +V9321XD Heat exposure on board passenger ship, subsequent encounter +V9321XS Heat exposure on board passenger ship, sequela +V9322XA Heat exposure on board fishing boat, initial encounter +V9322XD Heat exposure on board fishing boat, subsequent encounter +V9322XS Heat exposure on board fishing boat, sequela +V9323XA Heat exposure on board other powered watercraft, initial encounter +V9323XD Heat exposure on board other powered watercraft, subsequent encounter +V9323XS Heat exposure on board other powered watercraft, sequela +V9324XA Heat exposure on board sailboat, initial encounter +V9324XD Heat exposure on board sailboat, subsequent encounter +V9324XS Heat exposure on board sailboat, sequela +V9329XA Heat exposure on board unspecified watercraft, initial encounter +V9329XD Heat exposure on board unspecified watercraft, subsequent encounter +V9329XS Heat exposure on board unspecified watercraft, sequela +V9330XA Fall on board merchant ship, initial encounter +V9330XD Fall on board merchant ship, subsequent encounter +V9330XS Fall on board merchant ship, sequela +V9331XA Fall on board passenger ship, initial encounter +V9331XD Fall on board passenger ship, subsequent encounter +V9331XS Fall on board passenger ship, sequela +V9332XA Fall on board fishing boat, initial encounter +V9332XD Fall on board fishing boat, subsequent encounter +V9332XS Fall on board fishing boat, sequela +V9333XA Fall on board other powered watercraft, initial encounter +V9333XD Fall on board other powered watercraft, subsequent encounter +V9333XS Fall on board other powered watercraft, sequela +V9334XA Fall on board sailboat, initial encounter +V9334XD Fall on board sailboat, subsequent encounter +V9334XS Fall on board sailboat, sequela +V9335XA Fall on board canoe or kayak, initial encounter +V9335XD Fall on board canoe or kayak, subsequent encounter +V9335XS Fall on board canoe or kayak, sequela +V9336XA Fall on board (nonpowered) inflatable craft, initial encounter +V9336XD Fall on board (nonpowered) inflatable craft, subsequent encounter +V9336XS Fall on board (nonpowered) inflatable craft, sequela +V9338XA Fall on board other unpowered watercraft, initial encounter +V9338XD Fall on board other unpowered watercraft, subsequent encounter +V9338XS Fall on board other unpowered watercraft, sequela +V9339XA Fall on board unspecified watercraft, initial encounter +V9339XD Fall on board unspecified watercraft, subsequent encounter +V9339XS Fall on board unspecified watercraft, sequela +V9340XA Struck by falling object on merchant ship, initial encounter +V9340XD Struck by falling object on merchant ship, subsequent encounter +V9340XS Struck by falling object on merchant ship, sequela +V9341XA Struck by falling object on passenger ship, initial encounter +V9341XD Struck by falling object on passenger ship, subsequent encounter +V9341XS Struck by falling object on passenger ship, sequela +V9342XA Struck by falling object on fishing boat, initial encounter +V9342XD Struck by falling object on fishing boat, subsequent encounter +V9342XS Struck by falling object on fishing boat, sequela +V9343XA Struck by falling object on other powered watercraft, initial encounter +V9343XD Struck by falling object on other powered watercraft, subsequent encounter +V9343XS Struck by falling object on other powered watercraft, sequela +V9344XA Struck by falling object on sailboat, initial encounter +V9344XD Struck by falling object on sailboat, subsequent encounter +V9344XS Struck by falling object on sailboat, sequela +V9348XA Struck by falling object on other unpowered watercraft, initial encounter +V9348XD Struck by falling object on other unpowered watercraft, subsequent encounter +V9348XS Struck by falling object on other unpowered watercraft, sequela +V9349XA Struck by falling object on unspecified watercraft, initial encounter +V9349XD Struck by falling object on unspecified watercraft, subsequent encounter +V9349XS Struck by falling object on unspecified watercraft, sequela +V9350XA Explosion on board merchant ship, initial encounter +V9350XD Explosion on board merchant ship, subsequent encounter +V9350XS Explosion on board merchant ship, sequela +V9351XA Explosion on board passenger ship, initial encounter +V9351XD Explosion on board passenger ship, subsequent encounter +V9351XS Explosion on board passenger ship, sequela +V9352XA Explosion on board fishing boat, initial encounter +V9352XD Explosion on board fishing boat, subsequent encounter +V9352XS Explosion on board fishing boat, sequela +V9353XA Explosion on board other powered watercraft, initial encounter +V9353XD Explosion on board other powered watercraft, subsequent encounter +V9353XS Explosion on board other powered watercraft, sequela +V9354XA Explosion on board sailboat, initial encounter +V9354XD Explosion on board sailboat, subsequent encounter +V9354XS Explosion on board sailboat, sequela +V9359XA Explosion on board unspecified watercraft, initial encounter +V9359XD Explosion on board unspecified watercraft, subsequent encounter +V9359XS Explosion on board unspecified watercraft, sequela +V9360XA Machinery accident on board merchant ship, initial encounter +V9360XD Machinery accident on board merchant ship, subsequent encounter +V9360XS Machinery accident on board merchant ship, sequela +V9361XA Machinery accident on board passenger ship, initial encounter +V9361XD Machinery accident on board passenger ship, subsequent encounter +V9361XS Machinery accident on board passenger ship, sequela +V9362XA Machinery accident on board fishing boat, initial encounter +V9362XD Machinery accident on board fishing boat, subsequent encounter +V9362XS Machinery accident on board fishing boat, sequela +V9363XA Machinery accident on board other powered watercraft, initial encounter +V9363XD Machinery accident on board other powered watercraft, subsequent encounter +V9363XS Machinery accident on board other powered watercraft, sequela +V9364XA Machinery accident on board sailboat, initial encounter +V9364XD Machinery accident on board sailboat, subsequent encounter +V9364XS Machinery accident on board sailboat, sequela +V9369XA Machinery accident on board unspecified watercraft, initial encounter +V9369XD Machinery accident on board unspecified watercraft, subsequent encounter +V9369XS Machinery accident on board unspecified watercraft, sequela +V9380XA Other injury due to other accident on board merchant ship, initial encounter +V9380XD Other injury due to other accident on board merchant ship, subsequent encounter +V9380XS Other injury due to other accident on board merchant ship, sequela +V9381XA Other injury due to other accident on board passenger ship, initial encounter +V9381XD Other injury due to other accident on board passenger ship, subsequent encounter +V9381XS Other injury due to other accident on board passenger ship, sequela +V9382XA Other injury due to other accident on board fishing boat, initial encounter +V9382XD Other injury due to other accident on board fishing boat, subsequent encounter +V9382XS Other injury due to other accident on board fishing boat, sequela +V9383XA Other injury due to other accident on board other powered watercraft, initial encounter +V9383XD Other injury due to other accident on board other powered watercraft, subsequent encounter +V9383XS Other injury due to other accident on board other powered watercraft, sequela +V9384XA Other injury due to other accident on board sailboat, initial encounter +V9384XD Other injury due to other accident on board sailboat, subsequent encounter +V9384XS Other injury due to other accident on board sailboat, sequela +V9385XA Other injury due to other accident on board canoe or kayak, initial encounter +V9385XD Other injury due to other accident on board canoe or kayak, subsequent encounter +V9385XS Other injury due to other accident on board canoe or kayak, sequela +V9386XA Other injury due to other accident on board (nonpowered) inflatable craft, initial encounter +V9386XD Other injury due to other accident on board (nonpowered) inflatable craft, subsequent encounter +V9386XS Other injury due to other accident on board (nonpowered) inflatable craft, sequela +V9387XA Other injury due to other accident on board water-skis, initial encounter +V9387XD Other injury due to other accident on board water-skis, subsequent encounter +V9387XS Other injury due to other accident on board water-skis, sequela +V9388XA Other injury due to other accident on board other unpowered watercraft, initial encounter +V9388XD Other injury due to other accident on board other unpowered watercraft, subsequent encounter +V9388XS Other injury due to other accident on board other unpowered watercraft, sequela +V9389XA Other injury due to other accident on board unspecified watercraft, initial encounter +V9389XD Other injury due to other accident on board unspecified watercraft, subsequent encounter +V9389XS Other injury due to other accident on board unspecified watercraft, sequela +V940XXA Hitting object or bottom of body of water due to fall from watercraft, initial encounter +V940XXD Hitting object or bottom of body of water due to fall from watercraft, subsequent encounter +V940XXS Hitting object or bottom of body of water due to fall from watercraft, sequela +V9411XA Bather struck by powered watercraft, initial encounter +V9411XD Bather struck by powered watercraft, subsequent encounter +V9411XS Bather struck by powered watercraft, sequela +V9412XA Bather struck by nonpowered watercraft, initial encounter +V9412XD Bather struck by nonpowered watercraft, subsequent encounter +V9412XS Bather struck by nonpowered watercraft, sequela +V9421XA Rider of nonpowered watercraft struck by other nonpowered watercraft, initial encounter +V9421XD Rider of nonpowered watercraft struck by other nonpowered watercraft, subsequent encounter +V9421XS Rider of nonpowered watercraft struck by other nonpowered watercraft, sequela +V9422XA Rider of nonpowered watercraft struck by powered watercraft, initial encounter +V9422XD Rider of nonpowered watercraft struck by powered watercraft, subsequent encounter +V9422XS Rider of nonpowered watercraft struck by powered watercraft, sequela +V9431XA Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft, initial encounter +V9431XD Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft, subsequent encounter +V9431XS Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft, sequela +V9432XA Injury to rider of non-recreational watercraft being pulled behind other watercraft, initial encounter +V9432XD Injury to rider of non-recreational watercraft being pulled behind other watercraft, subsequent encounter +V9432XS Injury to rider of non-recreational watercraft being pulled behind other watercraft, sequela +V944XXA Injury to barefoot water-skier, initial encounter +V944XXD Injury to barefoot water-skier, subsequent encounter +V944XXS Injury to barefoot water-skier, sequela +V94810A Civilian watercraft involved in water transport accident with military watercraft, initial encounter +V94810D Civilian watercraft involved in water transport accident with military watercraft, subsequent encounter +V94810S Civilian watercraft involved in water transport accident with military watercraft, sequela +V94811A Civilian in water injured by military watercraft, initial encounter +V94811D Civilian in water injured by military watercraft, subsequent encounter +V94811S Civilian in water injured by military watercraft, sequela +V94818A Other water transport accident involving military watercraft, initial encounter +V94818D Other water transport accident involving military watercraft, subsequent encounter +V94818S Other water transport accident involving military watercraft, sequela +V9489XA Other water transport accident, initial encounter +V9489XD Other water transport accident, subsequent encounter +V9489XS Other water transport accident, sequela +V949XXA Unspecified water transport accident, initial encounter +V949XXD Unspecified water transport accident, subsequent encounter +V949XXS Unspecified water transport accident, sequela +V9500XA Unspecified helicopter accident injuring occupant, initial encounter +V9500XD Unspecified helicopter accident injuring occupant, subsequent encounter +V9500XS Unspecified helicopter accident injuring occupant, sequela +V9501XA Helicopter crash injuring occupant, initial encounter +V9501XD Helicopter crash injuring occupant, subsequent encounter +V9501XS Helicopter crash injuring occupant, sequela +V9502XA Forced landing of helicopter injuring occupant, initial encounter +V9502XD Forced landing of helicopter injuring occupant, subsequent encounter +V9502XS Forced landing of helicopter injuring occupant, sequela +V9503XA Helicopter collision injuring occupant, initial encounter +V9503XD Helicopter collision injuring occupant, subsequent encounter +V9503XS Helicopter collision injuring occupant, sequela +V9504XA Helicopter fire injuring occupant, initial encounter +V9504XD Helicopter fire injuring occupant, subsequent encounter +V9504XS Helicopter fire injuring occupant, sequela +V9505XA Helicopter explosion injuring occupant, initial encounter +V9505XD Helicopter explosion injuring occupant, subsequent encounter +V9505XS Helicopter explosion injuring occupant, sequela +V9509XA Other helicopter accident injuring occupant, initial encounter +V9509XD Other helicopter accident injuring occupant, subsequent encounter +V9509XS Other helicopter accident injuring occupant, sequela +V9510XA Unspecified ultralight, microlight or powered-glider accident injuring occupant, initial encounter +V9510XD Unspecified ultralight, microlight or powered-glider accident injuring occupant, subsequent encounter +V9510XS Unspecified ultralight, microlight or powered-glider accident injuring occupant, sequela +V9511XA Ultralight, microlight or powered-glider crash injuring occupant, initial encounter +V9511XD Ultralight, microlight or powered-glider crash injuring occupant, subsequent encounter +V9511XS Ultralight, microlight or powered-glider crash injuring occupant, sequela +V9512XA Forced landing of ultralight, microlight or powered-glider injuring occupant, initial encounter +V9512XD Forced landing of ultralight, microlight or powered-glider injuring occupant, subsequent encounter +V9512XS Forced landing of ultralight, microlight or powered-glider injuring occupant, sequela +V9513XA Ultralight, microlight or powered-glider collision injuring occupant, initial encounter +V9513XD Ultralight, microlight or powered-glider collision injuring occupant, subsequent encounter +V9513XS Ultralight, microlight or powered-glider collision injuring occupant, sequela +V9514XA Ultralight, microlight or powered-glider fire injuring occupant, initial encounter +V9514XD Ultralight, microlight or powered-glider fire injuring occupant, subsequent encounter +V9514XS Ultralight, microlight or powered-glider fire injuring occupant, sequela +V9515XA Ultralight, microlight or powered-glider explosion injuring occupant, initial encounter +V9515XD Ultralight, microlight or powered-glider explosion injuring occupant, subsequent encounter +V9515XS Ultralight, microlight or powered-glider explosion injuring occupant, sequela +V9519XA Other ultralight, microlight or powered-glider accident injuring occupant, initial encounter +V9519XD Other ultralight, microlight or powered-glider accident injuring occupant, subsequent encounter +V9519XS Other ultralight, microlight or powered-glider accident injuring occupant, sequela +V9520XA Unspecified accident to other private fixed-wing aircraft, injuring occupant, initial encounter +V9520XD Unspecified accident to other private fixed-wing aircraft, injuring occupant, subsequent encounter +V9520XS Unspecified accident to other private fixed-wing aircraft, injuring occupant, sequela +V9521XA Other private fixed-wing aircraft crash injuring occupant, initial encounter +V9521XD Other private fixed-wing aircraft crash injuring occupant, subsequent encounter +V9521XS Other private fixed-wing aircraft crash injuring occupant, sequela +V9522XA Forced landing of other private fixed-wing aircraft injuring occupant, initial encounter +V9522XD Forced landing of other private fixed-wing aircraft injuring occupant, subsequent encounter +V9522XS Forced landing of other private fixed-wing aircraft injuring occupant, sequela +V9523XA Other private fixed-wing aircraft collision injuring occupant, initial encounter +V9523XD Other private fixed-wing aircraft collision injuring occupant, subsequent encounter +V9523XS Other private fixed-wing aircraft collision injuring occupant, sequela +V9524XA Other private fixed-wing aircraft fire injuring occupant, initial encounter +V9524XD Other private fixed-wing aircraft fire injuring occupant, subsequent encounter +V9524XS Other private fixed-wing aircraft fire injuring occupant, sequela +V9525XA Other private fixed-wing aircraft explosion injuring occupant, initial encounter +V9525XD Other private fixed-wing aircraft explosion injuring occupant, subsequent encounter +V9525XS Other private fixed-wing aircraft explosion injuring occupant, sequela +V9529XA Other accident to other private fixed-wing aircraft injuring occupant, initial encounter +V9529XD Other accident to other private fixed-wing aircraft injuring occupant, subsequent encounter +V9529XS Other accident to other private fixed-wing aircraft injuring occupant, sequela +V9530XA Unspecified accident to commercial fixed-wing aircraft injuring occupant, initial encounter +V9530XD Unspecified accident to commercial fixed-wing aircraft injuring occupant, subsequent encounter +V9530XS Unspecified accident to commercial fixed-wing aircraft injuring occupant, sequela +V9531XA Commercial fixed-wing aircraft crash injuring occupant, initial encounter +V9531XD Commercial fixed-wing aircraft crash injuring occupant, subsequent encounter +V9531XS Commercial fixed-wing aircraft crash injuring occupant, sequela +V9532XA Forced landing of commercial fixed-wing aircraft injuring occupant, initial encounter +V9532XD Forced landing of commercial fixed-wing aircraft injuring occupant, subsequent encounter +V9532XS Forced landing of commercial fixed-wing aircraft injuring occupant, sequela +V9533XA Commercial fixed-wing aircraft collision injuring occupant, initial encounter +V9533XD Commercial fixed-wing aircraft collision injuring occupant, subsequent encounter +V9533XS Commercial fixed-wing aircraft collision injuring occupant, sequela +V9534XA Commercial fixed-wing aircraft fire injuring occupant, initial encounter +V9534XD Commercial fixed-wing aircraft fire injuring occupant, subsequent encounter +V9534XS Commercial fixed-wing aircraft fire injuring occupant, sequela +V9535XA Commercial fixed-wing aircraft explosion injuring occupant, initial encounter +V9535XD Commercial fixed-wing aircraft explosion injuring occupant, subsequent encounter +V9535XS Commercial fixed-wing aircraft explosion injuring occupant, sequela +V9539XA Other accident to commercial fixed-wing aircraft injuring occupant, initial encounter +V9539XD Other accident to commercial fixed-wing aircraft injuring occupant, subsequent encounter +V9539XS Other accident to commercial fixed-wing aircraft injuring occupant, sequela +V9540XA Unspecified spacecraft accident injuring occupant, initial encounter +V9540XD Unspecified spacecraft accident injuring occupant, subsequent encounter +V9540XS Unspecified spacecraft accident injuring occupant, sequela +V9541XA Spacecraft crash injuring occupant, initial encounter +V9541XD Spacecraft crash injuring occupant, subsequent encounter +V9541XS Spacecraft crash injuring occupant, sequela +V9542XA Forced landing of spacecraft injuring occupant, initial encounter +V9542XD Forced landing of spacecraft injuring occupant, subsequent encounter +V9542XS Forced landing of spacecraft injuring occupant, sequela +V9543XA Spacecraft collision injuring occupant, initial encounter +V9543XD Spacecraft collision injuring occupant, subsequent encounter +V9543XS Spacecraft collision injuring occupant, sequela +V9544XA Spacecraft fire injuring occupant, initial encounter +V9544XD Spacecraft fire injuring occupant, subsequent encounter +V9544XS Spacecraft fire injuring occupant, sequela +V9545XA Spacecraft explosion injuring occupant, initial encounter +V9545XD Spacecraft explosion injuring occupant, subsequent encounter +V9545XS Spacecraft explosion injuring occupant, sequela +V9549XA Other spacecraft accident injuring occupant, initial encounter +V9549XD Other spacecraft accident injuring occupant, subsequent encounter +V9549XS Other spacecraft accident injuring occupant, sequela +V958XXA Other powered aircraft accidents injuring occupant, initial encounter +V958XXD Other powered aircraft accidents injuring occupant, subsequent encounter +V958XXS Other powered aircraft accidents injuring occupant, sequela +V959XXA Unspecified aircraft accident injuring occupant, initial encounter +V959XXD Unspecified aircraft accident injuring occupant, subsequent encounter +V959XXS Unspecified aircraft accident injuring occupant, sequela +V9600XA Unspecified balloon accident injuring occupant, initial encounter +V9600XD Unspecified balloon accident injuring occupant, subsequent encounter +V9600XS Unspecified balloon accident injuring occupant, sequela +V9601XA Balloon crash injuring occupant, initial encounter +V9601XD Balloon crash injuring occupant, subsequent encounter +V9601XS Balloon crash injuring occupant, sequela +V9602XA Forced landing of balloon injuring occupant, initial encounter +V9602XD Forced landing of balloon injuring occupant, subsequent encounter +V9602XS Forced landing of balloon injuring occupant, sequela +V9603XA Balloon collision injuring occupant, initial encounter +V9603XD Balloon collision injuring occupant, subsequent encounter +V9603XS Balloon collision injuring occupant, sequela +V9604XA Balloon fire injuring occupant, initial encounter +V9604XD Balloon fire injuring occupant, subsequent encounter +V9604XS Balloon fire injuring occupant, sequela +V9605XA Balloon explosion injuring occupant, initial encounter +V9605XD Balloon explosion injuring occupant, subsequent encounter +V9605XS Balloon explosion injuring occupant, sequela +V9609XA Other balloon accident injuring occupant, initial encounter +V9609XD Other balloon accident injuring occupant, subsequent encounter +V9609XS Other balloon accident injuring occupant, sequela +V9610XA Unspecified hang-glider accident injuring occupant, initial encounter +V9610XD Unspecified hang-glider accident injuring occupant, subsequent encounter +V9610XS Unspecified hang-glider accident injuring occupant, sequela +V9611XA Hang-glider crash injuring occupant, initial encounter +V9611XD Hang-glider crash injuring occupant, subsequent encounter +V9611XS Hang-glider crash injuring occupant, sequela +V9612XA Forced landing of hang-glider injuring occupant, initial encounter +V9612XD Forced landing of hang-glider injuring occupant, subsequent encounter +V9612XS Forced landing of hang-glider injuring occupant, sequela +V9613XA Hang-glider collision injuring occupant, initial encounter +V9613XD Hang-glider collision injuring occupant, subsequent encounter +V9613XS Hang-glider collision injuring occupant, sequela +V9614XA Hang-glider fire injuring occupant, initial encounter +V9614XD Hang-glider fire injuring occupant, subsequent encounter +V9614XS Hang-glider fire injuring occupant, sequela +V9615XA Hang-glider explosion injuring occupant, initial encounter +V9615XD Hang-glider explosion injuring occupant, subsequent encounter +V9615XS Hang-glider explosion injuring occupant, sequela +V9619XA Other hang-glider accident injuring occupant, initial encounter +V9619XD Other hang-glider accident injuring occupant, subsequent encounter +V9619XS Other hang-glider accident injuring occupant, sequela +V9620XA Unspecified glider (nonpowered) accident injuring occupant, initial encounter +V9620XD Unspecified glider (nonpowered) accident injuring occupant, subsequent encounter +V9620XS Unspecified glider (nonpowered) accident injuring occupant, sequela +V9621XA Glider (nonpowered) crash injuring occupant, initial encounter +V9621XD Glider (nonpowered) crash injuring occupant, subsequent encounter +V9621XS Glider (nonpowered) crash injuring occupant, sequela +V9622XA Forced landing of glider (nonpowered) injuring occupant, initial encounter +V9622XD Forced landing of glider (nonpowered) injuring occupant, subsequent encounter +V9622XS Forced landing of glider (nonpowered) injuring occupant, sequela +V9623XA Glider (nonpowered) collision injuring occupant, initial encounter +V9623XD Glider (nonpowered) collision injuring occupant, subsequent encounter +V9623XS Glider (nonpowered) collision injuring occupant, sequela +V9624XA Glider (nonpowered) fire injuring occupant, initial encounter +V9624XD Glider (nonpowered) fire injuring occupant, subsequent encounter +V9624XS Glider (nonpowered) fire injuring occupant, sequela +V9625XA Glider (nonpowered) explosion injuring occupant, initial encounter +V9625XD Glider (nonpowered) explosion injuring occupant, subsequent encounter +V9625XS Glider (nonpowered) explosion injuring occupant, sequela +V9629XA Other glider (nonpowered) accident injuring occupant, initial encounter +V9629XD Other glider (nonpowered) accident injuring occupant, subsequent encounter +V9629XS Other glider (nonpowered) accident injuring occupant, sequela +V968XXA Other nonpowered-aircraft accidents injuring occupant, initial encounter +V968XXD Other nonpowered-aircraft accidents injuring occupant, subsequent encounter +V968XXS Other nonpowered-aircraft accidents injuring occupant, sequela +V969XXA Unspecified nonpowered-aircraft accident injuring occupant, initial encounter +V969XXD Unspecified nonpowered-aircraft accident injuring occupant, subsequent encounter +V969XXS Unspecified nonpowered-aircraft accident injuring occupant, sequela +V970XXA Occupant of aircraft injured in other specified air transport accidents, initial encounter +V970XXD Occupant of aircraft injured in other specified air transport accidents, subsequent encounter +V970XXS Occupant of aircraft injured in other specified air transport accidents, sequela +V971XXA Person injured while boarding or alighting from aircraft, initial encounter +V971XXD Person injured while boarding or alighting from aircraft, subsequent encounter +V971XXS Person injured while boarding or alighting from aircraft, sequela +V9721XA Parachutist entangled in object, initial encounter +V9721XD Parachutist entangled in object, subsequent encounter +V9721XS Parachutist entangled in object, sequela +V9722XA Parachutist injured on landing, initial encounter +V9722XD Parachutist injured on landing, subsequent encounter +V9722XS Parachutist injured on landing, sequela +V9729XA Other parachutist accident, initial encounter +V9729XD Other parachutist accident, subsequent encounter +V9729XS Other parachutist accident, sequela +V9731XA Hit by object falling from aircraft, initial encounter +V9731XD Hit by object falling from aircraft, subsequent encounter +V9731XS Hit by object falling from aircraft, sequela +V9732XA Injured by rotating propeller, initial encounter +V9732XD Injured by rotating propeller, subsequent encounter +V9732XS Injured by rotating propeller, sequela +V9733XA Sucked into jet engine, initial encounter +V9733XD Sucked into jet engine, subsequent encounter +V9733XS Sucked into jet engine, sequela +V9739XA Other injury to person on ground due to air transport accident, initial encounter +V9739XD Other injury to person on ground due to air transport accident, subsequent encounter +V9739XS Other injury to person on ground due to air transport accident, sequela +V97810A Civilian aircraft involved in air transport accident with military aircraft, initial encounter +V97810D Civilian aircraft involved in air transport accident with military aircraft, subsequent encounter +V97810S Civilian aircraft involved in air transport accident with military aircraft, sequela +V97811A Civilian injured by military aircraft, initial encounter +V97811D Civilian injured by military aircraft, subsequent encounter +V97811S Civilian injured by military aircraft, sequela +V97818A Other air transport accident involving military aircraft, initial encounter +V97818D Other air transport accident involving military aircraft, subsequent encounter +V97818S Other air transport accident involving military aircraft, sequela +V9789XA Other air transport accidents, not elsewhere classified, initial encounter +V9789XD Other air transport accidents, not elsewhere classified, subsequent encounter +V9789XS Other air transport accidents, not elsewhere classified, sequela +V980XXA Accident to, on or involving cable-car, not on rails, initial encounter +V980XXD Accident to, on or involving cable-car, not on rails, subsequent encounter +V980XXS Accident to, on or involving cable-car, not on rails, sequela +V981XXA Accident to, on or involving land-yacht, initial encounter +V981XXD Accident to, on or involving land-yacht, subsequent encounter +V981XXS Accident to, on or involving land-yacht, sequela +V982XXA Accident to, on or involving ice yacht, initial encounter +V982XXD Accident to, on or involving ice yacht, subsequent encounter +V982XXS Accident to, on or involving ice yacht, sequela +V983XXA Accident to, on or involving ski lift, initial encounter +V983XXD Accident to, on or involving ski lift, subsequent encounter +V983XXS Accident to, on or involving ski lift, sequela +V988XXA Other specified transport accidents, initial encounter +V988XXD Other specified transport accidents, subsequent encounter +V988XXS Other specified transport accidents, sequela +V99XXXA Unspecified transport accident, initial encounter +V99XXXD Unspecified transport accident, subsequent encounter +V99XXXS Unspecified transport accident, sequela +W000XXA Fall on same level due to ice and snow, initial encounter +W000XXD Fall on same level due to ice and snow, subsequent encounter +W000XXS Fall on same level due to ice and snow, sequela +W001XXA Fall from stairs and steps due to ice and snow, initial encounter +W001XXD Fall from stairs and steps due to ice and snow, subsequent encounter +W001XXS Fall from stairs and steps due to ice and snow, sequela +W002XXA Other fall from one level to another due to ice and snow, initial encounter +W002XXD Other fall from one level to another due to ice and snow, subsequent encounter +W002XXS Other fall from one level to another due to ice and snow, sequela +W009XXA Unspecified fall due to ice and snow, initial encounter +W009XXD Unspecified fall due to ice and snow, subsequent encounter +W009XXS Unspecified fall due to ice and snow, sequela +W010XXA Fall on same level from slipping, tripping and stumbling without subsequent striking against object, initial encounter +W010XXD Fall on same level from slipping, tripping and stumbling without subsequent striking against object, subsequent encounter +W010XXS Fall on same level from slipping, tripping and stumbling without subsequent striking against object, sequela +W0110XA Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object, initial encounter +W0110XD Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object, subsequent encounter +W0110XS Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object, sequela +W01110A Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass, initial encounter +W01110D Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass, subsequent encounter +W01110S Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass, sequela +W01111A Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine, initial encounter +W01111D Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine, subsequent encounter +W01111S Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine, sequela +W01118A Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object, initial encounter +W01118D Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object, subsequent encounter +W01118S Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object, sequela +W01119A Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object, initial encounter +W01119D Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object, subsequent encounter +W01119S Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object, sequela +W01190A Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture, initial encounter +W01190D Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture, subsequent encounter +W01190S Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture, sequela +W01198A Fall on same level from slipping, tripping and stumbling with subsequent striking against other object, initial encounter +W01198D Fall on same level from slipping, tripping and stumbling with subsequent striking against other object, subsequent encounter +W01198S Fall on same level from slipping, tripping and stumbling with subsequent striking against other object, sequela +W03XXXA Other fall on same level due to collision with another person, initial encounter +W03XXXD Other fall on same level due to collision with another person, subsequent encounter +W03XXXS Other fall on same level due to collision with another person, sequela +W04XXXA Fall while being carried or supported by other persons, initial encounter +W04XXXD Fall while being carried or supported by other persons, subsequent encounter +W04XXXS Fall while being carried or supported by other persons, sequela +W050XXA Fall from non-moving wheelchair, initial encounter +W050XXD Fall from non-moving wheelchair, subsequent encounter +W050XXS Fall from non-moving wheelchair, sequela +W051XXA Fall from non-moving nonmotorized scooter, initial encounter +W051XXD Fall from non-moving nonmotorized scooter, subsequent encounter +W051XXS Fall from non-moving nonmotorized scooter, sequela +W052XXA Fall from non-moving motorized mobility scooter, initial encounter +W052XXD Fall from non-moving motorized mobility scooter, subsequent encounter +W052XXS Fall from non-moving motorized mobility scooter, sequela +W06XXXA Fall from bed, initial encounter +W06XXXD Fall from bed, subsequent encounter +W06XXXS Fall from bed, sequela +W07XXXA Fall from chair, initial encounter +W07XXXD Fall from chair, subsequent encounter +W07XXXS Fall from chair, sequela +W08XXXA Fall from other furniture, initial encounter +W08XXXD Fall from other furniture, subsequent encounter +W08XXXS Fall from other furniture, sequela +W090XXA Fall on or from playground slide, initial encounter +W090XXD Fall on or from playground slide, subsequent encounter +W090XXS Fall on or from playground slide, sequela +W091XXA Fall from playground swing, initial encounter +W091XXD Fall from playground swing, subsequent encounter +W091XXS Fall from playground swing, sequela +W092XXA Fall on or from jungle gym, initial encounter +W092XXD Fall on or from jungle gym, subsequent encounter +W092XXS Fall on or from jungle gym, sequela +W098XXA Fall on or from other playground equipment, initial encounter +W098XXD Fall on or from other playground equipment, subsequent encounter +W098XXS Fall on or from other playground equipment, sequela +W100XXA Fall (on)(from) escalator, initial encounter +W100XXD Fall (on)(from) escalator, subsequent encounter +W100XXS Fall (on)(from) escalator, sequela +W101XXA Fall (on)(from) sidewalk curb, initial encounter +W101XXD Fall (on)(from) sidewalk curb, subsequent encounter +W101XXS Fall (on)(from) sidewalk curb, sequela +W102XXA Fall (on)(from) incline, initial encounter +W102XXD Fall (on)(from) incline, subsequent encounter +W102XXS Fall (on)(from) incline, sequela +W108XXA Fall (on) (from) other stairs and steps, initial encounter +W108XXD Fall (on) (from) other stairs and steps, subsequent encounter +W108XXS Fall (on) (from) other stairs and steps, sequela +W109XXA Fall (on) (from) unspecified stairs and steps, initial encounter +W109XXD Fall (on) (from) unspecified stairs and steps, subsequent encounter +W109XXS Fall (on) (from) unspecified stairs and steps, sequela +W11XXXA Fall on and from ladder, initial encounter +W11XXXD Fall on and from ladder, subsequent encounter +W11XXXS Fall on and from ladder, sequela +W12XXXA Fall on and from scaffolding, initial encounter +W12XXXD Fall on and from scaffolding, subsequent encounter +W12XXXS Fall on and from scaffolding, sequela +W130XXA Fall from, out of or through balcony, initial encounter +W130XXD Fall from, out of or through balcony, subsequent encounter +W130XXS Fall from, out of or through balcony, sequela +W131XXA Fall from, out of or through bridge, initial encounter +W131XXD Fall from, out of or through bridge, subsequent encounter +W131XXS Fall from, out of or through bridge, sequela +W132XXA Fall from, out of or through roof, initial encounter +W132XXD Fall from, out of or through roof, subsequent encounter +W132XXS Fall from, out of or through roof, sequela +W133XXA Fall through floor, initial encounter +W133XXD Fall through floor, subsequent encounter +W133XXS Fall through floor, sequela +W134XXA Fall from, out of or through window, initial encounter +W134XXD Fall from, out of or through window, subsequent encounter +W134XXS Fall from, out of or through window, sequela +W138XXA Fall from, out of or through other building or structure, initial encounter +W138XXD Fall from, out of or through other building or structure, subsequent encounter +W138XXS Fall from, out of or through other building or structure, sequela +W139XXA Fall from, out of or through building, not otherwise specified, initial encounter +W139XXD Fall from, out of or through building, not otherwise specified, subsequent encounter +W139XXS Fall from, out of or through building, not otherwise specified, sequela +W14XXXA Fall from tree, initial encounter +W14XXXD Fall from tree, subsequent encounter +W14XXXS Fall from tree, sequela +W15XXXA Fall from cliff, initial encounter +W15XXXD Fall from cliff, subsequent encounter +W15XXXS Fall from cliff, sequela +W16011A Fall into swimming pool striking water surface causing drowning and submersion, initial encounter +W16011D Fall into swimming pool striking water surface causing drowning and submersion, subsequent encounter +W16011S Fall into swimming pool striking water surface causing drowning and submersion, sequela +W16012A Fall into swimming pool striking water surface causing other injury, initial encounter +W16012D Fall into swimming pool striking water surface causing other injury, subsequent encounter +W16012S Fall into swimming pool striking water surface causing other injury, sequela +W16021A Fall into swimming pool striking bottom causing drowning and submersion, initial encounter +W16021D Fall into swimming pool striking bottom causing drowning and submersion, subsequent encounter +W16021S Fall into swimming pool striking bottom causing drowning and submersion, sequela +W16022A Fall into swimming pool striking bottom causing other injury, initial encounter +W16022D Fall into swimming pool striking bottom causing other injury, subsequent encounter +W16022S Fall into swimming pool striking bottom causing other injury, sequela +W16031A Fall into swimming pool striking wall causing drowning and submersion, initial encounter +W16031D Fall into swimming pool striking wall causing drowning and submersion, subsequent encounter +W16031S Fall into swimming pool striking wall causing drowning and submersion, sequela +W16032A Fall into swimming pool striking wall causing other injury, initial encounter +W16032D Fall into swimming pool striking wall causing other injury, subsequent encounter +W16032S Fall into swimming pool striking wall causing other injury, sequela +W16111A Fall into natural body of water striking water surface causing drowning and submersion, initial encounter +W16111D Fall into natural body of water striking water surface causing drowning and submersion, subsequent encounter +W16111S Fall into natural body of water striking water surface causing drowning and submersion, sequela +W16112A Fall into natural body of water striking water surface causing other injury, initial encounter +W16112D Fall into natural body of water striking water surface causing other injury, subsequent encounter +W16112S Fall into natural body of water striking water surface causing other injury, sequela +W16121A Fall into natural body of water striking bottom causing drowning and submersion, initial encounter +W16121D Fall into natural body of water striking bottom causing drowning and submersion, subsequent encounter +W16121S Fall into natural body of water striking bottom causing drowning and submersion, sequela +W16122A Fall into natural body of water striking bottom causing other injury, initial encounter +W16122D Fall into natural body of water striking bottom causing other injury, subsequent encounter +W16122S Fall into natural body of water striking bottom causing other injury, sequela +W16131A Fall into natural body of water striking side causing drowning and submersion, initial encounter +W16131D Fall into natural body of water striking side causing drowning and submersion, subsequent encounter +W16131S Fall into natural body of water striking side causing drowning and submersion, sequela +W16132A Fall into natural body of water striking side causing other injury, initial encounter +W16132D Fall into natural body of water striking side causing other injury, subsequent encounter +W16132S Fall into natural body of water striking side causing other injury, sequela +W16211A Fall in (into) filled bathtub causing drowning and submersion, initial encounter +W16211D Fall in (into) filled bathtub causing drowning and submersion, subsequent encounter +W16211S Fall in (into) filled bathtub causing drowning and submersion, sequela +W16212A Fall in (into) filled bathtub causing other injury, initial encounter +W16212D Fall in (into) filled bathtub causing other injury, subsequent encounter +W16212S Fall in (into) filled bathtub causing other injury, sequela +W16221A Fall in (into) bucket of water causing drowning and submersion, initial encounter +W16221D Fall in (into) bucket of water causing drowning and submersion, subsequent encounter +W16221S Fall in (into) bucket of water causing drowning and submersion, sequela +W16222A Fall in (into) bucket of water causing other injury, initial encounter +W16222D Fall in (into) bucket of water causing other injury, subsequent encounter +W16222S Fall in (into) bucket of water causing other injury, sequela +W16311A Fall into other water striking water surface causing drowning and submersion, initial encounter +W16311D Fall into other water striking water surface causing drowning and submersion, subsequent encounter +W16311S Fall into other water striking water surface causing drowning and submersion, sequela +W16312A Fall into other water striking water surface causing other injury, initial encounter +W16312D Fall into other water striking water surface causing other injury, subsequent encounter +W16312S Fall into other water striking water surface causing other injury, sequela +W16321A Fall into other water striking bottom causing drowning and submersion, initial encounter +W16321D Fall into other water striking bottom causing drowning and submersion, subsequent encounter +W16321S Fall into other water striking bottom causing drowning and submersion, sequela +W16322A Fall into other water striking bottom causing other injury, initial encounter +W16322D Fall into other water striking bottom causing other injury, subsequent encounter +W16322S Fall into other water striking bottom causing other injury, sequela +W16331A Fall into other water striking wall causing drowning and submersion, initial encounter +W16331D Fall into other water striking wall causing drowning and submersion, subsequent encounter +W16331S Fall into other water striking wall causing drowning and submersion, sequela +W16332A Fall into other water striking wall causing other injury, initial encounter +W16332D Fall into other water striking wall causing other injury, subsequent encounter +W16332S Fall into other water striking wall causing other injury, sequela +W1641XA Fall into unspecified water causing drowning and submersion, initial encounter +W1641XD Fall into unspecified water causing drowning and submersion, subsequent encounter +W1641XS Fall into unspecified water causing drowning and submersion, sequela +W1642XA Fall into unspecified water causing other injury, initial encounter +W1642XD Fall into unspecified water causing other injury, subsequent encounter +W1642XS Fall into unspecified water causing other injury, sequela +W16511A Jumping or diving into swimming pool striking water surface causing drowning and submersion, initial encounter +W16511D Jumping or diving into swimming pool striking water surface causing drowning and submersion, subsequent encounter +W16511S Jumping or diving into swimming pool striking water surface causing drowning and submersion, sequela +W16512A Jumping or diving into swimming pool striking water surface causing other injury, initial encounter +W16512D Jumping or diving into swimming pool striking water surface causing other injury, subsequent encounter +W16512S Jumping or diving into swimming pool striking water surface causing other injury, sequela +W16521A Jumping or diving into swimming pool striking bottom causing drowning and submersion, initial encounter +W16521D Jumping or diving into swimming pool striking bottom causing drowning and submersion, subsequent encounter +W16521S Jumping or diving into swimming pool striking bottom causing drowning and submersion, sequela +W16522A Jumping or diving into swimming pool striking bottom causing other injury, initial encounter +W16522D Jumping or diving into swimming pool striking bottom causing other injury, subsequent encounter +W16522S Jumping or diving into swimming pool striking bottom causing other injury, sequela +W16531A Jumping or diving into swimming pool striking wall causing drowning and submersion, initial encounter +W16531D Jumping or diving into swimming pool striking wall causing drowning and submersion, subsequent encounter +W16531S Jumping or diving into swimming pool striking wall causing drowning and submersion, sequela +W16532A Jumping or diving into swimming pool striking wall causing other injury, initial encounter +W16532D Jumping or diving into swimming pool striking wall causing other injury, subsequent encounter +W16532S Jumping or diving into swimming pool striking wall causing other injury, sequela +W16611A Jumping or diving into natural body of water striking water surface causing drowning and submersion, initial encounter +W16611D Jumping or diving into natural body of water striking water surface causing drowning and submersion, subsequent encounter +W16611S Jumping or diving into natural body of water striking water surface causing drowning and submersion, sequela +W16612A Jumping or diving into natural body of water striking water surface causing other injury, initial encounter +W16612D Jumping or diving into natural body of water striking water surface causing other injury, subsequent encounter +W16612S Jumping or diving into natural body of water striking water surface causing other injury, sequela +W16621A Jumping or diving into natural body of water striking bottom causing drowning and submersion, initial encounter +W16621D Jumping or diving into natural body of water striking bottom causing drowning and submersion, subsequent encounter +W16621S Jumping or diving into natural body of water striking bottom causing drowning and submersion, sequela +W16622A Jumping or diving into natural body of water striking bottom causing other injury, initial encounter +W16622D Jumping or diving into natural body of water striking bottom causing other injury, subsequent encounter +W16622S Jumping or diving into natural body of water striking bottom causing other injury, sequela +W16711A Jumping or diving from boat striking water surface causing drowning and submersion, initial encounter +W16711D Jumping or diving from boat striking water surface causing drowning and submersion, subsequent encounter +W16711S Jumping or diving from boat striking water surface causing drowning and submersion, sequela +W16712A Jumping or diving from boat striking water surface causing other injury, initial encounter +W16712D Jumping or diving from boat striking water surface causing other injury, subsequent encounter +W16712S Jumping or diving from boat striking water surface causing other injury, sequela +W16721A Jumping or diving from boat striking bottom causing drowning and submersion, initial encounter +W16721D Jumping or diving from boat striking bottom causing drowning and submersion, subsequent encounter +W16721S Jumping or diving from boat striking bottom causing drowning and submersion, sequela +W16722A Jumping or diving from boat striking bottom causing other injury, initial encounter +W16722D Jumping or diving from boat striking bottom causing other injury, subsequent encounter +W16722S Jumping or diving from boat striking bottom causing other injury, sequela +W16811A Jumping or diving into other water striking water surface causing drowning and submersion, initial encounter +W16811D Jumping or diving into other water striking water surface causing drowning and submersion, subsequent encounter +W16811S Jumping or diving into other water striking water surface causing drowning and submersion, sequela +W16812A Jumping or diving into other water striking water surface causing other injury, initial encounter +W16812D Jumping or diving into other water striking water surface causing other injury, subsequent encounter +W16812S Jumping or diving into other water striking water surface causing other injury, sequela +W16821A Jumping or diving into other water striking bottom causing drowning and submersion, initial encounter +W16821D Jumping or diving into other water striking bottom causing drowning and submersion, subsequent encounter +W16821S Jumping or diving into other water striking bottom causing drowning and submersion, sequela +W16822A Jumping or diving into other water striking bottom causing other injury, initial encounter +W16822D Jumping or diving into other water striking bottom causing other injury, subsequent encounter +W16822S Jumping or diving into other water striking bottom causing other injury, sequela +W16831A Jumping or diving into other water striking wall causing drowning and submersion, initial encounter +W16831D Jumping or diving into other water striking wall causing drowning and submersion, subsequent encounter +W16831S Jumping or diving into other water striking wall causing drowning and submersion, sequela +W16832A Jumping or diving into other water striking wall causing other injury, initial encounter +W16832D Jumping or diving into other water striking wall causing other injury, subsequent encounter +W16832S Jumping or diving into other water striking wall causing other injury, sequela +W1691XA Jumping or diving into unspecified water causing drowning and submersion, initial encounter +W1691XD Jumping or diving into unspecified water causing drowning and submersion, subsequent encounter +W1691XS Jumping or diving into unspecified water causing drowning and submersion, sequela +W1692XA Jumping or diving into unspecified water causing other injury, initial encounter +W1692XD Jumping or diving into unspecified water causing other injury, subsequent encounter +W1692XS Jumping or diving into unspecified water causing other injury, sequela +W170XXA Fall into well, initial encounter +W170XXD Fall into well, subsequent encounter +W170XXS Fall into well, sequela +W171XXA Fall into storm drain or manhole, initial encounter +W171XXD Fall into storm drain or manhole, subsequent encounter +W171XXS Fall into storm drain or manhole, sequela +W172XXA Fall into hole, initial encounter +W172XXD Fall into hole, subsequent encounter +W172XXS Fall into hole, sequela +W173XXA Fall into empty swimming pool, initial encounter +W173XXD Fall into empty swimming pool, subsequent encounter +W173XXS Fall into empty swimming pool, sequela +W174XXA Fall from dock, initial encounter +W174XXD Fall from dock, subsequent encounter +W174XXS Fall from dock, sequela +W1781XA Fall down embankment (hill), initial encounter +W1781XD Fall down embankment (hill), subsequent encounter +W1781XS Fall down embankment (hill), sequela +W1782XA Fall from (out of) grocery cart, initial encounter +W1782XD Fall from (out of) grocery cart, subsequent encounter +W1782XS Fall from (out of) grocery cart, sequela +W1789XA Other fall from one level to another, initial encounter +W1789XD Other fall from one level to another, subsequent encounter +W1789XS Other fall from one level to another, sequela +W1800XA Striking against unspecified object with subsequent fall, initial encounter +W1800XD Striking against unspecified object with subsequent fall, subsequent encounter +W1800XS Striking against unspecified object with subsequent fall, sequela +W1801XA Striking against sports equipment with subsequent fall, initial encounter +W1801XD Striking against sports equipment with subsequent fall, subsequent encounter +W1801XS Striking against sports equipment with subsequent fall, sequela +W1802XA Striking against glass with subsequent fall, initial encounter +W1802XD Striking against glass with subsequent fall, subsequent encounter +W1802XS Striking against glass with subsequent fall, sequela +W1809XA Striking against other object with subsequent fall, initial encounter +W1809XD Striking against other object with subsequent fall, subsequent encounter +W1809XS Striking against other object with subsequent fall, sequela +W1811XA Fall from or off toilet without subsequent striking against object, initial encounter +W1811XD Fall from or off toilet without subsequent striking against object, subsequent encounter +W1811XS Fall from or off toilet without subsequent striking against object, sequela +W1812XA Fall from or off toilet with subsequent striking against object, initial encounter +W1812XD Fall from or off toilet with subsequent striking against object, subsequent encounter +W1812XS Fall from or off toilet with subsequent striking against object, sequela +W182XXA Fall in (into) shower or empty bathtub, initial encounter +W182XXD Fall in (into) shower or empty bathtub, subsequent encounter +W182XXS Fall in (into) shower or empty bathtub, sequela +W1830XA Fall on same level, unspecified, initial encounter +W1830XD Fall on same level, unspecified, subsequent encounter +W1830XS Fall on same level, unspecified, sequela +W1831XA Fall on same level due to stepping on an object, initial encounter +W1831XD Fall on same level due to stepping on an object, subsequent encounter +W1831XS Fall on same level due to stepping on an object, sequela +W1839XA Other fall on same level, initial encounter +W1839XD Other fall on same level, subsequent encounter +W1839XS Other fall on same level, sequela +W1840XA Slipping, tripping and stumbling without falling, unspecified, initial encounter +W1840XD Slipping, tripping and stumbling without falling, unspecified, subsequent encounter +W1840XS Slipping, tripping and stumbling without falling, unspecified, sequela +W1841XA Slipping, tripping and stumbling without falling due to stepping on object, initial encounter +W1841XD Slipping, tripping and stumbling without falling due to stepping on object, subsequent encounter +W1841XS Slipping, tripping and stumbling without falling due to stepping on object, sequela +W1842XA Slipping, tripping and stumbling without falling due to stepping into hole or opening, initial encounter +W1842XD Slipping, tripping and stumbling without falling due to stepping into hole or opening, subsequent encounter +W1842XS Slipping, tripping and stumbling without falling due to stepping into hole or opening, sequela +W1843XA Slipping, tripping and stumbling without falling due to stepping from one level to another, initial encounter +W1843XD Slipping, tripping and stumbling without falling due to stepping from one level to another, subsequent encounter +W1843XS Slipping, tripping and stumbling without falling due to stepping from one level to another, sequela +W1849XA Other slipping, tripping and stumbling without falling, initial encounter +W1849XD Other slipping, tripping and stumbling without falling, subsequent encounter +W1849XS Other slipping, tripping and stumbling without falling, sequela +W19XXXA Unspecified fall, initial encounter +W19XXXD Unspecified fall, subsequent encounter +W19XXXS Unspecified fall, sequela +W200XXA Struck by falling object in cave-in, initial encounter +W200XXD Struck by falling object in cave-in, subsequent encounter +W200XXS Struck by falling object in cave-in, sequela +W201XXA Struck by object due to collapse of building, initial encounter +W201XXD Struck by object due to collapse of building, subsequent encounter +W201XXS Struck by object due to collapse of building, sequela +W208XXA Other cause of strike by thrown, projected or falling object, initial encounter +W208XXD Other cause of strike by thrown, projected or falling object, subsequent encounter +W208XXS Other cause of strike by thrown, projected or falling object, sequela +W2100XA Struck by hit or thrown ball, unspecified type, initial encounter +W2100XD Struck by hit or thrown ball, unspecified type, subsequent encounter +W2100XS Struck by hit or thrown ball, unspecified type, sequela +W2101XA Struck by football, initial encounter +W2101XD Struck by football, subsequent encounter +W2101XS Struck by football, sequela +W2102XA Struck by soccer ball, initial encounter +W2102XD Struck by soccer ball, subsequent encounter +W2102XS Struck by soccer ball, sequela +W2103XA Struck by baseball, initial encounter +W2103XD Struck by baseball, subsequent encounter +W2103XS Struck by baseball, sequela +W2104XA Struck by golf ball, initial encounter +W2104XD Struck by golf ball, subsequent encounter +W2104XS Struck by golf ball, sequela +W2105XA Struck by basketball, initial encounter +W2105XD Struck by basketball, subsequent encounter +W2105XS Struck by basketball, sequela +W2106XA Struck by volleyball, initial encounter +W2106XD Struck by volleyball, subsequent encounter +W2106XS Struck by volleyball, sequela +W2107XA Struck by softball, initial encounter +W2107XD Struck by softball, subsequent encounter +W2107XS Struck by softball, sequela +W2109XA Struck by other hit or thrown ball, initial encounter +W2109XD Struck by other hit or thrown ball, subsequent encounter +W2109XS Struck by other hit or thrown ball, sequela +W2111XA Struck by baseball bat, initial encounter +W2111XD Struck by baseball bat, subsequent encounter +W2111XS Struck by baseball bat, sequela +W2112XA Struck by tennis racquet, initial encounter +W2112XD Struck by tennis racquet, subsequent encounter +W2112XS Struck by tennis racquet, sequela +W2113XA Struck by golf club, initial encounter +W2113XD Struck by golf club, subsequent encounter +W2113XS Struck by golf club, sequela +W2119XA Struck by other bat, racquet or club, initial encounter +W2119XD Struck by other bat, racquet or club, subsequent encounter +W2119XS Struck by other bat, racquet or club, sequela +W21210A Struck by ice hockey stick, initial encounter +W21210D Struck by ice hockey stick, subsequent encounter +W21210S Struck by ice hockey stick, sequela +W21211A Struck by field hockey stick, initial encounter +W21211D Struck by field hockey stick, subsequent encounter +W21211S Struck by field hockey stick, sequela +W21220A Struck by ice hockey puck, initial encounter +W21220D Struck by ice hockey puck, subsequent encounter +W21220S Struck by ice hockey puck, sequela +W21221A Struck by field hockey puck, initial encounter +W21221D Struck by field hockey puck, subsequent encounter +W21221S Struck by field hockey puck, sequela +W2131XA Struck by shoe cleats, initial encounter +W2131XD Struck by shoe cleats, subsequent encounter +W2131XS Struck by shoe cleats, sequela +W2132XA Struck by skate blades, initial encounter +W2132XD Struck by skate blades, subsequent encounter +W2132XS Struck by skate blades, sequela +W2139XA Struck by other sports foot wear, initial encounter +W2139XD Struck by other sports foot wear, subsequent encounter +W2139XS Struck by other sports foot wear, sequela +W214XXA Striking against diving board, initial encounter +W214XXD Striking against diving board, subsequent encounter +W214XXS Striking against diving board, sequela +W2181XA Striking against or struck by football helmet, initial encounter +W2181XD Striking against or struck by football helmet, subsequent encounter +W2181XS Striking against or struck by football helmet, sequela +W2189XA Striking against or struck by other sports equipment, initial encounter +W2189XD Striking against or struck by other sports equipment, subsequent encounter +W2189XS Striking against or struck by other sports equipment, sequela +W219XXA Striking against or struck by unspecified sports equipment, initial encounter +W219XXD Striking against or struck by unspecified sports equipment, subsequent encounter +W219XXS Striking against or struck by unspecified sports equipment, sequela +W2201XA Walked into wall, initial encounter +W2201XD Walked into wall, subsequent encounter +W2201XS Walked into wall, sequela +W2202XA Walked into lamppost, initial encounter +W2202XD Walked into lamppost, subsequent encounter +W2202XS Walked into lamppost, sequela +W2203XA Walked into furniture, initial encounter +W2203XD Walked into furniture, subsequent encounter +W2203XS Walked into furniture, sequela +W22041A Striking against wall of swimming pool causing drowning and submersion, initial encounter +W22041D Striking against wall of swimming pool causing drowning and submersion, subsequent encounter +W22041S Striking against wall of swimming pool causing drowning and submersion, sequela +W22042A Striking against wall of swimming pool causing other injury, initial encounter +W22042D Striking against wall of swimming pool causing other injury, subsequent encounter +W22042S Striking against wall of swimming pool causing other injury, sequela +W2209XA Striking against other stationary object, initial encounter +W2209XD Striking against other stationary object, subsequent encounter +W2209XS Striking against other stationary object, sequela +W2210XA Striking against or struck by unspecified automobile airbag, initial encounter +W2210XD Striking against or struck by unspecified automobile airbag, subsequent encounter +W2210XS Striking against or struck by unspecified automobile airbag, sequela +W2211XA Striking against or struck by driver side automobile airbag, initial encounter +W2211XD Striking against or struck by driver side automobile airbag, subsequent encounter +W2211XS Striking against or struck by driver side automobile airbag, sequela +W2212XA Striking against or struck by front passenger side automobile airbag, initial encounter +W2212XD Striking against or struck by front passenger side automobile airbag, subsequent encounter +W2212XS Striking against or struck by front passenger side automobile airbag, sequela +W2219XA Striking against or struck by other automobile airbag, initial encounter +W2219XD Striking against or struck by other automobile airbag, subsequent encounter +W2219XS Striking against or struck by other automobile airbag, sequela +W228XXA Striking against or struck by other objects, initial encounter +W228XXD Striking against or struck by other objects, subsequent encounter +W228XXS Striking against or struck by other objects, sequela +W230XXA Caught, crushed, jammed, or pinched between moving objects, initial encounter +W230XXD Caught, crushed, jammed, or pinched between moving objects, subsequent encounter +W230XXS Caught, crushed, jammed, or pinched between moving objects, sequela +W231XXA Caught, crushed, jammed, or pinched between stationary objects, initial encounter +W231XXD Caught, crushed, jammed, or pinched between stationary objects, subsequent encounter +W231XXS Caught, crushed, jammed, or pinched between stationary objects, sequela +W240XXA Contact with lifting devices, not elsewhere classified, initial encounter +W240XXD Contact with lifting devices, not elsewhere classified, subsequent encounter +W240XXS Contact with lifting devices, not elsewhere classified, sequela +W241XXA Contact with transmission devices, not elsewhere classified, initial encounter +W241XXD Contact with transmission devices, not elsewhere classified, subsequent encounter +W241XXS Contact with transmission devices, not elsewhere classified, sequela +W25XXXA Contact with sharp glass, initial encounter +W25XXXD Contact with sharp glass, subsequent encounter +W25XXXS Contact with sharp glass, sequela +W260XXA Contact with knife, initial encounter +W260XXD Contact with knife, subsequent encounter +W260XXS Contact with knife, sequela +W261XXA Contact with sword or dagger, initial encounter +W261XXD Contact with sword or dagger, subsequent encounter +W261XXS Contact with sword or dagger, sequela +W262XXA Contact with edge of stiff paper, initial encounter +W262XXD Contact with edge of stiff paper, subsequent encounter +W262XXS Contact with edge of stiff paper, sequela +W268XXA Contact with other sharp object(s), not elsewhere classified, initial encounter +W268XXD Contact with other sharp object(s), not elsewhere classified, subsequent encounter +W268XXS Contact with other sharp object(s), not elsewhere classified, sequela +W269XXA Contact with unspecified sharp object(s), initial encounter +W269XXD Contact with unspecified sharp object(s), subsequent encounter +W269XXS Contact with unspecified sharp object(s), sequela +W270XXA Contact with workbench tool, initial encounter +W270XXD Contact with workbench tool, subsequent encounter +W270XXS Contact with workbench tool, sequela +W271XXA Contact with garden tool, initial encounter +W271XXD Contact with garden tool, subsequent encounter +W271XXS Contact with garden tool, sequela +W272XXA Contact with scissors, initial encounter +W272XXD Contact with scissors, subsequent encounter +W272XXS Contact with scissors, sequela +W273XXA Contact with needle (sewing), initial encounter +W273XXD Contact with needle (sewing), subsequent encounter +W273XXS Contact with needle (sewing), sequela +W274XXA Contact with kitchen utensil, initial encounter +W274XXD Contact with kitchen utensil, subsequent encounter +W274XXS Contact with kitchen utensil, sequela +W275XXA Contact with paper-cutter, initial encounter +W275XXD Contact with paper-cutter, subsequent encounter +W275XXS Contact with paper-cutter, sequela +W278XXA Contact with other nonpowered hand tool, initial encounter +W278XXD Contact with other nonpowered hand tool, subsequent encounter +W278XXS Contact with other nonpowered hand tool, sequela +W28XXXA Contact with powered lawn mower, initial encounter +W28XXXD Contact with powered lawn mower, subsequent encounter +W28XXXS Contact with powered lawn mower, sequela +W290XXA Contact with powered kitchen appliance, initial encounter +W290XXD Contact with powered kitchen appliance, subsequent encounter +W290XXS Contact with powered kitchen appliance, sequela +W291XXA Contact with electric knife, initial encounter +W291XXD Contact with electric knife, subsequent encounter +W291XXS Contact with electric knife, sequela +W292XXA Contact with other powered household machinery, initial encounter +W292XXD Contact with other powered household machinery, subsequent encounter +W292XXS Contact with other powered household machinery, sequela +W293XXA Contact with powered garden and outdoor hand tools and machinery, initial encounter +W293XXD Contact with powered garden and outdoor hand tools and machinery, subsequent encounter +W293XXS Contact with powered garden and outdoor hand tools and machinery, sequela +W294XXA Contact with nail gun, initial encounter +W294XXD Contact with nail gun, subsequent encounter +W294XXS Contact with nail gun, sequela +W298XXA Contact with other powered hand tools and household machinery, initial encounter +W298XXD Contact with other powered hand tools and household machinery, subsequent encounter +W298XXS Contact with other powered hand tools and household machinery, sequela +W300XXA Contact with combine harvester, initial encounter +W300XXD Contact with combine harvester, subsequent encounter +W300XXS Contact with combine harvester, sequela +W301XXA Contact with power take-off devices (PTO), initial encounter +W301XXD Contact with power take-off devices (PTO), subsequent encounter +W301XXS Contact with power take-off devices (PTO), sequela +W302XXA Contact with hay derrick, initial encounter +W302XXD Contact with hay derrick, subsequent encounter +W302XXS Contact with hay derrick, sequela +W303XXA Contact with grain storage elevator, initial encounter +W303XXD Contact with grain storage elevator, subsequent encounter +W303XXS Contact with grain storage elevator, sequela +W3081XA Contact with agricultural transport vehicle in stationary use, initial encounter +W3081XD Contact with agricultural transport vehicle in stationary use, subsequent encounter +W3081XS Contact with agricultural transport vehicle in stationary use, sequela +W3089XA Contact with other specified agricultural machinery, initial encounter +W3089XD Contact with other specified agricultural machinery, subsequent encounter +W3089XS Contact with other specified agricultural machinery, sequela +W309XXA Contact with unspecified agricultural machinery, initial encounter +W309XXD Contact with unspecified agricultural machinery, subsequent encounter +W309XXS Contact with unspecified agricultural machinery, sequela +W310XXA Contact with mining and earth-drilling machinery, initial encounter +W310XXD Contact with mining and earth-drilling machinery, subsequent encounter +W310XXS Contact with mining and earth-drilling machinery, sequela +W311XXA Contact with metalworking machines, initial encounter +W311XXD Contact with metalworking machines, subsequent encounter +W311XXS Contact with metalworking machines, sequela +W312XXA Contact with powered woodworking and forming machines, initial encounter +W312XXD Contact with powered woodworking and forming machines, subsequent encounter +W312XXS Contact with powered woodworking and forming machines, sequela +W313XXA Contact with prime movers, initial encounter +W313XXD Contact with prime movers, subsequent encounter +W313XXS Contact with prime movers, sequela +W3181XA Contact with recreational machinery, initial encounter +W3181XD Contact with recreational machinery, subsequent encounter +W3181XS Contact with recreational machinery, sequela +W3182XA Contact with other commercial machinery, initial encounter +W3182XD Contact with other commercial machinery, subsequent encounter +W3182XS Contact with other commercial machinery, sequela +W3183XA Contact with special construction vehicle in stationary use, initial encounter +W3183XD Contact with special construction vehicle in stationary use, subsequent encounter +W3183XS Contact with special construction vehicle in stationary use, sequela +W3189XA Contact with other specified machinery, initial encounter +W3189XD Contact with other specified machinery, subsequent encounter +W3189XS Contact with other specified machinery, sequela +W319XXA Contact with unspecified machinery, initial encounter +W319XXD Contact with unspecified machinery, subsequent encounter +W319XXS Contact with unspecified machinery, sequela +W320XXA Accidental handgun discharge, initial encounter +W320XXD Accidental handgun discharge, subsequent encounter +W320XXS Accidental handgun discharge, sequela +W321XXA Accidental handgun malfunction, initial encounter +W321XXD Accidental handgun malfunction, subsequent encounter +W321XXS Accidental handgun malfunction, sequela +W3300XA Accidental discharge of unspecified larger firearm, initial encounter +W3300XD Accidental discharge of unspecified larger firearm, subsequent encounter +W3300XS Accidental discharge of unspecified larger firearm, sequela +W3301XA Accidental discharge of shotgun, initial encounter +W3301XD Accidental discharge of shotgun, subsequent encounter +W3301XS Accidental discharge of shotgun, sequela +W3302XA Accidental discharge of hunting rifle, initial encounter +W3302XD Accidental discharge of hunting rifle, subsequent encounter +W3302XS Accidental discharge of hunting rifle, sequela +W3303XA Accidental discharge of machine gun, initial encounter +W3303XD Accidental discharge of machine gun, subsequent encounter +W3303XS Accidental discharge of machine gun, sequela +W3309XA Accidental discharge of other larger firearm, initial encounter +W3309XD Accidental discharge of other larger firearm, subsequent encounter +W3309XS Accidental discharge of other larger firearm, sequela +W3310XA Accidental malfunction of unspecified larger firearm, initial encounter +W3310XD Accidental malfunction of unspecified larger firearm, subsequent encounter +W3310XS Accidental malfunction of unspecified larger firearm, sequela +W3311XA Accidental malfunction of shotgun, initial encounter +W3311XD Accidental malfunction of shotgun, subsequent encounter +W3311XS Accidental malfunction of shotgun, sequela +W3312XA Accidental malfunction of hunting rifle, initial encounter +W3312XD Accidental malfunction of hunting rifle, subsequent encounter +W3312XS Accidental malfunction of hunting rifle, sequela +W3313XA Accidental malfunction of machine gun, initial encounter +W3313XD Accidental malfunction of machine gun, subsequent encounter +W3313XS Accidental malfunction of machine gun, sequela +W3319XA Accidental malfunction of other larger firearm, initial encounter +W3319XD Accidental malfunction of other larger firearm, subsequent encounter +W3319XS Accidental malfunction of other larger firearm, sequela +W3400XA Accidental discharge from unspecified firearms or gun, initial encounter +W3400XD Accidental discharge from unspecified firearms or gun, subsequent encounter +W3400XS Accidental discharge from unspecified firearms or gun, sequela +W34010A Accidental discharge of airgun, initial encounter +W34010D Accidental discharge of airgun, subsequent encounter +W34010S Accidental discharge of airgun, sequela +W34011A Accidental discharge of paintball gun, initial encounter +W34011D Accidental discharge of paintball gun, subsequent encounter +W34011S Accidental discharge of paintball gun, sequela +W34018A Accidental discharge of other gas, air or spring-operated gun, initial encounter +W34018D Accidental discharge of other gas, air or spring-operated gun, subsequent encounter +W34018S Accidental discharge of other gas, air or spring-operated gun, sequela +W3409XA Accidental discharge from other specified firearms, initial encounter +W3409XD Accidental discharge from other specified firearms, subsequent encounter +W3409XS Accidental discharge from other specified firearms, sequela +W3410XA Accidental malfunction from unspecified firearms or gun, initial encounter +W3410XD Accidental malfunction from unspecified firearms or gun, subsequent encounter +W3410XS Accidental malfunction from unspecified firearms or gun, sequela +W34110A Accidental malfunction of airgun, initial encounter +W34110D Accidental malfunction of airgun, subsequent encounter +W34110S Accidental malfunction of airgun, sequela +W34111A Accidental malfunction of paintball gun, initial encounter +W34111D Accidental malfunction of paintball gun, subsequent encounter +W34111S Accidental malfunction of paintball gun, sequela +W34118A Accidental malfunction of other gas, air or spring-operated gun, initial encounter +W34118D Accidental malfunction of other gas, air or spring-operated gun, subsequent encounter +W34118S Accidental malfunction of other gas, air or spring-operated gun, sequela +W3419XA Accidental malfunction from other specified firearms, initial encounter +W3419XD Accidental malfunction from other specified firearms, subsequent encounter +W3419XS Accidental malfunction from other specified firearms, sequela +W35XXXA Explosion and rupture of boiler, initial encounter +W35XXXD Explosion and rupture of boiler, subsequent encounter +W35XXXS Explosion and rupture of boiler, sequela +W361XXA Explosion and rupture of aerosol can, initial encounter +W361XXD Explosion and rupture of aerosol can, subsequent encounter +W361XXS Explosion and rupture of aerosol can, sequela +W362XXA Explosion and rupture of air tank, initial encounter +W362XXD Explosion and rupture of air tank, subsequent encounter +W362XXS Explosion and rupture of air tank, sequela +W363XXA Explosion and rupture of pressurized-gas tank, initial encounter +W363XXD Explosion and rupture of pressurized-gas tank, subsequent encounter +W363XXS Explosion and rupture of pressurized-gas tank, sequela +W368XXA Explosion and rupture of other gas cylinder, initial encounter +W368XXD Explosion and rupture of other gas cylinder, subsequent encounter +W368XXS Explosion and rupture of other gas cylinder, sequela +W369XXA Explosion and rupture of unspecified gas cylinder, initial encounter +W369XXD Explosion and rupture of unspecified gas cylinder, subsequent encounter +W369XXS Explosion and rupture of unspecified gas cylinder, sequela +W370XXA Explosion of bicycle tire, initial encounter +W370XXD Explosion of bicycle tire, subsequent encounter +W370XXS Explosion of bicycle tire, sequela +W378XXA Explosion and rupture of other pressurized tire, pipe or hose, initial encounter +W378XXD Explosion and rupture of other pressurized tire, pipe or hose, subsequent encounter +W378XXS Explosion and rupture of other pressurized tire, pipe or hose, sequela +W38XXXA Explosion and rupture of other specified pressurized devices, initial encounter +W38XXXD Explosion and rupture of other specified pressurized devices, subsequent encounter +W38XXXS Explosion and rupture of other specified pressurized devices, sequela +W39XXXA Discharge of firework, initial encounter +W39XXXD Discharge of firework, subsequent encounter +W39XXXS Discharge of firework, sequela +W400XXA Explosion of blasting material, initial encounter +W400XXD Explosion of blasting material, subsequent encounter +W400XXS Explosion of blasting material, sequela +W401XXA Explosion of explosive gases, initial encounter +W401XXD Explosion of explosive gases, subsequent encounter +W401XXS Explosion of explosive gases, sequela +W408XXA Explosion of other specified explosive materials, initial encounter +W408XXD Explosion of other specified explosive materials, subsequent encounter +W408XXS Explosion of other specified explosive materials, sequela +W409XXA Explosion of unspecified explosive materials, initial encounter +W409XXD Explosion of unspecified explosive materials, subsequent encounter +W409XXS Explosion of unspecified explosive materials, sequela +W420XXA Exposure to supersonic waves, initial encounter +W420XXD Exposure to supersonic waves, subsequent encounter +W420XXS Exposure to supersonic waves, sequela +W429XXA Exposure to other noise, initial encounter +W429XXD Exposure to other noise, subsequent encounter +W429XXS Exposure to other noise, sequela +W450XXA Nail entering through skin, initial encounter +W450XXD Nail entering through skin, subsequent encounter +W450XXS Nail entering through skin, sequela +W451XXA Paper entering through skin, initial encounter +W451XXD Paper entering through skin, subsequent encounter +W451XXS Paper entering through skin, sequela +W452XXA Lid of can entering through skin, initial encounter +W452XXD Lid of can entering through skin, subsequent encounter +W452XXS Lid of can entering through skin, sequela +W458XXA Other foreign body or object entering through skin, initial encounter +W458XXD Other foreign body or object entering through skin, subsequent encounter +W458XXS Other foreign body or object entering through skin, sequela +W460XXA Contact with hypodermic needle, initial encounter +W460XXD Contact with hypodermic needle, subsequent encounter +W460XXS Contact with hypodermic needle, sequela +W461XXA Contact with contaminated hypodermic needle, initial encounter +W461XXD Contact with contaminated hypodermic needle, subsequent encounter +W461XXS Contact with contaminated hypodermic needle, sequela +W4901XA Hair causing external constriction, initial encounter +W4901XD Hair causing external constriction, subsequent encounter +W4901XS Hair causing external constriction, sequela +W4902XA String or thread causing external constriction, initial encounter +W4902XD String or thread causing external constriction, subsequent encounter +W4902XS String or thread causing external constriction, sequela +W4903XA Rubber band causing external constriction, initial encounter +W4903XD Rubber band causing external constriction, subsequent encounter +W4903XS Rubber band causing external constriction, sequela +W4904XA Ring or other jewelry causing external constriction, initial encounter +W4904XD Ring or other jewelry causing external constriction, subsequent encounter +W4904XS Ring or other jewelry causing external constriction, sequela +W4909XA Other specified item causing external constriction, initial encounter +W4909XD Other specified item causing external constriction, subsequent encounter +W4909XS Other specified item causing external constriction, sequela +W499XXA Exposure to other inanimate mechanical forces, initial encounter +W499XXD Exposure to other inanimate mechanical forces, subsequent encounter +W499XXS Exposure to other inanimate mechanical forces, sequela +W500XXA Accidental hit or strike by another person, initial encounter +W500XXD Accidental hit or strike by another person, subsequent encounter +W500XXS Accidental hit or strike by another person, sequela +W501XXA Accidental kick by another person, initial encounter +W501XXD Accidental kick by another person, subsequent encounter +W501XXS Accidental kick by another person, sequela +W502XXA Accidental twist by another person, initial encounter +W502XXD Accidental twist by another person, subsequent encounter +W502XXS Accidental twist by another person, sequela +W503XXA Accidental bite by another person, initial encounter +W503XXD Accidental bite by another person, subsequent encounter +W503XXS Accidental bite by another person, sequela +W504XXA Accidental scratch by another person, initial encounter +W504XXD Accidental scratch by another person, subsequent encounter +W504XXS Accidental scratch by another person, sequela +W51XXXA Accidental striking against or bumped into by another person, initial encounter +W51XXXD Accidental striking against or bumped into by another person, subsequent encounter +W51XXXS Accidental striking against or bumped into by another person, sequela +W52XXXA Crushed, pushed or stepped on by crowd or human stampede, initial encounter +W52XXXD Crushed, pushed or stepped on by crowd or human stampede, subsequent encounter +W52XXXS Crushed, pushed or stepped on by crowd or human stampede, sequela +W5301XA Bitten by mouse, initial encounter +W5301XD Bitten by mouse, subsequent encounter +W5301XS Bitten by mouse, sequela +W5309XA Other contact with mouse, initial encounter +W5309XD Other contact with mouse, subsequent encounter +W5309XS Other contact with mouse, sequela +W5311XA Bitten by rat, initial encounter +W5311XD Bitten by rat, subsequent encounter +W5311XS Bitten by rat, sequela +W5319XA Other contact with rat, initial encounter +W5319XD Other contact with rat, subsequent encounter +W5319XS Other contact with rat, sequela +W5321XA Bitten by squirrel, initial encounter +W5321XD Bitten by squirrel, subsequent encounter +W5321XS Bitten by squirrel, sequela +W5329XA Other contact with squirrel, initial encounter +W5329XD Other contact with squirrel, subsequent encounter +W5329XS Other contact with squirrel, sequela +W5381XA Bitten by other rodent, initial encounter +W5381XD Bitten by other rodent, subsequent encounter +W5381XS Bitten by other rodent, sequela +W5389XA Other contact with other rodent, initial encounter +W5389XD Other contact with other rodent, subsequent encounter +W5389XS Other contact with other rodent, sequela +W540XXA Bitten by dog, initial encounter +W540XXD Bitten by dog, subsequent encounter +W540XXS Bitten by dog, sequela +W541XXA Struck by dog, initial encounter +W541XXD Struck by dog, subsequent encounter +W541XXS Struck by dog, sequela +W548XXA Other contact with dog, initial encounter +W548XXD Other contact with dog, subsequent encounter +W548XXS Other contact with dog, sequela +W5501XA Bitten by cat, initial encounter +W5501XD Bitten by cat, subsequent encounter +W5501XS Bitten by cat, sequela +W5503XA Scratched by cat, initial encounter +W5503XD Scratched by cat, subsequent encounter +W5503XS Scratched by cat, sequela +W5509XA Other contact with cat, initial encounter +W5509XD Other contact with cat, subsequent encounter +W5509XS Other contact with cat, sequela +W5511XA Bitten by horse, initial encounter +W5511XD Bitten by horse, subsequent encounter +W5511XS Bitten by horse, sequela +W5512XA Struck by horse, initial encounter +W5512XD Struck by horse, subsequent encounter +W5512XS Struck by horse, sequela +W5519XA Other contact with horse, initial encounter +W5519XD Other contact with horse, subsequent encounter +W5519XS Other contact with horse, sequela +W5521XA Bitten by cow, initial encounter +W5521XD Bitten by cow, subsequent encounter +W5521XS Bitten by cow, sequela +W5522XA Struck by cow, initial encounter +W5522XD Struck by cow, subsequent encounter +W5522XS Struck by cow, sequela +W5529XA Other contact with cow, initial encounter +W5529XD Other contact with cow, subsequent encounter +W5529XS Other contact with cow, sequela +W5531XA Bitten by other hoof stock, initial encounter +W5531XD Bitten by other hoof stock, subsequent encounter +W5531XS Bitten by other hoof stock, sequela +W5532XA Struck by other hoof stock, initial encounter +W5532XD Struck by other hoof stock, subsequent encounter +W5532XS Struck by other hoof stock, sequela +W5539XA Other contact with other hoof stock, initial encounter +W5539XD Other contact with other hoof stock, subsequent encounter +W5539XS Other contact with other hoof stock, sequela +W5541XA Bitten by pig, initial encounter +W5541XD Bitten by pig, subsequent encounter +W5541XS Bitten by pig, sequela +W5542XA Struck by pig, initial encounter +W5542XD Struck by pig, subsequent encounter +W5542XS Struck by pig, sequela +W5549XA Other contact with pig, initial encounter +W5549XD Other contact with pig, subsequent encounter +W5549XS Other contact with pig, sequela +W5551XA Bitten by raccoon, initial encounter +W5551XD Bitten by raccoon, subsequent encounter +W5551XS Bitten by raccoon, sequela +W5552XA Struck by raccoon, initial encounter +W5552XD Struck by raccoon, subsequent encounter +W5552XS Struck by raccoon, sequela +W5559XA Other contact with raccoon, initial encounter +W5559XD Other contact with raccoon, subsequent encounter +W5559XS Other contact with raccoon, sequela +W5581XA Bitten by other mammals, initial encounter +W5581XD Bitten by other mammals, subsequent encounter +W5581XS Bitten by other mammals, sequela +W5582XA Struck by other mammals, initial encounter +W5582XD Struck by other mammals, subsequent encounter +W5582XS Struck by other mammals, sequela +W5589XA Other contact with other mammals, initial encounter +W5589XD Other contact with other mammals, subsequent encounter +W5589XS Other contact with other mammals, sequela +W5601XA Bitten by dolphin, initial encounter +W5601XD Bitten by dolphin, subsequent encounter +W5601XS Bitten by dolphin, sequela +W5602XA Struck by dolphin, initial encounter +W5602XD Struck by dolphin, subsequent encounter +W5602XS Struck by dolphin, sequela +W5609XA Other contact with dolphin, initial encounter +W5609XD Other contact with dolphin, subsequent encounter +W5609XS Other contact with dolphin, sequela +W5611XA Bitten by sea lion, initial encounter +W5611XD Bitten by sea lion, subsequent encounter +W5611XS Bitten by sea lion, sequela +W5612XA Struck by sea lion, initial encounter +W5612XD Struck by sea lion, subsequent encounter +W5612XS Struck by sea lion, sequela +W5619XA Other contact with sea lion, initial encounter +W5619XD Other contact with sea lion, subsequent encounter +W5619XS Other contact with sea lion, sequela +W5621XA Bitten by orca, initial encounter +W5621XD Bitten by orca, subsequent encounter +W5621XS Bitten by orca, sequela +W5622XA Struck by orca, initial encounter +W5622XD Struck by orca, subsequent encounter +W5622XS Struck by orca, sequela +W5629XA Other contact with orca, initial encounter +W5629XD Other contact with orca, subsequent encounter +W5629XS Other contact with orca, sequela +W5631XA Bitten by other marine mammals, initial encounter +W5631XD Bitten by other marine mammals, subsequent encounter +W5631XS Bitten by other marine mammals, sequela +W5632XA Struck by other marine mammals, initial encounter +W5632XD Struck by other marine mammals, subsequent encounter +W5632XS Struck by other marine mammals, sequela +W5639XA Other contact with other marine mammals, initial encounter +W5639XD Other contact with other marine mammals, subsequent encounter +W5639XS Other contact with other marine mammals, sequela +W5641XA Bitten by shark, initial encounter +W5641XD Bitten by shark, subsequent encounter +W5641XS Bitten by shark, sequela +W5642XA Struck by shark, initial encounter +W5642XD Struck by shark, subsequent encounter +W5642XS Struck by shark, sequela +W5649XA Other contact with shark, initial encounter +W5649XD Other contact with shark, subsequent encounter +W5649XS Other contact with shark, sequela +W5651XA Bitten by other fish, initial encounter +W5651XD Bitten by other fish, subsequent encounter +W5651XS Bitten by other fish, sequela +W5652XA Struck by other fish, initial encounter +W5652XD Struck by other fish, subsequent encounter +W5652XS Struck by other fish, sequela +W5659XA Other contact with other fish, initial encounter +W5659XD Other contact with other fish, subsequent encounter +W5659XS Other contact with other fish, sequela +W5681XA Bitten by other nonvenomous marine animals, initial encounter +W5681XD Bitten by other nonvenomous marine animals, subsequent encounter +W5681XS Bitten by other nonvenomous marine animals, sequela +W5682XA Struck by other nonvenomous marine animals, initial encounter +W5682XD Struck by other nonvenomous marine animals, subsequent encounter +W5682XS Struck by other nonvenomous marine animals, sequela +W5689XA Other contact with other nonvenomous marine animals, initial encounter +W5689XD Other contact with other nonvenomous marine animals, subsequent encounter +W5689XS Other contact with other nonvenomous marine animals, sequela +W57XXXA Bitten or stung by nonvenomous insect and other nonvenomous arthropods, initial encounter +W57XXXD Bitten or stung by nonvenomous insect and other nonvenomous arthropods, subsequent encounter +W57XXXS Bitten or stung by nonvenomous insect and other nonvenomous arthropods, sequela +W5801XA Bitten by alligator, initial encounter +W5801XD Bitten by alligator, subsequent encounter +W5801XS Bitten by alligator, sequela +W5802XA Struck by alligator, initial encounter +W5802XD Struck by alligator, subsequent encounter +W5802XS Struck by alligator, sequela +W5803XA Crushed by alligator, initial encounter +W5803XD Crushed by alligator, subsequent encounter +W5803XS Crushed by alligator, sequela +W5809XA Other contact with alligator, initial encounter +W5809XD Other contact with alligator, subsequent encounter +W5809XS Other contact with alligator, sequela +W5811XA Bitten by crocodile, initial encounter +W5811XD Bitten by crocodile, subsequent encounter +W5811XS Bitten by crocodile, sequela +W5812XA Struck by crocodile, initial encounter +W5812XD Struck by crocodile, subsequent encounter +W5812XS Struck by crocodile, sequela +W5813XA Crushed by crocodile, initial encounter +W5813XD Crushed by crocodile, subsequent encounter +W5813XS Crushed by crocodile, sequela +W5819XA Other contact with crocodile, initial encounter +W5819XD Other contact with crocodile, subsequent encounter +W5819XS Other contact with crocodile, sequela +W5901XA Bitten by nonvenomous lizards, initial encounter +W5901XD Bitten by nonvenomous lizards, subsequent encounter +W5901XS Bitten by nonvenomous lizards, sequela +W5902XA Struck by nonvenomous lizards, initial encounter +W5902XD Struck by nonvenomous lizards, subsequent encounter +W5902XS Struck by nonvenomous lizards, sequela +W5909XA Other contact with nonvenomous lizards, initial encounter +W5909XD Other contact with nonvenomous lizards, subsequent encounter +W5909XS Other contact with nonvenomous lizards, sequela +W5911XA Bitten by nonvenomous snake, initial encounter +W5911XD Bitten by nonvenomous snake, subsequent encounter +W5911XS Bitten by nonvenomous snake, sequela +W5912XA Struck by nonvenomous snake, initial encounter +W5912XD Struck by nonvenomous snake, subsequent encounter +W5912XS Struck by nonvenomous snake, sequela +W5913XA Crushed by nonvenomous snake, initial encounter +W5913XD Crushed by nonvenomous snake, subsequent encounter +W5913XS Crushed by nonvenomous snake, sequela +W5919XA Other contact with nonvenomous snake, initial encounter +W5919XD Other contact with nonvenomous snake, subsequent encounter +W5919XS Other contact with nonvenomous snake, sequela +W5921XA Bitten by turtle, initial encounter +W5921XD Bitten by turtle, subsequent encounter +W5921XS Bitten by turtle, sequela +W5922XA Struck by turtle, initial encounter +W5922XD Struck by turtle, subsequent encounter +W5922XS Struck by turtle, sequela +W5929XA Other contact with turtle, initial encounter +W5929XD Other contact with turtle, subsequent encounter +W5929XS Other contact with turtle, sequela +W5981XA Bitten by other nonvenomous reptiles, initial encounter +W5981XD Bitten by other nonvenomous reptiles, subsequent encounter +W5981XS Bitten by other nonvenomous reptiles, sequela +W5982XA Struck by other nonvenomous reptiles, initial encounter +W5982XD Struck by other nonvenomous reptiles, subsequent encounter +W5982XS Struck by other nonvenomous reptiles, sequela +W5983XA Crushed by other nonvenomous reptiles, initial encounter +W5983XD Crushed by other nonvenomous reptiles, subsequent encounter +W5983XS Crushed by other nonvenomous reptiles, sequela +W5989XA Other contact with other nonvenomous reptiles, initial encounter +W5989XD Other contact with other nonvenomous reptiles, subsequent encounter +W5989XS Other contact with other nonvenomous reptiles, sequela +W60XXXA Contact with nonvenomous plant thorns and spines and sharp leaves, initial encounter +W60XXXD Contact with nonvenomous plant thorns and spines and sharp leaves, subsequent encounter +W60XXXS Contact with nonvenomous plant thorns and spines and sharp leaves, sequela +W6101XA Bitten by parrot, initial encounter +W6101XD Bitten by parrot, subsequent encounter +W6101XS Bitten by parrot, sequela +W6102XA Struck by parrot, initial encounter +W6102XD Struck by parrot, subsequent encounter +W6102XS Struck by parrot, sequela +W6109XA Other contact with parrot, initial encounter +W6109XD Other contact with parrot, subsequent encounter +W6109XS Other contact with parrot, sequela +W6111XA Bitten by macaw, initial encounter +W6111XD Bitten by macaw, subsequent encounter +W6111XS Bitten by macaw, sequela +W6112XA Struck by macaw, initial encounter +W6112XD Struck by macaw, subsequent encounter +W6112XS Struck by macaw, sequela +W6119XA Other contact with macaw, initial encounter +W6119XD Other contact with macaw, subsequent encounter +W6119XS Other contact with macaw, sequela +W6121XA Bitten by other psittacines, initial encounter +W6121XD Bitten by other psittacines, subsequent encounter +W6121XS Bitten by other psittacines, sequela +W6122XA Struck by other psittacines, initial encounter +W6122XD Struck by other psittacines, subsequent encounter +W6122XS Struck by other psittacines, sequela +W6129XA Other contact with other psittacines, initial encounter +W6129XD Other contact with other psittacines, subsequent encounter +W6129XS Other contact with other psittacines, sequela +W6132XA Struck by chicken, initial encounter +W6132XD Struck by chicken, subsequent encounter +W6132XS Struck by chicken, sequela +W6133XA Pecked by chicken, initial encounter +W6133XD Pecked by chicken, subsequent encounter +W6133XS Pecked by chicken, sequela +W6139XA Other contact with chicken, initial encounter +W6139XD Other contact with chicken, subsequent encounter +W6139XS Other contact with chicken, sequela +W6142XA Struck by turkey, initial encounter +W6142XD Struck by turkey, subsequent encounter +W6142XS Struck by turkey, sequela +W6143XA Pecked by turkey, initial encounter +W6143XD Pecked by turkey, subsequent encounter +W6143XS Pecked by turkey, sequela +W6149XA Other contact with turkey, initial encounter +W6149XD Other contact with turkey, subsequent encounter +W6149XS Other contact with turkey, sequela +W6151XA Bitten by goose, initial encounter +W6151XD Bitten by goose, subsequent encounter +W6151XS Bitten by goose, sequela +W6152XA Struck by goose, initial encounter +W6152XD Struck by goose, subsequent encounter +W6152XS Struck by goose, sequela +W6159XA Other contact with goose, initial encounter +W6159XD Other contact with goose, subsequent encounter +W6159XS Other contact with goose, sequela +W6161XA Bitten by duck, initial encounter +W6161XD Bitten by duck, subsequent encounter +W6161XS Bitten by duck, sequela +W6162XA Struck by duck, initial encounter +W6162XD Struck by duck, subsequent encounter +W6162XS Struck by duck, sequela +W6169XA Other contact with duck, initial encounter +W6169XD Other contact with duck, subsequent encounter +W6169XS Other contact with duck, sequela +W6191XA Bitten by other birds, initial encounter +W6191XD Bitten by other birds, subsequent encounter +W6191XS Bitten by other birds, sequela +W6192XA Struck by other birds, initial encounter +W6192XD Struck by other birds, subsequent encounter +W6192XS Struck by other birds, sequela +W6199XA Other contact with other birds, initial encounter +W6199XD Other contact with other birds, subsequent encounter +W6199XS Other contact with other birds, sequela +W620XXA Contact with nonvenomous frogs, initial encounter +W620XXD Contact with nonvenomous frogs, subsequent encounter +W620XXS Contact with nonvenomous frogs, sequela +W621XXA Contact with nonvenomous toads, initial encounter +W621XXD Contact with nonvenomous toads, subsequent encounter +W621XXS Contact with nonvenomous toads, sequela +W629XXA Contact with other nonvenomous amphibians, initial encounter +W629XXD Contact with other nonvenomous amphibians, subsequent encounter +W629XXS Contact with other nonvenomous amphibians, sequela +W64XXXA Exposure to other animate mechanical forces, initial encounter +W64XXXD Exposure to other animate mechanical forces, subsequent encounter +W64XXXS Exposure to other animate mechanical forces, sequela +W65XXXA Accidental drowning and submersion while in bath-tub, initial encounter +W65XXXD Accidental drowning and submersion while in bath-tub, subsequent encounter +W65XXXS Accidental drowning and submersion while in bath-tub, sequela +W67XXXA Accidental drowning and submersion while in swimming-pool, initial encounter +W67XXXD Accidental drowning and submersion while in swimming-pool, subsequent encounter +W67XXXS Accidental drowning and submersion while in swimming-pool, sequela +W69XXXA Accidental drowning and submersion while in natural water, initial encounter +W69XXXD Accidental drowning and submersion while in natural water, subsequent encounter +W69XXXS Accidental drowning and submersion while in natural water, sequela +W73XXXA Other specified cause of accidental non-transport drowning and submersion, initial encounter +W73XXXD Other specified cause of accidental non-transport drowning and submersion, subsequent encounter +W73XXXS Other specified cause of accidental non-transport drowning and submersion, sequela +W74XXXA Unspecified cause of accidental drowning and submersion, initial encounter +W74XXXD Unspecified cause of accidental drowning and submersion, subsequent encounter +W74XXXS Unspecified cause of accidental drowning and submersion, sequela +W85XXXA Exposure to electric transmission lines, initial encounter +W85XXXD Exposure to electric transmission lines, subsequent encounter +W85XXXS Exposure to electric transmission lines, sequela +W860XXA Exposure to domestic wiring and appliances, initial encounter +W860XXD Exposure to domestic wiring and appliances, subsequent encounter +W860XXS Exposure to domestic wiring and appliances, sequela +W861XXA Exposure to industrial wiring, appliances and electrical machinery, initial encounter +W861XXD Exposure to industrial wiring, appliances and electrical machinery, subsequent encounter +W861XXS Exposure to industrial wiring, appliances and electrical machinery, sequela +W868XXA Exposure to other electric current, initial encounter +W868XXD Exposure to other electric current, subsequent encounter +W868XXS Exposure to other electric current, sequela +W880XXA Exposure to X-rays, initial encounter +W880XXD Exposure to X-rays, subsequent encounter +W880XXS Exposure to X-rays, sequela +W881XXA Exposure to radioactive isotopes, initial encounter +W881XXD Exposure to radioactive isotopes, subsequent encounter +W881XXS Exposure to radioactive isotopes, sequela +W888XXA Exposure to other ionizing radiation, initial encounter +W888XXD Exposure to other ionizing radiation, subsequent encounter +W888XXS Exposure to other ionizing radiation, sequela +W890XXA Exposure to welding light (arc), initial encounter +W890XXD Exposure to welding light (arc), subsequent encounter +W890XXS Exposure to welding light (arc), sequela +W891XXA Exposure to tanning bed, initial encounter +W891XXD Exposure to tanning bed, subsequent encounter +W891XXS Exposure to tanning bed, sequela +W898XXA Exposure to other man-made visible and ultraviolet light, initial encounter +W898XXD Exposure to other man-made visible and ultraviolet light, subsequent encounter +W898XXS Exposure to other man-made visible and ultraviolet light, sequela +W899XXA Exposure to unspecified man-made visible and ultraviolet light, initial encounter +W899XXD Exposure to unspecified man-made visible and ultraviolet light, subsequent encounter +W899XXS Exposure to unspecified man-made visible and ultraviolet light, sequela +W900XXA Exposure to radiofrequency, initial encounter +W900XXD Exposure to radiofrequency, subsequent encounter +W900XXS Exposure to radiofrequency, sequela +W901XXA Exposure to infrared radiation, initial encounter +W901XXD Exposure to infrared radiation, subsequent encounter +W901XXS Exposure to infrared radiation, sequela +W902XXA Exposure to laser radiation, initial encounter +W902XXD Exposure to laser radiation, subsequent encounter +W902XXS Exposure to laser radiation, sequela +W908XXA Exposure to other nonionizing radiation, initial encounter +W908XXD Exposure to other nonionizing radiation, subsequent encounter +W908XXS Exposure to other nonionizing radiation, sequela +W92XXXA Exposure to excessive heat of man-made origin, initial encounter +W92XXXD Exposure to excessive heat of man-made origin, subsequent encounter +W92XXXS Exposure to excessive heat of man-made origin, sequela +W9301XA Contact with dry ice, initial encounter +W9301XD Contact with dry ice, subsequent encounter +W9301XS Contact with dry ice, sequela +W9302XA Inhalation of dry ice, initial encounter +W9302XD Inhalation of dry ice, subsequent encounter +W9302XS Inhalation of dry ice, sequela +W9311XA Contact with liquid air, initial encounter +W9311XD Contact with liquid air, subsequent encounter +W9311XS Contact with liquid air, sequela +W9312XA Inhalation of liquid air, initial encounter +W9312XD Inhalation of liquid air, subsequent encounter +W9312XS Inhalation of liquid air, sequela +W932XXA Prolonged exposure in deep freeze unit or refrigerator, initial encounter +W932XXD Prolonged exposure in deep freeze unit or refrigerator, subsequent encounter +W932XXS Prolonged exposure in deep freeze unit or refrigerator, sequela +W938XXA Exposure to other excessive cold of man-made origin, initial encounter +W938XXD Exposure to other excessive cold of man-made origin, subsequent encounter +W938XXS Exposure to other excessive cold of man-made origin, sequela +W940XXA Exposure to prolonged high air pressure, initial encounter +W940XXD Exposure to prolonged high air pressure, subsequent encounter +W940XXS Exposure to prolonged high air pressure, sequela +W9411XA Exposure to residence or prolonged visit at high altitude, initial encounter +W9411XD Exposure to residence or prolonged visit at high altitude, subsequent encounter +W9411XS Exposure to residence or prolonged visit at high altitude, sequela +W9412XA Exposure to other prolonged low air pressure, initial encounter +W9412XD Exposure to other prolonged low air pressure, subsequent encounter +W9412XS Exposure to other prolonged low air pressure, sequela +W9421XA Exposure to reduction in atmospheric pressure while surfacing from deep-water diving, initial encounter +W9421XD Exposure to reduction in atmospheric pressure while surfacing from deep-water diving, subsequent encounter +W9421XS Exposure to reduction in atmospheric pressure while surfacing from deep-water diving, sequela +W9422XA Exposure to reduction in atmospheric pressure while surfacing from underground, initial encounter +W9422XD Exposure to reduction in atmospheric pressure while surfacing from underground, subsequent encounter +W9422XS Exposure to reduction in atmospheric pressure while surfacing from underground, sequela +W9423XA Exposure to sudden change in air pressure in aircraft during ascent, initial encounter +W9423XD Exposure to sudden change in air pressure in aircraft during ascent, subsequent encounter +W9423XS Exposure to sudden change in air pressure in aircraft during ascent, sequela +W9429XA Exposure to other rapid changes in air pressure during ascent, initial encounter +W9429XD Exposure to other rapid changes in air pressure during ascent, subsequent encounter +W9429XS Exposure to other rapid changes in air pressure during ascent, sequela +W9431XA Exposure to sudden change in air pressure in aircraft during ascent or descent, initial encounter +W9431XD Exposure to sudden change in air pressure in aircraft during ascent or descent, subsequent encounter +W9431XS Exposure to sudden change in air pressure in aircraft during ascent or descent, sequela +W9432XA Exposure to high air pressure from rapid descent in water, initial encounter +W9432XD Exposure to high air pressure from rapid descent in water, subsequent encounter +W9432XS Exposure to high air pressure from rapid descent in water, sequela +W9439XA Exposure to other rapid changes in air pressure during descent, initial encounter +W9439XD Exposure to other rapid changes in air pressure during descent, subsequent encounter +W9439XS Exposure to other rapid changes in air pressure during descent, sequela +W99XXXA Exposure to other man-made environmental factors, initial encounter +W99XXXD Exposure to other man-made environmental factors, subsequent encounter +W99XXXS Exposure to other man-made environmental factors, sequela +X000XXA Exposure to flames in uncontrolled fire in building or structure, initial encounter +X000XXD Exposure to flames in uncontrolled fire in building or structure, subsequent encounter +X000XXS Exposure to flames in uncontrolled fire in building or structure, sequela +X001XXA Exposure to smoke in uncontrolled fire in building or structure, initial encounter +X001XXD Exposure to smoke in uncontrolled fire in building or structure, subsequent encounter +X001XXS Exposure to smoke in uncontrolled fire in building or structure, sequela +X002XXA Injury due to collapse of burning building or structure in uncontrolled fire, initial encounter +X002XXD Injury due to collapse of burning building or structure in uncontrolled fire, subsequent encounter +X002XXS Injury due to collapse of burning building or structure in uncontrolled fire, sequela +X003XXA Fall from burning building or structure in uncontrolled fire, initial encounter +X003XXD Fall from burning building or structure in uncontrolled fire, subsequent encounter +X003XXS Fall from burning building or structure in uncontrolled fire, sequela +X004XXA Hit by object from burning building or structure in uncontrolled fire, initial encounter +X004XXD Hit by object from burning building or structure in uncontrolled fire, subsequent encounter +X004XXS Hit by object from burning building or structure in uncontrolled fire, sequela +X005XXA Jump from burning building or structure in uncontrolled fire, initial encounter +X005XXD Jump from burning building or structure in uncontrolled fire, subsequent encounter +X005XXS Jump from burning building or structure in uncontrolled fire, sequela +X008XXA Other exposure to uncontrolled fire in building or structure, initial encounter +X008XXD Other exposure to uncontrolled fire in building or structure, subsequent encounter +X008XXS Other exposure to uncontrolled fire in building or structure, sequela +X010XXA Exposure to flames in uncontrolled fire, not in building or structure, initial encounter +X010XXD Exposure to flames in uncontrolled fire, not in building or structure, subsequent encounter +X010XXS Exposure to flames in uncontrolled fire, not in building or structure, sequela +X011XXA Exposure to smoke in uncontrolled fire, not in building or structure, initial encounter +X011XXD Exposure to smoke in uncontrolled fire, not in building or structure, subsequent encounter +X011XXS Exposure to smoke in uncontrolled fire, not in building or structure, sequela +X013XXA Fall due to uncontrolled fire, not in building or structure, initial encounter +X013XXD Fall due to uncontrolled fire, not in building or structure, subsequent encounter +X013XXS Fall due to uncontrolled fire, not in building or structure, sequela +X014XXA Hit by object due to uncontrolled fire, not in building or structure, initial encounter +X014XXD Hit by object due to uncontrolled fire, not in building or structure, subsequent encounter +X014XXS Hit by object due to uncontrolled fire, not in building or structure, sequela +X018XXA Other exposure to uncontrolled fire, not in building or structure, initial encounter +X018XXD Other exposure to uncontrolled fire, not in building or structure, subsequent encounter +X018XXS Other exposure to uncontrolled fire, not in building or structure, sequela +X020XXA Exposure to flames in controlled fire in building or structure, initial encounter +X020XXD Exposure to flames in controlled fire in building or structure, subsequent encounter +X020XXS Exposure to flames in controlled fire in building or structure, sequela +X021XXA Exposure to smoke in controlled fire in building or structure, initial encounter +X021XXD Exposure to smoke in controlled fire in building or structure, subsequent encounter +X021XXS Exposure to smoke in controlled fire in building or structure, sequela +X022XXA Injury due to collapse of burning building or structure in controlled fire, initial encounter +X022XXD Injury due to collapse of burning building or structure in controlled fire, subsequent encounter +X022XXS Injury due to collapse of burning building or structure in controlled fire, sequela +X023XXA Fall from burning building or structure in controlled fire, initial encounter +X023XXD Fall from burning building or structure in controlled fire, subsequent encounter +X023XXS Fall from burning building or structure in controlled fire, sequela +X024XXA Hit by object from burning building or structure in controlled fire, initial encounter +X024XXD Hit by object from burning building or structure in controlled fire, subsequent encounter +X024XXS Hit by object from burning building or structure in controlled fire, sequela +X025XXA Jump from burning building or structure in controlled fire, initial encounter +X025XXD Jump from burning building or structure in controlled fire, subsequent encounter +X025XXS Jump from burning building or structure in controlled fire, sequela +X028XXA Other exposure to controlled fire in building or structure, initial encounter +X028XXD Other exposure to controlled fire in building or structure, subsequent encounter +X028XXS Other exposure to controlled fire in building or structure, sequela +X030XXA Exposure to flames in controlled fire, not in building or structure, initial encounter +X030XXD Exposure to flames in controlled fire, not in building or structure, subsequent encounter +X030XXS Exposure to flames in controlled fire, not in building or structure, sequela +X031XXA Exposure to smoke in controlled fire, not in building or structure, initial encounter +X031XXD Exposure to smoke in controlled fire, not in building or structure, subsequent encounter +X031XXS Exposure to smoke in controlled fire, not in building or structure, sequela +X033XXA Fall due to controlled fire, not in building or structure, initial encounter +X033XXD Fall due to controlled fire, not in building or structure, subsequent encounter +X033XXS Fall due to controlled fire, not in building or structure, sequela +X034XXA Hit by object due to controlled fire, not in building or structure, initial encounter +X034XXD Hit by object due to controlled fire, not in building or structure, subsequent encounter +X034XXS Hit by object due to controlled fire, not in building or structure, sequela +X038XXA Other exposure to controlled fire, not in building or structure, initial encounter +X038XXD Other exposure to controlled fire, not in building or structure, subsequent encounter +X038XXS Other exposure to controlled fire, not in building or structure, sequela +X04XXXA Exposure to ignition of highly flammable material, initial encounter +X04XXXD Exposure to ignition of highly flammable material, subsequent encounter +X04XXXS Exposure to ignition of highly flammable material, sequela +X05XXXA Exposure to ignition or melting of nightwear, initial encounter +X05XXXD Exposure to ignition or melting of nightwear, subsequent encounter +X05XXXS Exposure to ignition or melting of nightwear, sequela +X060XXA Exposure to ignition of plastic jewelry, initial encounter +X060XXD Exposure to ignition of plastic jewelry, subsequent encounter +X060XXS Exposure to ignition of plastic jewelry, sequela +X061XXA Exposure to melting of plastic jewelry, initial encounter +X061XXD Exposure to melting of plastic jewelry, subsequent encounter +X061XXS Exposure to melting of plastic jewelry, sequela +X062XXA Exposure to ignition of other clothing and apparel, initial encounter +X062XXD Exposure to ignition of other clothing and apparel, subsequent encounter +X062XXS Exposure to ignition of other clothing and apparel, sequela +X063XXA Exposure to melting of other clothing and apparel, initial encounter +X063XXD Exposure to melting of other clothing and apparel, subsequent encounter +X063XXS Exposure to melting of other clothing and apparel, sequela +X0800XA Exposure to bed fire due to unspecified burning material, initial encounter +X0800XD Exposure to bed fire due to unspecified burning material, subsequent encounter +X0800XS Exposure to bed fire due to unspecified burning material, sequela +X0801XA Exposure to bed fire due to burning cigarette, initial encounter +X0801XD Exposure to bed fire due to burning cigarette, subsequent encounter +X0801XS Exposure to bed fire due to burning cigarette, sequela +X0809XA Exposure to bed fire due to other burning material, initial encounter +X0809XD Exposure to bed fire due to other burning material, subsequent encounter +X0809XS Exposure to bed fire due to other burning material, sequela +X0810XA Exposure to sofa fire due to unspecified burning material, initial encounter +X0810XD Exposure to sofa fire due to unspecified burning material, subsequent encounter +X0810XS Exposure to sofa fire due to unspecified burning material, sequela +X0811XA Exposure to sofa fire due to burning cigarette, initial encounter +X0811XD Exposure to sofa fire due to burning cigarette, subsequent encounter +X0811XS Exposure to sofa fire due to burning cigarette, sequela +X0819XA Exposure to sofa fire due to other burning material, initial encounter +X0819XD Exposure to sofa fire due to other burning material, subsequent encounter +X0819XS Exposure to sofa fire due to other burning material, sequela +X0820XA Exposure to other furniture fire due to unspecified burning material, initial encounter +X0820XD Exposure to other furniture fire due to unspecified burning material, subsequent encounter +X0820XS Exposure to other furniture fire due to unspecified burning material, sequela +X0821XA Exposure to other furniture fire due to burning cigarette, initial encounter +X0821XD Exposure to other furniture fire due to burning cigarette, subsequent encounter +X0821XS Exposure to other furniture fire due to burning cigarette, sequela +X0829XA Exposure to other furniture fire due to other burning material, initial encounter +X0829XD Exposure to other furniture fire due to other burning material, subsequent encounter +X0829XS Exposure to other furniture fire due to other burning material, sequela +X088XXA Exposure to other specified smoke, fire and flames, initial encounter +X088XXD Exposure to other specified smoke, fire and flames, subsequent encounter +X088XXS Exposure to other specified smoke, fire and flames, sequela +X100XXA Contact with hot drinks, initial encounter +X100XXD Contact with hot drinks, subsequent encounter +X100XXS Contact with hot drinks, sequela +X101XXA Contact with hot food, initial encounter +X101XXD Contact with hot food, subsequent encounter +X101XXS Contact with hot food, sequela +X102XXA Contact with fats and cooking oils, initial encounter +X102XXD Contact with fats and cooking oils, subsequent encounter +X102XXS Contact with fats and cooking oils, sequela +X110XXA Contact with hot water in bath or tub, initial encounter +X110XXD Contact with hot water in bath or tub, subsequent encounter +X110XXS Contact with hot water in bath or tub, sequela +X111XXA Contact with running hot water, initial encounter +X111XXD Contact with running hot water, subsequent encounter +X111XXS Contact with running hot water, sequela +X118XXA Contact with other hot tap-water, initial encounter +X118XXD Contact with other hot tap-water, subsequent encounter +X118XXS Contact with other hot tap-water, sequela +X12XXXA Contact with other hot fluids, initial encounter +X12XXXD Contact with other hot fluids, subsequent encounter +X12XXXS Contact with other hot fluids, sequela +X130XXA Inhalation of steam and other hot vapors, initial encounter +X130XXD Inhalation of steam and other hot vapors, subsequent encounter +X130XXS Inhalation of steam and other hot vapors, sequela +X131XXA Other contact with steam and other hot vapors, initial encounter +X131XXD Other contact with steam and other hot vapors, subsequent encounter +X131XXS Other contact with steam and other hot vapors, sequela +X140XXA Inhalation of hot air and gases, initial encounter +X140XXD Inhalation of hot air and gases, subsequent encounter +X140XXS Inhalation of hot air and gases, sequela +X141XXA Other contact with hot air and other hot gases, initial encounter +X141XXD Other contact with hot air and other hot gases, subsequent encounter +X141XXS Other contact with hot air and other hot gases, sequela +X150XXA Contact with hot stove (kitchen), initial encounter +X150XXD Contact with hot stove (kitchen), subsequent encounter +X150XXS Contact with hot stove (kitchen), sequela +X151XXA Contact with hot toaster, initial encounter +X151XXD Contact with hot toaster, subsequent encounter +X151XXS Contact with hot toaster, sequela +X152XXA Contact with hotplate, initial encounter +X152XXD Contact with hotplate, subsequent encounter +X152XXS Contact with hotplate, sequela +X153XXA Contact with hot saucepan or skillet, initial encounter +X153XXD Contact with hot saucepan or skillet, subsequent encounter +X153XXS Contact with hot saucepan or skillet, sequela +X158XXA Contact with other hot household appliances, initial encounter +X158XXD Contact with other hot household appliances, subsequent encounter +X158XXS Contact with other hot household appliances, sequela +X16XXXA Contact with hot heating appliances, radiators and pipes, initial encounter +X16XXXD Contact with hot heating appliances, radiators and pipes, subsequent encounter +X16XXXS Contact with hot heating appliances, radiators and pipes, sequela +X17XXXA Contact with hot engines, machinery and tools, initial encounter +X17XXXD Contact with hot engines, machinery and tools, subsequent encounter +X17XXXS Contact with hot engines, machinery and tools, sequela +X18XXXA Contact with other hot metals, initial encounter +X18XXXD Contact with other hot metals, subsequent encounter +X18XXXS Contact with other hot metals, sequela +X19XXXA Contact with other heat and hot substances, initial encounter +X19XXXD Contact with other heat and hot substances, subsequent encounter +X19XXXS Contact with other heat and hot substances, sequela +X30XXXA Exposure to excessive natural heat, initial encounter +X30XXXD Exposure to excessive natural heat, subsequent encounter +X30XXXS Exposure to excessive natural heat, sequela +X31XXXA Exposure to excessive natural cold, initial encounter +X31XXXD Exposure to excessive natural cold, subsequent encounter +X31XXXS Exposure to excessive natural cold, sequela +X32XXXA Exposure to sunlight, initial encounter +X32XXXD Exposure to sunlight, subsequent encounter +X32XXXS Exposure to sunlight, sequela +X34XXXA Earthquake, initial encounter +X34XXXD Earthquake, subsequent encounter +X34XXXS Earthquake, sequela +X35XXXA Volcanic eruption, initial encounter +X35XXXD Volcanic eruption, subsequent encounter +X35XXXS Volcanic eruption, sequela +X360XXA Collapse of dam or man-made structure causing earth movement, initial encounter +X360XXD Collapse of dam or man-made structure causing earth movement, subsequent encounter +X360XXS Collapse of dam or man-made structure causing earth movement, sequela +X361XXA Avalanche, landslide, or mudslide, initial encounter +X361XXD Avalanche, landslide, or mudslide, subsequent encounter +X361XXS Avalanche, landslide, or mudslide, sequela +X370XXA Hurricane, initial encounter +X370XXD Hurricane, subsequent encounter +X370XXS Hurricane, sequela +X371XXA Tornado, initial encounter +X371XXD Tornado, subsequent encounter +X371XXS Tornado, sequela +X372XXA Blizzard (snow)(ice), initial encounter +X372XXD Blizzard (snow)(ice), subsequent encounter +X372XXS Blizzard (snow)(ice), sequela +X373XXA Dust storm, initial encounter +X373XXD Dust storm, subsequent encounter +X373XXS Dust storm, sequela +X3741XA Tidal wave due to earthquake or volcanic eruption, initial encounter +X3741XD Tidal wave due to earthquake or volcanic eruption, subsequent encounter +X3741XS Tidal wave due to earthquake or volcanic eruption, sequela +X3742XA Tidal wave due to storm, initial encounter +X3742XD Tidal wave due to storm, subsequent encounter +X3742XS Tidal wave due to storm, sequela +X3743XA Tidal wave due to landslide, initial encounter +X3743XD Tidal wave due to landslide, subsequent encounter +X3743XS Tidal wave due to landslide, sequela +X378XXA Other cataclysmic storms, initial encounter +X378XXD Other cataclysmic storms, subsequent encounter +X378XXS Other cataclysmic storms, sequela +X379XXA Unspecified cataclysmic storm, initial encounter +X379XXD Unspecified cataclysmic storm, subsequent encounter +X379XXS Unspecified cataclysmic storm, sequela +X38XXXA Flood, initial encounter +X38XXXD Flood, subsequent encounter +X38XXXS Flood, sequela +X3901XA Exposure to radon, initial encounter +X3901XD Exposure to radon, subsequent encounter +X3901XS Exposure to radon, sequela +X3908XA Exposure to other natural radiation, initial encounter +X3908XD Exposure to other natural radiation, subsequent encounter +X3908XS Exposure to other natural radiation, sequela +X398XXA Other exposure to forces of nature, initial encounter +X398XXD Other exposure to forces of nature, subsequent encounter +X398XXS Other exposure to forces of nature, sequela +X500XXA Overexertion from strenuous movement or load, initial encounter +X500XXD Overexertion from strenuous movement or load, subsequent encounter +X500XXS Overexertion from strenuous movement or load, sequela +X501XXA Overexertion from prolonged static or awkward postures, initial encounter +X501XXD Overexertion from prolonged static or awkward postures, subsequent encounter +X501XXS Overexertion from prolonged static or awkward postures, sequela +X503XXA Overexertion from repetitive movements, initial encounter +X503XXD Overexertion from repetitive movements, subsequent encounter +X503XXS Overexertion from repetitive movements, sequela +X509XXA Other and unspecified overexertion or strenuous movements or postures, initial encounter +X509XXD Other and unspecified overexertion or strenuous movements or postures, subsequent encounter +X509XXS Other and unspecified overexertion or strenuous movements or postures, sequela +X52XXXA Prolonged stay in weightless environment, initial encounter +X52XXXD Prolonged stay in weightless environment, subsequent encounter +X52XXXS Prolonged stay in weightless environment, sequela +X58XXXA Exposure to other specified factors, initial encounter +X58XXXD Exposure to other specified factors, subsequent encounter +X58XXXS Exposure to other specified factors, sequela +X710XXA Intentional self-harm by drowning and submersion while in bathtub, initial encounter +X710XXD Intentional self-harm by drowning and submersion while in bathtub, subsequent encounter +X710XXS Intentional self-harm by drowning and submersion while in bathtub, sequela +X711XXA Intentional self-harm by drowning and submersion while in swimming pool, initial encounter +X711XXD Intentional self-harm by drowning and submersion while in swimming pool, subsequent encounter +X711XXS Intentional self-harm by drowning and submersion while in swimming pool, sequela +X712XXA Intentional self-harm by drowning and submersion after jump into swimming pool, initial encounter +X712XXD Intentional self-harm by drowning and submersion after jump into swimming pool, subsequent encounter +X712XXS Intentional self-harm by drowning and submersion after jump into swimming pool, sequela +X713XXA Intentional self-harm by drowning and submersion in natural water, initial encounter +X713XXD Intentional self-harm by drowning and submersion in natural water, subsequent encounter +X713XXS Intentional self-harm by drowning and submersion in natural water, sequela +X718XXA Other intentional self-harm by drowning and submersion, initial encounter +X718XXD Other intentional self-harm by drowning and submersion, subsequent encounter +X718XXS Other intentional self-harm by drowning and submersion, sequela +X719XXA Intentional self-harm by drowning and submersion, unspecified, initial encounter +X719XXD Intentional self-harm by drowning and submersion, unspecified, subsequent encounter +X719XXS Intentional self-harm by drowning and submersion, unspecified, sequela +X72XXXA Intentional self-harm by handgun discharge, initial encounter +X72XXXD Intentional self-harm by handgun discharge, subsequent encounter +X72XXXS Intentional self-harm by handgun discharge, sequela +X730XXA Intentional self-harm by shotgun discharge, initial encounter +X730XXD Intentional self-harm by shotgun discharge, subsequent encounter +X730XXS Intentional self-harm by shotgun discharge, sequela +X731XXA Intentional self-harm by hunting rifle discharge, initial encounter +X731XXD Intentional self-harm by hunting rifle discharge, subsequent encounter +X731XXS Intentional self-harm by hunting rifle discharge, sequela +X732XXA Intentional self-harm by machine gun discharge, initial encounter +X732XXD Intentional self-harm by machine gun discharge, subsequent encounter +X732XXS Intentional self-harm by machine gun discharge, sequela +X738XXA Intentional self-harm by other larger firearm discharge, initial encounter +X738XXD Intentional self-harm by other larger firearm discharge, subsequent encounter +X738XXS Intentional self-harm by other larger firearm discharge, sequela +X739XXA Intentional self-harm by unspecified larger firearm discharge, initial encounter +X739XXD Intentional self-harm by unspecified larger firearm discharge, subsequent encounter +X739XXS Intentional self-harm by unspecified larger firearm discharge, sequela +X7401XA Intentional self-harm by airgun, initial encounter +X7401XD Intentional self-harm by airgun, subsequent encounter +X7401XS Intentional self-harm by airgun, sequela +X7402XA Intentional self-harm by paintball gun, initial encounter +X7402XD Intentional self-harm by paintball gun, subsequent encounter +X7402XS Intentional self-harm by paintball gun, sequela +X7409XA Intentional self-harm by other gas, air or spring-operated gun, initial encounter +X7409XD Intentional self-harm by other gas, air or spring-operated gun, subsequent encounter +X7409XS Intentional self-harm by other gas, air or spring-operated gun, sequela +X748XXA Intentional self-harm by other firearm discharge, initial encounter +X748XXD Intentional self-harm by other firearm discharge, subsequent encounter +X748XXS Intentional self-harm by other firearm discharge, sequela +X749XXA Intentional self-harm by unspecified firearm discharge, initial encounter +X749XXD Intentional self-harm by unspecified firearm discharge, subsequent encounter +X749XXS Intentional self-harm by unspecified firearm discharge, sequela +X75XXXA Intentional self-harm by explosive material, initial encounter +X75XXXD Intentional self-harm by explosive material, subsequent encounter +X75XXXS Intentional self-harm by explosive material, sequela +X76XXXA Intentional self-harm by smoke, fire and flames, initial encounter +X76XXXD Intentional self-harm by smoke, fire and flames, subsequent encounter +X76XXXS Intentional self-harm by smoke, fire and flames, sequela +X770XXA Intentional self-harm by steam or hot vapors, initial encounter +X770XXD Intentional self-harm by steam or hot vapors, subsequent encounter +X770XXS Intentional self-harm by steam or hot vapors, sequela +X771XXA Intentional self-harm by hot tap water, initial encounter +X771XXD Intentional self-harm by hot tap water, subsequent encounter +X771XXS Intentional self-harm by hot tap water, sequela +X772XXA Intentional self-harm by other hot fluids, initial encounter +X772XXD Intentional self-harm by other hot fluids, subsequent encounter +X772XXS Intentional self-harm by other hot fluids, sequela +X773XXA Intentional self-harm by hot household appliances, initial encounter +X773XXD Intentional self-harm by hot household appliances, subsequent encounter +X773XXS Intentional self-harm by hot household appliances, sequela +X778XXA Intentional self-harm by other hot objects, initial encounter +X778XXD Intentional self-harm by other hot objects, subsequent encounter +X778XXS Intentional self-harm by other hot objects, sequela +X779XXA Intentional self-harm by unspecified hot objects, initial encounter +X779XXD Intentional self-harm by unspecified hot objects, subsequent encounter +X779XXS Intentional self-harm by unspecified hot objects, sequela +X780XXA Intentional self-harm by sharp glass, initial encounter +X780XXD Intentional self-harm by sharp glass, subsequent encounter +X780XXS Intentional self-harm by sharp glass, sequela +X781XXA Intentional self-harm by knife, initial encounter +X781XXD Intentional self-harm by knife, subsequent encounter +X781XXS Intentional self-harm by knife, sequela +X782XXA Intentional self-harm by sword or dagger, initial encounter +X782XXD Intentional self-harm by sword or dagger, subsequent encounter +X782XXS Intentional self-harm by sword or dagger, sequela +X788XXA Intentional self-harm by other sharp object, initial encounter +X788XXD Intentional self-harm by other sharp object, subsequent encounter +X788XXS Intentional self-harm by other sharp object, sequela +X789XXA Intentional self-harm by unspecified sharp object, initial encounter +X789XXD Intentional self-harm by unspecified sharp object, subsequent encounter +X789XXS Intentional self-harm by unspecified sharp object, sequela +X79XXXA Intentional self-harm by blunt object, initial encounter +X79XXXD Intentional self-harm by blunt object, subsequent encounter +X79XXXS Intentional self-harm by blunt object, sequela +X80XXXA Intentional self-harm by jumping from a high place, initial encounter +X80XXXD Intentional self-harm by jumping from a high place, subsequent encounter +X80XXXS Intentional self-harm by jumping from a high place, sequela +X810XXA Intentional self-harm by jumping or lying in front of motor vehicle, initial encounter +X810XXD Intentional self-harm by jumping or lying in front of motor vehicle, subsequent encounter +X810XXS Intentional self-harm by jumping or lying in front of motor vehicle, sequela +X811XXA Intentional self-harm by jumping or lying in front of (subway) train, initial encounter +X811XXD Intentional self-harm by jumping or lying in front of (subway) train, subsequent encounter +X811XXS Intentional self-harm by jumping or lying in front of (subway) train, sequela +X818XXA Intentional self-harm by jumping or lying in front of other moving object, initial encounter +X818XXD Intentional self-harm by jumping or lying in front of other moving object, subsequent encounter +X818XXS Intentional self-harm by jumping or lying in front of other moving object, sequela +X820XXA Intentional collision of motor vehicle with other motor vehicle, initial encounter +X820XXD Intentional collision of motor vehicle with other motor vehicle, subsequent encounter +X820XXS Intentional collision of motor vehicle with other motor vehicle, sequela +X821XXA Intentional collision of motor vehicle with train, initial encounter +X821XXD Intentional collision of motor vehicle with train, subsequent encounter +X821XXS Intentional collision of motor vehicle with train, sequela +X822XXA Intentional collision of motor vehicle with tree, initial encounter +X822XXD Intentional collision of motor vehicle with tree, subsequent encounter +X822XXS Intentional collision of motor vehicle with tree, sequela +X828XXA Other intentional self-harm by crashing of motor vehicle, initial encounter +X828XXD Other intentional self-harm by crashing of motor vehicle, subsequent encounter +X828XXS Other intentional self-harm by crashing of motor vehicle, sequela +X830XXA Intentional self-harm by crashing of aircraft, initial encounter +X830XXD Intentional self-harm by crashing of aircraft, subsequent encounter +X830XXS Intentional self-harm by crashing of aircraft, sequela +X831XXA Intentional self-harm by electrocution, initial encounter +X831XXD Intentional self-harm by electrocution, subsequent encounter +X831XXS Intentional self-harm by electrocution, sequela +X832XXA Intentional self-harm by exposure to extremes of cold, initial encounter +X832XXD Intentional self-harm by exposure to extremes of cold, subsequent encounter +X832XXS Intentional self-harm by exposure to extremes of cold, sequela +X838XXA Intentional self-harm by other specified means, initial encounter +X838XXD Intentional self-harm by other specified means, subsequent encounter +X838XXS Intentional self-harm by other specified means, sequela +X920XXA Assault by drowning and submersion while in bathtub, initial encounter +X920XXD Assault by drowning and submersion while in bathtub, subsequent encounter +X920XXS Assault by drowning and submersion while in bathtub, sequela +X921XXA Assault by drowning and submersion while in swimming pool, initial encounter +X921XXD Assault by drowning and submersion while in swimming pool, subsequent encounter +X921XXS Assault by drowning and submersion while in swimming pool, sequela +X922XXA Assault by drowning and submersion after push into swimming pool, initial encounter +X922XXD Assault by drowning and submersion after push into swimming pool, subsequent encounter +X922XXS Assault by drowning and submersion after push into swimming pool, sequela +X923XXA Assault by drowning and submersion in natural water, initial encounter +X923XXD Assault by drowning and submersion in natural water, subsequent encounter +X923XXS Assault by drowning and submersion in natural water, sequela +X928XXA Other assault by drowning and submersion, initial encounter +X928XXD Other assault by drowning and submersion, subsequent encounter +X928XXS Other assault by drowning and submersion, sequela +X929XXA Assault by drowning and submersion, unspecified, initial encounter +X929XXD Assault by drowning and submersion, unspecified, subsequent encounter +X929XXS Assault by drowning and submersion, unspecified, sequela +X93XXXA Assault by handgun discharge, initial encounter +X93XXXD Assault by handgun discharge, subsequent encounter +X93XXXS Assault by handgun discharge, sequela +X940XXA Assault by shotgun, initial encounter +X940XXD Assault by shotgun, subsequent encounter +X940XXS Assault by shotgun, sequela +X941XXA Assault by hunting rifle, initial encounter +X941XXD Assault by hunting rifle, subsequent encounter +X941XXS Assault by hunting rifle, sequela +X942XXA Assault by machine gun, initial encounter +X942XXD Assault by machine gun, subsequent encounter +X942XXS Assault by machine gun, sequela +X948XXA Assault by other larger firearm discharge, initial encounter +X948XXD Assault by other larger firearm discharge, subsequent encounter +X948XXS Assault by other larger firearm discharge, sequela +X949XXA Assault by unspecified larger firearm discharge, initial encounter +X949XXD Assault by unspecified larger firearm discharge, subsequent encounter +X949XXS Assault by unspecified larger firearm discharge, sequela +X9501XA Assault by airgun discharge, initial encounter +X9501XD Assault by airgun discharge, subsequent encounter +X9501XS Assault by airgun discharge, sequela +X9502XA Assault by paintball gun discharge, initial encounter +X9502XD Assault by paintball gun discharge, subsequent encounter +X9502XS Assault by paintball gun discharge, sequela +X9509XA Assault by other gas, air or spring-operated gun, initial encounter +X9509XD Assault by other gas, air or spring-operated gun, subsequent encounter +X9509XS Assault by other gas, air or spring-operated gun, sequela +X958XXA Assault by other firearm discharge, initial encounter +X958XXD Assault by other firearm discharge, subsequent encounter +X958XXS Assault by other firearm discharge, sequela +X959XXA Assault by unspecified firearm discharge, initial encounter +X959XXD Assault by unspecified firearm discharge, subsequent encounter +X959XXS Assault by unspecified firearm discharge, sequela +X960XXA Assault by antipersonnel bomb, initial encounter +X960XXD Assault by antipersonnel bomb, subsequent encounter +X960XXS Assault by antipersonnel bomb, sequela +X961XXA Assault by gasoline bomb, initial encounter +X961XXD Assault by gasoline bomb, subsequent encounter +X961XXS Assault by gasoline bomb, sequela +X962XXA Assault by letter bomb, initial encounter +X962XXD Assault by letter bomb, subsequent encounter +X962XXS Assault by letter bomb, sequela +X963XXA Assault by fertilizer bomb, initial encounter +X963XXD Assault by fertilizer bomb, subsequent encounter +X963XXS Assault by fertilizer bomb, sequela +X964XXA Assault by pipe bomb, initial encounter +X964XXD Assault by pipe bomb, subsequent encounter +X964XXS Assault by pipe bomb, sequela +X968XXA Assault by other specified explosive, initial encounter +X968XXD Assault by other specified explosive, subsequent encounter +X968XXS Assault by other specified explosive, sequela +X969XXA Assault by unspecified explosive, initial encounter +X969XXD Assault by unspecified explosive, subsequent encounter +X969XXS Assault by unspecified explosive, sequela +X97XXXA Assault by smoke, fire and flames, initial encounter +X97XXXD Assault by smoke, fire and flames, subsequent encounter +X97XXXS Assault by smoke, fire and flames, sequela +X980XXA Assault by steam or hot vapors, initial encounter +X980XXD Assault by steam or hot vapors, subsequent encounter +X980XXS Assault by steam or hot vapors, sequela +X981XXA Assault by hot tap water, initial encounter +X981XXD Assault by hot tap water, subsequent encounter +X981XXS Assault by hot tap water, sequela +X982XXA Assault by hot fluids, initial encounter +X982XXD Assault by hot fluids, subsequent encounter +X982XXS Assault by hot fluids, sequela +X983XXA Assault by hot household appliances, initial encounter +X983XXD Assault by hot household appliances, subsequent encounter +X983XXS Assault by hot household appliances, sequela +X988XXA Assault by other hot objects, initial encounter +X988XXD Assault by other hot objects, subsequent encounter +X988XXS Assault by other hot objects, sequela +X989XXA Assault by unspecified hot objects, initial encounter +X989XXD Assault by unspecified hot objects, subsequent encounter +X989XXS Assault by unspecified hot objects, sequela +X990XXA Assault by sharp glass, initial encounter +X990XXD Assault by sharp glass, subsequent encounter +X990XXS Assault by sharp glass, sequela +X991XXA Assault by knife, initial encounter +X991XXD Assault by knife, subsequent encounter +X991XXS Assault by knife, sequela +X992XXA Assault by sword or dagger, initial encounter +X992XXD Assault by sword or dagger, subsequent encounter +X992XXS Assault by sword or dagger, sequela +X998XXA Assault by other sharp object, initial encounter +X998XXD Assault by other sharp object, subsequent encounter +X998XXS Assault by other sharp object, sequela +X999XXA Assault by unspecified sharp object, initial encounter +X999XXD Assault by unspecified sharp object, subsequent encounter +X999XXS Assault by unspecified sharp object, sequela +Y00XXXA Assault by blunt object, initial encounter +Y00XXXD Assault by blunt object, subsequent encounter +Y00XXXS Assault by blunt object, sequela +Y01XXXA Assault by pushing from high place, initial encounter +Y01XXXD Assault by pushing from high place, subsequent encounter +Y01XXXS Assault by pushing from high place, sequela +Y020XXA Assault by pushing or placing victim in front of motor vehicle, initial encounter +Y020XXD Assault by pushing or placing victim in front of motor vehicle, subsequent encounter +Y020XXS Assault by pushing or placing victim in front of motor vehicle, sequela +Y021XXA Assault by pushing or placing victim in front of (subway) train, initial encounter +Y021XXD Assault by pushing or placing victim in front of (subway) train, subsequent encounter +Y021XXS Assault by pushing or placing victim in front of (subway) train, sequela +Y028XXA Assault by pushing or placing victim in front of other moving object, initial encounter +Y028XXD Assault by pushing or placing victim in front of other moving object, subsequent encounter +Y028XXS Assault by pushing or placing victim in front of other moving object, sequela +Y030XXA Assault by being hit or run over by motor vehicle, initial encounter +Y030XXD Assault by being hit or run over by motor vehicle, subsequent encounter +Y030XXS Assault by being hit or run over by motor vehicle, sequela +Y038XXA Other assault by crashing of motor vehicle, initial encounter +Y038XXD Other assault by crashing of motor vehicle, subsequent encounter +Y038XXS Other assault by crashing of motor vehicle, sequela +Y040XXA Assault by unarmed brawl or fight, initial encounter +Y040XXD Assault by unarmed brawl or fight, subsequent encounter +Y040XXS Assault by unarmed brawl or fight, sequela +Y041XXA Assault by human bite, initial encounter +Y041XXD Assault by human bite, subsequent encounter +Y041XXS Assault by human bite, sequela +Y042XXA Assault by strike against or bumped into by another person, initial encounter +Y042XXD Assault by strike against or bumped into by another person, subsequent encounter +Y042XXS Assault by strike against or bumped into by another person, sequela +Y048XXA Assault by other bodily force, initial encounter +Y048XXD Assault by other bodily force, subsequent encounter +Y048XXS Assault by other bodily force, sequela +Y0701 Husband, perpetrator of maltreatment and neglect +Y0702 Wife, perpetrator of maltreatment and neglect +Y0703 Male partner, perpetrator of maltreatment and neglect +Y0704 Female partner, perpetrator of maltreatment and neglect +Y0711 Biological father, perpetrator of maltreatment and neglect +Y0712 Biological mother, perpetrator of maltreatment and neglect +Y0713 Adoptive father, perpetrator of maltreatment and neglect +Y0714 Adoptive mother, perpetrator of maltreatment and neglect +Y07410 Brother, perpetrator of maltreatment and neglect +Y07411 Sister, perpetrator of maltreatment and neglect +Y07420 Foster father, perpetrator of maltreatment and neglect +Y07421 Foster mother, perpetrator of maltreatment and neglect +Y07430 Stepfather, perpetrator of maltreatment and neglect +Y07432 Male friend of parent (co-residing in household), perpetrator of maltreatment and neglect +Y07433 Stepmother, perpetrator of maltreatment and neglect +Y07434 Female friend of parent (co-residing in household), perpetrator of maltreatment and neglect +Y07435 Stepbrother, perpetrator or maltreatment and neglect +Y07436 Stepsister, perpetrator of maltreatment and neglect +Y07490 Male cousin, perpetrator of maltreatment and neglect +Y07491 Female cousin, perpetrator of maltreatment and neglect +Y07499 Other family member, perpetrator of maltreatment and neglect +Y0750 Unspecified non-family member, perpetrator of maltreatment and neglect +Y07510 At-home childcare provider, perpetrator of maltreatment and neglect +Y07511 Daycare center childcare provider, perpetrator of maltreatment and neglect +Y07512 At-home adultcare provider, perpetrator of maltreatment and neglect +Y07513 Adultcare center provider, perpetrator of maltreatment and neglect +Y07519 Unspecified daycare provider, perpetrator of maltreatment and neglect +Y07521 Mental health provider, perpetrator of maltreatment and neglect +Y07528 Other therapist or healthcare provider, perpetrator of maltreatment and neglect +Y07529 Unspecified healthcare provider, perpetrator of maltreatment and neglect +Y0753 Teacher or instructor, perpetrator of maltreatment and neglect +Y0759 Other non-family member, perpetrator of maltreatment and neglect +Y076 Multiple perpetrators of maltreatment and neglect +Y079 Unspecified perpetrator of maltreatment and neglect +Y0801XA Assault by strike by hockey stick, initial encounter +Y0801XD Assault by strike by hockey stick, subsequent encounter +Y0801XS Assault by strike by hockey stick, sequela +Y0802XA Assault by strike by baseball bat, initial encounter +Y0802XD Assault by strike by baseball bat, subsequent encounter +Y0802XS Assault by strike by baseball bat, sequela +Y0809XA Assault by strike by other specified type of sport equipment, initial encounter +Y0809XD Assault by strike by other specified type of sport equipment, subsequent encounter +Y0809XS Assault by strike by other specified type of sport equipment, sequela +Y0881XA Assault by crashing of aircraft, initial encounter +Y0881XD Assault by crashing of aircraft, subsequent encounter +Y0881XS Assault by crashing of aircraft, sequela +Y0889XA Assault by other specified means, initial encounter +Y0889XD Assault by other specified means, subsequent encounter +Y0889XS Assault by other specified means, sequela +Y09 Assault by unspecified means +Y210XXA Drowning and submersion while in bathtub, undetermined intent, initial encounter +Y210XXD Drowning and submersion while in bathtub, undetermined intent, subsequent encounter +Y210XXS Drowning and submersion while in bathtub, undetermined intent, sequela +Y211XXA Drowning and submersion after fall into bathtub, undetermined intent, initial encounter +Y211XXD Drowning and submersion after fall into bathtub, undetermined intent, subsequent encounter +Y211XXS Drowning and submersion after fall into bathtub, undetermined intent, sequela +Y212XXA Drowning and submersion while in swimming pool, undetermined intent, initial encounter +Y212XXD Drowning and submersion while in swimming pool, undetermined intent, subsequent encounter +Y212XXS Drowning and submersion while in swimming pool, undetermined intent, sequela +Y213XXA Drowning and submersion after fall into swimming pool, undetermined intent, initial encounter +Y213XXD Drowning and submersion after fall into swimming pool, undetermined intent, subsequent encounter +Y213XXS Drowning and submersion after fall into swimming pool, undetermined intent, sequela +Y214XXA Drowning and submersion in natural water, undetermined intent, initial encounter +Y214XXD Drowning and submersion in natural water, undetermined intent, subsequent encounter +Y214XXS Drowning and submersion in natural water, undetermined intent, sequela +Y218XXA Other drowning and submersion, undetermined intent, initial encounter +Y218XXD Other drowning and submersion, undetermined intent, subsequent encounter +Y218XXS Other drowning and submersion, undetermined intent, sequela +Y219XXA Unspecified drowning and submersion, undetermined intent, initial encounter +Y219XXD Unspecified drowning and submersion, undetermined intent, subsequent encounter +Y219XXS Unspecified drowning and submersion, undetermined intent, sequela +Y22XXXA Handgun discharge, undetermined intent, initial encounter +Y22XXXD Handgun discharge, undetermined intent, subsequent encounter +Y22XXXS Handgun discharge, undetermined intent, sequela +Y230XXA Shotgun discharge, undetermined intent, initial encounter +Y230XXD Shotgun discharge, undetermined intent, subsequent encounter +Y230XXS Shotgun discharge, undetermined intent, sequela +Y231XXA Hunting rifle discharge, undetermined intent, initial encounter +Y231XXD Hunting rifle discharge, undetermined intent, subsequent encounter +Y231XXS Hunting rifle discharge, undetermined intent, sequela +Y232XXA Military firearm discharge, undetermined intent, initial encounter +Y232XXD Military firearm discharge, undetermined intent, subsequent encounter +Y232XXS Military firearm discharge, undetermined intent, sequela +Y233XXA Machine gun discharge, undetermined intent, initial encounter +Y233XXD Machine gun discharge, undetermined intent, subsequent encounter +Y233XXS Machine gun discharge, undetermined intent, sequela +Y238XXA Other larger firearm discharge, undetermined intent, initial encounter +Y238XXD Other larger firearm discharge, undetermined intent, subsequent encounter +Y238XXS Other larger firearm discharge, undetermined intent, sequela +Y239XXA Unspecified larger firearm discharge, undetermined intent, initial encounter +Y239XXD Unspecified larger firearm discharge, undetermined intent, subsequent encounter +Y239XXS Unspecified larger firearm discharge, undetermined intent, sequela +Y240XXA Airgun discharge, undetermined intent, initial encounter +Y240XXD Airgun discharge, undetermined intent, subsequent encounter +Y240XXS Airgun discharge, undetermined intent, sequela +Y248XXA Other firearm discharge, undetermined intent, initial encounter +Y248XXD Other firearm discharge, undetermined intent, subsequent encounter +Y248XXS Other firearm discharge, undetermined intent, sequela +Y249XXA Unspecified firearm discharge, undetermined intent, initial encounter +Y249XXD Unspecified firearm discharge, undetermined intent, subsequent encounter +Y249XXS Unspecified firearm discharge, undetermined intent, sequela +Y25XXXA Contact with explosive material, undetermined intent, initial encounter +Y25XXXD Contact with explosive material, undetermined intent, subsequent encounter +Y25XXXS Contact with explosive material, undetermined intent, sequela +Y26XXXA Exposure to smoke, fire and flames, undetermined intent, initial encounter +Y26XXXD Exposure to smoke, fire and flames, undetermined intent, subsequent encounter +Y26XXXS Exposure to smoke, fire and flames, undetermined intent, sequela +Y270XXA Contact with steam and hot vapors, undetermined intent, initial encounter +Y270XXD Contact with steam and hot vapors, undetermined intent, subsequent encounter +Y270XXS Contact with steam and hot vapors, undetermined intent, sequela +Y271XXA Contact with hot tap water, undetermined intent, initial encounter +Y271XXD Contact with hot tap water, undetermined intent, subsequent encounter +Y271XXS Contact with hot tap water, undetermined intent, sequela +Y272XXA Contact with hot fluids, undetermined intent, initial encounter +Y272XXD Contact with hot fluids, undetermined intent, subsequent encounter +Y272XXS Contact with hot fluids, undetermined intent, sequela +Y273XXA Contact with hot household appliance, undetermined intent, initial encounter +Y273XXD Contact with hot household appliance, undetermined intent, subsequent encounter +Y273XXS Contact with hot household appliance, undetermined intent, sequela +Y278XXA Contact with other hot objects, undetermined intent, initial encounter +Y278XXD Contact with other hot objects, undetermined intent, subsequent encounter +Y278XXS Contact with other hot objects, undetermined intent, sequela +Y279XXA Contact with unspecified hot objects, undetermined intent, initial encounter +Y279XXD Contact with unspecified hot objects, undetermined intent, subsequent encounter +Y279XXS Contact with unspecified hot objects, undetermined intent, sequela +Y280XXA Contact with sharp glass, undetermined intent, initial encounter +Y280XXD Contact with sharp glass, undetermined intent, subsequent encounter +Y280XXS Contact with sharp glass, undetermined intent, sequela +Y281XXA Contact with knife, undetermined intent, initial encounter +Y281XXD Contact with knife, undetermined intent, subsequent encounter +Y281XXS Contact with knife, undetermined intent, sequela +Y282XXA Contact with sword or dagger, undetermined intent, initial encounter +Y282XXD Contact with sword or dagger, undetermined intent, subsequent encounter +Y282XXS Contact with sword or dagger, undetermined intent, sequela +Y288XXA Contact with other sharp object, undetermined intent, initial encounter +Y288XXD Contact with other sharp object, undetermined intent, subsequent encounter +Y288XXS Contact with other sharp object, undetermined intent, sequela +Y289XXA Contact with unspecified sharp object, undetermined intent, initial encounter +Y289XXD Contact with unspecified sharp object, undetermined intent, subsequent encounter +Y289XXS Contact with unspecified sharp object, undetermined intent, sequela +Y29XXXA Contact with blunt object, undetermined intent, initial encounter +Y29XXXD Contact with blunt object, undetermined intent, subsequent encounter +Y29XXXS Contact with blunt object, undetermined intent, sequela +Y30XXXA Falling, jumping or pushed from a high place, undetermined intent, initial encounter +Y30XXXD Falling, jumping or pushed from a high place, undetermined intent, subsequent encounter +Y30XXXS Falling, jumping or pushed from a high place, undetermined intent, sequela +Y31XXXA Falling, lying or running before or into moving object, undetermined intent, initial encounter +Y31XXXD Falling, lying or running before or into moving object, undetermined intent, subsequent encounter +Y31XXXS Falling, lying or running before or into moving object, undetermined intent, sequela +Y32XXXA Crashing of motor vehicle, undetermined intent, initial encounter +Y32XXXD Crashing of motor vehicle, undetermined intent, subsequent encounter +Y32XXXS Crashing of motor vehicle, undetermined intent, sequela +Y33XXXA Other specified events, undetermined intent, initial encounter +Y33XXXD Other specified events, undetermined intent, subsequent encounter +Y33XXXS Other specified events, undetermined intent, sequela +Y35001A Legal intervention involving unspecified firearm discharge, law enforcement official injured, initial encounter +Y35001D Legal intervention involving unspecified firearm discharge, law enforcement official injured, subsequent encounter +Y35001S Legal intervention involving unspecified firearm discharge, law enforcement official injured, sequela +Y35002A Legal intervention involving unspecified firearm discharge, bystander injured, initial encounter +Y35002D Legal intervention involving unspecified firearm discharge, bystander injured, subsequent encounter +Y35002S Legal intervention involving unspecified firearm discharge, bystander injured, sequela +Y35003A Legal intervention involving unspecified firearm discharge, suspect injured, initial encounter +Y35003D Legal intervention involving unspecified firearm discharge, suspect injured, subsequent encounter +Y35003S Legal intervention involving unspecified firearm discharge, suspect injured, sequela +Y35009A Legal intervention involving unspecified firearm discharge, unspecified person injured, initial encounter +Y35009D Legal intervention involving unspecified firearm discharge, unspecified person injured, subsequent encounter +Y35009S Legal intervention involving unspecified firearm discharge, unspecified person injured, sequela +Y35011A Legal intervention involving injury by machine gun, law enforcement official injured, initial encounter +Y35011D Legal intervention involving injury by machine gun, law enforcement official injured, subsequent encounter +Y35011S Legal intervention involving injury by machine gun, law enforcement official injured, sequela +Y35012A Legal intervention involving injury by machine gun, bystander injured, initial encounter +Y35012D Legal intervention involving injury by machine gun, bystander injured, subsequent encounter +Y35012S Legal intervention involving injury by machine gun, bystander injured, sequela +Y35013A Legal intervention involving injury by machine gun, suspect injured, initial encounter +Y35013D Legal intervention involving injury by machine gun, suspect injured, subsequent encounter +Y35013S Legal intervention involving injury by machine gun, suspect injured, sequela +Y35019A Legal intervention involving injury by machine gun, unspecified person injured, initial encounter +Y35019D Legal intervention involving injury by machine gun, unspecified person injured, subsequent encounter +Y35019S Legal intervention involving injury by machine gun, unspecified person injured, sequela +Y35021A Legal intervention involving injury by handgun, law enforcement official injured, initial encounter +Y35021D Legal intervention involving injury by handgun, law enforcement official injured, subsequent encounter +Y35021S Legal intervention involving injury by handgun, law enforcement official injured, sequela +Y35022A Legal intervention involving injury by handgun, bystander injured, initial encounter +Y35022D Legal intervention involving injury by handgun, bystander injured, subsequent encounter +Y35022S Legal intervention involving injury by handgun, bystander injured, sequela +Y35023A Legal intervention involving injury by handgun, suspect injured, initial encounter +Y35023D Legal intervention involving injury by handgun, suspect injured, subsequent encounter +Y35023S Legal intervention involving injury by handgun, suspect injured, sequela +Y35029A Legal intervention involving injury by handgun, unspecified person injured, initial encounter +Y35029D Legal intervention involving injury by handgun, unspecified person injured, subsequent encounter +Y35029S Legal intervention involving injury by handgun, unspecified person injured, sequela +Y35031A Legal intervention involving injury by rifle pellet, law enforcement official injured, initial encounter +Y35031D Legal intervention involving injury by rifle pellet, law enforcement official injured, subsequent encounter +Y35031S Legal intervention involving injury by rifle pellet, law enforcement official injured, sequela +Y35032A Legal intervention involving injury by rifle pellet, bystander injured, initial encounter +Y35032D Legal intervention involving injury by rifle pellet, bystander injured, subsequent encounter +Y35032S Legal intervention involving injury by rifle pellet, bystander injured, sequela +Y35033A Legal intervention involving injury by rifle pellet, suspect injured, initial encounter +Y35033D Legal intervention involving injury by rifle pellet, suspect injured, subsequent encounter +Y35033S Legal intervention involving injury by rifle pellet, suspect injured, sequela +Y35039A Legal intervention involving injury by rifle pellet, unspecified person injured, initial encounter +Y35039D Legal intervention involving injury by rifle pellet, unspecified person injured, subsequent encounter +Y35039S Legal intervention involving injury by rifle pellet, unspecified person injured, sequela +Y35041A Legal intervention involving injury by rubber bullet, law enforcement official injured, initial encounter +Y35041D Legal intervention involving injury by rubber bullet, law enforcement official injured, subsequent encounter +Y35041S Legal intervention involving injury by rubber bullet, law enforcement official injured, sequela +Y35042A Legal intervention involving injury by rubber bullet, bystander injured, initial encounter +Y35042D Legal intervention involving injury by rubber bullet, bystander injured, subsequent encounter +Y35042S Legal intervention involving injury by rubber bullet, bystander injured, sequela +Y35043A Legal intervention involving injury by rubber bullet, suspect injured, initial encounter +Y35043D Legal intervention involving injury by rubber bullet, suspect injured, subsequent encounter +Y35043S Legal intervention involving injury by rubber bullet, suspect injured, sequela +Y35049A Legal intervention involving injury by rubber bullet, unspecified person injured, initial encounter +Y35049D Legal intervention involving injury by rubber bullet, unspecified person injured, subsequent encounter +Y35049S Legal intervention involving injury by rubber bullet, unspecified person injured, sequela +Y35091A Legal intervention involving other firearm discharge, law enforcement official injured, initial encounter +Y35091D Legal intervention involving other firearm discharge, law enforcement official injured, subsequent encounter +Y35091S Legal intervention involving other firearm discharge, law enforcement official injured, sequela +Y35092A Legal intervention involving other firearm discharge, bystander injured, initial encounter +Y35092D Legal intervention involving other firearm discharge, bystander injured, subsequent encounter +Y35092S Legal intervention involving other firearm discharge, bystander injured, sequela +Y35093A Legal intervention involving other firearm discharge, suspect injured, initial encounter +Y35093D Legal intervention involving other firearm discharge, suspect injured, subsequent encounter +Y35093S Legal intervention involving other firearm discharge, suspect injured, sequela +Y35099A Legal intervention involving other firearm discharge, unspecified person injured, initial encounter +Y35099D Legal intervention involving other firearm discharge, unspecified person injured, subsequent encounter +Y35099S Legal intervention involving other firearm discharge, unspecified person injured, sequela +Y35101A Legal intervention involving unspecified explosives, law enforcement official injured, initial encounter +Y35101D Legal intervention involving unspecified explosives, law enforcement official injured, subsequent encounter +Y35101S Legal intervention involving unspecified explosives, law enforcement official injured, sequela +Y35102A Legal intervention involving unspecified explosives, bystander injured, initial encounter +Y35102D Legal intervention involving unspecified explosives, bystander injured, subsequent encounter +Y35102S Legal intervention involving unspecified explosives, bystander injured, sequela +Y35103A Legal intervention involving unspecified explosives, suspect injured, initial encounter +Y35103D Legal intervention involving unspecified explosives, suspect injured, subsequent encounter +Y35103S Legal intervention involving unspecified explosives, suspect injured, sequela +Y35109A Legal intervention involving unspecified explosives, unspecified person injured, initial encounter +Y35109D Legal intervention involving unspecified explosives, unspecified person injured, subsequent encounter +Y35109S Legal intervention involving unspecified explosives, unspecified person injured, sequela +Y35111A Legal intervention involving injury by dynamite, law enforcement official injured, initial encounter +Y35111D Legal intervention involving injury by dynamite, law enforcement official injured, subsequent encounter +Y35111S Legal intervention involving injury by dynamite, law enforcement official injured, sequela +Y35112A Legal intervention involving injury by dynamite, bystander injured, initial encounter +Y35112D Legal intervention involving injury by dynamite, bystander injured, subsequent encounter +Y35112S Legal intervention involving injury by dynamite, bystander injured, sequela +Y35113A Legal intervention involving injury by dynamite, suspect injured, initial encounter +Y35113D Legal intervention involving injury by dynamite, suspect injured, subsequent encounter +Y35113S Legal intervention involving injury by dynamite, suspect injured, sequela +Y35119A Legal intervention involving injury by dynamite, unspecified person injured, initial encounter +Y35119D Legal intervention involving injury by dynamite, unspecified person injured, subsequent encounter +Y35119S Legal intervention involving injury by dynamite, unspecified person injured, sequela encounter +Y35121A Legal intervention involving injury by explosive shell, law enforcement official injured, initial encounter +Y35121D Legal intervention involving injury by explosive shell, law enforcement official injured, subsequent encounter +Y35121S Legal intervention involving injury by explosive shell, law enforcement official injured, sequela +Y35123A Legal intervention involving injury by explosive shell, suspect injured, initial encounter +Y35123D Legal intervention involving injury by explosive shell, suspect injured, subsequent encounter +Y35123S Legal intervention involving injury by explosive shell, suspect injured, sequela +Y35129A Legal intervention involving injury by explosive shell, unspecified person injured, initial encounter +Y35129D Legal intervention involving injury by explosive shell, unspecified person injured, subsequent encounter +Y35129S Legal intervention involving injury by explosive shell, unspecified person injured, sequela +Y35191A Legal intervention involving other explosives, law enforcement official injured, initial encounter +Y35191D Legal intervention involving other explosives, law enforcement official injured, subsequent encounter +Y35191S Legal intervention involving other explosives, law enforcement official injured, sequela +Y35192A Legal intervention involving other explosives, bystander injured, initial encounter +Y35192D Legal intervention involving other explosives, bystander injured, subsequent encounter +Y35192S Legal intervention involving other explosives, bystander injured, sequela +Y35193A Legal intervention involving other explosives, suspect injured, initial encounter +Y35193D Legal intervention involving other explosives, suspect injured, subsequent encounter +Y35193S Legal intervention involving other explosives, suspect injured, sequela +Y35199A Legal intervention involving other explosives, unspecified person injured, initial encounter +Y35199D Legal intervention involving other explosives, unspecified person injured, subsequent encounter +Y35199S Legal intervention involving other explosives, unspecified person injured, sequela +Y35201A Legal intervention involving unspecified gas, law enforcement official injured, initial encounter +Y35201D Legal intervention involving unspecified gas, law enforcement official injured, subsequent encounter +Y35201S Legal intervention involving unspecified gas, law enforcement official injured, sequela +Y35202A Legal intervention involving unspecified gas, bystander injured, initial encounter +Y35202D Legal intervention involving unspecified gas, bystander injured, subsequent encounter +Y35202S Legal intervention involving unspecified gas, bystander injured, sequela +Y35203A Legal intervention involving unspecified gas, suspect injured, initial encounter +Y35203D Legal intervention involving unspecified gas, suspect injured, subsequent encounter +Y35203S Legal intervention involving unspecified gas, suspect injured, sequela +Y35209A Legal intervention involving unspecified gas, unspecified person injured, initial encounter +Y35209D Legal intervention involving unspecified gas, unspecified person injured, subsequent encounter +Y35209S Legal intervention involving unspecified gas, unspecified person injured, sequela +Y35211A Legal intervention involving injury by tear gas, law enforcement official injured, initial encounter +Y35211D Legal intervention involving injury by tear gas, law enforcement official injured, subsequent encounter +Y35211S Legal intervention involving injury by tear gas, law enforcement official injured, sequela +Y35212A Legal intervention involving injury by tear gas, bystander injured, initial encounter +Y35212D Legal intervention involving injury by tear gas, bystander injured, subsequent encounter +Y35212S Legal intervention involving injury by tear gas, bystander injured, sequela +Y35213A Legal intervention involving injury by tear gas, suspect injured, initial encounter +Y35213D Legal intervention involving injury by tear gas, suspect injured, subsequent encounter +Y35213S Legal intervention involving injury by tear gas, suspect injured, sequela +Y35219A Legal intervention involving injury by tear gas, unspecified person injured, initial encounter +Y35219D Legal intervention involving injury by tear gas, unspecified person injured, subsequent encounter +Y35219S Legal intervention involving injury by tear gas, unspecified person injured, sequela +Y35291A Legal intervention involving other gas, law enforcement official injured, initial encounter +Y35291D Legal intervention involving other gas, law enforcement official injured, subsequent encounter +Y35291S Legal intervention involving other gas, law enforcement official injured, sequela +Y35292A Legal intervention involving other gas, bystander injured, initial encounter +Y35292D Legal intervention involving other gas, bystander injured, subsequent encounter +Y35292S Legal intervention involving other gas, bystander injured, sequela +Y35293A Legal intervention involving other gas, suspect injured, initial encounter +Y35293D Legal intervention involving other gas, suspect injured, subsequent encounter +Y35293S Legal intervention involving other gas, suspect injured, sequela +Y35299A Legal intervention involving other gas, unspecified person injured, initial encounter +Y35299D Legal intervention involving other gas, unspecified person injured, subsequent encounter +Y35299S Legal intervention involving other gas, unspecified person injured, sequela +Y35301A Legal intervention involving unspecified blunt objects, law enforcement official injured, initial encounter +Y35301D Legal intervention involving unspecified blunt objects, law enforcement official injured, subsequent encounter +Y35301S Legal intervention involving unspecified blunt objects, law enforcement official injured, sequela +Y35302A Legal intervention involving unspecified blunt objects, bystander injured, initial encounter +Y35302D Legal intervention involving unspecified blunt objects, bystander injured, subsequent encounter +Y35302S Legal intervention involving unspecified blunt objects, bystander injured, sequela +Y35303A Legal intervention involving unspecified blunt objects, suspect injured, initial encounter +Y35303D Legal intervention involving unspecified blunt objects, suspect injured, subsequent encounter +Y35303S Legal intervention involving unspecified blunt objects, suspect injured, sequela +Y35309A Legal intervention involving unspecified blunt objects, unspecified person injured, initial encounter +Y35309D Legal intervention involving unspecified blunt objects, unspecified person injured, subsequent encounter +Y35309S Legal intervention involving unspecified blunt objects, unspecified person injured, sequela +Y35311A Legal intervention involving baton, law enforcement official injured, initial encounter +Y35311D Legal intervention involving baton, law enforcement official injured, subsequent encounter +Y35311S Legal intervention involving baton, law enforcement official injured, sequela +Y35312A Legal intervention involving baton, bystander injured, initial encounter +Y35312D Legal intervention involving baton, bystander injured, subsequent encounter +Y35312S Legal intervention involving baton, bystander injured, sequela +Y35313A Legal intervention involving baton, suspect injured, initial encounter +Y35313D Legal intervention involving baton, suspect injured, subsequent encounter +Y35313S Legal intervention involving baton, suspect injured, sequela +Y35319A Legal intervention involving baton, unspecified person injured, initial encounter +Y35319D Legal intervention involving baton, unspecified person injured, subsequent encounter +Y35319S Legal intervention involving baton, unspecified person injured, sequela +Y35391A Legal intervention involving other blunt objects, law enforcement official injured, initial encounter +Y35391D Legal intervention involving other blunt objects, law enforcement official injured, subsequent encounter +Y35391S Legal intervention involving other blunt objects, law enforcement official injured, sequela +Y35392A Legal intervention involving other blunt objects, bystander injured, initial encounter +Y35392D Legal intervention involving other blunt objects, bystander injured, subsequent encounter +Y35392S Legal intervention involving other blunt objects, bystander injured, sequela +Y35393A Legal intervention involving other blunt objects, suspect injured, initial encounter +Y35393D Legal intervention involving other blunt objects, suspect injured, subsequent encounter +Y35393S Legal intervention involving other blunt objects, suspect injured, sequela +Y35399A Legal intervention involving other blunt objects, unspecified person injured, initial encounter +Y35399D Legal intervention involving other blunt objects, unspecified person injured, subsequent encounter +Y35399S Legal intervention involving other blunt objects, unspecified person injured, sequela +Y35401A Legal intervention involving unspecified sharp objects, law enforcement official injured, initial encounter +Y35401D Legal intervention involving unspecified sharp objects, law enforcement official injured, subsequent encounter +Y35401S Legal intervention involving unspecified sharp objects, law enforcement official injured, sequela +Y35402A Legal intervention involving unspecified sharp objects, bystander injured, initial encounter +Y35402D Legal intervention involving unspecified sharp objects, bystander injured, subsequent encounter +Y35402S Legal intervention involving unspecified sharp objects, bystander injured, sequela +Y35403A Legal intervention involving unspecified sharp objects, suspect injured, initial encounter +Y35403D Legal intervention involving unspecified sharp objects, suspect injured, subsequent encounter +Y35403S Legal intervention involving unspecified sharp objects, suspect injured, sequela +Y35409A Legal intervention involving unspecified sharp objects, unspecified person injured, initial encounter +Y35409D Legal intervention involving unspecified sharp objects, unspecified person injured, subsequent encounter +Y35409S Legal intervention involving unspecified sharp objects, unspecified person injured, sequela +Y35411A Legal intervention involving bayonet, law enforcement official injured, initial encounter +Y35411D Legal intervention involving bayonet, law enforcement official injured, subsequent encounter +Y35411S Legal intervention involving bayonet, law enforcement official injured, sequela +Y35412A Legal intervention involving bayonet, bystander injured, initial encounter +Y35412D Legal intervention involving bayonet, bystander injured, subsequent encounter +Y35412S Legal intervention involving bayonet, bystander injured, sequela +Y35413A Legal intervention involving bayonet, suspect injured, initial encounter +Y35413D Legal intervention involving bayonet, suspect injured, subsequent encounter +Y35413S Legal intervention involving bayonet, suspect injured, sequela +Y35419A Legal intervention involving bayonet, unspecified person injured, initial encounter +Y35419D Legal intervention involving bayonet, unspecified person injured, subsequent encounter +Y35419S Legal intervention involving bayonet, unspecified person injured, sequela +Y35491A Legal intervention involving other sharp objects, law enforcement official injured, initial encounter +Y35491D Legal intervention involving other sharp objects, law enforcement official injured, subsequent encounter +Y35491S Legal intervention involving other sharp objects, law enforcement official injured, sequela +Y35492A Legal intervention involving other sharp objects, bystander injured, initial encounter +Y35492D Legal intervention involving other sharp objects, bystander injured, subsequent encounter +Y35492S Legal intervention involving other sharp objects, bystander injured, sequela +Y35493A Legal intervention involving other sharp objects, suspect injured, initial encounter +Y35493D Legal intervention involving other sharp objects, suspect injured, subsequent encounter +Y35493S Legal intervention involving other sharp objects, suspect injured, sequela +Y35499A Legal intervention involving other sharp objects, unspecified person injured, initial encounter +Y35499D Legal intervention involving other sharp objects, unspecified person injured, subsequent encounter +Y35499S Legal intervention involving other sharp objects, unspecified person injured, sequela +Y35811A Legal intervention involving manhandling, law enforcement official injured, initial encounter +Y35811D Legal intervention involving manhandling, law enforcement official injured, subsequent encounter +Y35811S Legal intervention involving manhandling, law enforcement official injured, sequela +Y35812A Legal intervention involving manhandling, bystander injured, initial encounter +Y35812D Legal intervention involving manhandling, bystander injured, subsequent encounter +Y35812S Legal intervention involving manhandling, bystander injured, sequela +Y35813A Legal intervention involving manhandling, suspect injured, initial encounter +Y35813D Legal intervention involving manhandling, suspect injured, subsequent encounter +Y35813S Legal intervention involving manhandling, suspect injured, sequela +Y35819A Legal intervention involving manhandling, unspecified person injured, initial encounter +Y35819D Legal intervention involving manhandling, unspecified person injured, subsequent encounter +Y35819S Legal intervention involving manhandling, unspecified person injured, sequela +Y35831A Legal intervention involving a conducted energy device, law enforcement official injured, initial encounter +Y35831D Legal intervention involving a conducted energy device, law enforcement official injured, subsequent encounter +Y35831S Legal intervention involving a conducted energy device, law enforcement official injured, sequela +Y35832A Legal intervention involving a conducted energy device, bystander injured, initial encounter +Y35832D Legal intervention involving a conducted energy device, bystander injured, subsequent encounter +Y35832S Legal intervention involving a conducted energy device, bystander injured, sequela +Y35833A Legal intervention involving a conducted energy device, suspect injured, initial encounter +Y35833D Legal intervention involving a conducted energy device, suspect injured, subsequent encounter +Y35833S Legal intervention involving a conducted energy device, suspect injured, sequela +Y35839A Legal intervention involving a conducted energy device, unspecified person injured, initial encounter +Y35839D Legal intervention involving a conducted energy device, unspecified person injured, subsequent encounter +Y35839S Legal intervention involving a conducted energy device, unspecified person injured, sequela +Y35891A Legal intervention involving other specified means, law enforcement official injured, initial encounter +Y35891D Legal intervention involving other specified means, law enforcement official injured, subsequent encounter +Y35891S Legal intervention involving other specified means, law enforcement official injured, sequela +Y35892A Legal intervention involving other specified means, bystander injured, initial encounter +Y35892D Legal intervention involving other specified means, bystander injured, subsequent encounter +Y35892S Legal intervention involving other specified means, bystander injured, sequela +Y35893A Legal intervention involving other specified means, suspect injured, initial encounter +Y35893D Legal intervention involving other specified means, suspect injured, subsequent encounter +Y35893S Legal intervention involving other specified means, suspect injured, sequela +Y3591XA Legal intervention, means unspecified, law enforcement official injured, initial encounter +Y3591XD Legal intervention, means unspecified, law enforcement official injured, subsequent encounter +Y3591XS Legal intervention, means unspecified, law enforcement official injured, sequela +Y3592XA Legal intervention, means unspecified, bystander injured, initial encounter +Y3592XD Legal intervention, means unspecified, bystander injured, subsequent encounter +Y3592XS Legal intervention, means unspecified, bystander injured, sequela +Y3593XA Legal intervention, means unspecified, suspect injured, initial encounter +Y3593XD Legal intervention, means unspecified, suspect injured, subsequent encounter +Y3593XS Legal intervention, means unspecified, suspect injured, sequela +Y3599XA Legal intervention, means unspecified, unspecified person injured, initial encounter +Y3599XD Legal intervention, means unspecified, unspecified person injured, subsequent encounter +Y3599XS Legal intervention, means unspecified, unspecified person injured, sequela +Y36000A War operations involving explosion of unspecified marine weapon, military personnel, initial encounter +Y36000D War operations involving explosion of unspecified marine weapon, military personnel, subsequent encounter +Y36000S War operations involving explosion of unspecified marine weapon, military personnel, sequela +Y36001A War operations involving explosion of unspecified marine weapon, civilian, initial encounter +Y36001D War operations involving explosion of unspecified marine weapon, civilian, subsequent encounter +Y36001S War operations involving explosion of unspecified marine weapon, civilian, sequela +Y36010A War operations involving explosion of depth-charge, military personnel, initial encounter +Y36010D War operations involving explosion of depth-charge, military personnel, subsequent encounter +Y36010S War operations involving explosion of depth-charge, military personnel, sequela +Y36011A War operations involving explosion of depth-charge, civilian, initial encounter +Y36011D War operations involving explosion of depth-charge, civilian, subsequent encounter +Y36011S War operations involving explosion of depth-charge, civilian, sequela +Y36020A War operations involving explosion of marine mine, military personnel, initial encounter +Y36020D War operations involving explosion of marine mine, military personnel, subsequent encounter +Y36020S War operations involving explosion of marine mine, military personnel, sequela +Y36021A War operations involving explosion of marine mine, civilian, initial encounter +Y36021D War operations involving explosion of marine mine, civilian, subsequent encounter +Y36021S War operations involving explosion of marine mine, civilian, sequela +Y36030A War operations involving explosion of sea-based artillery shell, military personnel, initial encounter +Y36030D War operations involving explosion of sea-based artillery shell, military personnel, subsequent encounter +Y36030S War operations involving explosion of sea-based artillery shell, military personnel, sequela +Y36031A War operations involving explosion of sea-based artillery shell, civilian, initial encounter +Y36031D War operations involving explosion of sea-based artillery shell, civilian, subsequent encounter +Y36031S War operations involving explosion of sea-based artillery shell, civilian, sequela +Y36040A War operations involving explosion of torpedo, military personnel, initial encounter +Y36040D War operations involving explosion of torpedo, military personnel, subsequent encounter +Y36040S War operations involving explosion of torpedo, military personnel, sequela +Y36041A War operations involving explosion of torpedo, civilian, initial encounter +Y36041D War operations involving explosion of torpedo, civilian, subsequent encounter +Y36041S War operations involving explosion of torpedo, civilian, sequela +Y36050A War operations involving accidental detonation of onboard marine weapons, military personnel, initial encounter +Y36050D War operations involving accidental detonation of onboard marine weapons, military personnel, subsequent encounter +Y36050S War operations involving accidental detonation of onboard marine weapons, military personnel, sequela +Y36051A War operations involving accidental detonation of onboard marine weapons, civilian, initial encounter +Y36051D War operations involving accidental detonation of onboard marine weapons, civilian, subsequent encounter +Y36051S War operations involving accidental detonation of onboard marine weapons, civilian, sequela +Y36090A War operations involving explosion of other marine weapons, military personnel, initial encounter +Y36090D War operations involving explosion of other marine weapons, military personnel, subsequent encounter +Y36090S War operations involving explosion of other marine weapons, military personnel, sequela +Y36091A War operations involving explosion of other marine weapons, civilian, initial encounter +Y36091D War operations involving explosion of other marine weapons, civilian, subsequent encounter +Y36091S War operations involving explosion of other marine weapons, civilian, sequela +Y36100A War operations involving unspecified destruction of aircraft, military personnel, initial encounter +Y36100D War operations involving unspecified destruction of aircraft, military personnel, subsequent encounter +Y36100S War operations involving unspecified destruction of aircraft, military personnel, sequela +Y36101A War operations involving unspecified destruction of aircraft, civilian, initial encounter +Y36101D War operations involving unspecified destruction of aircraft, civilian, subsequent encounter +Y36101S War operations involving unspecified destruction of aircraft, civilian, sequela +Y36110A War operations involving destruction of aircraft due to enemy fire or explosives, military personnel, initial encounter +Y36110D War operations involving destruction of aircraft due to enemy fire or explosives, military personnel, subsequent encounter +Y36110S War operations involving destruction of aircraft due to enemy fire or explosives, military personnel, sequela +Y36111A War operations involving destruction of aircraft due to enemy fire or explosives, civilian, initial encounter +Y36111D War operations involving destruction of aircraft due to enemy fire or explosives, civilian, subsequent encounter +Y36111S War operations involving destruction of aircraft due to enemy fire or explosives, civilian, sequela +Y36120A War operations involving destruction of aircraft due to collision with other aircraft, military personnel, initial encounter +Y36120D War operations involving destruction of aircraft due to collision with other aircraft, military personnel, subsequent encounter +Y36120S War operations involving destruction of aircraft due to collision with other aircraft, military personnel, sequela +Y36121A War operations involving destruction of aircraft due to collision with other aircraft, civilian, initial encounter +Y36121D War operations involving destruction of aircraft due to collision with other aircraft, civilian, subsequent encounter +Y36121S War operations involving destruction of aircraft due to collision with other aircraft, civilian, sequela +Y36130A War operations involving destruction of aircraft due to onboard fire, military personnel, initial encounter +Y36130D War operations involving destruction of aircraft due to onboard fire, military personnel, subsequent encounter +Y36130S War operations involving destruction of aircraft due to onboard fire, military personnel, sequela +Y36131A War operations involving destruction of aircraft due to onboard fire, civilian, initial encounter +Y36131D War operations involving destruction of aircraft due to onboard fire, civilian, subsequent encounter +Y36131S War operations involving destruction of aircraft due to onboard fire, civilian, sequela +Y36140A War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, initial encounter +Y36140D War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, subsequent encounter +Y36140S War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, sequela +Y36141A War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, initial encounter +Y36141D War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, subsequent encounter +Y36141S War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, sequela +Y36190A War operations involving other destruction of aircraft, military personnel, initial encounter +Y36190D War operations involving other destruction of aircraft, military personnel, subsequent encounter +Y36190S War operations involving other destruction of aircraft, military personnel, sequela +Y36191A War operations involving other destruction of aircraft, civilian, initial encounter +Y36191D War operations involving other destruction of aircraft, civilian, subsequent encounter +Y36191S War operations involving other destruction of aircraft, civilian, sequela +Y36200A War operations involving unspecified explosion and fragments, military personnel, initial encounter +Y36200D War operations involving unspecified explosion and fragments, military personnel, subsequent encounter +Y36200S War operations involving unspecified explosion and fragments, military personnel, sequela +Y36201A War operations involving unspecified explosion and fragments, civilian, initial encounter +Y36201D War operations involving unspecified explosion and fragments, civilian, subsequent encounter +Y36201S War operations involving unspecified explosion and fragments, civilian, sequela +Y36210A War operations involving explosion of aerial bomb, military personnel, initial encounter +Y36210D War operations involving explosion of aerial bomb, military personnel, subsequent encounter +Y36210S War operations involving explosion of aerial bomb, military personnel, sequela +Y36211A War operations involving explosion of aerial bomb, civilian, initial encounter +Y36211D War operations involving explosion of aerial bomb, civilian, subsequent encounter +Y36211S War operations involving explosion of aerial bomb, civilian, sequela +Y36220A War operations involving explosion of guided missile, military personnel, initial encounter +Y36220D War operations involving explosion of guided missile, military personnel, subsequent encounter +Y36220S War operations involving explosion of guided missile, military personnel, sequela +Y36221A War operations involving explosion of guided missile, civilian, initial encounter +Y36221D War operations involving explosion of guided missile, civilian, subsequent encounter +Y36221S War operations involving explosion of guided missile, civilian, sequela +Y36230A War operations involving explosion of improvised explosive device [IED], military personnel, initial encounter +Y36230D War operations involving explosion of improvised explosive device [IED], military personnel, subsequent encounter +Y36230S War operations involving explosion of improvised explosive device [IED], military personnel, sequela +Y36231A War operations involving explosion of improvised explosive device [IED], civilian, initial encounter +Y36231D War operations involving explosion of improvised explosive device [IED], civilian, subsequent encounter +Y36231S War operations involving explosion of improvised explosive device [IED], civilian, sequela +Y36240A War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, initial encounter +Y36240D War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, subsequent encounter +Y36240S War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, sequela +Y36241A War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, initial encounter +Y36241D War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, subsequent encounter +Y36241S War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, sequela +Y36250A War operations involving fragments from munitions, military personnel, initial encounter +Y36250D War operations involving fragments from munitions, military personnel, subsequent encounter +Y36250S War operations involving fragments from munitions, military personnel, sequela +Y36251A War operations involving fragments from munitions, civilian, initial encounter +Y36251D War operations involving fragments from munitions, civilian, subsequent encounter +Y36251S War operations involving fragments from munitions, civilian, sequela +Y36260A War operations involving fragments of improvised explosive device [IED], military personnel, initial encounter +Y36260D War operations involving fragments of improvised explosive device [IED], military personnel, subsequent encounter +Y36260S War operations involving fragments of improvised explosive device [IED], military personnel, sequela +Y36261A War operations involving fragments of improvised explosive device [IED], civilian, initial encounter +Y36261D War operations involving fragments of improvised explosive device [IED], civilian, subsequent encounter +Y36261S War operations involving fragments of improvised explosive device [IED], civilian, sequela +Y36270A War operations involving fragments from weapons, military personnel, initial encounter +Y36270D War operations involving fragments from weapons, military personnel, subsequent encounter +Y36270S War operations involving fragments from weapons, military personnel, sequela +Y36271A War operations involving fragments from weapons, civilian, initial encounter +Y36271D War operations involving fragments from weapons, civilian, subsequent encounter +Y36271S War operations involving fragments from weapons, civilian, sequela +Y36290A War operations involving other explosions and fragments, military personnel, initial encounter +Y36290D War operations involving other explosions and fragments, military personnel, subsequent encounter +Y36290S War operations involving other explosions and fragments, military personnel, sequela +Y36291A War operations involving other explosions and fragments, civilian, initial encounter +Y36291D War operations involving other explosions and fragments, civilian, subsequent encounter +Y36291S War operations involving other explosions and fragments, civilian, sequela +Y36300A War operations involving unspecified fire, conflagration and hot substance, military personnel, initial encounter +Y36300D War operations involving unspecified fire, conflagration and hot substance, military personnel, subsequent encounter +Y36300S War operations involving unspecified fire, conflagration and hot substance, military personnel, sequela +Y36301A War operations involving unspecified fire, conflagration and hot substance, civilian, initial encounter +Y36301D War operations involving unspecified fire, conflagration and hot substance, civilian, subsequent encounter +Y36301S War operations involving unspecified fire, conflagration and hot substance, civilian, sequela +Y36310A War operations involving gasoline bomb, military personnel, initial encounter +Y36310D War operations involving gasoline bomb, military personnel, subsequent encounter +Y36310S War operations involving gasoline bomb, military personnel, sequela +Y36311A War operations involving gasoline bomb, civilian, initial encounter +Y36311D War operations involving gasoline bomb, civilian, subsequent encounter +Y36311S War operations involving gasoline bomb, civilian, sequela +Y36320A War operations involving incendiary bullet, military personnel, initial encounter +Y36320D War operations involving incendiary bullet, military personnel, subsequent encounter +Y36320S War operations involving incendiary bullet, military personnel, sequela +Y36321A War operations involving incendiary bullet, civilian, initial encounter +Y36321D War operations involving incendiary bullet, civilian, subsequent encounter +Y36321S War operations involving incendiary bullet, civilian, sequela +Y36330A War operations involving flamethrower, military personnel, initial encounter +Y36330D War operations involving flamethrower, military personnel, subsequent encounter +Y36330S War operations involving flamethrower, military personnel, sequela +Y36331A War operations involving flamethrower, civilian, initial encounter +Y36331D War operations involving flamethrower, civilian, subsequent encounter +Y36331S War operations involving flamethrower, civilian, sequela +Y36390A War operations involving other fires, conflagrations and hot substances, military personnel, initial encounter +Y36390D War operations involving other fires, conflagrations and hot substances, military personnel, subsequent encounter +Y36390S War operations involving other fires, conflagrations and hot substances, military personnel, sequela +Y36391A War operations involving other fires, conflagrations and hot substances, civilian, initial encounter +Y36391D War operations involving other fires, conflagrations and hot substances, civilian, subsequent encounter +Y36391S War operations involving other fires, conflagrations and hot substances, civilian, sequela +Y36410A War operations involving rubber bullets, military personnel, initial encounter +Y36410D War operations involving rubber bullets, military personnel, subsequent encounter +Y36410S War operations involving rubber bullets, military personnel, sequela +Y36411A War operations involving rubber bullets, civilian, initial encounter +Y36411D War operations involving rubber bullets, civilian, subsequent encounter +Y36411S War operations involving rubber bullets, civilian, sequela +Y36420A War operations involving firearms pellets, military personnel, initial encounter +Y36420D War operations involving firearms pellets, military personnel, subsequent encounter +Y36420S War operations involving firearms pellets, military personnel, sequela +Y36421A War operations involving firearms pellets, civilian, initial encounter +Y36421D War operations involving firearms pellets, civilian, subsequent encounter +Y36421S War operations involving firearms pellets, civilian, sequela +Y36430A War operations involving other firearms discharge, military personnel, initial encounter +Y36430D War operations involving other firearms discharge, military personnel, subsequent encounter +Y36430S War operations involving other firearms discharge, military personnel, sequela +Y36431A War operations involving other firearms discharge, civilian, initial encounter +Y36431D War operations involving other firearms discharge, civilian, subsequent encounter +Y36431S War operations involving other firearms discharge, civilian, sequela +Y36440A War operations involving unarmed hand to hand combat, military personnel, initial encounter +Y36440D War operations involving unarmed hand to hand combat, military personnel, subsequent encounter +Y36440S War operations involving unarmed hand to hand combat, military personnel, sequela +Y36441A War operations involving unarmed hand to hand combat, civilian, initial encounter +Y36441D War operations involving unarmed hand to hand combat, civilian, subsequent encounter +Y36441S War operations involving unarmed hand to hand combat, civilian, sequela +Y36450A War operations involving combat using blunt or piercing object, military personnel, initial encounter +Y36450D War operations involving combat using blunt or piercing object, military personnel, subsequent encounter +Y36450S War operations involving combat using blunt or piercing object, military personnel, sequela +Y36451A War operations involving combat using blunt or piercing object, civilian, initial encounter +Y36451D War operations involving combat using blunt or piercing object, civilian, subsequent encounter +Y36451S War operations involving combat using blunt or piercing object, civilian, sequela +Y36460A War operations involving intentional restriction of air and airway, military personnel, initial encounter +Y36460D War operations involving intentional restriction of air and airway, military personnel, subsequent encounter +Y36460S War operations involving intentional restriction of air and airway, military personnel, sequela +Y36461A War operations involving intentional restriction of air and airway, civilian, initial encounter +Y36461D War operations involving intentional restriction of air and airway, civilian, subsequent encounter +Y36461S War operations involving intentional restriction of air and airway, civilian, sequela +Y36470A War operations involving unintentional restriction of air and airway, military personnel, initial encounter +Y36470D War operations involving unintentional restriction of air and airway, military personnel, subsequent encounter +Y36470S War operations involving unintentional restriction of air and airway, military personnel, sequela +Y36471A War operations involving unintentional restriction of air and airway, civilian, initial encounter +Y36471D War operations involving unintentional restriction of air and airway, civilian, subsequent encounter +Y36471S War operations involving unintentional restriction of air and airway, civilian, sequela +Y36490A War operations involving other forms of conventional warfare, military personnel, initial encounter +Y36490D War operations involving other forms of conventional warfare, military personnel, subsequent encounter +Y36490S War operations involving other forms of conventional warfare, military personnel, sequela +Y36491A War operations involving other forms of conventional warfare, civilian, initial encounter +Y36491D War operations involving other forms of conventional warfare, civilian, subsequent encounter +Y36491S War operations involving other forms of conventional warfare, civilian, sequela +Y36500A War operations involving unspecified effect of nuclear weapon, military personnel, initial encounter +Y36500D War operations involving unspecified effect of nuclear weapon, military personnel, subsequent encounter +Y36500S War operations involving unspecified effect of nuclear weapon, military personnel, sequela +Y36501A War operations involving unspecified effect of nuclear weapon, civilian, initial encounter +Y36501D War operations involving unspecified effect of nuclear weapon, civilian, subsequent encounter +Y36501S War operations involving unspecified effect of nuclear weapon, civilian, sequela +Y36510A War operations involving direct blast effect of nuclear weapon, military personnel, initial encounter +Y36510D War operations involving direct blast effect of nuclear weapon, military personnel, subsequent encounter +Y36510S War operations involving direct blast effect of nuclear weapon, military personnel, sequela +Y36511A War operations involving direct blast effect of nuclear weapon, civilian, initial encounter +Y36511D War operations involving direct blast effect of nuclear weapon, civilian, subsequent encounter +Y36511S War operations involving direct blast effect of nuclear weapon, civilian, sequela +Y36520A War operations involving indirect blast effect of nuclear weapon, military personnel, initial encounter +Y36520D War operations involving indirect blast effect of nuclear weapon, military personnel, subsequent encounter +Y36520S War operations involving indirect blast effect of nuclear weapon, military personnel, sequela +Y36521A War operations involving indirect blast effect of nuclear weapon, civilian, initial encounter +Y36521D War operations involving indirect blast effect of nuclear weapon, civilian, subsequent encounter +Y36521S War operations involving indirect blast effect of nuclear weapon, civilian, sequela +Y36530A War operations involving thermal radiation effect of nuclear weapon, military personnel, initial encounter +Y36530D War operations involving thermal radiation effect of nuclear weapon, military personnel, subsequent encounter +Y36530S War operations involving thermal radiation effect of nuclear weapon, military personnel, sequela +Y36531A War operations involving thermal radiation effect of nuclear weapon, civilian, initial encounter +Y36531D War operations involving thermal radiation effect of nuclear weapon, civilian, subsequent encounter +Y36531S War operations involving thermal radiation effect of nuclear weapon, civilian, sequela +Y36540A War operation involving nuclear radiation effects of nuclear weapon, military personnel, initial encounter +Y36540D War operation involving nuclear radiation effects of nuclear weapon, military personnel, subsequent encounter +Y36540S War operation involving nuclear radiation effects of nuclear weapon, military personnel, sequela +Y36541A War operation involving nuclear radiation effects of nuclear weapon, civilian, initial encounter +Y36541D War operation involving nuclear radiation effects of nuclear weapon, civilian, subsequent encounter +Y36541S War operation involving nuclear radiation effects of nuclear weapon, civilian, sequela +Y36590A War operation involving other effects of nuclear weapons, military personnel, initial encounter +Y36590D War operation involving other effects of nuclear weapons, military personnel, subsequent encounter +Y36590S War operation involving other effects of nuclear weapons, military personnel, sequela +Y36591A War operation involving other effects of nuclear weapons, civilian, initial encounter +Y36591D War operation involving other effects of nuclear weapons, civilian, subsequent encounter +Y36591S War operation involving other effects of nuclear weapons, civilian, sequela +Y366X0A War operations involving biological weapons, military personnel, initial encounter +Y366X0D War operations involving biological weapons, military personnel, subsequent encounter +Y366X0S War operations involving biological weapons, military personnel, sequela +Y366X1A War operations involving biological weapons, civilian, initial encounter +Y366X1D War operations involving biological weapons, civilian, subsequent encounter +Y366X1S War operations involving biological weapons, civilian, sequela +Y367X0A War operations involving chemical weapons and other forms of unconventional warfare, military personnel, initial encounter +Y367X0D War operations involving chemical weapons and other forms of unconventional warfare, military personnel, subsequent encounter +Y367X0S War operations involving chemical weapons and other forms of unconventional warfare, military personnel, sequela +Y367X1A War operations involving chemical weapons and other forms of unconventional warfare, civilian, initial encounter +Y367X1D War operations involving chemical weapons and other forms of unconventional warfare, civilian, subsequent encounter +Y367X1S War operations involving chemical weapons and other forms of unconventional warfare, civilian, sequela +Y36810A Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel, initial encounter +Y36810D Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel, subsequent encounter +Y36810S Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel, sequela +Y36811A Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian, initial encounter +Y36811D Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian, subsequent encounter +Y36811S Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian, sequela +Y36820A Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel, initial encounter +Y36820D Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel, subsequent encounter +Y36820S Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel, sequela +Y36821A Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian, initial encounter +Y36821D Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian, subsequent encounter +Y36821S Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian, sequela +Y36880A Other war operations occurring after cessation of hostilities, military personnel, initial encounter +Y36880D Other war operations occurring after cessation of hostilities, military personnel, subsequent encounter +Y36880S Other war operations occurring after cessation of hostilities, military personnel, sequela +Y36881A Other war operations occurring after cessation of hostilities, civilian, initial encounter +Y36881D Other war operations occurring after cessation of hostilities, civilian, subsequent encounter +Y36881S Other war operations occurring after cessation of hostilities, civilian, sequela +Y36890A Unspecified war operations occurring after cessation of hostilities, military personnel, initial encounter +Y36890D Unspecified war operations occurring after cessation of hostilities, military personnel, subsequent encounter +Y36890S Unspecified war operations occurring after cessation of hostilities, military personnel, sequela +Y36891A Unspecified war operations occurring after cessation of hostilities, civilian, initial encounter +Y36891D Unspecified war operations occurring after cessation of hostilities, civilian, subsequent encounter +Y36891S Unspecified war operations occurring after cessation of hostilities, civilian, sequela +Y3690XA War operations, unspecified, initial encounter +Y3690XD War operations, unspecified, subsequent encounter +Y3690XS War operations, unspecified, sequela +Y3691XA War operations involving unspecified weapon of mass destruction [WMD], initial encounter +Y3691XD War operations involving unspecified weapon of mass destruction [WMD], subsequent encounter +Y3691XS War operations involving unspecified weapon of mass destruction [WMD], sequela +Y3692XA War operations involving friendly fire, initial encounter +Y3692XD War operations involving friendly fire, subsequent encounter +Y3692XS War operations involving friendly fire, sequela +Y37000A Military operations involving explosion of unspecified marine weapon, military personnel, initial encounter +Y37000D Military operations involving explosion of unspecified marine weapon, military personnel, subsequent encounter +Y37000S Military operations involving explosion of unspecified marine weapon, military personnel, sequela +Y37001A Military operations involving explosion of unspecified marine weapon, civilian, initial encounter +Y37001D Military operations involving explosion of unspecified marine weapon, civilian, subsequent encounter +Y37001S Military operations involving explosion of unspecified marine weapon, civilian, sequela +Y37010A Military operations involving explosion of depth-charge, military personnel, initial encounter +Y37010D Military operations involving explosion of depth-charge, military personnel, subsequent encounter +Y37010S Military operations involving explosion of depth-charge, military personnel, sequela +Y37011A Military operations involving explosion of depth-charge, civilian, initial encounter +Y37011D Military operations involving explosion of depth-charge, civilian, subsequent encounter +Y37011S Military operations involving explosion of depth-charge, civilian, sequela +Y37020A Military operations involving explosion of marine mine, military personnel, initial encounter +Y37020D Military operations involving explosion of marine mine, military personnel, subsequent encounter +Y37020S Military operations involving explosion of marine mine, military personnel, sequela +Y37021A Military operations involving explosion of marine mine, civilian, initial encounter +Y37021D Military operations involving explosion of marine mine, civilian, subsequent encounter +Y37021S Military operations involving explosion of marine mine, civilian, sequela +Y37030A Military operations involving explosion of sea-based artillery shell, military personnel, initial encounter +Y37030D Military operations involving explosion of sea-based artillery shell, military personnel, subsequent encounter +Y37030S Military operations involving explosion of sea-based artillery shell, military personnel, sequela +Y37031A Military operations involving explosion of sea-based artillery shell, civilian, initial encounter +Y37031D Military operations involving explosion of sea-based artillery shell, civilian, subsequent encounter +Y37031S Military operations involving explosion of sea-based artillery shell, civilian, sequela +Y37040A Military operations involving explosion of torpedo, military personnel, initial encounter +Y37040D Military operations involving explosion of torpedo, military personnel, subsequent encounter +Y37040S Military operations involving explosion of torpedo, military personnel, sequela +Y37041A Military operations involving explosion of torpedo, civilian, initial encounter +Y37041D Military operations involving explosion of torpedo, civilian, subsequent encounter +Y37041S Military operations involving explosion of torpedo, civilian, sequela +Y37050A Military operations involving accidental detonation of onboard marine weapons, military personnel, initial encounter +Y37050D Military operations involving accidental detonation of onboard marine weapons, military personnel, subsequent encounter +Y37050S Military operations involving accidental detonation of onboard marine weapons, military personnel, sequela +Y37051A Military operations involving accidental detonation of onboard marine weapons, civilian, initial encounter +Y37051D Military operations involving accidental detonation of onboard marine weapons, civilian, subsequent encounter +Y37051S Military operations involving accidental detonation of onboard marine weapons, civilian, sequela +Y37090A Military operations involving explosion of other marine weapons, military personnel, initial encounter +Y37090D Military operations involving explosion of other marine weapons, military personnel, subsequent encounter +Y37090S Military operations involving explosion of other marine weapons, military personnel, sequela +Y37091A Military operations involving explosion of other marine weapons, civilian, initial encounter +Y37091D Military operations involving explosion of other marine weapons, civilian, subsequent encounter +Y37091S Military operations involving explosion of other marine weapons, civilian, sequela +Y37100A Military operations involving unspecified destruction of aircraft, military personnel, initial encounter +Y37100D Military operations involving unspecified destruction of aircraft, military personnel, subsequent encounter +Y37100S Military operations involving unspecified destruction of aircraft, military personnel, sequela +Y37101A Military operations involving unspecified destruction of aircraft, civilian, initial encounter +Y37101D Military operations involving unspecified destruction of aircraft, civilian, subsequent encounter +Y37101S Military operations involving unspecified destruction of aircraft, civilian, sequela +Y37110A Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel, initial encounter +Y37110D Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel, subsequent encounter +Y37110S Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel, sequela +Y37111A Military operations involving destruction of aircraft due to enemy fire or explosives, civilian, initial encounter +Y37111D Military operations involving destruction of aircraft due to enemy fire or explosives, civilian, subsequent encounter +Y37111S Military operations involving destruction of aircraft due to enemy fire or explosives, civilian, sequela +Y37120A Military operations involving destruction of aircraft due to collision with other aircraft, military personnel, initial encounter +Y37120D Military operations involving destruction of aircraft due to collision with other aircraft, military personnel, subsequent encounter +Y37120S Military operations involving destruction of aircraft due to collision with other aircraft, military personnel, sequela +Y37121A Military operations involving destruction of aircraft due to collision with other aircraft, civilian, initial encounter +Y37121D Military operations involving destruction of aircraft due to collision with other aircraft, civilian, subsequent encounter +Y37121S Military operations involving destruction of aircraft due to collision with other aircraft, civilian, sequela +Y37130A Military operations involving destruction of aircraft due to onboard fire, military personnel, initial encounter +Y37130D Military operations involving destruction of aircraft due to onboard fire, military personnel, subsequent encounter +Y37130S Military operations involving destruction of aircraft due to onboard fire, military personnel, sequela +Y37131A Military operations involving destruction of aircraft due to onboard fire, civilian, initial encounter +Y37131D Military operations involving destruction of aircraft due to onboard fire, civilian, subsequent encounter +Y37131S Military operations involving destruction of aircraft due to onboard fire, civilian, sequela +Y37140A Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, initial encounter +Y37140D Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, subsequent encounter +Y37140S Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, sequela +Y37141A Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, initial encounter +Y37141D Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, subsequent encounter +Y37141S Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, sequela +Y37190A Military operations involving other destruction of aircraft, military personnel, initial encounter +Y37190D Military operations involving other destruction of aircraft, military personnel, subsequent encounter +Y37190S Military operations involving other destruction of aircraft, military personnel, sequela +Y37191A Military operations involving other destruction of aircraft, civilian, initial encounter +Y37191D Military operations involving other destruction of aircraft, civilian, subsequent encounter +Y37191S Military operations involving other destruction of aircraft, civilian, sequela +Y37200A Military operations involving unspecified explosion and fragments, military personnel, initial encounter +Y37200D Military operations involving unspecified explosion and fragments, military personnel, subsequent encounter +Y37200S Military operations involving unspecified explosion and fragments, military personnel, sequela +Y37201A Military operations involving unspecified explosion and fragments, civilian, initial encounter +Y37201D Military operations involving unspecified explosion and fragments, civilian, subsequent encounter +Y37201S Military operations involving unspecified explosion and fragments, civilian, sequela +Y37210A Military operations involving explosion of aerial bomb, military personnel, initial encounter +Y37210D Military operations involving explosion of aerial bomb, military personnel, subsequent encounter +Y37210S Military operations involving explosion of aerial bomb, military personnel, sequela +Y37211A Military operations involving explosion of aerial bomb, civilian, initial encounter +Y37211D Military operations involving explosion of aerial bomb, civilian, subsequent encounter +Y37211S Military operations involving explosion of aerial bomb, civilian, sequela +Y37220A Military operations involving explosion of guided missile, military personnel, initial encounter +Y37220D Military operations involving explosion of guided missile, military personnel, subsequent encounter +Y37220S Military operations involving explosion of guided missile, military personnel, sequela +Y37221A Military operations involving explosion of guided missile, civilian, initial encounter +Y37221D Military operations involving explosion of guided missile, civilian, subsequent encounter +Y37221S Military operations involving explosion of guided missile, civilian, sequela +Y37230A Military operations involving explosion of improvised explosive device [IED], military personnel, initial encounter +Y37230D Military operations involving explosion of improvised explosive device [IED], military personnel, subsequent encounter +Y37230S Military operations involving explosion of improvised explosive device [IED], military personnel, sequela +Y37231A Military operations involving explosion of improvised explosive device [IED], civilian, initial encounter +Y37231D Military operations involving explosion of improvised explosive device [IED], civilian, subsequent encounter +Y37231S Military operations involving explosion of improvised explosive device [IED], civilian, sequela +Y37240A Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, initial encounter +Y37240D Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, subsequent encounter +Y37240S Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, sequela +Y37241A Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, initial encounter +Y37241D Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, subsequent encounter +Y37241S Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, sequela +Y37250A Military operations involving fragments from munitions, military personnel, initial encounter +Y37250D Military operations involving fragments from munitions, military personnel, subsequent encounter +Y37250S Military operations involving fragments from munitions, military personnel, sequela +Y37251A Military operations involving fragments from munitions, civilian, initial encounter +Y37251D Military operations involving fragments from munitions, civilian, subsequent encounter +Y37251S Military operations involving fragments from munitions, civilian, sequela +Y37260A Military operations involving fragments of improvised explosive device [IED], military personnel, initial encounter +Y37260D Military operations involving fragments of improvised explosive device [IED], military personnel, subsequent encounter +Y37260S Military operations involving fragments of improvised explosive device [IED], military personnel, sequela +Y37261A Military operations involving fragments of improvised explosive device [IED], civilian, initial encounter +Y37261D Military operations involving fragments of improvised explosive device [IED], civilian, subsequent encounter +Y37261S Military operations involving fragments of improvised explosive device [IED], civilian, sequela +Y37270A Military operations involving fragments from weapons, military personnel, initial encounter +Y37270D Military operations involving fragments from weapons, military personnel, subsequent encounter +Y37270S Military operations involving fragments from weapons, military personnel, sequela +Y37271A Military operations involving fragments from weapons, civilian, initial encounter +Y37271D Military operations involving fragments from weapons, civilian, subsequent encounter +Y37271S Military operations involving fragments from weapons, civilian, sequela +Y37290A Military operations involving other explosions and fragments, military personnel, initial encounter +Y37290D Military operations involving other explosions and fragments, military personnel, subsequent encounter +Y37290S Military operations involving other explosions and fragments, military personnel, sequela +Y37291A Military operations involving other explosions and fragments, civilian, initial encounter +Y37291D Military operations involving other explosions and fragments, civilian, subsequent encounter +Y37291S Military operations involving other explosions and fragments, civilian, sequela +Y37300A Military operations involving unspecified fire, conflagration and hot substance, military personnel, initial encounter +Y37300D Military operations involving unspecified fire, conflagration and hot substance, military personnel, subsequent encounter +Y37300S Military operations involving unspecified fire, conflagration and hot substance, military personnel, sequela +Y37301A Military operations involving unspecified fire, conflagration and hot substance, civilian, initial encounter +Y37301D Military operations involving unspecified fire, conflagration and hot substance, civilian, subsequent encounter +Y37301S Military operations involving unspecified fire, conflagration and hot substance, civilian, sequela +Y37310A Military operations involving gasoline bomb, military personnel, initial encounter +Y37310D Military operations involving gasoline bomb, military personnel, subsequent encounter +Y37310S Military operations involving gasoline bomb, military personnel, sequela +Y37311A Military operations involving gasoline bomb, civilian, initial encounter +Y37311D Military operations involving gasoline bomb, civilian, subsequent encounter +Y37311S Military operations involving gasoline bomb, civilian, sequela +Y37320A Military operations involving incendiary bullet, military personnel, initial encounter +Y37320D Military operations involving incendiary bullet, military personnel, subsequent encounter +Y37320S Military operations involving incendiary bullet, military personnel, sequela +Y37321A Military operations involving incendiary bullet, civilian, initial encounter +Y37321D Military operations involving incendiary bullet, civilian, subsequent encounter +Y37321S Military operations involving incendiary bullet, civilian, sequela +Y37330A Military operations involving flamethrower, military personnel, initial encounter +Y37330D Military operations involving flamethrower, military personnel, subsequent encounter +Y37330S Military operations involving flamethrower, military personnel, sequela +Y37331A Military operations involving flamethrower, civilian, initial encounter +Y37331D Military operations involving flamethrower, civilian, subsequent encounter +Y37331S Military operations involving flamethrower, civilian, sequela +Y37390A Military operations involving other fires, conflagrations and hot substances, military personnel, initial encounter +Y37390D Military operations involving other fires, conflagrations and hot substances, military personnel, subsequent encounter +Y37390S Military operations involving other fires, conflagrations and hot substances, military personnel, sequela +Y37391A Military operations involving other fires, conflagrations and hot substances, civilian, initial encounter +Y37391D Military operations involving other fires, conflagrations and hot substances, civilian, subsequent encounter +Y37391S Military operations involving other fires, conflagrations and hot substances, civilian, sequela +Y37410A Military operations involving rubber bullets, military personnel, initial encounter +Y37410D Military operations involving rubber bullets, military personnel, subsequent encounter +Y37410S Military operations involving rubber bullets, military personnel, sequela +Y37411A Military operations involving rubber bullets, civilian, initial encounter +Y37411D Military operations involving rubber bullets, civilian, subsequent encounter +Y37411S Military operations involving rubber bullets, civilian, sequela +Y37420A Military operations involving firearms pellets, military personnel, initial encounter +Y37420D Military operations involving firearms pellets, military personnel, subsequent encounter +Y37420S Military operations involving firearms pellets, military personnel, sequela +Y37421A Military operations involving firearms pellets, civilian, initial encounter +Y37421D Military operations involving firearms pellets, civilian, subsequent encounter +Y37421S Military operations involving firearms pellets, civilian, sequela +Y37430A Military operations involving other firearms discharge, military personnel, initial encounter +Y37430D Military operations involving other firearms discharge, military personnel, subsequent encounter +Y37430S Military operations involving other firearms discharge, military personnel, sequela +Y37431A Military operations involving other firearms discharge, civilian, initial encounter +Y37431D Military operations involving other firearms discharge, civilian, subsequent encounter +Y37431S Military operations involving other firearms discharge, civilian, sequela +Y37440A Military operations involving unarmed hand to hand combat, military personnel, initial encounter +Y37440D Military operations involving unarmed hand to hand combat, military personnel, subsequent encounter +Y37440S Military operations involving unarmed hand to hand combat, military personnel, sequela +Y37441A Military operations involving unarmed hand to hand combat, civilian, initial encounter +Y37441D Military operations involving unarmed hand to hand combat, civilian, subsequent encounter +Y37441S Military operations involving unarmed hand to hand combat, civilian, sequela +Y37450A Military operations involving combat using blunt or piercing object, military personnel, initial encounter +Y37450D Military operations involving combat using blunt or piercing object, military personnel, subsequent encounter +Y37450S Military operations involving combat using blunt or piercing object, military personnel, sequela +Y37451A Military operations involving combat using blunt or piercing object, civilian, initial encounter +Y37451D Military operations involving combat using blunt or piercing object, civilian, subsequent encounter +Y37451S Military operations involving combat using blunt or piercing object, civilian, sequela +Y37460A Military operations involving intentional restriction of air and airway, military personnel, initial encounter +Y37460D Military operations involving intentional restriction of air and airway, military personnel, subsequent encounter +Y37460S Military operations involving intentional restriction of air and airway, military personnel, sequela +Y37461A Military operations involving intentional restriction of air and airway, civilian, initial encounter +Y37461D Military operations involving intentional restriction of air and airway, civilian, subsequent encounter +Y37461S Military operations involving intentional restriction of air and airway, civilian, sequela +Y37470A Military operations involving unintentional restriction of air and airway, military personnel, initial encounter +Y37470D Military operations involving unintentional restriction of air and airway, military personnel, subsequent encounter +Y37470S Military operations involving unintentional restriction of air and airway, military personnel, sequela +Y37471A Military operations involving unintentional restriction of air and airway, civilian, initial encounter +Y37471D Military operations involving unintentional restriction of air and airway, civilian, subsequent encounter +Y37471S Military operations involving unintentional restriction of air and airway, civilian, sequela +Y37490A Military operations involving other forms of conventional warfare, military personnel, initial encounter +Y37490D Military operations involving other forms of conventional warfare, military personnel, subsequent encounter +Y37490S Military operations involving other forms of conventional warfare, military personnel, sequela +Y37491A Military operations involving other forms of conventional warfare, civilian, initial encounter +Y37491D Military operations involving other forms of conventional warfare, civilian, subsequent encounter +Y37491S Military operations involving other forms of conventional warfare, civilian, sequela +Y37500A Military operations involving unspecified effect of nuclear weapon, military personnel, initial encounter +Y37500D Military operations involving unspecified effect of nuclear weapon, military personnel, subsequent encounter +Y37500S Military operations involving unspecified effect of nuclear weapon, military personnel, sequela +Y37501A Military operations involving unspecified effect of nuclear weapon, civilian, initial encounter +Y37501D Military operations involving unspecified effect of nuclear weapon, civilian, subsequent encounter +Y37501S Military operations involving unspecified effect of nuclear weapon, civilian, sequela +Y37510A Military operations involving direct blast effect of nuclear weapon, military personnel, initial encounter +Y37510D Military operations involving direct blast effect of nuclear weapon, military personnel, subsequent encounter +Y37510S Military operations involving direct blast effect of nuclear weapon, military personnel, sequela +Y37511A Military operations involving direct blast effect of nuclear weapon, civilian, initial encounter +Y37511D Military operations involving direct blast effect of nuclear weapon, civilian, subsequent encounter +Y37511S Military operations involving direct blast effect of nuclear weapon, civilian, sequela +Y37520A Military operations involving indirect blast effect of nuclear weapon, military personnel, initial encounter +Y37520D Military operations involving indirect blast effect of nuclear weapon, military personnel, subsequent encounter +Y37520S Military operations involving indirect blast effect of nuclear weapon, military personnel, sequela +Y37521A Military operations involving indirect blast effect of nuclear weapon, civilian, initial encounter +Y37521D Military operations involving indirect blast effect of nuclear weapon, civilian, subsequent encounter +Y37521S Military operations involving indirect blast effect of nuclear weapon, civilian, sequela +Y37530A Military operations involving thermal radiation effect of nuclear weapon, military personnel, initial encounter +Y37530D Military operations involving thermal radiation effect of nuclear weapon, military personnel, subsequent encounter +Y37530S Military operations involving thermal radiation effect of nuclear weapon, military personnel, sequela +Y37531A Military operations involving thermal radiation effect of nuclear weapon, civilian, initial encounter +Y37531D Military operations involving thermal radiation effect of nuclear weapon, civilian, subsequent encounter +Y37531S Military operations involving thermal radiation effect of nuclear weapon, civilian, sequela +Y37540A Military operation involving nuclear radiation effects of nuclear weapon, military personnel, initial encounter +Y37540D Military operation involving nuclear radiation effects of nuclear weapon, military personnel, subsequent encounter +Y37540S Military operation involving nuclear radiation effects of nuclear weapon, military personnel, sequela +Y37541A Military operation involving nuclear radiation effects of nuclear weapon, civilian, initial encounter +Y37541D Military operation involving nuclear radiation effects of nuclear weapon, civilian, subsequent encounter +Y37541S Military operation involving nuclear radiation effects of nuclear weapon, civilian, sequela +Y37590A Military operation involving other effects of nuclear weapons, military personnel, initial encounter +Y37590D Military operation involving other effects of nuclear weapons, military personnel, subsequent encounter +Y37590S Military operation involving other effects of nuclear weapons, military personnel, sequela +Y37591A Military operation involving other effects of nuclear weapons, civilian, initial encounter +Y37591D Military operation involving other effects of nuclear weapons, civilian, subsequent encounter +Y37591S Military operation involving other effects of nuclear weapons, civilian, sequela +Y376X0A Military operations involving biological weapons, military personnel, initial encounter +Y376X0D Military operations involving biological weapons, military personnel, subsequent encounter +Y376X0S Military operations involving biological weapons, military personnel, sequela +Y376X1A Military operations involving biological weapons, civilian, initial encounter +Y376X1D Military operations involving biological weapons, civilian, subsequent encounter +Y376X1S Military operations involving biological weapons, civilian, sequela +Y377X0A Military operations involving chemical weapons and other forms of unconventional warfare, military personnel, initial encounter +Y377X0D Military operations involving chemical weapons and other forms of unconventional warfare, military personnel, subsequent encounter +Y377X0S Military operations involving chemical weapons and other forms of unconventional warfare, military personnel, sequela +Y377X1A Military operations involving chemical weapons and other forms of unconventional warfare, civilian, initial encounter +Y377X1D Military operations involving chemical weapons and other forms of unconventional warfare, civilian, subsequent encounter +Y377X1S Military operations involving chemical weapons and other forms of unconventional warfare, civilian, sequela +Y3790XA Military operations, unspecified, initial encounter +Y3790XD Military operations, unspecified, subsequent encounter +Y3790XS Military operations, unspecified, sequela +Y3791XA Military operations involving unspecified weapon of mass destruction [WMD], initial encounter +Y3791XD Military operations involving unspecified weapon of mass destruction [WMD], subsequent encounter +Y3791XS Military operations involving unspecified weapon of mass destruction [WMD], sequela +Y3792XA Military operations involving friendly fire, initial encounter +Y3792XD Military operations involving friendly fire, subsequent encounter +Y3792XS Military operations involving friendly fire, sequela +Y380X1A Terrorism involving explosion of marine weapons, public safety official injured, initial encounter +Y380X1D Terrorism involving explosion of marine weapons, public safety official injured, subsequent encounter +Y380X1S Terrorism involving explosion of marine weapons, public safety official injured, sequela +Y380X2A Terrorism involving explosion of marine weapons, civilian injured, initial encounter +Y380X2D Terrorism involving explosion of marine weapons, civilian injured, subsequent encounter +Y380X2S Terrorism involving explosion of marine weapons, civilian injured, sequela +Y380X3A Terrorism involving explosion of marine weapons, terrorist injured, initial encounter +Y380X3D Terrorism involving explosion of marine weapons, terrorist injured, subsequent encounter +Y380X3S Terrorism involving explosion of marine weapons, terrorist injured, sequela +Y381X1A Terrorism involving destruction of aircraft, public safety official injured, initial encounter +Y381X1D Terrorism involving destruction of aircraft, public safety official injured, subsequent encounter +Y381X1S Terrorism involving destruction of aircraft, public safety official injured, sequela +Y381X2A Terrorism involving destruction of aircraft, civilian injured, initial encounter +Y381X2D Terrorism involving destruction of aircraft, civilian injured, subsequent encounter +Y381X2S Terrorism involving destruction of aircraft, civilian injured, sequela +Y381X3A Terrorism involving destruction of aircraft, terrorist injured, initial encounter +Y381X3D Terrorism involving destruction of aircraft, terrorist injured, subsequent encounter +Y381X3S Terrorism involving destruction of aircraft, terrorist injured, sequela +Y382X1A Terrorism involving other explosions and fragments, public safety official injured, initial encounter +Y382X1D Terrorism involving other explosions and fragments, public safety official injured, subsequent encounter +Y382X1S Terrorism involving other explosions and fragments, public safety official injured, sequela +Y382X2A Terrorism involving other explosions and fragments, civilian injured, initial encounter +Y382X2D Terrorism involving other explosions and fragments, civilian injured, subsequent encounter +Y382X2S Terrorism involving other explosions and fragments, civilian injured, sequela +Y382X3A Terrorism involving other explosions and fragments, terrorist injured, initial encounter +Y382X3D Terrorism involving other explosions and fragments, terrorist injured, subsequent encounter +Y382X3S Terrorism involving other explosions and fragments, terrorist injured, sequela +Y383X1A Terrorism involving fires, conflagration and hot substances, public safety official injured, initial encounter +Y383X1D Terrorism involving fires, conflagration and hot substances, public safety official injured, subsequent encounter +Y383X1S Terrorism involving fires, conflagration and hot substances, public safety official injured, sequela +Y383X2A Terrorism involving fires, conflagration and hot substances, civilian injured, initial encounter +Y383X2D Terrorism involving fires, conflagration and hot substances, civilian injured, subsequent encounter +Y383X2S Terrorism involving fires, conflagration and hot substances, civilian injured, sequela +Y383X3A Terrorism involving fires, conflagration and hot substances, terrorist injured, initial encounter +Y383X3D Terrorism involving fires, conflagration and hot substances, terrorist injured, subsequent encounter +Y383X3S Terrorism involving fires, conflagration and hot substances, terrorist injured, sequela +Y384X1A Terrorism involving firearms, public safety official injured, initial encounter +Y384X1D Terrorism involving firearms, public safety official injured, subsequent encounter +Y384X1S Terrorism involving firearms, public safety official injured, sequela +Y384X2A Terrorism involving firearms, civilian injured, initial encounter +Y384X2D Terrorism involving firearms, civilian injured, subsequent encounter +Y384X2S Terrorism involving firearms, civilian injured, sequela +Y384X3A Terrorism involving firearms, terrorist injured, initial encounter +Y384X3D Terrorism involving firearms, terrorist injured, subsequent encounter +Y384X3S Terrorism involving firearms, terrorist injured, sequela +Y385X1A Terrorism involving nuclear weapons, public safety official injured, initial encounter +Y385X1D Terrorism involving nuclear weapons, public safety official injured, subsequent encounter +Y385X1S Terrorism involving nuclear weapons, public safety official injured, sequela +Y385X2A Terrorism involving nuclear weapons, civilian injured, initial encounter +Y385X2D Terrorism involving nuclear weapons, civilian injured, subsequent encounter +Y385X2S Terrorism involving nuclear weapons, civilian injured, sequela +Y385X3A Terrorism involving nuclear weapons, terrorist injured, initial encounter +Y385X3D Terrorism involving nuclear weapons, terrorist injured, subsequent encounter +Y385X3S Terrorism involving nuclear weapons, terrorist injured, sequela +Y386X1A Terrorism involving biological weapons, public safety official injured, initial encounter +Y386X1D Terrorism involving biological weapons, public safety official injured, subsequent encounter +Y386X1S Terrorism involving biological weapons, public safety official injured, sequela +Y386X2A Terrorism involving biological weapons, civilian injured, initial encounter +Y386X2D Terrorism involving biological weapons, civilian injured, subsequent encounter +Y386X2S Terrorism involving biological weapons, civilian injured, sequela +Y386X3A Terrorism involving biological weapons, terrorist injured, initial encounter +Y386X3D Terrorism involving biological weapons, terrorist injured, subsequent encounter +Y386X3S Terrorism involving biological weapons, terrorist injured, sequela +Y387X1A Terrorism involving chemical weapons, public safety official injured, initial encounter +Y387X1D Terrorism involving chemical weapons, public safety official injured, subsequent encounter +Y387X1S Terrorism involving chemical weapons, public safety official injured, sequela +Y387X2A Terrorism involving chemical weapons, civilian injured, initial encounter +Y387X2D Terrorism involving chemical weapons, civilian injured, subsequent encounter +Y387X2S Terrorism involving chemical weapons, civilian injured, sequela +Y387X3A Terrorism involving chemical weapons, terrorist injured, initial encounter +Y387X3D Terrorism involving chemical weapons, terrorist injured, subsequent encounter +Y387X3S Terrorism involving chemical weapons, terrorist injured, sequela +Y3880XA Terrorism involving unspecified means, initial encounter +Y3880XD Terrorism involving unspecified means, subsequent encounter +Y3880XS Terrorism involving unspecified means, sequela +Y38811A Terrorism involving suicide bomber, public safety official injured, initial encounter +Y38811D Terrorism involving suicide bomber, public safety official injured, subsequent encounter +Y38811S Terrorism involving suicide bomber, public safety official injured, sequela +Y38812A Terrorism involving suicide bomber, civilian injured, initial encounter +Y38812D Terrorism involving suicide bomber, civilian injured, subsequent encounter +Y38812S Terrorism involving suicide bomber, civilian injured, sequela +Y38891A Terrorism involving other means, public safety official injured, initial encounter +Y38891D Terrorism involving other means, public safety official injured, subsequent encounter +Y38891S Terrorism involving other means, public safety official injured, sequela +Y38892A Terrorism involving other means, civilian injured, initial encounter +Y38892D Terrorism involving other means, civilian injured, subsequent encounter +Y38892S Terrorism involving other means, civilian injured, sequela +Y38893A Terrorism involving other means, terrorist injured, initial encounter +Y38893D Terrorism involving other means, terrorist injured, subsequent encounter +Y38893S Terrorism involving other means, terrorist injured, sequela +Y389X1A Terrorism, secondary effects, public safety official injured, initial encounter +Y389X1D Terrorism, secondary effects, public safety official injured, subsequent encounter +Y389X1S Terrorism, secondary effects, public safety official injured, sequela +Y389X2A Terrorism, secondary effects, civilian injured, initial encounter +Y389X2D Terrorism, secondary effects, civilian injured, subsequent encounter +Y389X2S Terrorism, secondary effects, civilian injured, sequela +Y620 Failure of sterile precautions during surgical operation +Y621 Failure of sterile precautions during infusion or transfusion +Y622 Failure of sterile precautions during kidney dialysis and other perfusion +Y623 Failure of sterile precautions during injection or immunization +Y624 Failure of sterile precautions during endoscopic examination +Y625 Failure of sterile precautions during heart catheterization +Y626 Failure of sterile precautions during aspiration, puncture and other catheterization +Y628 Failure of sterile precautions during other surgical and medical care +Y629 Failure of sterile precautions during unspecified surgical and medical care +Y630 Excessive amount of blood or other fluid given during transfusion or infusion +Y631 Incorrect dilution of fluid used during infusion +Y632 Overdose of radiation given during therapy +Y633 Inadvertent exposure of patient to radiation during medical care +Y634 Failure in dosage in electroshock or insulin-shock therapy +Y635 Inappropriate temperature in local application and packing +Y636 Underdosing and nonadministration of necessary drug, medicament or biological substance +Y638 Failure in dosage during other surgical and medical care +Y639 Failure in dosage during unspecified surgical and medical care +Y640 Contaminated medical or biological substance, transfused or infused +Y641 Contaminated medical or biological substance, injected or used for immunization +Y648 Contaminated medical or biological substance administered by other means +Y649 Contaminated medical or biological substance administered by unspecified means +Y650 Mismatched blood in transfusion +Y651 Wrong fluid used in infusion +Y652 Failure in suture or ligature during surgical operation +Y653 Endotracheal tube wrongly placed during anesthetic procedure +Y654 Failure to introduce or to remove other tube or instrument +Y6551 Performance of wrong procedure (operation) on correct patient +Y6552 Performance of procedure (operation) on patient not scheduled for surgery +Y6553 Performance of correct procedure (operation) on wrong side or body part +Y658 Other specified misadventures during surgical and medical care +Y66 Nonadministration of surgical and medical care +Y69 Unspecified misadventure during surgical and medical care +Y700 Diagnostic and monitoring anesthesiology devices associated with adverse incidents +Y701 Therapeutic (nonsurgical) and rehabilitative anesthesiology devices associated with adverse incidents +Y702 Prosthetic and other implants, materials and accessory anesthesiology devices associated with adverse incidents +Y703 Surgical instruments, materials and anesthesiology devices (including sutures) associated with adverse incidents +Y708 Miscellaneous anesthesiology devices associated with adverse incidents, not elsewhere classified +Y710 Diagnostic and monitoring cardiovascular devices associated with adverse incidents +Y711 Therapeutic (nonsurgical) and rehabilitative cardiovascular devices associated with adverse incidents +Y712 Prosthetic and other implants, materials and accessory cardiovascular devices associated with adverse incidents +Y713 Surgical instruments, materials and cardiovascular devices (including sutures) associated with adverse incidents +Y718 Miscellaneous cardiovascular devices associated with adverse incidents, not elsewhere classified +Y720 Diagnostic and monitoring otorhinolaryngological devices associated with adverse incidents +Y721 Therapeutic (nonsurgical) and rehabilitative otorhinolaryngological devices associated with adverse incidents +Y722 Prosthetic and other implants, materials and accessory otorhinolaryngological devices associated with adverse incidents +Y723 Surgical instruments, materials and otorhinolaryngological devices (including sutures) associated with adverse incidents +Y728 Miscellaneous otorhinolaryngological devices associated with adverse incidents, not elsewhere classified +Y730 Diagnostic and monitoring gastroenterology and urology devices associated with adverse incidents +Y731 Therapeutic (nonsurgical) and rehabilitative gastroenterology and urology devices associated with adverse incidents +Y732 Prosthetic and other implants, materials and accessory gastroenterology and urology devices associated with adverse incidents +Y733 Surgical instruments, materials and gastroenterology and urology devices (including sutures) associated with adverse incidents +Y738 Miscellaneous gastroenterology and urology devices associated with adverse incidents, not elsewhere classified +Y740 Diagnostic and monitoring general hospital and personal-use devices associated with adverse incidents +Y741 Therapeutic (nonsurgical) and rehabilitative general hospital and personal-use devices associated with adverse incidents +Y742 Prosthetic and other implants, materials and accessory general hospital and personal-use devices associated with adverse incidents +Y743 Surgical instruments, materials and general hospital and personal-use devices (including sutures) associated with adverse incidents +Y748 Miscellaneous general hospital and personal-use devices associated with adverse incidents, not elsewhere classified +Y750 Diagnostic and monitoring neurological devices associated with adverse incidents +Y751 Therapeutic (nonsurgical) and rehabilitative neurological devices associated with adverse incidents +Y752 Prosthetic and other implants, materials and neurological devices associated with adverse incidents +Y753 Surgical instruments, materials and neurological devices (including sutures) associated with adverse incidents +Y758 Miscellaneous neurological devices associated with adverse incidents, not elsewhere classified +Y760 Diagnostic and monitoring obstetric and gynecological devices associated with adverse incidents +Y761 Therapeutic (nonsurgical) and rehabilitative obstetric and gynecological devices associated with adverse incidents +Y762 Prosthetic and other implants, materials and accessory obstetric and gynecological devices associated with adverse incidents +Y763 Surgical instruments, materials and obstetric and gynecological devices (including sutures) associated with adverse incidents +Y768 Miscellaneous obstetric and gynecological devices associated with adverse incidents, not elsewhere classified +Y770 Diagnostic and monitoring ophthalmic devices associated with adverse incidents +Y771 Therapeutic (nonsurgical) and rehabilitative ophthalmic devices associated with adverse incidents +Y772 Prosthetic and other implants, materials and accessory ophthalmic devices associated with adverse incidents +Y773 Surgical instruments, materials and ophthalmic devices (including sutures) associated with adverse incidents +Y778 Miscellaneous ophthalmic devices associated with adverse incidents, not elsewhere classified +Y780 Diagnostic and monitoring radiological devices associated with adverse incidents +Y781 Therapeutic (nonsurgical) and rehabilitative radiological devices associated with adverse incidents +Y782 Prosthetic and other implants, materials and accessory radiological devices associated with adverse incidents +Y783 Surgical instruments, materials and radiological devices (including sutures) associated with adverse incidents +Y788 Miscellaneous radiological devices associated with adverse incidents, not elsewhere classified +Y790 Diagnostic and monitoring orthopedic devices associated with adverse incidents +Y791 Therapeutic (nonsurgical) and rehabilitative orthopedic devices associated with adverse incidents +Y792 Prosthetic and other implants, materials and accessory orthopedic devices associated with adverse incidents +Y793 Surgical instruments, materials and orthopedic devices (including sutures) associated with adverse incidents +Y798 Miscellaneous orthopedic devices associated with adverse incidents, not elsewhere classified +Y800 Diagnostic and monitoring physical medicine devices associated with adverse incidents +Y801 Therapeutic (nonsurgical) and rehabilitative physical medicine devices associated with adverse incidents +Y802 Prosthetic and other implants, materials and accessory physical medicine devices associated with adverse incidents +Y803 Surgical instruments, materials and physical medicine devices (including sutures) associated with adverse incidents +Y808 Miscellaneous physical medicine devices associated with adverse incidents, not elsewhere classified +Y810 Diagnostic and monitoring general- and plastic-surgery devices associated with adverse incidents +Y811 Therapeutic (nonsurgical) and rehabilitative general- and plastic-surgery devices associated with adverse incidents +Y812 Prosthetic and other implants, materials and accessory general- and plastic-surgery devices associated with adverse incidents +Y813 Surgical instruments, materials and general- and plastic-surgery devices (including sutures) associated with adverse incidents +Y818 Miscellaneous general- and plastic-surgery devices associated with adverse incidents, not elsewhere classified +Y828 Other medical devices associated with adverse incidents +Y829 Unspecified medical devices associated with adverse incidents +Y830 Surgical operation with transplant of whole organ as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y831 Surgical operation with implant of artificial internal device as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y832 Surgical operation with anastomosis, bypass or graft as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y833 Surgical operation with formation of external stoma as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y834 Other reconstructive surgery as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y835 Amputation of limb(s) as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y836 Removal of other organ (partial) (total) as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y838 Other surgical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y839 Surgical procedure, unspecified as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y840 Cardiac catheterization as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y841 Kidney dialysis as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y842 Radiological procedure and radiotherapy as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y843 Shock therapy as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y844 Aspiration of fluid as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y845 Insertion of gastric or duodenal sound as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y846 Urinary catheterization as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y847 Blood-sampling as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y848 Other medical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y849 Medical procedure, unspecified as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure +Y900 Blood alcohol level of less than 20 mg/100 ml +Y901 Blood alcohol level of 20-39 mg/100 ml +Y902 Blood alcohol level of 40-59 mg/100 ml +Y903 Blood alcohol level of 60-79 mg/100 ml +Y904 Blood alcohol level of 80-99 mg/100 ml +Y905 Blood alcohol level of 100-119 mg/100 ml +Y906 Blood alcohol level of 120-199 mg/100 ml +Y907 Blood alcohol level of 200-239 mg/100 ml +Y908 Blood alcohol level of 240 mg/100 ml or more +Y909 Presence of alcohol in blood, level not specified +Y9301 Activity, walking, marching and hiking +Y9302 Activity, running +Y9311 Activity, swimming +Y9312 Activity, springboard and platform diving +Y9313 Activity, water polo +Y9314 Activity, water aerobics and water exercise +Y9315 Activity, underwater diving and snorkeling +Y9316 Activity, rowing, canoeing, kayaking, rafting and tubing +Y9317 Activity, water skiing and wake boarding +Y9318 Activity, surfing, windsurfing and boogie boarding +Y9319 Activity, other involving water and watercraft +Y9321 Activity, ice skating +Y9322 Activity, ice hockey +Y9323 Activity, snow (alpine) (downhill) skiing, snowboarding, sledding, tobogganing and snow tubing +Y9324 Activity, cross country skiing +Y9329 Activity, other involving ice and snow +Y9331 Activity, mountain climbing, rock climbing and wall climbing +Y9332 Activity, rappelling +Y9333 Activity, BASE jumping +Y9334 Activity, bungee jumping +Y9335 Activity, hang gliding +Y9339 Activity, other involving climbing, rappelling and jumping off +Y9341 Activity, dancing +Y9342 Activity, yoga +Y9343 Activity, gymnastics +Y9344 Activity, trampolining +Y9345 Activity, cheerleading +Y9349 Activity, other involving dancing and other rhythmic movements +Y9351 Activity, roller skating (inline) and skateboarding +Y9352 Activity, horseback riding +Y9353 Activity, golf +Y9354 Activity, bowling +Y9355 Activity, bike riding +Y9356 Activity, jumping rope +Y9357 Activity, non-running track and field events +Y9359 Activity, other involving other sports and athletics played individually +Y9361 Activity, american tackle football +Y9362 Activity, american flag or touch football +Y9363 Activity, rugby +Y9364 Activity, baseball +Y9365 Activity, lacrosse and field hockey +Y9366 Activity, soccer +Y9367 Activity, basketball +Y9368 Activity, volleyball (beach) (court) +Y9369 Activity, other involving other sports and athletics played as a team or group +Y936A Activity, physical games generally associated with school recess, summer camp and children +Y9371 Activity, boxing +Y9372 Activity, wrestling +Y9373 Activity, racquet and hand sports +Y9374 Activity, frisbee +Y9375 Activity, martial arts +Y9379 Activity, other specified sports and athletics +Y9381 Activity, refereeing a sports activity +Y9382 Activity, spectator at an event +Y9383 Activity, rough housing and horseplay +Y9384 Activity, sleeping +Y9385 Activity, choking game +Y9389 Activity, other specified +Y939 Activity, unspecified +Y93A1 Activity, exercise machines primarily for cardiorespiratory conditioning +Y93A2 Activity, calisthenics +Y93A3 Activity, aerobic and step exercise +Y93A4 Activity, circuit training +Y93A5 Activity, obstacle course +Y93A6 Activity, grass drills +Y93A9 Activity, other involving cardiorespiratory exercise +Y93B1 Activity, exercise machines primarily for muscle strengthening +Y93B2 Activity, push-ups, pull-ups, sit-ups +Y93B3 Activity, free weights +Y93B4 Activity, pilates +Y93B9 Activity, other involving muscle strengthening exercises +Y93C1 Activity, computer keyboarding +Y93C2 Activity, hand held interactive electronic device +Y93C9 Activity, other involving computer technology and electronic devices +Y93D1 Activity, knitting and crocheting +Y93D2 Activity, sewing +Y93D3 Activity, furniture building and finishing +Y93D9 Activity, other involving arts and handcrafts +Y93E1 Activity, personal bathing and showering +Y93E2 Activity, laundry +Y93E3 Activity, vacuuming +Y93E4 Activity, ironing +Y93E5 Activity, floor mopping and cleaning +Y93E6 Activity, residential relocation +Y93E8 Activity, other personal hygiene +Y93E9 Activity, other interior property and clothing maintenance +Y93F1 Activity, caregiving, bathing +Y93F2 Activity, caregiving, lifting +Y93F9 Activity, other caregiving +Y93G1 Activity, food preparation and clean up +Y93G2 Activity, grilling and smoking food +Y93G3 Activity, cooking and baking +Y93G9 Activity, other involving cooking and grilling +Y93H1 Activity, digging, shoveling and raking +Y93H2 Activity, gardening and landscaping +Y93H3 Activity, building and construction +Y93H9 Activity, other involving exterior property and land maintenance, building and construction +Y93I1 Activity, roller coaster riding +Y93I9 Activity, other involving external motion +Y93J1 Activity, piano playing +Y93J2 Activity, drum and other percussion instrument playing +Y93J3 Activity, string instrument playing +Y93J4 Activity, winds and brass instrument playing +Y93K1 Activity, walking an animal +Y93K2 Activity, milking an animal +Y93K3 Activity, grooming and shearing an animal +Y93K9 Activity, other involving animal care +Y95 Nosocomial condition +Y990 Civilian activity done for income or pay +Y991 Military activity +Y992 Volunteer activity +Y998 Other external cause status +Y999 Unspecified external cause status + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Y + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/create_data_set/icd9_ccs_codes.R b/create_data_set/icd9_ccs_codes.R new file mode 100644 index 0000000..6635682 --- /dev/null +++ b/create_data_set/icd9_ccs_codes.R @@ -0,0 +1,105 @@ +# ICD9 codes from CCS +#Utility file: Used by the script *dxCodeGrouping.R* to produce the table `dxMap` +#Group codes related to alcohol abuse, drug abuse, pulmonary disorders, +#and renal failure based on the Clinical classification system (CCS) rules for grouping ICD9 diagnosis codes. +# https://www.hcup-us.ahrq.gov/toolssoftware/ccs/ccs.jsp#download + +library(tidyr) +library(stringr) + +# pneumonia codes +line1 = "00322 0203 0204 0205 0212 0221 0310 0391 0521 0551 0730 0830" +line2 = "1124 1140 1144 1145 11505 11515 11595 1304 1363 4800 4801 4802" +line3 = "4803 4808 4809 481 4820 4821 4822 4823 48230 48231 48232 48239" +line4 = "4824 48240 48241 48242 48249 4828 48281 48282 48283 48284 48289" +line5 = "4829 483 4830 4831 4838 4841 4843 4845 4846 4847 4848 485 486 5130 5171" + +# copd codes +line6 = "490 4910 4911 4912 49120 49121 49122 4918 4919 4920 4928 494 4940 4941 496" +pne_9 = paste0(line1, " ", line2, " ", line3, " ", line4, " ", line5, " ", line6) %>% + strsplit(split = " ") %>% unlist() + +#smoking codes +line1 = "V1582 98984 3051" + +smo_9 = line1 %>% strsplit(split = " ") %>% unlist() + +#substance abuse codes +line1 = "2920 29211 29212 2922 29281 29282 29283 29284 29285 29289 2929" +line2 = "30400 30401 30402 30403 30410 30411 30412 30413 30420 30421 30422" +line3 = "30423 30430 30431 30432 30433 30440 30441 30442 30443 30450 30451" +line4 = "30452 30453 30460 30461 30462 30463 30470 30471 30472 30473 30480" +line5 = "30481 30482 30483 30490 30491 30492 30493 30520 30521 30522 30523" +line6 = "30530 30531 30532 30533 30540 30541 30542 30543 30550 30551 30552 30553" +line7 = "30560 30561 30562 30563 30570 30571 30572 30573 30580 30581 30582 30583 30590" +line8 = "30591 30592 30593 64830 64831 64832 64833 64834 65550 65551 65553 76072 76073" +line9 = "76075 7795 96500 96501 96502 96509 V6542" +drg_9 = paste0(line1, + " ", + line2, + " ", + line3, + " ", + line4, + " ", + line5, + " ", + line6, + " ", + line7, + " ", + line8, + " ", + line9) %>% strsplit(split = " ") %>% unlist() + +#alcohol-related disorders +line1 = "2910 2911 2912 2913 2914 2915 2918 29181 29182 29189 2919 30300 30301 30302" +line2 = "30303 30390 30391 30392 30393 30500 30501 30502 30503 3575 4255 5353 53530 53531" +line3 = "5710 5711 5712 5713 76071 9800" +alc_9 = paste0(line1, " ", line2, " ", line3) %>% strsplit(split = " ") %>% unlist() + +#renal-failure codes +line1 = "5845 5846 5847 5848 5849 586" +kid_9 = line1 %>% strsplit(split = " ") %>% unlist() + + +############## +jnk = dbGetQuery( + con, + "SELECT pdgns_cd, count(*) AS nmbr + FROM preesrd5y_op_clm_inc + WHERE cdtype='I' group BY pdgns_cd" +) + +names(jnk) +jnk = jnk %>% mutate(flag = (pdgns_cd %in% smo_9)) + +alc_9 = alc_9 %>% + str_pad(., + width = 7, + side = "right", + pad = "0") + +drg_9 = drg_9 %>% + str_pad(., + width = 7, + side = "right", + pad = "0") + +kid_9 = kid_9 %>% + str_pad(., + width = 7, + side = "right", + pad = "0") + +smo_9 = smo_9 %>% + str_pad(., + width = 7, + side = "right", + pad = "0") + +pne_9 = pne_9 %>% + str_pad(., + width = 7, + side = "right", + pad = "0") diff --git a/create_data_set/icd9_dx_2014.txt b/create_data_set/icd9_dx_2014.txt new file mode 100644 index 0000000..402642a --- /dev/null +++ b/create_data_set/icd9_dx_2014.txt @@ -0,0 +1,14568 @@ +ICD9 Description +0010 Cholera due to vibrio cholerae +0011 Cholera due to vibrio cholerae el tor +0019 Cholera, unspecified +0020 Typhoid fever +0021 Paratyphoid fever A +0022 Paratyphoid fever B +0023 Paratyphoid fever C +0029 Paratyphoid fever, unspecified +0030 Salmonella gastroenteritis +0031 Salmonella septicemia +00320 Localized salmonella infection, unspecified +00321 Salmonella meningitis +00322 Salmonella pneumonia +00323 Salmonella arthritis +00324 Salmonella osteomyelitis +00329 Other localized salmonella infections +0038 Other specified salmonella infections +0039 Salmonella infection, unspecified +0040 Shigella dysenteriae +0041 Shigella flexneri +0042 Shigella boydii +0043 Shigella sonnei +0048 Other specified shigella infections +0049 Shigellosis, unspecified +0050 Staphylococcal food poisoning +0051 Botulism food poisoning +0052 Food poisoning due to Clostridium perfringens (C. welchii) +0053 Food poisoning due to other Clostridia +0054 Food poisoning due to Vibrio parahaemolyticus +00581 Food poisoning due to Vibrio vulnificus +00589 Other bacterial food poisoning +0059 Food poisoning, unspecified +0060 Acute amebic dysentery without mention of abscess +0061 Chronic intestinal amebiasis without mention of abscess +0062 Amebic nondysenteric colitis +0063 Amebic liver abscess +0064 Amebic lung abscess +0065 Amebic brain abscess +0066 Amebic skin ulceration +0068 Amebic infection of other sites +0069 Amebiasis, unspecified +0070 Balantidiasis +0071 Giardiasis +0072 Coccidiosis +0073 Intestinal trichomoniasis +0074 Cryptosporidiosis +0075 Cyclosporiasis +0078 Other specified protozoal intestinal diseases +0079 Unspecified protozoal intestinal disease +00800 Intestinal infection due to E. coli, unspecified +00801 Intestinal infection due to enteropathogenic E. coli +00802 Intestinal infection due to enterotoxigenic E. coli +00803 Intestinal infection due to enteroinvasive E. coli +00804 Intestinal infection due to enterohemorrhagic E. coli +00809 Intestinal infection due to other intestinal E. coli infections +0081 Intestinal infection due to arizona group of paracolon bacilli +0082 Intestinal infection due to aerobacter aerogenes +0083 Intestinal infection due to proteus (mirabilis) (morganii) +00841 Intestinal infection due to staphylococcus +00842 Intestinal infection due to pseudomonas +00843 Intestinal infection due to campylobacter +00844 Intestinal infection due to yersinia enterocolitica +00845 Intestinal infection due to Clostridium difficile +00846 Intestinal infection due to other anaerobes +00847 Intestinal infection due to other gram-negative bacteria +00849 Intestinal infection due to other organisms +0085 Bacterial enteritis, unspecified +00861 Enteritis due to rotavirus +00862 Enteritis due to adenovirus +00863 Enteritis due to norwalk virus +00864 Enteritis due to other small round viruses [SRV's] +00865 Enteritis due to calicivirus +00866 Enteritis due to astrovirus +00867 Enteritis due to enterovirus nec +00869 Enteritis due to other viral enteritis +0088 Intestinal infection due to other organism, not elsewhere classified +0090 Infectious colitis, enteritis, and gastroenteritis +0091 Colitis, enteritis, and gastroenteritis of presumed infectious origin +0092 Infectious diarrhea +0093 Diarrhea of presumed infectious origin +01000 Primary tuberculous infection, unspecified +01001 Primary tuberculous infection, bacteriological or histological examination not done +01002 Primary tuberculous infection, bacteriological or histological examination unknown (at present) +01003 Primary tuberculous infection, tubercle bacilli found (in sputum) by microscopy +01004 Primary tuberculous infection, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01005 Primary tuberculous infection, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01006 Primary tuberculous infection, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01010 Tuberculous pleurisy in primary progressive tuberculosis, unspecified +01011 Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination not done +01012 Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination unknown (at present) +01013 Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy +01014 Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01015 Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01016 Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01080 Other primary progressive tuberculosis, unspecified +01081 Other primary progressive tuberculosis, bacteriological or histological examination not done +01082 Other primary progressive tuberculosis, bacteriological or histological examination unknown (at present) +01083 Other primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy +01084 Other primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01085 Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01086 Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01090 Primary tuberculous infection, unspecified, unspecified +01091 Primary tuberculous infection, unspecified, bacteriological or histological examination not done +01092 Primary tuberculous infection, unspecified, bacteriological or histological examination unknown (at present) +01093 Primary tuberculous infection, unspecified, tubercle bacilli found (in sputum) by microscopy +01094 Primary tuberculous infection, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01095 Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01096 Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01100 Tuberculosis of lung, infiltrative, unspecified +01101 Tuberculosis of lung, infiltrative, bacteriological or histological examination not done +01102 Tuberculosis of lung, infiltrative, bacteriological or histological examination unknown (at present) +01103 Tuberculosis of lung, infiltrative, tubercle bacilli found (in sputum) by microscopy +01104 Tuberculosis of lung, infiltrative, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01105 Tuberculosis of lung, infiltrative, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01106 Tuberculosis of lung, infiltrative, tubercle bacilli not found bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01110 Tuberculosis of lung, nodular, unspecified +01111 Tuberculosis of lung, nodular, bacteriological or histological examination not done +01112 Tuberculosis of lung, nodular, bacteriological or histological examination unknown (at present) +01113 Tuberculosis of lung, nodular, tubercle bacilli found (in sputum) by microscopy +01114 Tuberculosis of lung, nodular, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01115 Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01116 Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01120 Tuberculosis of lung with cavitation, unspecified +01121 Tuberculosis of lung with cavitation, bacteriological or histological examination not done +01122 Tuberculosis of lung with cavitation, bacteriological or histological examination unknown (at present) +01123 Tuberculosis of lung with cavitation, tubercle bacilli found (in sputum) by microscopy +01124 Tuberculosis of lung with cavitation, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01125 Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01126 Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01130 Tuberculosis of bronchus, unspecified +01131 Tuberculosis of bronchus, bacteriological or histological examination not done +01132 Tuberculosis of bronchus, bacteriological or histological examination unknown (at present) +01133 Tuberculosis of bronchus, tubercle bacilli found (in sputum) by microscopy +01134 Tuberculosis of bronchus, tubercle bacilli not found (in sputum) by microscopy, but found in bacterial culture +01135 Tuberculosis of bronchus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01136 Tuberculosis of bronchus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01140 Tuberculous fibrosis of lung, unspecified +01141 Tuberculous fibrosis of lung, bacteriological or histological examination not done +01142 Tuberculous fibrosis of lung, bacteriological or histological examination unknown (at present) +01143 Tuberculous fibrosis of lung, tubercle bacilli found (in sputum) by microscopy +01144 Tuberculous fibrosis of lung, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01145 Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01146 Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01150 Tuberculous bronchiectasis, unspecified +01151 Tuberculous bronchiectasis, bacteriological or histological examination not done +01152 Tuberculous bronchiectasis, bacteriological or histological examination unknown (at present) +01153 Tuberculous bronchiectasis, tubercle bacilli found (in sputum) by microscopy +01154 Tuberculous bronchiectasis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01155 Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01156 Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01160 Tuberculous pneumonia [any form], unspecified +01161 Tuberculous pneumonia [any form], bacteriological or histological examination not done +01162 Tuberculous pneumonia [any form], bacteriological or histological examination unknown (at present) +01163 Tuberculous pneumonia [any form], tubercle bacilli found (in sputum) by microscopy +01164 Tuberculous pneumonia [any form], tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01165 Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01166 Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01170 Tuberculous pneumothorax, unspecified +01171 Tuberculous pneumothorax, bacteriological or histological examination not done +01172 Tuberculous pneumothorax, bacteriological or histological examination unknown (at present) +01173 Tuberculous pneumothorax, tubercle bacilli found (in sputum) by microscopy +01174 Tuberculous pneumothorax, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01175 Tuberculous pneumothorax, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01176 Tuberculous pneumothorax, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01180 Other specified pulmonary tuberculosis, unspecified +01181 Other specified pulmonary tuberculosis, bacteriological or histological examination not done +01182 Other specified pulmonary tuberculosis, bacteriological or histological examination unknown (at present) +01183 Other specified pulmonary tuberculosis, tubercle bacilli found (in sputum) by microscopy +01184 Other specified pulmonary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01185 Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01186 Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01190 Pulmonary tuberculosis, unspecified, unspecified +01191 Pulmonary tuberculosis, unspecified, bacteriological or histological examination not done +01192 Pulmonary tuberculosis, unspecified, bacteriological or histological examination unknown (at present) +01193 Pulmonary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy +01194 Pulmonary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01195 Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01196 Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01200 Tuberculous pleurisy, unspecified +01201 Tuberculous pleurisy, bacteriological or histological examination not done +01202 Tuberculous pleurisy, bacteriological or histological examination unknown (at present) +01203 Tuberculous pleurisy, tubercle bacilli found (in sputum) by microscopy +01204 Tuberculous pleurisy, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01205 Tuberculous pleurisy, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01206 Tuberculous pleurisy, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01210 Tuberculosis of intrathoracic lymph nodes, unspecified +01211 Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination not done +01212 Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination unknown (at present) +01213 Tuberculosis of intrathoracic lymph nodes, tubercle bacilli found (in sputum) by microscopy +01214 Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01215 Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01216 Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01220 Isolated tracheal or bronchial tuberculosis, unspecified +01221 Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination not done +01222 Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination unknown (at present) +01223 Isolated tracheal or bronchial tuberculosis, tubercle bacilli found (in sputum) by microscopy +01224 Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01225 Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01226 Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01230 Tuberculous laryngitis, unspecified +01231 Tuberculous laryngitis, bacteriological or histological examination not done +01232 Tuberculous laryngitis, bacteriological or histological examination unknown (at present) +01233 Tuberculous laryngitis, tubercle bacilli found (in sputum) by microscopy +01234 Tuberculous laryngitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01235 Tuberculous laryngitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01236 Tuberculous laryngitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01280 Other specified respiratory tuberculosis, unspecified +01281 Other specified respiratory tuberculosis, bacteriological or histological examination not done +01282 Other specified respiratory tuberculosis, bacteriological or histological examination unknown (at present) +01283 Other specified respiratory tuberculosis, tubercle bacilli found (in sputum) by microscopy +01284 Other specified respiratory tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01285 Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01286 Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01300 Tuberculous meningitis, unspecified +01301 Tuberculous meningitis, bacteriological or histological examination not done +01302 Tuberculous meningitis, bacteriological or histological examination unknown (at present) +01303 Tuberculous meningitis, tubercle bacilli found (in sputum) by microscopy +01304 Tuberculous meningitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01305 Tuberculous meningitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01306 Tuberculous meningitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01310 Tuberculoma of meninges, unspecified +01311 Tuberculoma of meninges, bacteriological or histological examination not done +01312 Tuberculoma of meninges, bacteriological or histological examination unknown (at present) +01313 Tuberculoma of meninges, tubercle bacilli found (in sputum) by microscopy +01314 Tuberculoma of meninges, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01315 Tuberculoma of meninges, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01316 Tuberculoma of meninges, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01320 Tuberculoma of brain, unspecified +01321 Tuberculoma of brain, bacteriological or histological examination not done +01322 Tuberculoma of brain, bacteriological or histological examination unknown (at present) +01323 Tuberculoma of brain, tubercle bacilli found (in sputum) by microscopy +01324 Tuberculoma of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01325 Tuberculoma of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01326 Tuberculoma of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01330 Tuberculous abscess of brain, unspecified +01331 Tuberculous abscess of brain, bacteriological or histological examination not done +01332 Tuberculous abscess of brain, bacteriological or histological examination unknown (at present) +01333 Tuberculous abscess of brain, tubercle bacilli found (in sputum) by microscopy +01334 Tuberculous abscess of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01335 Tuberculous abscess of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01336 Tuberculous abscess of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01340 Tuberculoma of spinal cord, unspecified +01341 Tuberculoma of spinal cord, bacteriological or histological examination not done +01342 Tuberculoma of spinal cord, bacteriological or histological examination unknown (at present) +01343 Tuberculoma of spinal cord, tubercle bacilli found (in sputum) by microscopy +01344 Tuberculoma of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01345 Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01346 Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01350 Tuberculous abscess of spinal cord, unspecified +01351 Tuberculous abscess of spinal cord, bacteriological or histological examination not done +01352 Tuberculous abscess of spinal cord, bacteriological or histological examination unknown (at present) +01353 Tuberculous abscess of spinal cord, tubercle bacilli found (in sputum) by microscopy +01354 Tuberculous abscess of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01355 Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01356 Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01360 Tuberculous encephalitis or myelitis, unspecified +01361 Tuberculous encephalitis or myelitis, bacteriological or histological examination not done +01362 Tuberculous encephalitis or myelitis, bacteriological or histological examination unknown (at present) +01363 Tuberculous encephalitis or myelitis, tubercle bacilli found (in sputum) by microscopy +01364 Tuberculous encephalitis or myelitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01365 Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01366 Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01380 Other specified tuberculosis of central nervous system, unspecified +01381 Other specified tuberculosis of central nervous system, bacteriological or histological examination not done +01382 Other specified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present) +01383 Other specified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy +01384 Other specified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01385 Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01386 Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01390 Unspecified tuberculosis of central nervous system, unspecified +01391 Unspecified tuberculosis of central nervous system, bacteriological or histological examination not done +01392 Unspecified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present) +01393 Unspecified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy +01394 Unspecified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01395 Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01396 Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01400 Tuberculous peritonitis, unspecified +01401 Tuberculous peritonitis, bacteriological or histological examination not done +01402 Tuberculous peritonitis, bacteriological or histological examination unknown (at present) +01403 Tuberculous peritonitis, tubercle bacilli found (in sputum) by microscopy +01404 Tuberculous peritonitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01405 Tuberculous peritonitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01406 Tuberculous peritonitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01480 Other tuberculosis of intestines, peritoneum, and mesenteric glands, unspecified +01481 Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination not done +01482 Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination unknown (at present) +01483 Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli found (in sputum) by microscopy +01484 Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01485 Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01486 Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01500 Tuberculosis of vertebral column, unspecified +01501 Tuberculosis of vertebral column, bacteriological or histological examination not done +01502 Tuberculosis of vertebral column, bacteriological or histological examination unknown (at present) +01503 Tuberculosis of vertebral column, tubercle bacilli found (in sputum) by microscopy +01504 Tuberculosis of vertebral column, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01505 Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01506 Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01510 Tuberculosis of hip, unspecified +01511 Tuberculosis of hip, bacteriological or histological examination not done +01512 Tuberculosis of hip, bacteriological or histological examination unknown (at present) +01513 Tuberculosis of hip, tubercle bacilli found (in sputum) by microscopy +01514 Tuberculosis of hip, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01515 Tuberculosis of hip, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01516 Tuberculosis of hip, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01520 Tuberculosis of knee, unspecified +01521 Tuberculosis of knee, bacteriological or histological examination not done +01522 Tuberculosis of knee, bacteriological or histological examination unknown (at present) +01523 Tuberculosis of knee, tubercle bacilli found (in sputum) by microscopy +01524 Tuberculosis of knee, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01525 Tuberculosis of knee, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01526 Tuberculosis of knee, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01550 Tuberculosis of limb bones, unspecified +01551 Tuberculosis of limb bones, bacteriological or histological examination not done +01552 Tuberculosis of limb bones, bacteriological or histological examination unknown (at present) +01553 Tuberculosis of limb bones, tubercle bacilli found (in sputum) by microscopy +01554 Tuberculosis of limb bones, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01555 Tuberculosis of limb bones, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01556 Tuberculosis of limb bones, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01560 Tuberculosis of mastoid, unspecified +01561 Tuberculosis of mastoid, bacteriological or histological examination not done +01562 Tuberculosis of mastoid, bacteriological or histological examination unknown (at present) +01563 Tuberculosis of mastoid, tubercle bacilli found (in sputum) by microscopy +01564 Tuberculosis of mastoid, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01565 Tuberculosis of mastoid, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01566 Tuberculosis of mastoid, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01570 Tuberculosis of other specified bone, unspecified +01571 Tuberculosis of other specified bone, bacteriological or histological examination not done +01572 Tuberculosis of other specified bone, bacteriological or histological examination unknown (at present) +01573 Tuberculosis of other specified bone, tubercle bacilli found (in sputum) by microscopy +01574 Tuberculosis of other specified bone, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01575 Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01576 Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01580 Tuberculosis of other specified joint, unspecified +01581 Tuberculosis of other specified joint, bacteriological or histological examination not done +01582 Tuberculosis of other specified joint, bacteriological or histological examination unknown (at present) +01583 Tuberculosis of other specified joint, tubercle bacilli found (in sputum) by microscopy +01584 Tuberculosis of other specified joint, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01585 Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01586 Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01590 Tuberculosis of unspecified bones and joints, unspecified +01591 Tuberculosis of unspecified bones and joints, bacteriological or histological examination not done +01592 Tuberculosis of unspecified bones and joints, bacteriological or histological examination unknown (at present) +01593 Tuberculosis of unspecified bones and joints, tubercle bacilli found (in sputum) by microscopy +01594 Tuberculosis of unspecified bones and joints, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01595 Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01596 Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01600 Tuberculosis of kidney, unspecified +01601 Tuberculosis of kidney, bacteriological or histological examination not done +01602 Tuberculosis of kidney, bacteriological or histological examination unknown (at present) +01603 Tuberculosis of kidney, tubercle bacilli found (in sputum) by microscopy +01604 Tuberculosis of kidney, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01605 Tuberculosis of kidney, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01606 Tuberculosis of kidney, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01610 Tuberculosis of bladder, unspecified +01611 Tuberculosis of bladder, bacteriological or histological examination not done +01612 Tuberculosis of bladder, bacteriological or histological examination unknown (at present) +01613 Tuberculosis of bladder, tubercle bacilli found (in sputum) by microscopy +01614 Tuberculosis of bladder, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01615 Tuberculosis of bladder, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01616 Tuberculosis of bladder, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01620 Tuberculosis of ureter, unspecified +01621 Tuberculosis of ureter, bacteriological or histological examination not done +01622 Tuberculosis of ureter, bacteriological or histological examination unknown (at present) +01623 Tuberculosis of ureter, tubercle bacilli found (in sputum) by microscopy +01624 Tuberculosis of ureter, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01625 Tuberculosis of ureter, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01626 Tuberculosis of ureter, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01630 Tuberculosis of other urinary organs, unspecified +01631 Tuberculosis of other urinary organs, bacteriological or histological examination not done +01632 Tuberculosis of other urinary organs, bacteriological or histological examination unknown (at present) +01633 Tuberculosis of other urinary organs, tubercle bacilli found (in sputum) by microscopy +01634 Tuberculosis of other urinary organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01635 Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01636 Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01640 Tuberculosis of epididymis, unspecified +01641 Tuberculosis of epididymis, bacteriological or histological examination not done +01642 Tuberculosis of epididymis, bacteriological or histological examination unknown (at present) +01643 Tuberculosis of epididymis, tubercle bacilli found (in sputum) by microscopy +01644 Tuberculosis of epididymis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01645 Tuberculosis of epididymis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01646 Tuberculosis of epididymis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01650 Tuberculosis of other male genital organs, unspecified +01651 Tuberculosis of other male genital organs, bacteriological or histological examination not done +01652 Tuberculosis of other male genital organs, bacteriological or histological examination unknown (at present) +01653 Tuberculosis of other male genital organs, tubercle bacilli found (in sputum) by microscopy +01654 Tuberculosis of other male genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01655 Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01656 Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01660 Tuberculous oophoritis and salpingitis, unspecified +01661 Tuberculous oophoritis and salpingitis, bacteriological or histological examination not done +01662 Tuberculous oophoritis and salpingitis, bacteriological or histological examination unknown (at present) +01663 Tuberculous oophoritis and salpingitis, tubercle bacilli found (in sputum) by microscopy +01664 Tuberculous oophoritis and salpingitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01665 Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01666 Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01670 Tuberculosis of other female genital organs, unspecified +01671 Tuberculosis of other female genital organs, bacteriological or histological examination not done +01672 Tuberculosis of other female genital organs, bacteriological or histological examination unknown (at present) +01673 Tuberculosis of other female genital organs, tubercle bacilli found (in sputum) by microscopy +01674 Tuberculosis of other female genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01675 Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01676 Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01690 Genitourinary tuberculosis, unspecified, unspecified +01691 Genitourinary tuberculosis, unspecified, bacteriological or histological examination not done +01692 Genitourinary tuberculosis, unspecified, bacteriological or histological examination unknown (at present) +01693 Genitourinary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy +01694 Genitourinary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01695 Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01696 Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01700 Tuberculosis of skin and subcutaneous cellular tissue, unspecified +01701 Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination not done +01702 Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination unknown (at present) +01703 Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli found (in sputum) by microscopy +01704 Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01705 Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01706 Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01710 Erythema nodosum with hypersensitivity reaction in tuberculosis, unspecified +01711 Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination not done +01712 Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination unknown (at present) +01713 Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli found (in sputum) by microscopy +01714 Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01715 Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01716 Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01720 Tuberculosis of peripheral lymph nodes, unspecified +01721 Tuberculosis of peripheral lymph nodes, bacteriological or histological examination not done +01722 Tuberculosis of peripheral lymph nodes, bacteriological or histological examination unknown (at present) +01723 Tuberculosis of peripheral lymph nodes, tubercle bacilli found (in sputum) by microscopy +01724 Tuberculosis of peripheral lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01725 Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01726 Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01730 Tuberculosis of eye, unspecified +01731 Tuberculosis of eye, bacteriological or histological examination not done +01732 Tuberculosis of eye, bacteriological or histological examination unknown (at present) +01733 Tuberculosis of eye, tubercle bacilli found (in sputum) by microscopy +01734 Tuberculosis of eye, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01735 Tuberculosis of eye, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01736 Tuberculosis of eye, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01740 Tuberculosis of ear, unspecified +01741 Tuberculosis of ear, bacteriological or histological examination not done +01742 Tuberculosis of ear, bacteriological or histological examination unknown (at present) +01743 Tuberculosis of ear, tubercle bacilli found (in sputum) by microscopy +01744 Tuberculosis of ear, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01745 Tuberculosis of ear, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01746 Tuberculosis of ear, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01750 Tuberculosis of thyroid gland, unspecified +01751 Tuberculosis of thyroid gland, bacteriological or histological examination not done +01752 Tuberculosis of thyroid gland, bacteriological or histological examination unknown (at present) +01753 Tuberculosis of thyroid gland, tubercle bacilli found (in sputum) by microscopy +01754 Tuberculosis of thyroid gland, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01755 Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01756 Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01760 Tuberculosis of adrenal glands, unspecified +01761 Tuberculosis of adrenal glands, bacteriological or histological examination not done +01762 Tuberculosis of adrenal glands, bacteriological or histological examination unknown (at present) +01763 Tuberculosis of adrenal glands, tubercle bacilli found (in sputum) by microscopy +01764 Tuberculosis of adrenal glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01765 Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01766 Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01770 Tuberculosis of spleen, unspecified +01771 Tuberculosis of spleen, bacteriological or histological examination not done +01772 Tuberculosis of spleen, bacteriological or histological examination unknown (at present) +01773 Tuberculosis of spleen, tubercle bacilli found (in sputum) by microscopy +01774 Tuberculosis of spleen, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01775 Tuberculosis of spleen, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01776 Tuberculosis of spleen, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01780 Tuberculosis of esophagus, unspecified +01781 Tuberculosis of esophagus, bacteriological or histological examination not done +01782 Tuberculosis of esophagus, bacteriological or histological examination unknown (at present) +01783 Tuberculosis of esophagus, tubercle bacilli found (in sputum) by microscopy +01784 Tuberculosis of esophagus, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01785 Tuberculosis of esophagus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01786 Tuberculosis of esophagus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01790 Tuberculosis of other specified organs, unspecified +01791 Tuberculosis of other specified organs, bacteriological or histological examination not done +01792 Tuberculosis of other specified organs, bacteriological or histological examination unknown (at present) +01793 Tuberculosis of other specified organs, tubercle bacilli found (in sputum) by microscopy +01794 Tuberculosis of other specified organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01795 Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01796 Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01800 Acute miliary tuberculosis, unspecified +01801 Acute miliary tuberculosis, bacteriological or histological examination not done +01802 Acute miliary tuberculosis, bacteriological or histological examination unknown (at present) +01803 Acute miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy +01804 Acute miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01805 Acute miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01806 Acute miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01880 Other specified miliary tuberculosis, unspecified +01881 Other specified miliary tuberculosis, bacteriological or histological examination not done +01882 Other specified miliary tuberculosis, bacteriological or histological examination unknown (at present) +01883 Other specified miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy +01884 Other specified miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01885 Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01886 Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +01890 Miliary tuberculosis, unspecified, unspecified +01891 Miliary tuberculosis, unspecified, bacteriological or histological examination not done +01892 Miliary tuberculosis, unspecified, bacteriological or histological examination unknown (at present) +01893 Miliary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy +01894 Miliary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture +01895 Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically +01896 Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals] +0200 Bubonic plague +0201 Cellulocutaneous plague +0202 Septicemic plague +0203 Primary pneumonic plague +0204 Secondary pneumonic plague +0205 Pneumonic plague, unspecified +0208 Other specified types of plague +0209 Plague, unspecified +0210 Ulceroglandular tularemia +0211 Enteric tularemia +0212 Pulmonary tularemia +0213 Oculoglandular tularemia +0218 Other specified tularemia +0219 Unspecified tularemia +0220 Cutaneous anthrax +0221 Pulmonary anthrax +0222 Gastrointestinal anthrax +0223 Anthrax septicemia +0228 Other specified manifestations of anthrax +0229 Anthrax, unspecified +0230 Brucella melitensis +0231 Brucella abortus +0232 Brucella suis +0233 Brucella canis +0238 Other brucellosis +0239 Brucellosis, unspecified +024 Glanders +025 Melioidosis +0260 Spirillary fever +0261 Streptobacillary fever +0269 Unspecified rat-bite fever +0270 Listeriosis +0271 Erysipelothrix infection +0272 Pasteurellosis +0278 Other specified zoonotic bacterial diseases +0279 Unspecified zoonotic bacterial disease +0300 Lepromatous leprosy [type L] +0301 Tuberculoid leprosy [type T] +0302 Indeterminate leprosy [group I] +0303 Borderline leprosy [group B] +0308 Other specified leprosy +0309 Leprosy, unspecified +0310 Pulmonary diseases due to other mycobacteria +0311 Cutaneous diseases due to other mycobacteria +0312 Disseminated due to other mycobacteria +0318 Other specified mycobacterial diseases +0319 Unspecified diseases due to mycobacteria +0320 Faucial diphtheria +0321 Nasopharyngeal diphtheria +0322 Anterior nasal diphtheria +0323 Laryngeal diphtheria +03281 Conjunctival diphtheria +03282 Diphtheritic myocarditis +03283 Diphtheritic peritonitis +03284 Diphtheritic cystitis +03285 Cutaneous diphtheria +03289 Other specified diphtheria +0329 Diphtheria, unspecified +0330 Whooping cough due to bordetella pertussis [B. pertussis] +0331 Whooping cough due to bordetella parapertussis [B. parapertussis] +0338 Whooping cough due to other specified organism +0339 Whooping cough, unspecified organism +0340 Streptococcal sore throat +0341 Scarlet fever +035 Erysipelas +0360 Meningococcal meningitis +0361 Meningococcal encephalitis +0362 Meningococcemia +0363 Waterhouse-Friderichsen syndrome, meningococcal +03640 Meningococcal carditis, unspecified +03641 Meningococcal pericarditis +03642 Meningococcal endocarditis +03643 Meningococcal myocarditis +03681 Meningococcal optic neuritis +03682 Meningococcal arthropathy +03689 Other specified meningococcal infections +0369 Meningococcal infection, unspecified +037 Tetanus +0380 Streptococcal septicemia +03810 Staphylococcal septicemia, unspecified +03811 Methicillin susceptible Staphylococcus aureus septicemia +03812 Methicillin resistant Staphylococcus aureus septicemia +03819 Other staphylococcal septicemia +0382 Pneumococcal septicemia [Streptococcus pneumoniae septicemia] +0383 Septicemia due to anaerobes +03840 Septicemia due to gram-negative organism, unspecified +03841 Septicemia due to hemophilus influenzae [H. influenzae] +03842 Septicemia due to escherichia coli [E. coli] +03843 Septicemia due to pseudomonas +03844 Septicemia due to serratia +03849 Other septicemia due to gram-negative organisms +0388 Other specified septicemias +0389 Unspecified septicemia +0390 Cutaneous actinomycotic infection +0391 Pulmonary actinomycotic infection +0392 Abdominal actinomycotic infection +0393 Cervicofacial actinomycotic infection +0394 Madura foot +0398 Actinomycotic infection of other specified sites +0399 Actinomycotic infection of unspecified site +0400 Gas gangrene +0401 Rhinoscleroma +0402 Whipple's disease +0403 Necrobacillosis +04041 Infant botulism +04042 Wound botulism +04081 Tropical pyomyositis +04082 Toxic shock syndrome +04089 Other specified bacterial diseases +04100 Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, unspecified +04101 Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group A +04102 Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group B +04103 Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group C +04104 Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group D [Enterococcus] +04105 Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group G +04109 Streptococcus infection in conditions classified elsewhere and of unspecified site, other streptococcus +04110 Staphylococcus infection in conditions classified elsewhere and of unspecified site, staphylococcus, unspecified +04111 Methicillin susceptible Staphylococcus aureus in conditions classified elsewhere and of unspecified site +04112 Methicillin resistant Staphylococcus aureus in conditions classified elsewhere and of unspecified site +04119 Staphylococcus infection in conditions classified elsewhere and of unspecified site, other staphylococcus +0412 Pneumococcus infection in conditions classified elsewhere and of unspecified site +0413 Friedländer's bacillus infection in conditions classified elsewhere and of unspecified site +04141 Shiga toxin-producing Escherichia coli [E. coli] (STEC) O157 +04142 Other specified Shiga toxin-producing Escherichia coli [E. coli] (STEC) +04143 Shiga toxin-producing Escherichia coli [E. coli] (STEC), unspecified +04149 Other and unspecified Escherichia coli [E. coli] +0415 Hemophilus influenzae [H. influenzae] infection in conditions classified elsewhere and of unspecified site +0416 Proteus (mirabilis) (morganii) infection in conditions classified elsewhere and of unspecified site +0417 Pseudomonas infection in conditions classified elsewhere and of unspecified site +04181 Other specified bacterial infections in conditions classified elsewhere and of unspecified site, mycoplasma +04182 Bacteroides fragilis +04183 Other specified bacterial infections in conditions classified elsewhere and of unspecified site, Clostridium perfringens +04184 Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other anaerobes +04185 Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other gram-negative organisms +04186 Helicobacter pylori [H. pylori] +04189 Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other specified bacteria +0419 Bacterial infection, unspecified, in conditions classified elsewhere and of unspecified site +042 Human immunodeficiency virus [HIV] disease +04500 Acute paralytic poliomyelitis specified as bulbar, poliovirus, unspecified type +04501 Acute paralytic poliomyelitis specified as bulbar, poliovirus type I +04502 Acute paralytic poliomyelitis specified as bulbar, poliovirus type II +04503 Acute paralytic poliomyelitis specified as bulbar, poliovirus type III +04510 Acute poliomyelitis with other paralysis, poliovirus, unspecified type +04511 Acute poliomyelitis with other paralysis, poliovirus type I +04512 Acute poliomyelitis with other paralysis, poliovirus type II +04513 Acute poliomyelitis with other paralysis, poliovirus type III +04520 Acute nonparalytic poliomyelitis, poliovirus, unspecified type +04521 Acute nonparalytic poliomyelitis, poliovirus type I +04522 Acute nonparalytic poliomyelitis, poliovirus type II +04523 Acute nonparalytic poliomyelitis, poliovirus type III +04590 Acute poliomyelitis, unspecified, poliovirus, unspecified type +04591 Acute poliomyelitis, unspecified, poliovirus type I +04592 Acute poliomyelitis, unspecified, poliovirus type II +04593 Acute poliomyelitis, unspecified, poliovirus type III +0460 Kuru +04611 Variant Creutzfeldt-Jakob disease +04619 Other and unspecified Creutzfeldt-Jakob disease +0462 Subacute sclerosing panencephalitis +0463 Progressive multifocal leukoencephalopathy +04671 Gerstmann-Sträussler-Scheinker syndrome +04672 Fatal familial insomnia +04679 Other and unspecified prion disease of central nervous system +0468 Other specified slow virus infection of central nervous system +0469 Unspecified slow virus infection of central nervous system +0470 Meningitis due to coxsackie virus +0471 Meningitis due to echo virus +0478 Other specified viral meningitis +0479 Unspecified viral meningitis +048 Other enterovirus diseases of central nervous system +0490 Lymphocytic choriomeningitis +0491 Meningitis due to adenovirus +0498 Other specified non-arthropod-borne viral diseases of central nervous system +0499 Unspecified non-arthropod-borne viral diseases of central nervous system +0500 Variola major +0501 Alastrim +0502 Modified smallpox +0509 Smallpox, unspecified +05101 Cowpox +05102 Vaccinia not from vaccination +0511 Pseudocowpox +0512 Contagious pustular dermatitis +0519 Paravaccinia, unspecified +0520 Postvaricella encephalitis +0521 Varicella (hemorrhagic) pneumonitis +0522 Postvaricella myelitis +0527 Chickenpox with other specified complications +0528 Chickenpox with unspecified complication +0529 Varicella without mention of complication +0530 Herpes zoster with meningitis +05310 Herpes zoster with unspecified nervous system complication +05311 Geniculate herpes zoster +05312 Postherpetic trigeminal neuralgia +05313 Postherpetic polyneuropathy +05314 Herpes zoster myelitis +05319 Herpes zoster with other nervous system complications +05320 Herpes zoster dermatitis of eyelid +05321 Herpes zoster keratoconjunctivitis +05322 Herpes zoster iridocyclitis +05329 Herpes zoster with other ophthalmic complications +05371 Otitis externa due to herpes zoster +05379 Herpes zoster with other specified complications +0538 Herpes zoster with unspecified complication +0539 Herpes zoster without mention of complication +0540 Eczema herpeticum +05410 Genital herpes, unspecified +05411 Herpetic vulvovaginitis +05412 Herpetic ulceration of vulva +05413 Herpetic infection of penis +05419 Other genital herpes +0542 Herpetic gingivostomatitis +0543 Herpetic meningoencephalitis +05440 Herpes simplex with unspecified ophthalmic complication +05441 Herpes simplex dermatitis of eyelid +05442 Dendritic keratitis +05443 Herpes simplex disciform keratitis +05444 Herpes simplex iridocyclitis +05449 Herpes simplex with other ophthalmic complications +0545 Herpetic septicemia +0546 Herpetic whitlow +05471 Visceral herpes simplex +05472 Herpes simplex meningitis +05473 Herpes simplex otitis externa +05474 Herpes simplex myelitis +05479 Herpes simplex with other specified complications +0548 Herpes simplex with unspecified complication +0549 Herpes simplex without mention of complication +0550 Postmeasles encephalitis +0551 Postmeasles pneumonia +0552 Postmeasles otitis media +05571 Measles keratoconjunctivitis +05579 Measles with other specified complications +0558 Measles with unspecified complication +0559 Measles without mention of complication +05600 Rubella with unspecified neurological complication +05601 Encephalomyelitis due to rubella +05609 Rubella with other neurological complications +05671 Arthritis due to rubella +05679 Rubella with other specified complications +0568 Rubella with unspecified complications +0569 Rubella without mention of complication +0570 Erythema infectiosum (fifth disease) +0578 Other specified viral exanthemata +0579 Viral exanthem, unspecified +05810 Roseola infantum, unspecified +05811 Roseola infantum due to human herpesvirus 6 +05812 Roseola infantum due to human herpesvirus 7 +05821 Human herpesvirus 6 encephalitis +05829 Other human herpesvirus encephalitis +05881 Human herpesvirus 6 infection +05882 Human herpesvirus 7 infection +05889 Other human herpesvirus infection +05900 Orthopoxvirus infection, unspecified +05901 Monkeypox +05909 Other orthopoxvirus infections +05910 Parapoxvirus infection, unspecified +05911 Bovine stomatitis +05912 Sealpox +05919 Other parapoxvirus infections +05920 Yatapoxvirus infection, unspecified +05921 Tanapox +05922 Yaba monkey tumor virus +0598 Other poxvirus infections +0599 Poxvirus infections, unspecified +0600 Sylvatic yellow fever +0601 Urban yellow fever +0609 Yellow fever, unspecified +061 Dengue +0620 Japanese encephalitis +0621 Western equine encephalitis +0622 Eastern equine encephalitis +0623 St. Louis encephalitis +0624 Australian encephalitis +0625 California virus encephalitis +0628 Other specified mosquito-borne viral encephalitis +0629 Mosquito-borne viral encephalitis, unspecified +0630 Russian spring-summer [taiga] encephalitis +0631 Louping ill +0632 Central european encephalitis +0638 Other specified tick-borne viral encephalitis +0639 Tick-borne viral encephalitis, unspecified +064 Viral encephalitis transmitted by other and unspecified arthropods +0650 Crimean hemorrhagic fever [CHF Congo virus] +0651 Omsk hemorrhagic fever +0652 Kyasanur forest disease +0653 Other tick-borne hemorrhagic fever +0654 Mosquito-borne hemorrhagic fever +0658 Other specified arthropod-borne hemorrhagic fever +0659 Arthropod-borne hemorrhagic fever, unspecified +0660 Phlebotomus fever +0661 Tick-borne fever +0662 Venezuelan equine fever +0663 Other mosquito-borne fever +06640 West Nile Fever, unspecified +06641 West Nile Fever with encephalitis +06642 West Nile Fever with other neurologic manifestation +06649 West Nile Fever with other complications +0668 Other specified arthropod-borne viral diseases +0669 Arthropod-borne viral disease, unspecified +0700 Viral hepatitis A with hepatic coma +0701 Viral hepatitis A without mention of hepatic coma +07020 Viral hepatitis B with hepatic coma, acute or unspecified, without mention of hepatitis delta +07021 Viral hepatitis B with hepatic coma, acute or unspecified, with hepatitis delta +07022 Chronic viral hepatitis B with hepatic coma without hepatitis delta +07023 Chronic viral hepatitis B with hepatic coma with hepatitis delta +07030 Viral hepatitis B without mention of hepatic coma, acute or unspecified, without mention of hepatitis delta +07031 Viral hepatitis B without mention of hepatic coma, acute or unspecified, with hepatitis delta +07032 Chronic viral hepatitis B without mention of hepatic coma without mention of hepatitis delta +07033 Chronic viral hepatitis B without mention of hepatic coma with hepatitis delta +07041 Acute hepatitis C with hepatic coma +07042 Hepatitis delta without mention of active hepatitis B disease with hepatic coma +07043 Hepatitis E with hepatic coma +07044 Chronic hepatitis C with hepatic coma +07049 Other specified viral hepatitis with hepatic coma +07051 Acute hepatitis C without mention of hepatic coma +07052 Hepatitis delta without mention of active hepatitis B disease or hepatic coma +07053 Hepatitis E without mention of hepatic coma +07054 Chronic hepatitis C without mention of hepatic coma +07059 Other specified viral hepatitis without mention of hepatic coma +0706 Unspecified viral hepatitis with hepatic coma +07070 Unspecified viral hepatitis C without hepatic coma +07071 Unspecified viral hepatitis C with hepatic coma +0709 Unspecified viral hepatitis without mention of hepatic coma +071 Rabies +0720 Mumps orchitis +0721 Mumps meningitis +0722 Mumps encephalitis +0723 Mumps pancreatitis +07271 Mumps hepatitis +07272 Mumps polyneuropathy +07279 Other mumps with other specified complications +0728 Mumps with unspecified complication +0729 Mumps without mention of complication +0730 Ornithosis with pneumonia +0737 Ornithosis with other specified complications +0738 Ornithosis with unspecified complication +0739 Ornithosis, unspecified +0740 Herpangina +0741 Epidemic pleurodynia +07420 Coxsackie carditis, unspecified +07421 Coxsackie pericarditis +07422 Coxsackie endocarditis +07423 Coxsackie myocarditis +0743 Hand, foot, and mouth disease +0748 Other specified diseases due to Coxsackie virus +075 Infectious mononucleosis +0760 Trachoma, initial stage +0761 Trachoma, active stage +0769 Trachoma, unspecified +0770 Inclusion conjunctivitis +0771 Epidemic keratoconjunctivitis +0772 Pharyngoconjunctival fever +0773 Other adenoviral conjunctivitis +0774 Epidemic hemorrhagic conjunctivitis +0778 Other viral conjunctivitis +07798 Unspecified diseases of conjunctiva due to chlamydiae +07799 Unspecified diseases of conjunctiva due to viruses +0780 Molluscum contagiosum +07810 Viral warts, unspecified +07811 Condyloma acuminatum +07812 Plantar wart +07819 Other specified viral warts +0782 Sweating fever +0783 Cat-scratch disease +0784 Foot and mouth disease +0785 Cytomegaloviral disease +0786 Hemorrhagic nephrosonephritis +0787 Arenaviral hemorrhagic fever +07881 Epidemic vertigo +07882 Epidemic vomiting syndrome +07888 Other specified diseases due to chlamydiae +07889 Other specified diseases due to viruses +0790 Adenovirus infection in conditions classified elsewhere and of unspecified site +0791 Echo virus infection in conditions classified elsewhere and of unspecified site +0792 Coxsackie virus infection in conditions classified elsewhere and of unspecified site +0793 Rhinovirus infection in conditions classified elsewhere and of unspecified site +0794 Human papillomavirus in conditions classified elsewhere and of unspecified site +07950 Retrovirus, unspecified +07951 Human T-cell lymphotrophic virus, type I [HTLV-I] +07952 Human T-cell lymphotrophic virus, type II [HTLV-II] +07953 Human immunodeficiency virus, type 2 [HIV-2] +07959 Other specified retrovirus +0796 Respiratory syncytial virus (RSV) +07981 Hantavirus infection +07982 SARS-associated coronavirus +07983 Parvovirus B19 +07988 Other specified chlamydial infection +07989 Other specified viral infection +07998 Unspecified chlamydial infection +07999 Unspecified viral infection +080 Louse-borne (epidemic) typhus +0810 Murine (endemic) typhus +0811 Brill's disease +0812 Scrub typhus +0819 Typhus, unspecified +0820 Spotted fevers +0821 Boutonneuse fever +0822 North Asian tick fever +0823 Queensland tick typhus +08240 Ehrlichiosis, unspecified +08241 Ehrlichiosis chafeensis [E. chafeensis] +08249 Other ehrlichiosis +0828 Other specified tick-borne rickettsioses +0829 Tick-borne rickettsiosis, unspecified +0830 Q fever +0831 Trench fever +0832 Rickettsialpox +0838 Other specified rickettsioses +0839 Rickettsiosis, unspecified +0840 Falciparum malaria [malignant tertian] +0841 Vivax malaria [benign tertian] +0842 Quartan malaria +0843 Ovale malaria +0844 Other malaria +0845 Mixed malaria +0846 Malaria, unspecified +0847 Induced malaria +0848 Blackwater fever +0849 Other pernicious complications of malaria +0850 Visceral [kala-azar] leishmaniasis +0851 Cutaneous leishmaniasis, urban +0852 Cutaneous leishmaniasis, Asian desert +0853 Cutaneous leishmaniasis, Ethiopian +0854 Cutaneous leishmaniasis, American +0855 Mucocutaneous leishmaniasis, (American) +0859 Leishmaniasis, unspecified +0860 Chagas' disease with heart involvement +0861 Chagas' disease with other organ involvement +0862 Chagas' disease without mention of organ involvement +0863 Gambian trypanosomiasis +0864 Rhodesian trypanosomiasis +0865 African trypanosomiasis, unspecified +0869 Trypanosomiasis, unspecified +0870 Relapsing fever, louse-borne +0871 Relapsing fever, tick-borne +0879 Relapsing fever, unspecified +0880 Bartonellosis +08881 Lyme Disease +08882 Babesiosis +08889 Other specified arthropod-borne diseases, other +0889 Arthropod-borne disease, unspecified +0900 Early congenital syphilis, symptomatic +0901 Early congenital syphilis, latent +0902 Early congenital syphilis, unspecified +0903 Syphilitic interstitial keratitis +09040 Juvenile neurosyphilis, unspecified +09041 Congenital syphilitic encephalitis +09042 Congenital syphilitic meningitis +09049 Other juvenile neurosyphilis +0905 Other late congenital syphilis, symptomatic +0906 Late congenital syphilis, latent +0907 Late congenital syphilis, unspecified +0909 Congenital syphilis, unspecified +0910 Genital syphilis (primary) +0911 Primary anal syphilis +0912 Other primary syphilis +0913 Secondary syphilis of skin or mucous membranes +0914 Adenopathy due to secondary syphilis +09150 Syphilitic uveitis, unspecified +09151 Syphilitic chorioretinitis (secondary) +09152 Syphilitic iridocyclitis (secondary) +09161 Secondary syphilitic periostitis +09162 Secondary syphilitic hepatitis +09169 Secondary syphilis of other viscera +0917 Secondary syphilis, relapse +09181 Acute syphilitic meningitis (secondary) +09182 Syphilitic alopecia +09189 Other forms of secondary syphilis +0919 Unspecified secondary syphilis +0920 Early syphilis, latent, serological relapse after treatment +0929 Early syphilis, latent, unspecified +0930 Aneurysm of aorta, specified as syphilitic +0931 Syphilitic aortitis +09320 Syphilitic endocarditis of valve, unspecified +09321 Syphilitic endocarditis of mitral valve +09322 Syphilitic endocarditis of aortic valve +09323 Syphilitic endocarditis of tricuspid valve +09324 Syphilitic endocarditis of pulmonary valve +09381 Syphilitic pericarditis +09382 Syphilitic myocarditis +09389 Other specified cardiovascular syphilis +0939 Cardiovascular syphilis, unspecified +0940 Tabes dorsalis +0941 General paresis +0942 Syphilitic meningitis +0943 Asymptomatic neurosyphilis +09481 Syphilitic encephalitis +09482 Syphilitic parkinsonism +09483 Syphilitic disseminated retinochoroiditis +09484 Syphilitic optic atrophy +09485 Syphilitic retrobulbar neuritis +09486 Syphilitic acoustic neuritis +09487 Syphilitic ruptured cerebral aneurysm +09489 Other specified neurosyphilis +0949 Neurosyphilis, unspecified +0950 Syphilitic episcleritis +0951 Syphilis of lung +0952 Syphilitic peritonitis +0953 Syphilis of liver +0954 Syphilis of kidney +0955 Syphilis of bone +0956 Syphilis of muscle +0957 Syphilis of synovium, tendon, and bursa +0958 Other specified forms of late symptomatic syphilis +0959 Late symptomatic syphilis, unspecified +096 Late syphilis, latent +0970 Late syphilis, unspecified +0971 Latent syphilis, unspecified +0979 Syphilis, unspecified +0980 Gonococcal infection (acute) of lower genitourinary tract +09810 Gonococcal infection (acute) of upper genitourinary tract, site unspecified +09811 Gonococcal cystitis (acute) +09812 Gonococcal prostatitis (acute) +09813 Gonococcal epididymo-orchitis (acute) +09814 Gonococcal seminal vesiculitis (acute) +09815 Gonococcal cervicitis (acute) +09816 Gonococcal endometritis (acute) +09817 Gonococcal salpingitis, specified as acute +09819 Other gonococcal infection (acute) of upper genitourinary tract +0982 Gonococcal infection, chronic, of lower genitourinary tract +09830 Chronic gonococcal infection of upper genitourinary tract, site unspecified +09831 Gonococcal cystitis, chronic +09832 Gonococcal prostatitis, chronic +09833 Gonococcal epididymo-orchitis, chronic +09834 Gonococcal seminal vesiculitis, chronic +09835 Gonococcal cervicitis, chronic +09836 Gonococcal endometritis, chronic +09837 Gonococcal salpingitis (chronic) +09839 Other chronic gonococcal infection of upper genitourinary tract +09840 Gonococcal conjunctivitis (neonatorum) +09841 Gonococcal iridocyclitis +09842 Gonococcal endophthalmia +09843 Gonococcal keratitis +09849 Other gonococcal infection of eye +09850 Gonococcal arthritis +09851 Gonococcal synovitis and tenosynovitis +09852 Gonococcal bursitis +09853 Gonococcal spondylitis +09859 Other gonococcal infection of joint +0986 Gonococcal infection of pharynx +0987 Gonococcal infection of anus and rectum +09881 Gonococcal keratosis (blennorrhagica) +09882 Gonococcal meningitis +09883 Gonococcal pericarditis +09884 Gonococcal endocarditis +09885 Other gonococcal heart disease +09886 Gonococcal peritonitis +09889 Gonococcal infection of other specified sites +0990 Chancroid +0991 Lymphogranuloma venereum +0992 Granuloma inguinale +0993 Reiter's disease +09940 Other nongonococcal urethritis, unspecified +09941 Other nongonococcal urethritis, chlamydia trachomatis +09949 Other nongonococcal urethritis, other specified organism +09950 Other venereal diseases due to chlamydia trachomatis, unspecified site +09951 Other venereal diseases due to chlamydia trachomatis, pharynx +09952 Other venereal diseases due to chlamydia trachomatis, anus and rectum +09953 Other venereal diseases due to chlamydia trachomatis, lower genitourinary sites +09954 Other venereal diseases due to chlamydia trachomatis, other genitourinary sites +09955 Other venereal diseases due to chlamydia trachomatis, unspecified genitourinary site +09956 Other venereal diseases due to chlamydia trachomatis, peritoneum +09959 Other venereal diseases due to chlamydia trachomatis, other specified site +0998 Other specified venereal diseases +0999 Venereal disease, unspecified +1000 Leptospirosis icterohemorrhagica +10081 Leptospiral meningitis (aseptic) +10089 Other specified leptospiral infections +1009 Leptospirosis, unspecified +101 Vincent's angina +1020 Initial lesions of yaws +1021 Multiple papillomata due to yaws and wet crab yaws +1022 Other early skin lesions of yaws +1023 Hyperkeratosis due to yaws +1024 Gummata and ulcers due to yaws +1025 Gangosa +1026 Bone and joint lesions due to yaws +1027 Other manifestations of yaws +1028 Latent yaws +1029 Yaws, unspecified +1030 Primary lesions of pinta +1031 Intermediate lesions of pinta +1032 Late lesions of pinta +1033 Mixed lesions of pinta +1039 Pinta, unspecified +1040 Nonvenereal endemic syphilis +1048 Other specified spirochetal infections +1049 Spirochetal infection, unspecified +1100 Dermatophytosis of scalp and beard +1101 Dermatophytosis of nail +1102 Dermatophytosis of hand +1103 Dermatophytosis of groin and perianal area +1104 Dermatophytosis of foot +1105 Dermatophytosis of the body +1106 Deep seated dermatophytosis +1108 Dermatophytosis of other specified sites +1109 Dermatophytosis of unspecified site +1110 Pityriasis versicolor +1111 Tinea nigra +1112 Tinea blanca +1113 Black piedra +1118 Other specified dermatomycoses +1119 Dermatomycosis, unspecified +1120 Candidiasis of mouth +1121 Candidiasis of vulva and vagina +1122 Candidiasis of other urogenital sites +1123 Candidiasis of skin and nails +1124 Candidiasis of lung +1125 Disseminated candidiasis +11281 Candidal endocarditis +11282 Candidal otitis externa +11283 Candidal meningitis +11284 Candidal esophagitis +11285 Candidal enteritis +11289 Other candidiasis of other specified sites +1129 Candidiasis of unspecified site +1140 Primary coccidioidomycosis (pulmonary) +1141 Primary extrapulmonary coccidioidomycosis +1142 Coccidioidal meningitis +1143 Other forms of progressive coccidioidomycosis +1144 Chronic pulmonary coccidioidomycosis +1145 Pulmonary coccidioidomycosis, unspecified +1149 Coccidioidomycosis, unspecified +11500 Infection by Histoplasma capsulatum, without mention of manifestation +11501 Infection by Histoplasma capsulatum, meningitis +11502 Infection by Histoplasma capsulatum, retinitis +11503 Infection by Histoplasma capsulatum, pericarditis +11504 Infection by Histoplasma capsulatum, endocarditis +11505 Infection by Histoplasma capsulatum, pneumonia +11509 Infection by Histoplasma capsulatum, other +11510 Infection by Histoplasma duboisii, without mention of manifestation +11511 Infection by Histoplasma duboisii, meningitis +11512 Infection by Histoplasma duboisii, retinitis +11513 Infection by Histoplasma duboisii, pericarditis +11514 Infection by Histoplasma duboisii, endocarditis +11515 Infection by Histoplasma duboisii, pneumonia +11519 Infection by Histoplasma duboisii, other +11590 Histoplasmosis, unspecified, without mention of manifestation +11591 Histoplasmosis, unspecified, meningitis +11592 Histoplasmosis, unspecified, retinitis +11593 Histoplasmosis, unspecified, pericarditis +11594 Histoplasmosis, unspecified, endocarditis +11595 Histoplasmosis, unspecified, pneumonia +11599 Histoplasmosis, unspecified, other +1160 Blastomycosis +1161 Paracoccidioidomycosis +1162 Lobomycosis +1170 Rhinosporidiosis +1171 Sporotrichosis +1172 Chromoblastomycosis +1173 Aspergillosis +1174 Mycotic mycetomas +1175 Cryptococcosis +1176 Allescheriosis [Petriellidosis] +1177 Zygomycosis [Phycomycosis or Mucormycosis] +1178 Infection by dematiacious fungi [Phaehyphomycosis] +1179 Other and unspecified mycoses +118 Opportunistic mycoses +1200 Schistosomiasis due to schistosoma haematobium +1201 Schistosomiasis due to schistosoma mansoni +1202 Schistosomiasis due to schistosoma japonicum +1203 Cutaneous schistosomiasis +1208 Other specified schistosomiasis +1209 Schistosomiasis, unspecified +1210 Opisthorchiasis +1211 Clonorchiasis +1212 Paragonimiasis +1213 Fascioliasis +1214 Fasciolopsiasis +1215 Metagonimiasis +1216 Heterophyiasis +1218 Other specified trematode infections +1219 Trematode infection, unspecified +1220 Echinococcus granulosus infection of liver +1221 Echinococcus granulosus infection of lung +1222 Echinococcus granulosus infection of thyroid +1223 Echinococcus granulosus infection, other +1224 Echinococcus granulosus infection, unspecified +1225 Echinococcus multilocularis infection of liver +1226 Echinococcus multilocularis infection, other +1227 Echinococcus multilocularis infection, unspecified +1228 Echinococcosis, unspecified, of liver +1229 Echinococcosis, other and unspecified +1230 Taenia solium infection, intestinal form +1231 Cysticercosis +1232 Taenia saginata infection +1233 Taeniasis, unspecified +1234 Diphyllobothriasis, intestinal +1235 Sparganosis [larval diphyllobothriasis] +1236 Hymenolepiasis +1238 Other specified cestode infection +1239 Cestode infection, unspecified +124 Trichinosis +1250 Bancroftian filariasis +1251 Malayan filariasis +1252 Loiasis +1253 Onchocerciasis +1254 Dipetalonemiasis +1255 Mansonella ozzardi infection +1256 Other specified filariasis +1257 Dracontiasis +1259 Unspecified filariasis +1260 Ancylostomiasis due to ancylostoma duodenale +1261 Necatoriasis due to necator americanus +1262 Ancylostomiasis due to ancylostoma braziliense +1263 Ancylostomiasis due to ancylostoma ceylanicum +1268 Other specified ancylostoma +1269 Ancylostomiasis and necatoriasis, unspecified +1270 Ascariasis +1271 Anisakiasis +1272 Strongyloidiasis +1273 Trichuriasis +1274 Enterobiasis +1275 Capillariasis +1276 Trichostrongyliasis +1277 Other specified intestinal helminthiasis +1278 Mixed intestinal helminthiasis +1279 Intestinal helminthiasis, unspecified +1280 Toxocariasis +1281 Gnathostomiasis +1288 Other specified helminthiasis +1289 Helminth infection, unspecified +129 Intestinal parasitism, unspecified +1300 Meningoencephalitis due to toxoplasmosis +1301 Conjunctivitis due to toxoplasmosis +1302 Chorioretinitis due to toxoplasmosis +1303 Myocarditis due to toxoplasmosis +1304 Pneumonitis due to toxoplasmosis +1305 Hepatitis due to toxoplasmosis +1307 Toxoplasmosis of other specified sites +1308 Multisystemic disseminated toxoplasmosis +1309 Toxoplasmosis, unspecified +13100 Urogenital trichomoniasis, unspecified +13101 Trichomonal vulvovaginitis +13102 Trichomonal urethritis +13103 Trichomonal prostatitis +13109 Other urogenital trichomoniasis +1318 Trichomoniasis of other specified sites +1319 Trichomoniasis, unspecified +1320 Pediculus capitis [head louse] +1321 Pediculus corporis [body louse] +1322 Phthirus pubis [pubic louse] +1323 Mixed pediculosis infestation +1329 Pediculosis, unspecified +1330 Scabies +1338 Other acariasis +1339 Acariasis, unspecified +1340 Myiasis +1341 Other arthropod infestation +1342 Hirudiniasis +1348 Other specified infestations +1349 Infestation, unspecified +135 Sarcoidosis +1360 Ainhum +1361 Behcet's syndrome +13621 Specific infection due to acanthamoeba +13629 Other specific infections by free-living amebae +1363 Pneumocystosis +1364 Psorospermiasis +1365 Sarcosporidiosis +1368 Other specified infectious and parasitic diseases +1369 Unspecified infectious and parasitic diseases +1370 Late effects of respiratory or unspecified tuberculosis +1371 Late effects of central nervous system tuberculosis +1372 Late effects of genitourinary tuberculosis +1373 Late effects of tuberculosis of bones and joints +1374 Late effects of tuberculosis of other specified organs +138 Late effects of acute poliomyelitis +1390 Late effects of viral encephalitis +1391 Late effects of trachoma +1398 Late effects of other and unspecified infectious and parasitic diseases +1400 Malignant neoplasm of upper lip, vermilion border +1401 Malignant neoplasm of lower lip, vermilion border +1403 Malignant neoplasm of upper lip, inner aspect +1404 Malignant neoplasm of lower lip, inner aspect +1405 Malignant neoplasm of lip, unspecified, inner aspect +1406 Malignant neoplasm of commissure of lip +1408 Malignant neoplasm of other sites of lip +1409 Malignant neoplasm of lip, unspecified, vermilion border +1410 Malignant neoplasm of base of tongue +1411 Malignant neoplasm of dorsal surface of tongue +1412 Malignant neoplasm of tip and lateral border of tongue +1413 Malignant neoplasm of ventral surface of tongue +1414 Malignant neoplasm of anterior two-thirds of tongue, part unspecified +1415 Malignant neoplasm of junctional zone of tongue +1416 Malignant neoplasm of lingual tonsil +1418 Malignant neoplasm of other sites of tongue +1419 Malignant neoplasm of tongue, unspecified +1420 Malignant neoplasm of parotid gland +1421 Malignant neoplasm of submandibular gland +1422 Malignant neoplasm of sublingual gland +1428 Malignant neoplasm of other major salivary glands +1429 Malignant neoplasm of salivary gland, unspecified +1430 Malignant neoplasm of upper gum +1431 Malignant neoplasm of lower gum +1438 Malignant neoplasm of other sites of gum +1439 Malignant neoplasm of gum, unspecified +1440 Malignant neoplasm of anterior portion of floor of mouth +1441 Malignant neoplasm of lateral portion of floor of mouth +1448 Malignant neoplasm of other sites of floor of mouth +1449 Malignant neoplasm of floor of mouth, part unspecified +1450 Malignant neoplasm of cheek mucosa +1451 Malignant neoplasm of vestibule of mouth +1452 Malignant neoplasm of hard palate +1453 Malignant neoplasm of soft palate +1454 Malignant neoplasm of uvula +1455 Malignant neoplasm of palate, unspecified +1456 Malignant neoplasm of retromolar area +1458 Malignant neoplasm of other specified parts of mouth +1459 Malignant neoplasm of mouth, unspecified +1460 Malignant neoplasm of tonsil +1461 Malignant neoplasm of tonsillar fossa +1462 Malignant neoplasm of tonsillar pillars (anterior) (posterior) +1463 Malignant neoplasm of vallecula epiglottica +1464 Malignant neoplasm of anterior aspect of epiglottis +1465 Malignant neoplasm of junctional region of oropharynx +1466 Malignant neoplasm of lateral wall of oropharynx +1467 Malignant neoplasm of posterior wall of oropharynx +1468 Malignant neoplasm of other specified sites of oropharynx +1469 Malignant neoplasm of oropharynx, unspecified site +1470 Malignant neoplasm of superior wall of nasopharynx +1471 Malignant neoplasm of posterior wall of nasopharynx +1472 Malignant neoplasm of lateral wall of nasopharynx +1473 Malignant neoplasm of anterior wall of nasopharynx +1478 Malignant neoplasm of other specified sites of nasopharynx +1479 Malignant neoplasm of nasopharynx, unspecified site +1480 Malignant neoplasm of postcricoid region of hypopharynx +1481 Malignant neoplasm of pyriform sinus +1482 Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect +1483 Malignant neoplasm of posterior hypopharyngeal wall +1488 Malignant neoplasm of other specified sites of hypopharynx +1489 Malignant neoplasm of hypopharynx, unspecified site +1490 Malignant neoplasm of pharynx, unspecified +1491 Malignant neoplasm of waldeyer's ring +1498 Malignant neoplasm of other sites within the lip and oral cavity +1499 Malignant neoplasm of ill-defined sites within the lip and oral cavity +1500 Malignant neoplasm of cervical esophagus +1501 Malignant neoplasm of thoracic esophagus +1502 Malignant neoplasm of abdominal esophagus +1503 Malignant neoplasm of upper third of esophagus +1504 Malignant neoplasm of middle third of esophagus +1505 Malignant neoplasm of lower third of esophagus +1508 Malignant neoplasm of other specified part of esophagus +1509 Malignant neoplasm of esophagus, unspecified site +1510 Malignant neoplasm of cardia +1511 Malignant neoplasm of pylorus +1512 Malignant neoplasm of pyloric antrum +1513 Malignant neoplasm of fundus of stomach +1514 Malignant neoplasm of body of stomach +1515 Malignant neoplasm of lesser curvature of stomach, unspecified +1516 Malignant neoplasm of greater curvature of stomach, unspecified +1518 Malignant neoplasm of other specified sites of stomach +1519 Malignant neoplasm of stomach, unspecified site +1520 Malignant neoplasm of duodenum +1521 Malignant neoplasm of jejunum +1522 Malignant neoplasm of ileum +1523 Malignant neoplasm of Meckel's diverticulum +1528 Malignant neoplasm of other specified sites of small intestine +1529 Malignant neoplasm of small intestine, unspecified site +1530 Malignant neoplasm of hepatic flexure +1531 Malignant neoplasm of transverse colon +1532 Malignant neoplasm of descending colon +1533 Malignant neoplasm of sigmoid colon +1534 Malignant neoplasm of cecum +1535 Malignant neoplasm of appendix vermiformis +1536 Malignant neoplasm of ascending colon +1537 Malignant neoplasm of splenic flexure +1538 Malignant neoplasm of other specified sites of large intestine +1539 Malignant neoplasm of colon, unspecified site +1540 Malignant neoplasm of rectosigmoid junction +1541 Malignant neoplasm of rectum +1542 Malignant neoplasm of anal canal +1543 Malignant neoplasm of anus, unspecified site +1548 Malignant neoplasm of other sites of rectum, rectosigmoid junction, and anus +1550 Malignant neoplasm of liver, primary +1551 Malignant neoplasm of intrahepatic bile ducts +1552 Malignant neoplasm of liver, not specified as primary or secondary +1560 Malignant neoplasm of gallbladder +1561 Malignant neoplasm of extrahepatic bile ducts +1562 Malignant neoplasm of ampulla of vater +1568 Malignant neoplasm of other specified sites of gallbladder and extrahepatic bile ducts +1569 Malignant neoplasm of biliary tract, part unspecified site +1570 Malignant neoplasm of head of pancreas +1571 Malignant neoplasm of body of pancreas +1572 Malignant neoplasm of tail of pancreas +1573 Malignant neoplasm of pancreatic duct +1574 Malignant neoplasm of islets of langerhans +1578 Malignant neoplasm of other specified sites of pancreas +1579 Malignant neoplasm of pancreas, part unspecified +1580 Malignant neoplasm of retroperitoneum +1588 Malignant neoplasm of specified parts of peritoneum +1589 Malignant neoplasm of peritoneum, unspecified +1590 Malignant neoplasm of intestinal tract, part unspecified +1591 Malignant neoplasm of spleen, not elsewhere classified +1598 Malignant neoplasm of other sites of digestive system and intra-abdominal organs +1599 Malignant neoplasm of ill-defined sites within the digestive organs and peritoneum +1600 Malignant neoplasm of nasal cavities +1601 Malignant neoplasm of auditory tube, middle ear, and mastoid air cells +1602 Malignant neoplasm of maxillary sinus +1603 Malignant neoplasm of ethmoidal sinus +1604 Malignant neoplasm of frontal sinus +1605 Malignant neoplasm of sphenoidal sinus +1608 Malignant neoplasm of other accessory sinuses +1609 Malignant neoplasm of accessory sinus, unspecified +1610 Malignant neoplasm of glottis +1611 Malignant neoplasm of supraglottis +1612 Malignant neoplasm of subglottis +1613 Malignant neoplasm of laryngeal cartilages +1618 Malignant neoplasm of other specified sites of larynx +1619 Malignant neoplasm of larynx, unspecified +1620 Malignant neoplasm of trachea +1622 Malignant neoplasm of main bronchus +1623 Malignant neoplasm of upper lobe, bronchus or lung +1624 Malignant neoplasm of middle lobe, bronchus or lung +1625 Malignant neoplasm of lower lobe, bronchus or lung +1628 Malignant neoplasm of other parts of bronchus or lung +1629 Malignant neoplasm of bronchus and lung, unspecified +1630 Malignant neoplasm of parietal pleura +1631 Malignant neoplasm of visceral pleura +1638 Malignant neoplasm of other specified sites of pleura +1639 Malignant neoplasm of pleura, unspecified +1640 Malignant neoplasm of thymus +1641 Malignant neoplasm of heart +1642 Malignant neoplasm of anterior mediastinum +1643 Malignant neoplasm of posterior mediastinum +1648 Malignant neoplasm of other parts of mediastinum +1649 Malignant neoplasm of mediastinum, part unspecified +1650 Malignant neoplasm of upper respiratory tract, part unspecified +1658 Malignant neoplasm of other sites within the respiratory system and intrathoracic organs +1659 Malignant neoplasm of ill-defined sites within the respiratory system +1700 Malignant neoplasm of bones of skull and face, except mandible +1701 Malignant neoplasm of mandible +1702 Malignant neoplasm of vertebral column, excluding sacrum and coccyx +1703 Malignant neoplasm of ribs, sternum, and clavicle +1704 Malignant neoplasm of scapula and long bones of upper limb +1705 Malignant neoplasm of short bones of upper limb +1706 Malignant neoplasm of pelvic bones, sacrum, and coccyx +1707 Malignant neoplasm of long bones of lower limb +1708 Malignant neoplasm of short bones of lower limb +1709 Malignant neoplasm of bone and articular cartilage, site unspecified +1710 Malignant neoplasm of connective and other soft tissue of head, face, and neck +1712 Malignant neoplasm of connective and other soft tissue of upper limb, including shoulder +1713 Malignant neoplasm of connective and other soft tissue of lower limb, including hip +1714 Malignant neoplasm of connective and other soft tissue of thorax +1715 Malignant neoplasm of connective and other soft tissue of abdomen +1716 Malignant neoplasm of connective and other soft tissue of pelvis +1717 Malignant neoplasm of connective and other soft tissue of trunk, unspecified +1718 Malignant neoplasm of other specified sites of connective and other soft tissue +1719 Malignant neoplasm of connective and other soft tissue, site unspecified +1720 Malignant melanoma of skin of lip +1721 Malignant melanoma of skin of eyelid, including canthus +1722 Malignant melanoma of skin of ear and external auditory canal +1723 Malignant melanoma of skin of other and unspecified parts of face +1724 Malignant melanoma of skin of scalp and neck +1725 Malignant melanoma of skin of trunk, except scrotum +1726 Malignant melanoma of skin of upper limb, including shoulder +1727 Malignant melanoma of skin of lower limb, including hip +1728 Malignant melanoma of other specified sites of skin +1729 Melanoma of skin, site unspecified +17300 Unspecified malignant neoplasm of skin of lip +17301 Basal cell carcinoma of skin of lip +17302 Squamous cell carcinoma of skin of lip +17309 Other specified malignant neoplasm of skin of lip +17310 Unspecified malignant neoplasm of eyelid, including canthus +17311 Basal cell carcinoma of eyelid, including canthus +17312 Squamous cell carcinoma of eyelid, including canthus +17319 Other specified malignant neoplasm of eyelid, including canthus +17320 Unspecified malignant neoplasm of skin of ear and external auditory canal +17321 Basal cell carcinoma of skin of ear and external auditory canal +17322 Squamous cell carcinoma of skin of ear and external auditory canal +17329 Other specified malignant neoplasm of skin of ear and external auditory canal +17330 Unspecified malignant neoplasm of skin of other and unspecified parts of face +17331 Basal cell carcinoma of skin of other and unspecified parts of face +17332 Squamous cell carcinoma of skin of other and unspecified parts of face +17339 Other specified malignant neoplasm of skin of other and unspecified parts of face +17340 Unspecified malignant neoplasm of scalp and skin of neck +17341 Basal cell carcinoma of scalp and skin of neck +17342 Squamous cell carcinoma of scalp and skin of neck +17349 Other specified malignant neoplasm of scalp and skin of neck +17350 Unspecified malignant neoplasm of skin of trunk, except scrotum +17351 Basal cell carcinoma of skin of trunk, except scrotum +17352 Squamous cell carcinoma of skin of trunk, except scrotum +17359 Other specified malignant neoplasm of skin of trunk, except scrotum +17360 Unspecified malignant neoplasm of skin of upper limb, including shoulder +17361 Basal cell carcinoma of skin of upper limb, including shoulder +17362 Squamous cell carcinoma of skin of upper limb, including shoulder +17369 Other specified malignant neoplasm of skin of upper limb, including shoulder +17370 Unspecified malignant neoplasm of skin of lower limb, including hip +17371 Basal cell carcinoma of skin of lower limb, including hip +17372 Squamous cell carcinoma of skin of lower limb, including hip +17379 Other specified malignant neoplasm of skin of lower limb, including hip +17380 Unspecified malignant neoplasm of other specified sites of skin +17381 Basal cell carcinoma of other specified sites of skin +17382 Squamous cell carcinoma of other specified sites of skin +17389 Other specified malignant neoplasm of other specified sites of skin +17390 Unspecified malignant neoplasm of skin, site unspecified +17391 Basal cell carcinoma of skin, site unspecified +17392 Squamous cell carcinoma of skin, site unspecified +17399 Other specified malignant neoplasm of skin, site unspecified +1740 Malignant neoplasm of nipple and areola of female breast +1741 Malignant neoplasm of central portion of female breast +1742 Malignant neoplasm of upper-inner quadrant of female breast +1743 Malignant neoplasm of lower-inner quadrant of female breast +1744 Malignant neoplasm of upper-outer quadrant of female breast +1745 Malignant neoplasm of lower-outer quadrant of female breast +1746 Malignant neoplasm of axillary tail of female breast +1748 Malignant neoplasm of other specified sites of female breast +1749 Malignant neoplasm of breast (female), unspecified +1750 Malignant neoplasm of nipple and areola of male breast +1759 Malignant neoplasm of other and unspecified sites of male breast +1760 Kaposi's sarcoma, skin +1761 Kaposi's sarcoma, soft tissue +1762 Kaposi's sarcoma, palate +1763 Kaposi's sarcoma, gastrointestinal sites +1764 Kaposi's sarcoma, lung +1765 Kaposi's sarcoma, lymph nodes +1768 Kaposi's sarcoma, other specified sites +1769 Kaposi's sarcoma, unspecified site +179 Malignant neoplasm of uterus, part unspecified +1800 Malignant neoplasm of endocervix +1801 Malignant neoplasm of exocervix +1808 Malignant neoplasm of other specified sites of cervix +1809 Malignant neoplasm of cervix uteri, unspecified site +181 Malignant neoplasm of placenta +1820 Malignant neoplasm of corpus uteri, except isthmus +1821 Malignant neoplasm of isthmus +1828 Malignant neoplasm of other specified sites of body of uterus +1830 Malignant neoplasm of ovary +1832 Malignant neoplasm of fallopian tube +1833 Malignant neoplasm of broad ligament of uterus +1834 Malignant neoplasm of parametrium +1835 Malignant neoplasm of round ligament of uterus +1838 Malignant neoplasm of other specified sites of uterine adnexa +1839 Malignant neoplasm of uterine adnexa, unspecified site +1840 Malignant neoplasm of vagina +1841 Malignant neoplasm of labia majora +1842 Malignant neoplasm of labia minora +1843 Malignant neoplasm of clitoris +1844 Malignant neoplasm of vulva, unspecified site +1848 Malignant neoplasm of other specified sites of female genital organs +1849 Malignant neoplasm of female genital organ, site unspecified +185 Malignant neoplasm of prostate +1860 Malignant neoplasm of undescended testis +1869 Malignant neoplasm of other and unspecified testis +1871 Malignant neoplasm of prepuce +1872 Malignant neoplasm of glans penis +1873 Malignant neoplasm of body of penis +1874 Malignant neoplasm of penis, part unspecified +1875 Malignant neoplasm of epididymis +1876 Malignant neoplasm of spermatic cord +1877 Malignant neoplasm of scrotum +1878 Malignant neoplasm of other specified sites of male genital organs +1879 Malignant neoplasm of male genital organ, site unspecified +1880 Malignant neoplasm of trigone of urinary bladder +1881 Malignant neoplasm of dome of urinary bladder +1882 Malignant neoplasm of lateral wall of urinary bladder +1883 Malignant neoplasm of anterior wall of urinary bladder +1884 Malignant neoplasm of posterior wall of urinary bladder +1885 Malignant neoplasm of bladder neck +1886 Malignant neoplasm of ureteric orifice +1887 Malignant neoplasm of urachus +1888 Malignant neoplasm of other specified sites of bladder +1889 Malignant neoplasm of bladder, part unspecified +1890 Malignant neoplasm of kidney, except pelvis +1891 Malignant neoplasm of renal pelvis +1892 Malignant neoplasm of ureter +1893 Malignant neoplasm of urethra +1894 Malignant neoplasm of paraurethral glands +1898 Malignant neoplasm of other specified sites of urinary organs +1899 Malignant neoplasm of urinary organ, site unspecified +1900 Malignant neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid +1901 Malignant neoplasm of orbit +1902 Malignant neoplasm of lacrimal gland +1903 Malignant neoplasm of conjunctiva +1904 Malignant neoplasm of cornea +1905 Malignant neoplasm of retina +1906 Malignant neoplasm of choroid +1907 Malignant neoplasm of lacrimal duct +1908 Malignant neoplasm of other specified sites of eye +1909 Malignant neoplasm of eye, part unspecified +1910 Malignant neoplasm of cerebrum, except lobes and ventricles +1911 Malignant neoplasm of frontal lobe +1912 Malignant neoplasm of temporal lobe +1913 Malignant neoplasm of parietal lobe +1914 Malignant neoplasm of occipital lobe +1915 Malignant neoplasm of ventricles +1916 Malignant neoplasm of cerebellum nos +1917 Malignant neoplasm of brain stem +1918 Malignant neoplasm of other parts of brain +1919 Malignant neoplasm of brain, unspecified +1920 Malignant neoplasm of cranial nerves +1921 Malignant neoplasm of cerebral meninges +1922 Malignant neoplasm of spinal cord +1923 Malignant neoplasm of spinal meninges +1928 Malignant neoplasm of other specified sites of nervous system +1929 Malignant neoplasm of nervous system, part unspecified +193 Malignant neoplasm of thyroid gland +1940 Malignant neoplasm of adrenal gland +1941 Malignant neoplasm of parathyroid gland +1943 Malignant neoplasm of pituitary gland and craniopharyngeal duct +1944 Malignant neoplasm of pineal gland +1945 Malignant neoplasm of carotid body +1946 Malignant neoplasm of aortic body and other paraganglia +1948 Malignant neoplasm of other endocrine glands and related structures +1949 Malignant neoplasm of endocrine gland, site unspecified +1950 Malignant neoplasm of head, face, and neck +1951 Malignant neoplasm of thorax +1952 Malignant neoplasm of abdomen +1953 Malignant neoplasm of pelvis +1954 Malignant neoplasm of upper limb +1955 Malignant neoplasm of lower limb +1958 Malignant neoplasm of other specified sites +1960 Secondary and unspecified malignant neoplasm of lymph nodes of head, face, and neck +1961 Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes +1962 Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes +1963 Secondary and unspecified malignant neoplasm of lymph nodes of axilla and upper limb +1965 Secondary and unspecified malignant neoplasm of lymph nodes of inguinal region and lower limb +1966 Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes +1968 Secondary and unspecified malignant neoplasm of lymph nodes of multiple sites +1969 Secondary and unspecified malignant neoplasm of lymph nodes, site unspecified +1970 Secondary malignant neoplasm of lung +1971 Secondary malignant neoplasm of mediastinum +1972 Secondary malignant neoplasm of pleura +1973 Secondary malignant neoplasm of other respiratory organs +1974 Secondary malignant neoplasm of small intestine including duodenum +1975 Secondary malignant neoplasm of large intestine and rectum +1976 Secondary malignant neoplasm of retroperitoneum and peritoneum +1977 Malignant neoplasm of liver, secondary +1978 Secondary malignant neoplasm of other digestive organs and spleen +1980 Secondary malignant neoplasm of kidney +1981 Secondary malignant neoplasm of other urinary organs +1982 Secondary malignant neoplasm of skin +1983 Secondary malignant neoplasm of brain and spinal cord +1984 Secondary malignant neoplasm of other parts of nervous system +1985 Secondary malignant neoplasm of bone and bone marrow +1986 Secondary malignant neoplasm of ovary +1987 Secondary malignant neoplasm of adrenal gland +19881 Secondary malignant neoplasm of breast +19882 Secondary malignant neoplasm of genital organs +19889 Secondary malignant neoplasm of other specified sites +1990 Disseminated malignant neoplasm without specification of site +1991 Other malignant neoplasm without specification of site +1992 Malignant neoplasm associated with transplant organ +20000 Reticulosarcoma, unspecified site, extranodal and solid organ sites +20001 Reticulosarcoma, lymph nodes of head, face, and neck +20002 Reticulosarcoma, intrathoracic lymph nodes +20003 Reticulosarcoma, intra-abdominal lymph nodes +20004 Reticulosarcoma, lymph nodes of axilla and upper limb +20005 Reticulosarcoma, lymph nodes of inguinal region and lower limb +20006 Reticulosarcoma, intrapelvic lymph nodes +20007 Reticulosarcoma, spleen +20008 Reticulosarcoma, lymph nodes of multiple sites +20010 Lymphosarcoma, unspecified site, extranodal and solid organ sites +20011 Lymphosarcoma, lymph nodes of head, face, and neck +20012 Lymphosarcoma, intrathoracic lymph nodes +20013 Lymphosarcoma, intra-abdominal lymph nodes +20014 Lymphosarcoma, lymph nodes of axilla and upper limb +20015 Lymphosarcoma, lymph nodes of inguinal region and lower limb +20016 Lymphosarcoma, intrapelvic lymph nodes +20017 Lymphosarcoma, spleen +20018 Lymphosarcoma, lymph nodes of multiple sites +20020 Burkitt's tumor or lymphoma, unspecified site, extranodal and solid organ sites +20021 Burkitt's tumor or lymphoma, lymph nodes of head, face, and neck +20022 Burkitt's tumor or lymphoma, intrathoracic lymph nodes +20023 Burkitt's tumor or lymphoma, intra-abdominal lymph nodes +20024 Burkitt's tumor or lymphoma, lymph nodes of axilla and upper limb +20025 Burkitt's tumor or lymphoma, lymph nodes of inguinal region and lower limb +20026 Burkitt's tumor or lymphoma, intrapelvic lymph nodes +20027 Burkitt's tumor or lymphoma, spleen +20028 Burkitt's tumor or lymphoma, lymph nodes of multiple sites +20030 Marginal zone lymphoma, unspecified site, extranodal and solid organ sites +20031 Marginal zone lymphoma, lymph nodes of head, face, and neck +20032 Marginal zone lymphoma, intrathoracic lymph nodes +20033 Marginal zone lymphoma, intraabdominal lymph nodes +20034 Marginal zone lymphoma, lymph nodes of axilla and upper limb +20035 Marginal zone lymphoma, lymph nodes of inguinal region and lower limb +20036 Marginal zone lymphoma, intrapelvic lymph nodes +20037 Marginal zone lymphoma, spleen +20038 Marginal zone lymphoma, lymph nodes of multiple sites +20040 Mantle cell lymphoma, unspecified site, extranodal and solid organ sites +20041 Mantle cell lymphoma, lymph nodes of head, face, and neck +20042 Mantle cell lymphoma, intrathoracic lymph nodes +20043 Mantle cell lymphoma, intra-abdominal lymph nodes +20044 Mantle cell lymphoma, lymph nodes of axilla and upper limb +20045 Mantle cell lymphoma, lymph nodes of inguinal region and lower limb +20046 Mantle cell lymphoma, intrapelvic lymph nodes +20047 Mantle cell lymphoma, spleen +20048 Mantle cell lymphoma, lymph nodes of multiple sites +20050 Primary central nervous system lymphoma, unspecified site, extranodal and solid organ sites +20051 Primary central nervous system lymphoma, lymph nodes of head, face, and neck +20052 Primary central nervous system lymphoma, intrathoracic lymph nodes +20053 Primary central nervous system lymphoma, intra-abdominal lymph nodes +20054 Primary central nervous system lymphoma, lymph nodes of axilla and upper limb +20055 Primary central nervous system lymphoma, lymph nodes of inguinal region and lower limb +20056 Primary central nervous system lymphoma, intrapelvic lymph nodes +20057 Primary central nervous system lymphoma, spleen +20058 Primary central nervous system lymphoma, lymph nodes of multiple sites +20060 Anaplastic large cell lymphoma, unspecified site, extranodal and solid organ sites +20061 Anaplastic large cell lymphoma, lymph nodes of head, face, and neck +20062 Anaplastic large cell lymphoma, intrathoracic lymph nodes +20063 Anaplastic large cell lymphoma, intra-abdominal lymph nodes +20064 Anaplastic large cell lymphoma, lymph nodes of axilla and upper limb +20065 Anaplastic large cell lymphoma, lymph nodes of inguinal region and lower limb +20066 Anaplastic large cell lymphoma, intrapelvic lymph nodes +20067 Anaplastic large cell lymphoma, spleen +20068 Anaplastic large cell lymphoma, lymph nodes of multiple sites +20070 Large cell lymphoma, unspecified site, extranodal and solid organ sites +20071 Large cell lymphoma, lymph nodes of head, face, and neck +20072 Large cell lymphoma, intrathoracic lymph nodes +20073 Large cell lymphoma, intra-abdominal lymph nodes +20074 Large cell lymphoma, lymph nodes of axilla and upper limb +20075 Large cell lymphoma, lymph nodes of inguinal region and lower limb +20076 Large cell lymphoma, intrapelvic lymph nodes +20077 Large cell lymphoma, spleen +20078 Large cell lymphoma, lymph nodes of multiple sites +20080 Other named variants of lymphosarcoma and reticulosarcoma, unspecified site, extranodal and solid organ sites +20081 Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of head, face, and neck +20082 Other named variants of lymphosarcoma and reticulosarcoma,intrathoracic lymph nodes +20083 Other named variants of lymphosarcoma and reticulosarcoma, intra-abdominal lymph nodes +20084 Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of axilla and upper limb +20085 Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of inguinal region and lower limb +20086 Other named variants of lymphosarcoma and reticulosarcoma, intrapelvic lymph nodes +20087 Other named variants of lymphosarcoma and reticulosarcoma, spleen +20088 Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of multiple sites +20100 Hodgkin's paragranuloma, unspecified site, extranodal and solid organ sites +20101 Hodgkin's paragranuloma, lymph nodes of head, face, and neck +20102 Hodgkin's paragranuloma, intrathoracic lymph nodes +20103 Hodgkin's paragranuloma, intra-abdominal lymph nodes +20104 Hodgkin's paragranuloma, lymph nodes of axilla and upper limb +20105 Hodgkin's paragranuloma, lymph nodes of inguinal region and lower limb +20106 Hodgkin's paragranuloma, intrapelvic lymph nodes +20107 Hodgkin's paragranuloma, spleen +20108 Hodgkin's paragranuloma, lymph nodes of multiple sites +20110 Hodgkin's granuloma, unspecified site, extranodal and solid organ sites +20111 Hodgkin's granuloma, lymph nodes of head, face, and neck +20112 Hodgkin's granuloma, intrathoracic lymph nodes +20113 Hodgkin's granuloma, intra-abdominal lymph nodes +20114 Hodgkin's granuloma, lymph nodes of axilla and upper limb +20115 Hodgkin's granuloma, lymph nodes of inguinal region and lower limb +20116 Hodgkin's granuloma, intrapelvic lymph nodes +20117 Hodgkin's granuloma, spleen +20118 Hodgkin's granuloma, lymph nodes of multiple sites +20120 Hodgkin's sarcoma, unspecified site, extranodal and solid organ sites +20121 Hodgkin's sarcoma, lymph nodes of head, face, and neck +20122 Hodgkin's sarcoma, intrathoracic lymph nodes +20123 Hodgkin's sarcoma, intra-abdominal lymph nodes +20124 Hodgkin's sarcoma, lymph nodes of axilla and upper limb +20125 Hodgkin's sarcoma, lymph nodes of inguinal region and lower limb +20126 Hodgkin's sarcoma, intrapelvic lymph nodes +20127 Hodgkin's sarcoma, spleen +20128 Hodgkin's sarcoma, lymph nodes of multiple sites +20140 Hodgkin's disease, lymphocytic-histiocytic predominance, unspecified site, extranodal and solid organ sites +20141 Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of head, face, and neck +20142 Hodgkin's disease, lymphocytic-histiocytic predominance, intrathoracic lymph nodes +20143 Hodgkin's disease, lymphocytic-histiocytic predominance, intra-abdominal lymph nodes +20144 Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of axilla and upper limb +20145 Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of inguinal region and lower limb +20146 Hodgkin's disease, lymphocytic-histiocytic predominance, intrapelvic lymph nodes +20147 Hodgkin's disease, lymphocytic-histiocytic predominance, spleen +20148 Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of multiple sites +20150 Hodgkin's disease, nodular sclerosis, unspecified site, extranodal and solid organ sites +20151 Hodgkin's disease, nodular sclerosis, lymph nodes of head, face, and neck +20152 Hodgkin's disease, nodular sclerosis, intrathoracic lymph nodes +20153 Hodgkin's disease, nodular sclerosis, intra-abdominal lymph nodes +20154 Hodgkin's disease, nodular sclerosis, lymph nodes of axilla and upper limb +20155 Hodgkin's disease, nodular sclerosis, lymph nodes of inguinal region and lower limb +20156 Hodgkin's disease, nodular sclerosis, intrapelvic lymph nodes +20157 Hodgkin's disease, nodular sclerosis, spleen +20158 Hodgkin's disease, nodular sclerosis, lymph nodes of multiple sites +20160 Hodgkin's disease, mixed cellularity, unspecified site, extranodal and solid organ sites +20161 Hodgkin's disease, mixed cellularity, lymph nodes of head, face, and neck +20162 Hodgkin's disease, mixed cellularity, intrathoracic lymph nodes +20163 Hodgkin's disease, mixed cellularity, intra-abdominal lymph nodes +20164 Hodgkin's disease, mixed cellularity, lymph nodes of axilla and upper limb +20165 Hodgkin's disease, mixed cellularity, lymph nodes of inguinal region and lower limb +20166 Hodgkin's disease, mixed cellularity, intrapelvic lymph nodes +20167 Hodgkin's disease, mixed cellularity, spleen +20168 Hodgkin's disease, mixed cellularity, lymph nodes of multiple sites +20170 Hodgkin's disease, lymphocytic depletion, unspecified site, extranodal and solid organ sites +20171 Hodgkin's disease, lymphocytic depletion, lymph nodes of head, face, and neck +20172 Hodgkin's disease, lymphocytic depletion, intrathoracic lymph nodes +20173 Hodgkin's disease, lymphocytic depletion, intra-abdominal lymph nodes +20174 Hodgkin's disease, lymphocytic depletion, lymph nodes of axilla and upper limb +20175 Hodgkin's disease, lymphocytic depletion, lymph nodes of inguinal region and lower limb +20176 Hodgkin's disease, lymphocytic depletion, intrapelvic lymph nodes +20177 Hodgkin's disease, lymphocytic depletion, spleen +20178 Hodgkin's disease, lymphocytic depletion, lymph nodes of multiple sites +20190 Hodgkin's disease, unspecified type, unspecified site, extranodal and solid organ sites +20191 Hodgkin's disease, unspecified type, lymph nodes of head, face, and neck +20192 Hodgkin's disease, unspecified type, intrathoracic lymph nodes +20193 Hodgkin's disease, unspecified type, intra-abdominal lymph nodes +20194 Hodgkin's disease, unspecified type, lymph nodes of axilla and upper limb +20195 Hodgkin's disease, unspecified type, lymph nodes of inguinal region and lower limb +20196 Hodgkin's disease, unspecified type, intrapelvic lymph nodes +20197 Hodgkin's disease, unspecified type, spleen +20198 Hodgkin's disease, unspecified type, lymph nodes of multiple sites +20200 Nodular lymphoma, unspecified site, extranodal and solid organ sites +20201 Nodular lymphoma, lymph nodes of head, face, and neck +20202 Nodular lymphoma, intrathoracic lymph nodes +20203 Nodular lymphoma, intra-abdominal lymph nodes +20204 Nodular lymphoma, lymph nodes of axilla and upper limb +20205 Nodular lymphoma, lymph nodes of inguinal region and lower limb +20206 Nodular lymphoma, intrapelvic lymph nodes +20207 Nodular lymphoma, spleen +20208 Nodular lymphoma, lymph nodes of multiple sites +20210 Mycosis fungoides, unspecified site, extranodal and solid organ sites +20211 Mycosis fungoides, lymph nodes of head, face, and neck +20212 Mycosis fungoides, intrathoracic lymph nodes +20213 Mycosis fungoides, intra-abdominal lymph nodes +20214 Mycosis fungoides, lymph nodes of axilla and upper limb +20215 Mycosis fungoides, lymph nodes of inguinal region and lower limb +20216 Mycosis fungoides, intrapelvic lymph nodes +20217 Mycosis fungoides, spleen +20218 Mycosis fungoides, lymph nodes of multiple sites +20220 Sezary's disease, unspecified site, extranodal and solid organ sites +20221 Sezary's disease, lymph nodes of head, face, and neck +20222 Sezary's disease, intrathoracic lymph nodes +20223 Sezary's disease, intra-abdominal lymph nodes +20224 Sezary's disease, lymph nodes of axilla and upper limb +20225 Sezary's disease, lymph nodes of inguinal region and lower limb +20226 Sezary's disease, intrapelvic lymph nodes +20227 Sezary's disease, spleen +20228 Sezary's disease, lymph nodes of multiple sites +20230 Malignant histiocytosis, unspecified site, extranodal and solid organ sites +20231 Malignant histiocytosis, lymph nodes of head, face, and neck +20232 Malignant histiocytosis, intrathoracic lymph nodes +20233 Malignant histiocytosis, intra-abdominal lymph nodes +20234 Malignant histiocytosis, lymph nodes of axilla and upper limb +20235 Malignant histiocytosis, lymph nodes of inguinal region and lower limb +20236 Malignant histiocytosis, intrapelvic lymph nodes +20237 Malignant histiocytosis, spleen +20238 Malignant histiocytosis, lymph nodes of multiple sites +20240 Leukemic reticuloendotheliosis, unspecified site, extranodal and solid organ sites +20241 Leukemic reticuloendotheliosis, lymph nodes of head, face, and neck +20242 Leukemic reticuloendotheliosis, intrathoracic lymph nodes +20243 Leukemic reticuloendotheliosis, intra-abdominal lymph nodes +20244 Leukemic reticuloendotheliosis, lymph nodes of axilla and upper arm +20245 Leukemic reticuloendotheliosis, lymph nodes of inguinal region and lower limb +20246 Leukemic reticuloendotheliosis, intrapelvic lymph nodes +20247 Leukemic reticuloendotheliosis, spleen +20248 Leukemic reticuloendotheliosis, lymph nodes of multiple sites +20250 Letterer-siwe disease, unspecified site, extranodal and solid organ sites +20251 Letterer-siwe disease, lymph nodes of head, face, and neck +20252 Letterer-siwe disease, intrathoracic lymph nodes +20253 Letterer-siwe disease, intra-abdominal lymph nodes +20254 Letterer-siwe disease, lymph nodes of axilla and upper limb +20255 Letterer-siwe disease, lymph nodes of inguinal region and lower limb +20256 Letterer-siwe disease, intrapelvic lymph nodes +20257 Letterer-siwe disease, spleen +20258 Letterer-siwe disease, lymph nodes of multiple sites +20260 Malignant mast cell tumors, unspecified site, extranodal and solid organ sites +20261 Malignant mast cell tumors, lymph nodes of head, face, and neck +20262 Malignant mast cell tumors, intrathoracic lymph nodes +20263 Malignant mast cell tumors, intra-abdominal lymph nodes +20264 Malignant mast cell tumors, lymph nodes of axilla and upper limb +20265 Malignant mast cell tumors, lymph nodes of inguinal region and lower limb +20266 Malignant mast cell tumors, intrapelvic lymph nodes +20267 Malignant mast cell tumors, spleen +20268 Malignant mast cell tumors, lymph nodes of multiple sites +20270 Peripheral T cell lymphoma, unspecified site, extranodal and solid organ sites +20271 Peripheral T cell lymphoma, lymph nodes of head, face, and neck +20272 Peripheral T cell lymphoma, intrathoracic lymph nodes +20273 Peripheral T cell lymphoma, intra-abdominal lymph nodes +20274 Peripheral T cell lymphoma, lymph nodes of axilla and upper limb +20275 Peripheral T cell lymphoma, lymph nodes of inguinal region and lower limb +20276 Peripheral T cell lymphoma, intrapelvic lymph nodes +20277 Peripheral T cell lymphoma, spleen +20278 Peripheral T cell lymphoma, lymph nodes of multiple sites +20280 Other malignant lymphomas, unspecified site, extranodal and solid organ sites +20281 Other malignant lymphomas, lymph nodes of head, face, and neck +20282 Other malignant lymphomas, intrathoracic lymph nodes +20283 Other malignant lymphomas, intra-abdominal lymph nodes +20284 Other malignant lymphomas, lymph nodes of axilla and upper limb +20285 Other malignant lymphomas, lymph nodes of inguinal region and lower limb +20286 Other malignant lymphomas, intrapelvic lymph nodes +20287 Other malignant lymphomas, spleen +20288 Other malignant lymphomas, lymph nodes of multiple sites +20290 Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, unspecified site, extranodal and solid organ sites +20291 Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of head, face, and neck +20292 Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrathoracic lymph nodes +20293 Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intra-abdominal lymph nodes +20294 Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of axilla and upper limb +20295 Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of inguinal region and lower limb +20296 Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrapelvic lymph nodes +20297 Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, spleen +20298 Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of multiple sites +20300 Multiple myeloma, without mention of having achieved remission +20301 Multiple myeloma, in remission +20302 Multiple myeloma, in relapse +20310 Plasma cell leukemia, without mention of having achieved remission +20311 Plasma cell leukemia, in remission +20312 Plasma cell leukemia, in relapse +20380 Other immunoproliferative neoplasms, without mention of having achieved remission +20381 Other immunoproliferative neoplasms, in remission +20382 Other immunoproliferative neoplasms, in relapse +20400 Acute lymphoid leukemia, without mention of having achieved remission +20401 Acute lymphoid leukemia, in remission +20402 Acute lymphoid leukemia, in relapse +20410 Chronic lymphoid leukemia, without mention of having achieved remission +20411 Chronic lymphoid leukemia, in remission +20412 Chronic lymphoid leukemia, in relapse +20420 Subacute lymphoid leukemia, without mention of having achieved remission +20421 Subacute lymphoid leukemia, in remission +20422 Subacute lymphoid leukemia, in relapse +20480 Other lymphoid leukemia, without mention of having achieved remission +20481 Other lymphoid leukemia, in remission +20482 Other lymphoid leukemia, in relapse +20490 Unspecified lymphoid leukemia, without mention of having achieved remission +20491 Unspecified lymphoid leukemia, in remission +20492 Unspecified lymphoid leukemia, in relapse +20500 Acute myeloid leukemia, without mention of having achieved remission +20501 Acute myeloid leukemia, in remission +20502 Acute myeloid leukemia, in relapse +20510 Chronic myeloid leukemia, without mention of having achieved remission +20511 Chronic myeloid leukemia, in remission +20512 Chronic myeloid leukemia, in relapse +20520 Subacute myeloid leukemia, without mention of having achieved remission +20521 Subacute myeloid leukemia,in remission +20522 Subacute myeloid leukemia, in relapse +20530 Myeloid sarcoma, without mention of having achieved remission +20531 Myeloid sarcoma, in remission +20532 Myeloid sarcoma, in relapse +20580 Other myeloid leukemia, without mention of having achieved remission +20581 Other myeloid leukemia, in remission +20582 Other myeloid leukemia, in relapse +20590 Unspecified myeloid leukemia, without mention of having achieved remission +20591 Unspecified myeloid leukemia, in remission +20592 Unspecified myeloid leukemia, in relapse +20600 Acute monocytic leukemia, without mention of having achieved remission +20601 Acute monocytic leukemia,in remission +20602 Acute monocytic leukemia, in relapse +20610 Chronic monocytic leukemia, without mention of having achieved remission +20611 Chronic monocytic leukemia, in remission +20612 Chronic monocytic leukemia, in relapse +20620 Subacute monocytic leukemia, without mention of having achieved remission +20621 Subacute monocytic leukemia, in remission +20622 Subacute monocytic leukemia, in relapse +20680 Other monocytic leukemia, without mention of having achieved remission +20681 Other monocytic leukemia, in remission +20682 Other monocytic leukemia, in relapse +20690 Unspecified monocytic leukemia, without mention of having achieved remission +20691 Unspecified monocytic leukemia, in remission +20692 Unspecified monocytic leukemia, in relapse +20700 Acute erythremia and erythroleukemia, without mention of having achieved remission +20701 Acute erythremia and erythroleukemia, in remission +20702 Acute erythremia and erythroleukemia, in relapse +20710 Chronic erythremia, without mention of having achieved remission +20711 Chronic erythremia, in remission +20712 Chronic erythremia, in relapse +20720 Megakaryocytic leukemia, without mention of having achieved remission +20721 Megakaryocytic leukemia, in remission +20722 Megakaryocytic leukemia, in relapse +20780 Other specified leukemia, without mention of having achieved remission +20781 Other specified leukemia, in remission +20782 Other specified leukemia, in relapse +20800 Acute leukemia of unspecified cell type, without mention of having achieved remission +20801 Acute leukemia of unspecified cell type, in remission +20802 Acute leukemia of unspecified cell type, in relapse +20810 Chronic leukemia of unspecified cell type, without mention of having achieved remission +20811 Chronic leukemia of unspecified cell type, in remission +20812 Chronic leukemia of unspecified cell type, in relapse +20820 Subacute leukemia of unspecified cell type, without mention of having achieved remission +20821 Subacute leukemia of unspecified cell type, in remission +20822 Subacute leukemia of unspecified cell type, in relapse +20880 Other leukemia of unspecified cell type, without mention of having achieved remission +20881 Other leukemia of unspecified cell type, in remission +20882 Other leukemia of unspecified cell type, in relapse +20890 Unspecified leukemia, without mention of having achieved remission +20891 Unspecified leukemia, in remission +20892 Unspecified leukemia, in relapse +20900 Malignant carcinoid tumor of the small intestine, unspecified portion +20901 Malignant carcinoid tumor of the duodenum +20902 Malignant carcinoid tumor of the jejunum +20903 Malignant carcinoid tumor of the ileum +20910 Malignant carcinoid tumor of the large intestine, unspecified portion +20911 Malignant carcinoid tumor of the appendix +20912 Malignant carcinoid tumor of the cecum +20913 Malignant carcinoid tumor of the ascending colon +20914 Malignant carcinoid tumor of the transverse colon +20915 Malignant carcinoid tumor of the descending colon +20916 Malignant carcinoid tumor of the sigmoid colon +20917 Malignant carcinoid tumor of the rectum +20920 Malignant carcinoid tumor of unknown primary site +20921 Malignant carcinoid tumor of the bronchus and lung +20922 Malignant carcinoid tumor of the thymus +20923 Malignant carcinoid tumor of the stomach +20924 Malignant carcinoid tumor of the kidney +20925 Malignant carcinoid tumor of foregut, not otherwise specified +20926 Malignant carcinoid tumor of midgut, not otherwise specified +20927 Malignant carcinoid tumor of hindgut, not otherwise specified +20929 Malignant carcinoid tumor of other sites +20930 Malignant poorly differentiated neuroendocrine carcinoma, any site +20931 Merkel cell carcinoma of the face +20932 Merkel cell carcinoma of the scalp and neck +20933 Merkel cell carcinoma of the upper limb +20934 Merkel cell carcinoma of the lower limb +20935 Merkel cell carcinoma of the trunk +20936 Merkel cell carcinoma of other sites +20940 Benign carcinoid tumor of the small intestine, unspecified portion +20941 Benign carcinoid tumor of the duodenum +20942 Benign carcinoid tumor of the jejunum +20943 Benign carcinoid tumor of the ileum +20950 Benign carcinoid tumor of the large intestine, unspecified portion +20951 Benign carcinoid tumor of the appendix +20952 Benign carcinoid tumor of the cecum +20953 Benign carcinoid tumor of the ascending colon +20954 Benign carcinoid tumor of the transverse colon +20955 Benign carcinoid tumor of the descending colon +20956 Benign carcinoid tumor of the sigmoid colon +20957 Benign carcinoid tumor of the rectum +20960 Benign carcinoid tumor of unknown primary site +20961 Benign carcinoid tumor of the bronchus and lung +20962 Benign carcinoid tumor of the thymus +20963 Benign carcinoid tumor of the stomach +20964 Benign carcinoid tumor of the kidney +20965 Benign carcinoid tumor of foregut, not otherwise specified +20966 Benign carcinoid tumor of midgut, not otherwise specified +20967 Benign carcinoid tumor of hindgut, not otherwise specified +20969 Benign carcinoid tumor of other sites +20970 Secondary neuroendocrine tumor, unspecified site +20971 Secondary neuroendocrine tumor of distant lymph nodes +20972 Secondary neuroendocrine tumor of liver +20973 Secondary neuroendocrine tumor of bone +20974 Secondary neuroendocrine tumor of peritoneum +20975 Secondary Merkel cell carcinoma +20979 Secondary neuroendocrine tumor of other sites +2100 Benign neoplasm of lip +2101 Benign neoplasm of tongue +2102 Benign neoplasm of major salivary glands +2103 Benign neoplasm of floor of mouth +2104 Benign neoplasm of other and unspecified parts of mouth +2105 Benign neoplasm of tonsil +2106 Benign neoplasm of other parts of oropharynx +2107 Benign neoplasm of nasopharynx +2108 Benign neoplasm of hypopharynx +2109 Benign neoplasm of pharynx, unspecified +2110 Benign neoplasm of esophagus +2111 Benign neoplasm of stomach +2112 Benign neoplasm of duodenum, jejunum, and ileum +2113 Benign neoplasm of colon +2114 Benign neoplasm of rectum and anal canal +2115 Benign neoplasm of liver and biliary passages +2116 Benign neoplasm of pancreas, except islets of Langerhans +2117 Benign neoplasm of islets of Langerhans +2118 Benign neoplasm of retroperitoneum and peritoneum +2119 Benign neoplasm of other and unspecified site in the digestive system +2120 Benign neoplasm of nasal cavities, middle ear, and accessory sinuses +2121 Benign neoplasm of larynx +2122 Benign neoplasm of trachea +2123 Benign neoplasm of bronchus and lung +2124 Benign neoplasm of pleura +2125 Benign neoplasm of mediastinum +2126 Benign neoplasm of thymus +2127 Benign neoplasm of heart +2128 Benign neoplasm of other specified sites of respiratory and intrathoracic organs +2129 Benign neoplasm of respiratory and intrathoracic organs, site unspecified +2130 Benign neoplasm of bones of skull and face +2131 Benign neoplasm of lower jaw bone +2132 Benign neoplasm of vertebral column, excluding sacrum and coccyx +2133 Benign neoplasm of ribs, sternum, and clavicle +2134 Benign neoplasm of scapula and long bones of upper limb +2135 Benign neoplasm of short bones of upper limb +2136 Benign neoplasm of pelvic bones, sacrum, and coccyx +2137 Benign neoplasm of long bones of lower limb +2138 Benign neoplasm of short bones of lower limb +2139 Benign neoplasm of bone and articular cartilage, site unspecified +2140 Lipoma of skin and subcutaneous tissue of face +2141 Lipoma of other skin and subcutaneous tissue +2142 Lipoma of intrathoracic organs +2143 Lipoma of intra-abdominal organs +2144 Lipoma of spermatic cord +2148 Lipoma of other specified sites +2149 Lipoma, unspecified site +2150 Other benign neoplasm of connective and other soft tissue of head, face, and neck +2152 Other benign neoplasm of connective and other soft tissue of upper limb, including shoulder +2153 Other benign neoplasm of connective and other soft tissue of lower limb, including hip +2154 Other benign neoplasm of connective and other soft tissue of thorax +2155 Other benign neoplasm of connective and other soft tissue of abdomen +2156 Other benign neoplasm of connective and other soft tissue of pelvis +2157 Other benign neoplasm of connective and other soft tissue of trunk, unspecified +2158 Other benign neoplasm of connective and other soft tissue of other specified sites +2159 Other benign neoplasm of connective and other soft tissue, site unspecified +2160 Benign neoplasm of skin of lip +2161 Benign neoplasm of eyelid, including canthus +2162 Benign neoplasm of ear and external auditory canal +2163 Benign neoplasm of skin of other and unspecified parts of face +2164 Benign neoplasm of scalp and skin of neck +2165 Benign neoplasm of skin of trunk, except scrotum +2166 Benign neoplasm of skin of upper limb, including shoulder +2167 Benign neoplasm of skin of lower limb, including hip +2168 Benign neoplasm of other specified sites of skin +2169 Benign neoplasm of skin, site unspecified +217 Benign neoplasm of breast +2180 Submucous leiomyoma of uterus +2181 Intramural leiomyoma of uterus +2182 Subserous leiomyoma of uterus +2189 Leiomyoma of uterus, unspecified +2190 Benign neoplasm of cervix uteri +2191 Benign neoplasm of corpus uteri +2198 Benign neoplasm of other specified parts of uterus +2199 Benign neoplasm of uterus, part unspecified +220 Benign neoplasm of ovary +2210 Benign neoplasm of fallopian tube and uterine ligaments +2211 Benign neoplasm of vagina +2212 Benign neoplasm of vulva +2218 Benign neoplasm of other specified sites of female genital organs +2219 Benign neoplasm of female genital organ, site unspecified +2220 Benign neoplasm of testis +2221 Benign neoplasm of penis +2222 Benign neoplasm of prostate +2223 Benign neoplasm of epididymis +2224 Benign neoplasm of scrotum +2228 Benign neoplasm of other specified sites of male genital organs +2229 Benign neoplasm of male genital organ, site unspecified +2230 Benign neoplasm of kidney, except pelvis +2231 Benign neoplasm of renal pelvis +2232 Benign neoplasm of ureter +2233 Benign neoplasm of bladder +22381 Benign neoplasm of urethra +22389 Benign neoplasm of other specified sites of urinary organs +2239 Benign neoplasm of urinary organ, site unspecified +2240 Benign neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid +2241 Benign neoplasm of orbit +2242 Benign neoplasm of lacrimal gland +2243 Benign neoplasm of conjunctiva +2244 Benign neoplasm of cornea +2245 Benign neoplasm of retina +2246 Benign neoplasm of choroid +2247 Benign neoplasm of lacrimal duct +2248 Benign neoplasm of other specified parts of eye +2249 Benign neoplasm of eye, part unspecified +2250 Benign neoplasm of brain +2251 Benign neoplasm of cranial nerves +2252 Benign neoplasm of cerebral meninges +2253 Benign neoplasm of spinal cord +2254 Benign neoplasm of spinal meninges +2258 Benign neoplasm of other specified sites of nervous system +2259 Benign neoplasm of nervous system, part unspecified +226 Benign neoplasm of thyroid glands +2270 Benign neoplasm of adrenal gland +2271 Benign neoplasm of parathyroid gland +2273 Benign neoplasm of pituitary gland and craniopharyngeal duct +2274 Benign neoplasm of pineal gland +2275 Benign neoplasm of carotid body +2276 Benign neoplasm of aortic body and other paraganglia +2278 Benign neoplasm of other endocrine glands and related structures +2279 Benign neoplasm of endocrine gland, site unspecified +22800 Hemangioma of unspecified site +22801 Hemangioma of skin and subcutaneous tissue +22802 Hemangioma of intracranial structures +22803 Hemangioma of retina +22804 Hemangioma of intra-abdominal structures +22809 Hemangioma of other sites +2281 Lymphangioma, any site +2290 Benign neoplasm of lymph nodes +2298 Benign neoplasm of other specified sites +2299 Benign neoplasm of unspecified site +2300 Carcinoma in situ of lip, oral cavity, and pharynx +2301 Carcinoma in situ of esophagus +2302 Carcinoma in situ of stomach +2303 Carcinoma in situ of colon +2304 Carcinoma in situ of rectum +2305 Carcinoma in situ of anal canal +2306 Carcinoma in situ of anus, unspecified +2307 Carcinoma in situ of other and unspecified parts of intestine +2308 Carcinoma in situ of liver and biliary system +2309 Carcinoma in situ of other and unspecified digestive organs +2310 Carcinoma in situ of larynx +2311 Carcinoma in situ of trachea +2312 Carcinoma in situ of bronchus and lung +2318 Carcinoma in situ of other specified parts of respiratory system +2319 Carcinoma in situ of respiratory system, part unspecified +2320 Carcinoma in situ of skin of lip +2321 Carcinoma in situ of eyelid, including canthus +2322 Carcinoma in situ of skin of ear and external auditory canal +2323 Carcinoma in situ of skin of other and unspecified parts of face +2324 Carcinoma in situ of scalp and skin of neck +2325 Carcinoma in situ of skin of trunk, except scrotum +2326 Carcinoma in situ of skin of upper limb, including shoulder +2327 Carcinoma in situ of skin of lower limb, including hip +2328 Carcinoma in situ of other specified sites of skin +2329 Carcinoma in situ of skin, site unspecified +2330 Carcinoma in situ of breast +2331 Carcinoma in situ of cervix uteri +2332 Carcinoma in situ of other and unspecified parts of uterus +23330 Carcinoma in situ, unspecified female genital organ +23331 Carcinoma in situ, vagina +23332 Carcinoma in situ, vulva +23339 Carcinoma in situ, other female genital organ +2334 Carcinoma in situ of prostate +2335 Carcinoma in situ of penis +2336 Carcinoma in situ of other and unspecified male genital organs +2337 Carcinoma in situ of bladder +2339 Carcinoma in situ of other and unspecified urinary organs +2340 Carcinoma in situ of eye +2348 Carcinoma in situ of other specified sites +2349 Carcinoma in situ, site unspecified +2350 Neoplasm of uncertain behavior of major salivary glands +2351 Neoplasm of uncertain behavior of lip, oral cavity, and pharynx +2352 Neoplasm of uncertain behavior of stomach, intestines, and rectum +2353 Neoplasm of uncertain behavior of liver and biliary passages +2354 Neoplasm of uncertain behavior of retroperitoneum and peritoneum +2355 Neoplasm of uncertain behavior of other and unspecified digestive organs +2356 Neoplasm of uncertain behavior of larynx +2357 Neoplasm of uncertain behavior of trachea, bronchus, and lung +2358 Neoplasm of uncertain behavior of pleura, thymus, and mediastinum +2359 Neoplasm of uncertain behavior of other and unspecified respiratory organs +2360 Neoplasm of uncertain behavior of uterus +2361 Neoplasm of uncertain behavior of placenta +2362 Neoplasm of uncertain behavior of ovary +2363 Neoplasm of uncertain behavior of other and unspecified female genital organs +2364 Neoplasm of uncertain behavior of testis +2365 Neoplasm of uncertain behavior of prostate +2366 Neoplasm of uncertain behavior of other and unspecified male genital organs +2367 Neoplasm of uncertain behavior of bladder +23690 Neoplasm of uncertain behavior of urinary organ, unspecified +23691 Neoplasm of uncertain behavior of kidney and ureter +23699 Neoplasm of uncertain behavior of other and unspecified urinary organs +2370 Neoplasm of uncertain behavior of pituitary gland and craniopharyngeal duct +2371 Neoplasm of uncertain behavior of pineal gland +2372 Neoplasm of uncertain behavior of adrenal gland +2373 Neoplasm of uncertain behavior of paraganglia +2374 Neoplasm of uncertain behavior of other and unspecified endocrine glands +2375 Neoplasm of uncertain behavior of brain and spinal cord +2376 Neoplasm of uncertain behavior of meninges +23770 Neurofibromatosis, unspecified +23771 Neurofibromatosis, type 1 [von recklinghausen's disease] +23772 Neurofibromatosis, type 2 [acoustic neurofibromatosis] +23773 Schwannomatosis +23779 Other neurofibromatosis +2379 Neoplasm of uncertain behavior of other and unspecified parts of nervous system +2380 Neoplasm of uncertain behavior of bone and articular cartilage +2381 Neoplasm of uncertain behavior of connective and other soft tissue +2382 Neoplasm of uncertain behavior of skin +2383 Neoplasm of uncertain behavior of breast +2384 Polycythemia vera +2385 Neoplasm of uncertain behavior of histiocytic and mast cells +2386 Neoplasm of uncertain behavior of plasma cells +23871 Essential thrombocythemia +23872 Low grade myelodysplastic syndrome lesions +23873 High grade myelodysplastic syndrome lesions +23874 Myelodysplastic syndrome with 5q deletion +23875 Myelodysplastic syndrome, unspecified +23876 Myelofibrosis with myeloid metaplasia +23877 Post-transplant lymphoproliferative disorder (PTLD) +23879 Other lymphatic and hematopoietic tissues +2388 Neoplasm of uncertain behavior of other specified sites +2389 Neoplasm of uncertain behavior, site unspecified +2390 Neoplasm of unspecified nature of digestive system +2391 Neoplasm of unspecified nature of respiratory system +2392 Neoplasm of unspecified nature of bone, soft tissue, and skin +2393 Neoplasm of unspecified nature of breast +2394 Neoplasm of unspecified nature of bladder +2395 Neoplasm of unspecified nature of other genitourinary organs +2396 Neoplasm of unspecified nature of brain +2397 Neoplasm of unspecified nature of endocrine glands and other parts of nervous system +23981 Neoplasms of unspecified nature, retina and choroid +23989 Neoplasms of unspecified nature, other specified sites +2399 Neoplasm of unspecified nature, site unspecified +2400 Goiter, specified as simple +2409 Goiter, unspecified +2410 Nontoxic uninodular goiter +2411 Nontoxic multinodular goiter +2419 Unspecified nontoxic nodular goiter +24200 Toxic diffuse goiter without mention of thyrotoxic crisis or storm +24201 Toxic diffuse goiter with mention of thyrotoxic crisis or storm +24210 Toxic uninodular goiter without mention of thyrotoxic crisis or storm +24211 Toxic uninodular goiter with mention of thyrotoxic crisis or storm +24220 Toxic multinodular goiter without mention of thyrotoxic crisis or storm +24221 Toxic multinodular goiter with mention of thyrotoxic crisis or storm +24230 Toxic nodular goiter, unspecified type, without mention of thyrotoxic crisis or storm +24231 Toxic nodular goiter, unspecified type, with mention of thyrotoxic crisis or storm +24240 Thyrotoxicosis from ectopic thyroid nodule without mention of thyrotoxic crisis or storm +24241 Thyrotoxicosis from ectopic thyroid nodule with mention of thyrotoxic crisis or storm +24280 Thyrotoxicosis of other specified origin without mention of thyrotoxic crisis or storm +24281 Thyrotoxicosis of other specified origin with mention of thyrotoxic crisis or storm +24290 Thyrotoxicosis without mention of goiter or other cause, and without mention of thyrotoxic crisis or storm +24291 Thyrotoxicosis without mention of goiter or other cause, with mention of thyrotoxic crisis or storm +243 Congenital hypothyroidism +2440 Postsurgical hypothyroidism +2441 Other postablative hypothyroidism +2442 Iodine hypothyroidism +2443 Other iatrogenic hypothyroidism +2448 Other specified acquired hypothyroidism +2449 Unspecified acquired hypothyroidism +2450 Acute thyroiditis +2451 Subacute thyroiditis +2452 Chronic lymphocytic thyroiditis +2453 Chronic fibrous thyroiditis +2454 Iatrogenic thyroiditis +2458 Other and unspecified chronic thyroiditis +2459 Thyroiditis, unspecified +2460 Disorders of thyrocalcitonin secretion +2461 Dyshormonogenic goiter +2462 Cyst of thyroid +2463 Hemorrhage and infarction of thyroid +2468 Other specified disorders of thyroid +2469 Unspecified disorder of thyroid +24900 Secondary diabetes mellitus without mention of complication, not stated as uncontrolled, or unspecified +24901 Secondary diabetes mellitus without mention of complication, uncontrolled +24910 Secondary diabetes mellitus with ketoacidosis, not stated as uncontrolled, or unspecified +24911 Secondary diabetes mellitus with ketoacidosis, uncontrolled +24920 Secondary diabetes mellitus with hyperosmolarity, not stated as uncontrolled, or unspecified +24921 Secondary diabetes mellitus with hyperosmolarity, uncontrolled +24930 Secondary diabetes mellitus with other coma, not stated as uncontrolled, or unspecified +24931 Secondary diabetes mellitus with other coma, uncontrolled +24940 Secondary diabetes mellitus with renal manifestations, not stated as uncontrolled, or unspecified +24941 Secondary diabetes mellitus with renal manifestations, uncontrolled +24950 Secondary diabetes mellitus with ophthalmic manifestations, not stated as uncontrolled, or unspecified +24951 Secondary diabetes mellitus with ophthalmic manifestations, uncontrolled +24960 Secondary diabetes mellitus with neurological manifestations, not stated as uncontrolled, or unspecified +24961 Secondary diabetes mellitus with neurological manifestations, uncontrolled +24970 Secondary diabetes mellitus with peripheral circulatory disorders, not stated as uncontrolled, or unspecified +24971 Secondary diabetes mellitus with peripheral circulatory disorders, uncontrolled +24980 Secondary diabetes mellitus with other specified manifestations, not stated as uncontrolled, or unspecified +24981 Secondary diabetes mellitus with other specified manifestations, uncontrolled +24990 Secondary diabetes mellitus with unspecified complication, not stated as uncontrolled, or unspecified +24991 Secondary diabetes mellitus with unspecified complication, uncontrolled +25000 Diabetes mellitus without mention of complication, type II or unspecified type, not stated as uncontrolled +25001 Diabetes mellitus without mention of complication, type I [juvenile type], not stated as uncontrolled +25002 Diabetes mellitus without mention of complication, type II or unspecified type, uncontrolled +25003 Diabetes mellitus without mention of complication, type I [juvenile type], uncontrolled +25010 Diabetes with ketoacidosis, type II or unspecified type, not stated as uncontrolled +25011 Diabetes with ketoacidosis, type I [juvenile type], not stated as uncontrolled +25012 Diabetes with ketoacidosis, type II or unspecified type, uncontrolled +25013 Diabetes with ketoacidosis, type I [juvenile type], uncontrolled +25020 Diabetes with hyperosmolarity, type II or unspecified type, not stated as uncontrolled +25021 Diabetes with hyperosmolarity, type I [juvenile type], not stated as uncontrolled +25022 Diabetes with hyperosmolarity, type II or unspecified type, uncontrolled +25023 Diabetes with hyperosmolarity, type I [juvenile type], uncontrolled +25030 Diabetes with other coma, type II or unspecified type, not stated as uncontrolled +25031 Diabetes with other coma, type I [juvenile type], not stated as uncontrolled +25032 Diabetes with other coma, type II or unspecified type, uncontrolled +25033 Diabetes with other coma, type I [juvenile type], uncontrolled +25040 Diabetes with renal manifestations, type II or unspecified type, not stated as uncontrolled +25041 Diabetes with renal manifestations, type I [juvenile type], not stated as uncontrolled +25042 Diabetes with renal manifestations, type II or unspecified type, uncontrolled +25043 Diabetes with renal manifestations, type I [juvenile type], uncontrolled +25050 Diabetes with ophthalmic manifestations, type II or unspecified type, not stated as uncontrolled +25051 Diabetes with ophthalmic manifestations, type I [juvenile type], not stated as uncontrolled +25052 Diabetes with ophthalmic manifestations, type II or unspecified type, uncontrolled +25053 Diabetes with ophthalmic manifestations, type I [juvenile type], uncontrolled +25060 Diabetes with neurological manifestations, type II or unspecified type, not stated as uncontrolled +25061 Diabetes with neurological manifestations, type I [juvenile type], not stated as uncontrolled +25062 Diabetes with neurological manifestations, type II or unspecified type, uncontrolled +25063 Diabetes with neurological manifestations, type I [juvenile type], uncontrolled +25070 Diabetes with peripheral circulatory disorders, type II or unspecified type, not stated as uncontrolled +25071 Diabetes with peripheral circulatory disorders, type I [juvenile type], not stated as uncontrolled +25072 Diabetes with peripheral circulatory disorders, type II or unspecified type, uncontrolled +25073 Diabetes with peripheral circulatory disorders, type I [juvenile type], uncontrolled +25080 Diabetes with other specified manifestations, type II or unspecified type, not stated as uncontrolled +25081 Diabetes with other specified manifestations, type I [juvenile type], not stated as uncontrolled +25082 Diabetes with other specified manifestations, type II or unspecified type, uncontrolled +25083 Diabetes with other specified manifestations, type I [juvenile type], uncontrolled +25090 Diabetes with unspecified complication, type II or unspecified type, not stated as uncontrolled +25091 Diabetes with unspecified complication, type I [juvenile type], not stated as uncontrolled +25092 Diabetes with unspecified complication, type II or unspecified type, uncontrolled +25093 Diabetes with unspecified complication, type I [juvenile type], uncontrolled +2510 Hypoglycemic coma +2511 Other specified hypoglycemia +2512 Hypoglycemia, unspecified +2513 Postsurgical hypoinsulinemia +2514 Abnormality of secretion of glucagon +2515 Abnormality of secretion of gastrin +2518 Other specified disorders of pancreatic internal secretion +2519 Unspecified disorder of pancreatic internal secretion +25200 Hyperparathyroidism, unspecified +25201 Primary hyperparathyroidism +25202 Secondary hyperparathyroidism, non-renal +25208 Other hyperparathyroidism +2521 Hypoparathyroidism +2528 Other specified disorders of parathyroid gland +2529 Unspecified disorder of parathyroid gland +2530 Acromegaly and gigantism +2531 Other and unspecified anterior pituitary hyperfunction +2532 Panhypopituitarism +2533 Pituitary dwarfism +2534 Other anterior pituitary disorders +2535 Diabetes insipidus +2536 Other disorders of neurohypophysis +2537 Iatrogenic pituitary disorders +2538 Other disorders of the pituitary and other syndromes of diencephalohypophyseal origin +2539 Unspecified disorder of the pituitary gland and its hypothalamic control +2540 Persistent hyperplasia of thymus +2541 Abscess of thymus +2548 Other specified diseases of thymus gland +2549 Unspecified disease of thymus gland +2550 Cushing's syndrome +25510 Hyperaldosteronism, unspecified +25511 Glucocorticoid-remediable aldosteronism +25512 Conn's syndrome +25513 Bartter's syndrome +25514 Other secondary aldosteronism +2552 Adrenogenital disorders +2553 Other corticoadrenal overactivity +25541 Glucocorticoid deficiency +25542 Mineralocorticoid deficiency +2555 Other adrenal hypofunction +2556 Medulloadrenal hyperfunction +2558 Other specified disorders of adrenal glands +2559 Unspecified disorder of adrenal glands +2560 Hyperestrogenism +2561 Other ovarian hyperfunction +2562 Postablative ovarian failure +25631 Premature menopause +25639 Other ovarian failure +2564 Polycystic ovaries +2568 Other ovarian dysfunction +2569 Unspecified ovarian dysfunction +2570 Testicular hyperfunction +2571 Postablative testicular hypofunction +2572 Other testicular hypofunction +2578 Other testicular dysfunction +2579 Unspecified testicular dysfunction +25801 Multiple endocrine neoplasia [MEN] type I +25802 Multiple endocrine neoplasia [MEN] type IIA +25803 Multiple endocrine neoplasia [MEN] type IIB +2581 Other combinations of endocrine dysfunction +2588 Other specified polyglandular dysfunction +2589 Polyglandular dysfunction, unspecified +2590 Delay in sexual development and puberty, not elsewhere classified +2591 Precocious sexual development and puberty, not elsewhere classified +2592 Carcinoid syndrome +2593 Ectopic hormone secretion, not elsewhere classified +2594 Dwarfism, not elsewhere classified +25950 Androgen insensitivity, unspecified +25951 Androgen insensitivity syndrome +25952 Partial androgen insensitivity +2598 Other specified endocrine disorders +2599 Unspecified endocrine disorder +260 Kwashiorkor +261 Nutritional marasmus +262 Other severe protein-calorie malnutrition +2630 Malnutrition of moderate degree +2631 Malnutrition of mild degree +2632 Arrested development following protein-calorie malnutrition +2638 Other protein-calorie malnutrition +2639 Unspecified protein-calorie malnutrition +2640 Vitamin A deficiency with conjunctival xerosis +2641 Vitamin A deficiency with conjunctival xerosis and Bitot's spot +2642 Vitamin A deficiency with corneal xerosis +2643 Vitamin A deficiency with corneal ulceration and xerosis +2644 Vitamin A deficiency with keratomalacia +2645 Vitamin A deficiency with night blindness +2646 Vitamin A deficiency with xerophthalmic scars of cornea +2647 Other ocular manifestations of vitamin A deficiency +2648 Other manifestations of vitamin A deficiency +2649 Unspecified vitamin A deficiency +2650 Beriberi +2651 Other and unspecified manifestations of thiamine deficiency +2652 Pellagra +2660 Ariboflavinosis +2661 Vitamin B6 deficiency +2662 Other B-complex deficiencies +2669 Unspecified vitamin B deficiency +267 Ascorbic acid deficiency +2680 Rickets, active +2681 Rickets, late effect +2682 Osteomalacia, unspecified +2689 Unspecified vitamin D deficiency +2690 Deficiency of vitamin K +2691 Deficiency of other vitamins +2692 Unspecified vitamin deficiency +2693 Mineral deficiency, not elsewhere classified +2698 Other nutritional deficiency +2699 Unspecified nutritional deficiency +2700 Disturbances of amino-acid transport +2701 Phenylketonuria [PKU] +2702 Other disturbances of aromatic amino-acid metabolism +2703 Disturbances of branched-chain amino-acid metabolism +2704 Disturbances of sulphur-bearing amino-acid metabolism +2705 Disturbances of histidine metabolism +2706 Disorders of urea cycle metabolism +2707 Other disturbances of straight-chain amino-acid metabolism +2708 Other specified disorders of amino-acid metabolism +2709 Unspecified disorder of amino-acid metabolism +2710 Glycogenosis +2711 Galactosemia +2712 Hereditary fructose intolerance +2713 Intestinal disaccharidase deficiencies and disaccharide malabsorption +2714 Renal glycosuria +2718 Other specified disorders of carbohydrate transport and metabolism +2719 Unspecified disorder of carbohydrate transport and metabolism +2720 Pure hypercholesterolemia +2721 Pure hyperglyceridemia +2722 Mixed hyperlipidemia +2723 Hyperchylomicronemia +2724 Other and unspecified hyperlipidemia +2725 Lipoprotein deficiencies +2726 Lipodystrophy +2727 Lipidoses +2728 Other disorders of lipoid metabolism +2729 Unspecified disorder of lipoid metabolism +2730 Polyclonal hypergammaglobulinemia +2731 Monoclonal paraproteinemia +2732 Other paraproteinemias +2733 Macroglobulinemia +2734 Alpha-1-antitrypsin deficiency +2738 Other disorders of plasma protein metabolism +2739 Unspecified disorder of plasma protein metabolism +27400 Gouty arthropathy, unspecified +27401 Acute gouty arthropathy +27402 Chronic gouty arthropathy without mention of tophus (tophi) +27403 Chronic gouty arthropathy with tophus (tophi) +27410 Gouty nephropathy, unspecified +27411 Uric acid nephrolithiasis +27419 Other gouty nephropathy +27481 Gouty tophi of ear +27482 Gouty tophi of other sites, except ear +27489 Gout with other specified manifestations +2749 Gout, unspecified +27501 Hereditary hemochromatosis +27502 Hemochromatosis due to repeated red blood cell transfusions +27503 Other hemochromatosis +27509 Other disorders of iron metabolism +2751 Disorders of copper metabolism +2752 Disorders of magnesium metabolism +2753 Disorders of phosphorus metabolism +27540 Unspecified disorder of calcium metabolism +27541 Hypocalcemia +27542 Hypercalcemia +27549 Other disorders of calcium metabolism +2755 Hungry bone syndrome +2758 Other specified disorders of mineral metabolism +2759 Unspecified disorder of mineral metabolism +2760 Hyperosmolality and/or hypernatremia +2761 Hyposmolality and/or hyponatremia +2762 Acidosis +2763 Alkalosis +2764 Mixed acid-base balance disorder +27650 Volume depletion, unspecified +27651 Dehydration +27652 Hypovolemia +27661 Transfusion associated circulatory overload +27669 Other fluid overload +2767 Hyperpotassemia +2768 Hypopotassemia +2769 Electrolyte and fluid disorders not elsewhere classified +27700 Cystic fibrosis without mention of meconium ileus +27701 Cystic fibrosis with meconium ileus +27702 Cystic fibrosis with pulmonary manifestations +27703 Cystic fibrosis with gastrointestinal manifestations +27709 Cystic fibrosis with other manifestations +2771 Disorders of porphyrin metabolism +2772 Other disorders of purine and pyrimidine metabolism +27730 Amyloidosis, unspecified +27731 Familial Mediterranean fever +27739 Other amyloidosis +2774 Disorders of bilirubin excretion +2775 Mucopolysaccharidosis +2776 Other deficiencies of circulating enzymes +2777 Dysmetabolic syndrome X +27781 Primary carnitine deficiency +27782 Carnitine deficiency due to inborn errors of metabolism +27783 Iatrogenic carnitine deficiency +27784 Other secondary carnitine deficiency +27785 Disorders of fatty acid oxidation +27786 Peroxisomal disorders +27787 Disorders of mitochondrial metabolism +27788 Tumor lysis syndrome +27789 Other specified disorders of metabolism +2779 Unspecified disorder of metabolism +27800 Obesity, unspecified +27801 Morbid obesity +27802 Overweight +27803 Obesity hypoventilation syndrome +2781 Localized adiposity +2782 Hypervitaminosis A +2783 Hypercarotinemia +2784 Hypervitaminosis D +2788 Other hyperalimentation +27900 Hypogammaglobulinemia, unspecified +27901 Selective IgA immunodeficiency +27902 Selective IgM immunodeficiency +27903 Other selective immunoglobulin deficiencies +27904 Congenital hypogammaglobulinemia +27905 Immunodeficiency with increased IgM +27906 Common variable immunodeficiency +27909 Other deficiency of humoral immunity +27910 Immunodeficiency with predominant T-cell defect, unspecified +27911 Digeorge's syndrome +27912 Wiskott-aldrich syndrome +27913 Nezelof's syndrome +27919 Other deficiency of cell-mediated immunity +2792 Combined immunity deficiency +2793 Unspecified immunity deficiency +27941 Autoimmune lymphoproliferative syndrome +27949 Autoimmune disease, not elsewhere classified +27950 Graft-versus-host disease, unspecified +27951 Acute graft-versus-host disease +27952 Chronic graft-versus-host disease +27953 Acute on chronic graft-versus-host disease +2798 Other specified disorders involving the immune mechanism +2799 Unspecified disorder of immune mechanism +2800 Iron deficiency anemia secondary to blood loss (chronic) +2801 Iron deficiency anemia secondary to inadequate dietary iron intake +2808 Other specified iron deficiency anemias +2809 Iron deficiency anemia, unspecified +2810 Pernicious anemia +2811 Other vitamin B12 deficiency anemia +2812 Folate-deficiency anemia +2813 Other specified megaloblastic anemias not elsewhere classified +2814 Protein-deficiency anemia +2818 Anemia associated with other specified nutritional deficiency +2819 Unspecified deficiency anemia +2820 Hereditary spherocytosis +2821 Hereditary elliptocytosis +2822 Anemias due to disorders of glutathione metabolism +2823 Other hemolytic anemias due to enzyme deficiency +28240 Thalassemia, unspecified +28241 Sickle-cell thalassemia without crisis +28242 Sickle-cell thalassemia with crisis +28243 Alpha thalassemia +28244 Beta thalassemia +28245 Delta-beta thalassemia +28246 Thalassemia minor +28247 Hemoglobin E-beta thalassemia +28249 Other thalassemia +2825 Sickle-cell trait +28260 Sickle-cell disease, unspecified +28261 Hb-SS disease without crisis +28262 Hb-SS disease with crisis +28263 Sickle-cell/Hb-C disease without crisis +28264 Sickle-cell/Hb-C disease with crisis +28268 Other sickle-cell disease without crisis +28269 Other sickle-cell disease with crisis +2827 Other hemoglobinopathies +2828 Other specified hereditary hemolytic anemias +2829 Hereditary hemolytic anemia, unspecified +2830 Autoimmune hemolytic anemias +28310 Non-autoimmune hemolytic anemia, unspecified +28311 Hemolytic-uremic syndrome +28319 Other non-autoimmune hemolytic anemias +2832 Hemoglobinuria due to hemolysis from external causes +2839 Acquired hemolytic anemia, unspecified +28401 Constitutional red blood cell aplasia +28409 Other constitutional aplastic anemia +28411 Antineoplastic chemotherapy induced pancytopenia +28412 Other drug-induced pancytopenia +28419 Other pancytopenia +2842 Myelophthisis +28481 Red cell aplasia (acquired)(adult)(with thymoma) +28489 Other specified aplastic anemias +2849 Aplastic anemia, unspecified +2850 Sideroblastic anemia +2851 Acute posthemorrhagic anemia +28521 Anemia in chronic kidney disease +28522 Anemia in neoplastic disease +28529 Anemia of other chronic disease +2853 Antineoplastic chemotherapy induced anemia +2858 Other specified anemias +2859 Anemia, unspecified +2860 Congenital factor VIII disorder +2861 Congenital factor IX disorder +2862 Congenital factor XI deficiency +2863 Congenital deficiency of other clotting factors +2864 Von Willebrand's disease +28652 Acquired hemophilia +28653 Antiphospholipid antibody with hemorrhagic disorder +28659 Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors +2866 Defibrination syndrome +2867 Acquired coagulation factor deficiency +2869 Other and unspecified coagulation defects +2870 Allergic purpura +2871 Qualitative platelet defects +2872 Other nonthrombocytopenic purpuras +28730 Primary thrombocytopenia,unspecified +28731 Immune thrombocytopenic purpura +28732 Evans' syndrome +28733 Congenital and hereditary thrombocytopenic purpura +28739 Other primary thrombocytopenia +28741 Posttransfusion purpura +28749 Other secondary thrombocytopenia +2875 Thrombocytopenia, unspecified +2878 Other specified hemorrhagic conditions +2879 Unspecified hemorrhagic conditions +28800 Neutropenia, unspecified +28801 Congenital neutropenia +28802 Cyclic neutropenia +28803 Drug induced neutropenia +28804 Neutropenia due to infection +28809 Other neutropenia +2881 Functional disorders of polymorphonuclear neutrophils +2882 Genetic anomalies of leukocytes +2883 Eosinophilia +2884 Hemophagocytic syndromes +28850 Leukocytopenia, unspecified +28851 Lymphocytopenia +28859 Other decreased white blood cell count +28860 Leukocytosis, unspecified +28861 Lymphocytosis (symptomatic) +28862 Leukemoid reaction +28863 Monocytosis (symptomatic) +28864 Plasmacytosis +28865 Basophilia +28866 Bandemia +28869 Other elevated white blood cell count +2888 Other specified disease of white blood cells +2889 Unspecified disease of white blood cells +2890 Polycythemia, secondary +2891 Chronic lymphadenitis +2892 Nonspecific mesenteric lymphadenitis +2893 Lymphadenitis, unspecified, except mesenteric +2894 Hypersplenism +28950 Disease of spleen, unspecified +28951 Chronic congestive splenomegaly +28952 Splenic sequestration +28953 Neutropenic splenomegaly +28959 Other diseases of spleen +2896 Familial polycythemia +2897 Methemoglobinemia +28981 Primary hypercoagulable state +28982 Secondary hypercoagulable state +28983 Myelofibrosis +28984 Heparin-induced thrombocytopenia (HIT) +28989 Other specified diseases of blood and blood-forming organs +2899 Unspecified diseases of blood and blood-forming organs +2900 Senile dementia, uncomplicated +29010 Presenile dementia, uncomplicated +29011 Presenile dementia with delirium +29012 Presenile dementia with delusional features +29013 Presenile dementia with depressive features +29020 Senile dementia with delusional features +29021 Senile dementia with depressive features +2903 Senile dementia with delirium +29040 Vascular dementia, uncomplicated +29041 Vascular dementia, with delirium +29042 Vascular dementia, with delusions +29043 Vascular dementia, with depressed mood +2908 Other specified senile psychotic conditions +2909 Unspecified senile psychotic condition +2910 Alcohol withdrawal delirium +2911 Alcohol-induced persisting amnestic disorder +2912 Alcohol-induced persisting dementia +2913 Alcohol-induced psychotic disorder with hallucinations +2914 Idiosyncratic alcohol intoxication +2915 Alcohol-induced psychotic disorder with delusions +29181 Alcohol withdrawal +29182 Alcohol induced sleep disorders +29189 Other alcohol-induced mental disorders +2919 Unspecified alcohol-induced mental disorders +2920 Drug withdrawal +29211 Drug-induced psychotic disorder with delusions +29212 Drug-induced psychotic disorder with hallucinations +2922 Pathological drug intoxication +29281 Drug-induced delirium +29282 Drug-induced persisting dementia +29283 Drug-induced persisting amnestic disorder +29284 Drug-induced mood disorder +29285 Drug induced sleep disorders +29289 Other specified drug-induced mental disorders +2929 Unspecified drug-induced mental disorder +2930 Delirium due to conditions classified elsewhere +2931 Subacute delirium +29381 Psychotic disorder with delusions in conditions classified elsewhere +29382 Psychotic disorder with hallucinations in conditions classified elsewhere +29383 Mood disorder in conditions classified elsewhere +29384 Anxiety disorder in conditions classified elsewhere +29389 Other specified transient mental disorders due to conditions classified elsewhere, other +2939 Unspecified transient mental disorder in conditions classified elsewhere +2940 Amnestic disorder in conditions classified elsewhere +29410 Dementia in conditions classified elsewhere without behavioral disturbance +29411 Dementia in conditions classified elsewhere with behavioral disturbance +29420 Dementia, unspecified, without behavioral disturbance +29421 Dementia, unspecified, with behavioral disturbance +2948 Other persistent mental disorders due to conditions classified elsewhere +2949 Unspecified persistent mental disorders due to conditions classified elsewhere +29500 Simple type schizophrenia, unspecified +29501 Simple type schizophrenia, subchronic +29502 Simple type schizophrenia, chronic +29503 Simple type schizophrenia, subchronic with acute exacerbation +29504 Simple type schizophrenia, chronic with acute exacerbation +29505 Simple type schizophrenia, in remission +29510 Disorganized type schizophrenia, unspecified +29511 Disorganized type schizophrenia, subchronic +29512 Disorganized type schizophrenia, chronic +29513 Disorganized type schizophrenia, subchronic with acute exacerbation +29514 Disorganized type schizophrenia, chronic with acute exacerbation +29515 Disorganized type schizophrenia, in remission +29520 Catatonic type schizophrenia, unspecified +29521 Catatonic type schizophrenia, subchronic +29522 Catatonic type schizophrenia, chronic +29523 Catatonic type schizophrenia, subchronic with acute exacerbation +29524 Catatonic type schizophrenia, chronic with acute exacerbation +29525 Catatonic type schizophrenia, in remission +29530 Paranoid type schizophrenia, unspecified +29531 Paranoid type schizophrenia, subchronic +29532 Paranoid type schizophrenia, chronic +29533 Paranoid type schizophrenia, subchronic with acute exacerbation +29534 Paranoid type schizophrenia, chronic with acute exacerbation +29535 Paranoid type schizophrenia, in remission +29540 Schizophreniform disorder, unspecified +29541 Schizophreniform disorder, subchronic +29542 Schizophreniform disorder, chronic +29543 Schizophreniform disorder, subchronic with acute exacerbation +29544 Schizophreniform disorder, chronic with acute exacerbation +29545 Schizophreniform disorder, in remission +29550 Latent schizophrenia, unspecified +29551 Latent schizophrenia, subchronic +29552 Latent schizophrenia, chronic +29553 Latent schizophrenia, subchronic with acute exacerbation +29554 Latent schizophrenia, chronic with acute exacerbation +29555 Latent schizophrenia, in remission +29560 Schizophrenic disorders, residual type, unspecified +29561 Schizophrenic disorders, residual type, subchronic +29562 Schizophrenic disorders, residual type, chronic +29563 Schizophrenic disorders, residual type, subchronic with acute exacerbation +29564 Schizophrenic disorders, residual type, chronic with acute exacerbation +29565 Schizophrenic disorders, residual type, in remission +29570 Schizoaffective disorder, unspecified +29571 Schizoaffective disorder, subchronic +29572 Schizoaffective disorder, chronic +29573 Schizoaffective disorder, subchronic with acute exacerbation +29574 Schizoaffective disorder, chronic with acute exacerbation +29575 Schizoaffective disorder, in remission +29580 Other specified types of schizophrenia, unspecified +29581 Other specified types of schizophrenia, subchronic +29582 Other specified types of schizophrenia, chronic +29583 Other specified types of schizophrenia, subchronic with acute exacerbation +29584 Other specified types of schizophrenia, chronic with acute exacerbation +29585 Other specified types of schizophrenia, in remission +29590 Unspecified schizophrenia, unspecified +29591 Unspecified schizophrenia, subchronic +29592 Unspecified schizophrenia, chronic +29593 Unspecified schizophrenia, subchronic with acute exacerbation +29594 Unspecified schizophrenia, chronic with acute exacerbation +29595 Unspecified schizophrenia, in remission +29600 Bipolar I disorder, single manic episode, unspecified +29601 Bipolar I disorder, single manic episode, mild +29602 Bipolar I disorder, single manic episode, moderate +29603 Bipolar I disorder, single manic episode, severe, without mention of psychotic behavior +29604 Bipolar I disorder, single manic episode, severe, specified as with psychotic behavior +29605 Bipolar I disorder, single manic episode, in partial or unspecified remission +29606 Bipolar I disorder, single manic episode, in full remission +29610 Manic affective disorder, recurrent episode, unspecified +29611 Manic affective disorder, recurrent episode, mild +29612 Manic affective disorder, recurrent episode, moderate +29613 Manic affective disorder, recurrent episode, severe, without mention of psychotic behavior +29614 Manic affective disorder, recurrent episode, severe, specified as with psychotic behavior +29615 Manic affective disorder, recurrent episode, in partial or unspecified remission +29616 Manic affective disorder, recurrent episode, in full remission +29620 Major depressive affective disorder, single episode, unspecified +29621 Major depressive affective disorder, single episode, mild +29622 Major depressive affective disorder, single episode, moderate +29623 Major depressive affective disorder, single episode, severe, without mention of psychotic behavior +29624 Major depressive affective disorder, single episode, severe, specified as with psychotic behavior +29625 Major depressive affective disorder, single episode, in partial or unspecified remission +29626 Major depressive affective disorder, single episode, in full remission +29630 Major depressive affective disorder, recurrent episode, unspecified +29631 Major depressive affective disorder, recurrent episode, mild +29632 Major depressive affective disorder, recurrent episode, moderate +29633 Major depressive affective disorder, recurrent episode, severe, without mention of psychotic behavior +29634 Major depressive affective disorder, recurrent episode, severe, specified as with psychotic behavior +29635 Major depressive affective disorder, recurrent episode, in partial or unspecified remission +29636 Major depressive affective disorder, recurrent episode, in full remission +29640 Bipolar I disorder, most recent episode (or current) manic, unspecified +29641 Bipolar I disorder, most recent episode (or current) manic, mild +29642 Bipolar I disorder, most recent episode (or current) manic, moderate +29643 Bipolar I disorder, most recent episode (or current) manic, severe, without mention of psychotic behavior +29644 Bipolar I disorder, most recent episode (or current) manic, severe, specified as with psychotic behavior +29645 Bipolar I disorder, most recent episode (or current) manic, in partial or unspecified remission +29646 Bipolar I disorder, most recent episode (or current) manic, in full remission +29650 Bipolar I disorder, most recent episode (or current) depressed, unspecified +29651 Bipolar I disorder, most recent episode (or current) depressed, mild +29652 Bipolar I disorder, most recent episode (or current) depressed, moderate +29653 Bipolar I disorder, most recent episode (or current) depressed, severe, without mention of psychotic behavior +29654 Bipolar I disorder, most recent episode (or current) depressed, severe, specified as with psychotic behavior +29655 Bipolar I disorder, most recent episode (or current) depressed, in partial or unspecified remission +29656 Bipolar I disorder, most recent episode (or current) depressed, in full remission +29660 Bipolar I disorder, most recent episode (or current) mixed, unspecified +29661 Bipolar I disorder, most recent episode (or current) mixed, mild +29662 Bipolar I disorder, most recent episode (or current) mixed, moderate +29663 Bipolar I disorder, most recent episode (or current) mixed, severe, without mention of psychotic behavior +29664 Bipolar I disorder, most recent episode (or current) mixed, severe, specified as with psychotic behavior +29665 Bipolar I disorder, most recent episode (or current) mixed, in partial or unspecified remission +29666 Bipolar I disorder, most recent episode (or current) mixed, in full remission +2967 Bipolar I disorder, most recent episode (or current) unspecified +29680 Bipolar disorder, unspecified +29681 Atypical manic disorder +29682 Atypical depressive disorder +29689 Other bipolar disorders +29690 Unspecified episodic mood disorder +29699 Other specified episodic mood disorder +2970 Paranoid state, simple +2971 Delusional disorder +2972 Paraphrenia +2973 Shared psychotic disorder +2978 Other specified paranoid states +2979 Unspecified paranoid state +2980 Depressive type psychosis +2981 Excitative type psychosis +2982 Reactive confusion +2983 Acute paranoid reaction +2984 Psychogenic paranoid psychosis +2988 Other and unspecified reactive psychosis +2989 Unspecified psychosis +29900 Autistic disorder, current or active state +29901 Autistic disorder, residual state +29910 Childhood disintegrative disorder, current or active state +29911 Childhood disintegrative disorder, residual state +29980 Other specified pervasive developmental disorders, current or active state +29981 Other specified pervasive developmental disorders, residual state +29990 Unspecified pervasive developmental disorder, current or active state +29991 Unspecified pervasive developmental disorder, residual state +30000 Anxiety state, unspecified +30001 Panic disorder without agoraphobia +30002 Generalized anxiety disorder +30009 Other anxiety states +30010 Hysteria, unspecified +30011 Conversion disorder +30012 Dissociative amnesia +30013 Dissociative fugue +30014 Dissociative identity disorder +30015 Dissociative disorder or reaction, unspecified +30016 Factitious disorder with predominantly psychological signs and symptoms +30019 Other and unspecified factitious illness +30020 Phobia, unspecified +30021 Agoraphobia with panic disorder +30022 Agoraphobia without mention of panic attacks +30023 Social phobia +30029 Other isolated or specific phobias +3003 Obsessive-compulsive disorders +3004 Dysthymic disorder +3005 Neurasthenia +3006 Depersonalization disorder +3007 Hypochondriasis +30081 Somatization disorder +30082 Undifferentiated somatoform disorder +30089 Other somatoform disorders +3009 Unspecified nonpsychotic mental disorder +3010 Paranoid personality disorder +30110 Affective personality disorder, unspecified +30111 Chronic hypomanic personality disorder +30112 Chronic depressive personality disorder +30113 Cyclothymic disorder +30120 Schizoid personality disorder, unspecified +30121 Introverted personality +30122 Schizotypal personality disorder +3013 Explosive personality disorder +3014 Obsessive-compulsive personality disorder +30150 Histrionic personality disorder, unspecified +30151 Chronic factitious illness with physical symptoms +30159 Other histrionic personality disorder +3016 Dependent personality disorder +3017 Antisocial personality disorder +30181 Narcissistic personality disorder +30182 Avoidant personality disorder +30183 Borderline personality disorder +30184 Passive-aggressive personality +30189 Other personality disorders +3019 Unspecified personality disorder +3020 Ego-dystonic sexual orientation +3021 Zoophilia +3022 Pedophilia +3023 Transvestic fetishism +3024 Exhibitionism +30250 Trans-sexualism with unspecified sexual history +30251 Trans-sexualism with asexual history +30252 Trans-sexualism with homosexual history +30253 Trans-sexualism with heterosexual history +3026 Gender identity disorder in children +30270 Psychosexual dysfunction, unspecified +30271 Hypoactive sexual desire disorder +30272 Psychosexual dysfunction with inhibited sexual excitement +30273 Female orgasmic disorder +30274 Male orgasmic disorder +30275 Premature ejaculation +30276 Dyspareunia, psychogenic +30279 Psychosexual dysfunction with other specified psychosexual dysfunctions +30281 Fetishism +30282 Voyeurism +30283 Sexual masochism +30284 Sexual sadism +30285 Gender identity disorder in adolescents or adults +30289 Other specified psychosexual disorders +3029 Unspecified psychosexual disorder +30300 Acute alcoholic intoxication in alcoholism, unspecified +30301 Acute alcoholic intoxication in alcoholism, continuous +30302 Acute alcoholic intoxication in alcoholism, episodic +30303 Acute alcoholic intoxication in alcoholism, in remission +30390 Other and unspecified alcohol dependence, unspecified +30391 Other and unspecified alcohol dependence, continuous +30392 Other and unspecified alcohol dependence, episodic +30393 Other and unspecified alcohol dependence, in remission +30400 Opioid type dependence, unspecified +30401 Opioid type dependence, continuous +30402 Opioid type dependence, episodic +30403 Opioid type dependence, in remission +30410 Sedative, hypnotic or anxiolytic dependence, unspecified +30411 Sedative, hypnotic or anxiolytic dependence, continuous +30412 Sedative, hypnotic or anxiolytic dependence, episodic +30413 Sedative, hypnotic or anxiolytic dependence, in remission +30420 Cocaine dependence, unspecified +30421 Cocaine dependence, continuous +30422 Cocaine dependence, episodic +30423 Cocaine dependence, in remission +30430 Cannabis dependence, unspecified +30431 Cannabis dependence, continuous +30432 Cannabis dependence, episodic +30433 Cannabis dependence, in remission +30440 Amphetamine and other psychostimulant dependence, unspecified +30441 Amphetamine and other psychostimulant dependence, continuous +30442 Amphetamine and other psychostimulant dependence, episodic +30443 Amphetamine and other psychostimulant dependence, in remission +30450 Hallucinogen dependence, unspecified +30451 Hallucinogen dependence, continuous +30452 Hallucinogen dependence, episodic +30453 Hallucinogen dependence, in remission +30460 Other specified drug dependence, unspecified +30461 Other specified drug dependence, continuous +30462 Other specified drug dependence, episodic +30463 Other specified drug dependence, in remission +30470 Combinations of opioid type drug with any other drug dependence, unspecified +30471 Combinations of opioid type drug with any other drug dependence, continuous +30472 Combinations of opioid type drug with any other drug dependence, episodic +30473 Combinations of opioid type drug with any other drug dependence, in remission +30480 Combinations of drug dependence excluding opioid type drug, unspecified +30481 Combinations of drug dependence excluding opioid type drug, continuous +30482 Combinations of drug dependence excluding opioid type drug, episodic +30483 Combinations of drug dependence excluding opioid type drug, in remission +30490 Unspecified drug dependence, unspecified +30491 Unspecified drug dependence, continuous +30492 Unspecified drug dependence, episodic +30493 Unspecified drug dependence, in remission +30500 Alcohol abuse, unspecified +30501 Alcohol abuse, continuous +30502 Alcohol abuse, episodic +30503 Alcohol abuse, in remission +3051 Tobacco use disorder +30520 Cannabis abuse, unspecified +30521 Cannabis abuse, continuous +30522 Cannabis abuse, episodic +30523 Cannabis abuse, in remission +30530 Hallucinogen abuse, unspecified +30531 Hallucinogen abuse, continuous +30532 Hallucinogen abuse, episodic +30533 Hallucinogen abuse, in remission +30540 Sedative, hypnotic or anxiolytic abuse, unspecified +30541 Sedative, hypnotic or anxiolytic abuse, continuous +30542 Sedative, hypnotic or anxiolytic abuse, episodic +30543 Sedative, hypnotic or anxiolytic abuse, in remission +30550 Opioid abuse, unspecified +30551 Opioid abuse, continuous +30552 Opioid abuse, episodic +30553 Opioid abuse, in remission +30560 Cocaine abuse, unspecified +30561 Cocaine abuse, continuous +30562 Cocaine abuse, episodic +30563 Cocaine abuse, in remission +30570 Amphetamine or related acting sympathomimetic abuse, unspecified +30571 Amphetamine or related acting sympathomimetic abuse, continuous +30572 Amphetamine or related acting sympathomimetic abuse, episodic +30573 Amphetamine or related acting sympathomimetic abuse, in remission +30580 Antidepressant type abuse, unspecified +30581 Antidepressant type abuse, continuous +30582 Antidepressant type abuse, episodic +30583 Antidepressant type abuse, in remission +30590 Other, mixed, or unspecified drug abuse, unspecified +30591 Other, mixed, or unspecified drug abuse, continuous +30592 Other, mixed, or unspecified drug abuse, episodic +30593 Other, mixed, or unspecified drug abuse, in remission +3060 Musculoskeletal malfunction arising from mental factors +3061 Respiratory malfunction arising from mental factors +3062 Cardiovascular malfunction arising from mental factors +3063 Skin disorder arising from mental factors +3064 Gastrointestinal malfunction arising from mental factors +30650 Psychogenic genitourinary malfunction, unspecified +30651 Psychogenic vaginismus +30652 Psychogenic dysmenorrhea +30653 Psychogenic dysuria +30659 Other genitourinary malfunction arising from mental factors +3066 Endocrine disorder arising from mental factors +3067 Disorder of organs of special sense arising from mental factors +3068 Other specified psychophysiological malfunction +3069 Unspecified psychophysiological malfunction +3070 Adult onset fluency disorder +3071 Anorexia nervosa +30720 Tic disorder, unspecified +30721 Transient tic disorder +30722 Chronic motor or vocal tic disorder +30723 Tourette's disorder +3073 Stereotypic movement disorder +30740 Nonorganic sleep disorder, unspecified +30741 Transient disorder of initiating or maintaining sleep +30742 Persistent disorder of initiating or maintaining sleep +30743 Transient disorder of initiating or maintaining wakefulness +30744 Persistent disorder of initiating or maintaining wakefulness +30745 Circadian rhythm sleep disorder of nonorganic origin +30746 Sleep arousal disorder +30747 Other dysfunctions of sleep stages or arousal from sleep +30748 Repetitive intrusions of sleep +30749 Other specific disorders of sleep of nonorganic origin +30750 Eating disorder, unspecified +30751 Bulimia nervosa +30752 Pica +30753 Rumination disorder +30754 Psychogenic vomiting +30759 Other disorders of eating +3076 Enuresis +3077 Encopresis +30780 Psychogenic pain, site unspecified +30781 Tension headache +30789 Other pain disorders related to psychological factors +3079 Other and unspecified special symptoms or syndromes, not elsewhere classified +3080 Predominant disturbance of emotions +3081 Predominant disturbance of consciousness +3082 Predominant psychomotor disturbance +3083 Other acute reactions to stress +3084 Mixed disorders as reaction to stress +3089 Unspecified acute reaction to stress +3090 Adjustment disorder with depressed mood +3091 Prolonged depressive reaction +30921 Separation anxiety disorder +30922 Emancipation disorder of adolescence and early adult life +30923 Specific academic or work inhibition +30924 Adjustment disorder with anxiety +30928 Adjustment disorder with mixed anxiety and depressed mood +30929 Other adjustment reactions with predominant disturbance of other emotions +3093 Adjustment disorder with disturbance of conduct +3094 Adjustment disorder with mixed disturbance of emotions and conduct +30981 Posttraumatic stress disorder +30982 Adjustment reaction with physical symptoms +30983 Adjustment reaction with withdrawal +30989 Other specified adjustment reactions +3099 Unspecified adjustment reaction +3100 Frontal lobe syndrome +3101 Personality change due to conditions classified elsewhere +3102 Postconcussion syndrome +31081 Pseudobulbar affect +31089 Other specified nonpsychotic mental disorders following organic brain damage +3109 Unspecified nonpsychotic mental disorder following organic brain damage +311 Depressive disorder, not elsewhere classified +31200 Undersocialized conduct disorder, aggressive type, unspecified +31201 Undersocialized conduct disorder, aggressive type, mild +31202 Undersocialized conduct disorder, aggressive type, moderate +31203 Undersocialized conduct disorder, aggressive type, severe +31210 Undersocialized conduct disorder, unaggressive type, unspecified +31211 Undersocialized conduct disorder, unaggressive type, mild +31212 Undersocialized conduct disorder, unaggressive type, moderate +31213 Undersocialized conduct disorder, unaggressive type, severe +31220 Socialized conduct disorder, unspecified +31221 Socialized conduct disorder, mild +31222 Socialized conduct disorder, moderate +31223 Socialized conduct disorder, severe +31230 Impulse control disorder, unspecified +31231 Pathological gambling +31232 Kleptomania +31233 Pyromania +31234 Intermittent explosive disorder +31235 Isolated explosive disorder +31239 Other disorders of impulse control +3124 Mixed disturbance of conduct and emotions +31281 Conduct disorder, childhood onset type +31282 Conduct disorder, adolescent onset type +31289 Other conduct disorder +3129 Unspecified disturbance of conduct +3130 Overanxious disorder specific to childhood and adolescence +3131 Misery and unhappiness disorder specific to childhood and adolescence +31321 Shyness disorder of childhood +31322 Introverted disorder of childhood +31323 Selective mutism +3133 Relationship problems specific to childhood and adolescence +31381 Oppositional defiant disorder +31382 Identity disorder of childhood or adolescence +31383 Academic underachievement disorder of childhood or adolescence +31389 Other emotional disturbances of childhood or adolescence +3139 Unspecified emotional disturbance of childhood or adolescence +31400 Attention deficit disorder without mention of hyperactivity +31401 Attention deficit disorder with hyperactivity +3141 Hyperkinesis with developmental delay +3142 Hyperkinetic conduct disorder +3148 Other specified manifestations of hyperkinetic syndrome +3149 Unspecified hyperkinetic syndrome +31500 Developmental reading disorder, unspecified +31501 Alexia +31502 Developmental dyslexia +31509 Other specific developmental reading disorder +3151 Mathematics disorder +3152 Other specific developmental learning difficulties +31531 Expressive language disorder +31532 Mixed receptive-expressive language disorder +31534 Speech and language developmental delay due to hearing loss +31535 Childhood onset fluency disorder +31539 Other developmental speech or language disorder +3154 Developmental coordination disorder +3155 Mixed development disorder +3158 Other specified delays in development +3159 Unspecified delay in development +316 Psychic factors associated with diseases classified elsewhere +317 Mild intellectual disabilities +3180 Moderate intellectual disabilities +3181 Severe intellectual disabilities +3182 Profound intellectual disabilities +319 Unspecified intellectual disabilities +3200 Hemophilus meningitis +3201 Pneumococcal meningitis +3202 Streptococcal meningitis +3203 Staphylococcal meningitis +3207 Meningitis in other bacterial diseases classified elsewhere +32081 Anaerobic meningitis +32082 Meningitis due to gram-negative bacteria, not elsewhere classified +32089 Meningitis due to other specified bacteria +3209 Meningitis due to unspecified bacterium +3210 Cryptococcal meningitis +3211 Meningitis in other fungal diseases +3212 Meningitis due to viruses not elsewhere classified +3213 Meningitis due to trypanosomiasis +3214 Meningitis in sarcoidosis +3218 Meningitis due to other nonbacterial organisms classified elsewhere +3220 Nonpyogenic meningitis +3221 Eosinophilic meningitis +3222 Chronic meningitis +3229 Meningitis, unspecified +32301 Encephalitis and encephalomyelitis in viral diseases classified elsewhere +32302 Myelitis in viral diseases classified elsewhere +3231 Encephalitis, myelitis, and encephalomyelitis in rickettsial diseases classified elsewhere +3232 Encephalitis, myelitis, and encephalomyelitis in protozoal diseases classified elsewhere +32341 Other encephalitis and encephalomyelitis due to other infections classified elsewhere +32342 Other myelitis due to other infections classified elsewhere +32351 Encephalitis and encephalomyelitis following immunization procedures +32352 Myelitis following immunization procedures +32361 Infectious acute disseminated encephalomyelitis (ADEM) +32362 Other postinfectious encephalitis and encephalomyelitis +32363 Postinfectious myelitis +32371 Toxic encephalitis and encephalomyelitis +32372 Toxic myelitis +32381 Other causes of encephalitis and encephalomyelitis +32382 Other causes of myelitis +3239 Unspecified causes of encephalitis, myelitis, and encephalomyelitis +3240 Intracranial abscess +3241 Intraspinal abscess +3249 Intracranial and intraspinal abscess of unspecified site +325 Phlebitis and thrombophlebitis of intracranial venous sinuses +326 Late effects of intracranial abscess or pyogenic infection +32700 Organic insomnia, unspecified +32701 Insomnia due to medical condition classified elsewhere +32702 Insomnia due to mental disorder +32709 Other organic insomnia +32710 Organic hypersomnia, unspecified +32711 Idiopathic hypersomnia with long sleep time +32712 Idiopathic hypersomnia without long sleep time +32713 Recurrent hypersomnia +32714 Hypersomnia due to medical condition classified elsewhere +32715 Hypersomnia due to mental disorder +32719 Other organic hypersomnia +32720 Organic sleep apnea, unspecified +32721 Primary central sleep apnea +32722 High altitude periodic breathing +32723 Obstructive sleep apnea (adult)(pediatric) +32724 Idiopathic sleep related non-obstructive alveolar hypoventilation +32725 Congenital central alveolar hypoventilation syndrome +32726 Sleep related hypoventilation/hypoxemia in conditions classifiable elsewhere +32727 Central sleep apnea in conditions classified elsewhere +32729 Other organic sleep apnea +32730 Circadian rhythm sleep disorder, unspecified +32731 Circadian rhythm sleep disorder, delayed sleep phase type +32732 Circadian rhythm sleep disorder, advanced sleep phase type +32733 Circadian rhythm sleep disorder, irregular sleep-wake type +32734 Circadian rhythm sleep disorder, free-running type +32735 Circadian rhythm sleep disorder, jet lag type +32736 Circadian rhythm sleep disorder, shift work type +32737 Circadian rhythm sleep disorder in conditions classified elsewhere +32739 Other circadian rhythm sleep disorder +32740 Organic parasomnia, unspecified +32741 Confusional arousals +32742 REM sleep behavior disorder +32743 Recurrent isolated sleep paralysis +32744 Parasomnia in conditions classified elsewhere +32749 Other organic parasomnia +32751 Periodic limb movement disorder +32752 Sleep related leg cramps +32753 Sleep related bruxism +32759 Other organic sleep related movement disorders +3278 Other organic sleep disorders +3300 Leukodystrophy +3301 Cerebral lipidoses +3302 Cerebral degeneration in generalized lipidoses +3303 Cerebral degeneration of childhood in other diseases classified elsewhere +3308 Other specified cerebral degenerations in childhood +3309 Unspecified cerebral degeneration in childhood +3310 Alzheimer's disease +33111 Pick's disease +33119 Other frontotemporal dementia +3312 Senile degeneration of brain +3313 Communicating hydrocephalus +3314 Obstructive hydrocephalus +3315 Idiopathic normal pressure hydrocephalus (INPH) +3316 Corticobasal degeneration +3317 Cerebral degeneration in diseases classified elsewhere +33181 Reye's syndrome +33182 Dementia with lewy bodies +33183 Mild cognitive impairment, so stated +33189 Other cerebral degeneration +3319 Cerebral degeneration, unspecified +3320 Paralysis agitans +3321 Secondary parkinsonism +3330 Other degenerative diseases of the basal ganglia +3331 Essential and other specified forms of tremor +3332 Myoclonus +3333 Tics of organic origin +3334 Huntington's chorea +3335 Other choreas +3336 Genetic torsion dystonia +33371 Athetoid cerebral palsy +33372 Acute dystonia due to drugs +33379 Other acquired torsion dystonia +33381 Blepharospasm +33382 Orofacial dyskinesia +33383 Spasmodic torticollis +33384 Organic writers' cramp +33385 Subacute dyskinesia due to drugs +33389 Other fragments of torsion dystonia +33390 Unspecified extrapyramidal disease and abnormal movement disorder +33391 Stiff-man syndrome +33392 Neuroleptic malignant syndrome +33393 Benign shuddering attacks +33394 Restless legs syndrome (RLS) +33399 Other extrapyramidal diseases and abnormal movement disorders +3340 Friedreich's ataxia +3341 Hereditary spastic paraplegia +3342 Primary cerebellar degeneration +3343 Other cerebellar ataxia +3344 Cerebellar ataxia in diseases classified elsewhere +3348 Other spinocerebellar diseases +3349 Spinocerebellar disease, unspecified +3350 Werdnig-Hoffmann disease +33510 Spinal muscular atrophy, unspecified +33511 Kugelberg-Welander disease +33519 Other spinal muscular atrophy +33520 Amyotrophic lateral sclerosis +33521 Progressive muscular atrophy +33522 Progressive bulbar palsy +33523 Pseudobulbar palsy +33524 Primary lateral sclerosis +33529 Other motor neuron disease +3358 Other anterior horn cell diseases +3359 Anterior horn cell disease, unspecified +3360 Syringomyelia and syringobulbia +3361 Vascular myelopathies +3362 Subacute combined degeneration of spinal cord in diseases classified elsewhere +3363 Myelopathy in other diseases classified elsewhere +3368 Other myelopathy +3369 Unspecified disease of spinal cord +33700 Idiopathic peripheral autonomic neuropathy, unspecified +33701 Carotid sinus syndrome +33709 Other idiopathic peripheral autonomic neuropathy +3371 Peripheral autonomic neuropathy in disorders classified elsewhere +33720 Reflex sympathetic dystrophy, unspecified +33721 Reflex sympathetic dystrophy of the upper limb +33722 Reflex sympathetic dystrophy of the lower limb +33729 Reflex sympathetic dystrophy of other specified site +3373 Autonomic dysreflexia +3379 Unspecified disorder of autonomic nervous system +3380 Central pain syndrome +33811 Acute pain due to trauma +33812 Acute post-thoracotomy pain +33818 Other acute postoperative pain +33819 Other acute pain +33821 Chronic pain due to trauma +33822 Chronic post-thoracotomy pain +33828 Other chronic postoperative pain +33829 Other chronic pain +3383 Neoplasm related pain (acute) (chronic) +3384 Chronic pain syndrome +33900 Cluster headache syndrome, unspecified +33901 Episodic cluster headache +33902 Chronic cluster headache +33903 Episodic paroxysmal hemicrania +33904 Chronic paroxysmal hemicrania +33905 Short lasting unilateral neuralgiform headache with conjunctival injection and tearing +33909 Other trigeminal autonomic cephalgias +33910 Tension type headache, unspecified +33911 Episodic tension type headache +33912 Chronic tension type headache +33920 Post-traumatic headache, unspecified +33921 Acute post-traumatic headache +33922 Chronic post-traumatic headache +3393 Drug induced headache, not elsewhere classified +33941 Hemicrania continua +33942 New daily persistent headache +33943 Primary thunderclap headache +33944 Other complicated headache syndrome +33981 Hypnic headache +33982 Headache associated with sexual activity +33983 Primary cough headache +33984 Primary exertional headache +33985 Primary stabbing headache +33989 Other headache syndromes +340 Multiple sclerosis +3410 Neuromyelitis optica +3411 Schilder's disease +34120 Acute (transverse) myelitis NOS +34121 Acute (transverse) myelitis in conditions classified elsewhere +34122 Idiopathic transverse myelitis +3418 Other demyelinating diseases of central nervous system +3419 Demyelinating disease of central nervous system, unspecified +34200 Flaccid hemiplegia and hemiparesis affecting unspecified side +34201 Flaccid hemiplegia and hemiparesis affecting dominant side +34202 Flaccid hemiplegia and hemiparesis affecting nondominant side +34210 Spastic hemiplegia and hemiparesis affecting unspecified side +34211 Spastic hemiplegia and hemiparesis affecting dominant side +34212 Spastic hemiplegia and hemiparesis affecting nondominant side +34280 Other specified hemiplegia and hemiparesis affecting unspecified side +34281 Other specified hemiplegia and hemiparesis affecting dominant side +34282 Other specified hemiplegia and hemiparesis affecting nondominant side +34290 Hemiplegia, unspecified, affecting unspecified side +34291 Hemiplegia, unspecified, affecting dominant side +34292 Hemiplegia, unspecified, affecting nondominant side +3430 Congenital diplegia +3431 Congenital hemiplegia +3432 Congenital quadriplegia +3433 Congenital monoplegia +3434 Infantile hemiplegia +3438 Other specified infantile cerebral palsy +3439 Infantile cerebral palsy, unspecified +34400 Quadriplegia, unspecified +34401 Quadriplegia, C1-C4, complete +34402 Quadriplegia, C1-C4, incomplete +34403 Quadriplegia, C5-C7, complete +34404 Quadriplegia, C5-C7, incomplete +34409 Other quadriplegia +3441 Paraplegia +3442 Diplegia of upper limbs +34430 Monoplegia of lower limb affecting unspecified side +34431 Monoplegia of lower limb affecting dominant side +34432 Monoplegia of lower limb affecting nondominant side +34440 Monoplegia of upper limb affecting unspecified side +34441 Monoplegia of upper limb affecting dominant side +34442 Monoplegia of upper limb affecting nondominant sde +3445 Unspecified monoplegia +34460 Cauda equina syndrome without mention of neurogenic bladder +34461 Cauda equina syndrome with neurogenic bladder +34481 Locked-in state +34489 Other specified paralytic syndrome +3449 Paralysis, unspecified +34500 Generalized nonconvulsive epilepsy, without mention of intractable epilepsy +34501 Generalized nonconvulsive epilepsy, with intractable epilepsy +34510 Generalized convulsive epilepsy, without mention of intractable epilepsy +34511 Generalized convulsive epilepsy, with intractable epilepsy +3452 Petit mal status +3453 Grand mal status +34540 Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, without mention of intractable epilepsy +34541 Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, with intractable epilepsy +34550 Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, without mention of intractable epilepsy +34551 Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, with intractable epilepsy +34560 Infantile spasms, without mention of intractable epilepsy +34561 Infantile spasms, with intractable epilepsy +34570 Epilepsia partialis continua, without mention of intractable epilepsy +34571 Epilepsia partialis continua, with intractable epilepsy +34580 Other forms of epilepsy and recurrent seizures, without mention of intractable epilepsy +34581 Other forms of epilepsy and recurrent seizures, with intractable epilepsy +34590 Epilepsy, unspecified, without mention of intractable epilepsy +34591 Epilepsy, unspecified, with intractable epilepsy +34600 Migraine with aura, without mention of intractable migraine without mention of status migrainosus +34601 Migraine with aura, with intractable migraine, so stated, without mention of status migrainosus +34602 Migraine with aura, without mention of intractable migraine with status migrainosus +34603 Migraine with aura, with intractable migraine, so stated, with status migrainosus +34610 Migraine without aura, without mention of intractable migraine without mention of status migrainosus +34611 Migraine without aura, with intractable migraine, so stated, without mention of status migrainosus +34612 Migraine without aura, without mention of intractable migraine with status migrainosus +34613 Migraine without aura, with intractable migraine, so stated, with status migrainosus +34620 Variants of migraine, not elsewhere classified, without mention of intractable migraine without mention of status migrainosus +34621 Variants of migraine, not elsewhere classified, with intractable migraine, so stated, without mention of status migrainosus +34622 Variants of migraine, not elsewhere classified, without mention of intractable migraine with status migrainosus +34623 Variants of migraine, not elsewhere classified, with intractable migraine, so stated, with status migrainosus +34630 Hemiplegic migraine, without mention of intractable migraine without mention of status migrainosus +34631 Hemiplegic migraine, with intractable migraine, so stated, without mention of status migrainosus +34632 Hemiplegic migraine, without mention of intractable migraine with status migrainosus +34633 Hemiplegic migraine, with intractable migraine, so stated, with status migrainosus +34640 Menstrual migraine, without mention of intractable migraine without mention of status migrainosus +34641 Menstrual migraine, with intractable migraine, so stated, without mention of status migrainosus +34642 Menstrual migraine, without mention of intractable migraine with status migrainosus +34643 Menstrual migraine, with intractable migraine, so stated, with status migrainosus +34650 Persistent migraine aura without cerebral infarction, without mention of intractable migraine without mention of status migrainosus +34651 Persistent migraine aura without cerebral infarction, with intractable migraine, so stated, without mention of status migrainosus +34652 Persistent migraine aura without cerebral infarction, without mention of intractable migraine with status migrainosus +34653 Persistent migraine aura without cerebral infarction, with intractable migraine, so stated, with status migrainosus +34660 Persistent migraine aura with cerebral infarction, without mention of intractable migraine without mention of status migrainosus +34661 Persistent migraine aura with cerebral infarction, with intractable migraine, so stated, without mention of status migrainosus +34662 Persistent migraine aura with cerebral infarction, without mention of intractable migraine with status migrainosus +34663 Persistent migraine aura with cerebral infarction, with intractable migraine, so stated, with status migrainosus +34670 Chronic migraine without aura, without mention of intractable migraine without mention of status migrainosus +34671 Chronic migraine without aura, with intractable migraine, so stated, without mention of status migrainosus +34672 Chronic migraine without aura, without mention of intractable migraine with status migrainosus +34673 Chronic migraine without aura, with intractable migraine, so stated, with status migrainosus +34680 Other forms of migraine, without mention of intractable migraine without mention of status migrainosus +34681 Other forms of migraine, with intractable migraine, so stated, without mention of status migrainosus +34682 Other forms of migraine, without mention of intractable migraine with status migrainosus +34683 Other forms of migraine, with intractable migraine, so stated, with status migrainosus +34690 Migraine, unspecified, without mention of intractable migraine without mention of status migrainosus +34691 Migraine, unspecified, with intractable migraine, so stated, without mention of status migrainosus +34692 Migraine, unspecified, without mention of intractable migraine with status migrainosus +34693 Migraine, unspecified, with intractable migraine, so stated, with status migrainosus +34700 Narcolepsy, without cataplexy +34701 Narcolepsy, with cataplexy +34710 Narcolepsy in conditions classified elsewhere, without cataplexy +34711 Narcolepsy in conditions classified elsewhere, with cataplexy +3480 Cerebral cysts +3481 Anoxic brain damage +3482 Benign intracranial hypertension +34830 Encephalopathy, unspecified +34831 Metabolic encephalopathy +34839 Other encephalopathy +3484 Compression of brain +3485 Cerebral edema +34881 Temporal sclerosis +34882 Brain death +34889 Other conditions of brain +3489 Unspecified condition of brain +3490 Reaction to spinal or lumbar puncture +3491 Nervous system complications from surgically implanted device +3492 Disorders of meninges, not elsewhere classified +34931 Accidental puncture or laceration of dura during a procedure +34939 Other dural tear +34981 Cerebrospinal fluid rhinorrhea +34982 Toxic encephalopathy +34989 Other specified disorders of nervous system +3499 Unspecified disorders of nervous system +3501 Trigeminal neuralgia +3502 Atypical face pain +3508 Other specified trigeminal nerve disorders +3509 Trigeminal nerve disorder, unspecified +3510 Bell's palsy +3511 Geniculate ganglionitis +3518 Other facial nerve disorders +3519 Facial nerve disorder, unspecified +3520 Disorders of olfactory (1st) nerve +3521 Glossopharyngeal neuralgia +3522 Other disorders of glossopharyngeal [9th] nerve +3523 Disorders of pneumogastric [10th] nerve +3524 Disorders of accessory [11th] nerve +3525 Disorders of hypoglossal [12th] nerve +3526 Multiple cranial nerve palsies +3529 Unspecified disorder of cranial nerves +3530 Brachial plexus lesions +3531 Lumbosacral plexus lesions +3532 Cervical root lesions, not elsewhere classified +3533 Thoracic root lesions, not elsewhere classified +3534 Lumbosacral root lesions, not elsewhere classified +3535 Neuralgic amyotrophy +3536 Phantom limb (syndrome) +3538 Other nerve root and plexus disorders +3539 Unspecified nerve root and plexus disorder +3540 Carpal tunnel syndrome +3541 Other lesion of median nerve +3542 Lesion of ulnar nerve +3543 Lesion of radial nerve +3544 Causalgia of upper limb +3545 Mononeuritis multiplex +3548 Other mononeuritis of upper limb +3549 Mononeuritis of upper limb, unspecified +3550 Lesion of sciatic nerve +3551 Meralgia paresthetica +3552 Other lesion of femoral nerve +3553 Lesion of lateral popliteal nerve +3554 Lesion of medial popliteal nerve +3555 Tarsal tunnel syndrome +3556 Lesion of plantar nerve +35571 Causalgia of lower limb +35579 Other mononeuritis of lower limb +3558 Mononeuritis of lower limb, unspecified +3559 Mononeuritis of unspecified site +3560 Hereditary peripheral neuropathy +3561 Peroneal muscular atrophy +3562 Hereditary sensory neuropathy +3563 Refsum's disease +3564 Idiopathic progressive polyneuropathy +3568 Other specified idiopathic peripheral neuropathy +3569 Unspecified hereditary and idiopathic peripheral neuropathy +3570 Acute infective polyneuritis +3571 Polyneuropathy in collagen vascular disease +3572 Polyneuropathy in diabetes +3573 Polyneuropathy in malignant disease +3574 Polyneuropathy in other diseases classified elsewhere +3575 Alcoholic polyneuropathy +3576 Polyneuropathy due to drugs +3577 Polyneuropathy due to other toxic agents +35781 Chronic inflammatory demyelinating polyneuritis +35782 Critical illness polyneuropathy +35789 Other inflammatory and toxic neuropathy +3579 Unspecified inflammatory and toxic neuropathy +35800 Myasthenia gravis without (acute) exacerbation +35801 Myasthenia gravis with (acute) exacerbation +3581 Myasthenic syndromes in diseases classified elsewhere +3582 Toxic myoneural disorders +35830 Lambert-Eaton syndrome, unspecified +35831 Lambert-Eaton syndrome in neoplastic disease +35839 Lambert-Eaton syndrome in other diseases classified elsewhere +3588 Other specified myoneural disorders +3589 Myoneural disorders, unspecified +3590 Congenital hereditary muscular dystrophy +3591 Hereditary progressive muscular dystrophy +35921 Myotonic muscular dystrophy +35922 Myotonia congenita +35923 Myotonic chondrodystrophy +35924 Drug- induced myotonia +35929 Other specified myotonic disorder +3593 Periodic paralysis +3594 Toxic myopathy +3595 Myopathy in endocrine diseases classified elsewhere +3596 Symptomatic inflammatory myopathy in diseases classified elsewhere +35971 Inclusion body myositis +35979 Other inflammatory and immune myopathies, NEC +35981 Critical illness myopathy +35989 Other myopathies +3599 Myopathy, unspecified +36000 Purulent endophthalmitis, unspecified +36001 Acute endophthalmitis +36002 Panophthalmitis +36003 Chronic endophthalmitis +36004 Vitreous abscess +36011 Sympathetic uveitis +36012 Panuveitis +36013 Parasitic endophthalmitis NOS +36014 Ophthalmia nodosa +36019 Other endophthalmitis +36020 Degenerative disorder of globe, unspecified +36021 Progressive high (degenerative) myopia +36023 Siderosis of globe +36024 Other metallosis of globe +36029 Other degenerative disorders of globe +36030 Hypotony of eye, unspecified +36031 Primary hypotony of eye +36032 Ocular fistula causing hypotony +36033 Hypotony associated with other ocular disorders +36034 Flat anterior chamber of eye +36040 Degenerated globe or eye, unspecified +36041 Blind hypotensive eye +36042 Blind hypertensive eye +36043 Hemophthalmos, except current injury +36044 Leucocoria +36050 Foreign body, magnetic, intraocular, unspecified +36051 Foreign body, magnetic, in anterior chamber of eye +36052 Foreign body, magnetic, in iris or ciliary body +36053 Foreign body, magnetic, in lens +36054 Foreign body, magnetic, in vitreous +36055 Foreign body, magnetic, in posterior wall +36059 Intraocular foreign body, magnetic, in other or multiple sites +36060 Foreign body, intraocular, unspecified +36061 Foreign body in anterior chamber +36062 Foreign body in iris or ciliary body +36063 Foreign body in lens +36064 Foreign body in vitreous +36065 Foreign body in posterior wall of eye +36069 Intraocular foreign body in other or multiple sites +36081 Luxation of globe +36089 Other disorders of globe +3609 Unspecified disorder of globe +36100 Retinal detachment with retinal defect, unspecified +36101 Recent retinal detachment, partial, with single defect +36102 Recent retinal detachment, partial, with multiple defects +36103 Recent retinal detachment, partial, with giant tear +36104 Recent retinal detachment, partial, with retinal dialysis +36105 Recent retinal detachment, total or subtotal +36106 Old retinal detachment, partial +36107 Old retinal detachment, total or subtotal +36110 Retinoschisis, unspecified +36111 Flat retinoschisis +36112 Bullous retinoschisis +36113 Primary retinal cysts +36114 Secondary retinal cysts +36119 Other retinoschisis and retinal cysts +3612 Serous retinal detachment +36130 Retinal defect, unspecified +36131 Round hole of retina without detachment +36132 Horseshoe tear of retina without detachment +36133 Multiple defects of retina without detachment +36181 Traction detachment of retina +36189 Other forms of retinal detachment +3619 Unspecified retinal detachment +36201 Background diabetic retinopathy +36202 Proliferative diabetic retinopathy +36203 Nonproliferative diabetic retinopathy NOS +36204 Mild nonproliferative diabetic retinopathy +36205 Moderate nonproliferative diabetic retinopathy +36206 Severe nonproliferative diabetic retinopathy +36207 Diabetic macular edema +36210 Background retinopathy, unspecified +36211 Hypertensive retinopathy +36212 Exudative retinopathy +36213 Changes in vascular appearance of retina +36214 Retinal microaneurysms NOS +36215 Retinal telangiectasia +36216 Retinal neovascularization NOS +36217 Other intraretinal microvascular abnormalities +36218 Retinal vasculitis +36220 Retinopathy of prematurity, unspecified +36221 Retrolental fibroplasia +36222 Retinopathy of prematurity, stage 0 +36223 Retinopathy of prematurity, stage 1 +36224 Retinopathy of prematurity, stage 2 +36225 Retinopathy of prematurity, stage 3 +36226 Retinopathy of prematurity, stage 4 +36227 Retinopathy of prematurity, stage 5 +36229 Other nondiabetic proliferative retinopathy +36230 Retinal vascular occlusion, unspecified +36231 Central retinal artery occlusion +36232 Retinal arterial branch occlusion +36233 Partial retinal arterial occlusion +36234 Transient retinal arterial occlusion +36235 Central retinal vein occlusion +36236 Venous tributary (branch) occlusion +36237 Venous engorgement +36240 Retinal layer separation, unspecified +36241 Central serous retinopathy +36242 Serous detachment of retinal pigment epithelium +36243 Hemorrhagic detachment of retinal pigment epithelium +36250 Macular degeneration (senile), unspecified +36251 Nonexudative senile macular degeneration +36252 Exudative senile macular degeneration +36253 Cystoid macular degeneration +36254 Macular cyst, hole, or pseudohole +36255 Toxic maculopathy +36256 Macular puckering +36257 Drusen (degenerative) +36260 Peripheral retinal degeneration, unspecified +36261 Paving stone degeneration +36262 Microcystoid degeneration +36263 Lattice degeneration +36264 Senile reticular degeneration +36265 Secondary pigmentary degeneration +36266 Secondary vitreoretinal degenerations +36270 Hereditary retinal dystrophy, unspecified +36271 Retinal dystrophy in systemic or cerebroretinal lipidoses +36272 Retinal dystrophy in other systemic disorders and syndromes +36273 Vitreoretinal dystrophies +36274 Pigmentary retinal dystrophy +36275 Other dystrophies primarily involving the sensory retina +36276 Dystrophies primarily involving the retinal pigment epithelium +36277 Dystrophies primarily involving Bruch's membrane +36281 Retinal hemorrhage +36282 Retinal exudates and deposits +36283 Retinal edema +36284 Retinal ischemia +36285 Retinal nerve fiber bundle defects +36289 Other retinal disorders +3629 Unspecified retinal disorder +36300 Focal chorioretinitis, unspecified +36301 Focal choroiditis and chorioretinitis, juxtapapillary +36303 Focal choroiditis and chorioretinitis of other posterior pole +36304 Focal choroiditis and chorioretinitis, peripheral +36305 Focal retinitis and retinochoroiditis, juxtapapillary +36306 Focal retinitis and retinochoroiditis, macular or paramacular +36307 Focal retinitis and retinochoroiditis of other posterior pole +36308 Focal retinitis and retinochoroiditis, peripheral +36310 Disseminated chorioretinitis, unspecified +36311 Disseminated choroiditis and chorioretinitis, posterior pole +36312 Disseminated choroiditis and chorioretinitis, peripheral +36313 Disseminated choroiditis and chorioretinitis, generalized +36314 Disseminated retinitis and retinochoroiditis, metastatic +36315 Disseminated retinitis and retinochoroiditis, pigment epitheliopathy +36320 Chorioretinitis, unspecified +36321 Pars planitis +36322 Harada's disease +36330 Chorioretinal scar, unspecified +36331 Solar retinopathy +36332 Other macular scars +36333 Other scars of posterior pole +36334 Peripheral scars +36335 Disseminated scars +36340 Choroidal degeneration, unspecified +36341 Senile atrophy of choroid +36342 Diffuse secondary atrophy of choroid +36343 Angioid streaks of choroid +36350 Hereditary choroidal dystrophy or atrophy, unspecified +36351 Circumpapillary dystrophy of choroid, partial +36352 Circumpapillary dystrophy of choroid, total +36353 Central dystrophy of choroid, partial +36354 Central choroidal atrophy, total +36355 Choroideremia +36356 Other diffuse or generalized dystrophy of choroid, partial +36357 Other diffuse or generalized dystrophy of choroid, total +36361 Choroidal hemorrhage, unspecified +36362 Expulsive choroidal hemorrhage +36363 Choroidal rupture +36370 Choroidal detachment, unspecified +36371 Serous choroidal detachment +36372 Hemorrhagic choroidal detachment +3638 Other disorders of choroid +3639 Unspecified disorder of choroid +36400 Acute and subacute iridocyclitis, unspecified +36401 Primary iridocyclitis +36402 Recurrent iridocyclitis +36403 Secondary iridocyclitis, infectious +36404 Secondary iridocyclitis, noninfectious +36405 Hypopyon +36410 Chronic iridocyclitis, unspecified +36411 Chronic iridocyclitis in diseases classified elsewhere +36421 Fuchs' heterochromic cyclitis +36422 Glaucomatocyclitic crises +36423 Lens-induced iridocyclitis +36424 Vogt-koyanagi syndrome +3643 Unspecified iridocyclitis +36441 Hyphema of iris and ciliary body +36442 Rubeosis iridis +36451 Essential or progressive iris atrophy +36452 Iridoschisis +36453 Pigmentary iris degeneration +36454 Degeneration of pupillary margin +36455 Miotic cysts of pupillary margin +36456 Degenerative changes of chamber angle +36457 Degenerative changes of ciliary body +36459 Other iris atrophy +36460 Idiopathic cysts of iris, ciliary body, and anterior chamber +36461 Implantation cysts of iris, ciliary body, and anterior chamber +36462 Exudative cysts of iris or anterior chamber +36463 Primary cyst of pars plana +36464 Exudative cyst of pars plana +36470 Adhesions of iris, unspecified +36471 Posterior synechiae of iris +36472 Anterior synechiae of iris +36473 Goniosynechiae +36474 Adhesions and disruptions of pupillary membranes +36475 Pupillary abnormalities +36476 Iridodialysis +36477 Recession of chamber angle of eye +36481 Floppy iris syndrome +36482 Plateau iris syndrome +36489 Other disorders of iris and ciliary body +3649 Unspecified disorder of iris and ciliary body +36500 Preglaucoma, unspecified +36501 Open angle with borderline findings, low risk +36502 Anatomical narrow angle borderline glaucoma +36503 Steroid responders borderline glaucoma +36504 Ocular hypertension +36505 Open angle with borderline findings, high risk +36506 Primary angle closure without glaucoma damage +36510 Open-angle glaucoma, unspecified +36511 Primary open angle glaucoma +36512 Low tension open-angle glaucoma +36513 Pigmentary open-angle glaucoma +36514 Glaucoma of childhood +36515 Residual stage of open angle glaucoma +36520 Primary angle-closure glaucoma, unspecified +36521 Intermittent angle-closure glaucoma +36522 Acute angle-closure glaucoma +36523 Chronic angle-closure glaucoma +36524 Residual stage of angle-closure glaucoma +36531 Corticosteroid-induced glaucoma, glaucomatous stage +36532 Corticosteroid-induced glaucoma, residual stage +36541 Glaucoma associated with chamber angle anomalies +36542 Glaucoma associated with anomalies of iris +36543 Glaucoma associated with other anterior segment anomalies +36544 Glaucoma associated with systemic syndromes +36551 Phacolytic glaucoma +36552 Pseudoexfoliation glaucoma +36559 Glaucoma associated with other lens disorders +36560 Glaucoma associated with unspecified ocular disorder +36561 Glaucoma associated with pupillary block +36562 Glaucoma associated with ocular inflammations +36563 Glaucoma associated with vascular disorders +36564 Glaucoma associated with tumors or cysts +36565 Glaucoma associated with ocular trauma +36570 Glaucoma stage, unspecified +36571 Mild stage glaucoma +36572 Moderate stage glaucoma +36573 Severe stage glaucoma +36574 Indeterminate stage glaucoma +36581 Hypersecretion glaucoma +36582 Glaucoma with increased episcleral venous pressure +36583 Aqueous misdirection +36589 Other specified glaucoma +3659 Unspecified glaucoma +36600 Nonsenile cataract, unspecified +36601 Anterior subcapsular polar cataract +36602 Posterior subcapsular polar cataract +36603 Cortical, lamellar, or zonular cataract +36604 Nuclear cataract +36609 Other and combined forms of nonsenile cataract +36610 Senile cataract, unspecified +36611 Pseudoexfoliation of lens capsule +36612 Incipient senile cataract +36613 Anterior subcapsular polar senile cataract +36614 Posterior subcapsular polar senile cataract +36615 Cortical senile cataract +36616 Senile nuclear sclerosis +36617 Total or mature cataract +36618 Hypermature cataract +36619 Other and combined forms of senile cataract +36620 Traumatic cataract, unspecified +36621 Localized traumatic opacities +36622 Total traumatic cataract +36623 Partially resolved traumatic cataract +36630 Cataracta complicata, unspecified +36631 Glaucomatous flecks (subcapsular) +36632 Cataract in inflammatory ocular disorders +36633 Cataract with neovascularization +36634 Cataract in degenerative ocular disorders +36641 Diabetic cataract +36642 Tetanic cataract +36643 Myotonic cataract +36644 Cataract associated with other syndromes +36645 Toxic cataract +36646 Cataract associated with radiation and other physical influences +36650 After-cataract, unspecified +36651 Soemmering's ring +36652 Other after-cataract, not obscuring vision +36653 After-cataract, obscuring vision +3668 Other cataract +3669 Unspecified cataract +3670 Hypermetropia +3671 Myopia +36720 Astigmatism, unspecified +36721 Regular astigmatism +36722 Irregular astigmatism +36731 Anisometropia +36732 Aniseikonia +3674 Presbyopia +36751 Paresis of accommodation +36752 Total or complete internal ophthalmoplegia +36753 Spasm of accommodation +36781 Transient refractive change +36789 Other disorders of refraction and accommodation +3679 Unspecified disorder of refraction and accommodation +36800 Amblyopia, unspecified +36801 Strabismic amblyopia +36802 Deprivation amblyopia +36803 Refractive amblyopia +36810 Subjective visual disturbance, unspecified +36811 Sudden visual loss +36812 Transient visual loss +36813 Visual discomfort +36814 Visual distortions of shape and size +36815 Other visual distortions and entoptic phenomena +36816 Psychophysical visual disturbances +3682 Diplopia +36830 Binocular vision disorder, unspecified +36831 Suppression of binocular vision +36832 Simultaneous visual perception without fusion +36833 Fusion with defective stereopsis +36834 Abnormal retinal correspondence +36840 Visual field defect, unspecified +36841 Scotoma involving central area +36842 Scotoma of blind spot area +36843 Sector or arcuate visual field defects +36844 Other localized visual field defect +36845 Generalized visual field contraction or constriction +36846 Homonymous bilateral field defects +36847 Heteronymous bilateral field defects +36851 Protan defect +36852 Deutan defect +36853 Tritan defect +36854 Achromatopsia +36855 Acquired color vision deficiencies +36859 Other color vision deficiencies +36860 Night blindness, unspecified +36861 Congenital night blindness +36862 Acquired night blindness +36863 Abnormal dark adaptation curve +36869 Other night blindness +3688 Other specified visual disturbances +3689 Unspecified visual disturbance +36900 Profound impairment, both eyes, impairment level not further specified +36901 Better eye: total vision impairment; lesser eye: total vision impairment +36902 Better eye: near-total vision impairment; lesser eye: not further specified +36903 Better eye: near-total vision impairment; lesser eye: total vision impairment +36904 Better eye: near-total vision impairment; lesser eye: near-total vision impairment +36905 Better eye: profound vision impairment; lesser eye: not further specified +36906 Better eye: profound vision impairment; lesser eye: total vision impairment +36907 Better eye: profound vision impairment; lesser eye: near-total vision impairment +36908 Better eye: profound vision impairment; lesser eye: profound vision impairment +36910 Moderate or severe impairment, better eye, impairment level not further specified +36911 Better eye: severe vision impairment; lesser eye: blind, not further specified +36912 Better eye: severe vision impairment; lesser eye: total vision impairment +36913 Better eye: severe vision impairment; lesser eye: near-total vision impairment +36914 Better eye: severe vision impairment; lesser eye: profound vision impairment +36915 Better eye: moderate vision impairment; lesser eye: blind, not further specified +36916 Better eye: moderate vision impairment; lesser eye: total vision impairment +36917 Better eye: moderate vision impairment; lesser eye: near-total vision impairment +36918 Better eye: moderate vision impairment; lesser eye: profound vision impairment +36920 Moderate or severe impairment, both eyes, impairment level not further specified +36921 Better eye: severe vision impairment; lesser eye; impairment not further specified +36922 Better eye: severe vision impairment; lesser eye: severe vision impairment +36923 Better eye: moderate vision impairment; lesser eye: impairment not further specified +36924 Better eye: moderate vision impairment; lesser eye: severe vision impairment +36925 Better eye: moderate vision impairment; lesser eye: moderate vision impairment +3693 Unqualified visual loss, both eyes +3694 Legal blindness, as defined in U.S.A. +36960 Profound impairment, one eye, impairment level not further specified +36961 One eye: total vision impairment; other eye: not specified +36962 One eye: total vision impairment; other eye: near-normal vision +36963 One eye: total vision impairment; other eye: normal vision +36964 One eye: near-total vision impairment; other eye: vision not specified +36965 One eye: near-total vision impairment; other eye: near-normal vision +36966 One eye: near-total vision impairment; other eye: normal vision +36967 One eye: profound vision impairment; other eye: vision not specified +36968 One eye: profound vision impairment; other eye: near-normal vision +36969 One eye: profound vision impairment; other eye: normal vision +36970 Moderate or severe impairment, one eye, impairment level not further specified +36971 One eye: severe vision impairment; other eye: vision not specified +36972 One eye: severe vision impairment; other eye: near-normal vision +36973 One eye: severe vision impairment; other eye: normal vision +36974 One eye: moderate vision impairment; other eye: vision not specified +36975 One eye: moderate vision impairment; other eye: near-normal vision +36976 One eye: moderate vision impairment; other eye: normal vision +3698 Unqualified visual loss, one eye +3699 Unspecified visual loss +37000 Corneal ulcer, unspecified +37001 Marginal corneal ulcer +37002 Ring corneal ulcer +37003 Central corneal ulcer +37004 Hypopyon ulcer +37005 Mycotic corneal ulcer +37006 Perforated corneal ulcer +37007 Mooren's ulcer +37020 Superficial keratitis, unspecified +37021 Punctate keratitis +37022 Macular keratitis +37023 Filamentary keratitis +37024 Photokeratitis +37031 Phlyctenular keratoconjunctivitis +37032 Limbar and corneal involvement in vernal conjunctivitis +37033 Keratoconjunctivitis sicca, not specified as Sjogren's +37034 Exposure keratoconjunctivitis +37035 Neurotrophic keratoconjunctivitis +37040 Keratoconjunctivitis, unspecified +37044 Keratitis or keratoconjunctivitis in exanthema +37049 Other keratoconjunctivitis +37050 Interstitial keratitis, unspecified +37052 Diffuse interstitial keratitis +37054 Sclerosing keratitis +37055 Corneal abscess +37059 Other interstitial and deep keratitis +37060 Corneal neovascularization, unspecified +37061 Localized vascularization of cornea +37062 Pannus (corneal) +37063 Deep vascularization of cornea +37064 Ghost vessels (corneal) +3708 Other forms of keratitis +3709 Unspecified keratitis +37100 Corneal opacity, unspecified +37101 Minor opacity of cornea +37102 Peripheral opacity of cornea +37103 Central opacity of cornea +37104 Adherent leucoma +37105 Phthisical cornea +37110 Corneal deposit, unspecified +37111 Anterior corneal pigmentations +37112 Stromal corneal pigmentations +37113 Posterior corneal pigmentations +37114 Kayser-Fleischer ring +37115 Other corneal deposits associated with metabolic disorders +37116 Argentous corneal deposits +37120 Corneal edema, unspecified +37121 Idiopathic corneal edema +37122 Secondary corneal edema +37123 Bullous keratopathy +37124 Corneal edema due to wearing of contact lenses +37130 Corneal membrane change, unspecified +37131 Folds and rupture of bowman's membrane +37132 Folds in descemet's membrane +37133 Rupture in descemet's membrane +37140 Corneal degeneration, unspecified +37141 Senile corneal changes +37142 Recurrent erosion of cornea +37143 Band-shaped keratopathy +37144 Other calcerous degenerations of cornea +37145 Keratomalacia NOS +37146 Nodular degeneration of cornea +37148 Peripheral degenerations of cornea +37149 Other corneal degenerations +37150 Hereditary corneal dystrophy, unspecified +37151 Juvenile epithelial corneal dystrophy +37152 Other anterior corneal dystrophies +37153 Granular corneal dystrophy +37154 Lattice corneal dystrophy +37155 Macular corneal dystrophy +37156 Other stromal corneal dystrophies +37157 Endothelial corneal dystrophy +37158 Other posterior corneal dystrophies +37160 Keratoconus, unspecified +37161 Keratoconus, stable condition +37162 Keratoconus, acute hydrops +37170 Corneal deformity, unspecified +37171 Corneal ectasia +37172 Descemetocele +37173 Corneal staphyloma +37181 Corneal anesthesia and hypoesthesia +37182 Corneal disorder due to contact lens +37189 Other corneal disorders +3719 Unspecified corneal disorder +37200 Acute conjunctivitis, unspecified +37201 Serous conjunctivitis, except viral +37202 Acute follicular conjunctivitis +37203 Other mucopurulent conjunctivitis +37204 Pseudomembranous conjunctivitis +37205 Acute atopic conjunctivitis +37206 Acute chemical conjunctivitis +37210 Chronic conjunctivitis, unspecified +37211 Simple chronic conjunctivitis +37212 Chronic follicular conjunctivitis +37213 Vernal conjunctivitis +37214 Other chronic allergic conjunctivitis +37215 Parasitic conjunctivitis +37220 Blepharoconjunctivitis, unspecified +37221 Angular blepharoconjunctivitis +37222 Contact blepharoconjunctivitis +37230 Conjunctivitis, unspecified +37231 Rosacea conjunctivitis +37233 Conjunctivitis in mucocutaneous disease +37234 Pingueculitis +37239 Other conjunctivitis +37240 Pterygium, unspecified +37241 Peripheral pterygium, stationary +37242 Peripheral pterygium, progressive +37243 Central pterygium +37244 Double pterygium +37245 Recurrent pterygium +37250 Conjunctival degeneration, unspecified +37251 Pinguecula +37252 Pseudopterygium +37253 Conjunctival xerosis +37254 Conjunctival concretions +37255 Conjunctival pigmentations +37256 Conjunctival deposits +37261 Granuloma of conjunctiva +37262 Localized adhesions and strands of conjunctiva +37263 Symblepharon +37264 Scarring of conjunctiva +37271 Hyperemia of conjunctiva +37272 Conjunctival hemorrhage +37273 Conjunctival edema +37274 Vascular abnormalities of conjunctiva +37275 Conjunctival cysts +37281 Conjunctivochalasis +37289 Other disorders of conjunctiva +3729 Unspecified disorder of conjunctiva +37300 Blepharitis, unspecified +37301 Ulcerative blepharitis +37302 Squamous blepharitis +37311 Hordeolum externum +37312 Hordeolum internum +37313 Abscess of eyelid +3732 Chalazion +37331 Eczematous dermatitis of eyelid +37332 Contact and allergic dermatitis of eyelid +37333 Xeroderma of eyelid +37334 Discoid lupus erythematosus of eyelid +3734 Infective dermatitis of eyelid of types resulting in deformity +3735 Other infective dermatitis of eyelid +3736 Parasitic infestation of eyelid +3738 Other inflammations of eyelids +3739 Unspecified inflammation of eyelid +37400 Entropion, unspecified +37401 Senile entropion +37402 Mechanical entropion +37403 Spastic entropion +37404 Cicatricial entropion +37405 Trichiasis of eyelid without entropion +37410 Ectropion, unspecified +37411 Senile ectropion +37412 Mechanical ectropion +37413 Spastic ectropion +37414 Cicatricial ectropion +37420 Lagophthalmos, unspecified +37421 Paralytic lagophthalmos +37422 Mechanical lagophthalmos +37423 Cicatricial lagophthalmos +37430 Ptosis of eyelid, unspecified +37431 Paralytic ptosis +37432 Myogenic ptosis +37433 Mechanical ptosis +37434 Blepharochalasis +37441 Lid retraction or lag +37443 Abnormal innervation syndrome of eyelid +37444 Sensory disorders of eyelid +37445 Other sensorimotor disorders of eyelid +37446 Blepharophimosis +37450 Degenerative disorder of eyelid, unspecified +37451 Xanthelasma of eyelid +37452 Hyperpigmentation of eyelid +37453 Hypopigmentation of eyelid +37454 Hypertrichosis of eyelid +37455 Hypotrichosis of eyelid +37456 Other degenerative disorders of skin affecting eyelid +37481 Hemorrhage of eyelid +37482 Edema of eyelid +37483 Elephantiasis of eyelid +37484 Cysts of eyelids +37485 Vascular anomalies of eyelid +37486 Retained foreign body of eyelid +37487 Dermatochalasis +37489 Other disorders of eyelid +3749 Unspecified disorder of eyelid +37500 Dacryoadenitis, unspecified +37501 Acute dacryoadenitis +37502 Chronic dacryoadenitis +37503 Chronic enlargement of lacrimal gland +37511 Dacryops +37512 Other lacrimal cysts and cystic degeneration +37513 Primary lacrimal atrophy +37514 Secondary lacrimal atrophy +37515 Tear film insufficiency, unspecified +37516 Dislocation of lacrimal gland +37520 Epiphora, unspecified as to cause +37521 Epiphora due to excess lacrimation +37522 Epiphora due to insufficient drainage +37530 Dacryocystitis, unspecified +37531 Acute canaliculitis, lacrimal +37532 Acute dacryocystitis +37533 Phlegmonous dacryocystitis +37541 Chronic canaliculitis +37542 Chronic dacryocystitis +37543 Lacrimal mucocele +37551 Eversion of lacrimal punctum +37552 Stenosis of lacrimal punctum +37553 Stenosis of lacrimal canaliculi +37554 Stenosis of lacrimal sac +37555 Obstruction of nasolacrimal duct, neonatal +37556 Stenosis of nasolacrimal duct, acquired +37557 Dacryolith +37561 Lacrimal fistula +37569 Other changes of lacrimal passages +37581 Granuloma of lacrimal passages +37589 Other disorders of lacrimal system +3759 Unspecified disorder of lacrimal system +37600 Acute inflammation of orbit, unspecified +37601 Orbital cellulitis +37602 Orbital periostitis +37603 Orbital osteomyelitis +37604 Orbital tenonitis +37610 Chronic inflammation of orbit, unspecified +37611 Orbital granuloma +37612 Orbital myositis +37613 Parasitic infestation of orbit +37621 Thyrotoxic exophthalmos +37622 Exophthalmic ophthalmoplegia +37630 Exophthalmos, unspecified +37631 Constant exophthalmos +37632 Orbital hemorrhage +37633 Orbital edema or congestion +37634 Intermittent exophthalmos +37635 Pulsating exophthalmos +37636 Lateral displacement of globe +37640 Deformity of orbit, unspecified +37641 Hypertelorism of orbit +37642 Exostosis of orbit +37643 Local deformities of orbit due to bone disease +37644 Orbital deformities associated with craniofacial deformities +37645 Atrophy of orbit +37646 Enlargement of orbit +37647 Deformity of orbit due to trauma or surgery +37650 Enophthalmos, unspecified as to cause +37651 Enophthalmos due to atrophy of orbital tissue +37652 Enophthalmos due to trauma or surgery +3766 Retained (old) foreign body following penetrating wound of orbit +37681 Orbital cysts +37682 Myopathy of extraocular muscles +37689 Other orbital disorders +3769 Unspecified disorder of orbit +37700 Papilledema, unspecified +37701 Papilledema associated with increased intracranial pressure +37702 Papilledema associated with decreased ocular pressure +37703 Papilledema associated with retinal disorder +37704 Foster-Kennedy syndrome +37710 Optic atrophy, unspecified +37711 Primary optic atrophy +37712 Postinflammatory optic atrophy +37713 Optic atrophy associated with retinal dystrophies +37714 Glaucomatous atrophy [cupping] of optic disc +37715 Partial optic atrophy +37716 Hereditary optic atrophy +37721 Drusen of optic disc +37722 Crater-like holes of optic disc +37723 Coloboma of optic disc +37724 Pseudopapilledema +37730 Optic neuritis, unspecified +37731 Optic papillitis +37732 Retrobulbar neuritis (acute) +37733 Nutritional optic neuropathy +37734 Toxic optic neuropathy +37739 Other optic neuritis +37741 Ischemic optic neuropathy +37742 Hemorrhage in optic nerve sheaths +37743 Optic nerve hypoplasia +37749 Other disorders of optic nerve +37751 Disorders of optic chiasm associated with pituitary neoplasms and disorders +37752 Disorders of optic chiasm associated with other neoplasms +37753 Disorders of optic chiasm associated with vascular disorders +37754 Disorders of optic chiasm associated with inflammatory disorders +37761 Disorders of other visual pathways associated with neoplasms +37762 Disorders of other visual pathways associated with vascular disorders +37763 Disorders of other visual pathways associated with inflammatory disorders +37771 Disorders of visual cortex associated with neoplasms +37772 Disorders of visual cortex associated with vascular disorders +37773 Disorders of visual cortex associated with inflammatory disorders +37775 Cortical blindness +3779 Unspecified disorder of optic nerve and visual pathways +37800 Esotropia, unspecified +37801 Monocular esotropia +37802 Monocular esotropia with A pattern +37803 Monocular esotropia with V pattern +37804 Monocular esotropia with other noncomitancies +37805 Alternating esotropia +37806 Alternating esotropia with A pattern +37807 Alternating esotropia with V pattern +37808 Alternating esotropia with other noncomitancies +37810 Exotropia, unspecified +37811 Monocular exotropia +37812 Monocular exotropia with A pattern +37813 Monocular exotropia with V pattern +37814 Monocular exotropia with other noncomitancies +37815 Alternating exotropia +37816 Alternating exotropia with A pattern +37817 Alternating exotropia with V pattern +37818 Alternating exotropia with other noncomitancies +37820 Intermittent heterotropia, unspecified +37821 Intermittent esotropia, monocular +37822 Intermittent esotropia, alternating +37823 Intermittent exotropia, monocular +37824 Intermittent exotropia, alternating +37830 Heterotropia, unspecified +37831 Hypertropia +37832 Hypotropia +37833 Cyclotropia +37834 Monofixation syndrome +37835 Accommodative component in esotropia +37840 Heterophoria, unspecified +37841 Esophoria +37842 Exophoria +37843 Vertical heterophoria +37844 Cyclophoria +37845 Alternating hyperphoria +37850 Paralytic strabismus, unspecified +37851 Third or oculomotor nerve palsy, partial +37852 Third or oculomotor nerve palsy, total +37853 Fourth or trochlear nerve palsy +37854 Sixth or abducens nerve palsy +37855 External ophthalmoplegia +37856 Total ophthalmoplegia +37860 Mechanical strabismus, unspecified +37861 Brown's (tendon) sheath syndrome +37862 Mechanical strabismus from other musculofascial disorders +37863 Limited duction associated with other conditions +37871 Duane's syndrome +37872 Progressive external ophthalmoplegia +37873 Strabismus in other neuromuscular disorders +37881 Palsy of conjugate gaze +37882 Spasm of conjugate gaze +37883 Convergence insufficiency or palsy +37884 Convergence excess or spasm +37885 Anomalies of divergence +37886 Internuclear ophthalmoplegia +37887 Other dissociated deviation of eye movements +3789 Unspecified disorder of eye movements +37900 Scleritis, unspecified +37901 Episcleritis periodica fugax +37902 Nodular episcleritis +37903 Anterior scleritis +37904 Scleromalacia perforans +37905 Scleritis with corneal involvement +37906 Brawny scleritis +37907 Posterior scleritis +37909 Other scleritis and episcleritis +37911 Scleral ectasia +37912 Staphyloma posticum +37913 Equatorial staphyloma +37914 Anterior staphyloma, localized +37915 Ring staphyloma +37916 Other degenerative disorders of sclera +37919 Other disorders of sclera +37921 Vitreous degeneration +37922 Crystalline deposits in vitreous +37923 Vitreous hemorrhage +37924 Other vitreous opacities +37925 Vitreous membranes and strands +37926 Vitreous prolapse +37927 Vitreomacular adhesion +37929 Other disorders of vitreous +37931 Aphakia +37932 Subluxation of lens +37933 Anterior dislocation of lens +37934 Posterior dislocation of lens +37939 Other disorders of lens +37940 Abnormal pupillary function, unspecified +37941 Anisocoria +37942 Miosis (persistent), not due to miotics +37943 Mydriasis (persistent), not due to mydriatics +37945 Argyll Robertson pupil, atypical +37946 Tonic pupillary reaction +37949 Other anomalies of pupillary function +37950 Nystagmus, unspecified +37951 Congenital nystagmus +37952 Latent nystagmus +37953 Visual deprivation nystagmus +37954 Nystagmus associated with disorders of the vestibular system +37955 Dissociated nystagmus +37956 Other forms of nystagmus +37957 Deficiencies of saccadic eye movements +37958 Deficiencies of smooth pursuit movements +37959 Other irregularities of eye movements +37960 Inflammation (infection) of postprocedural bleb, unspecified +37961 Inflammation (infection) of postprocedural bleb, stage 1 +37962 Inflammation (infection) of postprocedural bleb, stage 2 +37963 Inflammation (infection) of postprocedural bleb, stage 3 +3798 Other specified disorders of eye and adnexa +37990 Disorder of eye, unspecified +37991 Pain in or around eye +37992 Swelling or mass of eye +37993 Redness or discharge of eye +37999 Other ill-defined disorders of eye +38000 Perichondritis of pinna, unspecified +38001 Acute perichondritis of pinna +38002 Chronic perichondritis of pinna +38003 Chondritis of pinna +38010 Infective otitis externa, unspecified +38011 Acute infection of pinna +38012 Acute swimmers' ear +38013 Other acute infections of external ear +38014 Malignant otitis externa +38015 Chronic mycotic otitis externa +38016 Other chronic infective otitis externa +38021 Cholesteatoma of external ear +38022 Other acute otitis externa +38023 Other chronic otitis externa +38030 Disorder of pinna, unspecified +38031 Hematoma of auricle or pinna +38032 Acquired deformities of auricle or pinna +38039 Other noninfectious disorders of pinna +3804 Impacted cerumen +38050 Acquired stenosis of external ear canal, unspecified as to cause +38051 Acquired stenosis of external ear canal secondary to trauma +38052 Acquired stenosis of external ear canal secondary to surgery +38053 Acquired stenosis of external ear canal secondary to inflammation +38081 Exostosis of external ear canal +38089 Other disorders of external ear +3809 Unspecified disorder of external ear +38100 Acute nonsuppurative otitis media, unspecified +38101 Acute serous otitis media +38102 Acute mucoid otitis media +38103 Acute sanguinous otitis media +38104 Acute allergic serous otitis media +38105 Acute allergic mucoid otitis media +38106 Acute allergic sanguinous otitis media +38110 Chronic serous otitis media, simple or unspecified +38119 Other chronic serous otitis media +38120 Chronic mucoid otitis media, simple or unspecified +38129 Other chronic mucoid otitis media +3813 Other and unspecified chronic nonsuppurative otitis media +3814 Nonsuppurative otitis media, not specified as acute or chronic +38150 Eustachian salpingitis, unspecified +38151 Acute Eustachian salpingitis +38152 Chronic Eustachian salpingitis +38160 Obstruction of Eustachian tube, unspecified +38161 Osseous obstruction of Eustachian tube +38162 Intrinsic cartilagenous obstruction of Eustachian tube +38163 Extrinsic cartilagenous obstruction of Eustachian tube +3817 Patulous Eustachian tube +38181 Dysfunction of Eustachian tube +38189 Other disorders of Eustachian tube +3819 Unspecified Eustachian tube disorder +38200 Acute suppurative otitis media without spontaneous rupture of eardrum +38201 Acute suppurative otitis media with spontaneous rupture of eardrum +38202 Acute suppurative otitis media in diseases classified elsewhere +3821 Chronic tubotympanic suppurative otitis media +3822 Chronic atticoantral suppurative otitis media +3823 Unspecified chronic suppurative otitis media +3824 Unspecified suppurative otitis media +3829 Unspecified otitis media +38300 Acute mastoiditis without complications +38301 Subperiosteal abscess of mastoid +38302 Acute mastoiditis with other complications +3831 Chronic mastoiditis +38320 Petrositis, unspecified +38321 Acute petrositis +38322 Chronic petrositis +38330 Postmastoidectomy complication, unspecified +38331 Mucosal cyst of postmastoidectomy cavity +38332 Recurrent cholesteatoma of postmastoidectomy cavity +38333 Granulations of postmastoidectomy cavity +38381 Postauricular fistula +38389 Other disorders of mastoid +3839 Unspecified mastoiditis +38400 Acute myringitis, unspecified +38401 Bullous myringitis +38409 Other acute myringitis without mention of otitis media +3841 Chronic myringitis without mention of otitis media +38420 Perforation of tympanic membrane, unspecified +38421 Central perforation of tympanic membrane +38422 Attic perforation of tympanic membrane +38423 Other marginal perforation of tympanic membrane +38424 Multiple perforations of tympanic membrane +38425 Total perforation of tympanic membrane +38481 Atrophic flaccid tympanic membrane +38482 Atrophic nonflaccid tympanic membrane +3849 Unspecified disorder of tympanic membrane +38500 Tympanosclerosis, unspecified as to involvement +38501 Tympanosclerosis involving tympanic membrane only +38502 Tympanosclerosis involving tympanic membrane and ear ossicles +38503 Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear +38509 Tympanosclerosis involving other combination of structures +38510 Adhesive middle ear disease, unspecified as to involvement +38511 Adhesions of drum head to incus +38512 Adhesions of drum head to stapes +38513 Adhesions of drum head to promontorium +38519 Other middle ear adhesions and combinations +38521 Impaired mobility of malleus +38522 Impaired mobility of other ear ossicles +38523 Discontinuity or dislocation of ear ossicles +38524 Partial loss or necrosis of ear ossicles +38530 Cholesteatoma, unspecified +38531 Cholesteatoma of attic +38532 Cholesteatoma of middle ear +38533 Cholesteatoma of middle ear and mastoid +38535 Diffuse cholesteatosis of middle ear and mastoid +38582 Cholesterin granuloma of middle ear and mastoid +38583 Retained foreign body of middle ear +38589 Other disorders of middle ear and mastoid +3859 Unspecified disorder of middle ear and mastoid +38600 Ménière's disease, unspecified +38601 Active Ménière's disease, cochleovestibular +38602 Active Ménière's disease, cochlear +38603 Active Ménière's disease, vestibular +38604 Inactive Ménière's disease +38610 Peripheral vertigo, unspecified +38611 Benign paroxysmal positional vertigo +38612 Vestibular neuronitis +38619 Other peripheral vertigo +3862 Vertigo of central origin +38630 Labyrinthitis, unspecified +38631 Serous labyrinthitis +38632 Circumscribed labyrinthitis +38633 Suppurative labyrinthitis +38634 Toxic labyrinthitis +38635 Viral labyrinthitis +38640 Labyrinthine fistula, unspecified +38641 Round window fistula +38642 Oval window fistula +38643 Semicircular canal fistula +38648 Labyrinthine fistula of combined sites +38650 Labyrinthine dysfunction, unspecified +38651 Hyperactive labyrinth, unilateral +38652 Hyperactive labyrinth, bilateral +38653 Hypoactive labyrinth, unilateral +38654 Hypoactive labyrinth, bilateral +38655 Loss of labyrinthine reactivity, unilateral +38656 Loss of labyrinthine reactivity, bilateral +38658 Other forms and combinations of labyrinthine dysfunction +3868 Other disorders of labyrinth +3869 Unspecified vertiginous syndromes and labyrinthine disorders +3870 Otosclerosis involving oval window, nonobliterative +3871 Otosclerosis involving oval window, obliterative +3872 Cochlear otosclerosis +3878 Other otosclerosis +3879 Otosclerosis, unspecified +38800 Degenerative and vascular disorders, unspecified +38801 Presbyacusis +38802 Transient ischemic deafness +38810 Noise effects on inner ear, unspecified +38811 Acoustic trauma (explosive) to ear +38812 Noise-induced hearing loss +3882 Sudden hearing loss, unspecified +38830 Tinnitus, unspecified +38831 Subjective tinnitus +38832 Objective tinnitus +38840 Abnormal auditory perception, unspecified +38841 Diplacusis +38842 Hyperacusis +38843 Impairment of auditory discrimination +38844 Auditory recruitment +38845 Acquired auditory processing disorder +3885 Disorders of acoustic nerve +38860 Otorrhea, unspecified +38861 Cerebrospinal fluid otorrhea +38869 Other otorrhea +38870 Otalgia, unspecified +38871 Otogenic pain +38872 Referred otogenic pain +3888 Other disorders of ear +3889 Unspecified disorder of ear +38900 Conductive hearing loss, unspecified +38901 Conductive hearing loss, external ear +38902 Conductive hearing loss, tympanic membrane +38903 Conductive hearing loss, middle ear +38904 Conductive hearing loss, inner ear +38905 Conductive hearing loss, unilateral +38906 Conductive hearing loss, bilateral +38908 Conductive hearing loss of combined types +38910 Sensorineural hearing loss, unspecified +38911 Sensory hearing loss, bilateral +38912 Neural hearing loss, bilateral +38913 Neural hearing loss, unilateral +38914 Central hearing loss +38915 Sensorineural hearing loss, unilateral +38916 Sensorineural hearing loss, asymmetrical +38917 Sensory hearing loss, unilateral +38918 Sensorineural hearing loss, bilateral +38920 Mixed hearing loss, unspecified +38921 Mixed hearing loss, unilateral +38922 Mixed hearing loss, bilateral +3897 Deaf, nonspeaking, not elsewhere classifiable +3898 Other specified forms of hearing loss +3899 Unspecified hearing loss +390 Rheumatic fever without mention of heart involvement +3910 Acute rheumatic pericarditis +3911 Acute rheumatic endocarditis +3912 Acute rheumatic myocarditis +3918 Other acute rheumatic heart disease +3919 Acute rheumatic heart disease, unspecified +3920 Rheumatic chorea with heart involvement +3929 Rheumatic chorea without mention of heart involvement +393 Chronic rheumatic pericarditis +3940 Mitral stenosis +3941 Rheumatic mitral insufficiency +3942 Mitral stenosis with insufficiency +3949 Other and unspecified mitral valve diseases +3950 Rheumatic aortic stenosis +3951 Rheumatic aortic insufficiency +3952 Rheumatic aortic stenosis with insufficiency +3959 Other and unspecified rheumatic aortic diseases +3960 Mitral valve stenosis and aortic valve stenosis +3961 Mitral valve stenosis and aortic valve insufficiency +3962 Mitral valve insufficiency and aortic valve stenosis +3963 Mitral valve insufficiency and aortic valve insufficiency +3968 Multiple involvement of mitral and aortic valves +3969 Mitral and aortic valve diseases, unspecified +3970 Diseases of tricuspid valve +3971 Rheumatic diseases of pulmonary valve +3979 Rheumatic diseases of endocardium, valve unspecified +3980 Rheumatic myocarditis +39890 Rheumatic heart disease, unspecified +39891 Rheumatic heart failure (congestive) +39899 Other rheumatic heart diseases +4010 Malignant essential hypertension +4011 Benign essential hypertension +4019 Unspecified essential hypertension +40200 Malignant hypertensive heart disease without heart failure +40201 Malignant hypertensive heart disease with heart failure +40210 Benign hypertensive heart disease without heart failure +40211 Benign hypertensive heart disease with heart failure +40290 Unspecified hypertensive heart disease without heart failure +40291 Unspecified hypertensive heart disease with heart failure +40300 Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified +40301 Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease +40310 Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified +40311 Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease +40390 Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified +40391 Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease +40400 Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified +40401 Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified +40402 Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease +40403 Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease +40410 Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified +40411 Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified +40412 Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease +40413 Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease +40490 Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified +40491 Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified +40492 Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease +40493 Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease +40501 Malignant renovascular hypertension +40509 Other malignant secondary hypertension +40511 Benign renovascular hypertension +40519 Other benign secondary hypertension +40591 Unspecified renovascular hypertension +40599 Other unspecified secondary hypertension +41000 Acute myocardial infarction of anterolateral wall, episode of care unspecified +41001 Acute myocardial infarction of anterolateral wall, initial episode of care +41002 Acute myocardial infarction of anterolateral wall, subsequent episode of care +41010 Acute myocardial infarction of other anterior wall, episode of care unspecified +41011 Acute myocardial infarction of other anterior wall, initial episode of care +41012 Acute myocardial infarction of other anterior wall, subsequent episode of care +41020 Acute myocardial infarction of inferolateral wall, episode of care unspecified +41021 Acute myocardial infarction of inferolateral wall, initial episode of care +41022 Acute myocardial infarction of inferolateral wall, subsequent episode of care +41030 Acute myocardial infarction of inferoposterior wall, episode of care unspecified +41031 Acute myocardial infarction of inferoposterior wall, initial episode of care +41032 Acute myocardial infarction of inferoposterior wall, subsequent episode of care +41040 Acute myocardial infarction of other inferior wall, episode of care unspecified +41041 Acute myocardial infarction of other inferior wall, initial episode of care +41042 Acute myocardial infarction of other inferior wall, subsequent episode of care +41050 Acute myocardial infarction of other lateral wall, episode of care unspecified +41051 Acute myocardial infarction of other lateral wall, initial episode of care +41052 Acute myocardial infarction of other lateral wall, subsequent episode of care +41060 True posterior wall infarction, episode of care unspecified +41061 True posterior wall infarction, initial episode of care +41062 True posterior wall infarction, subsequent episode of care +41070 Subendocardial infarction, episode of care unspecified +41071 Subendocardial infarction, initial episode of care +41072 Subendocardial infarction, subsequent episode of care +41080 Acute myocardial infarction of other specified sites, episode of care unspecified +41081 Acute myocardial infarction of other specified sites, initial episode of care +41082 Acute myocardial infarction of other specified sites, subsequent episode of care +41090 Acute myocardial infarction of unspecified site, episode of care unspecified +41091 Acute myocardial infarction of unspecified site, initial episode of care +41092 Acute myocardial infarction of unspecified site, subsequent episode of care +4110 Postmyocardial infarction syndrome +4111 Intermediate coronary syndrome +41181 Acute coronary occlusion without myocardial infarction +41189 Other acute and subacute forms of ischemic heart disease, other +412 Old myocardial infarction +4130 Angina decubitus +4131 Prinzmetal angina +4139 Other and unspecified angina pectoris +41400 Coronary atherosclerosis of unspecified type of vessel, native or graft +41401 Coronary atherosclerosis of native coronary artery +41402 Coronary atherosclerosis of autologous vein bypass graft +41403 Coronary atherosclerosis of nonautologous biological bypass graft +41404 Coronary atherosclerosis of artery bypass graft +41405 Coronary atherosclerosis of unspecified bypass graft +41406 Coronary atherosclerosis of native coronary artery of transplanted heart +41407 Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart +41410 Aneurysm of heart (wall) +41411 Aneurysm of coronary vessels +41412 Dissection of coronary artery +41419 Other aneurysm of heart +4142 Chronic total occlusion of coronary artery +4143 Coronary atherosclerosis due to lipid rich plaque +4144 Coronary atherosclerosis due to calcified coronary lesion +4148 Other specified forms of chronic ischemic heart disease +4149 Chronic ischemic heart disease, unspecified +4150 Acute cor pulmonale +41511 Iatrogenic pulmonary embolism and infarction +41512 Septic pulmonary embolism +41513 Saddle embolus of pulmonary artery +41519 Other pulmonary embolism and infarction +4160 Primary pulmonary hypertension +4161 Kyphoscoliotic heart disease +4162 Chronic pulmonary embolism +4168 Other chronic pulmonary heart diseases +4169 Chronic pulmonary heart disease, unspecified +4170 Arteriovenous fistula of pulmonary vessels +4171 Aneurysm of pulmonary artery +4178 Other specified diseases of pulmonary circulation +4179 Unspecified disease of pulmonary circulation +4200 Acute pericarditis in diseases classified elsewhere +42090 Acute pericarditis, unspecified +42091 Acute idiopathic pericarditis +42099 Other acute pericarditis +4210 Acute and subacute bacterial endocarditis +4211 Acute and subacute infective endocarditis in diseases classified elsewhere +4219 Acute endocarditis, unspecified +4220 Acute myocarditis in diseases classified elsewhere +42290 Acute myocarditis, unspecified +42291 Idiopathic myocarditis +42292 Septic myocarditis +42293 Toxic myocarditis +42299 Other acute myocarditis +4230 Hemopericardium +4231 Adhesive pericarditis +4232 Constrictive pericarditis +4233 Cardiac tamponade +4238 Other specified diseases of pericardium +4239 Unspecified disease of pericardium +4240 Mitral valve disorders +4241 Aortic valve disorders +4242 Tricuspid valve disorders, specified as nonrheumatic +4243 Pulmonary valve disorders +42490 Endocarditis, valve unspecified, unspecified cause +42491 Endocarditis in diseases classified elsewhere +42499 Other endocarditis, valve unspecified +4250 Endomyocardial fibrosis +42511 Hypertrophic obstructive cardiomyopathy +42518 Other hypertrophic cardiomyopathy +4252 Obscure cardiomyopathy of Africa +4253 Endocardial fibroelastosis +4254 Other primary cardiomyopathies +4255 Alcoholic cardiomyopathy +4257 Nutritional and metabolic cardiomyopathy +4258 Cardiomyopathy in other diseases classified elsewhere +4259 Secondary cardiomyopathy, unspecified +4260 Atrioventricular block, complete +42610 Atrioventricular block, unspecified +42611 First degree atrioventricular block +42612 Mobitz (type) II atrioventricular block +42613 Other second degree atrioventricular block +4262 Left bundle branch hemiblock +4263 Other left bundle branch block +4264 Right bundle branch block +42650 Bundle branch block, unspecified +42651 Right bundle branch block and left posterior fascicular block +42652 Right bundle branch block and left anterior fascicular block +42653 Other bilateral bundle branch block +42654 Trifascicular block +4266 Other heart block +4267 Anomalous atrioventricular excitation +42681 Lown-Ganong-Levine syndrome +42682 Long QT syndrome +42689 Other specified conduction disorders +4269 Conduction disorder, unspecified +4270 Paroxysmal supraventricular tachycardia +4271 Paroxysmal ventricular tachycardia +4272 Paroxysmal tachycardia, unspecified +42731 Atrial fibrillation +42732 Atrial flutter +42741 Ventricular fibrillation +42742 Ventricular flutter +4275 Cardiac arrest +42760 Premature beats, unspecified +42761 Supraventricular premature beats +42769 Other premature beats +42781 Sinoatrial node dysfunction +42789 Other specified cardiac dysrhythmias +4279 Cardiac dysrhythmia, unspecified +4280 Congestive heart failure, unspecified +4281 Left heart failure +42820 Systolic heart failure, unspecified +42821 Acute systolic heart failure +42822 Chronic systolic heart failure +42823 Acute on chronic systolic heart failure +42830 Diastolic heart failure, unspecified +42831 Acute diastolic heart failure +42832 Chronic diastolic heart failure +42833 Acute on chronic diastolic heart failure +42840 Combined systolic and diastolic heart failure, unspecified +42841 Acute combined systolic and diastolic heart failure +42842 Chronic combined systolic and diastolic heart failure +42843 Acute on chronic combined systolic and diastolic heart failure +4289 Heart failure, unspecified +4290 Myocarditis, unspecified +4291 Myocardial degeneration +4292 Cardiovascular disease, unspecified +4293 Cardiomegaly +4294 Functional disturbances following cardiac surgery +4295 Rupture of chordae tendineae +4296 Rupture of papillary muscle +42971 Acquired cardiac septal defect +42979 Certain sequelae of myocardial infarction, not elsewhere classified, other +42981 Other disorders of papillary muscle +42982 Hyperkinetic heart disease +42983 Takotsubo syndrome +42989 Other ill-defined heart diseases +4299 Heart disease, unspecified +430 Subarachnoid hemorrhage +431 Intracerebral hemorrhage +4320 Nontraumatic extradural hemorrhage +4321 Subdural hemorrhage +4329 Unspecified intracranial hemorrhage +43300 Occlusion and stenosis of basilar artery without mention of cerebral infarction +43301 Occlusion and stenosis of basilar artery with cerebral infarction +43310 Occlusion and stenosis of carotid artery without mention of cerebral infarction +43311 Occlusion and stenosis of carotid artery with cerebral infarction +43320 Occlusion and stenosis of vertebral artery without mention of cerebral infarction +43321 Occlusion and stenosis of vertebral artery with cerebral infarction +43330 Occlusion and stenosis of multiple and bilateral precerebral arteries without mention of cerebral infarction +43331 Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction +43380 Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction +43381 Occlusion and stenosis of other specified precerebral artery with cerebral infarction +43390 Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction +43391 Occlusion and stenosis of unspecified precerebral artery with cerebral infarction +43400 Cerebral thrombosis without mention of cerebral infarction +43401 Cerebral thrombosis with cerebral infarction +43410 Cerebral embolism without mention of cerebral infarction +43411 Cerebral embolism with cerebral infarction +43490 Cerebral artery occlusion, unspecified without mention of cerebral infarction +43491 Cerebral artery occlusion, unspecified with cerebral infarction +4350 Basilar artery syndrome +4351 Vertebral artery syndrome +4352 Subclavian steal syndrome +4353 Vertebrobasilar artery syndrome +4358 Other specified transient cerebral ischemias +4359 Unspecified transient cerebral ischemia +436 Acute, but ill-defined, cerebrovascular disease +4370 Cerebral atherosclerosis +4371 Other generalized ischemic cerebrovascular disease +4372 Hypertensive encephalopathy +4373 Cerebral aneurysm, nonruptured +4374 Cerebral arteritis +4375 Moyamoya disease +4376 Nonpyogenic thrombosis of intracranial venous sinus +4377 Transient global amnesia +4378 Other ill-defined cerebrovascular disease +4379 Unspecified cerebrovascular disease +4380 Late effects of cerebrovascular disease, cognitive deficits +43810 Late effects of cerebrovascular disease, speech and language deficit, unspecified +43811 Late effects of cerebrovascular disease, aphasia +43812 Late effects of cerebrovascular disease, dysphasia +43813 Late effects of cerebrovascular disease, dysarthria +43814 Late effects of cerebrovascular disease, fluency disorder +43819 Late effects of cerebrovascular disease, other speech and language deficits +43820 Late effects of cerebrovascular disease, hemiplegia affecting unspecified side +43821 Late effects of cerebrovascular disease, hemiplegia affecting dominant side +43822 Late effects of cerebrovascular disease, hemiplegia affecting nondominant side +43830 Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side +43831 Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side +43832 Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side +43840 Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side +43841 Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side +43842 Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side +43850 Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side +43851 Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side +43852 Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side +43853 Late effects of cerebrovascular disease, other paralytic syndrome, bilateral +4386 Late effects of cerebrovascular disease, alterations of sensations +4387 Late effects of cerebrovascular disease, disturbances of vision +43881 Other late effects of cerebrovascular disease, apraxia +43882 Other late effects of cerebrovascular disease, dysphagia +43883 Other late effects of cerebrovascular disease, facial weakness +43884 Other late effects of cerebrovascular disease, ataxia +43885 Other late effects of cerebrovascular disease, vertigo +43889 Other late effects of cerebrovascular disease +4389 Unspecified late effects of cerebrovascular disease +4400 Atherosclerosis of aorta +4401 Atherosclerosis of renal artery +44020 Atherosclerosis of native arteries of the extremities, unspecified +44021 Atherosclerosis of native arteries of the extremities with intermittent claudication +44022 Atherosclerosis of native arteries of the extremities with rest pain +44023 Atherosclerosis of native arteries of the extremities with ulceration +44024 Atherosclerosis of native arteries of the extremities with gangrene +44029 Other atherosclerosis of native arteries of the extremities +44030 Atherosclerosis of unspecified bypass graft of the extremities +44031 Atherosclerosis of autologous vein bypass graft of the extremities +44032 Atherosclerosis of nonautologous biological bypass graft of the extremities +4404 Chronic total occlusion of artery of the extremities +4408 Atherosclerosis of other specified arteries +4409 Generalized and unspecified atherosclerosis +44100 Dissection of aorta, unspecified site +44101 Dissection of aorta, thoracic +44102 Dissection of aorta, abdominal +44103 Dissection of aorta, thoracoabdominal +4411 Thoracic aneurysm, ruptured +4412 Thoracic aneurysm without mention of rupture +4413 Abdominal aneurysm, ruptured +4414 Abdominal aneurysm without mention of rupture +4415 Aortic aneurysm of unspecified site, ruptured +4416 Thoracoabdominal aneurysm, ruptured +4417 Thoracoabdominal aneurysm, without mention of rupture +4419 Aortic aneurysm of unspecified site without mention of rupture +4420 Aneurysm of artery of upper extremity +4421 Aneurysm of renal artery +4422 Aneurysm of iliac artery +4423 Aneurysm of artery of lower extremity +44281 Aneurysm of artery of neck +44282 Aneurysm of subclavian artery +44283 Aneurysm of splenic artery +44284 Aneurysm of other visceral artery +44289 Aneurysm of other specified artery +4429 Aneurysm of unspecified site +4430 Raynaud's syndrome +4431 Thromboangiitis obliterans [Buerger's disease] +44321 Dissection of carotid artery +44322 Dissection of iliac artery +44323 Dissection of renal artery +44324 Dissection of vertebral artery +44329 Dissection of other artery +44381 Peripheral angiopathy in diseases classified elsewhere +44382 Erythromelalgia +44389 Other specified peripheral vascular diseases +4439 Peripheral vascular disease, unspecified +44401 Saddle embolus of abdominal aorta +44409 Other arterial embolism and thrombosis of abdominal aorta +4441 Embolism and thrombosis of thoracic aorta +44421 Arterial embolism and thrombosis of upper extremity +44422 Arterial embolism and thrombosis of lower extremity +44481 Embolism and thrombosis of iliac artery +44489 Embolism and thrombosis of other specified artery +4449 Embolism and thrombosis of unspecified artery +44501 Atheroembolism of upper extremity +44502 Atheroembolism of lower extremity +44581 Atheroembolism of kidney +44589 Atheroembolism of other site +4460 Polyarteritis nodosa +4461 Acute febrile mucocutaneous lymph node syndrome [MCLS] +44620 Hypersensitivity angiitis, unspecified +44621 Goodpasture's syndrome +44629 Other specified hypersensitivity angiitis +4463 Lethal midline granuloma +4464 Wegener's granulomatosis +4465 Giant cell arteritis +4466 Thrombotic microangiopathy +4467 Takayasu's disease +4470 Arteriovenous fistula, acquired +4471 Stricture of artery +4472 Rupture of artery +4473 Hyperplasia of renal artery +4474 Celiac artery compression syndrome +4475 Necrosis of artery +4476 Arteritis, unspecified +44770 Aortic ectasia, unspecified site +44771 Thoracic aortic ectasia +44772 Abdominal aortic ectasia +44773 Thoracoabdominal aortic ectasia +4478 Other specified disorders of arteries and arterioles +4479 Unspecified disorders of arteries and arterioles +4480 Hereditary hemorrhagic telangiectasia +4481 Nevus, non-neoplastic +4489 Other and unspecified capillary diseases +449 Septic arterial embolism +4510 Phlebitis and thrombophlebitis of superficial vessels of lower extremities +45111 Phlebitis and thrombophlebitis of femoral vein (deep) (superficial) +45119 Phlebitis and thrombophlebitis of deep veins of lower extremities, other +4512 Phlebitis and thrombophlebitis of lower extremities, unspecified +45181 Phlebitis and thrombophlebitis of iliac vein +45182 Phlebitis and thrombophlebitis of superficial veins of upper extremities +45183 Phlebitis and thrombophlebitis of deep veins of upper extremities +45184 Phlebitis and thrombophlebitis of upper extremities, unspecified +45189 Phlebitis and thrombophlebitis of other sites +4519 Phlebitis and thrombophlebitis of unspecified site +452 Portal vein thrombosis +4530 Budd-chiari syndrome +4531 Thrombophlebitis migrans +4532 Other venous embolism and thrombosis of inferior vena cava +4533 Other venous embolism and thrombosis of renal vein +45340 Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity +45341 Acute venous embolism and thrombosis of deep vessels of proximal lower extremity +45342 Acute venous embolism and thrombosis of deep vessels of distal lower extremity +45350 Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity +45351 Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity +45352 Chronic venous embolism and thrombosis of deep vessels of distal lower extremity +4536 Venous embolism and thrombosis of superficial vessels of lower extremity +45371 Chronic venous embolism and thrombosis of superficial veins of upper extremity +45372 Chronic venous embolism and thrombosis of deep veins of upper extremity +45373 Chronic venous embolism and thrombosis of upper extremity, unspecified +45374 Chronic venous embolism and thrombosis of axillary veins +45375 Chronic venous embolism and thrombosis of subclavian veins +45376 Chronic venous embolism and thrombosis of internal jugular veins +45377 Chronic venous embolism and thrombosis of other thoracic veins +45379 Chronic venous embolism and thrombosis of other specified veins +45381 Acute venous embolism and thrombosis of superficial veins of upper extremity +45382 Acute venous embolism and thrombosis of deep veins of upper extremity +45383 Acute venous embolism and thrombosis of upper extremity, unspecified +45384 Acute venous embolism and thrombosis of axillary veins +45385 Acute venous embolism and thrombosis of subclavian veins +45386 Acute venous embolism and thrombosis of internal jugular veins +45387 Acute venous embolism and thrombosis of other thoracic veins +45389 Acute venous embolism and thrombosis of other specified veins +4539 Other venous embolism and thrombosis of unspecified site +4540 Varicose veins of lower extremities with ulcer +4541 Varicose veins of lower extremities with inflammation +4542 Varicose veins of lower extremities with ulcer and inflammation +4548 Varicose veins of lower extremities with other complications +4549 Asymptomatic varicose veins +4550 Internal hemorrhoids without mention of complication +4551 Internal thrombosed hemorrhoids +4552 Internal hemorrhoids with other complication +4553 External hemorrhoids without mention of complication +4554 External thrombosed hemorrhoids +4555 External hemorrhoids with other complication +4556 Unspecified hemorrhoids without mention of complication +4557 Unspecified thrombosed hemorrhoids +4558 Unspecified hemorrhoids with other complication +4559 Residual hemorrhoidal skin tags +4560 Esophageal varices with bleeding +4561 Esophageal varices without mention of bleeding +45620 Esophageal varices in diseases classified elsewhere, with bleeding +45621 Esophageal varices in diseases classified elsewhere, without mention of bleeding +4563 Sublingual varices +4564 Scrotal varices +4565 Pelvic varices +4566 Vulval varices +4568 Varices of other sites +4570 Postmastectomy lymphedema syndrome +4571 Other lymphedema +4572 Lymphangitis +4578 Other noninfectious disorders of lymphatic channels +4579 Unspecified noninfectious disorder of lymphatic channels +4580 Orthostatic hypotension +4581 Chronic hypotension +45821 Hypotension of hemodialysis +45829 Other iatrogenic hypotension +4588 Other specified hypotension +4589 Hypotension, unspecified +4590 Hemorrhage, unspecified +45910 Postphlebetic syndrome without complications +45911 Postphlebetic syndrome with ulcer +45912 Postphlebetic syndrome with inflammation +45913 Postphlebetic syndrome with ulcer and inflammation +45919 Postphlebetic syndrome with other complication +4592 Compression of vein +45930 Chronic venous hypertension without complications +45931 Chronic venous hypertension with ulcer +45932 Chronic venous hypertension with inflammation +45933 Chronic venous hypertension with ulcer and inflammation +45939 Chronic venous hypertension with other complication +45981 Venous (peripheral) insufficiency, unspecified +45989 Other specified disorders of circulatory system +4599 Unspecified circulatory system disorder +460 Acute nasopharyngitis [common cold] +4610 Acute maxillary sinusitis +4611 Acute frontal sinusitis +4612 Acute ethmoidal sinusitis +4613 Acute sphenoidal sinusitis +4618 Other acute sinusitis +4619 Acute sinusitis, unspecified +462 Acute pharyngitis +463 Acute tonsillitis +46400 Acute laryngitis without mention of obstruction +46401 Acute laryngitis with obstruction +46410 Acute tracheitis without mention of obstruction +46411 Acute tracheitis with obstruction +46420 Acute laryngotracheitis without mention of obstruction +46421 Acute laryngotracheitis with obstruction +46430 Acute epiglottitis without mention of obstruction +46431 Acute epiglottitis with obstruction +4644 Croup +46450 Supraglottitis unspecified, without obstruction +46451 Supraglottitis unspecified, with obstruction +4650 Acute laryngopharyngitis +4658 Acute upper respiratory infections of other multiple sites +4659 Acute upper respiratory infections of unspecified site +4660 Acute bronchitis +46611 Acute bronchiolitis due to respiratory syncytial virus (RSV) +46619 Acute bronchiolitis due to other infectious organisms +470 Deviated nasal septum +4710 Polyp of nasal cavity +4711 Polypoid sinus degeneration +4718 Other polyp of sinus +4719 Unspecified nasal polyp +4720 Chronic rhinitis +4721 Chronic pharyngitis +4722 Chronic nasopharyngitis +4730 Chronic maxillary sinusitis +4731 Chronic frontal sinusitis +4732 Chronic ethmoidal sinusitis +4733 Chronic sphenoidal sinusitis +4738 Other chronic sinusitis +4739 Unspecified sinusitis (chronic) +47400 Chronic tonsillitis +47401 Chronic adenoiditis +47402 Chronic tonsillitis and adenoiditis +47410 Hypertrophy of tonsil with adenoids +47411 Hypertrophy of tonsils alone +47412 Hypertrophy of adenoids alone +4742 Adenoid vegetations +4748 Other chronic disease of tonsils and adenoids +4749 Unspecified chronic disease of tonsils and adenoids +475 Peritonsillar abscess +4760 Chronic laryngitis +4761 Chronic laryngotracheitis +4770 Allergic rhinitis due to pollen +4771 Allergic rhinitis due to food +4772 Allergic rhinitis due to animal (cat) (dog) hair and dander +4778 Allergic rhinitis due to other allergen +4779 Allergic rhinitis, cause unspecified +4780 Hypertrophy of nasal turbinates +47811 Nasal mucositis (ulcerative) +47819 Other disease of nasal cavity and sinuses +47820 Unspecified disease of pharynx +47821 Cellulitis of pharynx or nasopharynx +47822 Parapharyngeal abscess +47824 Retropharyngeal abscess +47825 Edema of pharynx or nasopharynx +47826 Cyst of pharynx or nasopharynx +47829 Other diseases of pharynx, not elsewhere classified +47830 Paralysis of vocal cords or larynx, unspecified +47831 Unilateral paralysis of vocal cords or larynx, partial +47832 Unilateral paralysis of vocal cords or larynx, complete +47833 Bilateral paralysis of vocal cords or larynx, partial +47834 Bilateral paralysis of vocal cords or larynx, complete +4784 Polyp of vocal cord or larynx +4785 Other diseases of vocal cords +4786 Edema of larynx +47870 Unspecified disease of larynx +47871 Cellulitis and perichondritis of larynx +47874 Stenosis of larynx +47875 Laryngeal spasm +47879 Other diseases of larynx, not elsewhere classified +4788 Upper respiratory tract hypersensitivity reaction, site unspecified +4789 Other and unspecified diseases of upper respiratory tract +4800 Pneumonia due to adenovirus +4801 Pneumonia due to respiratory syncytial virus +4802 Pneumonia due to parainfluenza virus +4803 Pneumonia due to SARS-associated coronavirus +4808 Pneumonia due to other virus not elsewhere classified +4809 Viral pneumonia, unspecified +481 Pneumococcal pneumonia [Streptococcus pneumoniae pneumonia] +4820 Pneumonia due to Klebsiella pneumoniae +4821 Pneumonia due to Pseudomonas +4822 Pneumonia due to Hemophilus influenzae [H. influenzae] +48230 Pneumonia due to Streptococcus, unspecified +48231 Pneumonia due to Streptococcus, group A +48232 Pneumonia due to Streptococcus, group B +48239 Pneumonia due to other Streptococcus +48240 Pneumonia due to Staphylococcus, unspecified +48241 Methicillin susceptible pneumonia due to Staphylococcus aureus +48242 Methicillin resistant pneumonia due to Staphylococcus aureus +48249 Other Staphylococcus pneumonia +48281 Pneumonia due to anaerobes +48282 Pneumonia due to escherichia coli [E. coli] +48283 Pneumonia due to other gram-negative bacteria +48284 Pneumonia due to Legionnaires' disease +48289 Pneumonia due to other specified bacteria +4829 Bacterial pneumonia, unspecified +4830 Pneumonia due to mycoplasma pneumoniae +4831 Pneumonia due to chlamydia +4838 Pneumonia due to other specified organism +4841 Pneumonia in cytomegalic inclusion disease +4843 Pneumonia in whooping cough +4845 Pneumonia in anthrax +4846 Pneumonia in aspergillosis +4847 Pneumonia in other systemic mycoses +4848 Pneumonia in other infectious diseases classified elsewhere +485 Bronchopneumonia, organism unspecified +486 Pneumonia, organism unspecified +4870 Influenza with pneumonia +4871 Influenza with other respiratory manifestations +4878 Influenza with other manifestations +48801 Influenza due to identified avian influenza virus with pneumonia +48802 Influenza due to identified avian influenza virus with other respiratory manifestations +48809 Influenza due to identified avian influenza virus with other manifestations +48811 Influenza due to identified 2009 H1N1 influenza virus with pneumonia +48812 Influenza due to identified 2009 H1N1 influenza virus with other respiratory manifestations +48819 Influenza due to identified 2009 H1N1 influenza virus with other manifestations +48881 Influenza due to identified novel influenza A virus with pneumonia +48882 Influenza due to identified novel influenza A virus with other respiratory manifestations +48889 Influenza due to identified novel influenza A virus with other manifestations +490 Bronchitis, not specified as acute or chronic +4910 Simple chronic bronchitis +4911 Mucopurulent chronic bronchitis +49120 Obstructive chronic bronchitis without exacerbation +49121 Obstructive chronic bronchitis with (acute) exacerbation +49122 Obstructive chronic bronchitis with acute bronchitis +4918 Other chronic bronchitis +4919 Unspecified chronic bronchitis +4920 Emphysematous bleb +4928 Other emphysema +49300 Extrinsic asthma, unspecified +49301 Extrinsic asthma with status asthmaticus +49302 Extrinsic asthma with (acute) exacerbation +49310 Intrinsic asthma, unspecified +49311 Intrinsic asthma with status asthmaticus +49312 Intrinsic asthma with (acute) exacerbation +49320 Chronic obstructive asthma, unspecified +49321 Chronic obstructive asthma with status asthmaticus +49322 Chronic obstructive asthma with (acute) exacerbation +49381 Exercise induced bronchospasm +49382 Cough variant asthma +49390 Asthma, unspecified type, unspecified +49391 Asthma, unspecified type, with status asthmaticus +49392 Asthma, unspecified type, with (acute) exacerbation +4940 Bronchiectasis without acute exacerbation +4941 Bronchiectasis with acute exacerbation +4950 Farmers' lung +4951 Bagassosis +4952 Bird-fanciers' lung +4953 Suberosis +4954 Malt workers' lung +4955 Mushroom workers' lung +4956 Maple bark-strippers' lung +4957 "Ventilation" pneumonitis +4958 Other specified allergic alveolitis and pneumonitis +4959 Unspecified allergic alveolitis and pneumonitis +496 Chronic airway obstruction, not elsewhere classified +500 Coal workers' pneumoconiosis +501 Asbestosis +502 Pneumoconiosis due to other silica or silicates +503 Pneumoconiosis due to other inorganic dust +504 Pneumonopathy due to inhalation of other dust +505 Pneumoconiosis, unspecified +5060 Bronchitis and pneumonitis due to fumes and vapors +5061 Acute pulmonary edema due to fumes and vapors +5062 Upper respiratory inflammation due to fumes and vapors +5063 Other acute and subacute respiratory conditions due to fumes and vapors +5064 Chronic respiratory conditions due to fumes and vapors +5069 Unspecified respiratory conditions due to fumes and vapors +5070 Pneumonitis due to inhalation of food or vomitus +5071 Pneumonitis due to inhalation of oils and essences +5078 Pneumonitis due to other solids and liquids +5080 Acute pulmonary manifestations due to radiation +5081 Chronic and other pulmonary manifestations due to radiation +5082 Respiratory conditions due to smoke inhalation +5088 Respiratory conditions due to other specified external agents +5089 Respiratory conditions due to unspecified external agent +5100 Empyema with fistula +5109 Empyema without mention of fistula +5110 Pleurisy without mention of effusion or current tuberculosis +5111 Pleurisy with effusion, with mention of a bacterial cause other than tuberculosis +51181 Malignant pleural effusion +51189 Other specified forms of effusion, except tuberculous +5119 Unspecified pleural effusion +5120 Spontaneous tension pneumothorax +5121 Iatrogenic pneumothorax +5122 Postoperative air leak +51281 Primary spontaneous pneumothorax +51282 Secondary spontaneous pneumothorax +51283 Chronic pneumothorax +51284 Other air leak +51289 Other pneumothorax +5130 Abscess of lung +5131 Abscess of mediastinum +514 Pulmonary congestion and hypostasis +515 Postinflammatory pulmonary fibrosis +5160 Pulmonary alveolar proteinosis +5161 Idiopathic pulmonary hemosiderosis +5162 Pulmonary alveolar microlithiasis +51630 Idiopathic interstitial pneumonia, not otherwise specified +51631 Idiopathic pulmonary fibrosis +51632 Idiopathic non-specific interstitial pneumonitis +51633 Acute interstitial pneumonitis +51634 Respiratory bronchiolitis interstitial lung disease +51635 Idiopathic lymphoid interstitial pneumonia +51636 Cryptogenic organizing pneumonia +51637 Desquamative interstitial pneumonia +5164 Lymphangioleiomyomatosis +5165 Adult pulmonary Langerhans cell histiocytosis +51661 Neuroendocrine cell hyperplasia of infancy +51662 Pulmonary interstitial glycogenosis +51663 Surfactant mutations of the lung +51664 Alveolar capillary dysplasia with vein misalignment +51669 Other interstitial lung diseases of childhood +5168 Other specified alveolar and parietoalveolar pneumonopathies +5169 Unspecified alveolar and parietoalveolar pneumonopathy +5171 Rheumatic pneumonia +5172 Lung involvement in systemic sclerosis +5173 Acute chest syndrome +5178 Lung involvement in other diseases classified elsewhere +5180 Pulmonary collapse +5181 Interstitial emphysema +5182 Compensatory emphysema +5183 Pulmonary eosinophilia +5184 Acute edema of lung, unspecified +51851 Acute respiratory failure following trauma and surgery +51852 Other pulmonary insufficiency, not elsewhere classified, following trauma and surgery +51853 Acute and chronic respiratory failure following trauma and surgery +5186 Allergic bronchopulmonary aspergillosis +5187 Transfusion related acute lung injury (TRALI) +51881 Acute respiratory failure +51882 Other pulmonary insufficiency, not elsewhere classified +51883 Chronic respiratory failure +51884 Acute and chronic respiratory failure +51889 Other diseases of lung, not elsewhere classified +51900 Tracheostomy complication, unspecified +51901 Infection of tracheostomy +51902 Mechanical complication of tracheostomy +51909 Other tracheostomy complications +51911 Acute bronchospasm +51919 Other diseases of trachea and bronchus +5192 Mediastinitis +5193 Other diseases of mediastinum, not elsewhere classified +5194 Disorders of diaphragm +5198 Other diseases of respiratory system, not elsewhere classified +5199 Unspecified disease of respiratory system +5200 Anodontia +5201 Supernumerary teeth +5202 Abnormalities of size and form of teeth +5203 Mottled teeth +5204 Disturbances of tooth formation +5205 Hereditary disturbances in tooth structure, not elsewhere classified +5206 Disturbances in tooth eruption +5207 Teething syndrome +5208 Other specified disorders of tooth development and eruption +5209 Unspecified disorder of tooth development and eruption +52100 Dental caries, unspecified +52101 Dental caries limited to enamel +52102 Dental caries extending into dentine +52103 Dental caries extending into pulp +52104 Arrested dental caries +52105 Odontoclasia +52106 Dental caries pit and fissure +52107 Dental caries of smooth surface +52108 Dental caries of root surface +52109 Other dental caries +52110 Excessive attrition, unspecified +52111 Excessive attrition, limited to enamel +52112 Excessive attrition, extending into dentine +52113 Excessive attrition, extending into pulp +52114 Excessive attrition, localized +52115 Excessive attrition, generalized +52120 Abrasion, unspecified +52121 Abrasion, limited to enamel +52122 Abrasion, extending into dentine +52123 Abrasion, extending into pulp +52124 Abrasion, localized +52125 Abrasion, generalized +52130 Erosion, unspecified +52131 Erosion, limited to enamel +52132 Erosion, extending into dentine +52133 Erosion, extending into pulp +52134 Erosion, localized +52135 Erosion, generalized +52140 Pathological resorption, unspecified +52141 Pathological resorption, internal +52142 Pathological resorption, external +52149 Other pathological resorption +5215 Hypercementosis +5216 Ankylosis of teeth +5217 Intrinsic posteruptive color changes +52181 Cracked tooth +52189 Other specific diseases of hard tissues of teeth +5219 Unspecified disease of hard tissues of teeth +5220 Pulpitis +5221 Necrosis of the pulp +5222 Pulp degeneration +5223 Abnormal hard tissue formation in pulp +5224 Acute apical periodontitis of pulpal origin +5225 Periapical abscess without sinus +5226 Chronic apical periodontitis +5227 Periapical abscess with sinus +5228 Radicular cyst +5229 Other and unspecified diseases of pulp and periapical tissues +52300 Acute gingivitis, plaque induced +52301 Acute gingivitis, non-plaque induced +52310 Chronic gingivitis, plaque induced +52311 Chronic gingivitis, non-plaque induced +52320 Gingival recession, unspecified +52321 Gingival recession, minimal +52322 Gingival recession, moderate +52323 Gingival recession, severe +52324 Gingival recession, localized +52325 Gingival recession, generalized +52330 Aggressive periodontitis, unspecified +52331 Aggressive periodontitis, localized +52332 Aggressive periodontitis, generalized +52333 Acute periodontitis +52340 Chronic periodontitis, unspecified +52341 Chronic periodontitis, localized +52342 Chronic periodontitis, generalized +5235 Periodontosis +5236 Accretions on teeth +5238 Other specified periodontal diseases +5239 Unspecified gingival and periodontal disease +52400 Major anomalies of jaw size, unspecified anomaly +52401 Major anomalies of jaw size, maxillary hyperplasia +52402 Major anomalies of jaw size, mandibular hyperplasia +52403 Major anomalies of jaw size, maxillary hypoplasia +52404 Major anomalies of jaw size, mandibular hypoplasia +52405 Major anomalies of jaw size, macrogenia +52406 Major anomalies of jaw size, microgenia +52407 Excessive tuberosity of jaw +52409 Major anomalies of jaw size, other specified anomaly +52410 Anomalies of relationship of jaw to cranial base, unspecified anomaly +52411 Anomalies of relationship of jaw to cranial base, maxillary asymmetry +52412 Anomalies of relationship of jaw to cranial base, other jaw asymmetry +52419 Anomalies of relationship of jaw to cranial base, other specified anomaly +52420 Unspecified anomaly of dental arch relationship +52421 Malocclusion, Angle's class I +52422 Malocclusion, Angle's class II +52423 Malocclusion, Angle's class III +52424 Open anterior occlusal relationship +52425 Open posterior occlusal relationship +52426 Excessive horizontal overlap +52427 Reverse articulation +52428 Anomalies of interarch distance +52429 Other anomalies of dental arch relationship +52430 Unspecified anomaly of tooth position +52431 Crowding of teeth +52432 Excessive spacing of teeth +52433 Horizontal displacement of teeth +52434 Vertical displacement of teeth +52435 Rotation of tooth/teeth +52436 Insufficient interocclusal distance of teeth (ridge) +52437 Excessive interocclusal distance of teeth +52439 Other anomalies of tooth position +5244 Malocclusion, unspecified +52450 Dentofacial functional abnormality, unspecified +52451 Abnormal jaw closure +52452 Limited mandibular range of motion +52453 Deviation in opening and closing of the mandible +52454 Insufficient anterior guidance +52455 Centric occlusion maximum intercuspation discrepancy +52456 Non-working side interference +52457 Lack of posterior occlusal support +52459 Other dentofacial functional abnormalities +52460 Temporomandibular joint disorders, unspecified +52461 Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous) +52462 Temporomandibular joint disorders, arthralgia of temporomandibular joint +52463 Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing) +52464 Temporomandibular joint sounds on opening and/or closing the jaw +52469 Other specified temporomandibular joint disorders +52470 Dental alveolar anomalies, unspecified alveolar anomaly +52471 Alveolar maxillary hyperplasia +52472 Alveolar mandibular hyperplasia +52473 Alveolar maxillary hypoplasia +52474 Alveolar mandibular hypoplasia +52475 Vertical displacement of alveolus and teeth +52476 Occlusal plane deviation +52479 Other specified alveolar anomaly +52481 Anterior soft tissue impingement +52482 Posterior soft tissue impingement +52489 Other specified dentofacial anomalies +5249 Unspecified dentofacial anomalies +5250 Exfoliation of teeth due to systemic causes +52510 Acquired absence of teeth, unspecified +52511 Loss of teeth due to trauma +52512 Loss of teeth due to periodontal disease +52513 Loss of teeth due to caries +52519 Other loss of teeth +52520 Unspecified atrophy of edentulous alveolar ridge +52521 Minimal atrophy of the mandible +52522 Moderate atrophy of the mandible +52523 Severe atrophy of the mandible +52524 Minimal atrophy of the maxilla +52525 Moderate atrophy of the maxilla +52526 Severe atrophy of the maxilla +5253 Retained dental root +52540 Complete edentulism, unspecified +52541 Complete edentulism, class I +52542 Complete edentulism, class II +52543 Complete edentulism, class III +52544 Complete edentulism, class IV +52550 Partial edentulism, unspecified +52551 Partial edentulism, class I +52552 Partial edentulism, class II +52553 Partial edentulism, class III +52554 Partial edentulism, class IV +52560 Unspecified unsatisfactory restoration of tooth +52561 Open restoration margins +52562 Unrepairable overhanging of dental restorative materials +52563 Fractured dental restorative material without loss of material +52564 Fractured dental restorative material with loss of material +52565 Contour of existing restoration of tooth biologically incompatible with oral health +52566 Allergy to existing dental restorative material +52567 Poor aesthetics of existing restoration +52569 Other unsatisfactory restoration of existing tooth +52571 Osseointegration failure of dental implant +52572 Post-osseointegration biological failure of dental implant +52573 Post-osseointegration mechanical failure of dental implant +52579 Other endosseous dental implant failure +5258 Other specified disorders of the teeth and supporting structures +5259 Unspecified disorder of the teeth and supporting structures +5260 Developmental odontogenic cysts +5261 Fissural cysts of jaw +5262 Other cysts of jaws +5263 Central giant cell (reparative) granuloma +5264 Inflammatory conditions of jaw +5265 Alveolitis of jaw +52661 Perforation of root canal space +52662 Endodontic overfill +52663 Endodontic underfill +52669 Other periradicular pathology associated with previous endodontic treatment +52681 Exostosis of jaw +52689 Other specified diseases of the jaws +5269 Unspecified disease of the jaws +5270 Atrophy of salivary gland +5271 Hypertrophy of salivary gland +5272 Sialoadenitis +5273 Abscess of salivary gland +5274 Fistula of salivary gland +5275 Sialolithiasis +5276 Mucocele of salivary gland +5277 Disturbance of salivary secretion +5278 Other specified diseases of the salivary glands +5279 Unspecified disease of the salivary glands +52800 Stomatitis and mucositis, unspecified +52801 Mucositis (ulcerative) due to antineoplastic therapy +52802 Mucositis (ulcerative) due to other drugs +52809 Other stomatitis and mucositis (ulcerative) +5281 Cancrum oris +5282 Oral aphthae +5283 Cellulitis and abscess of oral soft tissues +5284 Cysts of oral soft tissues +5285 Diseases of lips +5286 Leukoplakia of oral mucosa, including tongue +52871 Minimal keratinized residual ridge mucosa +52872 Excessive keratinized residual ridge mucosa +52879 Other disturbances of oral epithelium, including tongue +5288 Oral submucosal fibrosis, including of tongue +5289 Other and unspecified diseases of the oral soft tissues +5290 Glossitis +5291 Geographic tongue +5292 Median rhomboid glossitis +5293 Hypertrophy of tongue papillae +5294 Atrophy of tongue papillae +5295 Plicated tongue +5296 Glossodynia +5298 Other specified conditions of the tongue +5299 Unspecified condition of the tongue +5300 Achalasia and cardiospasm +53010 Esophagitis, unspecified +53011 Reflux esophagitis +53012 Acute esophagitis +53013 Eosinophilic esophagitis +53019 Other esophagitis +53020 Ulcer of esophagus without bleeding +53021 Ulcer of esophagus with bleeding +5303 Stricture and stenosis of esophagus +5304 Perforation of esophagus +5305 Dyskinesia of esophagus +5306 Diverticulum of esophagus, acquired +5307 Gastroesophageal laceration-hemorrhage syndrome +53081 Esophageal reflux +53082 Esophageal hemorrhage +53083 Esophageal leukoplakia +53084 Tracheoesophageal fistula +53085 Barrett's esophagus +53086 Infection of esophagostomy +53087 Mechanical complication of esophagostomy +53089 Other specified disorders of esophagus +5309 Unspecified disorder of esophagus +53100 Acute gastric ulcer with hemorrhage, without mention of obstruction +53101 Acute gastric ulcer with hemorrhage, with obstruction +53110 Acute gastric ulcer with perforation, without mention of obstruction +53111 Acute gastric ulcer with perforation, with obstruction +53120 Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction +53121 Acute gastric ulcer with hemorrhage and perforation, with obstruction +53130 Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction +53131 Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction +53140 Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction +53141 Chronic or unspecified gastric ulcer with hemorrhage, with obstruction +53150 Chronic or unspecified gastric ulcer with perforation, without mention of obstruction +53151 Chronic or unspecified gastric ulcer with perforation, with obstruction +53160 Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction +53161 Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction +53170 Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction +53171 Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction +53190 Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction +53191 Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction +53200 Acute duodenal ulcer with hemorrhage, without mention of obstruction +53201 Acute duodenal ulcer with hemorrhage, with obstruction +53210 Acute duodenal ulcer with perforation, without mention of obstruction +53211 Acute duodenal ulcer with perforation, with obstruction +53220 Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction +53221 Acute duodenal ulcer with hemorrhage and perforation, with obstruction +53230 Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction +53231 Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction +53240 Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction +53241 Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction +53250 Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction +53251 Chronic or unspecified duodenal ulcer with perforation, with obstruction +53260 Chronic or unspecified duodenal ulcer with hemorrhage and perforation, without mention of obstruction +53261 Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction +53270 Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction +53271 Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction +53290 Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation, without mention of obstruction +53291 Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction +53300 Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction +53301 Acute peptic ulcer of unspecified site with hemorrhage, with obstruction +53310 Acute peptic ulcer of unspecified site with perforation, without mention of obstruction +53311 Acute peptic ulcer of unspecified site with perforation, with obstruction +53320 Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction +53321 Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction +53330 Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, without mention of obstruction +53331 Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction +53340 Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction +53341 Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction +53350 Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction +53351 Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction +53360 Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction +53361 Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction +53370 Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction +53371 Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, with obstruction +53390 Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction +53391 Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction +53400 Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction +53401 Acute gastrojejunal ulcer, with hemorrhage, with obstruction +53410 Acute gastrojejunal ulcer with perforation, without mention of obstruction +53411 Acute gastrojejunal ulcer with perforation, with obstruction +53420 Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction +53421 Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction +53430 Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction +53431 Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction +53440 Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction +53441 Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction +53450 Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction +53451 Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction +53460 Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction +53461 Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction +53470 Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction +53471 Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction +53490 Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction +53491 Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction +53500 Acute gastritis, without mention of hemorrhage +53501 Acute gastritis, with hemorrhage +53510 Atrophic gastritis, without mention of hemorrhage +53511 Atrophic gastritis, with hemorrhage +53520 Gastric mucosal hypertrophy, without mention of hemorrhage +53521 Gastric mucosal hypertrophy, with hemorrhage +53530 Alcoholic gastritis, without mention of hemorrhage +53531 Alcoholic gastritis, with hemorrhage +53540 Other specified gastritis, without mention of hemorrhage +53541 Other specified gastritis, with hemorrhage +53550 Unspecified gastritis and gastroduodenitis, without mention of hemorrhage +53551 Unspecified gastritis and gastroduodenitis, with hemorrhage +53560 Duodenitis, without mention of hemorrhage +53561 Duodenitis, with hemorrhage +53570 Eosinophilic gastritis, without mention of hemorrhage +53571 Eosinophilic gastritis, with hemorrhage +5360 Achlorhydria +5361 Acute dilatation of stomach +5362 Persistent vomiting +5363 Gastroparesis +53640 Gastrostomy complication, unspecified +53641 Infection of gastrostomy +53642 Mechanical complication of gastrostomy +53649 Other gastrostomy complications +5368 Dyspepsia and other specified disorders of function of stomach +5369 Unspecified functional disorder of stomach +5370 Acquired hypertrophic pyloric stenosis +5371 Gastric diverticulum +5372 Chronic duodenal ileus +5373 Other obstruction of duodenum +5374 Fistula of stomach or duodenum +5375 Gastroptosis +5376 Hourglass stricture or stenosis of stomach +53781 Pylorospasm +53782 Angiodysplasia of stomach and duodenum without mention of hemorrhage +53783 Angiodysplasia of stomach and duodenum with hemorrhage +53784 Dieulafoy lesion (hemorrhagic) of stomach and duodenum +53789 Other specified disorders of stomach and duodenum +5379 Unspecified disorder of stomach and duodenum +538 Gastrointestinal mucositis (ulcerative) +53901 Infection due to gastric band procedure +53909 Other complications of gastric band procedure +53981 Infection due to other bariatric procedure +53989 Other complications of other bariatric procedure +5400 Acute appendicitis with generalized peritonitis +5401 Acute appendicitis with peritoneal abscess +5409 Acute appendicitis without mention of peritonitis +541 Appendicitis, unqualified +542 Other appendicitis +5430 Hyperplasia of appendix (lymphoid) +5439 Other and unspecified diseases of appendix +55000 Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent) +55001 Inguinal hernia, with gangrene, unilateral or unspecified, recurrent +55002 Inguinal hernia, with gangrene, bilateral (not specified as recurrent) +55003 Inguinal hernia, with gangrene, bilateral, recurrent +55010 Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent) +55011 Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent +55012 Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent) +55013 Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent +55090 Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent) +55091 Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent +55092 Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent) +55093 Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent +55100 Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent) +55101 Femoral hernia with gangrene, unilateral or unspecified, recurrent +55102 Femoral hernia with gangrene, bilateral (not specified as recurrent) +55103 Femoral hernia with gangrene, bilateral, recurrent +5511 Umbilical hernia with gangrene +55120 Ventral hernia, unspecified, with gangrene +55121 Incisional ventral hernia, with gangrene +55129 Other ventral hernia with gangrene +5513 Diaphragmatic hernia with gangrene +5518 Hernia of other specified sites, with gangrene +5519 Hernia of unspecified site, with gangrene +55200 Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent) +55201 Femoral hernia with obstruction, unilateral or unspecified, recurrent +55202 Femoral hernia with obstruction, bilateral (not specified as recurrent) +55203 Femoral hernia with obstruction, bilateral, recurrent +5521 Umbilical hernia with obstruction +55220 Ventral, unspecified, hernia with obstruction +55221 Incisional ventral hernia with obstruction +55229 Other ventral hernia with obstruction +5523 Diaphragmatic hernia with obstruction +5528 Hernia of other specified sites, with obstruction +5529 Hernia of unspecified site, with obstruction +55300 Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent) +55301 Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent +55302 Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent) +55303 Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent +5531 Umbilical hernia without mention of obstruction or gangrene +55320 Ventral, unspecified, hernia without mention of obstruction or gangrene +55321 Incisional hernia without mention of obstruction or gangrene +55329 Other ventral hernia without mention of obstruction or gangrene +5533 Diaphragmatic hernia without mention of obstruction or gangrene +5538 Hernia of other specified sites without mention of obstruction or gangrene +5539 Hernia of unspecified site without mention of obstruction or gangrene +5550 Regional enteritis of small intestine +5551 Regional enteritis of large intestine +5552 Regional enteritis of small intestine with large intestine +5559 Regional enteritis of unspecified site +5560 Ulcerative (chronic) enterocolitis +5561 Ulcerative (chronic) ileocolitis +5562 Ulcerative (chronic) proctitis +5563 Ulcerative (chronic) proctosigmoiditis +5564 Pseudopolyposis of colon +5565 Left-sided ulcerative (chronic) colitis +5566 Universal ulcerative (chronic) colitis +5568 Other ulcerative colitis +5569 Ulcerative colitis, unspecified +5570 Acute vascular insufficiency of intestine +5571 Chronic vascular insufficiency of intestine +5579 Unspecified vascular insufficiency of intestine +5581 Gastroenteritis and colitis due to radiation +5582 Toxic gastroenteritis and colitis +5583 Allergic gastroenteritis and colitis +55841 Eosinophilic gastroenteritis +55842 Eosinophilic colitis +5589 Other and unspecified noninfectious gastroenteritis and colitis +5600 Intussusception +5601 Paralytic ileus +5602 Volvulus +56030 Impaction of intestine, unspecified +56031 Gallstone ileus +56032 Fecal impaction +56039 Other impaction of intestine +56081 Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection) +56089 Other specified intestinal obstruction +5609 Unspecified intestinal obstruction +56200 Diverticulosis of small intestine (without mention of hemorrhage) +56201 Diverticulitis of small intestine (without mention of hemorrhage) +56202 Diverticulosis of small intestine with hemorrhage +56203 Diverticulitis of small intestine with hemorrhage +56210 Diverticulosis of colon (without mention of hemorrhage) +56211 Diverticulitis of colon (without mention of hemorrhage) +56212 Diverticulosis of colon with hemorrhage +56213 Diverticulitis of colon with hemorrhage +56400 Constipation, unspecified +56401 Slow transit constipation +56402 Outlet dysfunction constipation +56409 Other constipation +5641 Irritable bowel syndrome +5642 Postgastric surgery syndromes +5643 Vomiting following gastrointestinal surgery +5644 Other postoperative functional disorders +5645 Functional diarrhea +5646 Anal spasm +5647 Megacolon, other than Hirschsprung's +56481 Neurogenic bowel +56489 Other functional disorders of intestine +5649 Unspecified functional disorder of intestine +5650 Anal fissure +5651 Anal fistula +566 Abscess of anal and rectal regions +5670 Peritonitis in infectious diseases classified elsewhere +5671 Pneumococcal peritonitis +56721 Peritonitis (acute) generalized +56722 Peritoneal abscess +56723 Spontaneous bacterial peritonitis +56729 Other suppurative peritonitis +56731 Psoas muscle abscess +56738 Other retroperitoneal abscess +56739 Other retroperitoneal infections +56781 Choleperitonitis +56782 Sclerosing mesenteritis +56789 Other specified peritonitis +5679 Unspecified peritonitis +5680 Peritoneal adhesions (postoperative) (postinfection) +56881 Hemoperitoneum (nontraumatic) +56882 Peritoneal effusion (chronic) +56889 Other specified disorders of peritoneum +5689 Unspecified disorder of peritoneum +5690 Anal and rectal polyp +5691 Rectal prolapse +5692 Stenosis of rectum and anus +5693 Hemorrhage of rectum and anus +56941 Ulcer of anus and rectum +56942 Anal or rectal pain +56943 Anal sphincter tear (healed) (old) +56944 Dysplasia of anus +56949 Other specified disorders of rectum and anus +5695 Abscess of intestine +56960 Colostomy and enterostomy complication, unspecified +56961 Infection of colostomy or enterostomy +56962 Mechanical complication of colostomy and enterostomy +56969 Other colostomy and enterostomy complication +56971 Pouchitis +56979 Other complications of intestinal pouch +56981 Fistula of intestine, excluding rectum and anus +56982 Ulceration of intestine +56983 Perforation of intestine +56984 Angiodysplasia of intestine (without mention of hemorrhage) +56985 Angiodysplasia of intestine with hemorrhage +56986 Dieulafoy lesion (hemorrhagic) of intestine +56987 Vomiting of fecal matter +56989 Other specified disorders of intestine +5699 Unspecified disorder of intestine +570 Acute and subacute necrosis of liver +5710 Alcoholic fatty liver +5711 Acute alcoholic hepatitis +5712 Alcoholic cirrhosis of liver +5713 Alcoholic liver damage, unspecified +57140 Chronic hepatitis, unspecified +57141 Chronic persistent hepatitis +57142 Autoimmune hepatitis +57149 Other chronic hepatitis +5715 Cirrhosis of liver without mention of alcohol +5716 Biliary cirrhosis +5718 Other chronic nonalcoholic liver disease +5719 Unspecified chronic liver disease without mention of alcohol +5720 Abscess of liver +5721 Portal pyemia +5722 Hepatic encephalopathy +5723 Portal hypertension +5724 Hepatorenal syndrome +5728 Other sequelae of chronic liver disease +5730 Chronic passive congestion of liver +5731 Hepatitis in viral diseases classified elsewhere +5732 Hepatitis in other infectious diseases classified elsewhere +5733 Hepatitis, unspecified +5734 Hepatic infarction +5735 Hepatopulmonary syndrome +5738 Other specified disorders of liver +5739 Unspecified disorder of liver +57400 Calculus of gallbladder with acute cholecystitis, without mention of obstruction +57401 Calculus of gallbladder with acute cholecystitis, with obstruction +57410 Calculus of gallbladder with other cholecystitis, without mention of obstruction +57411 Calculus of gallbladder with other cholecystitis, with obstruction +57420 Calculus of gallbladder without mention of cholecystitis, without mention of obstruction +57421 Calculus of gallbladder without mention of cholecystitis, with obstruction +57430 Calculus of bile duct with acute cholecystitis, without mention of obstruction +57431 Calculus of bile duct with acute cholecystitis, with obstruction +57440 Calculus of bile duct with other cholecystitis, without mention of obstruction +57441 Calculus of bile duct with other cholecystitis, with obstruction +57450 Calculus of bile duct without mention of cholecystitis, without mention of obstruction +57451 Calculus of bile duct without mention of cholecystitis, with obstruction +57460 Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction +57461 Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction +57470 Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction +57471 Calculus of gallbladder and bile duct with other cholecystitis, with obstruction +57480 Calculus of gallbladder and bile duct with acute and chronic cholecystitis, without mention of obstruction +57481 Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction +57490 Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction +57491 Calculus of gallbladder and bile duct without cholecystitis, with obstruction +5750 Acute cholecystitis +57510 Cholecystitis, unspecified +57511 Chronic cholecystitis +57512 Acute and chronic cholecystitis +5752 Obstruction of gallbladder +5753 Hydrops of gallbladder +5754 Perforation of gallbladder +5755 Fistula of gallbladder +5756 Cholesterolosis of gallbladder +5758 Other specified disorders of gallbladder +5759 Unspecified disorder of gallbladder +5760 Postcholecystectomy syndrome +5761 Cholangitis +5762 Obstruction of bile duct +5763 Perforation of bile duct +5764 Fistula of bile duct +5765 Spasm of sphincter of Oddi +5768 Other specified disorders of biliary tract +5769 Unspecified disorder of biliary tract +5770 Acute pancreatitis +5771 Chronic pancreatitis +5772 Cyst and pseudocyst of pancreas +5778 Other specified diseases of pancreas +5779 Unspecified disease of pancreas +5780 Hematemesis +5781 Blood in stool +5789 Hemorrhage of gastrointestinal tract, unspecified +5790 Celiac disease +5791 Tropical sprue +5792 Blind loop syndrome +5793 Other and unspecified postsurgical nonabsorption +5794 Pancreatic steatorrhea +5798 Other specified intestinal malabsorption +5799 Unspecified intestinal malabsorption +5800 Acute glomerulonephritis with lesion of proliferative glomerulonephritis +5804 Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis +58081 Acute glomerulonephritis in diseases classified elsewhere +58089 Acute glomerulonephritis with other specified pathological lesion in kidney +5809 Acute glomerulonephritis with unspecified pathological lesion in kidney +5810 Nephrotic syndrome with lesion of proliferative glomerulonephritis +5811 Nephrotic syndrome with lesion of membranous glomerulonephritis +5812 Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis +5813 Nephrotic syndrome with lesion of minimal change glomerulonephritis +58181 Nephrotic syndrome in diseases classified elsewhere +58189 Nephrotic syndrome with other specified pathological lesion in kidney +5819 Nephrotic syndrome with unspecified pathological lesion in kidney +5820 Chronic glomerulonephritis with lesion of proliferative glomerulonephritis +5821 Chronic glomerulonephritis with lesion of membranous glomerulonephritis +5822 Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis +5824 Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis +58281 Chronic glomerulonephritis in diseases classified elsewhere +58289 Chronic glomerulonephritis with other specified pathological lesion in kidney +5829 Chronic glomerulonephritis with unspecified pathological lesion in kidney +5830 Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis +5831 Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis +5832 Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis +5834 Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis +5836 Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis +5837 Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis +58381 Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere +58389 Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney +5839 Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney +5845 Acute kidney failure with lesion of tubular necrosis +5846 Acute kidney failure with lesion of renal cortical necrosis +5847 Acute kidney failure with lesion of renal medullary [papillary] necrosis +5848 Acute kidney failure with other specified pathological lesion in kidney +5849 Acute kidney failure, unspecified +5851 Chronic kidney disease, Stage I +5852 Chronic kidney disease, Stage II (mild) +5853 Chronic kidney disease, Stage III (moderate) +5854 Chronic kidney disease, Stage IV (severe) +5855 Chronic kidney disease, Stage V +5856 End stage renal disease +5859 Chronic kidney disease, unspecified +586 Renal failure, unspecified +587 Renal sclerosis, unspecified +5880 Renal osteodystrophy +5881 Nephrogenic diabetes insipidus +58881 Secondary hyperparathyroidism (of renal origin) +58889 Other specified disorders resulting from impaired renal function +5889 Unspecified disorder resulting from impaired renal function +5890 Unilateral small kidney +5891 Bilateral small kidneys +5899 Small kidney, unspecified +59000 Chronic pyelonephritis without lesion of renal medullary necrosis +59001 Chronic pyelonephritis with lesion of renal medullary necrosis +59010 Acute pyelonephritis without lesion of renal medullary necrosis +59011 Acute pyelonephritis with lesion of renal medullary necrosis +5902 Renal and perinephric abscess +5903 Pyeloureteritis cystica +59080 Pyelonephritis, unspecified +59081 Pyelitis or pyelonephritis in diseases classified elsewhere +5909 Infection of kidney, unspecified +591 Hydronephrosis +5920 Calculus of kidney +5921 Calculus of ureter +5929 Urinary calculus, unspecified +5930 Nephroptosis +5931 Hypertrophy of kidney +5932 Cyst of kidney, acquired +5933 Stricture or kinking of ureter +5934 Other ureteric obstruction +5935 Hydroureter +5936 Postural proteinuria +59370 Vesicoureteral reflux unspecified or without reflux nephropathy +59371 Vesicoureteral reflux with reflux nephropathy, unilateral +59372 Vesicoureteral reflux with reflux nephropathy, bilateral +59373 Other vesicoureteral reflux with reflux nephropathy NOS +59381 Vascular disorders of kidney +59382 Ureteral fistula +59389 Other specified disorders of kidney and ureter +5939 Unspecified disorder of kidney and ureter +5940 Calculus in diverticulum of bladder +5941 Other calculus in bladder +5942 Calculus in urethra +5948 Other lower urinary tract calculus +5949 Calculus of lower urinary tract, unspecified +5950 Acute cystitis +5951 Chronic interstitial cystitis +5952 Other chronic cystitis +5953 Trigonitis +5954 Cystitis in diseases classified elsewhere +59581 Cystitis cystica +59582 Irradiation cystitis +59589 Other specified types of cystitis +5959 Cystitis, unspecified +5960 Bladder neck obstruction +5961 Intestinovesical fistula +5962 Vesical fistula, not elsewhere classified +5963 Diverticulum of bladder +5964 Atony of bladder +59651 Hypertonicity of bladder +59652 Low bladder compliance +59653 Paralysis of bladder +59654 Neurogenic bladder NOS +59655 Detrusor sphincter dyssynergia +59659 Other functional disorder of bladder +5966 Rupture of bladder, nontraumatic +5967 Hemorrhage into bladder wall +59681 Infection of cystostomy +59682 Mechanical complication of cystostomy +59683 Other complication of cystostomy +59689 Other specified disorders of bladder +5969 Unspecified disorder of bladder +5970 Urethral abscess +59780 Urethritis, unspecified +59781 Urethral syndrome NOS +59789 Other urethritis +59800 Urethral stricture due to unspecified infection +59801 Urethral stricture due to infective diseases classified elsewhere +5981 Traumatic urethral stricture +5982 Postoperative urethral stricture +5988 Other specified causes of urethral stricture +5989 Urethral stricture, unspecified +5990 Urinary tract infection, site not specified +5991 Urethral fistula +5992 Urethral diverticulum +5993 Urethral caruncle +5994 Urethral false passage +5995 Prolapsed urethral mucosa +59960 Urinary obstruction, unspecified +59969 Urinary obstruction, not elsewhere classified +59970 Hematuria, unspecified +59971 Gross hematuria +59972 Microscopic hematuria +59981 Urethral hypermobility +59982 Intrinsic (urethral) sphincter deficiency [ISD] +59983 Urethral instability +59984 Other specified disorders of urethra +59989 Other specified disorders of urinary tract +5999 Unspecified disorder of urethra and urinary tract +60000 Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS) +60001 Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS) +60010 Nodular prostate without urinary obstruction +60011 Nodular prostate with urinary obstruction +60020 Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS) +60021 Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS) +6003 Cyst of prostate +60090 Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS) +60091 Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS) +6010 Acute prostatitis +6011 Chronic prostatitis +6012 Abscess of prostate +6013 Prostatocystitis +6014 Prostatitis in diseases classified elsewhere +6018 Other specified inflammatory diseases of prostate +6019 Prostatitis, unspecified +6020 Calculus of prostate +6021 Congestion or hemorrhage of prostate +6022 Atrophy of prostate +6023 Dysplasia of prostate +6028 Other specified disorders of prostate +6029 Unspecified disorder of prostate +6030 Encysted hydrocele +6031 Infected hydrocele +6038 Other specified types of hydrocele +6039 Hydrocele, unspecified +6040 Orchitis, epididymitis, and epididymo-orchitis, with abscess +60490 Orchitis and epididymitis, unspecified +60491 Orchitis and epididymitis in diseases classified elsewhere +60499 Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess +605 Redundant prepuce and phimosis +6060 Azoospermia +6061 Oligospermia +6068 Infertility due to extratesticular causes +6069 Male infertility, unspecified +6070 Leukoplakia of penis +6071 Balanoposthitis +6072 Other inflammatory disorders of penis +6073 Priapism +60781 Balanitis xerotica obliterans +60782 Vascular disorders of penis +60783 Edema of penis +60784 Impotence of organic origin +60785 Peyronie's disease +60789 Other specified disorders of penis +6079 Unspecified disorder of penis +6080 Seminal vesiculitis +6081 Spermatocele +60820 Torsion of testis, unspecified +60821 Extravaginal torsion of spermatic cord +60822 Intravaginal torsion of spermatic cord +60823 Torsion of appendix testis +60824 Torsion of appendix epididymis +6083 Atrophy of testis +6084 Other inflammatory disorders of male genital organs +60881 Disorders of male genital organs in diseases classified elsewhere +60882 Hematospermia +60883 Vascular disorders of male genital organs +60884 Chylocele of tunica vaginalis +60885 Stricture of male genital organs +60886 Edema of male genital organs +60887 Retrograde ejaculation +60889 Other specified disorders of male genital organs +6089 Unspecified disorder of male genital organs +6100 Solitary cyst of breast +6101 Diffuse cystic mastopathy +6102 Fibroadenosis of breast +6103 Fibrosclerosis of breast +6104 Mammary duct ectasia +6108 Other specified benign mammary dysplasias +6109 Benign mammary dysplasia, unspecified +6110 Inflammatory disease of breast +6111 Hypertrophy of breast +6112 Fissure of nipple +6113 Fat necrosis of breast +6114 Atrophy of breast +6115 Galactocele +6116 Galactorrhea not associated with childbirth +61171 Mastodynia +61172 Lump or mass in breast +61179 Other signs and symptoms in breast +61181 Ptosis of breast +61182 Hypoplasia of breast +61183 Capsular contracture of breast implant +61189 Other specified disorders of breast +6119 Unspecified breast disorder +6120 Deformity of reconstructed breast +6121 Disproportion of reconstructed breast +6140 Acute salpingitis and oophoritis +6141 Chronic salpingitis and oophoritis +6142 Salpingitis and oophoritis not specified as acute, subacute, or chronic +6143 Acute parametritis and pelvic cellulitis +6144 Chronic or unspecified parametritis and pelvic cellulitis +6145 Acute or unspecified pelvic peritonitis, female +6146 Pelvic peritoneal adhesions, female (postoperative) (postinfection) +6147 Other chronic pelvic peritonitis, female +6148 Other specified inflammatory disease of female pelvic organs and tissues +6149 Unspecified inflammatory disease of female pelvic organs and tissues +6150 Acute inflammatory diseases of uterus, except cervix +6151 Chronic inflammatory diseases of uterus, except cervix +6159 Unspecified inflammatory disease of uterus +6160 Cervicitis and endocervicitis +61610 Vaginitis and vulvovaginitis, unspecified +61611 Vaginitis and vulvovaginitis in diseases classified elsewhere +6162 Cyst of Bartholin's gland +6163 Abscess of Bartholin's gland +6164 Other abscess of vulva +61650 Ulceration of vulva, unspecified +61651 Ulceration of vulva in diseases classified elsewhere +61681 Mucositis (ulcerative) of cervix, vagina, and vulva +61689 Other inflammatory disease of cervix, vagina and vulva +6169 Unspecified inflammatory disease of cervix, vagina, and vulva +6170 Endometriosis of uterus +6171 Endometriosis of ovary +6172 Endometriosis of fallopian tube +6173 Endometriosis of pelvic peritoneum +6174 Endometriosis of rectovaginal septum and vagina +6175 Endometriosis of intestine +6176 Endometriosis in scar of skin +6178 Endometriosis of other specified sites +6179 Endometriosis, site unspecified +61800 Unspecified prolapse of vaginal walls +61801 Cystocele, midline +61802 Cystocele, lateral +61803 Urethrocele +61804 Rectocele +61805 Perineocele +61809 Other prolapse of vaginal walls without mention of uterine prolapse +6181 Uterine prolapse without mention of vaginal wall prolapse +6182 Uterovaginal prolapse, incomplete +6183 Uterovaginal prolapse, complete +6184 Uterovaginal prolapse, unspecified +6185 Prolapse of vaginal vault after hysterectomy +6186 Vaginal enterocele, congenital or acquired +6187 Old laceration of muscles of pelvic floor +61881 Incompetence or weakening of pubocervical tissue +61882 Incompetence or weakening of rectovaginal tissue +61883 Pelvic muscle wasting +61884 Cervical stump prolapse +61889 Other specified genital prolapse +6189 Unspecified genital prolapse +6190 Urinary-genital tract fistula, female +6191 Digestive-genital tract fistula, female +6192 Genital tract-skin fistula, female +6198 Other specified fistulas involving female genital tract +6199 Unspecified fistula involving female genital tract +6200 Follicular cyst of ovary +6201 Corpus luteum cyst or hematoma +6202 Other and unspecified ovarian cyst +6203 Acquired atrophy of ovary and fallopian tube +6204 Prolapse or hernia of ovary and fallopian tube +6205 Torsion of ovary, ovarian pedicle, or fallopian tube +6206 Broad ligament laceration syndrome +6207 Hematoma of broad ligament +6208 Other noninflammatory disorders of ovary, fallopian tube, and broad ligament +6209 Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament +6210 Polyp of corpus uteri +6211 Chronic subinvolution of uterus +6212 Hypertrophy of uterus +62130 Endometrial hyperplasia, unspecified +62131 Simple endometrial hyperplasia without atypia +62132 Complex endometrial hyperplasia without atypia +62133 Endometrial hyperplasia with atypia +62134 Benign endometrial hyperplasia +62135 Endometrial intraepithelial neoplasia [EIN] +6214 Hematometra +6215 Intrauterine synechiae +6216 Malposition of uterus +6217 Chronic inversion of uterus +6218 Other specified disorders of uterus, not elsewhere classified +6219 Unspecified disorder of uterus +6220 Erosion and ectropion of cervix +62210 Dysplasia of cervix, unspecified +62211 Mild dysplasia of cervix +62212 Moderate dysplasia of cervix +6222 Leukoplakia of cervix (uteri) +6223 Old laceration of cervix +6224 Stricture and stenosis of cervix +6225 Incompetence of cervix +6226 Hypertrophic elongation of cervix +6227 Mucous polyp of cervix +6228 Other specified noninflammatory disorders of cervix +6229 Unspecified noninflammatory disorder of cervix +6230 Dysplasia of vagina +6231 Leukoplakia of vagina +6232 Stricture or atresia of vagina +6233 Tight hymenal ring +6234 Old vaginal laceration +6235 Leukorrhea, not specified as infective +6236 Vaginal hematoma +6237 Polyp of vagina +6238 Other specified noninflammatory disorders of vagina +6239 Unspecified noninflammatory disorder of vagina +62401 Vulvar intraepithelial neoplasia I [VIN I] +62402 Vulvar intraepithelial neoplasia II [VIN II] +62409 Other dystrophy of vulva +6241 Atrophy of vulva +6242 Hypertrophy of clitoris +6243 Hypertrophy of labia +6244 Old laceration or scarring of vulva +6245 Hematoma of vulva +6246 Polyp of labia and vulva +6248 Other specified noninflammatory disorders of vulva and perineum +6249 Unspecified noninflammatory disorder of vulva and perineum +6250 Dyspareunia +6251 Vaginismus +6252 Mittelschmerz +6253 Dysmenorrhea +6254 Premenstrual tension syndromes +6255 Pelvic congestion syndrome +6256 Stress incontinence, female +62570 Vulvodynia, unspecified +62571 Vulvar vestibulitis +62579 Other vulvodynia +6258 Other specified symptoms associated with female genital organs +6259 Unspecified symptom associated with female genital organs +6260 Absence of menstruation +6261 Scanty or infrequent menstruation +6262 Excessive or frequent menstruation +6263 Puberty bleeding +6264 Irregular menstrual cycle +6265 Ovulation bleeding +6266 Metrorrhagia +6267 Postcoital bleeding +6268 Other disorders of menstruation and other abnormal bleeding from female genital tract +6269 Unspecified disorders of menstruation and other abnormal bleeding from female genital tract +6270 Premenopausal menorrhagia +6271 Postmenopausal bleeding +6272 Symptomatic menopausal or female climacteric states +6273 Postmenopausal atrophic vaginitis +6274 Symptomatic states associated with artificial menopause +6278 Other specified menopausal and postmenopausal disorders +6279 Unspecified menopausal and postmenopausal disorder +6280 Infertility, female, associated with anovulation +6281 Infertility, female, of pituitary-hypothalamic origin +6282 Infertility, female, of tubal origin +6283 Infertility, female, of uterine origin +6284 Infertility, female, of cervical or vaginal origin +6288 Infertility, female, of other specified origin +6289 Infertility, female, of unspecified origin +6290 Hematocele, female, not elsewhere classified +6291 Hydrocele, canal of nuck +62920 Female genital mutilation status, unspecified +62921 Female genital mutilation Type I status +62922 Female genital mutilation Type II status +62923 Female genital mutilation Type III status +62929 Other female genital mutilation status +62931 Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue +62932 Exposure of implanted vaginal mesh and other prosthetic materials into vagina +62981 Recurrent pregnancy loss without current pregnancy +62989 Other specified disorders of female genital organs +6299 Unspecified disorder of female genital organs +630 Hydatidiform mole +6310 Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy +6318 Other abnormal products of conception +632 Missed abortion +63300 Abdominal pregnancy without intrauterine pregnancy +63301 Abdominal pregnancy with intrauterine pregnancy +63310 Tubal pregnancy without intrauterine pregnancy +63311 Tubal pregnancy with intrauterine pregnancy +63320 Ovarian pregnancy without intrauterine pregnancy +63321 Ovarian pregnancy with intrauterine pregnancy +63380 Other ectopic pregnancy without intrauterine pregnancy +63381 Other ectopic pregnancy with intrauterine pregnancy +63390 Unspecified ectopic pregnancy without intrauterine pregnancy +63391 Unspecified ectopic pregnancy with intrauterine pregnancy +63400 Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified +63401 Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete +63402 Spontaneous abortion, complicated by genital tract and pelvic infection, complete +63410 Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified +63411 Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete +63412 Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete +63420 Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified +63421 Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete +63422 Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete +63430 Spontaneous abortion, complicated by renal failure, unspecified +63431 Spontaneous abortion, complicated by renal failure, incomplete +63432 Spontaneous abortion, complicated by renal failure, complete +63440 Spontaneous abortion, complicated by metabolic disorder, unspecified +63441 Spontaneous abortion, complicated by metabolic disorder, incomplete +63442 Spontaneous abortion, complicated by metabolic disorder, complete +63450 Spontaneous abortion, complicated by shock, unspecified +63451 Spontaneous abortion, complicated by shock, incomplete +63452 Spontaneous abortion, complicated by shock, complete +63460 Spontaneous abortion, complicated by embolism, unspecified +63461 Spontaneous abortion, complicated by embolism, incomplete +63462 Spontaneous abortion, complicated by embolism, complete +63470 Spontaneous abortion, with other specified complications, unspecified +63471 Spontaneous abortion, with other specified complications, incomplete +63472 Spontaneous abortion, with other specified complications, complete +63480 Spontaneous abortion, with unspecified complication, unspecified +63481 Spontaneous abortion, with unspecified complication, incomplete +63482 Spontaneous abortion, with unspecified complication, complete +63490 Spontaneous abortion, without mention of complication, unspecified +63491 Spontaneous abortion, without mention of complication, incomplete +63492 Spontaneous abortion, without mention of complication, complete +63500 Legally induced abortion, complicated by genital tract and pelvic infection, unspecified +63501 Legally induced abortion, complicated by genital tract and pelvic infection, incomplete +63502 Legally induced abortion, complicated by genital tract and pelvic infection, complete +63510 Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified +63511 Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete +63512 Legally induced abortion, complicated by delayed or excessive hemorrhage, complete +63520 Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified +63521 Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete +63522 Legally induced abortion, complicated by damage to pelvic organs or tissues, complete +63530 Legally induced abortion, complicated by renal failure,unspecified +63531 Legally induced abortion, complicated by renal failure, incomplete +63532 Legally induced abortion, complicated by renal failure, complete +63540 Legally induced abortion, complicated by metabolic disorder, unspecified +63541 Legally induced abortion, complicated by metabolic disorder, incomplete +63542 Legally induced abortion, complicated by metabolic disorder, complete +63550 Legally induced abortion, complicated by shock, unspecified +63551 Legally induced abortion, complicated by shock, incomplete +63552 Legally induced abortion, complicated by shock, complete +63560 Legally induced abortion, complicated by embolism, unspecified +63561 Legally induced abortion, complicated by embolism, incomplete +63562 Legally induced abortion, complicated by embolism, complete +63570 Legally induced abortion, with other specified complications, unspecified +63571 Legally induced abortion, with other specified complications, incomplete +63572 Legally induced abortion, with other specified complications, complete +63580 Legally induced abortion, with unspecified complication, unspecified +63581 Legally induced abortion, with unspecified complication, incomplete +63582 Legally induced abortion, with unspecified complication, complete +63590 Legally induced abortion, without mention of complication, unspecified +63591 Legally induced abortion, without mention of complication, incomplete +63592 Legally induced abortion, without mention of complication, complete +63600 Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified +63601 Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete +63602 Illegally induced abortion, complicated by genital tract and pelvic infection, complete +63610 Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified +63611 Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete +63612 Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete +63620 Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified +63621 Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete +63622 Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete +63630 Illegally induced abortion, complicated by renal failure, unspecified +63631 Illegally induced abortion, complicated by renal failure, incomplete +63632 Illegally induced abortion, complicated by renal failure, complete +63640 Illegally induced abortion, complicated by metabolic disorder, unspecified +63641 Illegally induced abortion, complicated by metabolic disorder, incomplete +63642 Illegally induced abortion, complicated by metabolic disorder, complete +63650 Illegally induced abortion, complicated by shock, unspecified +63651 Illegally induced abortion, complicated by shock, incomplete +63652 Illegally induced abortion, complicated by shock, complete +63660 Illegally induced abortion, complicated by embolism, unspecified +63661 Illegally induced abortion, complicated by embolism, incomplete +63662 Illegally induced abortion, complicated by embolism, complete +63670 Illegally induced abortion, with other specified complications, unspecified +63671 Illegally induced abortion, with other specified complications, incomplete +63672 Illegally induced abortion, with other specified complications, complete +63680 Illegally induced abortion, with unspecified complication, unspecified +63681 Illegally induced abortion, with unspecified complication, incomplete +63682 Illegally induced abortion, with unspecified complication, complete +63690 Illegally induced abortion, without mention of complication, unspecified +63691 Illegally induced abortion, without mention of complication, incomplete +63692 Illegally induced abortion, without mention of complication, complete +63700 Unspecified abortion, complicated by genital tract and pelvic infection, unspecified +63701 Unspecified abortion, complicated by genital tract and pelvic infection, incomplete +63702 Unspecified abortion, complicated by genital tract and pelvic infection, complete +63710 Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified +63711 Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete +63712 Unspecified abortion, complicated by delayed or excessive hemorrhage, complete +63720 Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified +63721 Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete +63722 Unspecified abortion, complicated by damage to pelvic organs or tissues, complete +63730 Unspecified abortion, complicated by renal failure, unspecified +63731 Unspecified abortion, complicated by renal failure, incomplete +63732 Unspecified abortion, complicated by renal failure, complete +63740 Unspecified abortion, complicated by metabolic disorder, unspecified +63741 Unspecified abortion, complicated by metabolic disorder, incomplete +63742 Unspecified abortion, complicated by metabolic disorder, complete +63750 Unspecified abortion, complicated by shock, unspecified +63751 Unspecified abortion, complicated by shock, incomplete +63752 Unspecified abortion, complicated by shock, complete +63760 Unspecified abortion, complicated by embolism, unspecified +63761 Unspecified abortion, complicated by embolism, incomplete +63762 Unspecified abortion, complicated by embolism, complete +63770 Unspecified abortion, with other specified complications, unspecified +63771 Unspecified abortion, with other specified complications, incomplete +63772 Unspecified abortion, with other specified complications, complete +63780 Unspecified abortion, with unspecified complication, unspecified +63781 Unspecified abortion, with unspecified complication, incomplete +63782 Unspecified abortion, with unspecified complication, complete +63790 Unspecified abortion, without mention of complication, unspecified +63791 Unspecified abortion, without mention of complication, incomplete +63792 Unspecified abortion, without mention of complication, complete +6380 Failed attempted abortion complicated by genital tract and pelvic infection +6381 Failed attempted abortion complicated by delayed or excessive hemorrhage +6382 Failed attempted abortion complicated by damage to pelvic organs or tissues +6383 Failed attempted abortion complicated by renal failure +6384 Failed attempted abortion complicated by metabolic disorder +6385 Failed attempted abortion complicated by shock +6386 Failed attempted abortion complicated by embolism +6387 Failed attempted abortion with other specified complications +6388 Failed attempted abortion with unspecified complication +6389 Failed attempted abortion without mention of complication +6390 Genital tract and pelvic infection following abortion or ectopic and molar pregnancies +6391 Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies +6392 Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies +6393 Kidney failure following abortion and ectopic and molar pregnancies +6394 Metabolic disorders following abortion or ectopic and molar pregnancies +6395 Shock following abortion or ectopic and molar pregnancies +6396 Embolism following abortion or ectopic and molar pregnancies +6398 Other specified complications following abortion or ectopic and molar pregnancy +6399 Unspecified complication following abortion or ectopic and molar pregnancy +64000 Threatened abortion, unspecified as to episode of care or not applicable +64001 Threatened abortion, delivered, with or without mention of antepartum condition +64003 Threatened abortion, antepartum condition or complication +64080 Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable +64081 Other specified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition +64083 Other specified hemorrhage in early pregnancy, antepartum condition or complication +64090 Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable +64091 Unspecified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition +64093 Unspecified hemorrhage in early pregnancy, antepartum condition or complication +64100 Placenta previa without hemorrhage, unspecified as to episode of care or not applicable +64101 Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition +64103 Placenta previa without hemorrhage, antepartum condition or complication +64110 Hemorrhage from placenta previa, unspecified as to episode of care or not applicable +64111 Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition +64113 Hemorrhage from placenta previa, antepartum condition or complication +64120 Premature separation of placenta, unspecified as to episode of care or not applicable +64121 Premature separation of placenta, delivered, with or without mention of antepartum condition +64123 Premature separation of placenta, antepartum condition or complication +64130 Antepartum hemorrhage associated with coagulation defects, unspecified as to episode of care or not applicable +64131 Antepartum hemorrhage associated with coagulation defects, delivered, with or without mention of antepartum condition +64133 Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication +64180 Other antepartum hemorrhage, unspecified as to episode of care or not applicable +64181 Other antepartum hemorrhage, delivered, with or without mention of antepartum condition +64183 Other antepartum hemorrhage, antepartum condition or complication +64190 Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable +64191 Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition +64193 Unspecified antepartum hemorrhage, antepartum condition or complication +64200 Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable +64201 Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition +64202 Benign essential hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication +64203 Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication +64204 Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication +64210 Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable +64211 Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition +64212 Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication +64213 Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication +64214 Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication +64220 Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable +64221 Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition +64222 Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication +64223 Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication +64224 Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication +64230 Transient hypertension of pregnancy, unspecified as to episode of care or not applicable +64231 Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition +64232 Transient hypertension of pregnancy, delivered, with mention of postpartum complication +64233 Transient hypertension of pregnancy, antepartum condition or complication +64234 Transient hypertension of pregnancy, postpartum condition or complication +64240 Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable +64241 Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition +64242 Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication +64243 Mild or unspecified pre-eclampsia, antepartum condition or complication +64244 Mild or unspecified pre-eclampsia, postpartum condition or complication +64250 Severe pre-eclampsia, unspecified as to episode of care or not applicable +64251 Severe pre-eclampsia, delivered, with or without mention of antepartum condition +64252 Severe pre-eclampsia, delivered, with mention of postpartum complication +64253 Severe pre-eclampsia, antepartum condition or complication +64254 Severe pre-eclampsia, postpartum condition or complication +64260 Eclampsia, unspecified as to episode of care or not applicable +64261 Eclampsia, delivered, with or without mention of antepartum condition +64262 Eclampsia, delivered, with mention of postpartum complication +64263 Eclampsia, antepartum condition or complication +64264 Eclampsia, postpartum condition or complication +64270 Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, unspecified as to episode of care or not applicable +64271 Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition +64272 Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication +64273 Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication +64274 Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication +64290 Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable +64291 Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition +64292 Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication +64293 Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +64294 Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication +64300 Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable +64301 Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition +64303 Mild hyperemesis gravidarum, antepartum condition or complication +64310 Hyperemesis gravidarum with metabolic disturbance, unspecified as to episode of care or not applicable +64311 Hyperemesis gravidarum with metabolic disturbance, delivered, with or without mention of antepartum condition +64313 Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication +64320 Late vomiting of pregnancy, unspecified as to episode of care or not applicable +64321 Late vomiting of pregnancy, delivered, with or without mention of antepartum condition +64323 Late vomiting of pregnancy, antepartum condition or complication +64380 Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable +64381 Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition +64383 Other vomiting complicating pregnancy, antepartum condition or complication +64390 Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable +64391 Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition +64393 Unspecified vomiting of pregnancy, antepartum condition or complication +64400 Threatened premature labor, unspecified as to episode of care or not applicable +64403 Threatened premature labor, antepartum condition or complication +64410 Other threatened labor, unspecified as to episode of care or not applicable +64413 Other threatened labor, antepartum condition or complication +64420 Early onset of delivery, unspecified as to episode of care or not applicable +64421 Early onset of delivery, delivered, with or without mention of antepartum condition +64510 Post term pregnancy, unspecified as to episode of care or not applicable +64511 Post term pregnancy, delivered, with or without mention of antepartum condition +64513 Post term pregnancy, antepartum condition or complication +64520 Prolonged pregnancy, unspecified as to episode of care or not applicable +64521 Prolonged pregnancy, delivered, with or without mention of antepartum condition +64523 Prolonged pregnancy, antepartum condition or complication +64600 Papyraceous fetus, unspecified as to episode of care or not applicable +64601 Papyraceous fetus, delivered, with or without mention of antepartum condition +64603 Papyraceous fetus, antepartum condition or complication +64610 Edema or excessive weight gain in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable +64611 Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum complication +64612 Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication +64613 Edema or excessive weight gain in pregnancy, without mention of hypertension, antepartum condition or complication +64614 Edema or excessive weight gain in pregnancy, without mention of hypertension, postpartum condition or complication +64620 Unspecified renal disease in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable +64621 Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum condition +64622 Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication +64623 Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication +64624 Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication +64630 Recurrent pregnancy loss, unspecified as to episode of care or not applicable +64631 Recurrent pregnancy loss, delivered, with or without mention of antepartum condition +64633 Recurrent pregnancy loss, antepartum condition or complication +64640 Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable +64641 Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition +64642 Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication +64643 Peripheral neuritis in pregnancy, antepartum condition or complication +64644 Peripheral neuritis in pregnancy, postpartum condition or complication +64650 Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable +64651 Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition +64652 Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication +64653 Asymptomatic bacteriuria in pregnancy, antepartum condition or complication +64654 Asymptomatic bacteriuria in pregnancy, postpartum condition or complication +64660 Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable +64661 Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition +64662 Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication +64663 Infections of genitourinary tract in pregnancy, antepartum condition or complication +64664 Infections of genitourinary tract in pregnancy, postpartum condition or complication +64670 Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable +64671 Liver and biliary tract disorders in pregnancy, delivered, with or without mention of antepartum condition +64673 Liver and biliary tract disorders in pregnancy, antepartum condition or complication +64680 Other specified complications of pregnancy, unspecified as to episode of care or not applicable +64681 Other specified complications of pregnancy, delivered, with or without mention of antepartum condition +64682 Other specified complications of pregnancy, delivered, with mention of postpartum complication +64683 Other specified complications of pregnancy, antepartum condition or complication +64684 Other specified complications of pregnancy, postpartum condition or complication +64690 Unspecified complication of pregnancy, unspecified as to episode of care or not applicable +64691 Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition +64693 Unspecified complication of pregnancy, antepartum condition or complication +64700 Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable +64701 Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition +64702 Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication +64703 Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +64704 Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication +64710 Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable +64711 Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition +64712 Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication +64713 Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +64714 Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication +64720 Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable +64721 Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition +64722 Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication +64723 Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +64724 Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication +64730 Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable +64731 Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition +64732 Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication +64733 Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +64734 Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication +64740 Malaria in the mother, unspecified as to episode of care or not applicable +64741 Malaria in the mother, delivered, with or without mention of antepartum condition +64742 Malaria in the mother, delivered, with mention of postpartum complication +64743 Malaria in the mother, antepartum condition or complication +64744 Malaria in the mother, postpartum condition or complication +64750 Rubella in the mother, unspecified as to episode of care or not applicable +64751 Rubella in the mother, delivered, with or without mention of antepartum condition +64752 Rubella in the mother, delivered, with mention of postpartum complication +64753 Rubella in the mother, antepartum condition or complication +64754 Rubella in the mother, postpartum condition or complication +64760 Other viral diseases in the mother, unspecified as to episode of care or not applicable +64761 Other viral diseases in the mother, delivered, with or without mention of antepartum condition +64762 Other viral diseases in the mother, delivered, with mention of postpartum complication +64763 Other viral diseases in the mother, antepartum condition or complication +64764 Other viral diseases in the mother, postpartum condition or complication +64780 Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable +64781 Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition +64782 Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication +64783 Other specified infectious and parasitic diseases of mother, antepartum condition or complication +64784 Other specified infectious and parasitic diseases of mother, postpartum condition or complication +64790 Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable +64791 Unspecified infection or infestation of mother, delivered, with or without mention of antepartum condition +64792 Unspecified infection or infestation of mother, delivered, with mention of postpartum complication +64793 Unspecified infection or infestation of mother, antepartum condition or complication +64794 Unspecified infection or infestation of mother, postpartum condition or complication +64800 Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable +64801 Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition +64802 Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication +64803 Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +64804 Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication +64810 Thyroid dysfunction of mother, unspecified as to episode of care or not applicable +64811 Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition +64812 Thyroid dysfunction of mother, delivered, with mention of postpartum complication +64813 Thyroid dysfunction of mother, antepartum condition or complication +64814 Thyroid dysfunction of mother, postpartum condition or complication +64820 Anemia of mother, unspecified as to episode of care or not applicable +64821 Anemia of mother, delivered, with or without mention of antepartum condition +64822 Anemia of mother, delivered, with mention of postpartum complication +64823 Anemia of mother, antepartum condition or complication +64824 Anemia of mother, postpartum condition or complication +64830 Drug dependence of mother, unspecified as to episode of care or not applicable +64831 Drug dependence of mother, delivered, with or without mention of antepartum condition +64832 Drug dependence of mother, delivered, with mention of postpartum complication +64833 Drug dependence of mother, antepartum condition or complication +64834 Drug dependence of mother, postpartum condition or complication +64840 Mental disorders of mother, unspecified as to episode of care or not applicable +64841 Mental disorders of mother, delivered, with or without mention of antepartum condition +64842 Mental disorders of mother, delivered, with mention of postpartum complication +64843 Mental disorders of mother, antepartum condition or complication +64844 Mental disorders of mother, postpartum condition or complication +64850 Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable +64851 Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition +64852 Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication +64853 Congenital cardiovascular disorders of mother, antepartum condition or complication +64854 Congenital cardiovascular disorders of mother, postpartum condition or complication +64860 Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable +64861 Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition +64862 Other cardiovascular diseases of mother, delivered, with mention of postpartum complication +64863 Other cardiovascular diseases of mother, antepartum condition or complication +64864 Other cardiovascular diseases of mother, postpartum condition or complication +64870 Bone and joint disorders of back, pelvis, and lower limbs of mother, unspecified as to episode of care or not applicable +64871 Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with or without mention of antepartum condition +64872 Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with mention of postpartum complication +64873 Bone and joint disorders of back, pelvis, and lower limbs of mother, antepartum condition or complication +64874 Bone and joint disorders of back, pelvis, and lower limbs of mother, postpartum condition or complication +64880 Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable +64881 Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition +64882 Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication +64883 Abnormal glucose tolerance of mother, antepartum condition or complication +64884 Abnormal glucose tolerance of mother, postpartum condition or complication +64890 Other current conditions classifiable elsewhere of mother, unspecified as to episode of care or not applicable +64891 Other current conditions classifiable elsewhere of mother, delivered, with or without mention of antepartum condition +64892 Other current conditions classifiable elsewhere of mother, delivered, with mention of postpartum complication +64893 Other current conditions classifiable elsewhere of mother, antepartum condition or complication +64894 Other current conditions classifiable elsewhere of mother, postpartum condition or complication +64900 Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable +64901 Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition +64902 Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication +64903 Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +64904 Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication +64910 Obesity complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable +64911 Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition +64912 Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication +64913 Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +64914 Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication +64920 Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable +64921 Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition +64922 Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication +64923 Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +64924 Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication +64930 Coagulation defects complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable +64931 Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition +64932 Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication +64933 Coagulation defects complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +64934 Coagulation defects complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication +64940 Epilepsy complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable +64941 Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition +64942 Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication +64943 Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +64944 Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication +64950 Spotting complicating pregnancy, unspecified as to episode of care or not applicable +64951 Spotting complicating pregnancy, delivered, with or without mention of antepartum condition +64953 Spotting complicating pregnancy, antepartum condition or complication +64960 Uterine size date discrepancy, unspecified as to episode of care or not applicable +64961 Uterine size date discrepancy, delivered, with or without mention of antepartum condition +64962 Uterine size date discrepancy, delivered, with mention of postpartum complication +64963 Uterine size date discrepancy, antepartum condition or complication +64964 Uterine size date discrepancy, postpartum condition or complication +64970 Cervical shortening, unspecified as to episode of care or not applicable +64971 Cervical shortening, delivered, with or without mention of antepartum condition +64973 Cervical shortening, antepartum condition or complication +64981 Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition +64982 Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with mention of postpartum complication +650 Normal delivery +65100 Twin pregnancy, unspecified as to episode of care or not applicable +65101 Twin pregnancy, delivered, with or without mention of antepartum condition +65103 Twin pregnancy, antepartum condition or complication +65110 Triplet pregnancy, unspecified as to episode of care or not applicable +65111 Triplet pregnancy, delivered, with or without mention of antepartum condition +65113 Triplet pregnancy, antepartum condition or complication +65120 Quadruplet pregnancy, unspecified as to episode of care or not applicable +65121 Quadruplet pregnancy, delivered, with or without mention of antepartum condition +65123 Quadruplet pregnancy, antepartum condition or complication +65130 Twin pregnancy with fetal loss and retention of one fetus, unspecified as to episode of care or not applicable +65131 Twin pregnancy with fetal loss and retention of one fetus, delivered, with or without mention of antepartum condition +65133 Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication +65140 Triplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable +65141 Triplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition +65143 Triplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication +65150 Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable +65151 Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition +65153 Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication +65160 Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable +65161 Other multiple pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition +65163 Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication +65170 Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable +65171 Multiple gestation following (elective) fetal reduction,delivered, with or without mention of antepartum condition +65173 Multiple gestation following (elective) fetal reduction, antepartum condition or complication +65180 Other specified multiple gestation, unspecified as to episode of care or not applicable +65181 Other specified multiple gestation, delivered, with or without mention of antepartum condition +65183 Other specified multiple gestation, antepartum condition or complication +65190 Unspecified multiple gestation, unspecified as to episode of care or not applicable +65191 Unspecified multiple gestation, delivered, with or without mention of antepartum condition +65193 Unspecified multiple gestation, antepartum condition or complication +65200 Unstable lie, unspecified as to episode of care or not applicable +65201 Unstable lie, delivered, with or without mention of antepartum condition +65203 Unstable lie, antepartum condition or complication +65210 Breech or other malpresentation successfully converted to cephalic presentation, unspecified as to episode of care or not applicable +65211 Breech or other malpresentation successfully converted to cephalic presentation, delivered, with or without mention of antepartum condition +65213 Breech or other malpresentation successfully converted to cephalic presentation, antepartum condition or complication +65220 Breech presentation without mention of version, unspecified as to episode of care or not applicable +65221 Breech presentation without mention of version, delivered, with or without mention of antepartum condition +65223 Breech presentation without mention of version, antepartum condition or complication +65230 Transverse or oblique presentation, unspecified as to episode of care or not applicable +65231 Transverse or oblique presentation, delivered, with or without mention of antepartum condition +65233 Transverse or oblique presentation, antepartum condition or complication +65240 Face or brow presentation, unspecified as to episode of care or not applicable +65241 Face or brow presentation, delivered, with or without mention of antepartum condition +65243 Face or brow presentation, antepartum condition or complication +65250 High head at term, unspecified as to episode of care or not applicable +65251 High head at term, delivered, with or without mention of antepartum condition +65253 High head at term, antepartum condition or complication +65260 Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable +65261 Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition +65263 Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication +65270 Prolapsed arm of fetus, unspecified as to episode of care or not applicable +65271 Prolapsed arm of fetus, delivered, with or without mention of antepartum condition +65273 Prolapsed arm of fetus, antepartum condition or complication +65280 Other specified malposition or malpresentation, unspecified as to episode of care or not applicable +65281 Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition +65283 Other specified malposition or malpresentation, antepartum condition or complication +65290 Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable +65291 Unspecified malposition or malpresentation, delivered, with or without mention of antepartum condition +65293 Unspecified malposition or malpresentation, antepartum condition or complication +65300 Major abnormality of bony pelvis, not further specified, unspecified as to episode of care or not applicable +65301 Major abnormality of bony pelvis, not further specified, delivered, with or without mention of antepartum condition +65303 Major abnormality of bony pelvis, not further specified, antepartum condition or complication +65310 Generally contracted pelvis, unspecified as to episode of care or not applicable +65311 Generally contracted pelvis, delivered, with or without mention of antepartum condition +65313 Generally contracted pelvis, antepartum condition or complication +65320 Inlet contraction of pelvis, unspecified as to episode of care or not applicable +65321 Inlet contraction of pelvis, delivered, with or without mention of antepartum condition +65323 Inlet contraction of pelvis, antepartum condition or complication +65330 Outlet contraction of pelvis, unspecified as to episode of care or not applicable +65331 Outlet contraction of pelvis, delivered, with or without mention of antepartum condition +65333 Outlet contraction of pelvis, antepartum condition or complication +65340 Fetopelvic disproportion, unspecified as to episode of care or not applicable +65341 Fetopelvic disproportion, delivered, with or without mention of antepartum condition +65343 Fetopelvic disproportion, antepartum condition or complication +65350 Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable +65351 Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition +65353 Unusually large fetus causing disproportion, antepartum condition or complication +65360 Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable +65361 Hydrocephalic fetus causing disproportion, delivered, with or without mention of antepartum condition +65363 Hydrocephalic fetus causing disproportion, antepartum condition or complication +65370 Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable +65371 Other fetal abnormality causing disproportion, delivered, with or without mention of antepartum condition +65373 Other fetal abnormality causing disproportion, antepartum condition or complication +65380 Disproportion of other origin, unspecified as to episode of care or not applicable +65381 Disproportion of other origin, delivered, with or without mention of antepartum condition +65383 Disproportion of other origin, antepartum condition or complication +65390 Unspecified disproportion, unspecified as to episode of care or not applicable +65391 Unspecified disproportion, delivered, with or without mention of antepartum condition +65393 Unspecified disproportion, antepartum condition or complication +65400 Congenital abnormalities of uterus, unspecified as to episode of care or not applicable +65401 Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition +65402 Congenital abnormalities of uterus, delivered, with mention of postpartum complication +65403 Congenital abnormalities of uterus, antepartum condition or complication +65404 Congenital abnormalities of uterus, postpartum condition or complication +65410 Tumors of body of uterus, unspecified as to episode of care or not applicable +65411 Tumors of body of uterus, delivered, with or without mention of antepartum condition +65412 Tumors of body of uterus, delivered, with mention of postpartum complication +65413 Tumors of body of uterus, antepartum condition or complication +65414 Tumors of body of uterus, postpartum condition or complication +65420 Previous cesarean delivery, unspecified as to episode of care or not applicable +65421 Previous cesarean delivery, delivered, with or without mention of antepartum condition +65423 Previous cesarean delivery, antepartum condition or complication +65430 Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable +65431 Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition +65432 Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication +65433 Retroverted and incarcerated gravid uterus, antepartum condition or complication +65434 Retroverted and incarcerated gravid uterus, postpartum condition or complication +65440 Other abnormalities in shape or position of gravid uterus and of neighboring structures, unspecified as to episode of care or not applicable +65441 Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with or without mention of antepartum condition +65442 Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with mention of postpartum complication +65443 Other abnormalities in shape or position of gravid uterus and of neighboring structures, antepartum condition or complication +65444 Other abnormalities in shape or position of gravid uterus and of neighboring structures, postpartum condition or complication +65450 Cervical incompetence, unspecified as to episode of care or not applicable +65451 Cervical incompetence, delivered, with or without mention of antepartum condition +65452 Cervical incompetence, delivered, with mention of postpartum complication +65453 Cervical incompetence, antepartum condition or complication +65454 Cervical incompetence, postpartum condition or complication +65460 Other congenital or acquired abnormality of cervix, unspecified as to episode of care or not applicable +65461 Other congenital or acquired abnormality of cervix, delivered, with or without mention of antepartum condition +65462 Other congenital or acquired abnormality of cervix, delivered, with mention of postpartum complication +65463 Other congenital or acquired abnormality of cervix, antepartum condition or complication +65464 Other congenital or acquired abnormality of cervix, postpartum condition or complication +65470 Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable +65471 Congenital or acquired abnormality of vagina, delivered, with or without mention of antepartum condition +65472 Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication +65473 Congenital or acquired abnormality of vagina, antepartum condition or complication +65474 Congenital or acquired abnormality of vagina, postpartum condition or complication +65480 Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable +65481 Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition +65482 Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication +65483 Congenital or acquired abnormality of vulva, antepartum condition or complication +65484 Congenital or acquired abnormality of vulva, postpartum condition or complication +65490 Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable +65491 Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition +65492 Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication +65493 Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication +65494 Other and unspecified abnormality of organs and soft tissues of pelvis, postpartum condition or complication +65500 Central nervous system malformation in fetus, unspecified as to episode of care or not applicable +65501 Central nervous system malformation in fetus, delivered, with or without mention of antepartum condition +65503 Central nervous system malformation in fetus, antepartum condition or complication +65510 Chromosomal abnormality in fetus, affecting management of mother, unspecified as to episode of care or not applicable +65511 Chromosomal abnormality in fetus, affecting management of mother, delivered, with or without mention of antepartum condition +65513 Chromosomal abnormality in fetus, affecting management of mother, antepartum condition or complication +65520 Hereditary disease in family possibly affecting fetus, affecting management of mother, unspecified as to episode of care or not applicable +65521 Hereditary disease in family possibly affecting fetus, affecting management of mother, delivered, with or without mention of antepartum condition +65523 Hereditary disease in family possibly affecting fetus, affecting management of mother, antepartum condition or complication +65530 Suspected damage to fetus from viral disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable +65531 Suspected damage to fetus from viral disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition +65533 Suspected damage to fetus from viral disease in the mother, affecting management of mother, antepartum condition or complication +65540 Suspected damage to fetus from other disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable +65541 Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition +65543 Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication +65550 Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable +65551 Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition +65553 Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication +65560 Suspected damage to fetus from radiation, affecting management of mother, unspecified as to episode of care or not applicable +65561 Suspected damage to fetus from radiation, affecting management of mother, delivered, +65563 Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication +65570 Decreased fetal movements, affecting management of mother, unspecified as to episode of care +65571 Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition +65573 Decreased fetal movements, affecting management of mother, antepartum condition or complication +65580 Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable +65581 Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, delivered, with or without mention of antepartum condition +65583 Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, antepartum condition or complication +65590 Unspecified suspected fetal abnormality, affecting management of mother, unspecified as to episode of care or not applicable +65591 Unspecified suspected fetal abnormality, affecting management of mother, delivered, with or without mention of antepartum condition +65593 Unspecified suspected fetal abnormality, affecting management of mother, antepartum condition or complication +65600 Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable +65601 Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition +65603 Fetal-maternal hemorrhage, antepartum condition or complication +65610 Rhesus isoimmunization, unspecified as to episode of care or not applicable +65611 Rhesus isoimmunization, delivered, with or without mention of antepartum condition +65613 Rhesus isoimmunization, antepartum condition or complication +65620 Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable +65621 Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition +65623 Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication +65630 Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable +65631 Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition +65633 Fetal distress, affecting management of mother, antepartum condition or complication +65640 Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable +65641 Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition +65643 Intrauterine death, affecting management of mother, antepartum condition or complication +65650 Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable +65651 Poor fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition +65653 Poor fetal growth, affecting management of mother, antepartum condition or complication +65660 Excessive fetal growth, affecting management of mother, unspecified as to episode of care or not applicable +65661 Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition +65663 Excessive fetal growth, affecting management of mother, antepartum condition or complication +65670 Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable +65671 Other placental conditions, affecting management of mother, delivered, with or without mention of antepartum condition +65673 Other placental conditions, affecting management of mother, antepartum condition or complication +65680 Other specified fetal and placental problems, affecting management of mother, unspecified as to episode of care or not applicable +65681 Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition +65683 Other specified fetal and placental problems, affecting management of mother, antepartum condition or complication +65690 Unspecified fetal and placental problem, affecting management of mother, unspecified as to episode of care or not applicable +65691 Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition +65693 Unspecified fetal and placental problem, affecting management of mother, antepartum condition or complication +65700 Polyhydramnios, unspecified as to episode of care or not applicable +65701 Polyhydramnios, delivered, with or without mention of antepartum condition +65703 Polyhydramnios, antepartum condition or complication +65800 Oligohydramnios, unspecified as to episode of care or not applicable +65801 Oligohydramnios, delivered, with or without mention of antepartum condition +65803 Oligohydramnios, antepartum condition or complication +65810 Premature rupture of membranes, unspecified as to episode of care or not applicable +65811 Premature rupture of membranes, delivered, with or without mention of antepartum condition +65813 Premature rupture of membranes, antepartum condition or complication +65820 Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable +65821 Delayed delivery after spontaneous or unspecified rupture of membranes, delivered, with or without mention of antepartum condition +65823 Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication +65830 Delayed delivery after artificial rupture of membranes, unspecified as to episode of care or not applicable +65831 Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition +65833 Delayed delivery after artificial rupture of membranes, antepartum condition or complication +65840 Infection of amniotic cavity, unspecified as to episode of care or not applicable +65841 Infection of amniotic cavity, delivered, with or without mention of antepartum condition +65843 Infection of amniotic cavity, antepartum condition or complication +65880 Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable +65881 Other problems associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition +65883 Other problems associated with amniotic cavity and membranes, antepartum +65890 Unspecified problem associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable +65891 Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition +65893 Unspecified problem associated with amniotic cavity and membranes, antepartum condition or complication +65900 Failed mechanical induction of labor, unspecified as to episode of care or not applicable +65901 Failed mechanical induction of labor, delivered, with or without mention of antepartum condition +65903 Failed mechanical induction of labor, antepartum condition or complication +65910 Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable +65911 Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition +65913 Failed medical or unspecified induction of labor, antepartum condition or complication +65920 Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable +65921 Maternal pyrexia during labor, unspecified, delivered, with or without mention of antepartum condition +65923 Maternal pyrexia during labor, unspecified, antepartum condition or complication +65930 Generalized infection during labor, unspecified as to episode of care or not applicable +65931 Generalized infection during labor, delivered, with or without mention of antepartum condition +65933 Generalized infection during labor, antepartum condition or complication +65940 Grand multiparity, unspecified as to episode of care or not applicable +65941 Grand multiparity, delivered, with or without mention of antepartum condition +65943 Grand multiparity, antepartum condition or complication +65950 Elderly primigravida, unspecified as to episode of care or not applicable +65951 Elderly primigravida, delivered, with or without mention of antepartum condition +65953 Elderly primigravida, antepartum condition or complication +65960 Elderly multigravida, unspecified as to episode of care or not applicable +65961 Elderly multigravida, delivered with or without mention of antepartum condition +65963 Elderly multigravida, antepartum condition or complication +65970 Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable +65971 Abnormality in fetal heart rate or rhythm, delivered, with or without mention of antepartum condition +65973 Abnormality in fetal heart rate or rhythm, antepartum condition or complication +65980 Other specified indications for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable +65981 Other specified indications for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition +65983 Other specified indications for care or intervention related to labor and delivery, antepartum condition or complication +65990 Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable +65991 Unspecified indication for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition +65993 Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication +66000 Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable +66001 Obstruction caused by malposition of fetus at onset of labor, delivered, with or without mention of antepartum condition +66003 Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication +66010 Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable +66011 Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition +66013 Obstruction by bony pelvis during labor, antepartum condition or complication +66020 Obstruction by abnormal pelvic soft tissues during labor, unspecified as to episode of care or not applicable +66021 Obstruction by abnormal pelvic soft tissues during labor, delivered, with or without mention of antepartum condition +66023 Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication +66030 Deep transverse arrest and persistent occipitoposterior position, unspecified as to episode of care or not applicable +66031 Deep transverse arrest and persistent occipitoposterior position, delivered, with or without mention of antepartum condition +66033 Deep transverse arrest and persistent occipitoposterior position, antepartum condition or complication +66040 Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable +66041 Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition +66043 Shoulder (girdle) dystocia, antepartum condition or complication +66050 Locked twins, unspecified as to episode of care or not applicable +66051 Locked twins, delivered, with or without mention of antepartum condition +66053 Locked twins, antepartum condition or complication +66060 Unspecified failed trial of labor, unspecified as to episode of care or not applicable +66061 Unspecified failed trial of labor, delivered, with or without mention of antepartum condition +66063 Unspecified failed trial of labor, antepartum condition or complication +66070 Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable +66071 Failed forceps or vacuum extractor, unspecified, delivered, with or without mention of antepartum condition +66073 Failed forceps or vacuum extractor, unspecified, antepartum condition or complication +66080 Other causes of obstructed labor, unspecified as to episode of care or not applicable +66081 Other causes of obstructed labor, delivered, with or without mention of antepartum condition +66083 Other causes of obstructed labor, antepartum condition or complication +66090 Unspecified obstructed labor, unspecified as to episode of care or not applicable +66091 Unspecified obstructed labor, delivered, with or without mention of antepartum condition +66093 Unspecified obstructed labor, antepartum condition or complication +66100 Primary uterine inertia, unspecified as to episode of care or not applicable +66101 Primary uterine inertia, delivered, with or without mention of antepartum condition +66103 Primary uterine inertia, antepartum condition or complication +66110 Secondary uterine inertia, unspecified as to episode of care or not applicable +66111 Secondary uterine inertia, delivered, with or without mention of antepartum condition +66113 Secondary uterine inertia, antepartum condition or complication +66120 Other and unspecified uterine inertia, unspecified as to episode of care or not applicable +66121 Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition +66123 Other and unspecified uterine inertia, antepartum condition or complication +66130 Precipitate labor, unspecified as to episode of care or not applicable +66131 Precipitate labor, delivered, with or without mention of antepartum condition +66133 Precipitate labor, antepartum condition or complication +66140 Hypertonic, incoordinate, or prolonged uterine contractions, unspecified as to episode of care or not applicable +66141 Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition +66143 Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication +66190 Unspecified abnormality of labor, unspecified as to episode of care or not applicable +66191 Unspecified abnormality of labor, delivered, with or without mention of antepartum condition +66193 Unspecified abnormality of labor, antepartum condition or complication +66200 Prolonged first stage of labor, unspecified as to episode of care or not applicable +66201 Prolonged first stage of labor, delivered, with or without mention of antepartum condition +66203 Prolonged first stage of labor, antepartum condition or complication +66210 Unspecified prolonged labor, unspecified as to episode of care or not applicable +66211 Unspecified prolonged labor, delivered, with or without mention of antepartum condition +66213 Unspecified prolonged labor, antepartum condition or complication +66220 Prolonged second stage of labor, unspecified as to episode of care or not applicable +66221 Prolonged second stage of labor, delivered, with or without mention of antepartum condition +66223 Prolonged second stage of labor, antepartum condition or complication +66230 Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable +66231 Delayed delivery of second twin, triplet, etc., delivered, with or without mention of antepartum condition +66233 Delayed delivery of second twin, triplet, etc., antepartum condition or complication +66300 Prolapse of cord complicating labor and delivery, unspecified as to episode of care or not applicable +66301 Prolapse of cord complicating labor and delivery, delivered, with or without mention of antepartum condition +66303 Prolapse of cord complicating labor and delivery, antepartum condition or complication +66310 Cord around neck with compression, complicating labor and delivery, unspecified as to episode of care or not applicable +66311 Cord around neck, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition +66313 Cord around neck, with compression, complicating labor and delivery, antepartum condition or complication +66320 Other and unspecified cord entanglement, with compression, complicating labor and delivery, unspecified as to episode of care or not applicable +66321 Other and unspecified cord entanglement, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition +66323 Other and unspecified cord entanglement, with compression, complicating labor and delivery, antepartum condition or complication +66330 Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, unspecified as to episode of care or not applicable +66331 Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, delivered, with or without mention of antepartum condition +66333 Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication +66340 Short cord complicating labor and delivery, unspecified as to episode of care or not applicable +66341 Short cord complicating labor and delivery, delivered, with or without mention of antepartum condition +66343 Short cord complicating labor and delivery, antepartum condition or complication +66350 Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable +66351 Vasa previa complicating labor and delivery, delivered, with or without mention of antepartum condition +66353 Vasa previa complicating labor and delivery, antepartum condition or complication +66360 Vascular lesions of cord complicating labor and delivery, unspecified as to episode of care or not applicable +66361 Vascular lesions of cord complicating labor and delivery, delivered, with or without mention of antepartum condition +66363 Vascular lesions of cord complicating labor and delivery, antepartum condition or complication +66380 Other umbilical cord complications complicating labor and delivery, unspecified as to episode of care or not applicable +66381 Other umbilical cord complications complicating labor and delivery, delivered, with or without mention of antepartum condition +66383 Other umbilical cord complications complicating labor and delivery, antepartum condition or complication +66390 Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable +66391 Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition +66393 Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication +66400 First-degree perineal laceration, unspecified as to episode of care or not applicable +66401 First-degree perineal laceration, delivered, with or without mention of antepartum condition +66404 First-degree perineal laceration, postpartum condition or complication +66410 Second-degree perineal laceration, unspecified as to episode of care or not applicable +66411 Second-degree perineal laceration, delivered, with or without mention of antepartum condition +66414 Second-degree perineal laceration, postpartum condition or complication +66420 Third-degree perineal laceration, unspecified as to episode of care or not applicable +66421 Third-degree perineal laceration, delivered, with or without mention of antepartum condition +66424 Third-degree perineal laceration, postpartum condition or complication +66430 Fourth-degree perineal laceration, unspecified as to episode of care or not applicable +66431 Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition +66434 Fourth-degree perineal laceration, postpartum condition or complication +66440 Unspecified perineal laceration, unspecified as to episode of care or not applicable +66441 Unspecified perineal laceration, delivered, with or without mention of antepartum condition +66444 Unspecified perineal laceration, postpartum condition or complication +66450 Vulvar and perineal hematoma, unspecified as to episode of care or not applicable +66451 Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition +66454 Vulvar and perineal hematoma, postpartum condition or complication +66460 Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, unspecified as to episode of care or not applicable +66461 Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, delivered, with or without mention of antepartum condition +66464 Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, postpartum condition or complication +66480 Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable +66481 Other specified trauma to perineum and vulva, delivered, with or without mention of antepartum condition +66484 Other specified trauma to perineum and vulva, postpartum condition or complication +66490 Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable +66491 Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition +66494 Unspecified trauma to perineum and vulva, postpartum condition or complication +66500 Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable +66501 Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition +66503 Rupture of uterus before onset of labor, antepartum condition or complication +66510 Rupture of uterus during labor, unspecified as to episode of care or not applicable +66511 Rupture of uterus during labor, delivered, with or without mention of antepartum condition +66520 Inversion of uterus, unspecified as to episode of care or not applicable +66522 Inversion of uterus, delivered, with mention of postpartum complication +66524 Inversion of uterus, postpartum condition or complication +66530 Laceration of cervix, unspecified as to episode of care or not applicable +66531 Laceration of cervix, delivered, with or without mention of antepartum condition +66534 Laceration of cervix, postpartum condition or complication +66540 High vaginal laceration, unspecified as to episode of care or not applicable +66541 High vaginal laceration, delivered, with or without mention of antepartum condition +66544 High vaginal laceration, postpartum condition or complication +66550 Other injury to pelvic organs, unspecified as to episode of care or not applicable +66551 Other injury to pelvic organs, delivered, with or without mention of antepartum condition +66554 Other injury to pelvic organs, postpartum condition or complication +66560 Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable +66561 Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition +66564 Damage to pelvic joints and ligaments, postpartum condition or complication +66570 Pelvic hematoma, unspecified as to episode of care or not applicable +66571 Pelvic hematoma, delivered, with or without mention of antepartum condition +66572 Pelvic hematoma, delivered with mention of postpartum complication +66574 Pelvic hematoma, postpartum condition or complication +66580 Other specified obstetrical trauma, unspecified as to episode of care or not applicable +66581 Other specified obstetrical trauma, delivered, with or without mention of antepartum condition +66582 Other specified obstetrical trauma, delivered, with mention of postpartum complication +66583 Other specified obstetrical trauma, antepartum condition or complication +66584 Other specified obstetrical trauma, postpartum condition or complication +66590 Unspecified obstetrical trauma, unspecified as to episode of care or not applicable +66591 Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition +66592 Unspecified obstetrical trauma, delivered, with mention of postpartum complication +66593 Unspecified obstetrical trauma, antepartum condition or complication +66594 Unspecified obstetrical trauma, postpartum condition or complication +66600 Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable +66602 Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication +66604 Third-stage postpartum hemorrhage, postpartum condition or complication +66610 Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable +66612 Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication +66614 Other immediate postpartum hemorrhage, postpartum condition or complication +66620 Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable +66622 Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication +66624 Delayed and secondary postpartum hemorrhage, postpartum condition or complication +66630 Postpartum coagulation defects, unspecified as to episode of care or not applicable +66632 Postpartum coagulation defects, delivered, with mention of postpartum complication +66634 Postpartum coagulation defects, postpartum condition or complication +66700 Retained placenta without hemorrhage, unspecified as to episode of care or not applicable +66702 Retained placenta without hemorrhage, delivered, with mention of postpartum complication +66704 Retained placenta without hemorrhage, postpartum condition or complication +66710 Retained portions of placenta or membranes, without hemorrhage, unspecified as to episode of care or not applicable +66712 Retained portions of placenta or membranes, without hemorrhage, delivered, with mention of postpartum complication +66714 Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication +66800 Pulmonary complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable +66801 Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition +66802 Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication +66803 Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication +66804 Pulmonary complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication +66810 Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable +66811 Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition +66812 Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication +66813 Cardiac complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication +66814 Cardiac complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication +66820 Central nervous system complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable +66821 Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition +66822 Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication +66823 Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication +66824 Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication +66880 Other complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable +66881 Other complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition +66882 Other complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication +66883 Other complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication +66884 Other complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication +66890 Unspecified complication of anesthesia and other sedation in labor and delivery, unspecified as to episode of care or not applicable +66891 Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with or without mention of antepartum condition +66892 Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with mention of postpartum complication +66893 Unspecified complication of anesthesia and other sedation in labor and delivery, antepartum condition or complication +66894 Unspecified complication of anesthesia and other sedation in labor and delivery, postpartum condition or complication +66900 Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable +66901 Maternal distress complicating labor and delivery, delivered, with or without mention of antepartum condition +66902 Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication +66903 Maternal distress complicating labor and delivery, antepartum condition or complication +66904 Maternal distress complicating labor and delivery, postpartum condition or complication +66910 Shock during or following labor and delivery, unspecified as to episode of care or not applicable +66911 Shock during or following labor and delivery, delivered, with or without mention of antepartum condition +66912 Shock during or following labor and delivery, delivered, with mention of postpartum complication +66913 Shock during or following labor and delivery, antepartum condition or complication +66914 Shock during or following labor and delivery, postpartum condition or complication +66920 Maternal hypotension syndrome, unspecified as to episode of care or not applicable +66921 Maternal hypotension syndrome, delivered, with or without mention of antepartum condition +66922 Maternal hypotension syndrome, delivered, with mention of postpartum complication +66923 Maternal hypotension syndrome, antepartum condition or complication +66924 Maternal hypotension syndrome, postpartum condition or complication +66930 Acute kidney failure following labor and delivery, unspecified as to episode of care or not applicable +66932 Acute kidney failure following labor and delivery, delivered, with mention of postpartum complication +66934 Acute kidney failure following labor and delivery, postpartum condition or complication +66940 Other complications of obstetrical surgery and procedures, unspecified as to episode of care or not applicable +66941 Other complications of obstetrical surgery and procedures, delivered, with or without mention of antepartum condition +66942 Other complications of obstetrical surgery and procedures, delivered, with mention of postpartum complication +66943 Other complications of obstetrical surgery and procedures, antepartum condition or complication +66944 Other complications of obstetrical surgery and procedures, postpartum condition or complication +66950 Forceps or vacuum extractor delivery without mention of indication, unspecified as to episode of care or not applicable +66951 Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition +66960 Breech extraction, without mention of indication, unspecified as to episode of care or not applicable +66961 Breech extraction, without mention of indication, delivered, with or without mention of antepartum condition +66970 Cesarean delivery, without mention of indication, unspecified as to episode of care or not applicable +66971 Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition +66980 Other complications of labor and delivery, unspecified as to episode of care or not applicable +66981 Other complications of labor and delivery, delivered, with or without mention of antepartum condition +66982 Other complications of labor and delivery, delivered, with mention of postpartum complication +66983 Other complications of labor and delivery, antepartum condition or complication +66984 Other complications of labor and delivery, postpartum condition or complication +66990 Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable +66991 Unspecified complication of labor and delivery, delivered, with or without mention of antepartum condition +66992 Unspecified complication of labor and delivery, delivered, with mention of postpartum complication +66993 Unspecified complication of labor and delivery, antepartum condition or complication +66994 Unspecified complication of labor and delivery, postpartum condition or complication +67000 Major puerperal infection, unspecified as to episode of care or not applicable +67002 Major puerperal infection, delivered, with mention of postpartum complication +67004 Major puerperal infection, postpartum condition or complication +67010 Puerperal endometritis, unspecified as to episode of care or not applicable +67012 Puerperal endometritis, delivered, with mention of postpartum complication +67014 Puerperal endometritis, postpartum condition or complication +67020 Puerperal sepsis, unspecified as to episode of care or not applicable +67022 Puerperal sepsis, delivered, with mention of postpartum complication +67024 Puerperal sepsis, postpartum condition or complication +67030 Puerperal septic thrombophlebitis, unspecified as to episode of care or not applicable +67032 Puerperal septic thrombophlebitis, delivered, with mention of postpartum complication +67034 Puerperal septic thrombophlebitis, postpartum condition or complication +67080 Other major puerperal infection, unspecified as to episode of care or not applicable +67082 Other major puerperal infection, delivered, with mention of postpartum complication +67084 Other major puerperal infection, postpartum condition or complication +67100 Varicose veins of legs complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable +67101 Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition +67102 Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication +67103 Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication +67104 Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication +67110 Varicose veins of vulva and perineum complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable +67111 Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition +67112 Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with mention of postpartum complication +67113 Varicose veins of vulva and perineum complicating pregnancy and the puerperium, antepartum condition or complication +67114 Varicose veins of vulva and perineum complicating pregnancy and the puerperium, postpartum condition or complication +67120 Superficial thrombophlebitis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable +67121 Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition +67122 Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication +67123 Superficial thrombophlebitis complicating pregnancy and the puerperium, antepartum condition or complication +67124 Superficial thrombophlebitis complicating pregnancy and the puerperium, postpartum condition or complication +67130 Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable +67131 Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition +67133 Deep phlebothrombosis, antepartum, antepartum condition or complication +67140 Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable +67142 Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication +67144 Deep phlebothrombosis, postpartum, postpartum condition or complication +67150 Other phlebitis and thrombosis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable +67151 Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition +67152 Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication +67153 Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication +67154 Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication +67180 Other venous complications of pregnancy and the puerperium, unspecified as to episode of care or not applicable +67181 Other venous complications of pregnancy and the puerperium, delivered, with or without mention of antepartum condition +67182 Other venous complications of pregnancy and the puerperium, delivered, with mention of postpartum complication +67183 Other venous complications of pregnancy and the puerperium, antepartum condition or complication +67184 Other venous complications of pregnancy and the puerperium, postpartum condition or complication +67190 Unspecified venous complication of pregnancy and the puerperium, unspecified as to episode of care or not applicable +67191 Unspecified venous complication of pregnancy and the puerperium, delivered, with or without mention of antepartum condition +67192 Unspecified venous complication of pregnancy and the puerperium, delivered, with mention of postpartum complication +67193 Unspecified venous complication of pregnancy and the puerperium, antepartum condition or complication +67194 Unspecified venous complication of pregnancy and the puerperium, postpartum condition or complication +67200 Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable +67202 Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication +67204 Pyrexia of unknown origin during the puerperium, postpartum condition or complication +67300 Obstetrical air embolism, unspecified as to episode of care or not applicable +67301 Obstetrical air embolism, delivered, with or without mention of antepartum condition +67302 Obstetrical air embolism, delivered, with mention of postpartum complication +67303 Obstetrical air embolism, antepartum condition or complication +67304 Obstetrical air embolism, postpartum condition or complication +67310 Amniotic fluid embolism, unspecified as to episode of care or not applicable +67311 Amniotic fluid embolism, delivered, with or without mention of antepartum condition +67312 Amniotic fluid embolism, delivered, with mention of postpartum complication +67313 Amniotic fluid embolism, antepartum condition or complication +67314 Amniotic fluid embolism, postpartum condition or complication +67320 Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable +67321 Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition +67322 Obstetrical blood-clot embolism, delivered, with mention of postpartum complication +67323 Obstetrical blood-clot embolism, antepartum condition or complication +67324 Obstetrical blood-clot embolism, postpartum condition or complication +67330 Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable +67331 Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition +67332 Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication +67333 Obstetrical pyemic and septic embolism, antepartum condition or complication +67334 Obstetrical pyemic and septic embolism, postpartum condition or complication +67380 Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable +67381 Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition +67382 Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication +67383 Other obstetrical pulmonary embolism, antepartum condition or complication +67384 Other obstetrical pulmonary embolism, postpartum condition or complication +67400 Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable +67401 Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition +67402 Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication +67403 Cerebrovascular disorders in the puerperium, antepartum condition or complication +67404 Cerebrovascular disorders in the puerperium, postpartum condition or complication +67410 Disruption of cesarean wound, unspecified as to episode of care or not applicable +67412 Disruption of cesarean wound, delivered, with mention of postpartum complication +67414 Disruption of cesarean wound, postpartum condition or complication +67420 Disruption of perineal wound, unspecified as to episode of care or not applicable +67422 Disruption of perineal wound, delivered, with mention of postpartum complication +67424 Disruption of perineal wound, postpartum condition or complication +67430 Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable +67432 Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication +67434 Other complications of obstetrical surgical wounds, postpartum condition or complication +67440 Placental polyp, unspecified as to episode of care or not applicable +67442 Placental polyp, delivered, with mention of postpartum complication +67444 Placental polyp, postpartum condition or complication +67450 Peripartum cardiomyopathy, unspecified as to episode of care or not applicable +67451 Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition +67452 Peripartum cardiomyopathy, delivered, with mention of postpartum condition +67453 Peripartum cardiomyopathy, antepartum condition or complication +67454 Peripartum cardiomyopathy, postpartum condition or complication +67480 Other complications of puerperium, unspecified as to episode of care or not applicable +67482 Other complications of puerperium, delivered, with mention of postpartum complication +67484 Other complications of puerperium, postpartum condition or complication +67490 Unspecified complications of puerperium, unspecified as to episode of care or not applicable +67492 Unspecified complications of puerperium, delivered, with mention of postpartum complication +67494 Unspecified complications of puerperium, postpartum condition or complication +67500 Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable +67501 Infections of nipple associated with childbirth, delivered, with or without mention of antepartum condition +67502 Infections of nipple associated with childbirth, delivered, with mention of postpartum complication +67503 Infections of nipple associated with childbirth, antepartum condition or complication +67504 Infections of nipple associated with childbirth, postpartum condition or complication +67510 Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable +67511 Abscess of breast associated with childbirth, delivered, with or without mention of antepartum condition +67512 Abscess of breast associated with childbirth, delivered, with mention of postpartum complication +67513 Abscess of breast associated with childbirth, antepartum condition or complication +67514 Abscess of breast associated with childbirth, postpartum condition or complication +67520 Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable +67521 Nonpurulent mastitis associated with childbirth, delivered, with or without mention of antepartum condition +67522 Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication +67523 Nonpurulent mastitis associated with childbirth, antepartum condition or complication +67524 Nonpurulent mastitis associated with childbirth, postpartum condition or complication +67580 Other specified infections of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable +67581 Other specified infections of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition +67582 Other specified infections of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication +67583 Other specified infections of the breast and nipple associated with childbirth, antepartum condition or complication +67584 Other specified infections of the breast and nipple associated with childbirth, postpartum condition or complication +67590 Unspecified infection of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable +67591 Unspecified infection of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition +67592 Unspecified infection of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication +67593 Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication +67594 Unspecified infection of the breast and nipple associated with childbirth, postpartum condition or complication +67600 Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable +67601 Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition +67602 Retracted nipple associated with childbirth, delivered, with mention of postpartum complication +67603 Retracted nipple associated with childbirth, antepartum condition or complication +67604 Retracted nipple associated with childbirth, postpartum condition or complication +67610 Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable +67611 Cracked nipple associated with childbirth, delivered, with or without mention of antepartum condition +67612 Cracked nipple associated with childbirth, delivered, with mention of postpartum complication +67613 Cracked nipple associated with childbirth, antepartum condition or complication +67614 Cracked nipple associated with childbirth, postpartum condition or complication +67620 Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable +67621 Engorgement of breasts associated with childbirth, delivered, with or without mention of antepartum condition +67622 Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication +67623 Engorgement of breasts associated with childbirth, antepartum condition or complication +67624 Engorgement of breasts associated with childbirth, postpartum condition or complication +67630 Other and unspecified disorder of breast associated with childbirth, unspecified as to episode of care or not applicable +67631 Other and unspecified disorder of breast associated with childbirth, delivered, with or without mention of antepartum condition +67632 Other and unspecified disorder of breast associated with childbirth, delivered, with mention of postpartum complication +67633 Other and unspecified disorder of breast associated with childbirth, antepartum condition or complication +67634 Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication +67640 Failure of lactation, unspecified as to episode of care or not applicable +67641 Failure of lactation, delivered, with or without mention of antepartum condition +67642 Failure of lactation, delivered, with mention of postpartum complication +67643 Failure of lactation, antepartum condition or complication +67644 Failure of lactation, postpartum condition or complication +67650 Suppressed lactation, unspecified as to episode of care or not applicable +67651 Suppressed lactation, delivered, with or without mention of antepartum condition +67652 Suppressed lactation, delivered, with mention of postpartum complication +67653 Suppressed lactation, antepartum condition or complication +67654 Suppressed lactation, postpartum condition or complication +67660 Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable +67661 Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition +67662 Galactorrhea associated with childbirth, delivered, with mention of postpartum complication +67663 Galactorrhea associated with childbirth, antepartum condition or complication +67664 Galactorrhea associated with childbirth, postpartum condition or complication +67680 Other disorders of lactation, unspecified as to episode of care or not applicable +67681 Other disorders of lactation, delivered, with or without mention of antepartum condition +67682 Other disorders of lactation, delivered, with mention of postpartum complication +67683 Other disorders of lactation, antepartum condition or complication +67684 Other disorders of lactation, postpartum condition or complication +67690 Unspecified disorder of lactation, unspecified as to episode of care or not applicable +67691 Unspecified disorder of lactation, delivered, with or without mention of antepartum condition +67692 Unspecified disorder of lactation, delivered, with mention of postpartum complication +67693 Unspecified disorder of lactation, antepartum condition or complication +67694 Unspecified disorder of lactation, postpartum condition or complication +677 Late effect of complication of pregnancy, childbirth, and the puerperium +67800 Fetal hematologic conditions, unspecified as to episode of care or not applicable +67801 Fetal hematologic conditions, delivered, with or without mention of antepartum condition +67803 Fetal hematologic conditions, antepartum condition or complication +67810 Fetal conjoined twins, unspecified as to episode of care or not applicable +67811 Fetal conjoined twins, delivered, with or without mention of antepartum condition +67813 Fetal conjoined twins, antepartum condition or complication +67900 Maternal complications from in utero procedure, unspecified as to episode of care or not applicable +67901 Maternal complications from in utero procedure, delivered, with or without mention of antepartum condition +67902 Maternal complications from in utero procedure, delivered, with mention of postpartum complication +67903 Maternal complications from in utero procedure, antepartum condition or complication +67904 Maternal complications from in utero procedure, postpartum condition or complication +67910 Fetal complications from in utero procedure, unspecified as to episode of care or not applicable +67911 Fetal complications from in utero procedure, delivered, with or without mention of antepartum condition +67912 Fetal complications from in utero procedure, delivered, with mention of postpartum complication +67913 Fetal complications from in utero procedure, antepartum condition or complication +67914 Fetal complications from in utero procedure, postpartum condition or complication +6800 Carbuncle and furuncle of face +6801 Carbuncle and furuncle of neck +6802 Carbuncle and furuncle of trunk +6803 Carbuncle and furuncle of upper arm and forearm +6804 Carbuncle and furuncle of hand +6805 Carbuncle and furuncle of buttock +6806 Carbuncle and furuncle of leg, except foot +6807 Carbuncle and furuncle of foot +6808 Carbuncle and furuncle of other specified sites +6809 Carbuncle and furuncle of unspecified site +68100 Cellulitis and abscess of finger, unspecified +68101 Felon +68102 Onychia and paronychia of finger +68110 Cellulitis and abscess of toe, unspecified +68111 Onychia and paronychia of toe +6819 Cellulitis and abscess of unspecified digit +6820 Cellulitis and abscess of face +6821 Cellulitis and abscess of neck +6822 Cellulitis and abscess of trunk +6823 Cellulitis and abscess of upper arm and forearm +6824 Cellulitis and abscess of hand, except fingers and thumb +6825 Cellulitis and abscess of buttock +6826 Cellulitis and abscess of leg, except foot +6827 Cellulitis and abscess of foot, except toes +6828 Cellulitis and abscess of other specified sites +6829 Cellulitis and abscess of unspecified sites +683 Acute lymphadenitis +684 Impetigo +6850 Pilonidal cyst with abscess +6851 Pilonidal cyst without mention of abscess +68600 Pyoderma, unspecified +68601 Pyoderma gangrenosum +68609 Other pyoderma +6861 Pyogenic granuloma of skin and subcutaneous tissue +6868 Other specified local infections of skin and subcutaneous tissue +6869 Unspecified local infection of skin and subcutaneous tissue +69010 Seborrheic dermatitis, unspecified +69011 Seborrhea capitis +69012 Seborrheic infantile dermatitis +69018 Other seborrheic dermatitis +6908 Other erythematosquamous dermatosis +6910 Diaper or napkin rash +6918 Other atopic dermatitis and related conditions +6920 Contact dermatitis and other eczema due to detergents +6921 Contact dermatitis and other eczema due to oils and greases +6922 Contact dermatitis and other eczema due to solvents +6923 Contact dermatitis and other eczema due to drugs and medicines in contact with skin +6924 Contact dermatitis and other eczema due to other chemical products +6925 Contact dermatitis and other eczema due to food in contact with skin +6926 Contact dermatitis and other eczema due to plants [except food] +69270 Unspecified dermatitis due to sun +69271 Sunburn +69272 Acute dermatitis due to solar radiation +69273 Actinic reticuloid and actinic granuloma +69274 Other chronic dermatitis due to solar radiation +69275 Disseminated superficial actinic porokeratosis (DSAP) +69276 Sunburn of second degree +69277 Sunburn of third degree +69279 Other dermatitis due to solar radiation +69281 Dermatitis due to cosmetics +69282 Dermatitis due to other radiation +69283 Dermatitis due to metals +69284 Contact dermatitis and other eczema due to animal (cat) (dog) dander +69289 Contact dermatitis and other eczema due to other specified agents +6929 Contact dermatitis and other eczema, unspecified cause +6930 Dermatitis due to drugs and medicines taken internally +6931 Dermatitis due to food taken internally +6938 Dermatitis due to other specified substances taken internally +6939 Dermatitis due to unspecified substance taken internally +6940 Dermatitis herpetiformis +6941 Subcorneal pustular dermatosis +6942 Juvenile dermatitis herpetiformis +6943 Impetigo herpetiformis +6944 Pemphigus +6945 Pemphigoid +69460 Benign mucous membrane pemphigoid without mention of ocular involvement +69461 Benign mucous membrane pemphigoid with ocular involvement +6948 Other specified bullous dermatoses +6949 Unspecified bullous dermatoses +6950 Toxic erythema +69510 Erythema multiforme, unspecified +69511 Erythema multiforme minor +69512 Erythema multiforme major +69513 Stevens-Johnson syndrome +69514 Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome +69515 Toxic epidermal necrolysis +69519 Other erythema multiforme +6952 Erythema nodosum +6953 Rosacea +6954 Lupus erythematosus +69550 Exfoliation due to erythematous condition involving less than 10 percent of body surface +69551 Exfoliation due to erythematous condition involving 10-19 percent of body surface +69552 Exfoliation due to erythematous condition involving 20-29 percent of body surface +69553 Exfoliation due to erythematous condition involving 30-39 percent of body surface +69554 Exfoliation due to erythematous condition involving 40-49 percent of body surface +69555 Exfoliation due to erythematous condition involving 50-59 percent of body surface +69556 Exfoliation due to erythematous condition involving 60-69 percent of body surface +69557 Exfoliation due to erythematous condition involving 70-79 percent of body surface +69558 Exfoliation due to erythematous condition involving 80-89 percent of body surface +69559 Exfoliation due to erythematous condition involving 90 percent or more of body surface +69581 Ritter's disease +69589 Other specified erythematous conditions +6959 Unspecified erythematous condition +6960 Psoriatic arthropathy +6961 Other psoriasis +6962 Parapsoriasis +6963 Pityriasis rosea +6964 Pityriasis rubra pilaris +6965 Other and unspecified pityriasis +6968 Other psoriasis and similar disorders +6970 Lichen planus +6971 Lichen nitidus +6978 Other lichen, not elsewhere classified +6979 Lichen, unspecified +6980 Pruritus ani +6981 Pruritus of genital organs +6982 Prurigo +6983 Lichenification and lichen simplex chronicus +6984 Dermatitis factitia [artefacta] +6988 Other specified pruritic conditions +6989 Unspecified pruritic disorder +700 Corns and callosities +7010 Circumscribed scleroderma +7011 Keratoderma, acquired +7012 Acquired acanthosis nigricans +7013 Striae atrophicae +7014 Keloid scar +7015 Other abnormal granulation tissue +7018 Other specified hypertrophic and atrophic conditions of skin +7019 Unspecified hypertrophic and atrophic conditions of skin +7020 Actinic keratosis +70211 Inflamed seborrheic keratosis +70219 Other seborrheic keratosis +7028 Other specified dermatoses +7030 Ingrowing nail +7038 Other specified diseases of nail +7039 Unspecified disease of nail +70400 Alopecia, unspecified +70401 Alopecia areata +70402 Telogen effluvium +70409 Other alopecia +7041 Hirsutism +7042 Abnormalities of the hair +7043 Variations in hair color +70441 Pilar cyst +70442 Trichilemmal cyst +7048 Other specified diseases of hair and hair follicles +7049 Unspecified disease of hair and hair follicles +7050 Anhidrosis +7051 Prickly heat +70521 Primary focal hyperhidrosis +70522 Secondary focal hyperhidrosis +70581 Dyshidrosis +70582 Fox-Fordyce disease +70583 Hidradenitis +70589 Other specified disorders of sweat glands +7059 Unspecified disorder of sweat glands +7060 Acne varioliformis +7061 Other acne +7062 Sebaceous cyst +7063 Seborrhea +7068 Other specified diseases of sebaceous glands +7069 Unspecified disease of sebaceous glands +70700 Pressure ulcer, unspecified site +70701 Pressure ulcer, elbow +70702 Pressure ulcer, upper back +70703 Pressure ulcer, lower back +70704 Pressure ulcer, hip +70705 Pressure ulcer, buttock +70706 Pressure ulcer, ankle +70707 Pressure ulcer, heel +70709 Pressure ulcer, other site +70710 Ulcer of lower limb, unspecified +70711 Ulcer of thigh +70712 Ulcer of calf +70713 Ulcer of ankle +70714 Ulcer of heel and midfoot +70715 Ulcer of other part of foot +70719 Ulcer of other part of lower limb +70720 Pressure ulcer, unspecified stage +70721 Pressure ulcer, stage I +70722 Pressure ulcer, stage II +70723 Pressure ulcer, stage III +70724 Pressure ulcer, stage IV +70725 Pressure ulcer, unstageable +7078 Chronic ulcer of other specified sites +7079 Chronic ulcer of unspecified site +7080 Allergic urticaria +7081 Idiopathic urticaria +7082 Urticaria due to cold and heat +7083 Dermatographic urticaria +7084 Vibratory urticaria +7085 Cholinergic urticaria +7088 Other specified urticaria +7089 Urticaria, unspecified +70900 Dyschromia, unspecified +70901 Vitiligo +70909 Other dyschromia +7091 Vascular disorders of skin +7092 Scar conditions and fibrosis of skin +7093 Degenerative skin disorders +7094 Foreign body granuloma of skin and subcutaneous tissue +7098 Other specified disorders of skin +7099 Unspecified disorder of skin and subcutaneous tissue +7100 Systemic lupus erythematosus +7101 Systemic sclerosis +7102 Sicca syndrome +7103 Dermatomyositis +7104 Polymyositis +7105 Eosinophilia myalgia syndrome +7108 Other specified diffuse diseases of connective tissue +7109 Unspecified diffuse connective tissue disease +71100 Pyogenic arthritis, site unspecified +71101 Pyogenic arthritis, shoulder region +71102 Pyogenic arthritis, upper arm +71103 Pyogenic arthritis, forearm +71104 Pyogenic arthritis, hand +71105 Pyogenic arthritis, pelvic region and thigh +71106 Pyogenic arthritis, lower leg +71107 Pyogenic arthritis, ankle and foot +71108 Pyogenic arthritis, other specified sites +71109 Pyogenic arthritis, multiple sites +71110 Arthropathy associated with Reiter's disease and nonspecific urethritis, site unspecified +71111 Arthropathy associated with Reiter's disease and nonspecific urethritis, shoulder region +71112 Arthropathy associated with Reiter's disease and nonspecific urethritis, upper arm +71113 Arthropathy associated with Reiter's disease and nonspecific urethritis, forearm +71114 Arthropathy associated with Reiter's disease and nonspecific urethritis, hand +71115 Arthropathy associated with Reiter's disease and nonspecific urethritis, pelvic region and thigh +71116 Arthropathy associated with Reiter's disease and nonspecific urethritis, lower leg +71117 Arthropathy associated with Reiter's disease and nonspecific urethritis, ankle and foot +71118 Arthropathy associated with Reiter's disease and nonspecific urethritis, other specified sites +71119 Arthropathy associated with Reiter's disease and nonspecific urethritis, multiple sites +71120 Arthropathy in Behcet's syndrome, site unspecified +71121 Arthropathy in Behcet's syndrome, shoulder region +71122 Arthropathy in Behcet's syndrome, upper arm +71123 Arthropathy in Behcet's syndrome, forearm +71124 Arthropathy in Behcet's syndrome, hand +71125 Arthropathy in Behcet's syndrome, pelvic region and thigh +71126 Arthropathy in Behcet's syndrome, lower leg +71127 Arthropathy in Behcet's syndrome, ankle and foot +71128 Arthropathy in Behcet's syndrome, other specified sites +71129 Arthropathy in Behcet's syndrome, multiple sites +71130 Postdysenteric arthropathy, site unspecified +71131 Postdysenteric arthropathy, shoulder region +71132 Postdysenteric arthropathy, upper arm +71133 Postdysenteric arthropathy, forearm +71134 Postdysenteric arthropathy, hand +71135 Postdysenteric arthropathy, pelvic region and thigh +71136 Postdysenteric arthropathy, lower leg +71137 Postdysenteric arthropathy, ankle and foot +71138 Postdysenteric arthropathy, other specified sites +71139 Postdysenteric arthropathy, multiple sites +71140 Arthropathy associated with other bacterial diseases, site unspecified +71141 Arthropathy associated with other bacterial diseases, shoulder region +71142 Arthropathy associated with other bacterial diseases, upper arm +71143 Arthropathy associated with other bacterial diseases, forearm +71144 Arthropathy associated with other bacterial diseases, hand +71145 Arthropathy associated with other bacterial diseases, pelvic region and thigh +71146 Arthropathy associated with other bacterial diseases, lower leg +71147 Arthropathy associated with other bacterial diseases, ankle and foot +71148 Arthropathy associated with other bacterial diseases, other specified sites +71149 Arthropathy associated with other bacterial diseases, multiple sites +71150 Arthropathy associated with other viral diseases, site unspecified +71151 Arthropathy associated with other viral diseases, shoulder region +71152 Arthropathy associated with other viral diseases, upper arm +71153 Arthropathy associated with other viral diseases, forearm +71154 Arthropathy associated with other viral diseases, hand +71155 Arthropathy associated with other viral diseases, pelvic region and thigh +71156 Arthropathy associated with other viral diseases, lower leg +71157 Arthropathy associated with other viral diseases, ankle and foot +71158 Arthropathy associated with other viral diseases, other specified sites +71159 Arthropathy associated with other viral diseases, multiple sites +71160 Arthropathy associated with mycoses, site unspecified +71161 Arthropathy associated with mycoses, shoulder region +71162 Arthropathy associated with mycoses, upper arm +71163 Arthropathy associated with mycoses, forearm +71164 Arthropathy associated with mycoses, hand +71165 Arthropathy associated with mycoses, pelvic region and thigh +71166 Arthropathy associated with mycoses, lower leg +71167 Arthropathy associated with mycoses, ankle and foot +71168 Arthropathy associated with mycoses, other specified sites +71169 Arthropathy associated with mycoses, involving multiple sites +71170 Arthropathy associated with helminthiasis, site unspecified +71171 Arthropathy associated with helminthiasis, shoulder region +71172 Arthropathy associated with helminthiasis, upper arm +71173 Arthropathy associated with helminthiasis, forearm +71174 Arthropathy associated with helminthiasis, hand +71175 Arthropathy associated with helminthiasis, pelvic region and thigh +71176 Arthropathy associated with helminthiasis, lower leg +71177 Arthropathy associated with helminthiasis, ankle and foot +71178 Arthropathy associated with helminthiasis, other specified sites +71179 Arthropathy associated with helminthiasis, multiple sites +71180 Arthropathy associated with other infectious and parasitic diseases, site unspecified +71181 Arthropathy associated with other infectious and parasitic diseases, shoulder region +71182 Arthropathy associated with other infectious and parasitic diseases, upper arm +71183 Arthropathy associated with other infectious and parasitic diseases, forearm +71184 Arthropathy associated with other infectious and parasitic diseases, hand +71185 Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh +71186 Arthropathy associated with other infectious and parasitic diseases, lower leg +71187 Arthropathy associated with other infectious and parasitic diseases, ankle and foot +71188 Arthropathy associated with other infectious and parasitic diseases, other specified sites +71189 Arthropathy associated with other infectious and parasitic diseases, multiple sites +71190 Unspecified infective arthritis, site unspecified +71191 Unspecified infective arthritis, shoulder region +71192 Unspecified infective arthritis, upper arm +71193 Unspecified infective arthritis, forearm +71194 Unspecified infective arthritis, hand +71195 Unspecified infective arthritis, pelvic region and thigh +71196 Unspecified infective arthritis, lower leg +71197 Unspecified infective arthritis, ankle and foot +71198 Unspecified infective arthritis, other specified sites +71199 Unspecified infective arthritis, multiple sites +71210 Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified +71211 Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region +71212 Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm +71213 Chondrocalcinosis, due to dicalcium phosphate crystals, forearm +71214 Chondrocalcinosis, due to dicalcium phosphate crystals, hand +71215 Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh +71216 Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg +71217 Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot +71218 Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites +71219 Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites +71220 Chondrocalcinosis, due to pyrophosphate crystals, site unspecified +71221 Chondrocalcinosis, due to pyrophosphate crystals, shoulder region +71222 Chondrocalcinosis, due to pyrophosphate crystals, upper arm +71223 Chondrocalcinosis, due to pyrophosphate crystals, forearm +71224 Chondrocalcinosis, due to pyrophosphate crystals, hand +71225 Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh +71226 Chondrocalcinosis, due to pyrophosphate crystals, lower leg +71227 Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot +71228 Chondrocalcinosis, due to pyrophosphate crystals, other specified sites +71229 Chondrocalcinosis, due to pyrophosphate crystals, multiple sites +71230 Chondrocalcinosis, unspecified, site unspecified +71231 Chondrocalcinosis, unspecified, shoulder region +71232 Chondrocalcinosis, unspecified, upper arm +71233 Chondrocalcinosis, unspecified, forearm +71234 Chondrocalcinosis, unspecified, hand +71235 Chondrocalcinosis, unspecified, pelvic region and thigh +71236 Chondrocalcinosis, unspecified, lower leg +71237 Chondrocalcinosis, unspecified, ankle and foot +71238 Chondrocalcinosis, unspecified, other specified sites +71239 Chondrocalcinosis, unspecified, multiple sites +71280 Other specified crystal arthropathies, site unspecified +71281 Other specified crystal arthropathies, shoulder region +71282 Other specified crystal arthropathies, upper arm +71283 Other specified crystal arthropathies, forearm +71284 Other specified crystal arthropathies, hand +71285 Other specified crystal arthropathies, pelvic region and thigh +71286 Other specified crystal arthropathies, lower leg +71287 Other specified crystal arthropathies, ankle and foot +71288 Other specified crystal arthropathies, other specified sites +71289 Other specified crystal arthropathies, multiple sites +71290 Unspecified crystal arthropathy, site unspecified +71291 Unspecified crystal arthropathy, shoulder region +71292 Unspecified crystal arthropathy, upper arm +71293 Unspecified crystal arthropathy, forearm +71294 Unspecified crystal arthropathy, hand +71295 Unspecified crystal arthropathy, pelvic region and thigh +71296 Unspecified crystal arthropathy, lower leg +71297 Unspecified crystal arthropathy, ankle and foot +71298 Unspecified crystal arthropathy, other specified sites +71299 Unspecified crystal arthropathy, multiple sites +7130 Arthropathy associated with other endocrine and metabolic disorders +7131 Arthropathy associated with gastrointestinal conditions other than infections +7132 Arthropathy associated with hematological disorders +7133 Arthropathy associated with dermatological disorders +7134 Arthropathy associated with respiratory disorders +7135 Arthropathy associated with neurological disorders +7136 Arthropathy associated with hypersensitivity reaction +7137 Other general diseases with articular involvement +7138 Arthropathy associated with other conditions classifiable elsewhere +7140 Rheumatoid arthritis +7141 Felty's syndrome +7142 Other rheumatoid arthritis with visceral or systemic involvement +71430 Polyarticular juvenile rheumatoid arthritis, chronic or unspecified +71431 Polyarticular juvenile rheumatoid arthritis, acute +71432 Pauciarticular juvenile rheumatoid arthritis +71433 Monoarticular juvenile rheumatoid arthritis +7144 Chronic postrheumatic arthropathy +71481 Rheumatoid lung +71489 Other specified inflammatory polyarthropathies +7149 Unspecified inflammatory polyarthropathy +71500 Osteoarthrosis, generalized, site unspecified +71504 Osteoarthrosis, generalized, hand +71509 Osteoarthrosis, generalized, multiple sites +71510 Osteoarthrosis, localized, primary, site unspecified +71511 Osteoarthrosis, localized, primary, shoulder region +71512 Osteoarthrosis, localized, primary, upper arm +71513 Osteoarthrosis, localized, primary, forearm +71514 Osteoarthrosis, localized, primary, hand +71515 Osteoarthrosis, localized, primary, pelvic region and thigh +71516 Osteoarthrosis, localized, primary, lower leg +71517 Osteoarthrosis, localized, primary, ankle and foot +71518 Osteoarthrosis, localized, primary, other specified sites +71520 Osteoarthrosis, localized, secondary, site unspecified +71521 Osteoarthrosis, localized, secondary, shoulder region +71522 Osteoarthrosis, localized, secondary, upper arm +71523 Osteoarthrosis, localized, secondary, forearm +71524 Osteoarthrosis, localized, secondary, hand +71525 Osteoarthrosis, localized, secondary, pelvic region and thigh +71526 Osteoarthrosis, localized, secondary, lower leg +71527 Osteoarthrosis, localized, secondary, ankle and foot +71528 Osteoarthrosis, localized, secondary, other specified sites +71530 Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified +71531 Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region +71532 Osteoarthrosis, localized, not specified whether primary or secondary, upper arm +71533 Osteoarthrosis, localized, not specified whether primary or secondary, forearm +71534 Osteoarthrosis, localized, not specified whether primary or secondary, hand +71535 Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh +71536 Osteoarthrosis, localized, not specified whether primary or secondary, lower leg +71537 Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot +71538 Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites +71580 Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified +71589 Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, multiple sites +71590 Osteoarthrosis, unspecified whether generalized or localized, site unspecified +71591 Osteoarthrosis, unspecified whether generalized or localized, shoulder region +71592 Osteoarthrosis, unspecified whether generalized or localized, upper arm +71593 Osteoarthrosis, unspecified whether generalized or localized, forearm +71594 Osteoarthrosis, unspecified whether generalized or localized, hand +71595 Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh +71596 Osteoarthrosis, unspecified whether generalized or localized, lower leg +71597 Osteoarthrosis, unspecified whether generalized or localized, ankle and foot +71598 Osteoarthrosis, unspecified whether generalized or localized, other specified sites +71600 Kaschin-Beck disease, site unspecified +71601 Kaschin-Beck disease, shoulder region +71602 Kaschin-Beck disease, upper arm +71603 Kaschin-Beck disease, forearm +71604 Kaschin-Beck disease, hand +71605 Kaschin-Beck disease, pelvic region and thigh +71606 Kaschin-Beck disease, lower leg +71607 Kaschin-Beck disease, ankle and foot +71608 Kaschin-Beck disease, other specified sites +71609 Kaschin-Beck disease, multiple sites +71610 Traumatic arthropathy, site unspecified +71611 Traumatic arthropathy, shoulder region +71612 Traumatic arthropathy, upper arm +71613 Traumatic arthropathy, forearm +71614 Traumatic arthropathy, hand +71615 Traumatic arthropathy, pelvic region and thigh +71616 Traumatic arthropathy, lower leg +71617 Traumatic arthropathy, ankle and foot +71618 Traumatic arthropathy, other specified sites +71619 Traumatic arthropathy, multiple sites +71620 Allergic arthritis, site unspecified +71621 Allergic arthritis, shoulder region +71622 Allergic arthritis, upper arm +71623 Allergic arthritis, forearm +71624 Allergic arthritis, hand +71625 Allergic arthritis, pelvic region and thigh +71626 Allergic arthritis, lower leg +71627 Allergic arthritis, ankle and foot +71628 Allergic arthritis, other specified sites +71629 Allergic arthritis, multiple sites +71630 Climacteric arthritis, site unspecified +71631 Climacteric arthritis, shoulder region +71632 Climacteric arthritis, upper arm +71633 Climacteric arthritis, forearm +71634 Climacteric arthritis, hand +71635 Climacteric arthritis, pelvic region and thigh +71636 Climacteric arthritis, lower leg +71637 Climacteric arthritis, ankle and foot +71638 Climacteric arthritis, other specified sites +71639 Climacteric arthritis, multiple sites +71640 Transient arthropathy, site unspecified +71641 Transient arthropathy, shoulder region +71642 Transient arthropathy, upper arm +71643 Transient arthropathy, forearm +71644 Transient arthropathy, hand +71645 Transient arthropathy, pelvic region and thigh +71646 Transient arthropathy, lower leg +71647 Transient arthropathy, ankle and foot +71648 Transient arthropathy, other specified sites +71649 Transient arthropathy, multiple sites +71650 Unspecified polyarthropathy or polyarthritis, site unspecified +71651 Unspecified polyarthropathy or polyarthritis, shoulder region +71652 Unspecified polyarthropathy or polyarthritis, upper arm +71653 Unspecified polyarthropathy or polyarthritis, forearm +71654 Unspecified polyarthropathy or polyarthritis, hand +71655 Unspecified polyarthropathy or polyarthritis, pelvic region and thigh +71656 Unspecified polyarthropathy or polyarthritis, lower leg +71657 Unspecified polyarthropathy or polyarthritis, ankle and foot +71658 Unspecified polyarthropathy or polyarthritis, other specified sites +71659 Unspecified polyarthropathy or polyarthritis, multiple sites +71660 Unspecified monoarthritis, site unspecified +71661 Unspecified monoarthritis, shoulder region +71662 Unspecified monoarthritis, upper arm +71663 Unspecified monoarthritis, forearm +71664 Unspecified monoarthritis, hand +71665 Unspecified monoarthritis, pelvic region and thigh +71666 Unspecified monoarthritis, lower leg +71667 Unspecified monoarthritis, ankle and foot +71668 Unspecified monoarthritis, other specified sites +71680 Other specified arthropathy, site unspecified +71681 Other specified arthropathy, shoulder region +71682 Other specified arthropathy, upper arm +71683 Other specified arthropathy, forearm +71684 Other specified arthropathy, hand +71685 Other specified arthropathy, pelvic region and thigh +71686 Other specified arthropathy, lower leg +71687 Other specified arthropathy, ankle and foot +71688 Other specified arthropathy, other specified sites +71689 Other specified arthropathy, multiple sites +71690 Arthropathy, unspecified, site unspecified +71691 Arthropathy, unspecified, shoulder region +71692 Arthropathy, unspecified, upper arm +71693 Arthropathy, unspecified, forearm +71694 Arthropathy, unspecified, hand +71695 Arthropathy, unspecified, pelvic region and thigh +71696 Arthropathy, unspecified, lower leg +71697 Arthropathy, unspecified, ankle and foot +71698 Arthropathy, unspecified, other specified sites +71699 Arthropathy, unspecified, multiple sites +7170 Old bucket handle tear of medial meniscus +7171 Derangement of anterior horn of medial meniscus +7172 Derangement of posterior horn of medial meniscus +7173 Other and unspecified derangement of medial meniscus +71740 Derangement of lateral meniscus, unspecified +71741 Bucket handle tear of lateral meniscus +71742 Derangement of anterior horn of lateral meniscus +71743 Derangement of posterior horn of lateral meniscus +71749 Other derangement of lateral meniscus +7175 Derangement of meniscus, not elsewhere classified +7176 Loose body in knee +7177 Chondromalacia of patella +71781 Old disruption of lateral collateral ligament +71782 Old disruption of medial collateral ligament +71783 Old disruption of anterior cruciate ligament +71784 Old disruption of posterior cruciate ligament +71785 Old disruption of other ligaments of knee +71789 Other internal derangement of knee +7179 Unspecified internal derangement of knee +71800 Articular cartilage disorder, site unspecified +71801 Articular cartilage disorder, shoulder region +71802 Articular cartilage disorder, upper arm +71803 Articular cartilage disorder, forearm +71804 Articular cartilage disorder, hand +71805 Articular cartilage disorder, pelvic region and thigh +71807 Articular cartilage disorder, ankle and foot +71808 Articular cartilage disorder, other specified sites +71809 Articular cartilage disorder, multiple sites +71810 Loose body in joint, site unspecified +71811 Loose body in joint, shoulder region +71812 Loose body in joint, upper arm +71813 Loose body in joint, forearm +71814 Loose body in joint, hand +71815 Loose body in joint, pelvic region and thigh +71817 Loose body in joint, ankle and foot +71818 Loose body in joint, other specified sites +71819 Loose body in joint, multiple sites +71820 Pathological dislocation of joint, site unspecified +71821 Pathological dislocation of joint, shoulder region +71822 Pathological dislocation of joint, upper arm +71823 Pathological dislocation of joint, forearm +71824 Pathological dislocation of joint, hand +71825 Pathological dislocation of joint, pelvic region and thigh +71826 Pathological dislocation of joint, lower leg +71827 Pathological dislocation of joint, ankle and foot +71828 Pathological dislocation of joint, other specified sites +71829 Pathological dislocation of joint, multiple sites +71830 Recurrent dislocation of joint, site unspecified +71831 Recurrent dislocation of joint, shoulder region +71832 Recurrent dislocation of joint, upper arm +71833 Recurrent dislocation of joint, forearm +71834 Recurrent dislocation of joint, hand +71835 Recurrent dislocation of joint, pelvic region and thigh +71836 Recurrent dislocation of joint, lower leg +71837 Recurrent dislocation of joint, ankle and foot +71838 Recurrent dislocation of joint, other specified sites +71839 Recurrent dislocation of joint, multiple sites +71840 Contracture of joint, site unspecified +71841 Contracture of joint, shoulder region +71842 Contracture of joint, upper arm +71843 Contracture of joint, forearm +71844 Contracture of joint, hand +71845 Contracture of joint, pelvic region and thigh +71846 Contracture of joint, lower leg +71847 Contracture of joint, ankle and foot +71848 Contracture of joint, other specified sites +71849 Contracture of joint, multiple sites +71850 Ankylosis of joint, site unspecified +71851 Ankylosis of joint, shoulder region +71852 Ankylosis of joint, upper arm +71853 Ankylosis of joint, forearm +71854 Ankylosis of joint, hand +71855 Ankylosis of joint, pelvic region and thigh +71856 Ankylosis of joint, lower leg +71857 Ankylosis of joint, ankle and foot +71858 Ankylosis of joint, other specified sites +71859 Ankylosis of joint, multiple sites +71865 Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh +71870 Developmental dislocation of joint, site unspecified +71871 Developmental dislocation of joint, shoulder region +71872 Developmental dislocation of joint, upper arm +71873 Developmental dislocation of joint, forearm +71874 Developmental dislocation of joint, hand +71875 Developmental dislocation of joint, pelvic region and thigh +71876 Developmental dislocation of joint, lower leg +71877 Developmental dislocation of joint, ankle and foot +71878 Developmental dislocation of joint, other specified sites +71879 Developmental dislocation of joint, multiple sites +71880 Other joint derangement, not elsewhere classified, site unspecified +71881 Other joint derangement, not elsewhere classified, shoulder region +71882 Other joint derangement, not elsewhere classified, upper arm +71883 Other joint derangement, not elsewhere classified, forearm +71884 Other joint derangement, not elsewhere classified, hand +71885 Other joint derangement, not elsewhere classified, pelvic region and thigh +71886 Other joint derangement, not elsewhere classified, lower leg +71887 Other joint derangement, not elsewhere classified, ankle and foot +71888 Other joint derangement, not elsewhere classified, other specified sites +71889 Other joint derangement, not elsewhere classified, multiple sites +71890 Unspecified derangement of joint, site unspecified +71891 Unspecified derangement of joint, shoulder region +71892 Unspecified derangement of joint, upper arm +71893 Unspecified derangement of joint, forearm +71894 Unspecified derangement of joint, hand +71895 Unspecified derangement of joint, pelvic region and thigh +71897 Unspecified derangement of joint, ankle and foot +71898 Unspecified derangement of joint, other specified sites +71899 Unspecified derangement of joint, multiple sites +71900 Effusion of joint, site unspecified +71901 Effusion of joint, shoulder region +71902 Effusion of joint, upper arm +71903 Effusion of joint, forearm +71904 Effusion of joint, hand +71905 Effusion of joint, pelvic region and thigh +71906 Effusion of joint, lower leg +71907 Effusion of joint, ankle and foot +71908 Effusion of joint, other specified sites +71909 Effusion of joint, multiple sites +71910 Hemarthrosis, site unspecified +71911 Hemarthrosis, shoulder region +71912 Hemarthrosis, upper arm +71913 Hemarthrosis, forearm +71914 Hemarthrosis, hand +71915 Hemarthrosis, pelvic region and thigh +71916 Hemarthrosis, lower leg +71917 Hemarthrosis, ankle and foot +71918 Hemarthrosis, other specified sites +71919 Hemarthrosis, multiple sites +71920 Villonodular synovitis, site unspecified +71921 Villonodular synovitis, shoulder region +71922 Villonodular synovitis, upper arm +71923 Villonodular synovitis, forearm +71924 Villonodular synovitis, hand +71925 Villonodular synovitis, pelvic region and thigh +71926 Villonodular synovitis, lower leg +71927 Villonodular synovitis, ankle and foot +71928 Villonodular synovitis, other specified sites +71929 Villonodular synovitis, multiple sites +71930 Palindromic rheumatism, site unspecified +71931 Palindromic rheumatism, shoulder region +71932 Palindromic rheumatism, upper arm +71933 Palindromic rheumatism, forearm +71934 Palindromic rheumatism, hand +71935 Palindromic rheumatism, pelvic region and thigh +71936 Palindromic rheumatism, lower leg +71937 Palindromic rheumatism, ankle and foot +71938 Palindromic rheumatism, other specified sites +71939 Palindromic rheumatism, multiple sites +71940 Pain in joint, site unspecified +71941 Pain in joint, shoulder region +71942 Pain in joint, upper arm +71943 Pain in joint, forearm +71944 Pain in joint, hand +71945 Pain in joint, pelvic region and thigh +71946 Pain in joint, lower leg +71947 Pain in joint, ankle and foot +71948 Pain in joint, other specified sites +71949 Pain in joint, multiple sites +71950 Stiffness of joint, not elsewhere classified, site unspecified +71951 Stiffness of joint, not elsewhere classified, shoulder region +71952 Stiffness of joint, not elsewhere classified, upper arm +71953 Stiffness of joint, not elsewhere classified, forearm +71954 Stiffness of joint, not elsewhere classified, hand +71955 Stiffness of joint, not elsewhere classified, pelvic region and thigh +71956 Stiffness of joint, not elsewhere classified, lower leg +71957 Stiffness of joint, not elsewhere classified, ankle and foot +71958 Stiffness of joint, not elsewhere classified, other specified sites +71959 Stiffness of joint, not elsewhere classified, multiple sites +71960 Other symptoms referable to joint, site unspecified +71961 Other symptoms referable to joint, shoulder region +71962 Other symptoms referable to joint, upper arm +71963 Other symptoms referable to joint, forearm +71964 Other symptoms referable to joint, hand +71965 Other symptoms referable to joint, pelvic region and thigh +71966 Other symptoms referable to joint, lower leg +71967 Other symptoms referable to joint, ankle and foot +71968 Other symptoms referable to joint, other specified sites +71969 Other symptoms referable to joint, multiple sites +7197 Difficulty in walking +71980 Other specified disorders of joint, site unspecified +71981 Other specified disorders of joint, shoulder region +71982 Other specified disorders of joint, upper arm +71983 Other specified disorders of joint, forearm +71984 Other specified disorders of joint, hand +71985 Other specified disorders of joint, pelvic region and thigh +71986 Other specified disorders of joint, lower leg +71987 Other specified disorders of joint, ankle and foot +71988 Other specified disorders of joint, other specified sites +71989 Other specified disorders of joint, multiple sites +71990 Unspecified disorder of joint, site unspecified +71991 Unspecified disorder of joint, shoulder region +71992 Unspecified disorder of joint, upper arm +71993 Unspecified disorder of joint, forearm +71994 Unspecified disorder of joint, hand +71995 Unspecified disorder of joint, pelvic region and thigh +71996 Unspecified disorder of joint, lower leg +71997 Unspecified disorder of joint, ankle and foot +71998 Unspecified disorder of joint, other specified sites +71999 Unspecified disorder of joint, multiple sites +7200 Ankylosing spondylitis +7201 Spinal enthesopathy +7202 Sacroiliitis, not elsewhere classified +72081 Inflammatory spondylopathies in diseases classified elsewhere +72089 Other inflammatory spondylopathies +7209 Unspecified inflammatory spondylopathy +7210 Cervical spondylosis without myelopathy +7211 Cervical spondylosis with myelopathy +7212 Thoracic spondylosis without myelopathy +7213 Lumbosacral spondylosis without myelopathy +72141 Spondylosis with myelopathy, thoracic region +72142 Spondylosis with myelopathy, lumbar region +7215 Kissing spine +7216 Ankylosing vertebral hyperostosis +7217 Traumatic spondylopathy +7218 Other allied disorders of spine +72190 Spondylosis of unspecified site, without mention of myelopathy +72191 Spondylosis of unspecified site, with myelopathy +7220 Displacement of cervical intervertebral disc without myelopathy +72210 Displacement of lumbar intervertebral disc without myelopathy +72211 Displacement of thoracic intervertebral disc without myelopathy +7222 Displacement of intervertebral disc, site unspecified, without myelopathy +72230 Schmorl's nodes, unspecified region +72231 Schmorl's nodes, thoracic region +72232 Schmorl's nodes, lumbar region +72239 Schmorl's nodes, other region +7224 Degeneration of cervical intervertebral disc +72251 Degeneration of thoracic or thoracolumbar intervertebral disc +72252 Degeneration of lumbar or lumbosacral intervertebral disc +7226 Degeneration of intervertebral disc, site unspecified +72270 Intervertebral disc disorder with myelopathy, unspecified region +72271 Intervertebral disc disorder with myelopathy, cervical region +72272 Intervertebral disc disorder with myelopathy, thoracic region +72273 Intervertebral disc disorder with myelopathy, lumbar region +72280 Postlaminectomy syndrome, unspecified region +72281 Postlaminectomy syndrome, cervical region +72282 Postlaminectomy syndrome, thoracic region +72283 Postlaminectomy syndrome, lumbar region +72290 Other and unspecified disc disorder, unspecified region +72291 Other and unspecified disc disorder, cervical region +72292 Other and unspecified disc disorder, thoracic region +72293 Other and unspecified disc disorder, lumbar region +7230 Spinal stenosis in cervical region +7231 Cervicalgia +7232 Cervicocranial syndrome +7233 Cervicobrachial syndrome (diffuse) +7234 Brachial neuritis or radiculitis NOS +7235 Torticollis, unspecified +7236 Panniculitis specified as affecting neck +7237 Ossification of posterior longitudinal ligament in cervical region +7238 Other syndromes affecting cervical region +7239 Unspecified musculoskeletal disorders and symptoms referable to neck +72400 Spinal stenosis, unspecified region +72401 Spinal stenosis, thoracic region +72402 Spinal stenosis, lumbar region, without neurogenic claudication +72403 Spinal stenosis, lumbar region, with neurogenic claudication +72409 Spinal stenosis, other region +7241 Pain in thoracic spine +7242 Lumbago +7243 Sciatica +7244 Thoracic or lumbosacral neuritis or radiculitis, unspecified +7245 Backache, unspecified +7246 Disorders of sacrum +72470 Unspecified disorder of coccyx +72471 Hypermobility of coccyx +72479 Other disorders of coccyx +7248 Other symptoms referable to back +7249 Other unspecified back disorders +725 Polymyalgia rheumatica +7260 Adhesive capsulitis of shoulder +72610 Disorders of bursae and tendons in shoulder region, unspecified +72611 Calcifying tendinitis of shoulder +72612 Bicipital tenosynovitis +72613 Partial tear of rotator cuff +72619 Other specified disorders of bursae and tendons in shoulder region +7262 Other affections of shoulder region, not elsewhere classified +72630 Enthesopathy of elbow, unspecified +72631 Medial epicondylitis +72632 Lateral epicondylitis +72633 Olecranon bursitis +72639 Other enthesopathy of elbow region +7264 Enthesopathy of wrist and carpus +7265 Enthesopathy of hip region +72660 Enthesopathy of knee, unspecified +72661 Pes anserinus tendinitis or bursitis +72662 Tibial collateral ligament bursitis +72663 Fibular collateral ligament bursitis +72664 Patellar tendinitis +72665 Prepatellar bursitis +72669 Other enthesopathy of knee +72670 Enthesopathy of ankle and tarsus, unspecified +72671 Achilles bursitis or tendinitis +72672 Tibialis tendinitis +72673 Calcaneal spur +72679 Other enthesopathy of ankle and tarsus +7268 Other peripheral enthesopathies +72690 Enthesopathy of unspecified site +72691 Exostosis of unspecified site +72700 Synovitis and tenosynovitis, unspecified +72701 Synovitis and tenosynovitis in diseases classified elsewhere +72702 Giant cell tumor of tendon sheath +72703 Trigger finger (acquired) +72704 Radial styloid tenosynovitis +72705 Other tenosynovitis of hand and wrist +72706 Tenosynovitis of foot and ankle +72709 Other synovitis and tenosynovitis +7271 Bunion +7272 Specific bursitides often of occupational origin +7273 Other bursitis +72740 Synovial cyst, unspecified +72741 Ganglion of joint +72742 Ganglion of tendon sheath +72743 Ganglion, unspecified +72749 Other ganglion and cyst of synovium, tendon, and bursa +72750 Rupture of synovium, unspecified +72751 Synovial cyst of popliteal space +72759 Other rupture of synovium +72760 Nontraumatic rupture of unspecified tendon +72761 Complete rupture of rotator cuff +72762 Nontraumatic rupture of tendons of biceps (long head) +72763 Nontraumatic rupture of extensor tendons of hand and wrist +72764 Nontraumatic rupture of flexor tendons of hand and wrist +72765 Nontraumatic rupture of quadriceps tendon +72766 Nontraumatic rupture of patellar tendon +72767 Nontraumatic rupture of achilles tendon +72768 Nontraumatic rupture of other tendons of foot and ankle +72769 Nontraumatic rupture of other tendon +72781 Contracture of tendon (sheath) +72782 Calcium deposits in tendon and bursa +72783 Plica syndrome +72789 Other disorders of synovium, tendon, and bursa +7279 Unspecified disorder of synovium, tendon, and bursa +7280 Infective myositis +72810 Calcification and ossification, unspecified +72811 Progressive myositis ossificans +72812 Traumatic myositis ossificans +72813 Postoperative heterotopic calcification +72819 Other muscular calcification and ossification +7282 Muscular wasting and disuse atrophy, not elsewhere classified +7283 Other specific muscle disorders +7284 Laxity of ligament +7285 Hypermobility syndrome +7286 Contracture of palmar fascia +72871 Plantar fascial fibromatosis +72879 Other fibromatoses of muscle, ligament, and fascia +72881 Interstitial myositis +72882 Foreign body granuloma of muscle +72883 Rupture of muscle, nontraumatic +72884 Diastasis of muscle +72885 Spasm of muscle +72886 Necrotizing fasciitis +72887 Muscle weakness (generalized) +72888 Rhabdomyolysis +72889 Other disorders of muscle, ligament, and fascia +7289 Unspecified disorder of muscle, ligament, and fascia +7290 Rheumatism, unspecified and fibrositis +7291 Myalgia and myositis, unspecified +7292 Neuralgia, neuritis, and radiculitis, unspecified +72930 Panniculitis, unspecified site +72931 Hypertrophy of fat pad, knee +72939 Panniculitis, other site +7294 Fasciitis, unspecified +7295 Pain in limb +7296 Residual foreign body in soft tissue +72971 Nontraumatic compartment syndrome of upper extremity +72972 Nontraumatic compartment syndrome of lower extremity +72973 Nontraumatic compartment syndrome of abdomen +72979 Nontraumatic compartment syndrome of other sites +72981 Swelling of limb +72982 Cramp of limb +72989 Other musculoskeletal symptoms referable to limbs +72990 Disorders of soft tissue, unspecified +72991 Post-traumatic seroma +72992 Nontraumatic hematoma of soft tissue +72999 Other disorders of soft tissue +73000 Acute osteomyelitis, site unspecified +73001 Acute osteomyelitis, shoulder region +73002 Acute osteomyelitis, upper arm +73003 Acute osteomyelitis, forearm +73004 Acute osteomyelitis, hand +73005 Acute osteomyelitis, pelvic region and thigh +73006 Acute osteomyelitis, lower leg +73007 Acute osteomyelitis, ankle and foot +73008 Acute osteomyelitis, other specified sites +73009 Acute osteomyelitis, multiple sites +73010 Chronic osteomyelitis, site unspecified +73011 Chronic osteomyelitis, shoulder region +73012 Chronic osteomyelitis, upper arm +73013 Chronic osteomyelitis, forearm +73014 Chronic osteomyelitis, hand +73015 Chronic osteomyelitis, pelvic region and thigh +73016 Chronic osteomyelitis, lower leg +73017 Chronic osteomyelitis, ankle and foot +73018 Chronic osteomyelitis, other specified sites +73019 Chronic osteomyelitis, multiple sites +73020 Unspecified osteomyelitis, site unspecified +73021 Unspecified osteomyelitis, shoulder region +73022 Unspecified osteomyelitis, upper arm +73023 Unspecified osteomyelitis, forearm +73024 Unspecified osteomyelitis, hand +73025 Unspecified osteomyelitis, pelvic region and thigh +73026 Unspecified osteomyelitis, lower leg +73027 Unspecified osteomyelitis, ankle and foot +73028 Unspecified osteomyelitis, other specified sites +73029 Unspecified osteomyelitis, multiple sites +73030 Periostitis, without mention of osteomyelitis, site unspecified +73031 Periostitis, without mention of osteomyelitis, shoulder region +73032 Periostitis, without mention of osteomyelitis, upper arm +73033 Periostitis, without mention of osteomyelitis, forearm +73034 Periostitis, without mention of osteomyelitis, hand +73035 Periostitis, without mention of osteomyelitis, pelvic region and thigh +73036 Periostitis, without mention of osteomyelitis, lower leg +73037 Periostitis, without mention of osteomyelitis, ankle and foot +73038 Periostitis, without mention of osteomyelitis, other specified sites +73039 Periostitis, without mention of osteomyelitis, multiple sites +73070 Osteopathy resulting from poliomyelitis, site unspecified +73071 Osteopathy resulting from poliomyelitis, shoulder region +73072 Osteopathy resulting from poliomyelitis, upper arm +73073 Osteopathy resulting from poliomyelitis, forearm +73074 Osteopathy resulting from poliomyelitis, hand +73075 Osteopathy resulting from poliomyelitis, pelvic region and thigh +73076 Osteopathy resulting from poliomyelitis, lower leg +73077 Osteopathy resulting from poliomyelitis, ankle and foot +73078 Osteopathy resulting from poliomyelitis, other specified sites +73079 Osteopathy resulting from poliomyelitis, multiple sites +73080 Other infections involving bone in diseases classified elsewhere, site unspecified +73081 Other infections involving bone in diseases classified elsewhere, shoulder region +73082 Other infections involving bone in diseases classified elsewhere, upper arm +73083 Other infections involving bone in diseases classified elsewhere, forearm +73084 Other infections involving bone in diseases classified elsewhere, hand +73085 Other infections involving bone in diseases classified elsewhere, pelvic region and thigh +73086 Other infections involving bone in diseases classified elsewhere, lower leg +73087 Other infections involving bone in diseases classified elsewhere, ankle and foot +73088 Other infections involving bone in diseases classified elsewhere, other specified sites +73089 Other infections involving bone in diseases classified elsewhere, multiple sites +73090 Unspecified infection of bone, site unspecified +73091 Unspecified infection of bone, shoulder region +73092 Unspecified infection of bone, upper arm +73093 Unspecified infection of bone, forearm +73094 Unspecified infection of bone, hand +73095 Unspecified infection of bone, pelvic region and thigh +73096 Unspecified infection of bone, lower leg +73097 Unspecified infection of bone, ankle and foot +73098 Unspecified infection of bone, other specified sites +73099 Unspecified infection of bone, multiple sites +7310 Osteitis deformans without mention of bone tumor +7311 Osteitis deformans in diseases classified elsewhere +7312 Hypertrophic pulmonary osteoarthropathy +7313 Major osseous defects +7318 Other bone involvement in diseases classified elsewhere +7320 Juvenile osteochondrosis of spine +7321 Juvenile osteochondrosis of hip and pelvis +7322 Nontraumatic slipped upper femoral epiphysis +7323 Juvenile osteochondrosis of upper extremity +7324 Juvenile osteochondrosis of lower extremity, excluding foot +7325 Juvenile osteochondrosis of foot +7326 Other juvenile osteochondrosis +7327 Osteochondritis dissecans +7328 Other specified forms of osteochondropathy +7329 Unspecified osteochondropathy +73300 Osteoporosis, unspecified +73301 Senile osteoporosis +73302 Idiopathic osteoporosis +73303 Disuse osteoporosis +73309 Other osteoporosis +73310 Pathologic fracture, unspecified site +73311 Pathologic fracture of humerus +73312 Pathologic fracture of distal radius and ulna +73313 Pathologic fracture of vertebrae +73314 Pathologic fracture of neck of femur +73315 Pathologic fracture of other specified part of femur +73316 Pathologic fracture of tibia or fibula +73319 Pathologic fracture of other specified site +73320 Cyst of bone (localized), unspecified +73321 Solitary bone cyst +73322 Aneurysmal bone cyst +73329 Other bone cyst +7333 Hyperostosis of skull +73340 Aseptic necrosis of bone, site unspecified +73341 Aseptic necrosis of head of humerus +73342 Aseptic necrosis of head and neck of femur +73343 Aseptic necrosis of medial femoral condyle +73344 Aseptic necrosis of talus +73345 Aseptic necrosis of bone, jaw +73349 Aseptic necrosis of bone, other +7335 Osteitis condensans +7336 Tietze's disease +7337 Algoneurodystrophy +73381 Malunion of fracture +73382 Nonunion of fracture +73390 Disorder of bone and cartilage, unspecified +73391 Arrest of bone development or growth +73392 Chondromalacia +73393 Stress fracture of tibia or fibula +73394 Stress fracture of the metatarsals +73395 Stress fracture of other bone +73396 Stress fracture of femoral neck +73397 Stress fracture of shaft of femur +73398 Stress fracture of pelvis +73399 Other disorders of bone and cartilage +734 Flat foot +7350 Hallux valgus (acquired) +7351 Hallux varus (acquired) +7352 Hallux rigidus +7353 Hallux malleus +7354 Other hammer toe (acquired) +7355 Claw toe (acquired) +7358 Other acquired deformities of toe +7359 Unspecified acquired deformity of toe +73600 Unspecified deformity of forearm, excluding fingers +73601 Cubitus valgus (acquired) +73602 Cubitus varus (acquired) +73603 Valgus deformity of wrist (acquired) +73604 Varus deformity of wrist (acquired) +73605 Wrist drop (acquired) +73606 Claw hand (acquired) +73607 Club hand, acquired +73609 Other acquired deformities of forearm, excluding fingers +7361 Mallet finger +73620 Unspecified deformity of finger +73621 Boutonniere deformity +73622 Swan-neck deformity +73629 Other acquired deformities of finger +73630 Unspecified acquired deformity of hip +73631 Coxa valga (acquired) +73632 Coxa vara (acquired) +73639 Other acquired deformities of hip +73641 Genu valgum (acquired) +73642 Genu varum (acquired) +7365 Genu recurvatum (acquired) +7366 Other acquired deformities of knee +73670 Unspecified deformity of ankle and foot, acquired +73671 Acquired equinovarus deformity +73672 Equinus deformity of foot, acquired +73673 Cavus deformity of foot, acquired +73674 Claw foot, acquired +73675 Cavovarus deformity of foot, acquired +73676 Other acquired calcaneus deformity +73679 Other acquired deformities of ankle and foot +73681 Unequal leg length (acquired) +73689 Other acquired deformity of other parts of limb +7369 Acquired deformity of limb, site unspecified +7370 Adolescent postural kyphosis +73710 Kyphosis (acquired) (postural) +73711 Kyphosis due to radiation +73712 Kyphosis, postlaminectomy +73719 Other kyphosis (acquired) +73720 Lordosis (acquired) (postural) +73721 Lordosis, postlaminectomy +73722 Other postsurgical lordosis +73729 Other lordosis (acquired) +73730 Scoliosis [and kyphoscoliosis], idiopathic +73731 Resolving infantile idiopathic scoliosis +73732 Progressive infantile idiopathic scoliosis +73733 Scoliosis due to radiation +73734 Thoracogenic scoliosis +73739 Other kyphoscoliosis and scoliosis +73740 Curvature of spine, unspecified, associated with other conditions +73741 Kyphosis associated with other conditions +73742 Lordosis associated with other conditions +73743 Scoliosis associated with other conditions +7378 Other curvatures of spine +7379 Unspecified curvature of spine +7380 Acquired deformity of nose +73810 Unspecified acquired deformity of head +73811 Zygomatic hyperplasia +73812 Zygomatic hypoplasia +73819 Other specified acquired deformity of head +7382 Acquired deformity of neck +7383 Acquired deformity of chest and rib +7384 Acquired spondylolisthesis +7385 Other acquired deformity of back or spine +7386 Acquired deformity of pelvis +7387 Cauliflower ear +7388 Acquired deformity of other specified site +7389 Acquired deformity of unspecified site +7390 Nonallopathic lesions, head region +7391 Nonallopathic lesions, cervical region +7392 Nonallopathic lesions, thoracic region +7393 Nonallopathic lesions, lumbar region +7394 Nonallopathic lesions, sacral region +7395 Nonallopathic lesions, pelvic region +7396 Nonallopathic lesions, lower extremities +7397 Nonallopathic lesions, upper extremities +7398 Nonallopathic lesions, rib cage +7399 Nonallopathic lesions, abdomen and other sites +7400 Anencephalus +7401 Craniorachischisis +7402 Iniencephaly +74100 Spina bifida with hydrocephalus, unspecified region +74101 Spina bifida with hydrocephalus, cervical region +74102 Spina bifida with hydrocephalus, dorsal (thoracic) region +74103 Spina bifida with hydrocephalus, lumbar region +74190 Spina bifida without mention of hydrocephalus, unspecified region +74191 Spina bifida without mention of hydrocephalus, cervical region +74192 Spina bifida without mention of hydrocephalus, dorsal (thoracic) region +74193 Spina bifida without mention of hydrocephalus, lumbar region +7420 Encephalocele +7421 Microcephalus +7422 Congenital reduction deformities of brain +7423 Congenital hydrocephalus +7424 Other specified congenital anomalies of brain +74251 Diastematomyelia +74253 Hydromyelia +74259 Other specified congenital anomalies of spinal cord +7428 Other specified congenital anomalies of nervous system +7429 Unspecified congenital anomaly of brain, spinal cord, and nervous system +74300 Clinical anophthalmos, unspecified +74303 Cystic eyeball, congenital +74306 Cryptophthalmos +74310 Microphthalmos, unspecified +74311 Simple microphthalmos +74312 Microphthalmos associated with other anomalies of eye and adnexa +74320 Buphthalmos, unspecified +74321 Simple buphthalmos +74322 Buphthalmos associated with other ocular anomalies +74330 Congenital cataract, unspecified +74331 Congenital capsular and subcapsular cataract +74332 Congenital cortical and zonular cataract +74333 Congenital nuclear cataract +74334 Total and subtotal cataract, congenital +74335 Congenital aphakia +74336 Congenital anomalies of lens shape +74337 Congenital ectopic lens +74339 Other congenital cataract and lens anomalies +74341 Congenital anomalies of corneal size and shape +74342 Corneal opacities, interfering with vision, congenital +74343 Other corneal opacities, congenital +74344 Specified congenital anomalies of anterior chamber, chamber angle, and related structures +74345 Aniridia +74346 Other specified congenital anomalies of iris and ciliary body +74347 Specified congenital anomalies of sclera +74348 Multiple and combined congenital anomalies of anterior segment +74349 Other congenital anomalies of anterior segment +74351 Vitreous anomalies +74352 Fundus coloboma +74353 Chorioretinal degeneration, congenital +74354 Congenital folds and cysts of posterior segment +74355 Congenital macular changes +74356 Other retinal changes, congenital +74357 Specified congenital anomalies of optic disc +74358 Vascular anomalies +74359 Other congenital anomalies of posterior segment +74361 Congenital ptosis +74362 Congenital deformities of eyelids +74363 Other specified congenital anomalies of eyelid +74364 Specified congenital anomalies of lacrimal gland +74365 Specified congenital anomalies of lacrimal passages +74366 Specified congenital anomalies of orbit +74369 Other congenital anomalies of eyelids, lacrimal system, and orbit +7438 Other specified anomalies of eye +7439 Unspecified anomaly of eye +74400 Unspecified anomaly of ear with impairment of hearing +74401 Absence of external ear +74402 Other anomalies of external ear with impairment of hearing +74403 Anomaly of middle ear, except ossicles +74404 Anomalies of ear ossicles +74405 Anomalies of inner ear +74409 Other anomalies of ear causing impairment of hearing +7441 Accessory auricle +74421 Absence of ear lobe, congenital +74422 Macrotia +74423 Microtia +74424 Specified anomalies of Eustachian tube +74429 Other specified anomalies of ear +7443 Unspecified anomaly of ear +74441 Branchial cleft sinus or fistula +74442 Branchial cleft cyst +74443 Cervical auricle +74446 Preauricular sinus or fistula +74447 Preauricular cyst +74449 Other branchial cleft cyst or fistula; preauricular sinus +7445 Webbing of neck +74481 Macrocheilia +74482 Microcheilia +74483 Macrostomia +74484 Microstomia +74489 Other specified congenital anomalies of face and neck +7449 Unspecified congenital anomalies of face and neck +7450 Common truncus +74510 Complete transposition of great vessels +74511 Double outlet right ventricle +74512 Corrected transposition of great vessels +74519 Other transposition of great vessels +7452 Tetralogy of fallot +7453 Common ventricle +7454 Ventricular septal defect +7455 Ostium secundum type atrial septal defect +74560 Endocardial cushion defect, unspecified type +74561 Ostium primum defect +74569 Other endocardial cushion defects +7457 Cor biloculare +7458 Other bulbus cordis anomalies and anomalies of cardiac septal closure +7459 Unspecified defect of septal closure +74600 Congenital pulmonary valve anomaly, unspecified +74601 Atresia of pulmonary valve, congenital +74602 Stenosis of pulmonary valve, congenital +74609 Other congenital anomalies of pulmonary valve +7461 Tricuspid atresia and stenosis, congenital +7462 Ebstein's anomaly +7463 Congenital stenosis of aortic valve +7464 Congenital insufficiency of aortic valve +7465 Congenital mitral stenosis +7466 Congenital mitral insufficiency +7467 Hypoplastic left heart syndrome +74681 Subaortic stenosis +74682 Cor triatriatum +74683 Infundibular pulmonic stenosis +74684 Obstructive anomalies of heart, not elsewhere classified +74685 Coronary artery anomaly +74686 Congenital heart block +74687 Malposition of heart and cardiac apex +74689 Other specified congenital anomalies of heart +7469 Unspecified congenital anomaly of heart +7470 Patent ductus arteriosus +74710 Coarctation of aorta (preductal) (postductal) +74711 Interruption of aortic arch +74720 Anomaly of aorta, unspecified +74721 Anomalies of aortic arch +74722 Atresia and stenosis of aorta +74729 Other anomalies of aorta +74731 Pulmonary artery coarctation and atresia +74732 Pulmonary arteriovenous malformation +74739 Other anomalies of pulmonary artery and pulmonary circulation +74740 Anomaly of great veins, unspecified +74741 Total anomalous pulmonary venous connection +74742 Partial anomalous pulmonary venous connection +74749 Other anomalies of great veins +7475 Absence or hypoplasia of umbilical artery +74760 Anomaly of the peripheral vascular system, unspecified site +74761 Gastrointestinal vessel anomaly +74762 Renal vessel anomaly +74763 Upper limb vessel anomaly +74764 Lower limb vessel anomaly +74769 Anomalies of other specified sites of peripheral vascular system +74781 Anomalies of cerebrovascular system +74782 Spinal vessel anomaly +74783 Persistent fetal circulation +74789 Other specified anomalies of circulatory system +7479 Unspecified anomaly of circulatory system +7480 Choanal atresia +7481 Other anomalies of nose +7482 Web of larynx +7483 Other anomalies of larynx, trachea, and bronchus +7484 Congenital cystic lung +7485 Agenesis, hypoplasia, and dysplasia of lung +74860 Anomaly of lung, unspecified +74861 Congenital bronchiectasis +74869 Other congenital anomalies of lung +7488 Other specified anomalies of respiratory system +7489 Unspecified anomaly of respiratory system +74900 Cleft palate, unspecified +74901 Cleft palate, unilateral, complete +74902 Cleft palate, unilateral, incomplete +74903 Cleft palate, bilateral, complete +74904 Cleft palate, bilateral, incomplete +74910 Cleft lip, unspecified +74911 Cleft lip, unilateral, complete +74912 Cleft lip, unilateral, incomplete +74913 Cleft lip, bilateral, complete +74914 Cleft lip, bilateral, incomplete +74920 Cleft palate with cleft lip, unspecified +74921 Cleft palate with cleft lip, unilateral, complete +74922 Cleft palate with cleft lip, unilateral, incomplete +74923 Cleft palate with cleft lip, bilateral, complete +74924 Cleft palate with cleft lip, bilateral, incomplete +74925 Other combinations of cleft palate with cleft lip +7500 Tongue tie +75010 Congenital anomaly of tongue, unspecified +75011 Aglossia +75012 Congenital adhesions of tongue +75013 Fissure of tongue +75015 Macroglossia +75016 Microglossia +75019 Other congenital anomalies of tongue +75021 Absence of salivary gland +75022 Accessory salivary gland +75023 Atresia, salivary duct +75024 Congenital fistula of salivary gland +75025 Congenital fistula of lip +75026 Other specified anomalies of mouth +75027 Diverticulum of pharynx +75029 Other specified anomalies of pharynx +7503 Tracheoesophageal fistula, esophageal atresia and stenosis +7504 Other specified anomalies of esophagus +7505 Congenital hypertrophic pyloric stenosis +7506 Congenital hiatus hernia +7507 Other specified anomalies of stomach +7508 Other specified anomalies of upper alimentary tract +7509 Unspecified anomaly of upper alimentary tract +7510 Meckel's diverticulum +7511 Atresia and stenosis of small intestine +7512 Atresia and stenosis of large intestine, rectum, and anal canal +7513 Hirschsprung's disease and other congenital functional disorders of colon +7514 Anomalies of intestinal fixation +7515 Other anomalies of intestine +75160 Unspecified anomaly of gallbladder, bile ducts, and liver +75161 Biliary atresia +75162 Congenital cystic disease of liver +75169 Other anomalies of gallbladder, bile ducts, and liver +7517 Anomalies of pancreas +7518 Other specified anomalies of digestive system +7519 Unspecified anomaly of digestive system +7520 Anomalies of ovaries +75210 Unspecified anomaly of fallopian tubes and broad ligaments +75211 Embryonic cyst of fallopian tubes and broad ligaments +75219 Other anomalies of fallopian tubes and broad ligaments +7522 Doubling of uterus +75231 Agenesis of uterus +75232 Hypoplasia of uterus +75233 Unicornuate uterus +75234 Bicornuate uterus +75235 Septate uterus +75236 Arcuate uterus +75239 Other anomalies of uterus +75240 Unspecified anomaly of cervix, vagina, and external female genitalia +75241 Embryonic cyst of cervix, vagina, and external female genitalia +75242 Imperforate hymen +75243 Cervical agenesis +75244 Cervical duplication +75245 Vaginal agenesis +75246 Transverse vaginal septum +75247 Longitudinal vaginal septum +75249 Other anomalies of cervix, vagina, and external female genitalia +75251 Undescended testis +75252 Retractile testis +75261 Hypospadias +75262 Epispadias +75263 Congenital chordee +75264 Micropenis +75265 Hidden penis +75269 Other penile anomalies +7527 Indeterminate sex and pseudohermaphroditism +75281 Scrotal transposition +75289 Other specified anomalies of genital organs +7529 Unspecified anomaly of genital organs +7530 Renal agenesis and dysgenesis +75310 Cystic kidney disease, unspecified +75311 Congenital single renal cyst +75312 Polycystic kidney, unspecified type +75313 Polycystic kidney, autosomal dominant +75314 Polycystic kidney, autosomal recessive +75315 Renal dysplasia +75316 Medullary cystic kidney +75317 Medullary sponge kidney +75319 Other specified cystic kidney disease +75320 Unspecified obstructive defect of renal pelvis and ureter +75321 Congenital obstruction of ureteropelvic junction +75322 Congenital obstruction of ureterovesical junction +75323 Congenital ureterocele +75329 Other obstructive defects of renal pelvis and ureter +7533 Other specified anomalies of kidney +7534 Other specified anomalies of ureter +7535 Exstrophy of urinary bladder +7536 Atresia and stenosis of urethra and bladder neck +7537 Anomalies of urachus +7538 Other specified anomalies of bladder and urethra +7539 Unspecified anomaly of urinary system +7540 Congenital musculoskeletal deformities of skull, face, and jaw +7541 Congenital musculoskeletal deformities of sternocleidomastoid muscle +7542 Congenital musculoskeletal deformities of spine +75430 Congenital dislocation of hip, unilateral +75431 Congenital dislocation of hip, bilateral +75432 Congenital subluxation of hip, unilateral +75433 Congenital subluxation of hip, bilateral +75435 Congenital dislocation of one hip with subluxation of other hip +75440 Genu recurvatum +75441 Congenital dislocation of knee (with genu recurvatum) +75442 Congenital bowing of femur +75443 Congenital bowing of tibia and fibula +75444 Congenital bowing of unspecified long bones of leg +75450 Talipes varus +75451 Talipes equinovarus +75452 Metatarsus primus varus +75453 Metatarsus varus +75459 Other varus deformities of feet +75460 Talipes valgus +75461 Congenital pes planus +75462 Talipes calcaneovalgus +75469 Other valgus deformities of feet +75470 Talipes, unspecified +75471 Talipes cavus +75479 Other deformities of feet +75481 Pectus excavatum +75482 Pectus carinatum +75489 Other specified nonteratogenic anomalies +75500 Polydactyly, unspecified digits +75501 Polydactyly of fingers +75502 Polydactyly of toes +75510 Syndactyly of multiple and unspecified sites +75511 Syndactyly of fingers without fusion of bone +75512 Syndactyly of fingers with fusion of bone +75513 Syndactyly of toes without fusion of bone +75514 Syndactyly of toes with fusion of bone +75520 Unspecified reduction deformity of upper limb +75521 Transverse deficiency of upper limb +75522 Longitudinal deficiency of upper limb, not elsewhere classified +75523 Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete) +75524 Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete) +75525 Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete) +75526 Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete) +75527 Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete) +75528 Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency) +75529 Longitudinal deficiency, phalanges, complete or partial +75530 Unspecified reduction deformity of lower limb +75531 Transverse deficiency of lower limb +75532 Longitudinal deficiency of lower limb, not elsewhere classified +75533 Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete) +75534 Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete) +75535 Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete) +75536 Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete) +75537 Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete) +75538 Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency) +75539 Longitudinal deficiency, phalanges, complete or partial +7554 Reduction deformities, unspecified limb +75550 Unspecified anomaly of upper limb +75551 Congenital deformity of clavicle +75552 Congenital elevation of scapula +75553 Radioulnar synostosis +75554 Madelung's deformity +75555 Acrocephalosyndactyly +75556 Accessory carpal bones +75557 Macrodactylia (fingers) +75558 Cleft hand, congenital +75559 Other anomalies of upper limb, including shoulder girdle +75560 Unspecified anomaly of lower limb +75561 Coxa valga, congenital +75562 Coxa vara, congenital +75563 Other congenital deformity of hip (joint) +75564 Congenital deformity of knee (joint) +75565 Macrodactylia of toes +75566 Other anomalies of toes +75567 Anomalies of foot, not elsewhere classified +75569 Other anomalies of lower limb, including pelvic girdle +7558 Other specified anomalies of unspecified limb +7559 Unspecified anomaly of unspecified limb +7560 Anomalies of skull and face bones +75610 Anomaly of spine, unspecified +75611 Spondylolysis, lumbosacral region +75612 Spondylolisthesis +75613 Absence of vertebra, congenital +75614 Hemivertebra +75615 Fusion of spine (vertebra), congenital +75616 Klippel-Feil syndrome +75617 Spina bifida occulta +75619 Other anomalies of spine +7562 Cervical rib +7563 Other anomalies of ribs and sternum +7564 Chondrodystrophy +75650 Congenital osteodystrophy, unspecified +75651 Osteogenesis imperfecta +75652 Osteopetrosis +75653 Osteopoikilosis +75654 Polyostotic fibrous dysplasia of bone +75655 Chondroectodermal dysplasia +75656 Multiple epiphyseal dysplasia +75659 Other osteodystrophies +7566 Anomalies of diaphragm +75670 Anomaly of abdominal wall, unspecified +75671 Prune belly syndrome +75672 Omphalocele +75673 Gastroschisis +75679 Other congenital anomalies of abdominal wall +75681 Absence of muscle and tendon +75682 Accessory muscle +75683 Ehlers-Danlos syndrome +75689 Other specified anomalies of muscle, tendon, fascia, and connective tissue +7569 Other and unspecified anomalies of musculoskeletal system +7570 Hereditary edema of legs +7571 Ichthyosis congenita +7572 Dermatoglyphic anomalies +75731 Congenital ectodermal dysplasia +75732 Vascular hamartomas +75733 Congenital pigmentary anomalies of skin +75739 Other specified anomalies of skin +7574 Specified anomalies of hair +7575 Specified anomalies of nails +7576 Specified congenital anomalies of breast +7578 Other specified anomalies of the integument +7579 Unspecified congenital anomaly of the integument +7580 Down's syndrome +7581 Patau's syndrome +7582 Edwards' syndrome +75831 Cri-du-chat syndrome +75832 Velo-cardio-facial syndrome +75833 Other microdeletions +75839 Other autosomal deletions +7584 Balanced autosomal translocation in normal individual +7585 Other conditions due to autosomal anomalies +7586 Gonadal dysgenesis +7587 Klinefelter's syndrome +75881 Other conditions due to sex chromosome anomalies +75889 Other conditions due to chromosome anomalies +7589 Conditions due to anomaly of unspecified chromosome +7590 Anomalies of spleen +7591 Anomalies of adrenal gland +7592 Anomalies of other endocrine glands +7593 Situs inversus +7594 Conjoined twins +7595 Tuberous sclerosis +7596 Other hamartoses, not elsewhere classified +7597 Multiple congenital anomalies, so described +75981 Prader-Willi syndrome +75982 Marfan syndrome +75983 Fragile X syndrome +75989 Other specified congenital anomalies +7599 Congenital anomaly, unspecified +7600 Maternal hypertensive disorders affecting fetus or newborn +7601 Maternal renal and urinary tract diseases affecting fetus or newborn +7602 Maternal infections affecting fetus or newborn +7603 Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn +7604 Maternal nutritional disorders affecting fetus or newborn +7605 Maternal injury affecting fetus or newborn +76061 Newborn affected by amniocentesis +76062 Newborn affected by other in utero procedure +76063 Newborn affected by other surgical operations on mother during pregnancy +76064 Newborn affected by previous surgical procedure on mother not associated with pregnancy +76070 Unspecified noxious substance affecting fetus or newborn via placenta or breast milk +76071 Alcohol affecting fetus or newborn via placenta or breast milk +76072 Narcotics affecting fetus or newborn via placenta or breast milk +76073 Hallucinogenic agents affecting fetus or newborn via placenta or breast milk +76074 Anti-infectives affecting fetus or newborn via placenta or breast milk +76075 Cocaine affecting fetus or newborn via placenta or breast milk +76076 Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk +76077 Anticonvulsants affecting fetus or newborn via placenta or breast milk +76078 Antimetabolic agents affecting fetus or newborn via placenta or breast milk +76079 Other noxious influences affecting fetus or newborn via placenta or breast milk +7608 Other specified maternal conditions affecting fetus or newborn +7609 Unspecified maternal condition affecting fetus or newborn +7610 Incompetent cervix affecting fetus or newborn +7611 Premature rupture of membranes affecting fetus or newborn +7612 Oligohydramnios affecting fetus or newborn +7613 Polyhydramnios affecting fetus or newborn +7614 Ectopic pregnancy affecting fetus or newborn +7615 Multiple pregnancy affecting fetus or newborn +7616 Maternal death affecting fetus or newborn +7617 Malpresentation before labor affecting fetus or newborn +7618 Other specified maternal complications of pregnancy affecting fetus or newborn +7619 Unspecified maternal complication of pregnancy affecting fetus or newborn +7620 Placenta previa affecting fetus or newborn +7621 Other forms of placental separation and hemorrhage affecting fetus or newborn +7622 Other and unspecified morphological and functional abnormalities of placenta affecting fetus or newborn +7623 Placental transfusion syndromes affecting fetus or newborn +7624 Prolapsed umbilical cord affecting fetus or newborn +7625 Other compression of umbilical cord affecting fetus or newborn +7626 Other and unspecified conditions of umbilical cord affecting fetus or newborn +7627 Chorioamnionitis affecting fetus or newborn +7628 Other specified abnormalities of chorion and amnion affecting fetus or newborn +7629 Unspecified abnormality of chorion and amnion affecting fetus or newborn +7630 Breech delivery and extraction affecting fetus or newborn +7631 Other malpresentation, malposition, and disproportion during labor and delivery affecting fetus or newborn +7632 Forceps delivery affecting fetus or newborn +7633 Delivery by vacuum extractor affecting fetus or newborn +7634 Cesarean delivery affecting fetus or newborn +7635 Maternal anesthesia and analgesia affecting fetus or newborn +7636 Precipitate delivery affecting fetus or newborn +7637 Abnormal uterine contractions affecting fetus or newborn +76381 Abnormality in fetal heart rate or rhythm before the onset of labor +76382 Abnormality in fetal heart rate or rhythm during labor +76383 Abnormality in fetal heart rate or rhythm, unspecified as to time of onset +76384 Meconium passage during delivery +76389 Other specified complications of labor and delivery affecting fetus or newborn +7639 Unspecified complication of labor and delivery affecting fetus or newborn +76400 "Light-for-dates" without mention of fetal malnutrition, unspecified [weight] +76401 "Light-for-dates" without mention of fetal malnutrition, less than 500 grams +76402 "Light-for-dates" without mention of fetal malnutrition, 500-749 grams +76403 "Light-for-dates" without mention of fetal malnutrition, 750-999 grams +76404 "Light-for-dates" without mention of fetal malnutrition, 1,000- 1,249 grams +76405 "Light-for-dates"without mention of fetal malnutrition, 1,250- 1,499 grams +76406 "Light-for-dates" without mention of fetal malnutrition, 1,500- 1,749 grams +76407 "Light-for-dates" without mention of fetal malnutrition, 1,750- 1,999 grams +76408 "Light-for-dates" without mention of fetal malnutrition, 2,000- 2,499 grams +76409 "Light-for-dates" without mention of fetal malnutrition, 2,500 grams and over +76410 "Light-for-dates" with signs of fetal malnutrition, unspecified [weight] +76411 "Light-for-dates" with signs of fetal malnutrition, less than 500 grams +76412 "Light-for-dates"with signs of fetal malnutrition, 500-749 grams +76413 "Light-for-dates" with signs of fetal malnutrition, 750-999 grams +76414 "Light-for-dates" with signs of fetal malnutrition, 1,000-1,249 grams +76415 "Light-for-dates" with signs of fetal malnutrition, 1,250-1,499 grams +76416 "Light-for-dates" with signs of fetal malnutrition, 1,500-1,749 grams +76417 "Light-for-dates" with signs of fetal malnutrition, 1,750-1,999 grams +76418 "Light-for-dates"with signs of fetal malnutrition, 2,000-2,499 grams +76419 "Light-for-dates"with signs of fetal malnutrition, 2,500 grams and over +76420 Fetal malnutrition without mention of "light-for-dates", unspecified [weight] +76421 Fetal malnutrition without mention of "light-for-dates", less than 500 grams +76422 Fetal malnutrition without mention of "light-for-dates", 500-749 grams +76423 Fetal malnutrition without mention of "light-for-dates", 750-999 grams +76424 Fetal malnutrition without mention of "light-for-dates", 1,000-1,249 grams +76425 Fetal malnutrition without mention of "light-for-dates", 1,250-1,499 grams +76426 Fetal malnutrition without mention of "light-for-dates", 1,500-1,749 grams +76427 Fetal malnutrition without mention of "light-for-dates", 1,750-1,999 grams +76428 Fetal malnutrition without mention of "light-for-dates", 2,000-2,499 grams +76429 Fetal malnutrition without mention of "light-for-dates", 2,500 grams and over +76490 Fetal growth retardation, unspecified, unspecified [weight] +76491 Fetal growth retardation, unspecified, less than 500 grams +76492 Fetal growth retardation, unspecified, 500-749 grams +76493 Fetal growth retardation, unspecified, 750-999 grams +76494 Fetal growth retardation, unspecified, 1,000-1,249 grams +76495 Fetal growth retardation, unspecified, 1,250-1,499 grams +76496 Fetal growth retardation, unspecified, 1,500-1,749 grams +76497 Fetal growth retardation, unspecified, 1,750-1,999 grams +76498 Fetal growth retardation, unspecified, 2,000-2,499 grams +76499 Fetal growth retardation, unspecified, 2,500 grams and over +76500 Extreme immaturity, unspecified [weight] +76501 Extreme immaturity, less than 500 grams +76502 Extreme immaturity, 500-749 grams +76503 Extreme immaturity, 750-999 grams +76504 Extreme immaturity, 1,000-1,249 grams +76505 Extreme immaturity, 1,250-1,499 grams +76506 Extreme immaturity, 1,500-1,749 grams +76507 Extreme immaturity, 1,750-1,999 grams +76508 Extreme immaturity, 2,000-2,499 grams +76509 Extreme immaturity, 2,500 grams and over +76510 Other preterm infants, unspecified [weight] +76511 Other preterm infants, less than 500 grams +76512 Other preterm infants, 500-749 grams +76513 Other preterm infants, 750-999 grams +76514 Other preterm infants, 1,000-1,249 grams +76515 Other preterm infants, 1,250-1,499 grams +76516 Other preterm infants, 1,500-1,749 grams +76517 Other preterm infants, 1,750-1,999 grams +76518 Other preterm infants, 2,000-2,499 grams +76519 Other preterm infants, 2,500 grams and over +76520 Unspecified weeks of gestation +76521 Less than 24 completed weeks of gestation +76522 24 completed weeks of gestation +76523 25-26 completed weeks of gestation +76524 27-28 completed weeks of gestation +76525 29-30 completed weeks of gestation +76526 31-32 completed weeks of gestation +76527 33-34 completed weeks of gestation +76528 35-36 completed weeks of gestation +76529 37 or more completed weeks of gestation +7660 Exceptionally large baby +7661 Other "heavy-for-dates" infants +76621 Post-term infant +76622 Prolonged gestation of infant +7670 Subdural and cerebral hemorrhage +76711 Epicranial subaponeurotic hemorrhage (massive) +76719 Other injuries to scalp +7672 Fracture of clavicle due to birth trauma +7673 Other injuries to skeleton due to birth trauma +7674 Injury to spine and spinal cord due to birth trauma +7675 Facial nerve injury due to birth trauma +7676 Injury to brachial plexus due to birth trauma +7677 Other cranial and peripheral nerve injuries due to birth trauma +7678 Other specified birth trauma +7679 Birth trauma, unspecified +7680 Fetal death from asphyxia or anoxia before onset of labor or at unspecified time +7681 Fetal death from asphyxia or anoxia during labor +7682 Fetal distress before onset of labor, in liveborn infant +7683 Fetal distress first noted during labor and delivery, in liveborn infant +7684 Fetal distress, unspecified as to time of onset, in liveborn infant +7685 Severe birth asphyxia +7686 Mild or moderate birth asphyxia +76870 Hypoxic-ischemic encephalopathy, unspecified +76871 Mild hypoxic-ischemic encephalopathy +76872 Moderate hypoxic-ischemic encephalopathy +76873 Severe hypoxic-ischemic encephalopathy +7689 Unspecified severity of birth asphyxia in liveborn infant +769 Respiratory distress syndrome in newborn +7700 Congenital pneumonia +77010 Fetal and newborn aspiration, unspecified +77011 Meconium aspiration without respiratory symptoms +77012 Meconium aspiration with respiratory symptoms +77013 Aspiration of clear amniotic fluid without respiratory symptoms +77014 Aspiration of clear amniotic fluid with respiratory symptoms +77015 Aspiration of blood without respiratory symptoms +77016 Aspiration of blood with respiratory symptoms +77017 Other fetal and newborn aspiration without respiratory symptoms +77018 Other fetal and newborn aspiration with respiratory symptoms +7702 Interstitial emphysema and related conditions +7703 Pulmonary hemorrhage +7704 Primary atelectasis +7705 Other and unspecified atelectasis +7706 Transitory tachypnea of newborn +7707 Chronic respiratory disease arising in the perinatal period +77081 Primary apnea of newborn +77082 Other apnea of newborn +77083 Cyanotic attacks of newborn +77084 Respiratory failure of newborn +77085 Aspiration of postnatal stomach contents without respiratory symptoms +77086 Aspiration of postnatal stomach contents with respiratory symptoms +77087 Respiratory arrest of newborn +77088 Hypoxemia of newborn +77089 Other respiratory problems after birth +7709 Unspecified respiratory condition of fetus and newborn +7710 Congenital rubella +7711 Congenital cytomegalovirus infection +7712 Other congenital infections specific to the perinatal period +7713 Tetanus neonatorum +7714 Omphalitis of the newborn +7715 Neonatal infective mastitis +7716 Neonatal conjunctivitis and dacryocystitis +7717 Neonatal Candida infection +77181 Septicemia [sepsis] of newborn +77182 Urinary tract infection of newborn +77183 Bacteremia of newborn +77189 Other infections specific to the perinatal period +7720 Fetal blood loss +77210 Intraventricular hemorrhage unspecified grade +77211 Intraventricular hemorrhage, grade I +77212 Intraventricular hemorrhage, grade II +77213 Intraventricular hemorrhage, grade III +77214 Intraventricular hemorrhage, grade IV +7722 Subarachnoid hemorrhage of fetus or newborn +7723 Umbilical hemorrhage after birth +7724 Gastrointestinal hemorrhage of fetus or newborn +7725 Adrenal hemorrhage of fetus or newborn +7726 Cutaneous hemorrhage of fetus or newborn +7728 Other specified hemorrhage of fetus or newborn +7729 Unspecified hemorrhage of newborn +7730 Hemolytic disease of fetus or newborn due to Rh isoimmunization +7731 Hemolytic disease of fetus or newborn due to ABO isoimmunization +7732 Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization +7733 Hydrops fetalis due to isoimmunization +7734 Kernicterus of fetus or newborn due to isoimmunization +7735 Late anemia of fetus or newborn due to isoimmunization +7740 Perinatal jaundice from hereditary hemolytic anemias +7741 Perinatal jaundice from other excessive hemolysis +7742 Neonatal jaundice associated with preterm delivery +77430 Neonatal jaundice due to delayed conjugation, cause unspecified +77431 Neonatal jaundice due to delayed conjugation in diseases classified elsewhere +77439 Other neonatal jaundice due to delayed conjugation from other causes +7744 Perinatal jaundice due to hepatocellular damage +7745 Perinatal jaundice from other causes +7746 Unspecified fetal and neonatal jaundice +7747 Kernicterus of fetus or newborn not due to isoimmunization +7750 Syndrome of "infant of a diabetic mother" +7751 Neonatal diabetes mellitus +7752 Neonatal myasthenia gravis +7753 Neonatal thyrotoxicosis +7754 Hypocalcemia and hypomagnesemia of newborn +7755 Other transitory neonatal electrolyte disturbances +7756 Neonatal hypoglycemia +7757 Late metabolic acidosis of newborn +77581 Other acidosis of newborn +77589 Other neonatal endocrine and metabolic disturbances +7759 Unspecified endocrine and metabolic disturbances specific to the fetus and newborn +7760 Hemorrhagic disease of newborn +7761 Transient neonatal thrombocytopenia +7762 Disseminated intravascular coagulation in newborn +7763 Other transient neonatal disorders of coagulation +7764 Polycythemia neonatorum +7765 Congenital anemia +7766 Anemia of prematurity +7767 Transient neonatal neutropenia +7768 Other specified transient hematological disorders of fetus or newborn +7769 Unspecified hematological disorder specific to newborn +7771 Meconium obstruction in fetus or newborn +7772 Intestinal obstruction in newborn due to inspissated milk +7773 Hematemesis and melena of newborn due to swallowed maternal blood +7774 Transitory ileus of newborn +77750 Necrotizing enterocolitis in newborn, unspecified +77751 Stage I necrotizing enterocolitis in newborn +77752 Stage II necrotizing enterocolitis in newborn +77753 Stage III necrotizing enterocolitis in newborn +7776 Perinatal intestinal perforation +7778 Other specified perinatal disorders of digestive system +7779 Unspecified perinatal disorder of digestive system +7780 Hydrops fetalis not due to isoimmunization +7781 Sclerema neonatorum +7782 Cold injury syndrome of newborn +7783 Other hypothermia of newborn +7784 Other disturbances of temperature regulation of newborn +7785 Other and unspecified edema of newborn +7786 Congenital hydrocele +7787 Breast engorgement in newborn +7788 Other specified conditions involving the integument of fetus and newborn +7789 Unspecified condition involving the integument and temperature regulation of fetus and newborn +7790 Convulsions in newborn +7791 Other and unspecified cerebral irritability in newborn +7792 Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn +77931 Feeding problems in newborn +77932 Bilious vomiting in newborn +77933 Other vomiting in newborn +77934 Failure to thrive in newborn +7794 Drug reactions and intoxications specific to newborn +7795 Drug withdrawal syndrome in newborn +7796 Termination of pregnancy (fetus) +7797 Periventricular leukomalacia +77981 Neonatal bradycardia +77982 Neonatal tachycardia +77983 Delayed separation of umbilical cord +77984 Meconium staining +77985 Cardiac arrest of newborn +77989 Other specified conditions originating in the perinatal period +7799 Unspecified condition originating in the perinatal period +78001 Coma +78002 Transient alteration of awareness +78003 Persistent vegetative state +78009 Other alteration of consciousness +7801 Hallucinations +7802 Syncope and collapse +78031 Febrile convulsions (simple), unspecified +78032 Complex febrile convulsions +78033 Post traumatic seizures +78039 Other convulsions +7804 Dizziness and giddiness +78050 Sleep disturbance, unspecified +78051 Insomnia with sleep apnea, unspecified +78052 Insomnia, unspecified +78053 Hypersomnia with sleep apnea, unspecified +78054 Hypersomnia, unspecified +78055 Disruption of 24 hour sleep wake cycle, unspecified +78056 Dysfunctions associated with sleep stages or arousal from sleep +78057 Unspecified sleep apnea +78058 Sleep related movement disorder, unspecified +78059 Other sleep disturbances +78060 Fever, unspecified +78061 Fever presenting with conditions classified elsewhere +78062 Postprocedural fever +78063 Postvaccination fever +78064 Chills (without fever) +78065 Hypothermia not associated with low environmental temperature +78066 Febrile nonhemolytic transfusion reaction +78071 Chronic fatigue syndrome +78072 Functional quadriplegia +78079 Other malaise and fatigue +7808 Generalized hyperhidrosis +78091 Fussy infant (baby) +78092 Excessive crying of infant (baby) +78093 Memory loss +78094 Early satiety +78095 Excessive crying of child, adolescent, or adult +78096 Generalized pain +78097 Altered mental status +78099 Other general symptoms +7810 Abnormal involuntary movements +7811 Disturbances of sensation of smell and taste +7812 Abnormality of gait +7813 Lack of coordination +7814 Transient paralysis of limb +7815 Clubbing of fingers +7816 Meningismus +7817 Tetany +7818 Neurologic neglect syndrome +78191 Loss of height +78192 Abnormal posture +78193 Ocular torticollis +78194 Facial weakness +78199 Other symptoms involving nervous and musculoskeletal systems +7820 Disturbance of skin sensation +7821 Rash and other nonspecific skin eruption +7822 Localized superficial swelling, mass, or lump +7823 Edema +7824 Jaundice, unspecified, not of newborn +7825 Cyanosis +78261 Pallor +78262 Flushing +7827 Spontaneous ecchymoses +7828 Changes in skin texture +7829 Other symptoms involving skin and integumentary tissues +7830 Anorexia +7831 Abnormal weight gain +78321 Loss of weight +78322 Underweight +7833 Feeding difficulties and mismanagement +78340 Lack of normal physiological development, unspecified +78341 Failure to thrive +78342 Delayed milestones +78343 Short stature +7835 Polydipsia +7836 Polyphagia +7837 Adult failure to thrive +7839 Other symptoms concerning nutrition, metabolism, and development +7840 Headache +7841 Throat pain +7842 Swelling, mass, or lump in head and neck +7843 Aphasia +78440 Voice and resonance disorder, unspecified +78441 Aphonia +78442 Dysphonia +78443 Hypernasality +78444 Hyponasality +78449 Other voice and resonance disorders +78451 Dysarthria +78452 Fluency disorder in conditions classified elsewhere +78459 Other speech disturbance +78460 Symbolic dysfunction, unspecified +78461 Alexia and dyslexia +78469 Other symbolic dysfunction +7847 Epistaxis +7848 Hemorrhage from throat +78491 Postnasal drip +78492 Jaw pain +78499 Other symptoms involving head and neck +7850 Tachycardia, unspecified +7851 Palpitations +7852 Undiagnosed cardiac murmurs +7853 Other abnormal heart sounds +7854 Gangrene +78550 Shock, unspecified +78551 Cardiogenic shock +78552 Septic shock +78559 Other shock without mention of trauma +7856 Enlargement of lymph nodes +7859 Other symptoms involving cardiovascular system +78600 Respiratory abnormality, unspecified +78601 Hyperventilation +78602 Orthopnea +78603 Apnea +78604 Cheyne-Stokes respiration +78605 Shortness of breath +78606 Tachypnea +78607 Wheezing +78609 Other respiratory abnormalities +7861 Stridor +7862 Cough +78630 Hemoptysis, unspecified +78631 Acute idiopathic pulmonary hemorrhage in infants [AIPHI] +78639 Other hemoptysis +7864 Abnormal sputum +78650 Chest pain, unspecified +78651 Precordial pain +78652 Painful respiration +78659 Other chest pain +7866 Swelling, mass, or lump in chest +7867 Abnormal chest sounds +7868 Hiccough +7869 Other symptoms involving respiratory system and chest +78701 Nausea with vomiting +78702 Nausea alone +78703 Vomiting alone +78704 Bilious emesis +7871 Heartburn +78720 Dysphagia, unspecified +78721 Dysphagia, oral phase +78722 Dysphagia, oropharyngeal phase +78723 Dysphagia, pharyngeal phase +78724 Dysphagia, pharyngoesophageal phase +78729 Other dysphagia +7873 Flatulence, eructation, and gas pain +7874 Visible peristalsis +7875 Abnormal bowel sounds +78760 Full incontinence of feces +78761 Incomplete defecation +78762 Fecal smearing +78763 Fecal urgency +7877 Abnormal feces +78791 Diarrhea +78799 Other symptoms involving digestive system +7880 Renal colic +7881 Dysuria +78820 Retention of urine, unspecified +78821 Incomplete bladder emptying +78829 Other specified retention of urine +78830 Urinary incontinence, unspecified +78831 Urge incontinence +78832 Stress incontinence, male +78833 Mixed incontinence (male) (female) +78834 Incontinence without sensory awareness +78835 Post-void dribbling +78836 Nocturnal enuresis +78837 Continuous leakage +78838 Overflow incontinence +78839 Other urinary incontinence +78841 Urinary frequency +78842 Polyuria +78843 Nocturia +7885 Oliguria and anuria +78861 Splitting of urinary stream +78862 Slowing of urinary stream +78863 Urgency of urination +78864 Urinary hesitancy +78865 Straining on urination +78869 Other abnormality of urination +7887 Urethral discharge +7888 Extravasation of urine +78891 Functional urinary incontinence +78899 Other symptoms involving urinary system +78900 Abdominal pain, unspecified site +78901 Abdominal pain, right upper quadrant +78902 Abdominal pain, left upper quadrant +78903 Abdominal pain, right lower quadrant +78904 Abdominal pain, left lower quadrant +78905 Abdominal pain, periumbilic +78906 Abdominal pain, epigastric +78907 Abdominal pain, generalized +78909 Abdominal pain, other specified site +7891 Hepatomegaly +7892 Splenomegaly +78930 Abdominal or pelvic swelling, mass, or lump, unspecified site +78931 Abdominal or pelvic swelling, mass, or lump, right upper quadrant +78932 Abdominal or pelvic swelling, mass, or lump, left upper quadrant +78933 Abdominal or pelvic swelling, mass, or lump, right lower quadrant +78934 Abdominal or pelvic swelling, mass, or lump, left lower quadrant +78935 Abdominal or pelvic swelling, mass, or lump, periumbilic +78936 Abdominal or pelvic swelling, mass, or lump, epigastric +78937 Abdominal or pelvic swelling, mass, or lump, generalized +78939 Abdominal or pelvic swelling, mass, or lump, other specified site +78940 Abdominal rigidity, unspecified site +78941 Abdominal rigidity, right upper quadrant +78942 Abdominal rigidity, left upper quadrant +78943 Abdominal rigidity, right lower quadrant +78944 Abdominal rigidity, left lower quadrant +78945 Abdominal rigidity, periumbilic +78946 Abdominal rigidity, epigastric +78947 Abdominal rigidity, generalized +78949 Abdominal rigidity, other specified site +78951 Malignant ascites +78959 Other ascites +78960 Abdominal tenderness, unspecified site +78961 Abdominal tenderness, right upper quadrant +78962 Abdominal tenderness, left upper quadrant +78963 Abdominal tenderness, right lower quadrant +78964 Abdominal tenderness, left lower quadrant +78965 Abdominal tenderness, periumbilic +78966 Abdominal tenderness, epigastric +78967 Abdominal tenderness, generalized +78969 Abdominal tenderness, other specified site +7897 Colic +7899 Other symptoms involving abdomen and pelvis +79001 Precipitous drop in hematocrit +79009 Other abnormality of red blood cells +7901 Elevated sedimentation rate +79021 Impaired fasting glucose +79022 Impaired glucose tolerance test (oral) +79029 Other abnormal glucose +7903 Excessive blood level of alcohol +7904 Nonspecific elevation of levels of transaminase or lactic acid dehydrogenase [LDH] +7905 Other nonspecific abnormal serum enzyme levels +7906 Other abnormal blood chemistry +7907 Bacteremia +7908 Viremia, unspecified +79091 Abnormal arterial blood gases +79092 Abnormal coagulation profile +79093 Elevated prostate specific antigen [PSA] +79094 Euthyroid sick syndrome +79095 Elevated C-reactive protein (CRP) +79099 Other nonspecific findings on examination of blood +7910 Proteinuria +7911 Chyluria +7912 Hemoglobinuria +7913 Myoglobinuria +7914 Biliuria +7915 Glycosuria +7916 Acetonuria +7917 Other cells and casts in urine +7919 Other nonspecific findings on examination of urine +7920 Nonspecific abnormal findings in cerebrospinal fluid +7921 Nonspecific abnormal findings in stool contents +7922 Nonspecific abnormal findings in semen +7923 Nonspecific abnormal findings in amniotic fluid +7924 Nonspecific abnormal findings in saliva +7925 Cloudy (hemodialysis) (peritoneal) dialysis effluent +7929 Other nonspecific abnormal findings in body substances +7930 Nonspecific (abnormal) findings on radiological and other examination of skull and head +79311 Solitary pulmonary nodule +79319 Other nonspecific abnormal finding of lung field +7932 Nonspecific (abnormal) findings on radiological and other examination of other intrathoracic organs +7933 Nonspecific (abnormal) findings on radiological and other examination of biliary tract +7934 Nonspecific (abnormal) findings on radiological and other examination of gastrointestinal tract +7935 Nonspecific (abnormal) findings on radiological and other examination of genitourinary organs +7936 Nonspecific (abnormal) findings on radiological and other examination of abdominal area, including retroperitoneum +7937 Nonspecific (abnormal) findings on radiological and other examination of musculoskeletal system +79380 Abnormal mammogram, unspecified +79381 Mammographic microcalcification +79382 Inconclusive mammogram +79389 Other (abnormal) findings on radiological examination of breast +79391 Image test inconclusive due to excess body fat +79399 Other nonspecific (abnormal) findings on radiological and other examinations of body structure +79400 Abnormal function study of brain and central nervous system, unspecified +79401 Nonspecific abnormal echoencephalogram +79402 Nonspecific abnormal electroencephalogram [EEG] +79409 Other nonspecific abnormal results of function study of brain and central nervous system +79410 Nonspecific abnormal response to nerve stimulation, unspecified +79411 Nonspecific abnormal retinal function studies +79412 Nonspecific abnormal electro-oculogram [EOG] +79413 Nonspecific abnormal visually evoked potential +79414 Nonspecific abnormal oculomotor studies +79415 Nonspecific abnormal auditory function studies +79416 Nonspecific abnormal vestibular function studies +79417 Nonspecific abnormal electromyogram [EMG] +79419 Other nonspecific abnormal results of function study of peripheral nervous system and special senses +7942 Nonspecific abnormal results of pulmonary function study +79430 Abnormal cardiovascular function study, unspecified +79431 Nonspecific abnormal electrocardiogram [ECG] [EKG] +79439 Other nonspecific abnormal results of function study of cardiovascular system +7944 Nonspecific abnormal results of function study of kidney +7945 Nonspecific abnormal results of function study of thyroid +7946 Nonspecific abnormal results of other endocrine function study +7947 Nonspecific abnormal results of function study of basal metabolism +7948 Nonspecific abnormal results of function study of liver +7949 Nonspecific abnormal results of other specified function study +79500 Abnormal glandular Papanicolaou smear of cervix +79501 Papanicolaou smear of cervix with atypical squamous cells of undetermined significance (ASC-US) +79502 Papanicolaou smear of cervix with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H) +79503 Papanicolaou smear of cervix with low grade squamous intraepithelial lesion (LGSIL) +79504 Papanicolaou smear of cervix with high grade squamous intraepithelial lesion (HGSIL) +79505 Cervical high risk human papillomavirus (HPV) DNA test positive +79506 Papanicolaou smear of cervix with cytologic evidence of malignancy +79507 Satisfactory cervical smear but lacking transformation zone +79508 Unsatisfactory cervical cytology smear +79509 Other abnormal Papanicolaou smear of cervix and cervical HPV +79510 Abnormal glandular Papanicolaou smear of vagina +79511 Papanicolaou smear of vagina with atypical squamous cells of undetermined significance (ASC-US) +79512 Papanicolaou smear of vagina with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H) +79513 Papanicolaou smear of vagina with low grade squamous intraepithelial lesion (LGSIL) +79514 Papanicolaou smear of vagina with high grade squamous intraepithelial lesion (HGSIL) +79515 Vaginal high risk human papillomavirus (HPV) DNA test positive +79516 Papanicolaou smear of vagina with cytologic evidence of malignancy +79518 Unsatisfactory vaginal cytology smear +79519 Other abnormal Papanicolaou smear of vagina and vaginal HPV +7952 Nonspecific abnormal findings on chromosomal analysis +79531 Nonspecific positive findings for anthrax +79539 Other nonspecific positive culture findings +7954 Other nonspecific abnormal histological findings +79551 Nonspecific reaction to tuberculin skin test without active tuberculosis +79552 Nonspecific reaction to cell mediated immunity measurement of gamma interferon antigen response without active tuberculosis +7956 False positive serological test for syphilis +79571 Nonspecific serologic evidence of human immunodeficiency virus [HIV] +79579 Other and unspecified nonspecific immunological findings +79581 Elevated carcinoembryonic antigen [CEA] +79582 Elevated cancer antigen 125 [CA 125] +79589 Other abnormal tumor markers +7960 Nonspecific abnormal toxicological findings +7961 Abnormal reflex +7962 Elevated blood pressure reading without diagnosis of hypertension +7963 Nonspecific low blood pressure reading +7964 Other abnormal clinical findings +7965 Abnormal finding on antenatal screening +7966 Abnormal findings on neonatal screening +79670 Abnormal glandular Papanicolaou smear of anus +79671 Papanicolaou smear of anus with atypical squamous cells of undetermined significance (ASC-US) +79672 Papanicolaou smear of anus with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H) +79673 Papanicolaou smear of anus with low grade squamous intraepithelial lesion (LGSIL) +79674 Papanicolaou smear of anus with high grade squamous intraepithelial lesion (HGSIL) +79675 Anal high risk human papillomavirus (HPV) DNA test positive +79676 Papanicolaou smear of anus with cytologic evidence of malignancy +79677 Satisfactory anal smear but lacking transformation zone +79678 Unsatisfactory anal cytology smear +79679 Other abnormal Papanicolaou smear of anus and anal HPV +7969 Other nonspecific abnormal findings +797 Senility without mention of psychosis +7980 Sudden infant death syndrome +7981 Instantaneous death +7982 Death occurring in less than 24 hours from onset of symptoms, not otherwise explained +7989 Unattended death +79901 Asphyxia +79902 Hypoxemia +7991 Respiratory arrest +79921 Nervousness +79922 Irritability +79923 Impulsiveness +79924 Emotional lability +79925 Demoralization and apathy +79929 Other signs and symptoms involving emotional state +7993 Debility, unspecified +7994 Cachexia +79951 Attention or concentration deficit +79952 Cognitive communication deficit +79953 Visuospatial deficit +79954 Psychomotor deficit +79955 Frontal lobe and executive function deficit +79959 Other signs and symptoms involving cognition +79981 Decreased libido +79982 Apparent life threatening event in infant +79989 Other ill-defined conditions +7999 Other unknown and unspecified cause of morbidity and mortality +80000 Closed fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness +80001 Closed fracture of vault of skull without mention of intracranial injury, with no loss of consciousness +80002 Closed fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness +80003 Closed fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness +80004 Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80005 Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80006 Closed fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration +80009 Closed fracture of vault of skull without mention of intracranial injury, with concussion, unspecified +80010 Closed fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness +80011 Closed fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness +80012 Closed fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness +80013 Closed fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness +80014 Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80015 Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80016 Closed fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration +80019 Closed fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified +80020 Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness +80021 Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness +80022 Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness +80023 Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness +80024 Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80025 Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80026 Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration +80029 Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified +80030 Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness +80031 Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness +80032 Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness +80033 Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness +80034 Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80035 Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80036 Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration +80039 Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified +80040 Closed fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness +80041 Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness +80042 Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness +80043 Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness +80044 Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80045 Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80046 Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration +80049 Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified +80050 Open fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness +80051 Open fracture of vault of skull without mention of intracranial injury, with no loss of consciousness +80052 Open fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness +80053 Open fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness +80054 Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80055 Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80056 Open fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration +80059 Open fracture of vault of skull without mention of intracranial injury, with concussion, unspecified +80060 Open fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness +80061 Open fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness +80062 Open fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness +80063 Open fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness +80064 Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80065 Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80066 Open fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration +80069 Open fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified +80070 Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness +80071 Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness +80072 Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness +80073 Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness +80074 Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80075 Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80076 Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration +80079 Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified +80080 Open fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness +80081 Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness +80082 Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness +80083 Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness +80084 Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80085 Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80086 Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration +80089 Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified +80090 Open fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness +80091 Open fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness +80092 Open fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness +80093 Open fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness +80094 Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80095 Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80096 Open fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration +80099 Open fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified +80100 Closed fracture of base of skull without mention of intra cranial injury, unspecified state of consciousness +80101 Closed fracture of base of skull without mention of intra cranial injury, with no loss of consciousness +80102 Closed fracture of base of skull without mention of intra cranial injury, with brief [less than one hour] loss of consciousness +80103 Closed fracture of base of skull without mention of intra cranial injury, with moderate [1-24 hours] loss of consciousness +80104 Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80105 Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80106 Closed fracture of base of skull without mention of intra cranial injury, with loss of consciousness of unspecified duration +80109 Closed fracture of base of skull without mention of intra cranial injury, with concussion, unspecified +80110 Closed fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness +80111 Closed fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness +80112 Closed fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness +80113 Closed fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness +80114 Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80115 Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80116 Closed fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration +80119 Closed fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified +80120 Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness +80121 Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness +80122 Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness +80123 Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness +80124 Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80125 Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80126 Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration +80129 Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified +80130 Closed fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness +80131 Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness +80132 Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness +80133 Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness +80134 Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80135 Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80136 Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration +80139 Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified +80140 Closed fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness +80141 Closed fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness +80142 Closed fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness +80143 Closed fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness +80144 Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level +80145 Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80146 Closed fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration +80149 Closed fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified +80150 Open fracture of base of skull without mention of intracranial injury, unspecified state of consciousness +80151 Open fracture of base of skull without mention of intracranial injury, with no loss of consciousness +80152 Open fracture of base of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness +80153 Open fracture of base of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness +80154 Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80155 Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80156 Open fracture of base of skull without mention of intracranial injury, with loss of consciousness of unspecified duration +80159 Open fracture of base of skull without mention of intracranial injury, with concussion, unspecified +80160 Open fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness +80161 Open fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness +80162 Open fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness +80163 Open fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness +80164 Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80165 Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80166 Open fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration +80169 Open fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified +80170 Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness +80171 Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness +80172 Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness +80173 Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness +80174 Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80175 Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80176 Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration +80179 Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified +80180 Open fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness +80181 Open fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness +80182 Open fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness +80183 Open fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness +80184 Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80185 Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80186 Open fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration +80189 Open fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified +80190 Open fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness +80191 Open fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness +80192 Open fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness +80193 Open fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness +80194 Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80195 Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80196 Open fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration +80199 Open fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified +8020 Closed fracture of nasal bones +8021 Open fracture of nasal bones +80220 Closed fracture of mandible, unspecified site +80221 Closed fracture of mandible, condylar process +80222 Closed fracture of mandible, subcondylar +80223 Closed fracture of mandible, coronoid process +80224 Closed fracture of mandible, ramus, unspecified +80225 Closed fracture of mandible, angle of jaw +80226 Closed fracture of mandible, symphysis of body +80227 Closed fracture of mandible, alveolar border of body +80228 Closed fracture of mandible, body, other and unspecified +80229 Closed fracture of mandible, multiple sites +80230 Open fracture of mandible, unspecified site +80231 Open fracture of mandible, condylar process +80232 Open fracture of mandible, subcondylar +80233 Open fracture of mandible, coronoid process +80234 Open fracture of mandible, ramus, unspecified +80235 Open fracture of mandible, angle of jaw +80236 Open fracture of mandible, symphysis of body +80237 Open fracture of mandible, alveolar border of body +80238 Open fracture of mandible, body, other and unspecified +80239 Open fracture of mandible, multiple sites +8024 Closed fracture of malar and maxillary bones +8025 Open fracture of malar and maxillary bones +8026 Closed fracture of orbital floor (blow-out) +8027 Open fracture of orbital floor (blow-out) +8028 Closed fracture of other facial bones +8029 Open fracture of other facial bones +80300 Other closed skull fracture without mention of intracranial injury, unspecified state of consciousness +80301 Other closed skull fracture without mention of intracranial injury, with no loss of consciousness +80302 Other closed skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness +80303 Other closed skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness +80304 Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80305 Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80306 Other closed skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration +80309 Other closed skull fracture without mention of intracranial injury, with concussion, unspecified +80310 Other closed skull fracture with cerebral laceration and contusion, unspecified state of consciousness +80311 Other closed skull fracture with cerebral laceration and contusion, with no loss of consciousness +80312 Other closed skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness +80313 Other closed skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness +80314 Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80315 Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80316 Other closed skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration +80319 Other closed skull fracture with cerebral laceration and contusion, with concussion, unspecified +80320 Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness +80321 Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness +80322 Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness +80323 Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness +80324 Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80325 Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80326 Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration +80329 Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified +80330 Other closed skull fracture with other and unspecified intracranial hemorrhage, unspecified state of unconsciousness +80331 Other closed skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness +80332 Other closed skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness +80333 Other closed skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness +80334 Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80335 Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80336 Other closed skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration +80339 Other closed skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified +80340 Other closed skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness +80341 Other closed skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness +80342 Other closed skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness +80343 Other closed skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness +80344 Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80345 Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80346 Other closed skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration +80349 Other closed skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified +80350 Other open skull fracture without mention of injury, unspecified state of consciousness +80351 Other open skull fracture without mention of intracranial injury, with no loss of consciousness +80352 Other open skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness +80353 Other open skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness +80354 Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80355 Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80356 Other open skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration +80359 Other open skull fracture without mention of intracranial injury, with concussion, unspecified +80360 Other open skull fracture with cerebral laceration and contusion, unspecified state of consciousness +80361 Other open skull fracture with cerebral laceration and contusion, with no loss of consciousness +80362 Other open skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness +80363 Other open skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness +80364 Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80365 Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80366 Other open skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration +80369 Other open skull fracture with cerebral laceration and contusion, with concussion, unspecified +80370 Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness +80371 Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness +80372 Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness +80373 Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness +80374 Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80375 Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80376 Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration +80379 Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified +80380 Other open skull fracture with other and unspecified intracranial hemorrhage, unspecified state of consciousness +80381 Other open skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness +80382 Other open skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness +80383 Other open skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness +80384 Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80385 Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80386 Other open skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration +80389 Other open skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified +80390 Other open skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness +80391 Other open skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness +80392 Other open skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness +80393 Other open skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness +80394 Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80395 Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80396 Other open skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration +80399 Other open skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified +80400 Closed fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness +80401 Closed fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness +80402 Closed fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness +80403 Closed fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness +80404 Closed fractures involving skull or face with other bones, without mention or intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80405 Closed fractures involving skull of face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80406 Closed fractures involving skull of face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration +80409 Closed fractures involving skull of face with other bones, without mention of intracranial injury, with concussion, unspecified +80410 Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness +80411 Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness +80412 Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness +80413 Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness +80414 Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80415 Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80416 Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration +80419 Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified +80420 Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness +80421 Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness +80422 Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness +80423 Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness +80424 Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80425 Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80426 Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration +80429 Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified +80430 Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness +80431 Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness +80432 Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness +80433 Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness +80434 Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level +80435 Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80436 Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration +80439 Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified +80440 Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness +80441 Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness +80442 Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness +80443 Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness +80444 Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80445 Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80446 Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration +80449 Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified +80450 Open fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness +80451 Open fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness +80452 Open fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness +80453 Open fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness +80454 Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80455 Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80456 Open fractures involving skull or face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration +80459 Open fractures involving skull or face with other bones, without mention of intracranial injury, with concussion, unspecified +80460 Open fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness +80461 Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness +80462 Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness +80463 Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness +80464 Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80465 Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80466 Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration +80469 Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified +80470 Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness +80471 Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness +80472 Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness +80473 Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness +80474 Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80475 Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level +80476 Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration +80479 Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified +80480 Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness +80481 Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness +80482 Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness +80483 Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness +80484 Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80485 Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss consciousness, without return to pre-existing conscious level +80486 Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration +80489 Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified +80490 Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness +80491 Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness +80492 Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness +80493 Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness +80494 Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +80495 Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +80496 Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration +80499 Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified +80500 Closed fracture of cervical vertebra, unspecified level +80501 Closed fracture of first cervical vertebra +80502 Closed fracture of second cervical vertebra +80503 Closed fracture of third cervical vertebra +80504 Closed fracture of fourth cervical vertebra +80505 Closed fracture of fifth cervical vertebra +80506 Closed fracture of sixth cervical vertebra +80507 Closed fracture of seventh cervical vertebra +80508 Closed fracture of multiple cervical vertebrae +80510 Open fracture of cervical vertebra, unspecified level +80511 Open fracture of first cervical vertebra +80512 Open fracture of second cervical vertebra +80513 Open fracture of third cervical vertebra +80514 Open fracture of fourth cervical vertebra +80515 Open fracture of fifth cervical vertebra +80516 Open fracture of sixth cervical vertebra +80517 Open fracture of seventh cervical vertebra +80518 Open fracture of multiple cervical vertebrae +8052 Closed fracture of dorsal [thoracic] vertebra without mention of spinal cord injury +8053 Open fracture of dorsal [thoracic] vertebra without mention of spinal cord injury +8054 Closed fracture of lumbar vertebra without mention of spinal cord injury +8055 Open fracture of lumbar vertebra without mention of spinal cord injury +8056 Closed fracture of sacrum and coccyx without mention of spinal cord injury +8057 Open fracture of sacrum and coccyx without mention of spinal cord injury +8058 Closed fracture of unspecified vertebral column without mention of spinal cord injury +8059 Open fracture of unspecified vertebral column without mention of spinal cord injury +80600 Closed fracture of C1-C4 level with unspecified spinal cord injury +80601 Closed fracture of C1-C4 level with complete lesion of cord +80602 Closed fracture of C1-C4 level with anterior cord syndrome +80603 Closed fracture of C1-C4 level with central cord syndrome +80604 Closed fracture of C1-C4 level with other specified spinal cord injury +80605 Closed fracture of C5-C7 level with unspecified spinal cord injury +80606 Closed fracture of C5-C7 level with complete lesion of cord +80607 Closed fracture of C5-C7 level with anterior cord syndrome +80608 Closed fracture of C5-C7 level with central cord syndrome +80609 Closed fracture of C5-C7 level with other specified spinal cord injury +80610 Open fracture of C1-C4 level with unspecified spinal cord injury +80611 Open fracture of C1-C4 level with complete lesion of cord +80612 Open fracture of C1-C4 level with anterior cord syndrome +80613 Open fracture of C1-C4 level with central cord syndrome +80614 Open fracture of C1-C4 level with other specified spinal cord injury +80615 Open fracture of C5-C7 level with unspecified spinal cord injury +80616 Open fracture of C5-C7 level with complete lesion of cord +80617 Open fracture of C5-C7 level with anterior cord syndrome +80618 Open fracture of C5-C7 level with central cord syndrome +80619 Open fracture of C5-C7 level with other specified spinal cord injury +80620 Closed fracture of T1-T6 level with unspecified spinal cord injury +80621 Closed fracture of T1-T6 level with complete lesion of cord +80622 Closed fracture of T1-T6 level with anterior cord syndrome +80623 Closed fracture of T1-T6 level with central cord syndrome +80624 Closed fracture of T1-T6 level with other specified spinal cord injury +80625 Closed fracture of T7-T12 level with unspecified spinal cord injury +80626 Closed fracture of T7-T12 level with complete lesion of cord +80627 Closed fracture of T7-T12 level with anterior cord syndrome +80628 Closed fracture of T7-T12 level with central cord syndrome +80629 Closed fracture of T7-T12 level with other specified spinal cord injury +80630 Open fracture of T1-T6 level with unspecified spinal cord injury +80631 Open fracture of T1-T6 level with complete lesion of cord +80632 Open fracture of T1-T6 level with anterior cord syndrome +80633 Open fracture of T1-T6 level with central cord syndrome +80634 Open fracture of T1-T6 level with other specified spinal cord injury +80635 Open fracture of T7-T12 level with unspecified spinal cord injury +80636 Open fracture of T7-T12 level with complete lesion of cord +80637 Open fracture of T7-T12 level with anterior cord syndrome +80638 Open fracture of T7-T12 level with central cord syndrome +80639 Open fracture of T7-T12 level with other specified spinal cord injury +8064 Closed fracture of lumbar spine with spinal cord injury +8065 Open fracture of lumbar spine with spinal cord injury +80660 Closed fracture of sacrum and coccyx with unspecified spinal cord injury +80661 Closed fracture of sacrum and coccyx with complete cauda equina lesion +80662 Closed fracture of sacrum and coccyx with other cauda equina injury +80669 Closed fracture of sacrum and coccyx with other spinal cord injury +80670 Open fracture of sacrum and coccyx with unspecified spinal cord injury +80671 Open fracture of sacrum and coccyx with complete cauda equina lesion +80672 Open fracture of sacrum and coccyx with other cauda equina injury +80679 Open fracture of sacrum and coccyx with other spinal cord injury +8068 Closed fracture of unspecified vertebral column with spinal cord injury +8069 Open fracture of unspecified vertebral column with spinal cord injury +80700 Closed fracture of rib(s), unspecified +80701 Closed fracture of one rib +80702 Closed fracture of two ribs +80703 Closed fracture of three ribs +80704 Closed fracture of four ribs +80705 Closed fracture of five ribs +80706 Closed fracture of six ribs +80707 Closed fracture of seven ribs +80708 Closed fracture of eight or more ribs +80709 Closed fracture of multiple ribs, unspecified +80710 Open fracture of rib(s), unspecified +80711 Open fracture of one rib +80712 Open fracture of two ribs +80713 Open fracture of three ribs +80714 Open fracture of four ribs +80715 Open fracture of five ribs +80716 Open fracture of six ribs +80717 Open fracture of seven ribs +80718 Open fracture of eight or more ribs +80719 Open fracture of multiple ribs, unspecified +8072 Closed fracture of sternum +8073 Open fracture of sternum +8074 Flail chest +8075 Closed fracture of larynx and trachea +8076 Open fracture of larynx and trachea +8080 Closed fracture of acetabulum +8081 Open fracture of acetabulum +8082 Closed fracture of pubis +8083 Open fracture of pubis +80841 Closed fracture of ilium +80842 Closed fracture of ischium +80843 Multiple closed pelvic fractures with disruption of pelvic circle +80844 Multiple closed pelvic fractures without disruption of pelvic circle +80849 Closed fracture of other specified part of pelvis +80851 Open fracture of ilium +80852 Open fracture of ischium +80853 Multiple open pelvic fractures with disruption of pelvic circle +80854 Multiple open pelvic fractures without disruption of pelvic circle +80859 Open fracture of other specified part of pelvis +8088 Closed unspecified fracture of pelvis +8089 Open unspecified fracture of pelvis +8090 Fracture of bones of trunk, closed +8091 Fracture of bones of trunk, open +81000 Closed fracture of clavicle, unspecified part +81001 Closed fracture of sternal end of clavicle +81002 Closed fracture of shaft of clavicle +81003 Closed fracture of acromial end of clavicle +81010 Open fracture of clavicle, unspecified part +81011 Open fracture of sternal end of clavicle +81012 Open fracture of shaft of clavicle +81013 Open fracture of acromial end of clavicle +81100 Closed fracture of scapula, unspecified part +81101 Closed fracture of acromial process of scapula +81102 Closed fracture of coracoid process of scapula +81103 Closed fracture of glenoid cavity and neck of scapula +81109 Closed fracture of scapula, other +81110 Open fracture of scapula, unspecified part +81111 Open fracture of acromial process of scapula +81112 Open fracture of coracoid process +81113 Open fracture of glenoid cavity and neck of scapula +81119 Open fracture of scapula, other +81200 Closed fracture of unspecified part of upper end of humerus +81201 Closed fracture of surgical neck of humerus +81202 Closed fracture of anatomical neck of humerus +81203 Closed fracture of greater tuberosity of humerus +81209 Other closed fracture of upper end of humerus +81210 Open fracture of unspecified part of upper end of humerus +81211 Open fracture of surgical neck of humerus +81212 Open fracture of anatomical neck of humerus +81213 Open fracture of greater tuberosity of humerus +81219 Other open fracture of upper end of humerus +81220 Closed fracture of unspecified part of humerus +81221 Closed fracture of shaft of humerus +81230 Open fracture of unspecified part of humerus +81231 Open fracture of shaft of humerus +81240 Closed fracture of unspecified part of lower end of humerus +81241 Closed supracondylar fracture of humerus +81242 Closed fracture of lateral condyle of humerus +81243 Closed fracture of medial condyle of humerus +81244 Closed fracture of unspecified condyle(s) of humerus +81249 Other closed fracture of lower end of humerus +81250 Open fracture of unspecified part of lower end of humerus +81251 Open supracondylar fracture of humerus +81252 Open fracture of lateral condyle of humerus +81253 Open fracture of medial condyle of humerus +81254 Open fracture of unspecified condyle(s) of humerus +81259 Other open fracture of lower end of humerus +81300 Closed fracture of upper end of forearm, unspecified +81301 Closed fracture of olecranon process of ulna +81302 Closed fracture of coronoid process of ulna +81303 Closed Monteggia's fracture +81304 Other and unspecified closed fractures of proximal end of ulna (alone) +81305 Closed fracture of head of radius +81306 Closed fracture of neck of radius +81307 Other and unspecified closed fractures of proximal end of radius (alone) +81308 Closed fracture of radius with ulna, upper end [any part] +81310 Open fracture of upper end of forearm, unspecified +81311 Open fracture of olecranon process of ulna +81312 Open fracture of coronoid process of ulna +81313 Open Monteggia's fracture +81314 Other and unspecified open fractures of proximal end of ulna (alone) +81315 Open fracture of head of radius +81316 Open fracture of neck of radius +81317 Other and unspecified open fractures of proximal end of radius (alone) +81318 Open fracture of radius with ulna, upper end (any part) +81320 Closed fracture of shaft of radius or ulna, unspecified +81321 Closed fracture of shaft of radius (alone) +81322 Closed fracture of shaft of ulna (alone) +81323 Closed fracture of shaft of radius with ulna +81330 Open fracture of shaft of radius or ulna, unspecified +81331 Open fracture of shaft of radius (alone) +81332 Open fracture of shaft of ulna (alone) +81333 Open fracture of shaft of radius with ulna +81340 Closed fracture of lower end of forearm, unspecified +81341 Closed Colles' fracture +81342 Other closed fractures of distal end of radius (alone) +81343 Closed fracture of distal end of ulna (alone) +81344 Closed fracture of lower end of radius with ulna +81345 Torus fracture of radius (alone) +81346 Torus fracture of ulna (alone) +81347 Torus fracture of radius and ulna +81350 Open fracture of lower end of forearm, unspecified +81351 Open Colles' fracture +81352 Other open fractures of distal end of radius (alone) +81353 Open fracture of distal end of ulna (alone) +81354 Open fracture of lower end of radius with ulna +81380 Closed fracture of unspecified part of forearm +81381 Closed fracture of unspecified part of radius (alone) +81382 Closed fracture of unspecified part of ulna (alone) +81383 Closed fracture of unspecified part of radius with ulna +81390 Open fracture of unspecified part of forearm +81391 Open fracture of unspecified part of radius (alone) +81392 Open fracture of unspecified part of ulna (alone) +81393 Open fracture of unspecified part of radius with ulna +81400 Closed fracture of carpal bone, unspecified +81401 Closed fracture of navicular [scaphoid] bone of wrist +81402 Closed fracture of lunate [semilunar] bone of wrist +81403 Closed fracture of triquetral [cuneiform] bone of wrist +81404 Closed fracture of pisiform bone of wrist +81405 Closed fracture of trapezium bone [larger multangular] of wrist +81406 Closed fracture of trapezoid bone [smaller multangular] of wrist +81407 Closed fracture of capitate bone [os magnum] of wrist +81408 Closed fracture of hamate [unciform] bone of wrist +81409 Closed fracture of other bone of wrist +81410 Open fracture of carpal bone, unspecified +81411 Open fracture of navicular [scaphoid] bone of wrist +81412 Open fracture of lunate [semilunar] bone of wrist +81413 Open fracture of triquetral [cuneiform] bone of wrist +81414 Open fracture of pisiform bone of wrist +81415 Open fracture of trapezium bone [larger multangular] of wrist +81416 Open fracture of trapezoid bone [smaller multangular] of wrist +81417 Open fracture of capitate bone [os magnum] of wrist +81418 Open fracture of hamate [unciform] bone of wrist +81419 Open fracture of other bone of wrist +81500 Closed fracture of metacarpal bone(s), site unspecified +81501 Closed fracture of base of thumb [first] metacarpal +81502 Closed fracture of base of other metacarpal bone(s) +81503 Closed fracture of shaft of metacarpal bone(s) +81504 Closed fracture of neck of metacarpal bone(s) +81509 Closed fracture of multiple sites of metacarpus +81510 Open fracture of metacarpal bone(s), site unspecified +81511 Open fracture of base of thumb [first] metacarpal +81512 Open fracture of base of other metacarpal bone(s) +81513 Open fracture of shaft of metacarpal bone(s) +81514 Open fracture of neck of metacarpal bone(s) +81519 Open fracture of multiple sites of metacarpus +81600 Closed fracture of phalanx or phalanges of hand, unspecified +81601 Closed fracture of middle or proximal phalanx or phalanges of hand +81602 Closed fracture of distal phalanx or phalanges of hand +81603 Closed fracture of multiple sites of phalanx or phalanges of hand +81610 Open fracture of phalanx or phalanges of hand, unspecified +81611 Open fracture of middle or proximal phalanx or phalanges of hand +81612 Open fracture of distal phalanx or phalanges of hand +81613 Open fracture of multiple sites of phalanx or phalanges of hand +8170 Multiple closed fractures of hand bones +8171 Multiple open fractures of hand bones +8180 Ill-defined closed fractures of upper limb +8181 Ill-defined open fractures of upper limb +8190 Multiple closed fractures involving both upper limbs, and upper limb with rib(s) and sternum +8191 Multiple open fractures involving both upper limbs, and upper limb with rib(s) and sternum +82000 Closed fracture of intracapsular section of neck of femur, unspecified +82001 Closed fracture of epiphysis (separation) (upper) of neck of femur +82002 Closed fracture of midcervical section of neck of femur +82003 Closed fracture of base of neck of femur +82009 Other closed transcervical fracture of neck of femur +82010 Open fracture of intracapsular section of neck of femur, unspecified +82011 Open fracture of epiphysis (separation) (upper) of neck of femur +82012 Open fracture of midcervical section of neck of femur +82013 Open fracture of base of neck of femur +82019 Other open transcervical fracture of neck of femur +82020 Closed fracture of trochanteric section of neck of femur +82021 Closed fracture of intertrochanteric section of neck of femur +82022 Closed fracture of subtrochanteric section of neck of femur +82030 Open fracture of trochanteric section of neck of femur, unspecified +82031 Open fracture of intertrochanteric section of neck of femur +82032 Open fracture of subtrochanteric section of neck of femur +8208 Closed fracture of unspecified part of neck of femur +8209 Open fracture of unspecified part of neck of femur +82100 Closed fracture of unspecified part of femur +82101 Closed fracture of shaft of femur +82110 Open fracture of unspecified part of femur +82111 Open fracture of shaft of femur +82120 Closed fracture of lower end of femur, unspecified part +82121 Closed fracture of condyle, femoral +82122 Closed fracture of epiphysis, lower (separation) of femur +82123 Closed supracondylar fracture of femur +82129 Other closed fracture of lower end of femur +82130 Open fracture of lower end of femur, unspecified part +82131 Open fracture of condyle, femoral +82132 Open fracture of epiphysis. Lower (separation) of femur +82133 Open supracondylar fracture of femur +82139 Other open fracture of lower end of femur +8220 Closed fracture of patella +8221 Open fracture of patella +82300 Closed fracture of upper end of tibia alone +82301 Closed fracture of upper end of fibula alone +82302 Closed fracture of upper end of fibula with tibia +82310 Open fracture of upper end of tibia alone +82311 Open fracture of upper end of fibula alone +82312 Open fracture of upper end of fibula with tibia +82320 Closed fracture of shaft of tibia alone +82321 Closed fracture of shaft of fibula alone +82322 Closed fracture of shaft of fibula with tibia +82330 Open fracture of shaft of tibia alone +82331 Open fracture of shaft of fibula alone +82332 Open fracture of shaft of fibula with tibia +82340 Torus fracture, tibia alone +82341 Torus fracture, fibula alone +82342 Torus fracture, fibula with tibia +82380 Closed fracture of unspecified part of tibia alone +82381 Closed fracture of unspecified part of fibula alone +82382 Closed fracture of unspecified part of fibula with tibia +82390 Open fracture of unspecified part of tibia alone +82391 Open fracture of unspecified part of fibula alone +82392 Open fracture of unspecified part of fibula with tibia +8240 Fracture of medial malleolus, closed +8241 Fracture of medial malleolus, open +8242 Fracture of lateral malleolus, closed +8243 Fracture of lateral malleolus, open +8244 Bimalleolar fracture, closed +8245 Bimalleolar fracture, open +8246 Trimalleolar fracture, closed +8247 Trimalleolar fracture, open +8248 Unspecified fracture of ankle, closed +8249 Unspecified fracture of ankle, open +8250 Fracture of calcaneus, closed +8251 Fracture of calcaneus, open +82520 Closed fracture of unspecified bone(s) of foot [except toes] +82521 Closed fracture of astragalus +82522 Closed fracture of navicular [scaphoid], foot +82523 Closed fracture of cuboid +82524 Closed fracture of cuneiform, foot +82525 Closed fracture of metatarsal bone(s) +82529 Other closed fracture of tarsal and metatarsal bones +82530 Open fracture of unspecified bone(s) of foot [except toes] +82531 Open fracture of astragalus +82532 Open fracture of navicular [scaphoid], foot +82533 Open fracture of cuboid +82534 Open fracture of cuneiform, foot +82535 Open fracture of metatarsal bone(s) +82539 Other open fracture of tarsal and metatarsal bones +8260 Closed fracture of one or more phalanges of foot +8261 Open fracture of one or more phalanges of foot +8270 Other, multiple and ill-defined fractures of lower limb, closed +8271 Other, multiple and ill-defined fractures of lower limb, open +8280 Closed multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum +8281 Open multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum +8290 Fracture of unspecified bone, closed +8291 Fracture of unspecified bone, open +8300 Closed dislocation of jaw +8301 Open dislocation of jaw +83100 Closed dislocation of shoulder, unspecified +83101 Closed anterior dislocation of humerus +83102 Closed posterior dislocation of humerus +83103 Closed inferior dislocation of humerus +83104 Closed dislocation of acromioclavicular (joint) +83109 Closed dislocation of shoulder, other +83110 Open dislocation of shoulder, unspecified +83111 Open anterior dislocation of humerus +83112 Open posterior dislocation of humerus +83113 Open inferior dislocation of humerus +83114 Open dislocation of acromioclavicular (joint) +83119 Open dislocation of shoulder, other +83200 Closed dislocation of elbow, unspecified +83201 Closed anterior dislocation of elbow +83202 Closed posterior dislocation of elbow +83203 Closed medial dislocation of elbow +83204 Closed lateral dislocation of elbow +83209 Closed dislocation of elbow, other +83210 Open dislocation of elbow, unspecified +83211 Open anterior dislocation of elbow +83212 Open posterior dislocation of elbow +83213 Open medial dislocation of elbow +83214 Open lateral dislocation of elbow +83219 Open dislocation of elbow, other +8322 Nursemaid's elbow +83300 Closed dislocation of wrist, unspecified part +83301 Closed dislocation of radioulnar (joint), distal +83302 Closed dislocation of radiocarpal (joint) +83303 Closed dislocation of midcarpal (joint) +83304 Closed dislocation of carpometacarpal (joint) +83305 Closed dislocation of metacarpal (bone), proximal end +83309 Closed dislocation of wrist, other +83310 Open dislocation of wrist, unspecified part +83311 Open dislocation of radioulnar (joint), distal +83312 Open dislocation of radiocarpal (joint) +83313 Open dislocation of midcarpal (joint) +83314 Open dislocation of carpometacarpal (joint) +83315 Open dislocation of metacarpal (bone), proximal end +83319 Open dislocation of wrist, other +83400 Closed dislocation of finger, unspecified part +83401 Closed dislocation of metacarpophalangeal (joint) +83402 Closed dislocation of interphalangeal (joint), hand +83410 Open dislocation of finger, unspecified part +83411 Open dislocation of metacarpophalangeal (joint) +83412 Open dislocation interphalangeal (joint), hand +83500 Closed dislocation of hip, unspecified site +83501 Closed posterior dislocation of hip +83502 Closed obturator dislocation of hip +83503 Other closed anterior dislocation of hip +83510 Open dislocation of hip, unspecified site +83511 Open posterior dislocation of hip +83512 Open obturator dislocation of hip +83513 Other open anterior dislocation of hip +8360 Tear of medial cartilage or meniscus of knee, current +8361 Tear of lateral cartilage or meniscus of knee, current +8362 Other tear of cartilage or meniscus of knee, current +8363 Dislocation of patella, closed +8364 Dislocation of patella, open +83650 Dislocation of knee, unspecified, closed +83651 Anterior dislocation of tibia, proximal end, closed +83652 Posterior dislocation of tibia, proximal end, closed +83653 Medial dislocation of tibia, proximal end, closed +83654 Lateral dislocation of tibia, proximal end, closed +83659 Other dislocation of knee, closed +83660 Dislocation of knee, unspecified, open +83661 Anterior dislocation of tibia, proximal end, open +83662 Posterior dislocation of tibia, proximal end, open +83663 Medial dislocation of tibia, proximal end, open +83664 Lateral dislocation of tibia, proximal end, open +83669 Other dislocation of knee, open +8370 Closed dislocation of ankle +8371 Open dislocation of ankle +83800 Closed dislocation of foot, unspecified +83801 Closed dislocation of tarsal (bone), joint unspecified +83802 Closed dislocation of midtarsal (joint) +83803 Closed dislocation of tarsometatarsal (joint) +83804 Closed dislocation of metatarsal (bone), joint unspecified +83805 Closed dislocation of metatarsophalangeal (joint) +83806 Closed dislocation of interphalangeal (joint), foot +83809 Closed dislocation of foot, other +83810 Open dislocation of foot, unspecified +83811 Open dislocation of tarsal (bone), joint unspecified +83812 Open dislocation of midtarsal (joint) +83813 Open dislocation of tarsometatarsal (joint) +83814 Open dislocation of metatarsal (bone), joint unspecified +83815 Open dislocation of metatarsophalangeal (joint) +83816 Open dislocation of interphalangeal (joint), foot +83819 Open dislocation of foot, other +83900 Closed dislocation, cervical vertebra, unspecified +83901 Closed dislocation, first cervical vertebra +83902 Closed dislocation, second cervical vertebra +83903 Closed dislocation, third cervical vertebra +83904 Closed dislocation, fourth cervical vertebra +83905 Closed dislocation, fifth cervical vertebra +83906 Closed dislocation, sixth cervical vertebra +83907 Closed dislocation, seventh cervical vertebra +83908 Closed dislocation, multiple cervical vertebrae +83910 Open dislocation, cervical vertebra, unspecified +83911 Open dislocation, first cervical vertebra +83912 Open dislocation, second cervical vertebra +83913 Open dislocation, third cervical vertebra +83914 Open dislocation, fourth cervical vertebra +83915 Open dislocation, fifth cervical vertebra +83916 Open dislocation, sixth cervical vertebra +83917 Open dislocation, seventh cervical vertebra +83918 Open dislocation, multiple cervical vertebrae +83920 Closed dislocation, lumbar vertebra +83921 Closed dislocation, thoracic vertebra +83930 Open dislocation, lumbar vertebra +83931 Open dislocation, thoracic vertebra +83940 Closed dislocation, vertebra, unspecified site +83941 Closed dislocation, coccyx +83942 Closed dislocation, sacrum +83949 Closed dislocation, vertebra, other +83950 Open dislocation, vertebra, unspecified site +83951 Open dislocation, coccyx +83952 Open dislocation, sacrum +83959 Open dislocation, vertebra,other +83961 Closed dislocation, sternum +83969 Closed dislocation, other location +83971 Open dislocation, sternum +83979 Open dislocation, other location +8398 Closed dislocation, multiple and ill-defined sites +8399 Open dislocation, multiple and ill-defined sites +8400 Acromioclavicular (joint) (ligament) sprain +8401 Coracoclavicular (ligament) sprain +8402 Coracohumeral (ligament) sprain +8403 Infraspinatus (muscle) (tendon) sprain +8404 Rotator cuff (capsule) sprain +8405 Subscapularis (muscle) sprain +8406 Supraspinatus (muscle) (tendon) sprain +8407 Superior glenoid labrum lesion +8408 Sprains and strains of other specified sites of shoulder and upper arm +8409 Sprains and strains of unspecified site of shoulder and upper arm +8410 Radial collateral ligament sprain +8411 Ulnar collateral ligament sprain +8412 Radiohumeral (joint) sprain +8413 Ulnohumeral (joint) sprain +8418 Sprains and strains of other specified sites of elbow and forearm +8419 Sprains and strains of unspecified site of elbow and forearm +84200 Sprain of wrist, unspecified site +84201 Sprain of carpal (joint) of wrist +84202 Sprain of radiocarpal (joint) (ligament) of wrist +84209 Other sprains and strains of wrist +84210 Sprain of hand, unspecified site +84211 Sprain of carpometacarpal (joint) of hand +84212 Sprain of metacarpophalangeal (joint) of hand +84213 Sprain of interphalangeal (joint) of hand +84219 Other sprains and strains of hand +8430 Iliofemoral (ligament) sprain +8431 Ischiocapsular (ligament) sprain +8438 Sprains and strains of other specified sites of hip and thigh +8439 Sprains and strains of unspecified site of hip and thigh +8440 Sprain of lateral collateral ligament of knee +8441 Sprain of medial collateral ligament of knee +8442 Sprain of cruciate ligament of knee +8443 Sprain of tibiofibular (joint) (ligament) superior, of knee +8448 Sprains and strains of other specified sites of knee and leg +8449 Sprains and strains of unspecified site of knee and leg +84500 Sprain of ankle, unspecified site +84501 Sprain of deltoid (ligament), ankle +84502 Sprain of calcaneofibular (ligament) of ankle +84503 Sprain of tibiofibular (ligament), distal of ankle +84509 Other sprains and strains of ankle +84510 Sprain of foot, unspecified site +84511 Sprain of tarsometatarsal (joint) (ligament) of foot +84512 Sprain of metatarsophalangeal (joint) of foot +84513 Sprain of interphalangeal (joint), toe +84519 Other sprain of foot +8460 Sprain of lumbosacral (joint) (ligament) +8461 Sprain of sacroiliac ligament +8462 Sprain of sacrospinatus (ligament) +8463 Sprain of sacrotuberous (ligament) +8468 Sprain of other specified sites of sacroiliac region +8469 Sprain of unspecified site of sacroiliac region +8470 Sprain of neck +8471 Sprain of thoracic +8472 Sprain of lumbar +8473 Sprain of sacrum +8474 Sprain of coccyx +8479 Sprain of unspecified site of back +8480 Sprain of septal cartilage of nose +8481 Sprain of jaw +8482 Sprain of thyroid region +8483 Sprain of ribs +84840 Sprain of sternum, unspecified site +84841 Sprain of sternoclavicular (joint) (ligament) +84842 Sprain of chondrosternal (joint) +84849 Sprain of sternum, other +8485 Sprain of pelvic +8488 Other specified sites of sprains and strains +8489 Unspecified site of sprain and strain +8500 Concussion with no loss of consciousness +85011 Concussion, with loss of consciousness of 30 minutes or less +85012 Concussion, with loss of consciousness from 31 to 59 minutes +8502 Concussion with moderate loss of consciousness +8503 Concussion with prolonged loss of consciousness and return to pre-existing conscious level +8504 Concussion with prolonged loss of consciousness, without return to pre-existing conscious level +8505 Concussion with loss of consciousness of unspecified duration +8509 Concussion, unspecified +85100 Cortex (cerebral) contusion without mention of open intracranial wound, unspecified state of consciousness +85101 Cortex (cerebral) contusion without mention of open intracranial wound, with no loss of consciousness +85102 Cortex (cerebral) contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness +85103 Cortex (cerebral) contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness +85104 Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85105 Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85106 Cortex (cerebral) contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration +85109 Cortex (cerebral) contusion without mention of open intracranial wound, with concussion, unspecified +85110 Cortex (cerebral) contusion with open intracranial wound, unspecified state of consciousness +85111 Cortex (cerebral) contusion with open intracranial wound, with no loss of consciousness +85112 Cortex (cerebral) contusion with open intracranial wound, with brief [less than one hour] loss of consciousness +85113 Cortex (cerebral) contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness +85114 Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85115 Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85116 Cortex (cerebral) contusion with open intracranial wound, with loss of consciousness of unspecified duration +85119 Cortex (cerebral) contusion with open intracranial wound, with concussion, unspecified +85120 Cortex (cerebral) laceration without mention of open intracranial wound, unspecified state of consciousness +85121 Cortex (cerebral) laceration without mention of open intracranial wound, with no loss of consciousness +85122 Cortex (cerebral) laceration without mention of open intracranial wound, with brief [less than one hour] loss of consciousness +85123 Cortex (cerebral) laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness +85124 Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85125 Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85126 Cortex (cerebral) laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration +85129 Cortex (cerebral) laceration without mention of open intracranial wound, with concussion, unspecified +85130 Cortex (cerebral) laceration with open intracranial wound, unspecified state of consciousness +85131 Cortex (cerebral) laceration with open intracranial wound, with no loss of consciousness +85132 Cortex (cerebral) laceration with open intracranial wound, with brief [less than one hour] loss of consciousness +85133 Cortex (cerebral) laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness +85134 Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85135 Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85136 Cortex (cerebral) laceration with open intracranial wound, with loss of consciousness of unspecified duration +85139 Cortex (cerebral) laceration with open intracranial wound, with concussion, unspecified +85140 Cerebellar or brain stem contusion without mention of open intracranial wound, unspecified state of consciousness +85141 Cerebellar or brain stem contusion without mention of open intracranial wound, with no loss of consciousness +85142 Cerebellar or brain stem contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness +85143 Cerebellar or brain stem contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness +85144 Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss consciousness and return to pre-existing conscious level +85145 Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85146 Cerebellar or brain stem contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration +85149 Cerebellar or brain stem contusion without mention of open intracranial wound, with concussion, unspecified +85150 Cerebellar or brain stem contusion with open intracranial wound, unspecified state of consciousness +85151 Cerebellar or brain stem contusion with open intracranial wound, with no loss of consciousness +85152 Cerebellar or brain stem contusion with open intracranial wound, with brief [less than one hour] loss of consciousness +85153 Cerebellar or brain stem contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness +85154 Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85155 Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85156 Cerebellar or brain stem contusion with open intracranial wound, with loss of consciousness of unspecified duration +85159 Cerebellar or brain stem contusion with open intracranial wound, with concussion, unspecified +85160 Cerebellar or brain stem laceration without mention of open intracranial wound, unspecified state of consciousness +85161 Cerebellar or brain stem laceration without mention of open intracranial wound, with no loss of consciousness +85162 Cerebellar or brain stem laceration without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness +85163 Cerebellar or brain stem laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness +85164 Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85165 Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85166 Cerebellar or brain stem laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration +85169 Cerebellar or brain stem laceration without mention of open intracranial wound, with concussion, unspecified +85170 Cerebellar or brain stem laceration with open intracranial wound, unspecified state of consciousness +85171 Cerebellar or brain stem laceration with open intracranial wound, with no loss of consciousness +85172 Cerebellar or brain stem laceration with open intracranial wound, with brief [less than one hour] loss of consciousness +85173 Cerebellar or brain stem laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness +85174 Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85175 Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85176 Cerebellar or brain stem laceration with open intracranial wound, with loss of consciousness of unspecified duration +85179 Cerebellar or brain stem laceration with open intracranial wound, with concussion, unspecified +85180 Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, unspecified state of consciousness +85181 Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with no loss of consciousness +85182 Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with brief [less than one hour] loss of consciousness +85183 Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness +85184 Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level +85185 Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85186 Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with loss of consciousness of unspecified duration +85189 Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with concussion, unspecified +85190 Other and unspecified cerebral laceration and contusion, with open intracranial wound, unspecified state of consciousness +85191 Other and unspecified cerebral laceration and contusion, with open intracranial wound, with no loss of consciousness +85192 Other and unspecified cerebral laceration and contusion, with open intracranial wound, with brief [less than one hour] loss of consciousness +85193 Other and unspecified cerebral laceration and contusion, with open intracranial wound, with moderate [1-24 hours] loss of consciousness +85194 Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85195 Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85196 Other and unspecified cerebral laceration and contusion, with open intracranial wound, with loss of consciousness of unspecified duration +85199 Other and unspecified cerebral laceration and contusion, with open intracranial wound, with concussion, unspecified +85200 Subarachnoid hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness +85201 Subarachnoid hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness +85202 Subarachnoid hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness +85203 Subarachnoid hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness +85204 Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85205 Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85206 Subarachnoid hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration +85209 Subarachnoid hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified +85210 Subarachnoid hemorrhage following injury with open intracranial wound, unspecified state of consciousness +85211 Subarachnoid hemorrhage following injury with open intracranial wound, with no loss of consciousness +85212 Subarachnoid hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness +85213 Subarachnoid hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness +85214 Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level +85215 Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85216 Subarachnoid hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration +85219 Subarachnoid hemorrhage following injury with open intracranial wound, with concussion, unspecified +85220 Subdural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness +85221 Subdural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness +85222 Subdural hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness +85223 Subdural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness +85224 Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85225 Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85226 Subdural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration +85229 Subdural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified +85230 Subdural hemorrhage following injury with open intracranial wound, unspecified state of consciousness +85231 Subdural hemorrhage following injury with open intracranial wound, with no loss of consciousness +85232 Subdural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness +85233 Subdural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness +85234 Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85235 Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85236 Subdural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration +85239 Subdural hemorrhage following injury with open intracranial wound, with concussion, unspecified +85240 Extradural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness +85241 Extradural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness +85242 Extradural hemorrhage following injury without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness +85243 Extradural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness +85244 Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85245 Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85246 Extradural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration +85249 Extradural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified +85250 Extradural hemorrhage following injury with open intracranial wound, unspecified state of consciousness +85251 Extradural hemorrhage following injury with open intracranial wound, with no loss of consciousness +85252 Extradural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness +85253 Extradural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness +85254 Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85255 Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85256 Extradural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration +85259 Extradural hemorrhage following injury with open intracranial wound, with concussion, unspecified +85300 Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness +85301 Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness +85302 Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness +85303 Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness +85304 Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level +85305 Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85306 Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration +85309 Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified +85310 Other and unspecified intracranial hemorrhage following injury with open intracranial wound, unspecified state of consciousness +85311 Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with no loss of consciousness +85312 Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness +85313 Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness +85314 Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85315 Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85316 Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration +85319 Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with concussion, unspecified +85400 Intracranial injury of other and unspecified nature without mention of open intracranial wound, unspecified state of consciousness +85401 Intracranial injury of other and unspecified nature without mention of open intracranial wound, with no loss of consciousness +85402 Intracranial injury of other and unspecified nature without mention of open intracranial wound, with brief [less than one hour] loss of consciousness +85403 Intracranial injury of other and unspecified nature without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness +85404 Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85405 Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85406 Intracranial injury of other and unspecified nature without mention of open intracranial wound, with loss of consciousness of unspecified duration +85409 Intracranial injury of other and unspecified nature without mention of open intracranial wound, with concussion, unspecified +85410 Intracranial injury of other and unspecified nature with open intracranial wound, unspecified state of consciousness +85411 Intracranial injury of other and unspecified nature with open intracranial wound, with no loss of consciousness +85412 Intracranial injury of other and unspecified nature with open intracranial wound, with brief [less than one hour] loss of consciousness +85413 Intracranial injury of other and unspecified nature with open intracranial wound, with moderate [1-24 hours] loss of consciousness +85414 Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level +85415 Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level +85416 Intracranial injury of other and unspecified nature with open intracranial wound, with loss of consciousness of unspecified duration +85419 Intracranial injury of other and unspecified nature with open intracranial wound, with concussion, unspecified +8600 Traumatic pneumothorax without mention of open wound into thorax +8601 Traumatic pneumothorax with open wound into thorax +8602 Traumatic hemothorax without mention of open wound into thorax +8603 Traumatic hemothorax with open wound into thorax +8604 Traumatic pneumohemothorax without mention of open wound into thorax +8605 Traumatic pneumohemothorax with open wound into thorax +86100 Unspecified injury of heart without mention of open wound into thorax +86101 Contusion of heart without mention of open wound into thorax +86102 Laceration of heart without penetration of heart chambers or without mention of open wound into thorax +86103 Laceration of heart with penetration of heart chambers without mention of open wound into thorax +86110 Unspecified injury of heart with open wound into thorax +86111 Contusion of heart with open wound into thorax +86112 Laceration of heart without penetration of heart chambers, with open wound into thorax +86113 Laceration of heart with penetration of heart chambers with open wound into thorax +86120 Unspecified injury of lung without mention of open wound into thorax +86121 Contusion of lung without mention of open wound into thorax +86122 Laceration of lung without mention of open wound into thorax +86130 Unspecified injury of lung with open wound into thorax +86131 Contusion of lung with open wound into thorax +86132 Laceration of lung with open wound into thorax +8620 Injury to diaphragm, without mention of open wound into cavity +8621 Injury to diaphragm, with open wound into cavity +86221 Injury to bronchus without mention of open wound into cavity +86222 Injury to esophagus without mention of open wound into cavity +86229 Injury to other specified intrathoracic organs without mention of open wound into cavity +86231 Injury to bronchus with open wound into cavity +86232 Injury to esophagus with open wound into cavity +86239 Injury to other specified intrathoracic organs with open wound into cavity +8628 Injury to multiple and unspecified intrathoracic organs, without mention of open wound into cavity +8629 Injury to multiple and unspecified intrathoracic organs, with open wound into cavity +8630 Injury to stomach, without mention of open wound into cavity +8631 Injury to stomach, with open wound into cavity +86320 Injury to small intestine, unspecified site, without open wound into cavity +86321 Injury to duodenum, without open wound into cavity +86329 Other injury to small intestine, without mention of open wound into cavity +86330 Injury to small intestine, unspecified site, with open wound into cavity +86331 Injury to duodenum, with open wound into cavity +86339 Other injury to small intestine, with open wound into cavity +86340 Injury to colon, unspecified site, without mention of open wound into cavity +86341 Injury to ascending [right] colon, without mention of open wound into cavity +86342 Injury to transverse colon, without mention of open wound into cavity +86343 Injury to descending [left] colon, without mention of open wound into cavity +86344 Injury to sigmoid colon, without mention of open wound into cavity +86345 Injury to rectum, without mention of open wound into cavity +86346 Injury to multiple sites in colon and rectum, without mention of open wound into cavity +86349 Other injury to colon or rectum, without mention of open wound into cavity +86350 Injury to colon, unspecified site, with open wound into cavity +86351 Injury to ascending [right] colon, with open wound into cavity +86352 Injury to transverse colon, with open wound into cavity +86353 Injury to descending [left] colon, with open wound into cavity +86354 Injury to sigmoid colon, with open wound into cavity +86355 Injury to rectum, with open wound into cavity +86356 Injury to multiple sites in colon and rectum, with open wound into cavity +86359 Other injury to colon or rectum, with open wound into cavity +86380 Injury to gastrointestinal tract, unspecified site, without mention of open wound into cavity +86381 Injury to pancreas, head, without mention of open wound into cavity +86382 Injury to pancreas, body, without mention of open wound into cavity +86383 Injury to pancreas, tail, without mention of open wound into cavity +86384 Injury to pancreas, multiple and unspecified sites, without mention of open wound into cavity +86385 Injury to appendix, without mention of open wound into cavity +86389 Injury to other gastrointestinal sites, without mention of open wound into cavity +86390 Injury to gastrointestinal tract, unspecified site, with open wound into cavity +86391 Injury to pancreas, head, with open wound into cavity +86392 Injury to pancreas, body, with open wound into cavity +86393 Injury to pancreas, tail, with open wound into cavity +86394 Injury to pancreas, multiple and unspecified sites, with open wound into cavity +86395 Injury to appendix, with open wound into cavity +86399 Injury to other gastrointestinal sites, with open wound into cavity +86400 Injury to liver without mention of open wound into cavity, unspecified injury +86401 Injury to liver without mention of open wound into cavity, hematoma and contusion +86402 Injury to liver without mention of open wound into cavity, laceration, minor +86403 Injury to liver without mention of open wound into cavity, laceration, moderate +86404 Injury to liver without mention of open wound into cavity, laceration, major +86405 Injury to liver without mention of open wound into cavity laceration, unspecified +86409 Other injury to liver without mention of open wound into cavity +86410 Injury to liver with open wound into cavity, unspecified injury +86411 Injury to liver with open wound into cavity, hematoma and contusion +86412 Injury to liver with open wound into cavity, laceration, minor +86413 Injury to liver with open wound into cavity, laceration, moderate +86414 Injury to liver with open wound into cavity, laceration, major +86415 Injury to liver with open wound into cavity, laceration, unspecified +86419 Other injury to liver with open wound into cavity +86500 Injury to spleen without mention of open wound into cavity, unspecified injury +86501 Injury to spleen without mention of open wound into cavity, hematoma without rupture of capsule +86502 Injury to spleen without mention of open wound into cavity, capsular tears, without major disruption of parenchyma +86503 Injury to spleen without mention of open wound into cavity, laceration extending into parenchyma +86504 Injury to spleen without mention of open wound into cavity, massive parenchymal disruption +86509 Other injury into spleen without mention of open wound into cavity +86510 Injury to spleen with open wound into cavity, unspecified injury +86511 Injury to spleen with open wound into cavity, hematoma without rupture of capsule +86512 Injury to spleen with open wound into cavity, capsular tears, without major disruption of parenchyma +86513 Injury to spleen with open wound into cavity, laceration extending into parenchyma +86514 Injury to spleen with open wound into cavity, massive parenchyma disruption +86519 Other injury to spleen with open wound into cavity +86600 Injury to kidney without mention of open wound into cavity, unspecified injury +86601 Injury to kidney without mention of open wound into cavity, hematoma without rupture of capsule +86602 Injury to kidney without mention of open wound into cavity, laceration +86603 Injury to kidney without mention of open wound into cavity, complete disruption of kidney parenchyma +86610 Injury to kidney with open wound into cavity, unspecified injury +86611 Injury to kidney with open wound into cavity, hematoma without rupture of capsule +86612 Injury to kidney with open wound into cavity, laceration +86613 Injury to kidney with open wound into cavity, complete disruption of kidney parenchyma +8670 Injury to bladder and urethra, without mention of open wound into cavity +8671 Injury to bladder and urethra, with open wound into cavity +8672 Injury to ureter, without mention of open wound into cavity +8673 Injury to ureter, with open wound into cavity +8674 Injury to uterus, without mention of open wound into cavity +8675 Injury to uterus, with open wound into cavity +8676 Injury to other specified pelvic organs, without mention of open wound into cavity +8677 Injury to other specified pelvic organs, with open wound into cavity +8678 Injury to unspecified pelvic organ, without mention of open wound into cavity +8679 Injury to unspecified pelvic organ, with open wound into cavity +86800 Injury to other intra-abdominal organs without mention of open wound into cavity, unspecified intra-abdominal organ +86801 Injury to other intra-abdominal organs without mention of open wound into cavity, adrenal gland +86802 Injury to other intra-abdominal organs without mention of open wound into cavity, bile duct and gallbladder +86803 Injury to other intra-abdominal organs without mention of open wound into cavity, peritoneum +86804 Injury to other intra-abdominal organs without mention of open wound into cavity, retroperitoneum +86809 Injury to other and multiple intra-abdominal organs without mention of open wound into cavity +86810 Injury to other intra-abdominal organs with open wound into cavity, unspecified intra-abdominal organ +86811 Injury to other intra-abdominal organs with open wound into cavity, adrenal gland +86812 Injury to other intra-abdominal organs with open wound into cavity, bile duct and gallbladder +86813 Injury to other intra-abdominal organs with open wound into cavity, peritoneum +86814 Injury to other intra-abdominal organs with open wound into cavity, retroperitoneum +86819 Injury to other and multiple intra-abdominal organs, with open wound into cavity +8690 Internal injury to unspecified or ill-defined organs without mention of open wound into cavity +8691 Internal injury to unspecified or ill-defined organs with open wound into cavity +8700 Laceration of skin of eyelid and periocular area +8701 Laceration of eyelid, full-thickness, not involving lacrimal passages +8702 Laceration of eyelid involving lacrimal passages +8703 Penetrating wound of orbit, without mention of foreign body +8704 Penetrating wound of orbit with foreign body +8708 Other specified open wounds of ocular adnexa +8709 Unspecified open wound of ocular adnexa +8710 Ocular laceration without prolapse of intraocular tissue +8711 Ocular laceration with prolapse or exposure of intraocular tissue +8712 Rupture of eye with partial loss of intraocular tissue +8713 Avulsion of eye +8714 Unspecified laceration of eye +8715 Penetration of eyeball with magnetic foreign body +8716 Penetration of eyeball with (nonmagnetic) foreign body +8717 Unspecified ocular penetration +8719 Unspecified open wound of eyeball +87200 Open wound of external ear, unspecified site, without mention of complication +87201 Open wound of auricle, ear, without mention of complication +87202 Open wound of auditory canal, without mention of complication +87210 Open wound of external ear, unspecified site, complicated +87211 Open wound of auricle, ear, complicated +87212 Open wound of auditory canal, complicated +87261 Open wound of ear drum, without mention of complication +87262 Open wound of ossicles, without mention of complication +87263 Open wound of eustachian tube, without mention of complication +87264 Open wound of cochlea, without mention of complication +87269 Open wound of other and multiple sites of ear, without mention of complication +87271 Open wound of ear drum, complicated +87272 Open wound of ossicles, complicated +87273 Open wound of eustachian tube, complicated +87274 Open wound of cochlea, complicated +87279 Open wound of other and multiple sites of ear, complicated +8728 Open wound of ear, part unspecified, without mention of complication +8729 Open wound of ear, part unspecified, complicated +8730 Open wound of scalp, without mention of complication +8731 Open wound of scalp, complicated +87320 Open wound of nose, unspecified site, without mention of complication +87321 Open wound of nasal septum, without mention of complication +87322 Open wound of nasal cavity, without mention of complication +87323 Open wound of nasal sinus, without mention of complication +87329 Open wound of multiple sites of nose, without mention of complication +87330 Open wound of nose, unspecified site, complicated +87331 Open wound of nasal septum, complicated +87332 Open wound of nasal cavity, complicated +87333 Open wound of nasal sinus, complicated +87339 Open wound of multiple sites of nose, complicated +87340 Open wound of face, unspecified site, without mention of complication +87341 Open wound of cheek, without mention of complication +87342 Open wound of forehead, without mention of complication +87343 Open wound of lip, without mention of complication +87344 Open wound of jaw, without mention of complication +87349 Open wound of other and multiple sites of face, without mention of complication +87350 Open wound of face, unspecified site, complicated +87351 Open wound of cheek, complicated +87352 Open wound of forehead, complicated +87353 Open wound of lip, complicated +87354 Open wound of jaw, complicated +87359 Open wound of other and multiple sites of face, complicated +87360 Open wound of mouth, unspecified site, without mention of complication +87361 Open wound of buccal mucosa, without mention of complication +87362 Open wound of gum (alveolar process), without mention of complication +87363 Open wound of tooth (broken) (fractured) (due to trauma), without mention of complication +87364 Open wound of tongue and floor of mouth, without mention of complication +87365 Open wound of palate, without mention of complication +87369 Open wound of other and multiple sites of mouth, without mention of complication +87370 Open wound of mouth, unspecified site, complicated +87371 Open wound of buccal mucosa, complicated +87372 Open wound of gum (alveolar process), complicated +87373 Open wound of tooth (broken) (fractured) (due to trauma), complicated +87374 Open wound of tongue and floor of mouth, complicated +87375 Open wound of palate, complicated +87379 Open wound of other and multiple sites of mouth, complicated +8738 Other and unspecified open wound of head without mention of complication +8739 Other and unspecified open wound of head, complicated +87400 Open wound of larynx with trachea, without mention of complication +87401 Open wound of larynx, without mention of complication +87402 Open wound of trachea, without mention of complication +87410 Open wound of larynx with trachea, complicated +87411 Open wound of larynx, complicated +87412 Open wound of trachea, complicated +8742 Open wound of thyroid gland, without mention of complication +8743 Open wound of thyroid gland, complicated +8744 Open wound of pharynx, without mention of complication +8745 Open wound of pharynx, complicated +8748 Open wound of other and unspecified parts of neck, without mention of complication +8749 Open wound of other and unspecified parts of neck, complicated +8750 Open wound of chest (wall), without mention of complication +8751 Open wound of chest (wall), complicated +8760 Open wound of back, without mention of complication +8761 Open wound of back, complicated +8770 Open wound of buttock, without mention of complication +8771 Open wound of buttock, complicated +8780 Open wound of penis, without mention of complication +8781 Open wound of penis, complicated +8782 Open wound of scrotum and testes, without mention of complication +8783 Open wound of scrotum and testes, complicated +8784 Open wound of vulva, without mention of complication +8785 Open wound of vulva, complicated +8786 Open wound of vagina, without mention of complication +8787 Open wound of vagina, complicated +8788 Open wound of other and unspecified parts of genital organs (external), without mention of complication +8789 Open wound of other and unspecified parts of genital organs (external), complicated +8790 Open wound of breast, without mention of complication +8791 Open wound of breast, complicated +8792 Open wound of abdominal wall, anterior, without mention of complication +8793 Open wound of abdominal wall, anterior, complicated +8794 Open wound of abdominal wall, lateral, without mention of complication +8795 Open wound of abdominal wall, lateral, complicated +8796 Open wound of other and unspecified parts of trunk, without mention of complication +8797 Open wound of other and unspecified parts of trunk, complicated +8798 Open wound(s) (multiple) of unspecified site(s), without mention of complication +8799 Open wound(s) (multiple) of unspecified site(s), complicated +88000 Open wound of shoulder region, without mention of complication +88001 Open wound of scapular region, without mention of complication +88002 Open wound of axillary region, without mention of complication +88003 Open wound of upper arm, without mention of complication +88009 Open wound of multiple sites of shoulder and upper arm, without mention of complication +88010 Open wound of shoulder region, complicated +88011 Open wound of scapular region, complicated +88012 Open wound of axillary region, complicated +88013 Open wound of upper arm, complicated +88019 Open wound of multiple sites of shoulder and upper arm, complicated +88020 Open wound of shoulder region, with tendon involvement +88021 Open wound of scapular region, with tendon involvement +88022 Open wound of axillary region, with tendon involvement +88023 Open wound of upper arm, with tendon involvement +88029 Open wound of multiple sites of shoulder and upper arm, with tendon involvement +88100 Open wound of forearm, without mention of complication +88101 Open wound of elbow, without mention of complication +88102 Open wound of wrist, without mention of complication +88110 Open wound of forearm, complicated +88111 Open wound of elbow, complicated +88112 Open wound of wrist, complicated +88120 Open wound of forearm, with tendon involvement +88121 Open wound of elbow, with tendon involvement +88122 Open wound of wrist, with tendon involvement +8820 Open wound of hand except finger(s) alone, without mention of complication +8821 Open wound of hand except finger(s) alone, complicated +8822 Open wound of hand except finger(s) alone, with tendon involvement +8830 Open wound of finger(s), without mention of complication +8831 Open wound of finger(s), complicated +8832 Open wound of finger(s), with tendon involvement +8840 Multiple and unspecified open wound of upper limb, without mention of complication +8841 Multiple and unspecified open wound of upper limb, complicated +8842 Multiple and unspecified open wound of upper limb, with tendon involvement +8850 Traumatic amputation of thumb (complete)(partial), without mention of complication +8851 Traumatic amputation of thumb (complete)(partial), complicated +8860 Traumatic amputation of other finger(s) (complete) (partial), without mention of complication +8861 Traumatic amputation of other finger(s) (complete) (partial), complicated +8870 Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, without mention of complication +8871 Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, complicated +8872 Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, without mention of complication +8873 Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, complicated +8874 Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, without mention of complication +8875 Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, complicated +8876 Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], without mention of complication +8877 Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], complicated +8900 Open wound of hip and thigh, without mention of complication +8901 Open wound of hip and thigh, complicated +8902 Open wound of hip and thigh, with tendon involvement +8910 Open wound of knee, leg [except thigh], and ankle, without mention of complication +8911 Open wound of knee, leg [except thigh], and ankle, complicated +8912 Open wound of knee, leg [except thigh], and ankle, with tendon involvement +8920 Open wound of foot except toe(s) alone, without mention of complication +8921 Open wound of foot except toe(s) alone, complicated +8922 Open wound of foot except toe(s) alone, with tendon involvement +8930 Open wound of toe(s), without mention of complication +8931 Open wound of toe(s), complicated +8932 Open wound of toe(s), with tendon involvement +8940 Multiple and unspecified open wound of lower limb, without mention of complication +8941 Multiple and unspecified open wound of lower limb, complicated +8942 Multiple and unspecified open wound of lower limb, with tendon involvement +8950 Traumatic amputation of toe(s) (complete) (partial), without mention of complication +8951 Traumatic amputation of toe(s) (complete) (partial), complicated +8960 Traumatic amputation of foot (complete) (partial), unilateral, without mention of complication +8961 Traumatic amputation of foot (complete) (partial), unilateral, complicated +8962 Traumatic amputation of foot (complete) (partial), bilateral, without mention of complication +8963 Traumatic amputation of foot (complete) (partial), bilateral, complicated +8970 Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, without mention of complication +8971 Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, complicated +8972 Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, without mention of complication +8973 Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, complicated +8974 Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, without mention of complication +8975 Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, complicated +8976 Traumatic amputation of leg(s) (complete) (partial), bilateral [any level]), without mention of complication +8977 Traumatic amputation of leg(s) (complete) (partial), bilateral [any level], complicated +90000 Injury to carotid artery, unspecified +90001 Injury to common carotid artery +90002 Injury to external carotid artery +90003 Injury to internal carotid artery +9001 Injury to internal jugular vein +90081 Injury to external jugular vein +90082 Injury to multiple blood vessels of head and neck +90089 Injury to other specified blood vessels of head and neck +9009 Injury to unspecified blood vessel of head and neck +9010 Injury to thoracic aorta +9011 Injury to innominate and subclavian arteries +9012 Injury to superior vena cava +9013 Injury to innominate and subclavian veins +90140 Injury to pulmonary vessel(s), unspecified +90141 Injury to pulmonary artery +90142 Injury to pulmonary vein +90181 Injury to intercostal artery or vein +90182 Injury to internal mammary artery or vein +90183 Injury to multiple blood vessels of thorax +90189 Injury to other specified blood vessels of thorax +9019 Injury to unspecified blood vessel of thorax +9020 Injury to abdominal aorta +90210 Injury to inferior vena cava, unspecified +90211 Injury to hepatic veins +90219 Injury to inferior vena cava, other +90220 Injury to celiac and mesenteric arteries, unspecified +90221 Injury to gastric artery +90222 Injury to hepatic artery +90223 Injury to splenic artery +90224 Injury to other specified branches of celiac axis +90225 Injury to superior mesenteric artery (trunk) +90226 Injury to primary branches of superior mesenteric artery +90227 Injury to inferior mesenteric artery +90229 Injury to celiac and mesenteric arteries, other +90231 Injury to superior mesenteric vein and primary subdivisions +90232 Injury to inferior mesenteric vein +90233 Injury to portal vein +90234 Injury to splenic vein +90239 Injury to portal and splenic veins, other +90240 Injury to renal vessel(s), unspecified +90241 Injury to renal artery +90242 Injury to renal vein +90249 Injury to renal blood vessels, other +90250 Injury to iliac vessel(s), unspecified +90251 Injury to hypogastric artery +90252 Injury to hypogastric vein +90253 Injury to iliac artery +90254 Injury to iliac vein +90255 Injury to uterine artery +90256 Injury to uterine vein +90259 Injury to iliac blood vessels, other +90281 Injury to ovarian artery +90282 Injury to ovarian vein +90287 Injury to multiple blood vessels of abdomen and pelvis +90289 Injury to other specified blood vessels of abdomen and pelvis +9029 Injury to unspecified blood vessel of abdomen and pelvis +90300 Injury to axillary vessel(s), unspecified +90301 Injury to axillary artery +90302 Injury to axillary vein +9031 Injury to brachial blood vessels +9032 Injury to radial blood vessels +9033 Injury to ulnar blood vessels +9034 Injury to palmar artery +9035 Injury to digital blood vessels +9038 Injury to other specified blood vessels of upper extremity +9039 Injury to unspecified blood vessel of upper extremity +9040 Injury to common femoral artery +9041 Injury to superficial femoral artery +9042 Injury to femoral veins +9043 Injury to saphenous veins +90440 Injury to popliteal vessel(s), unspecified +90441 Injury to popliteal artery +90442 Injury to popliteal vein +90450 Injury to tibial vessel(s), unspecified +90451 Injury to anterior tibial artery +90452 Injury to anterior tibial vein +90453 Injury to posterior tibial artery +90454 Injury to posterior tibial vein +9046 Injury to deep plantar blood vessels +9047 Injury to other specified blood vessels of lower extremity +9048 Injury to unspecified blood vessel of lower extremity +9049 Injury to blood vessels of unspecified site +9050 Late effect of fracture of skull and face bones +9051 Late effect of fracture of spine and trunk without mention of spinal cord lesion +9052 Late effect of fracture of upper extremities +9053 Late effect of fracture of neck of femur +9054 Late effect of fracture of lower extremities +9055 Late effect of fracture of multiple and unspecified bones +9056 Late effect of dislocation +9057 Late effect of sprain and strain without mention of tendon injury +9058 Late effect of tendon injury +9059 Late effect of traumatic amputation +9060 Late effect of open wound of head, neck, and trunk +9061 Late effect of open wound of extremities without mention of tendon injury +9062 Late effect of superficial injury +9063 Late effect of contusion +9064 Late effect of crushing +9065 Late effect of burn of eye, face, head, and neck +9066 Late effect of burn of wrist and hand +9067 Late effect of burn of other extremities +9068 Late effect of burns of other specified sites +9069 Late effect of burn of unspecified site +9070 Late effect of intracranial injury without mention of skull fracture +9071 Late effect of injury to cranial nerve +9072 Late effect of spinal cord injury +9073 Late effect of injury to nerve root(s), spinal plexus(es), and other nerves of trunk +9074 Late effect of injury to peripheral nerve of shoulder girdle and upper limb +9075 Late effect of injury to peripheral nerve of pelvic girdle and lower limb +9079 Late effect of injury to other and unspecified nerve +9080 Late effect of internal injury to chest +9081 Late effect of internal injury to intra-abdominal organs +9082 Late effect of internal injury to other internal organs +9083 Late effect of injury to blood vessel of head, neck, and extremities +9084 Late effect of injury to blood vessel of thorax, abdomen, and pelvis +9085 Late effect of foreign body in orifice +9086 Late effect of certain complications of trauma +9089 Late effect of unspecified injury +9090 Late effect of poisoning due to drug, medicinal or biological substance +9091 Late effect of toxic effects of nonmedical substances +9092 Late effect of radiation +9093 Late effect of complications of surgical and medical care +9094 Late effect of certain other external causes +9095 Late effect of adverse effect of drug, medicinal or biological substance +9099 Late effect of other and unspecified external causes +9100 Abrasion or friction burn of face, neck, and scalp except eye, without mention of infection +9101 Abrasion or friction burn of face, neck, and scalp except eye, infected +9102 Blister of face, neck, and scalp except eye, without mention of infection +9103 Blister of face, neck, and scalp except eye, infected +9104 Insect bite, nonvenomous of face, neck, and scalp except eye, without mention of infection +9105 Insect bite, nonvenomous of face, neck, and scalp except eye, infected +9106 Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound and without mention of infection +9107 Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound, infected +9108 Other and unspecified superficial injury of face, neck, and scalp, without mention of infection +9109 Other and unspecified superficial injury of face, neck, and scalp, infected +9110 Abrasion or friction burn of trunk, without mention of infection +9111 Abrasion or friction burn of trunk, infected +9112 Blister of trunk, without mention of infection +9113 Blister of trunk, infected +9114 Insect bite, nonvenomous of trunk, without mention of infection +9115 Insect bite, nonvenomous of trunk, infected +9116 Superficial foreign body (splinter) of trunk, without major open wound and without mention of infection +9117 Superficial foreign body (splinter) of trunk, without major open wound, infected +9118 Other and unspecified superficial injury of trunk, without mention of infection +9119 Other and unspecified superficial injury of trunk, infected +9120 Abrasion or friction burn of shoulder and upper arm, without mention of infection +9121 Abrasion or friction burn of shoulder and upper arm, infected +9122 Blister of shoulder and upper arm, without mention of infection +9123 Blister of shoulder and upper arm, infected +9124 Insect bite, nonvenomous of shoulder and upper arm, without mention of infection +9125 Insect bite, nonvenomous of shoulder and upper arm, infected +9126 Superficial foreign body (splinter) of shoulder and upper arm, without major open wound and without mention of infection +9127 Superficial foreign body (splinter) of shoulder and upper arm, without major open wound, infected +9128 Other and unspecified superficial injury of shoulder and upper arm, without mention of infection +9129 Other and unspecified superficial injury of shoulder and upper arm, infected +9130 Abrasion or friction burn of elbow, forearm, and wrist, without mention of infection +9131 Abrasion or friction burn of elbow, forearm, and wrist, infected +9132 Blister of elbow, forearm, and wrist, without mention of infection +9133 Blister of elbow, forearm, and wrist, infected +9134 Insect bite, nonvenomous of elbow, forearm, and wrist, without mention of infection +9135 Insect bite, nonvenomous, of elbow, forearm, and wrist, infected +9136 Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound and without mention of infection +9137 Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound, infected +9138 Other and unspecified superficial injury of elbow, forearm, and wrist, without mention of infection +9139 Other and unspecified superficial injury of elbow, forearm, and wrist, infected +9140 Abrasion or friction burn of hand(s) except finger(s) alone, without mention of infection +9141 Abrasion or friction burn of hand(s) except finger(s) alone, infected +9142 Blister of hand(s) except finger(s) alone, without mention of infection +9143 Blister of hand(s) except finger(s) alone, infected +9144 Insect bite, nonvenomous, of hand(s) except finger(s) alone, without mention of infection +9145 Insect bite, nonvenomous, of hand(s) except finger(s) alone, infected +9146 Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound and without mention of infection +9147 Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound, infected +9148 Other and unspecified superficial injury of hand(s) except finger(s) alone, without mention of infection +9149 Other and unspecified superficial injury of hand(s) except finger(s) alone, infected +9150 Abrasion or friction burn of finger(s), without mention of infection +9151 Abrasion or friction burn of finger(s), infected +9152 Blister of finger(s), without mention of infection +9153 Blister of finger(s), infected +9154 Insect bite, nonvenomous, of finger(s), without mention of infection +9155 Insect bite, nonvenomous of finger(s), infected +9156 Superficial foreign body (splinter) of finger(s), without major open wound and without mention of infection +9157 Superficial foreign body (splinter) of finger(s), without major open wound, infected +9158 Other and unspecified superficial injury of fingers without mention of infection +9159 Other and unspecified superficial injury of fingers, infected +9160 Abrasion or friction burn of hip, thigh, leg, and ankle, without mention of infection +9161 Abrasion or friction burn of hip, thigh, leg, and ankle, infected +9162 Blister of hip, thigh, leg, and ankle, without mention of infection +9163 Blister of hip, thigh, leg, and ankle, infected +9164 Insect bite, nonvenomous, of hip, thigh, leg, and ankle, without mention of infection +9165 Insect bite, nonvenomous of hip, thigh, leg, and ankle, infected +9166 Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound and without mention of infection +9167 Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound, infected +9168 Other and unspecified superficial injury of hip, thigh, leg, and ankle, without mention of infection +9169 Other and unspecified superficial injury of hip, thigh, leg, and ankle, infected +9170 Abrasion or friction burn of foot and toe(s), without mention of infection +9171 Abrasion or friction burn of foot and toe(s), infected +9172 Blister of foot and toe(s), without mention of infection +9173 Blister of foot and toe(s), infected +9174 Insect bite, nonvenomous, of foot and toe(s), without mention of infection +9175 Insect bite, nonvenomous, of foot and toe(s), infected +9176 Superficial foreign body (splinter) of foot and toe(s), without major open wound and without mention of infection +9177 Superficial foreign body (splinter) of foot and toe(s), without major open wound, infected +9178 Other and unspecified superficial injury of foot and toes, without mention of infection +9179 Other and unspecified superficial injury of foot and toes, infected +9180 Superficial injury of eyelids and periocular area +9181 Superficial injury of cornea +9182 Superficial injury of conjunctiva +9189 Other and unspecified superficial injuries of eye +9190 Abrasion or friction burn of other, multiple, and unspecified sites, without mention of infection +9191 Abrasion or friction burn of other, multiple, and unspecified sites, infected +9192 Blister of other, multiple, and unspecified sites, without mention of infection +9193 Blister of other, multiple, and unspecified sites, infected +9194 Insect bite, nonvenomous, of other, multiple, and unspecified sites, without mention of infection +9195 Insect bite, nonvenomous, of other, multiple, and unspecified sites, infected +9196 Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound and without mention of infection +9197 Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound, infected +9198 Other and unspecified superficial injury of other, multiple, and unspecified sites, without mention of infection +9199 Other and unspecified superficial injury of other, multiple, and unspecified sites, infected +920 Contusion of face, scalp, and neck except eye(s) +9210 Black eye, not otherwise specified +9211 Contusion of eyelids and periocular area +9212 Contusion of orbital tissues +9213 Contusion of eyeball +9219 Unspecified contusion of eye +9220 Contusion of breast +9221 Contusion of chest wall +9222 Contusion of abdominal wall +92231 Contusion of back +92232 Contusion of buttock +92233 Contusion of interscapular region +9224 Contusion of genital organs +9228 Contusion of multiple sites of trunk +9229 Contusion of unspecified part of trunk +92300 Contusion of shoulder region +92301 Contusion of scapular region +92302 Contusion of axillary region +92303 Contusion of upper arm +92309 Contusion of multiple sites of shoulder and upper arm +92310 Contusion of forearm +92311 Contusion of elbow +92320 Contusion of hand(s) +92321 Contusion of wrist +9233 Contusion of finger +9238 Contusion of multiple sites of upper limb +9239 Contusion of unspecified part of upper limb +92400 Contusion of thigh +92401 Contusion of hip +92410 Contusion of lower leg +92411 Contusion of knee +92420 Contusion of foot +92421 Contusion of ankle +9243 Contusion of toe +9244 Contusion of multiple sites of lower limb +9245 Contusion of unspecified part of lower limb +9248 Contusion of multiple sites, not elsewhere classified +9249 Contusion of unspecified site +9251 Crushing injury of face and scalp +9252 Crushing injury of neck +9260 Crushing injury of external genitalia +92611 Crushing injury of back +92612 Crushing injury of buttock +92619 Crushing injury of other specified sites of trunk +9268 Crushing injury of multiple sites of trunk +9269 Crushing injury of unspecified site of trunk +92700 Crushing injury of shoulder region +92701 Crushing injury of scapular region +92702 Crushing injury of axillary region +92703 Crushing injury of upper arm +92709 Crushing injury of multiple sites of upper arm +92710 Crushing injury of forearm +92711 Crushing injury of elbow +92720 Crushing injury of hand(s) +92721 Crushing injury of wrist +9273 Crushing injury of finger(s) +9278 Crushing injury of multiple sites of upper limb +9279 Crushing injury of unspecified site of upper limb +92800 Crushing injury of thigh +92801 Crushing injury of hip +92810 Crushing injury of lower leg +92811 Crushing injury of knee +92820 Crushing injury of foot +92821 Crushing injury of ankle +9283 Crushing injury of toe(s) +9288 Crushing injury of multiple sites of lower limb +9289 Crushing injury of unspecified site of lower limb +9290 Crushing injury of multiple sites, not elsewhere classified +9299 Crushing injury of unspecified site +9300 Corneal foreign body +9301 Foreign body in conjunctival sac +9302 Foreign body in lacrimal punctum +9308 Foreign body in other and combined sites on external eye +9309 Foreign body in unspecified site on external eye +931 Foreign body in ear +932 Foreign body in nose +9330 Foreign body in pharynx +9331 Foreign body in larynx +9340 Foreign body in trachea +9341 Foreign body in main bronchus +9348 Foreign body in other specified parts bronchus and lung +9349 Foreign body in respiratory tree, unspecified +9350 Foreign body in mouth +9351 Foreign body in esophagus +9352 Foreign body in stomach +936 Foreign body in intestine and colon +937 Foreign body in anus and rectum +938 Foreign body in digestive system, unspecified +9390 Foreign body in bladder and urethra +9391 Foreign body in uterus, any part +9392 Foreign body in vulva and vagina +9393 Foreign body in penis +9399 Foreign body in unspecified site in genitourinary tract +9400 Chemical burn of eyelids and periocular area +9401 Other burns of eyelids and periocular area +9402 Alkaline chemical burn of cornea and conjunctival sac +9403 Acid chemical burn of cornea and conjunctival sac +9404 Other burn of cornea and conjunctival sac +9405 Burn with resulting rupture and destruction of eyeball +9409 Unspecified burn of eye and adnexa +94100 Burn of unspecified degree of face and head, unspecified site +94101 Burn of unspecified degree of ear [any part] +94102 Burn of unspecified degree of eye (with other parts of face, head, and neck) +94103 Burn of unspecified degree of lip(s) +94104 Burn of unspecified degree of chin +94105 Burn of unspecified degree of nose (septum) +94106 Burn of unspecified degree of scalp [any part] +94107 Burn of unspecified degree of forehead and cheek +94108 Burn of unspecified degree of neck +94109 Burn of unspecified degree of multiple sites [except with eye] of face, head, and neck +94110 Erythema [first degree] of face and head, unspecified site +94111 Erythema [first degree] of ear [any part] +94112 Erythema [first degree] of eye (with other parts face, head, and neck) +94113 Erythema [first degree] of lip(s) +94114 Erythema [first degree] of chin +94115 Erythema [first degree] of nose (septum) +94116 Erythema [first degree] of scalp [any part] +94117 Erythema [first degree] of forehead and cheek +94118 Erythema [first degree] of neck +94119 Erythema [first degree] of multiple sites [except with eye] of face, head, and neck +94120 Blisters, epidermal loss [second degree] of face and head, unspecified site +94121 Blisters, epidermal loss [second degree] of ear [any part] +94122 Blisters, epidermal loss [second degree] of eye (with other parts of face, head, and neck) +94123 Blisters, epidermal loss [second degree] of lip(s) +94124 Blisters, epidermal loss [second degree] of chin +94125 Blisters, epidermal loss [second degree] of nose (septum) +94126 Blisters, epidermal loss [second degree] of scalp [any part] +94127 Blisters, epidermal loss [second degree] of forehead and cheek +94128 Blisters, epidermal loss [second degree] of neck +94129 Blisters, epidermal loss [second degree] of multiple sites [except with eye] of face, head, and neck +94130 Full-thickness skin loss [third degree, not otherwise specified] of face and head, unspecified site +94131 Full-thickness skin loss [third degree, not otherwise specified] of ear [any part] +94132 Full-thickness skin loss [third degree, not otherwise specified] of eye (with other parts of face, head, and neck) +94133 Full-thickness skin loss [third degree, not otherwise specified] of lip(s) +94134 Full-thickness skin loss [third degree, not otherwise specified] of chin +94135 Full-thickness skin loss [third degree, not otherwise specified] of nose (septum) +94136 Full-thickness skin loss [third degree, not otherwise specified] of scalp [any part] +94137 Full-thickness skin loss [third degree, not otherwise specified] of forehead and cheek +94138 Full-thickness skin loss [third degree, not otherwise specified] of neck +94139 Full-thickness skin loss [third degree, not otherwise specified] of multiple sites [except with eye] of face, head, and neck +94140 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, face and head, unspecified site +94141 Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, ear [any part] +94142 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of eye (with other parts of face, head, and neck) +94143 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lip(s) +94144 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chin +94145 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of nose (septum) +94146 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part of scalp [any part] +94147 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forehead and cheek +94148 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of neck +94149 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites [except with eye] of face, head, and neck +94150 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of face and head, unspecified site +94151 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ear [any part] +94152 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of eye (with other parts of face, head, and neck) +94153 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lip(s) +94154 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chin +94155 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of nose (septum) +94156 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scalp [any part] +94157 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of forehead and cheek +94158 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of neck +94159 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites [except with eye] of face, head, and neck +94200 Burn of unspecified degree of trunk, unspecified site +94201 Burn of unspecified degree of breast +94202 Burn of unspecified degree of chest wall, excluding breast and nipple +94203 Burn of unspecified degree of abdominal wall +94204 Burn of unspecified degree of back [any part] +94205 Burn of unspecified degree of genitalia +94209 Burn of unspecified degree of other and multiple sites of trunk +94210 Erythema [first degree] of trunk, unspecified site +94211 Erythema [first degree] of breast +94212 Erythema [first degree] of chest wall, excluding breast and nipple +94213 Erythema [first degree] of abdominal wall +94214 Erythema [first degree] of back [any part] +94215 Erythema [first degree] of genitalia +94219 Erythema [first degree] of other and multiple sites of trunk +94220 Blisters, epidermal loss [second degree] of trunk, unspecified site +94221 Blisters, epidermal loss [second degree] of breast +94222 Blisters, epidermal loss [second degree] of chest wall, excluding breast and nipple +94223 Blisters, epidermal loss [second degree] of abdominal wall +94224 Blisters, epidermal loss [second degree] of back [any part] +94225 Blisters, epidermal loss [second degree] of genitalia +94229 Blisters, epidermal loss [second degree] of other and multiple sites of trunk +94230 Full-thickness skin loss [third degree, not otherwise specified] of trunk, unspecified site +94231 Full-thickness skin loss [third degree,not otherwise specified] of breast +94232 Full-thickness skin loss [third degree, not otherwise specified] of chest wall, excluding breast and nipple +94233 Full-thickness skin loss [third degree, not otherwise specified] of abdominal wall +94234 Full-thickness skin loss [third degree,not otherwise specified] of back [any part] +94235 Full-thickness skin loss [third degree, not otherwise specified] of genitalia +94239 Full-thickness skin loss [third degree, not otherwise specified] of other and multiple sites of trunk +94240 Deep necrosis of underlying tissues [deep third degree] ) without mention of loss of a body part, of trunk, unspecified site +94241 Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, of breast +94242 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chest wall, excluding breast and nipple +94243 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of abdominal wall +94244 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back [any part] +94245 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of genitalia +94249 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of other and multiple sites of trunk +94250 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, trunk, unspecified site +94251 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of breast +94252 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chest wall, excluding breast and nipple +94253 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of abdominal wall +94254 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back [any part] +94255 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of genitalia +94259 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of other and multiple sites of trunk, +94300 Burn of unspecified degree of upper limb, except wrist and hand, unspecified site +94301 Burn of unspecified degree of forearm +94302 Burn of unspecified degree of elbow +94303 Burn of unspecified degree of upper arm +94304 Burn of unspecified degree of axilla +94305 Burn of unspecified degree of shoulder +94306 Burn of unspecified degree of scapular region +94309 Burn of unspecified degree of multiple sites of upper limb, except wrist and hand +94310 Erythema [first degree] of upper limb, unspecified site +94311 Erythema [first degree] of forearm +94312 Erythema [first degree] of elbow +94313 Erythema [first degree] of upper arm +94314 Erythema [first degree] of axilla +94315 Erythema [first degree] of shoulder +94316 Erythema [first degree] of scapular region +94319 Erythema [first degree] of multiple sites of upper limb, except wrist and hand +94320 Blisters, epidermal loss [second degree] of upper limb, unspecified site +94321 Blisters, epidermal loss [second degree] of forearm +94322 Blisters, epidermal loss [second degree] of elbow +94323 Blisters, epidermal loss [second degree] of upper arm +94324 Blisters, epidermal loss [second degree] of axilla +94325 Blisters, epidermal loss [second degree] of shoulder +94326 Blisters, epidermal loss [second degree] of scapular region +94329 Blisters, epidermal loss [second degree] of multiple sites of upper limb, except wrist and hand +94330 Full-thickness skin [third degree, not otherwise specified] of upper limb, unspecified site +94331 Full-thickness skin loss [third degree, not otherwise specified] of forearm +94332 Full-thickness skin loss [third degree, not otherwise specified] of elbow +94333 Full-thickness skin loss [third degree, not otherwise specified] of upper arm +94334 Full-thickness skin loss [third degree, not otherwise specified] of axilla +94335 Full-thickness skin loss [third degree, not otherwise specified] of shoulder +94336 Full-thickness skin loss [third degree, not otherwise specified] of scapular region +94339 Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of upper limb, except wrist and hand +94340 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper limb,unspecified site +94341 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forearm +94342 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of elbow +94343 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper arm +94344 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of axilla +94345 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of shoulder +94346 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of scapular region +94349 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of upper limb, except wrist and hand +94350 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper limb, unspecified site +94351 Deep necrosis of underlying tissues [deep third degree) with loss of a body part, of forearm +94352 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of elbow +94353 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper arm +94354 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of axilla +94355 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of shoulder +94356 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scapular region +94359 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of upper limb, except wrist and hand +94400 Burn of unspecified degree of hand, unspecified site +94401 Burn of unspecified degree of single digit (finger (nail) other than thumb +94402 Burn of unspecified degree of thumb (nail) +94403 Burn of unspecified degree of two or more digits of hand, not including thumb +94404 Burn of unspecified degree of two or more digits of hand, including thumb +94405 Burn of unspecified degree of palm +94406 Burn of unspecified degree of back of hand +94407 Burn of unspecified degree of wrist +94408 Burn of unspecified degree of multiple sites of wrist(s) and hand(s) +94410 Erythema [first degree] of hand, unspecified site +94411 Erythema [first degree] of single digit (finger (nail)) other than thumb +94412 Erythema [first degree] of thumb (nail) +94413 Erythema [first degree] of two or more digits of hand, not including thumb +94414 Erythema [first degree] of two or more digits of hand including thumb +94415 Erythema [first degree] of palm +94416 Erythema [first degree] of back of hand +94417 Erythema [first degree] of wrist +94418 Erythema [first degree] of multiple sites of wrist(s) and hand(s) +94420 Blisters, epidermal loss [second degree] of hand, unspecified site +94421 Blisters, epidermal loss [second degree] of single digit [finger (nail)] other than thumb +94422 Blisters, epidermal loss [second degree] of thumb (nail) +94423 Blisters, epidermal loss [second degree] of two or more digits of hand, not including thumb +94424 Blisters, epidermal loss [second degree] of two or more digits of hand including thumb +94425 Blisters, epidermal loss [second degree] of palm +94426 Blisters , epidermal loss [second degree] of back of hand +94427 Blisters, epidermal loss [second degree] of wrist +94428 Blisters, epidermal loss [second degree] of multiple sites of wrist(s) and hand(s) +94430 Full-thickness skin loss [third degree, not otherwise specified] of hand, unspecified site +94431 Full-thickness skin loss [third degree, not otherwise specified] of single digit [finger (nail)] other than thumb +94432 Full-thickness skin loss [third degree, not otherwise specified] of thumb (nail) +94433 Full-thickness skin loss [third degree, not otherwise specified]of two or more digits of hand, not including thumb +94434 Full-thickness skin loss [third degree, not otherwise specified] of two or more digits of hand including thumb +94435 Full-thickness skin loss [third degree, not otherwise specified] of palm of hand +94436 Full-thickness skin loss [third degree, not otherwise specified] of back of hand +94437 Full-thickness skin loss [third degree, not otherwise specified] of wrist +94438 Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of wrist(s) and hand(s) +94440 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, hand, unspecified site +94441 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, single digit [finger (nail)] other than thumb +94442 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, thumb (nail) +94443 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand, not including thumb +94444 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand including thumb +94445 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of palm of hand +94446 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back of hand +94447 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of wrist +94448 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of wrist(s) and hand(s) +94450 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of hand, unspecified site +94451 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of single digit [finger (nail)] other than thumb +94452 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thumb (nail) +94453 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand, not including thumb +94454 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand including thumb +94455 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of palm of hand +94456 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back of hand +94457 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of wrist +94458 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of wrist(s) and hand(s) +94500 Burn of unspecified degree of lower limb [leg], unspecified site +94501 Burn of unspecified degree of toe(s) (nail) +94502 Burn of unspecified degree of foot +94503 Burn of unspecified degree of ankle +94504 Burn of unspecified degree of lower leg +94505 Burn of unspecified degree of knee +94506 Burn of unspecified degree of thigh [any part] +94509 Burn of unspecified degree of multiple sites of lower limb(s) +94510 Erythema [first degree] of lower limb [leg], unspecified site +94511 Erythema [first degree] of toe(s) (nail) +94512 Erythema [first degree] of foot +94513 Erythema [first degree] of ankle +94514 Erythema [first degree] of lower leg +94515 Erythema [first degree] of knee +94516 Erythema [first degree] of thigh [any part] +94519 Erythema [first degree] of multiple sites of lower limb(s) +94520 Blisters, epidermal loss [second degree] of lower limb [leg], unspecified site +94521 Blisters, epidermal loss [second degree] of toe(s) (nail) +94522 Blisters, epidermal loss [second degree] of foot +94523 Blisters, epidermal loss [second degree] of ankle +94524 Blisters, epidermal loss [second degree] of lower leg +94525 Blisters, epidermal loss [second degree] of knee +94526 Blisters, epidermal loss [second degree] of thigh [any part] +94529 Blisters, epidermal loss [second degree] of multiple sites of lower limb(s) +94530 Full-thickness skin loss [third degree NOS] of lower limb [leg] unspecified site +94531 Full-thickness skin loss [third degree NOS] of toe(s) (nail) +94532 Full-thickness skin loss [third degree NOS] of foot +94533 Full-thickness skin loss [third degree NOS] of ankle +94534 Full-thickness skin loss [third degree nos] of lower leg +94535 Full-thickness skin loss [third degree NOS] of knee +94536 Full-thickness skin loss [third degree NOS] of thigh [any part] +94539 Full-thickness skin loss [third degree NOS] of multiple sites of lower limb(s) +94540 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, lower limb [leg], unspecified site +94541 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of toe(s)(nail) +94542 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of foot +94543 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of ankle +94544 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lower leg +94545 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of knee +94546 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of thigh [any part] +94549 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of lower limb(s) +94550 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower limb [leg], unspecified site +94551 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of toe(s) (nail) +94552 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of foot +94553 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ankle +94554 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower leg +94555 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of knee +94556 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thigh [any part] +94559 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of lower limb(s) +9460 Burns of multiple specified sites, unspecified degree +9461 Erythema [first degree] of multiple specified sites +9462 Blisters, epidermal loss [second degree] of multiple specified sites +9463 Full-thickness skin loss [third degree NOS] of multiple specified sites +9464 Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple specified sites +9465 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple specified sites +9470 Burn of mouth and pharynx +9471 Burn of larynx, trachea, and lung +9472 Burn of esophagus +9473 Burn of gastrointestinal tract +9474 Burn of vagina and uterus +9478 Burn of other specified sites of internal organs +9479 Burn of internal organs, unspecified site +94800 Burn [any degree] involving less than 10 percent of body surface with third degree burn, less than 10 percent or unspecified +94810 Burn [any degree] involving 10-19 percent of body surface with third degree burn, less than 10 percent or unspecified +94811 Burn [any degree] involving 10-19 percent of body surface with third degree burn, 10-19% +94820 Burn [any degree] involving 20-29 percent of body surface with third degree burn, less than 10 percent or unspecified +94821 Burn [any degree] involving 20-29 percent of body surface with third degree burn, 10-19% +94822 Burn [any degree] involving 20-29 percent of body surface with third degree burn, 20-29% +94830 Burn [any degree] involving 30-39 percent of body surface with third degree burn, less than 10 percent or unspecified +94831 Burn [any degree] involving 30-39 percent of body surface with third degree burn, 10-19% +94832 Burn [any degree] involving 30-39 percent of body surface with third degree burn, 20-29% +94833 Burn [any degree] involving 30-39 percent of body surface with third degree burn, 30-39% +94840 Burn [any degree] involving 40-49 percent of body surface with third degree burn, less than 10 percent or unspecified +94841 Burn [any degree] involving 40-49 percent of body surface with third degree burn, 10-19% +94842 Burn [any degree] involving 40-49 percent of body surface with third degree burn, 20-29% +94843 Burn [any degree] involving 40-49 percent of body surface with third degree burn, 30-39% +94844 Burn [any degree] involving 40-49 percent of body surface with third degree burn, 40-49% +94850 Burn [any degree] involving 50-59 percent of body surface with third degree burn, less than 10 percent or unspecified +94851 Burn [any degree] involving 50-59 percent of body surface with third degree burn, 10-19% +94852 Burn [any degree] involving 50-59 percent of body surface with third degree burn, 20-29% +94853 Burn [any degree] involving 50-59 percent of body surface with third degree burn, 30-39% +94854 Burn [any degree] involving 50-59 percent of body surface with third degree burn, 40-49% +94855 Burn [any degree] involving 50-59 percent of body surface with third degree burn, 50-59% +94860 Burn [any degree] involving 60-69 percent of body surface with third degree burn, less than 10 percent or unspecified +94861 Burn [any degree] involving 60-69 percent of body surface with third degree burn, 10-19% +94862 Burn [any degree] involving 60-69 percent of body surface with third degree burn, 20-29% +94863 Burn [any degree] involving 60-69 percent of body surface with third degree burn, 30-39% +94864 Burn [any degree] involving 60-69 percent of body surface with third degree burn, 40-49% +94865 Burn (any degree) involving 60-69 percent of body surface with third degree burn, 50-59% +94866 Burn [any degree] involving 60-69 percent of body surface with third degree burn, 60-69% +94870 Burn [any degree] involving 70-79 percent of body surface with third degree burn, less than 10 percent or unspecified +94871 Burn [any degree] involving 70-79 percent of body surface with third degree burn, 10-19% +94872 Burn [any degree] involving 70-79 percent of body surface with third degree burn, 20-29% +94873 Burn [any degree] involving 70-79 percent of body surface with third degree burn, 30-39% +94874 Burn [any degree] involving 70-79 percent of body surface with third degree burn, 40-49% +94875 Burn [any degree] involving 70-79 percent of body surface with third degree burn, 50-59% +94876 Burn [any degree] involving 70-79 percent of body surface with third degree burn, 60-69% +94877 Burn [any degree] involving 70-79 percent of body surface with third degree burn, 70-79% +94880 Burn [any degree] involving 80-89 percent of body surface with third degree burn, less than 10 percent or unspecified +94881 Burn [any degree] involving 80-89 percent of body surface with third degree burn, 10-19% +94882 Burn [any degree] involving 80-89 percent of body surface with third degree burn, 20-29% +94883 Burn [any degree] involving 80-89 percent of body surface with third degree burn, 30-39% +94884 Burn [any degree] involving 80-89 percent of body surface with third degree burn, 40-49% +94885 Burn [any degree] involving 80-89 percent of body surface with third degree burn, 50-59% +94886 Burn [any degree] involving 80-89 percent of body surface with third degree burn, 60-69% +94887 Burn [any degree] involving 80-89 percent of body surface with third degree burn, 70-79% +94888 Burn [any degree] involving 80-89 percent of body surface with third degree burn, 80-89% +94890 Burn [any degree] involving 90 percent or more of body surface with third degree burn, less than 10 percent or unspecified +94891 Burn [any degree] involving 90 percent or more of body surface with third degree burn, 10-19% +94892 Burn [any degree] involving 90 percent or more of body surface with third degree burn, 20-29% +94893 Burn [any degree] involving 90 percent or more of body surface with third degree burn, 30-39% +94894 Burn [any degree] involving 90 percent or more of body surface with third degree burn, 40-49% +94895 Burn [any degree] involving 90 percent or more of body surface with third degree burn, 50-59% +94896 Burn [any degree] involving 90 percent or more of body surface with third degree burn, 60-69% +94897 Burn [any degree] involving 90 percent or more of body surface with third degree burn, 70-79% +94898 Burn [any degree] involving 90 percent or more of body surface with third degree burn, 80-89% +94899 Burn [any degree] involving 90 percent or more of body surface with third degree burn, 90% or more of body surface +9490 Burn of unspecified site, unspecified degree +9491 Erythema [first degree], unspecified site +9492 Blisters, epidermal loss [second degree], unspecified site +9493 Full-thickness skin loss [third degree nos] +9494 Deep necrosis of underlying tissue [deep third degree] without mention of loss of a body part, unspecified +9495 Deep necrosis of underlying tissues [deep third degree] with loss of a body part, unspecified +9500 Optic nerve injury +9501 Injury to optic chiasm +9502 Injury to optic pathways +9503 Injury to visual cortex +9509 Injury to unspecified optic nerve and pathways +9510 Injury to oculomotor nerve +9511 Injury to trochlear nerve +9512 Injury to trigeminal nerve +9513 Injury to abducens nerve +9514 Injury to facial nerve +9515 Injury to acoustic nerve +9516 Injury to accessory nerve +9517 Injury to hypoglossal nerve +9518 Injury to other specified cranial nerves +9519 Injury to unspecified cranial nerve +95200 C1-C4 level with unspecified spinal cord injury +95201 C1-C4 level with complete lesion of spinal cord +95202 C1-C4 level with anterior cord syndrome +95203 C1-C4 level with central cord syndrome +95204 C1-C4 level with other specified spinal cord injury +95205 C5-C7 level with unspecified spinal cord injury +95206 C5-C7 level with complete lesion of spinal cord +95207 C5-C7 level with anterior cord syndrome +95208 C5-C7 level with central cord syndrome +95209 C5-C7 level with other specified spinal cord injury +95210 T1-T6 level with unspecified spinal cord injury +95211 T1-T6 level with complete lesion of spinal cord +95212 T1-T6 level with anterior cord syndrome +95213 T1-T6 level with central cord syndrome +95214 T1-T6 level with other specified spinal cord injury +95215 T7-T12 level with unspecified spinal cord injury +95216 T7-T12 level with complete lesion of spinal cord +95217 T7-T12 level with anterior cord syndrome +95218 T7-T12 level with central cord syndrome +95219 T7-T12 level with other specified spinal cord injury +9522 Lumbar spinal cord injury without evidence of spinal bone injury +9523 Sacral spinal cord injury without evidence of spinal bone injury +9524 Cauda equina spinal cord injury without evidence of spinal bone injury +9528 Multiple sites of spinal cord injury without evidence of spinal bone injury +9529 Unspecified site of spinal cord injury without evidence of spinal bone injury +9530 Injury to cervical nerve root +9531 Injury to dorsal nerve root +9532 Injury to lumbar nerve root +9533 Injury to sacral nerve root +9534 Injury to brachial plexus +9535 Injury to lumbosacral plexus +9538 Injury to multiple sites of nerve roots and spinal plexus +9539 Injury to unspecified site of nerve roots and spinal plexus +9540 Injury to cervical sympathetic nerve, excluding shoulder and pelvic girdles +9541 Injury to other sympathetic nerve, excluding shoulder and pelvic girdles +9548 Injury to other specified nerve(s) of trunk, excluding shoulder and pelvic girdles +9549 Injury to unspecified nerve of trunk, excluding shoulder and pelvic girdles +9550 Injury to axillary nerve +9551 Injury to median nerve +9552 Injury to ulnar nerve +9553 Injury to radial nerve +9554 Injury to musculocutaneous nerve +9555 Injury to cutaneous sensory nerve, upper limb +9556 Injury to digital nerve, upper limb +9557 Injury to other specified nerve(s) of shoulder girdle and upper limb +9558 Injury to multiple nerves of shoulder girdle and upper limb +9559 Injury to unspecified nerve of shoulder girdle and upper limb +9560 Injury to sciatic nerve +9561 Injury to femoral nerve +9562 Injury to posterior tibial nerve +9563 Injury to peroneal nerve +9564 Injury to cutaneous sensory nerve, lower limb +9565 Injury to other specified nerve(s) of pelvic girdle and lower limb +9568 Injury to multiple nerves of pelvic girdle and lower limb +9569 Injury to unspecified nerve of pelvic girdle and lower limb +9570 Injury to superficial nerves of head and neck +9571 Injury to other specified nerve(s) +9578 Injury to multiple nerves in several parts +9579 Injury to nerves, unspecified site +9580 Air embolism +9581 Fat embolism +9582 Secondary and recurrent hemorrhage +9583 Posttraumatic wound infection not elsewhere classified +9584 Traumatic shock +9585 Traumatic anuria +9586 Volkmann's ischemic contracture +9587 Traumatic subcutaneous emphysema +9588 Other early complications of trauma +95890 Compartment syndrome, unspecified +95891 Traumatic compartment syndrome of upper extremity +95892 Traumatic compartment syndrome of lower extremity +95893 Traumatic compartment syndrome of abdomen +95899 Traumatic compartment syndrome of other sites +95901 Head injury, unspecified +95909 Injury of face and neck +95911 Other injury of chest wall +95912 Other injury of abdomen +95913 Fracture of corpus cavernosum penis +95914 Other injury of external genitals +95919 Other injury of other sites of trunk +9592 Shoulder and upper arm injury +9593 Elbow, forearm, and wrist injury +9594 Hand, except finger injury +9595 Finger injury +9596 Hip and thigh injury +9597 Knee, leg, ankle, and foot injury +9598 Other specified sites, including multiple injury +9599 Unspecified site injury +9600 Poisoning by penicillins +9601 Poisoning by antifungal antibiotics +9602 Poisoning by chloramphenicol group +9603 Poisoning by erythromycin and other macrolides +9604 Poisoning by tetracycline group +9605 Poisoning of cephalosporin group +9606 Poisoning of antimycobacterial antibiotics +9607 Poisoning by antineoplastic antibiotics +9608 Poisoning by other specified antibiotics +9609 Poisoning by unspecified antibiotic +9610 Poisoning by sulfonamides +9611 Poisoning by arsenical anti-infectives +9612 Poisoning by heavy metal anti-infectives +9613 Poisoning by quinoline and hydroxyquinoline derivatives +9614 Poisoning by antimalarials and drugs acting on other blood protozoa +9615 Poisoning by other antiprotozoal drugs +9616 Poisoning by anthelmintics +9617 Poisoning by antiviral drugs +9618 Poisoning by other antimycobacterial drugs +9619 Poisoning by other and unspecified anti-infectives +9620 Poisoning by adrenal cortical steroids +9621 Poisoning by androgens and anabolic congeners +9622 Poisoning by ovarian hormones and synthetic substitutes +9623 Poisoning by insulins and antidiabetic agents +9624 Poisoning by anterior pituitary hormones +9625 Poisoning by posterior pituitary hormones +9626 Poisoning by parathyroid and parathyroid derivatives +9627 Poisoning by thyroid and thyroid derivatives +9628 Poisoning by antithyroid agents +9629 Poisoning by other and unspecified hormones and synthetic substitutes +9630 Poisoning by antiallergic and antiemetic drugs +9631 Poisoning by antineoplastic and immunosuppressive drugs +9632 Poisoning by acidifying agents +9633 Poisoning by alkalizing agents +9634 Poisoning by enzymes, not elsewhere classified +9635 Poisoning by vitamins, not elsewhere classified +9638 Poisoning by other specified systemic agents +9639 Poisoning by unspecified systemic agent +9640 Poisoning by iron and its compounds +9641 Poisoning by liver preparations and other antianemic agents +9642 Poisoning by anticoagulants +9643 Poisoning by vitamin K (phytonadione) +9644 Poisoning by fibrinolysis-affecting drugs +9645 Poisoning by anticoagulant antagonists and other coagulants +9646 Poisoning by gamma globulin +9647 Poisoning by natural blood and blood products +9648 Poisoning by other specified agents affecting blood constituents +9649 Poisoning by unspecified agent affecting blood constituents +96500 Poisoning by opium (alkaloids), unspecified +96501 Poisoning by heroin +96502 Poisoning by methadone +96509 Poisoning by other opiates and related narcotics +9651 Poisoning by salicylates +9654 Poisoning by aromatic analgesics, not elsewhere classified +9655 Poisoning by pyrazole derivatives +96561 Poisoning by propionic acid derivatives +96569 Poisoning by other antirheumatics +9657 Poisoning by other non-narcotic analgesics +9658 Poisoning by other specified analgesics and antipyretics +9659 Poisoning by unspecified analgesic and antipyretic +9660 Poisoning by oxazolidine derivatives +9661 Poisoning by hydantoin derivatives +9662 Poisoning by succinimides +9663 Poisoning by other and unspecified anticonvulsants +9664 Poisoning by anti-Parkinsonism drugs +9670 Poisoning by barbiturates +9671 Poisoning by chloral hydrate group +9672 Poisoning by paraldehyde +9673 Poisoning by bromine compounds +9674 Poisoning by methaqualone compounds +9675 Poisoning by glutethimide group +9676 Poisoning by mixed sedatives, not elsewhere classified +9678 Poisoning by other sedatives and hypnotics +9679 Poisoning by unspecified sedative or hypnotic +9680 Poisoning by central nervous system muscle-tone depressants +9681 Poisoning by halothane +9682 Poisoning by other gaseous anesthetics +9683 Poisoning by intravenous anesthetics +9684 Poisoning by other and unspecified general anesthetics +9685 Surface (topical) and infiltration anesthetics +9686 Poisoning by peripheral nerve- and plexus-blocking anesthetics +9687 Poisoning by spinal anesthetics +9689 Poisoning by other and unspecified local anesthetics +96900 Poisoning by antidepressant, unspecified +96901 Poisoning by monoamine oxidase inhibitors +96902 Poisoning by selective serotonin and norepinephrine reuptake inhibitors +96903 Poisoning by selective serotonin reuptake inhibitors +96904 Poisoning by tetracyclic antidepressants +96905 Poisoning by tricyclic antidepressants +96909 Poisoning by other antidepressants +9691 Poisoning by phenothiazine-based tranquilizers +9692 Poisoning by butyrophenone-based tranquilizers +9693 Poisoning by other antipsychotics, neuroleptics, and major tranquilizers +9694 Poisoning by benzodiazepine-based tranquilizers +9695 Poisoning by other tranquilizers +9696 Poisoning by psychodysleptics (hallucinogens) +96970 Poisoning by psychostimulant, unspecified +96971 Poisoning by caffeine +96972 Poisoning by amphetamines +96973 Poisoning by methylphenidate +96979 Poisoning by other psychostimulants +9698 Poisoning by other specified psychotropic agents +9699 Poisoning by unspecified psychotropic agent +9700 Poisoning by analeptics +9701 Poisoning by opiate antagonists +97081 Poisoning by cocaine +97089 Poisoning by other central nervous system stimulants +9709 Poisoning by unspecified central nervous system stimulant +9710 Poisoning by parasympathomimetics (cholinergics) +9711 Poisoning by parasympatholytics (anticholinergics and antimuscarinics) and spasmolytics +9712 Poisoning by sympathomimetics [adrenergics] +9713 Poisoning by sympatholytics [antiadrenergics] +9719 Poisoning by unspecified drug primarily affecting autonomic nervous system +9720 Poisoning by cardiac rhythm regulators +9721 Poisoning by cardiotonic glycosides and drugs of similar action +9722 Poisoning by antilipemic and antiarteriosclerotic drugs +9723 Poisoning by ganglion-blocking agents +9724 Poisoning by coronary vasodilators +9725 Poisoning by other vasodilators +9726 Poisoning by other antihypertensive agents +9727 Poisoning by antivaricose drugs, including sclerosing agents +9728 Poisoning by capillary-active drugs +9729 Poisoning by other and unspecified agents primarily affecting the cardiovascular system +9730 Poisoning by antacids and antigastric secretion drugs +9731 Poisoning by irritant cathartics +9732 Poisoning by emollient cathartics +9733 Poisoning by other cathartics, including intestinal atonia +9734 Poisoning by digestants +9735 Poisoning by antidiarrheal drugs +9736 Poisoning by emetics +9738 Poisoning by other specified agents primarily affecting the gastrointestinal system +9739 Poisoning by unspecified agent primarily affecting the gastrointestinal system +9740 Poisoning by mercurial diuretics +9741 Poisoning by purine derivative diuretics +9742 Poisoning by carbonic acid anhydrase inhibitors +9743 Poisoning by saluretics +9744 Poisoning by other diuretics +9745 Poisoning by electrolytic, caloric, and water-balance agents +9746 Poisoning by other mineral salts, not elsewhere classified +9747 Poisoning by uric acid metabolism drugs +9750 Poisoning by oxytocic agents +9751 Poisoning by smooth muscle relaxants +9752 Poisoning by skeletal muscle relaxants +9753 Poisoning by other and unspecified drugs acting on muscles +9754 Poisoning by antitussives +9755 Poisoning by expectorants +9756 Poisoning by anti-common cold drugs +9757 Poisoning by antiasthmatics +9758 Poisoning by other and unspecified respiratory drugs +9760 Poisoning by local anti-infectives and anti-inflammatory drugs +9761 Poisoning by antipruritics +9762 Poisoning by local astringents and local detergents +9763 Poisoning by emollients, demulcents, and protectants +9764 Poisoning by keratolytics, keratoplastics, other hair treatment drugs and preparations +9765 Poisoning by eye anti-infectives and other eye drugs +9766 Poisoning by anti-infectives and other drugs and preparations for ear, nose, and throat +9767 Poisoning by dental drugs topically applied +9768 Poisoning by other agents primarily affecting skin and mucous membrane +9769 Poisoning by unspecified agent primarily affecting skin and mucous membrane +9770 Poisoning by dietetics +9771 Poisoning by lipotropic drugs +9772 Poisoning by antidotes and chelating agents, not elsewhere classified +9773 Poisoning by alcohol deterrents +9774 Poisoning by pharmaceutical excipients +9778 Poisoning by other specified drugs and medicinal substances +9779 Poisoning by unspecified drug or medicinal substance +9780 Poisoning by BCG vaccine +9781 Poisoning by typhoid and paratyphoid vaccine +9782 Poisoning by cholera vaccine +9783 Poisoning by plague vaccine +9784 Poisoning by tetanus vaccine +9785 Poisoning by diphtheria vaccine +9786 Poisoning by pertussis vaccine, including combinations with a pertussis component +9788 Poisoning by other and unspecified bacterial vaccines +9789 Poisoning by mixed bacterial vaccines, except combinations with a pertussis component +9790 Poisoning by smallpox vaccine +9791 Poisoning by rabies vaccine +9792 Poisoning by typhus vaccine +9793 Poisoning by yellow fever vaccine +9794 Poisoning by measles vaccine +9795 Poisoning by poliomyelitis vaccine +9796 Poisoning by other and unspecified viral and rickettsial vaccines +9797 Poisoning by mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component +9799 Poisoning by other and unspecified vaccines and biological substances +9800 Toxic effect of ethyl alcohol +9801 Toxic effect of methyl alcohol +9802 Toxic effect of isopropyl alcohol +9803 Toxic effect of fusel oil +9808 Toxic effect of other specified alcohols +9809 Toxic effect of unspecified alcohol +981 Toxic effect of petroleum products +9820 Toxic effect of benzene and homologues +9821 Toxic effect of carbon tetrachloride +9822 Toxic effect of carbon disulfide +9823 Toxic effect of other chlorinated hydrocarbon solvents +9824 Toxic effect of nitroglycol +9828 Toxic effect of other nonpetroleum-based solvents +9830 Toxic effect of corrosive aromatics +9831 Toxic effect of acids +9832 Toxic effect of caustic alkalis +9839 Toxic effect of caustic, unspecified +9840 Toxic effect of inorganic lead compounds +9841 Toxic effect of organic lead compounds +9848 Toxic effect of other lead compounds +9849 Toxic effect of unspecified lead compound +9850 Toxic effect of mercury and its compounds +9851 Toxic effect of arsenic and its compounds +9852 Toxic effect of manganese and its compounds +9853 Toxic effect of beryllium and its compounds +9854 Toxic effect of antimony and its compounds +9855 Toxic effect of cadmium and its compounds +9856 Toxic effect of chromium +9858 Toxic effect of other specified metals +9859 Toxic effect of unspecified metal +986 Toxic effect of carbon monoxide +9870 Toxic effect of liquefied petroleum gases +9871 Toxic effect of other hydrocarbon gas +9872 Toxic effect of nitrogen oxides +9873 Toxic effect of sulfur dioxide +9874 Toxic effect of freon +9875 Toxic effect of lacrimogenic gas +9876 Toxic effect of chlorine gas +9877 Toxic effect of hydrocyanic acid gas +9878 Toxic effect of other specified gases, fumes, or vapors +9879 Toxic effect of unspecified gas, fume, or vapor +9880 Toxic effect of fish and shellfish eaten as food +9881 Toxic effect of mushrooms eaten as food +9882 Toxic effect of berries and other plants eaten as food +9888 Toxic effect of other specified noxious substances eaten as food +9889 Toxic effect of unspecified noxious substance eaten as food +9890 Toxic effect of hydrocyanic acid and cyanides +9891 Toxic effect of strychnine and salts +9892 Toxic effect of chlorinated hydrocarbons +9893 Toxic effect of organophosphate and carbamate +9894 Toxic effect of other pesticides, not elsewhere classified +9895 Toxic effect of venom +9896 Toxic effect of soaps and detergents +9897 Toxic effect of aflatoxin and other mycotoxin (food contaminants) +98981 Toxic effect of asbestos +98982 Toxic effect of latex +98983 Toxic effect of silicone +98984 Toxic effect of tobacco +98989 Toxic effect of other substance, chiefly nonmedicinal as to source, not elsewhere classified +9899 Toxic effect of unspecified substance, chiefly nonmedicinal as to source +990 Effects of radiation, unspecified +9910 Frostbite of face +9911 Frostbite of hand +9912 Frostbite of foot +9913 Frostbite of other and unspecified sites +9914 Immersion foot +9915 Chilblains +9916 Hypothermia +9918 Other specified effects of reduced temperature +9919 Unspecified effect of reduced temperature +9920 Heat stroke and sunstroke +9921 Heat syncope +9922 Heat cramps +9923 Heat exhaustion, anhydrotic +9924 Heat exhaustion due to salt depletion +9925 Heat exhaustion, unspecified +9926 Heat fatigue, transient +9927 Heat edema +9928 Other specified heat effects +9929 Unspecified effects of heat and light +9930 Barotrauma, otitic +9931 Barotrauma, sinus +9932 Other and unspecified effects of high altitude +9933 Caisson disease +9934 Effects of air pressure caused by explosion +9938 Other specified effects of air pressure +9939 Unspecified effect of air pressure +9940 Effects of lightning +9941 Drowning and nonfatal submersion +9942 Effects of hunger +9943 Effects of thirst +9944 Exhaustion due to exposure +9945 Exhaustion due to excessive exertion +9946 Motion sickness +9947 Asphyxiation and strangulation +9948 Electrocution and nonfatal effects of electric current +9949 Other effects of external causes +9950 Other anaphylactic reaction +9951 Angioneurotic edema, not elsewhere classified +99520 Unspecified adverse effect of unspecified drug, medicinal and biological substance +99521 Arthus phenomenon +99522 Unspecified adverse effect of anesthesia +99523 Unspecified adverse effect of insulin +99524 Failed moderate sedation during procedure +99527 Other drug allergy +99529 Unspecified adverse effect of other drug, medicinal and biological substance +9953 Allergy, unspecified, not elsewhere classified +9954 Shock due to anesthesia, not elsewhere classified +99550 Child abuse, unspecified +99551 Child emotional/psychological abuse +99552 Child neglect (nutritional) +99553 Child sexual abuse +99554 Child physical abuse +99555 Shaken baby syndrome +99559 Other child abuse and neglect +99560 Anaphylactic reaction due to unspecified food +99561 Anaphylactic reaction due to peanuts +99562 Anaphylactic reaction due to crustaceans +99563 Anaphylactic reaction due to fruits and vegetables +99564 Anaphylactic reaction due to tree nuts and seeds +99565 Anaphylactic reaction due to fish +99566 Anaphylactic reaction due to food additives +99567 Anaphylactic reaction due to milk products +99568 Anaphylactic reaction due to eggs +99569 Anaphylactic reaction due to other specified food +9957 Other adverse food reactions, not elsewhere classified +99580 Adult maltreatment, unspecified +99581 Adult physical abuse +99582 Adult emotional/psychological abuse +99583 Adult sexual abuse +99584 Adult neglect (nutritional) +99585 Other adult abuse and neglect +99586 Malignant hyperthermia +99589 Other specified adverse effects, not elsewhere classified +99590 Systemic inflammatory response syndrome, unspecified +99591 Sepsis +99592 Severe sepsis +99593 Systemic inflammatory response syndrome due to noninfectious process without acute organ dysfunction +99594 Systemic inflammatory response syndrome due to noninfectious process with acute organ dysfunction +99600 Mechanical complication of unspecified cardiac device, implant, and graft +99601 Mechanical complication due to cardiac pacemaker (electrode) +99602 Mechanical complication due to heart valve prosthesis +99603 Mechanical complication due to coronary bypass graft +99604 Mechanical complication of automatic implantable cardiac defibrillator +99609 Other mechanical complication of cardiac device, implant, and graft +9961 Mechanical complication of other vascular device, implant, and graft +9962 Mechanical complication of nervous system device, implant, and graft +99630 Mechanical complication of unspecified genitourinary device, implant, and graft +99631 Mechanical complication due to urethral (indwelling) catheter +99632 Mechanical complication due to intrauterine contraceptive device +99639 Other mechanical complication of genitourinary device, implant, and graft +99640 Unspecified mechanical complication of internal orthopedic device, implant, and graft +99641 Mechanical loosening of prosthetic joint +99642 Dislocation of prosthetic joint +99643 Broken prosthetic joint implant +99644 Peri-prosthetic fracture around prosthetic joint +99645 Peri-prosthetic osteolysis +99646 Articular bearing surface wear of prosthetic joint +99647 Other mechanical complication of prosthetic joint implant +99649 Other mechanical complication of other internal orthopedic device, implant, and graft +99651 Mechanical complication due to corneal graft +99652 Mechanical complication due to graft of other tissue, not elsewhere classified +99653 Mechanical complication due to ocular lens prosthesis +99654 Mechanical complication due to breast prosthesis +99655 Mechanical complication due to artificial skin graft and decellularized allodermis +99656 Mechanical complication due to peritoneal dialysis catheter +99657 Mechanical complication due to insulin pump +99659 Mechanical complication due to other implant and internal device, not elsewhere classified +99660 Infection and inflammatory reaction due to unspecified device, implant, and graft +99661 Infection and inflammatory reaction due to cardiac device, implant, and graft +99662 Infection and inflammatory reaction due to other vascular device, implant, and graft +99663 Infection and inflammatory reaction due to nervous system device, implant, and graft +99664 Infection and inflammatory reaction due to indwelling urinary catheter +99665 Infection and inflammatory reaction due to other genitourinary device, implant, and graft +99666 Infection and inflammatory reaction due to internal joint prosthesis +99667 Infection and inflammatory reaction due to other internal orthopedic device, implant, and graft +99668 Infection and inflammatory reaction due to peritoneal dialysis catheter +99669 Infection and inflammatory reaction due to other internal prosthetic device, implant, and graft +99670 Other complications due to unspecified device, implant, and graft +99671 Other complications due to heart valve prosthesis +99672 Other complications due to other cardiac device, implant, and graft +99673 Other complications due to renal dialysis device, implant, and graft +99674 Other complications due to other vascular device, implant, and graft +99675 Other complications due to nervous system device, implant, and graft +99676 Other complications due to genitourinary device, implant, and graft +99677 Other complications due to internal joint prosthesis +99678 Other complications due to other internal orthopedic device, implant, and graft +99679 Other complications due to other internal prosthetic device, implant, and graft +99680 Complications of transplanted organ, unspecified +99681 Complications of transplanted kidney +99682 Complications of transplanted liver +99683 Complications of transplanted heart +99684 Complications of transplanted lung +99685 Complications of transplanted bone marrow +99686 Complications of transplanted pancreas +99687 Complications of transplanted intestine +99688 Complications of transplanted organ, stem cell +99689 Complications of other specified transplanted organ +99690 Complications of unspecified reattached extremity +99691 Complications of reattached forearm +99692 Complications of reattached hand +99693 Complications of reattached finger(s) +99694 Complications of reattached upper extremity, other and unspecified +99695 Complication of reattached foot and toe(s) +99696 Complication of reattached lower extremity, other and unspecified +99699 Complication of other specified reattached body part +99700 Nervous system complication, unspecified +99701 Central nervous system complication +99702 Iatrogenic cerebrovascular infarction or hemorrhage +99709 Other nervous system complications +9971 Cardiac complications, not elsewhere classified +9972 Peripheral vascular complications, not elsewhere classified +99731 Ventilator associated pneumonia +99732 Postprocedural aspiration pneumonia +99739 Other respiratory complications +99741 Retained cholelithiasis following cholecystectomy +99749 Other digestive system complications +9975 Urinary complications, not elsewhere classified +99760 Unspecified complication of amputation stump +99761 Neuroma of amputation stump +99762 Infection (chronic) of amputation stump +99769 Other amputation stump complication +99771 Vascular complications of mesenteric artery +99772 Vascular complications of renal artery +99779 Vascular complications of other vessels +99791 Complications affecting other specified body systems, not elsewhere classified, hypertension +99799 Complications affecting other specified body systems, not elsewhere classified +99800 Postoperative shock, unspecified +99801 Postoperative shock, cardiogenic +99802 Postoperative shock, septic +99809 Postoperative shock, other +99811 Hemorrhage complicating a procedure +99812 Hematoma complicating a procedure +99813 Seroma complicating a procedure +9982 Accidental puncture or laceration during a procedure, not elsewhere classified +99830 Disruption of wound, unspecified +99831 Disruption of internal operation (surgical) wound +99832 Disruption of external operation (surgical) wound +99833 Disruption of traumatic injury wound repair +9984 Foreign body accidentally left during a procedure +99851 Infected postoperative seroma +99859 Other postoperative infection +9986 Persistent postoperative fistula +9987 Acute reaction to foreign substance accidentally left during a procedure +99881 Emphysema (subcutaneous) (surgical) resulting from procedure +99882 Cataract fragments in eye following cataract surgery +99883 Non-healing surgical wound +99889 Other specified complications of procedures not elsewhere classified +9989 Unspecified complication of procedure, not elsewhere classified +9990 Generalized vaccinia as a complication of medical care, not elsewhere classified +9991 Air embolism as a complication of medical care, not elsewhere classified +9992 Other vascular complications of medical care, not elsewhere classified +99931 Other and unspecified infection due to central venous catheter +99932 Bloodstream infection due to central venous catheter +99933 Local infection due to central venous catheter +99934 Acute infection following transfusion, infusion, or injection of blood and blood products +99939 Infection following other infusion, injection, transfusion, or vaccination +99941 Anaphylactic reaction due to administration of blood and blood products +99942 Anaphylactic reaction due to vaccination +99949 Anaphylactic reaction due to other serum +99951 Other serum reaction due to administration of blood and blood products +99952 Other serum reaction due to vaccination +99959 Other serum reaction +99960 ABO incompatibility reaction, unspecified +99961 ABO incompatibility with hemolytic transfusion reaction not specified as acute or delayed +99962 ABO incompatibility with acute hemolytic transfusion reaction +99963 ABO incompatibility with delayed hemolytic transfusion reaction +99969 Other ABO incompatibility reaction +99970 Rh incompatibility reaction, unspecified +99971 Rh incompatibility with hemolytic transfusion reaction not specified as acute or delayed +99972 Rh incompatibility with acute hemolytic transfusion reaction +99973 Rh incompatibility with delayed hemolytic transfusion reaction +99974 Other Rh incompatibility reaction +99975 Non-ABO incompatibility reaction, unspecified +99976 Non-ABO incompatibility with hemolytic transfusion reaction not specified as acute or delayed +99977 Non-ABO incompatibility with acute hemolytic transfusion reaction +99978 Non-ABO incompatibility with delayed hemolytic transfusion reaction +99979 Other non-ABO incompatibility reaction +99980 Transfusion reaction, unspecified +99981 Extravasation of vesicant chemotherapy +99982 Extravasation of other vesicant agent +99983 Hemolytic transfusion reaction, incompatibility unspecified +99984 Acute hemolytic transfusion reaction, incompatibility unspecified +99985 Delayed hemolytic transfusion reaction, incompatibility unspecified +99988 Other infusion reaction +99989 Other transfusion reaction +9999 Other and unspecified complications of medical care, not elsewhere classified +E0000 Civilian activity done for income or pay +E0001 Military activity +E0002 Volunteer activity +E0008 Other external cause status +E0009 Unspecified external cause status +E0010 Activities involving walking, marching and hiking +E0011 Activities involving running +E0020 Activities involving swimming +E0021 Activities involving springboard and platform diving +E0022 Activities involving water polo +E0023 Activities involving water aerobics and water exercise +E0024 Activities involving underwater diving and snorkeling +E0025 Activities involving rowing, canoeing, kayaking, rafting and tubing +E0026 Activities involving water skiing and wake boarding +E0027 Activities involving surfing, windsurfing and boogie boarding +E0028 Activities involving water sliding +E0029 Other activity involving water and watercraft +E0030 Activities involving ice skating +E0031 Activities involving ice hockey +E0032 Activities involving snow (alpine) (downhill) skiing, snow boarding, sledding, tobogganing and snow tubing +E0033 Activities involving cross country skiing +E0039 Other activity involving ice and snow +E0040 Activities involving mountain climbing, rock climbing and wall climbing +E0041 Activities involving rappelling +E0042 Activities involving BASE jumping +E0043 Activities involving bungee jumping +E0044 Activities involving hang gliding +E0049 Other activity involving climbing, rappelling and jumping off +E0050 Activities involving dancing +E0051 Activities involving yoga +E0052 Activities involving gymnastics +E0053 Activities involving trampoline +E0054 Activities involving cheerleading +E0059 Other activity involving dancing and other rhythmic movements +E0060 Activities involving roller skating (inline) and skateboarding +E0061 Activities involving horseback riding +E0062 Activities involving golf +E0063 Activities involving bowling +E0064 Activities involving bike riding +E0065 Activities involving jumping rope +E0066 Activities involving non-running track and field events +E0069 Other activity involving other sports and athletics played individually +E0070 Activities involving american tackle football +E0071 Activities involving american flag or touch football +E0072 Activities involving rugby +E0073 Activities involving baseball +E0074 Activities involving lacrosse and field hockey +E0075 Activities involving soccer +E0076 Activities involving basketball +E0077 Activities involving volleyball (beach) (court) +E0078 Activities involving physical games generally associated with school recess, summer camp and children +E0079 Other activity involving other sports and athletes played as a team or group +E0080 Activities involving boxing +E0081 Activities involving wrestling +E0082 Activities involving racquet and hand sports +E0083 Activities involving frisbee +E0084 Activities involving martial arts +E0089 Other specified sports and athletics activity +E0090 Activity involving exercise machines primarily for cardiorespiratory conditioning +E0091 Activity involving calisthenics +E0092 Activity involving aerobic and step exercise +E0093 Activity involving circuit training +E0094 Activity involving obstacle course +E0095 Activity involving grass drills +E0099 Other activity involving cardiorespiratory exercise +E0100 Activity involving exercise machines primarily for muscle strengthening +E0101 Activity involving push-ups, pull-ups, sit-ups +E0102 Activity involving free weights +E0103 Activity involving pilates +E0109 Other activity involving other muscle strengthening exercises +E0110 Activities involving computer keyboarding +E0111 Activities involving hand held interactive electronic device +E0119 Other activity involving computer technology and electronic devices +E0120 Activities involving knitting and crocheting +E0121 Activities involving sewing +E0122 Activities involving furniture building and finishing +E0129 Activity involving other arts and handcrafts +E0130 Activities involving personal bathing and showering +E0131 Activities involving laundry +E0132 Activities involving vacuuming +E0133 Activities involving ironing +E0134 Activities involving floor mopping and cleaning +E0135 Activities involving residential relocation +E0138 Other personal hygiene activity +E0139 Other household maintenance +E0140 Caregiving involving bathing +E0141 Caregiving involving lifting +E0149 Other activity involving person providing caregiving +E0150 Activities involving food preparation and clean up +E0151 Activities involving grilling and smoking food +E0152 Activities involving cooking and baking +E0159 Other activity involving cooking and grilling +E0160 Activities involving digging, shoveling and raking +E0161 Activities involving gardening and landscaping +E0162 Activities involving building and construction +E0169 Other activity involving property and land maintenance, building and construction +E0170 Roller coaster riding +E0179 Other activity involving external motion +E0180 Activities involving piano playing +E0181 Activities involving drum and other percussion instrument playing +E0182 Activities involving string instrument playing +E0183 Activities involving winds and brass instrument playing +E0190 Activities involving walking an animal +E0191 Activities involving milking an animal +E0192 Activities involving grooming and shearing an animal +E0199 Other activity involving animal care +E0290 Refereeing a sports activity +E0291 Spectator at an event +E0292 Rough housing and horseplay +E0299 Other activity +E030 Unspecified activity +E8000 Railway accident involving collision with rolling stock and injuring railway employee +E8001 Railway accident involving collision with rolling stock and injuring passenger on railway +E8002 Railway accident involving collision with rolling stock and injuring pedestrian +E8003 Railway accident involving collision with rolling stock and injuring pedal cyclist +E8008 Railway accident involving collision with rolling stock and injuring other specified person +E8009 Railway accident involving collision with rolling stock and injuring unspecified person +E8010 Railway accident involving collision with other object and injuring railway employee +E8011 Railway accident involving collision with other object and injuring passenger on railway +E8012 Railway accident involving collision with other object and injuring pedestrian +E8013 Railway accident involving collision with other object and injuring pedal cyclist +E8018 Railway accident involving collision with other object and injuring other specified person +E8019 Railway accident involving collision with other object and injuring unspecified person +E8020 Railway accident involving derailment without antecedent collision injuring railway employee +E8021 Railway accident involving derailment without antecedent collision injuring passenger on railway +E8022 Railway accident involving derailment without antecedent collision injuring pedestrian +E8023 Railway accident involving derailment without antecedent collision injuring pedal cyclist +E8028 Railway accident involving derailment without antecedent collision injuring other specified person +E8029 Railway accident involving derailment without antecedent collision injuring unspecified person +E8030 Railway accident involving explosion, fire, or burning injuring railway employee +E8031 Railway accident involving explosion, fire, or burning injuring passenger on railway +E8032 Railway accident involving explosion, fire, or burning injuring pedestrian +E8033 Railway accident involving explosion, fire, or burning injuring pedal cyclist +E8038 Railway accident involving explosion, fire, or burning injuring other specified person +E8039 Railway accident involving explosion, fire, or burning injuring unspecified person +E8040 Fall in, on, or from railway train injuring railway employee +E8041 Fall in, on, or from railway train injuring passenger on railway +E8042 Fall in, on, or from railway train injuring pedestrian +E8043 Fall in, on, or from railway train injuring pedal cyclist +E8048 Fall in, on, or from railway train injuring other specified person +E8049 Fall in, on, or from railway train injuring unspecified person +E8050 Railway employee hit by rolling stock +E8051 Passenger on railway hit by rolling stock +E8052 Pedestrian hit by rolling stock +E8053 Pedal cyclist hit by rolling stock +E8058 Other specified person hit by rolling stock +E8059 Unspecified person hit by rolling stock +E8060 Other specified railway accident injuring railway employee +E8061 Other specified railway accident injuring passenger on railway +E8062 Other specified railway accident injuring pedestrian +E8063 Other specified railway accident injuring pedal cyclist +E8068 Other specified railway accident injuring other specified person +E8069 Other specified railway accident injuring unspecified person +E8070 Railway accident of unspecified nature injuring railway employee +E8071 Railway accident of unspecified nature injuring passenger on railway +E8072 Railway accident of unspecified nature injuring pedestrian +E8073 Railway accident of unspecified nature injuring pedal cyclist +E8078 Railway accident of unspecified nature injuring other specified person +E8079 Railway accident of unspecified nature injuring unspecified person +E8100 Motor vehicle traffic accident involving collision with train injuring driver of motor vehicle other than motorcycle +E8101 Motor vehicle traffic accident involving collision with train injuring passenger in motor vehicle other than motorcycle +E8102 Motor vehicle traffic accident involving collision with train injuring motorcyclist +E8103 Motor vehicle traffic accident involving collision with train injuring passenger on motorcycle +E8104 Motor vehicle traffic accident involving collision with train injuring occupant of streetcar +E8105 Motor vehicle traffic accident involving collision with train injuring rider of animal; occupant of animal-drawn vehicle +E8106 Motor vehicle traffic accident involving collision with train injuring pedal cyclist +E8107 Motor vehicle traffic accident involving collision with train injuring pedestrian +E8108 Motor vehicle traffic accident involving collision with train injuring other specified person +E8109 Motor vehicle traffic accident involving collision with train injuring unspecified person +E8110 Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring driver of motor vehicle other than motorcycle +E8111 Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger in motor vehicle other than motorcycle +E8112 Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring motorcyclist +E8113 Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger on motorcycle +E8114 Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring occupant of streetcar +E8115 Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring rider of animal; occupant of animal-drawn vehicle +E8116 Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedal cyclist +E8117 Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedestrian +E8118 Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring other specified person +E8119 Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring unspecified person +E8120 Other motor vehicle traffic accident involving collision with motor vehicle injuring driver of motor vehicle other than motorcycle +E8121 Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger in motor vehicle other than motorcycle +E8122 Other motor vehicle traffic accident involving collision with motor vehicle injuring motorcyclist +E8123 Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger on motorcycle +E8124 Other motor vehicle traffic accident involving collision with motor vehicle injuring occupant of streetcar +E8125 Other motor vehicle traffic accident involving collision with motor vehicle injuring rider of animal; occupant of animal-drawn vehicle +E8126 Other motor vehicle traffic accident involving collision with motor vehicle injuring pedal cyclist +E8127 Other motor vehicle traffic accident involving collision with motor vehicle injuring pedestrian +E8128 Other motor vehicle traffic accident involving collision with motor vehicle injuring other specified person +E8129 Other motor vehicle traffic accident involving collision with motor vehicle injuring unspecified person +E8130 Motor vehicle traffic accident involving collision with other vehicle injuring driver of motor vehicle other than motorcycle +E8131 Motor vehicle traffic accident involving collision with other vehicle injuring passenger in motor vehicle other than motorcycle +E8132 Motor vehicle traffic accident involving collision with other vehicle injuring motorcyclist +E8133 Motor vehicle traffic accident involving collision with other vehicle injuring passenger on motorcycle +E8134 Motor vehicle traffic accident involving collision with other vehicle injuring occupant of streetcar +E8135 Motor vehicle traffic accident involving collision with other vehicle injuring rider of animal; occupant of animal-drawn vehicle +E8136 Motor vehicle traffic accident involving collision with other vehicle injuring pedal cyclist +E8137 Motor vehicle traffic accident involving collision with other vehicle injuring pedestrian +E8138 Motor vehicle traffic accident involving collision with other vehicle injuring other specified person +E8139 Motor vehicle traffic accident involving collision with other vehicle injuring unspecified person +E8140 Motor vehicle traffic accident involving collision with pedestrian injuring driver of motor vehicle other than motorcycle +E8141 Motor vehicle traffic accident involving collision with pedestrian injuring passenger in motor vehicle other than motorcycle +E8142 Motor vehicle traffic accident involving collision with pedestrian injuring motorcyclist +E8143 Motor vehicle traffic accident involving collision with pedestrian injuring passenger on motorcycle +E8144 Motor vehicle traffic accident involving collision with pedestrian injuring occupant of streetcar +E8145 Motor vehicle traffic accident involving collision with pedestrian injuring rider of animal; occupant of animal drawn vehicle +E8146 Motor vehicle traffic accident involving collision with pedestrian injuring pedal cyclist +E8147 Motor vehicle traffic accident involving collision with pedestrian injuring pedestrian +E8148 Motor vehicle traffic accident involving collision with pedestrian injuring other specified person +E8149 Motor vehicle traffic accident involving collision with pedestrian injuring unspecified person +E8150 Other motor vehicle traffic accident involving collision on the highway injuring driver of motor vehicle other than motorcycle +E8151 Other motor vehicle traffic accident involving collision on the highway injuring passenger in motor vehicle other than motorcycle +E8152 Other motor vehicle traffic accident involving collision on the highway injuring motorcyclist +E8153 Other motor vehicle traffic accident involving collision on the highway injuring passenger on motorcycle +E8154 Other motor vehicle traffic accident involving collision on the highway injuring occupant of streetcar +E8155 Other motor vehicle traffic accident involving collision on the highway injuring rider of animal; occupant of animal-drawn vehicle +E8156 Other motor vehicle traffic accident involving collision on the highway injuring pedal cyclist +E8157 Other motor vehicle traffic accident involving collision on the highway injuring pedestrian +E8158 Other motor vehicle traffic accident involving collision on the highway injuring other specified person +E8159 Other motor vehicle traffic accident involving collision on the highway injuring unspecified person +E8160 Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring driver of motor vehicle other than motorcycle +E8161 Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger in motor vehicle other than motorcycle +E8162 Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring motorcyclist +E8163 Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger on motorcycle +E8164 Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring occupant of streetcar +E8165 Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring rider of animal; occupant of animal-drawn vehicle +E8166 Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedal cyclist +E8167 Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedestrian +E8168 Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring other specified person +E8169 Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring unspecified person +E8170 Noncollision motor vehicle traffic accident while boarding or alighting injuring driver of motor vehicle other than motorcycle +E8171 Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger in motor vehicle other than motorcycle +E8172 Noncollision motor vehicle traffic accident while boarding or alighting injuring motorcyclist +E8173 Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger on motorcycle +E8174 Noncollision motor vehicle traffic accident while boarding or alighting injuring occupant of streetcar +E8175 Noncollision motor vehicle traffic accident while boarding or alighting injuring rider of animal; occupant of animal-drawn vehicle +E8176 Noncollision motor vehicle traffic accident while boarding or alighting injuring pedal cyclist +E8177 Noncollision motor vehicle traffic accident while boarding or alighting injuring pedestrian +E8178 Noncollision motor vehicle traffic accident while boarding or alighting injuring other specified person +E8179 Noncollision motor vehicle traffic accident while boarding or alighting injuring unspecified person +E8180 Other noncollision motor vehicle traffic accident injuring driver of motor vehicle other than motorcycle +E8181 Other noncollision motor vehicle traffic accident injuring passenger in motor vehicle other than motorcycle +E8182 Other noncollision motor vehicle traffic accident injuring motorcyclist +E8183 Other noncollision motor vehicle traffic accident injuring passenger on motorcycle +E8184 Other noncollision motor vehicle traffic accident injuring occupant of streetcar +E8185 Other noncollision motor vehicle traffic accident injuring rider of animal; occupant of animal-drawn vehicle +E8186 Other noncollision motor vehicle traffic accident injuring pedal cyclist +E8187 Other noncollision motor vehicle traffic accident injuring pedestrian +E8188 Other noncollision motor vehicle traffic accident injuring other specified person +E8189 Other noncollision motor vehicle traffic accident injuring unspecified person +E8190 Motor vehicle traffic accident of unspecified nature injuring driver of motor vehicle other than motorcycle +E8191 Motor vehicle traffic accident of unspecified nature injuring passenger in motor vehicle other than motorcycle +E8192 Motor vehicle traffic accident of unspecified nature injuring motorcyclist +E8193 Motor vehicle traffic accident of unspecified nature injuring passenger on motorcycle +E8194 Motor vehicle traffic accident of unspecified nature injuring occupant of streetcar +E8195 Motor vehicle traffic accident of unspecified nature injuring rider of animal; occupant of animal-drawn vehicle +E8196 Motor vehicle traffic accident of unspecified nature injuring pedal cyclist +E8197 Motor vehicle traffic accident of unspecified nature injuring pedestrian +E8198 Motor vehicle traffic accident of unspecified nature injuring other specified person +E8199 Motor vehicle traffic accident of unspecified nature injuring unspecified person +E8200 Nontraffic accident involving motor-driven snow vehicle injuring driver of motor vehicle other than motorcycle +E8201 Nontraffic accident involving motor-driven snow vehicle injuring passenger in motor vehicle other than motorcycle +E8202 Nontraffic accident involving motor-driven snow vehicle injuring motorcyclist +E8203 Nontraffic accident involving motor-driven snow vehicle injuring passenger on motorcycle +E8204 Nontraffic accident involving motor-driven snow vehicle injuring occupant of streetcar +E8205 Nontraffic accident involving motor-driven snow vehicle injuring rider of animal; occupant of animal-drawn vehicle +E8206 Nontraffic accident involving motor-driven snow vehicle injuring pedal cyclist +E8207 Nontraffic accident involving motor-driven snow vehicle injuring pedestrian +E8208 Nontraffic accident involving motor-driven snow vehicle injuring other specified person +E8209 Nontraffic accident involving motor-driven snow vehicle injuring unspecified person +E8210 Nontraffic accident involving other off-road motor vehicle injuring driver of motor vehicle other than motorcycle +E8211 Nontraffic accident involving other off-road motor vehicle injuring passenger in motor vehicle other than motorcycle +E8212 Nontraffic accident involving other off-road motor vehicle injuring motorcyclist +E8213 Nontraffic accident involving other off-road motor vehicle injuring passenger on motorcycle +E8214 Nontraffic accident involving other off-road motor vehicle injuring occupant of streetcar +E8215 Nontraffic accident involving other off-road motor vehicle injuring rider of animal; occupant of animal-drawn vehicle +E8216 Nontraffic accident involving other off-road motor vehicle injuring pedal cyclist +E8217 Nontraffic accident involving other off-road motor vehicle injuring pedestrian +E8218 Nontraffic accident involving other off-road motor vehicle injuring other specified person +E8219 Nontraffic accident involving other off-road motor vehicle injuring unspecified person +E8220 Other motor vehicle nontraffic accident involving collision with moving object injuring driver of motor vehicle other than motorcycle +E8221 Other motor vehicle nontraffic accident involving collision with moving object injuring passenger in motor vehicle other than motorcycle +E8222 Other motor vehicle nontraffic accident involving collision with moving object injuring motorcyclist +E8223 Other motor vehicle nontraffic accident involving collision with moving object injuring passenger on motorcycle +E8224 Other motor vehicle nontraffic accident involving collision with moving object injuring occupant of streetcar +E8225 Other motor vehicle nontraffic accident involving collision with moving object injuring rider of animal; occupant of animal-drawn vehicle +E8226 Other motor vehicle nontraffic accident involving collision with moving object injuring pedal cyclist +E8227 Other motor vehicle nontraffic accident involving collision with moving object injuring pedestrian +E8228 Other motor vehicle nontraffic accident involving collision with moving object injuring other specified person +E8229 Other motor vehicle nontraffic accident involving collision with moving object injuring unspecified person +E8230 Other motor vehicle nontraffic accident involving collision with stationary object injuring driver of motor vehicle other than motorcycle +E8231 Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger in motor vehicle other than motorcycle +E8232 Other motor vehicle nontraffic accident involving collision with stationary object injuring motorcyclist +E8233 Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger on motorcycle +E8234 Other motor vehicle nontraffic accident involving collision with stationary object injuring occupant of streetcar +E8235 Other motor vehicle nontraffic accident involving collision with stationary object injuring rider of animal; occupant of animal-drawn vehicle +E8236 Other motor vehicle nontraffic accident involving collision with stationary object injuring pedal cyclist +E8237 Other motor vehicle nontraffic accident involving collision with stationary object injuring pedestrian +E8238 Other motor vehicle nontraffic accident involving collision with stationary object injuring other specified person +E8239 Other motor vehicle nontraffic accident involving collision with stationary object injuring unspecified person +E8240 Other motor vehicle nontraffic accident while boarding and alighting injuring driver of motor vehicle other than motorcycle +E8241 Other motor vehicle nontraffic accident while boarding and alighting injuring passenger in motor vehicle other than motorcycle +E8242 Other motor vehicle nontraffic accident while boarding and alighting injuring motorcyclist +E8243 Other motor vehicle nontraffic accident while boarding and alighting injuring passenger on motorcycle +E8244 Other motor vehicle nontraffic accident while boarding and alighting injuring occupant of streetcar +E8245 Other motor vehicle nontraffic accident while boarding and alighting injuring rider of animal; occupant of animal-drawn vehicle +E8246 Other motor vehicle nontraffic accident while boarding and alighting injuring pedal cyclist +E8247 Other motor vehicle nontraffic accident while boarding and alighting injuring pedestrian +E8248 Other motor vehicle nontraffic accident while boarding and alighting injuring other specified person +E8249 Other motor vehicle nontraffic accident while boarding and alighting injuring unspecified person +E8250 Other motor vehicle nontraffic accident of other and unspecified nature injuring driver of motor vehicle other than motorcycle +E8251 Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger in motor vehicle other than motorcycle +E8252 Other motor vehicle nontraffic accident of other and unspecified nature injuring motorcyclist +E8253 Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger on motorcycle +E8254 Other motor vehicle nontraffic accident of other and unspecified nature injuring occupant of streetcar +E8255 Other motor vehicle nontraffic accident of other and unspecified nature injuring rider of animal; occupant of animal-drawn vehicle +E8256 Other motor vehicle nontraffic accident of other and unspecified nature injuring pedal cyclist +E8257 Other motor vehicle nontraffic accident of other and unspecified nature injuring pedestrian +E8258 Other motor vehicle nontraffic accident of other and unspecified nature injuring other specified person +E8259 Other motor vehicle nontraffic accident of other and unspecified nature injuring unspecified person +E8260 Pedal cycle accident injuring pedestrian +E8261 Pedal cycle accident injuring pedal cyclist +E8262 Pedal cycle accident injuring rider of animal +E8263 Pedal cycle accident injuring occupant of animal-drawn vehicle +E8264 Pedal cycle accident injuring occupant of streetcar +E8268 Pedal cycle accident injuring other specified person +E8269 Pedal cycle accident injuring unspecified person +E8270 Animal-drawn vehicle accident injuring pedestrian +E8272 Animal-drawn vehicle accident injuring rider of animal +E8273 Animal-drawn vehicle accident injuring occupant of animal drawn vehicle +E8274 Animal-drawn vehicle accident injuring occupant of streetcar +E8278 Animal-drawn vehicle accident injuring other specified person +E8279 Animal-drawn vehicle accident injuring unspecified person +E8280 Accident involving animal being ridden injuring pedestrian +E8282 Accident involving animal being ridden injuring rider of animal +E8284 Accident involving animal being ridden injuring occupant of streetcar +E8288 Accident involving animal being ridden injuring other specified person +E8289 Accident involving animal being ridden injuring unspecified person +E8290 Other road vehicle accidents injuring pedestrian +E8294 Other road vehicle accidents injuring occupant of streetcar +E8298 Other road vehicle accidents injuring other specified person +E8299 Other road vehicle accidents injuring unspecified person +E8300 Accident to watercraft causing submersion injuring occupant of small boat, unpowered +E8301 Accident to watercraft causing submersion injuring occupant of small boat, powered +E8302 Accident to watercraft causing submersion injuring occupant of other watercraft -- crew +E8303 Accident to watercraft causing submersion injuring occupant of other watercraft -- other than crew +E8304 Accident to watercraft causing submersion injuring water skier +E8305 Accident to watercraft causing submersion injuring swimmer +E8306 Accident to watercraft causing submersion injuring dockers, stevedores +E8307 Accident to watercraft causing submersion, occupant of military watercraft, any type +E8308 Accident to watercraft causing submersion injuring other specified person +E8309 Accident to watercraft causing submersion injuring unspecified person +E8310 Accident to watercraft causing other injury to occupant of small boat, unpowered +E8311 Accident to watercraft causing other injury to occupant of small boat, powered +E8312 Accident to watercraft causing other injury to occupant of other watercraft -- crew +E8313 Accident to watercraft causing other injury to occupant of other watercraft -- other than crew +E8314 Accident to watercraft causing other injury to water skier +E8315 Accident to watercraft causing other injury to swimmer +E8316 Accident to watercraft causing other injury to dockers, stevedores +E8317 Accident to watercraft causing other injury, occupant of military watercraft, any type +E8318 Accident to watercraft causing other injury to other specified person +E8319 Accident to watercraft causing other injury to unspecified person +E8320 Other accidental submersion or drowning in water transport accident injuring occupant of small boat, unpowered +E8321 Other accidental submersion or drowning in water transport accident injuring occupant of small boat, powered +E8322 Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- crew +E8323 Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- other than crew +E8324 Other accidental submersion or drowning in water transport accident injuring water skier +E8325 Other accidental submersion or drowning in water transport accident injuring swimmer +E8326 Other accidental submersion or drowning in water transport accident injuring dockers, stevedores +E8327 Other accidental submersion or drowning in water transport accident, occupant of military watercraft, any type +E8328 Other accidental submersion or drowning in water transport accident injuring other specified person +E8329 Other accidental submersion or drowning in water transport accident injuring unspecified person +E8330 Fall on stairs or ladders in water transport injuring occupant of small boat, unpowered +E8331 Fall on stairs or ladders in water transport injuring occupant of small boat, powered +E8332 Fall on stairs or ladders in water transport injuring occupant of other watercraft -- crew +E8333 Fall on stairs or ladders in water transport injuring occupant of other watercraft -- other than crew +E8334 Fall on stairs or ladders in water transport injuring water skier +E8335 Fall on stairs or ladders in water transport injuring swimmer +E8336 Fall on stairs or ladders in water transport injuring dockers, stevedores +E8337 Fall on stairs or ladders in water transport, occupant of military watercraft, any type +E8338 Fall on stairs or ladders in water transport injuring other specified person +E8339 Fall on stairs or ladders in water transport injuring unspecified person +E8340 Other fall from one level to another in water transport injuring occupant of small boat, unpowered +E8341 Other fall from one level to another in water transport injuring occupant of small boat, powered +E8342 Other fall from one level to another in water transport injuring occupant of other watercraft -- crew +E8343 Other fall from one level to another in water transport injuring occupant of other watercraft -- other than crew +E8344 Other fall from one level to another in water transport injuring water skier +E8345 Other fall from one level to another in water transport injuring swimmer +E8346 Other fall from one level to another in water transport injuring dockers, stevedores +E8347 Other fall from one level to another in water transport, occupant of military watercraft, any type +E8348 Other fall from one level to another in water transport injuring other specified person +E8349 Other fall from one level to another in water transport injuring unspecified person +E8350 Other and unspecified fall in water transport injuring occupant of small boat, unpowered +E8351 Other and unspecified fall in water transport injuring occupant of small boat, powered +E8352 Other and unspecified fall in water transport injuring occupant of other watercraft -- crew +E8353 Other and unspecified fall in water transport injuring occupant of other watercraft -- other than crew +E8354 Other and unspecified fall in water transport injuring water skier +E8355 Other and unspecified fall in water transport injuring swimmer +E8356 Other and unspecified fall in water transport injuring dockers, stevedores +E8357 Other and unspecified fall in water transport, occupant of military watercraft, any type +E8358 Other and unspecified fall in water transport injuring other specified person +E8359 Other and unspecified fall in water transport injuring unspecified person +E8360 Machinery accident in water transport injuring occupant of small boat, unpowered +E8361 Machinery accident in water transport injuring occupant of small boat, powered +E8362 Machinery accident in water transport injuring occupant of other watercraft -- crew +E8363 Machinery accident in water transport injuring occupant of other watercraft -- other than crew +E8364 Machinery accident in water transport injuring water skier +E8365 Machinery accident in water transport injuring swimmer +E8366 Machinery accident in water transport injuring dockers, stevedores +E8367 Machinery accident in water transport, occupant of military watercraft, any type +E8368 Machinery accident in water transport injuring other specified person +E8369 Machinery accident in water transport injuring unspecified person +E8370 Explosion, fire, or burning in watercraft injuring occupant of small boat, unpowered +E8371 Explosion, fire, or burning in watercraft injuring occupant of small boat, powered +E8372 Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- crew +E8373 Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- other than crew +E8374 Explosion, fire, or burning in watercraft injuring water skier +E8375 Explosion, fire, or burning in watercraft injuring swimmer +E8376 Explosion, fire, or burning in watercraft injuring dockers, stevedores +E8377 Explosion, fire, or burning in watercraft, occupant of military watercraft, any type +E8378 Explosion, fire, or burning in watercraft injuring other specified person +E8379 Explosion, fire, or burning in watercraft injuring unspecified person +E8380 Other and unspecified water transport accident injuring occupant of small boat, unpowered +E8381 Other and unspecified water transport accident injuring occupant of small boat, powered +E8382 Other and unspecified water transport accident injuring occupant of other watercraft -- crew +E8383 Other and unspecified water transport accident injuring occupant of other watercraft -- other than crew +E8384 Other and unspecified water transport accident injuring water skier +E8385 Other and unspecified water transport accident injuring swimmer +E8386 Other and unspecified water transport accident injuring dockers, stevedores +E8387 Other and unspecified water transport accident, occupant of military watercraft, any type +E8388 Other and unspecified water transport accident injuring other specified person +E8389 Other and unspecified water transport accident injuring unspecified person +E8400 Accident to powered aircraft at takeoff or landing injuring occupant of spacecraft +E8401 Accident to powered aircraft at takeoff or landing injuring occupant of military aircraft, any +E8402 Accident to powered aircraft at takeoff or landing injuring crew of commercial aircraft (powered) in surface to surface transport +E8403 Accident to powered aircraft at takeoff or landing injuring other occupant of commercial aircraft (powered) in surface to surface transport +E8404 Accident to powered aircraft at takeoff or landing injuring occupant of commercial aircraft (powered) in surface to air transport +E8405 Accident to powered aircraft at takeoff or landing injuring occupant of other powered aircraft +E8406 Accident to powered aircraft at takeoff or landing injuring occupant of unpowered aircraft, except parachutist +E8407 Accident to powered aircraft at takeoff or landing injuring parachutist (military) (other) +E8408 Accident to powered aircraft at takeoff or landing injuring ground crew, airline employee +E8409 Accident to powered aircraft at takeoff or landing injuring other person +E8410 Accident to powered aircraft, other and unspecified, injuring occupant of spacecraft +E8411 Accident to powered aircraft, other and unspecified, injuring occupant of military aircraft, any +E8412 Accident to powered aircraft, other and unspecified, injuring crew of commercial aircraft (powered) in surface to surface transport +E8413 Accident to powered aircraft, other and unspecified, injuring other occupant of commercial aircraft (powered) in surface to surface transport +E8414 Accident to powered aircraft, other and unspecified, injuring occupant of commercial aircraft (powered) in surface to air transport +E8415 Accident to powered aircraft, other and unspecified, injuring occupant of other powered aircraft +E8416 Accident to powered aircraft, other and unspecified, injuring occupant of unpowered aircraft, except parachutist +E8417 Accident to powered aircraft, other and unspecified, injuring parachutist (military) (other) +E8418 Accident to powered aircraft, other and unspecified, injuring ground crew, airline employee +E8419 Accident to powered aircraft, other and unspecified, injuring other person +E8426 Accident to unpowered aircraft injuring occupant of unpowered aircraft, except parachutist +E8427 Accident to unpowered aircraft injuring parachutist (military) (other) +E8428 Accident to unpowered aircraft injuring ground crew, airline employee +E8429 Accident to unpowered aircraft injuring other person +E8430 Fall in, on, or from aircraft injuring occupant of spacecraft +E8431 Fall in, on, or from aircraft injuring occupant of military aircraft, any +E8432 Fall in, on, or from aircraft injuring crew of commercial aircraft (powered) in surface to surface transport +E8433 Fall in, on, or from aircraft injuring other occupant of commercial aircraft (powered) in surface to surface transport +E8434 Fall in, on, or from aircraft injuring occupant of commercial aircraft (powered) in surface to air transport +E8435 Fall in, on, or from aircraft injuring occupant of other powered aircraft +E8436 Fall in, on, or from aircraft injuring occupant of unpowered aircraft, except parachutist +E8437 Fall in, on, or from aircraft injuring parachutist (military) (other) +E8438 Fall in, on, or from aircraft injuring ground crew, airline employee +E8439 Fall in, on, or from aircraft injuring other person +E8440 Other specified air transport accidents injuring occupant of spacecraft +E8441 Other specified air transport accidents injuring occupant of military aircraft, any +E8442 Other specified air transport accidents injuring crew of commercial aircraft (powered) in surface to surface transport +E8443 Other specified air transport accidents injuring other occupant of commercial aircraft (powered) in surface to surface transport +E8444 Other specified air transport accidents injuring occupant of commercial aircraft (powered) in surface to air transport +E8445 Other specified air transport accidents injuring occupant of other powered aircraft +E8446 Other specified air transport accidents injuring occupant of unpowered aircraft, except parachutist +E8447 Other specified air transport accidents injuring parachutist (military) (other) +E8448 Other specified air transport accidents injuring ground crew, airline employee +E8449 Other specified air transport accidents injuring other person +E8450 Accident involving spacecraft injuring occupant of spacecraft +E8458 Accident involving spacecraft injuring ground crew, airline employee +E8459 Accident involving spacecraft injuring other person +E846 Accidents involving powered vehicles used solely within the buildings and premises of industrial or commercial establishment +E847 Accidents involving cable cars not running on rails +E848 Accidents involving other vehicles, not elsewhere classifiable +E8490 Home accidents +E8491 Farm accidents +E8492 Mine and quarry accidents +E8493 Accidents occurring in industrial places and premises +E8494 Accidents occurring in place for recreation and sport +E8495 Street and highway accidents +E8496 Accidents occurring in public building +E8497 Accidents occurring in residential institution +E8498 Accidents occurring in other specified places +E8499 Accidents occurring in unspecified place +E8500 Accidental poisoning by heroin +E8501 Accidental poisoning by methadone +E8502 Accidental poisoning by other opiates and related narcotics +E8503 Accidental poisoning by salicylates +E8504 Accidental poisoning by aromatic analgesics, not elsewhere classified +E8505 Accidental poisoning by pyrazole derivatives +E8506 Accidental poisoning by antirheumatics (antiphlogistics) +E8507 Accidental poisoning by other non-narcotic analgesics +E8508 Accidental poisoning by other specified analgesics and antipyretics +E8509 Accidental poisoning by unspecified analgesic or antipyretic +E851 Accidental poisoning by barbiturates +E8520 Accidental poisoning by chloral hydrate group +E8521 Accidental poisoning by paraldehyde +E8522 Accidental poisoning by bromine compounds +E8523 Accidental poisoning by methaqualone compounds +E8524 Accidental poisoning by glutethimide group +E8525 Accidental poisoning by mixed sedatives, not elsewhere classified +E8528 Accidental poisoning by other specified sedatives and hypnotics +E8529 Accidental poisoning by unspecified sedative or hypnotic +E8530 Accidental poisoning by phenothiazine-based tranquilizers +E8531 Accidental poisoning by butyrophenone-based tranquilizers +E8532 Accidental poisoning by benzodiazepine-based tranquilizers +E8538 Accidental poisoning by other specified tranquilizers +E8539 Accidental poisoning by unspecified tranquilizer +E8540 Accidental poisoning by antidepressants +E8541 Accidental poisoning by psychodysleptics [hallucinogens] +E8542 Accidental poisoning by psychostimulants +E8543 Accidental poisoning by central nervous system stimulants +E8548 Accidental poisoning by other psychotropic agents +E8550 Accidental poisoning by anticonvulsant and anti-parkinsonism drugs +E8551 Accidental poisoning by other central nervous system depressants +E8552 Accidental poisoning by local anesthetics +E8553 Accidental poisoning by parasympathomimetics [cholinergics] +E8554 Accidental poisoning by parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics +E8555 Accidental poisoning by sympathomimetics [adrenergics] +E8556 Accidental poisoning by sympatholytics [antiadrenergics] +E8558 Accidental poisoning by other specified drugs acting on central and autonomic nervous systems +E8559 Accidental poisoning by unspecified drug acting on central and autonomic nervous systems +E856 Accidental poisoning by antibiotics +E857 Accidental poisoning by other anti-infectives +E8580 Accidental poisoning by hormones and synthetic substitutes +E8581 Accidental poisoning by primarily systemic agents +E8582 Accidental poisoning by agents primarily affecting blood constituents +E8583 Accidental poisoning by agents primarily affecting cardiovascular system +E8584 Accidental poisoning by agents primarily affecting gastrointestinal system +E8585 Accidental poisoning by water, mineral, and uric acid metabolism drugs +E8586 Accidental poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system +E8587 Accidental poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs +E8588 Accidental poisoning by other specified drugs +E8589 Accidental poisoning by unspecified drug +E8600 Accidental poisoning by alcoholic beverages +E8601 Accidental poisoning by other and unspecified ethyl alcohol and its products +E8602 Accidental poisoning by methyl alcohol +E8603 Accidental poisoning by isopropyl alcohol +E8604 Accidental poisoning by fusel oil +E8608 Accidental poisoning by other specified alcohols +E8609 Accidental poisoning by unspecified alcohol +E8610 Accidental poisoning by synthetic detergents and shampoos +E8611 Accidental poisoning by soap products +E8612 Accidental poisoning by polishes +E8613 Accidental poisoning by other cleansing and polishing agents +E8614 Accidental poisoning by disinfectants +E8615 Accidental poisoning by lead paints +E8616 Accidental poisoning by other paints and varnishes +E8619 Accidental poisoning by unspecified cleansing and polishing agents, disinfectants, paints, and varnishes +E8620 Accidental poisoning by petroleum solvents +E8621 Accidental poisoning by petroleum fuels and cleaners +E8622 Accidental poisoning by lubricating oils +E8623 Accidental poisoning by petroleum solids +E8624 Accidental poisoning by other specified solvents, not elsewhere classified +E8629 Accidental poisoning by unspecified solvent, not elsewhere classified +E8630 Accidental poisoning by insecticides of organochlorine compounds +E8631 Accidental poisoning by insecticides of organophosphorus compounds +E8632 Accidental poisoning by carbamates +E8633 Accidental poisoning by mixtures of insecticides +E8634 Accidental poisoning by other and unspecified insecticides +E8635 Accidental poisoning by herbicides +E8636 Accidental poisoning by fungicides +E8637 Accidental poisoning by rodenticides +E8638 Accidental poisoning by fumigants +E8639 Accidental poisoning by other and unspecified agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers +E8640 Accidental poisoning by corrosive aromatics not elsewhere classified +E8641 Accidental poisoning by acids not elsewhere classified +E8642 Accidental poisoning by caustic alkalis not elsewhere classified +E8643 Accidental poisoning by other specified corrosives and caustics not elsewhere classified +E8644 Accidental poisoning by unspecified corrosives and caustics not elsewhere classified +E8650 Accidental poisoning by meat +E8651 Accidental poisoning by shellfish +E8652 Accidental poisoning from other fish +E8653 Accidental poisoning from berries and seeds +E8654 Accidental poisoning from other specified plants +E8655 Accidental poisoning from mushrooms and other fungi +E8658 Accidental poisoning from other specified foods +E8659 Accidental poisoning from unspecified foodstuff or poisonous plant +E8660 Accidental poisoning by lead and its compounds and fumes +E8661 Accidental poisoning by mercury and its compounds and fumes +E8662 Accidental poisoning by antimony and its compounds and fumes +E8663 Accidental poisoning by arsenic and its compounds and fumes +E8664 Accidental poisoning by other metals and their compounds and fumes +E8665 Accidental poisoning by plant foods and fertilizers +E8666 Accidental poisoning by glues and adhesives +E8667 Accidental poisoning by cosmetics +E8668 Accidental poisoning by other specified solid or liquid substances +E8669 Accidental poisoning by unspecified solid or liquid substance +E867 Accidental poisoning by gas distributed by pipeline +E8680 Accidental poisoning by liquefied petroleum gas distributed in mobile containers +E8681 Accidental poisoning by other and unspecified utility gas +E8682 Accidental poisoning by motor vehicle exhaust gas +E8683 Accidental poisoning by carbon monoxide from incomplete combustion of other domestic fuels +E8688 Accidental poisoning by carbon monoxide from other sources +E8689 Accidental poisoning by unspecified carbon monoxide +E8690 Accidental poisoning by nitrogen oxides +E8691 Accidental poisoning by sulfur dioxide +E8692 Accidental poisoning by freon +E8693 Accidental poisoning by lacrimogenic gas [tear gas] +E8694 Second hand tobacco smoke +E8698 Accidental poisoning by other specified gases and vapors +E8699 Accidental poisoning by unspecified gases and vapors +E8700 Accidental cut, puncture, perforation or hemorrhage during surgical operation +E8701 Accidental cut, puncture, perforation or hemorrhage during infusion or transfusion +E8702 Accidental cut, puncture, perforation or hemorrhage during kidney dialysis or other perfusion +E8703 Accidental cut, puncture, perforation or hemorrhage during injection or vaccination +E8704 Accidental cut, puncture, perforation or hemorrhage during endoscopic examination +E8705 Accidental cut, puncture, perforation or hemorrhage during aspiration of fluid or tissue, puncture, and catheterization +E8706 Accidental cut, puncture, perforation or hemorrhage during heart catheterization +E8707 Accidental cut, puncture, perforation or hemorrhage during administration of enema +E8708 Accidental cut, puncture, perforation or hemorrhage during other specified medical care +E8709 Accidental cut, puncture, perforation or hemorrhage during unspecified medical care +E8710 Foreign object left in body during surgical operation +E8711 Foreign object left in body during infusion or transfusion +E8712 Foreign object left in body during kidney dialysis or other perfusion +E8713 Foreign object left in body during injection or vaccination +E8714 Foreign object left in body during endoscopic examination +E8715 Foreign object left in body during aspiration of fluid or tissue, puncture, and catheterization +E8716 Foreign object left in body during heart catheterization +E8717 Foreign object left in body during removal of catheter or packing +E8718 Foreign object left in body during other specified procedures +E8719 Foreign object left in body during unspecified procedure +E8720 Failure of sterile precautions during surgical operation +E8721 Failure of sterile precautions during infusion or transfusion +E8722 Failure of sterile precautions during kidney dialysis and other perfusion +E8723 Failure of sterile precautions during injection or vaccination +E8724 Failure of sterile precautions during endoscopic examination +E8725 Failure of sterile precautions during aspiration of fluid or tissue, puncture, and catheterization +E8726 Failure of sterile precautions during heart catheterization +E8728 Failure of sterile precautions during other specified procedures +E8729 Failure of sterile precautions during unspecified procedure +E8730 Excessive amount of blood or other fluid during transfusion or infusion +E8731 Incorrect dilution of fluid during infusion +E8732 Overdose of radiation in therapy +E8733 Inadvertent exposure of patient to radiation during medical care +E8734 Failure in dosage in electroshock or insulin-shock therapy +E8735 Inappropriate [too hot or too cold] temperature in local application and packing +E8736 Nonadministration of necessary drug or medicinal substance +E8738 Other specified failure in dosage +E8739 Unspecified failure in dosage +E8740 Mechanical failure of instrument or apparatus during surgical operation +E8741 Mechanical failure of instrument or apparatus during infusion and transfusion +E8742 Mechanical failure of instrument or apparatus during kidney dialysis and other perfusion +E8743 Mechanical failure of instrument or apparatus during endoscopic examination +E8744 Mechanical failure of instrument or apparatus during aspiration of fluid or tissue, puncture, and catheterization +E8745 Mechanical failure of instrument or apparatus during heart catheterization +E8748 Mechanical failure of instrument or apparatus during other specified procedures +E8749 Mechanical failure of instrument or apparatus during unspecified procedure +E8750 Contaminated substance transfused or infused +E8751 Contaminated substance injected or used for vaccination +E8752 Contaminated drug or biological substance administered by other means +E8758 Misadventure to patient from other contamination +E8759 Misadventure to patient from unspecified contamination +E8760 Mismatched blood in transfusion +E8761 Wrong fluid in infusion +E8762 Failure in suture and ligature during surgical operation +E8763 Endotracheal tube wrongly placed during anesthetic procedure +E8764 Failure to introduce or to remove other tube or instrument +E8765 Performance of wrong operation (procedure) on correct patient +E8766 Performance of operation (procedure) on patient not scheduled for surgery +E8767 Performance of correct operation (procedure) on wrong side/body part +E8768 Other specified misadventures during medical care +E8769 Unspecified misadventure during medical care +E8780 Surgical operation with transplant of whole organ causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation +E8781 Surgical operation with implant of artificial internal device causing abnormal patient reaction, or later complication,without mention of misadventure at time of operation +E8782 Surgical operation with anastomosis, bypass, or graft, with natural or artificial tissues used as implant causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation +E8783 Surgical operation with formation of external stoma causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation +E8784 Other restorative surgery causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation +E8785 Amputation of limb(s) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation +E8786 Removal of other organ (partial) (total) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation +E8788 Other specified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation +E8789 Unspecified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation +E8790 Cardiac catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure +E8791 Kidney dialysis as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure +E8792 Radiological procedure and radiotherapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure +E8793 Shock therapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure +E8794 Aspiration of fluid as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure +E8795 Insertion of gastric or duodenal sound as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure of time of procedure +E8796 Urinary catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure +E8797 Blood sampling as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure +E8798 Other specified procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure +E8799 Unspecified procedure as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure +E8800 Accidental fall on or from escalator +E8801 Accidental fall on or from sidewalk curb +E8809 Accidental fall on or from other stairs or steps +E8810 Accidental fall from ladder +E8811 Accidental fall from scaffolding +E882 Accidental fall from or out of building or other structure +E8830 Accident from diving or jumping into water [swimming pool] +E8831 Accidental fall into well +E8832 Accidental fall into storm drain or manhole +E8839 Accidental fall into other hole or other opening in surface +E8840 Accidental fall from playground equipment +E8841 Accidental fall from cliff +E8842 Accidental fall from chair +E8843 Accidental fall from wheelchair +E8844 Accidental fall from bed +E8845 Accidental fall from other furniture +E8846 Accidental fall from commode +E8849 Other accidental fall from one level to another +E8850 Fall from (nonmotorized) scooter +E8851 Fall from roller skates +E8852 Fall from skateboard +E8853 Fall from skis +E8854 Fall from snowboard +E8859 Fall from other slipping, tripping, or stumbling +E8860 Fall on same level from collision, pushing, or shoving, by or with other person in sports +E8869 Other and unspecified falls on same level from collision, pushing, or shoving, by or with other person +E887 Fracture, cause unspecified +E8880 Fall resulting in striking against sharp object +E8881 Fall resulting in striking against other object +E8888 Other fall +E8889 Unspecified fall +E8900 Explosion caused by conflagration in private dwelling +E8901 Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in private dwelling +E8902 Other smoke and fumes from conflagration in private dwelling +E8903 Burning caused by conflagration in private dwelling +E8908 Other accident resulting from conflagration in private dwelling +E8909 Unspecified accident resulting from conflagration in private dwelling +E8910 Explosion caused by conflagration in other and unspecified building or structure +E8911 Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in other and unspecified building or structure +E8912 Other smoke and fumes from conflagration in other and unspecified building or structure +E8913 Burning caused by conflagration in other and unspecified building or structure +E8918 Other accident resulting from conflagration in other and unspecified building or structure +E8919 Unspecified accident resulting from conflagration of other and unspecified building or structure +E892 Conflagration not in building or structure +E8930 Accident caused by ignition of clothing from controlled fire in private dwelling +E8931 Accident caused by ignition of clothing from controlled fire in other building or structure +E8932 Accident caused by ignition of clothing from controlled fire not in building or structure +E8938 Accident caused by ignition of clothing from other specified sources +E8939 Accident caused by ignition of clothing by unspecified source +E894 Ignition of highly inflammable material +E895 Accident caused by controlled fire in private dwelling +E896 Accident caused by controlled fire in other and unspecified building or structure +E897 Accident caused by controlled fire not in building or structure +E8980 Accident caused by burning bedclothes +E8981 Accident caused by other burning materials +E899 Accident caused by unspecified fire +E9000 Accident caused by excessive heat due to weather conditions +E9001 Accidents due to excessive heat of man-made origin +E9009 Accidents due to excessive heat of unspecified origin +E9010 Accident due to excessive cold due to weather conditions +E9011 Accident due to excessive cold of man-made origin +E9018 Accident due to excessive cold of other specified origin +E9019 Accident due to excessive cold of unspecified origin +E9020 Accident due to residence or prolonged visit at high altitude +E9021 Accident due to changes in air pressure in aircraft +E9022 Accident due to changes in air pressure due to diving +E9028 Accident due to changes in air pressure due to other specified causes +E9029 Accident due to changes in air pressure from unspecified cause +E903 Accident caused by travel and motion +E9040 Accident due to abandonment or neglect of infants and helpless persons +E9041 Accident due to lack of food +E9042 Accident due to lack of water +E9043 Accident due to exposure (to weather conditions), not elsewhere classifiable +E9049 Accident due to privation, unqualified +E9050 Venomous snakes and lizards causing poisoning and toxic reactions +E9051 Venomous spiders causing poisoning and toxic reactions +E9052 Scorpion sting causing poisoning and toxic reactions +E9053 Sting of hornets, wasps, and bees causing poisoning and toxic reactions +E9054 Centipede and venomous millipede (tropical) bite causing poisoning and toxic reactions +E9055 Other venomous arthropods causing poisoning and toxic reactions +E9056 Venomous marine animals and plants causing poisoning and toxic reactions +E9057 Poisoning and toxic reactions caused by other plants +E9058 Poisoning and toxic reactions caused by other specified animals and plants +E9059 Poisoning and toxic reactions caused by unspecified animals and plants +E9060 Dog bite +E9061 Rat bite +E9062 Bite of nonvenomous snakes and lizards +E9063 Bite of other animal except arthropod +E9064 Bite of nonvenomous arthropod +E9065 Bite by unspecified animal +E9068 Other specified injury caused by animal +E9069 Unspecified injury caused by animal +E907 Accident due to lightning +E9080 Hurricane +E9081 Tornado +E9082 Floods +E9083 Blizzard (snow) (ice) +E9084 Dust storm +E9088 Other cataclysmic storms +E9089 Unspecified cataclysmic storms, and floods resulting from storms +E9090 Earthquakes +E9091 Volcanic eruptions +E9092 Avalanche, landslide, or mudslide +E9093 Collapse of dam or man-made structure +E9094 Tidalwave caused by earthquake +E9098 Other cataclysmic earth surface movements and eruptions +E9099 Unspecified cataclysmic earth surface movements and eruptions +E9100 Accidental drowning and submersion while water-skiing +E9101 Accidental drowning and submersion while engaged in other sport or recreational activity with diving equipment +E9102 Accidental drowning and submersion while engaged in other sport or recreational activity without diving equipment +E9103 Accidental drowning and submersion while swimming or diving for purposes other than recreation or sport +E9104 Accidental drowning and submersion in bathtub +E9108 Other accidental drowning or submersion +E9109 Unspecified accidental drowning or submersion +E911 Inhalation and ingestion of food causing obstruction of respiratory tract or suffocation +E912 Inhalation and ingestion of other object causing obstruction of respiratory tract or suffocation +E9130 Accidental mechanical suffocation in bed or cradle +E9131 Accidental mechanical suffocation by plastic bag +E9132 Accidental mechanical suffocation due to lack of air (in closed place) +E9133 Accidental mechanical suffocation by falling earth or other substance +E9138 Accidental mechanical suffocation by other specified means +E9139 Accidental mechanical suffocation by unspecified means +E914 Foreign body accidentally entering eye and adnexa +E915 Foreign body accidentally entering other orifice +E916 Struck accidentally by falling object +E9170 Striking against or struck accidentally by objects or persons in sports +E9171 Striking against or struck accidentally by a crowd, by collective fear or panic +E9172 Striking against or struck accidentally in running water +E9173 Striking against or struck accidentally by furniture without subsequent fall +E9174 Striking against or struck accidentally by other stationary object without subsequent fall +E9175 Striking against or struck accidentally by object in sports with subsequent fall +E9176 Striking against or struck accidentally caused by a crowd, by collective fear or panic with subsequent fall +E9177 Striking against or struck accidentally by furniture with subsequent fall +E9178 Striking against or struck accidentally by other stationary object with subsequent fall +E9179 Other accident caused by striking against or being struck accidentally by objects or persons +E918 Caught accidentally in or between objects +E9190 Accidents caused by agricultural machines +E9191 Accidents caused by mining and earth-drilling machinery +E9192 Accidents caused by lifting machines and appliances +E9193 Accidents caused by metalworking machines +E9194 Accidents caused by woodworking and forming machines +E9195 Accidents caused by prime movers, except electrical motors +E9196 Accidents caused by transmission machinery +E9197 Accidents caused by earth moving, scraping, and other excavating machines +E9198 Accidents caused by other specified machinery +E9199 Accidents caused by unspecified machinery +E9200 Accidents caused by powered lawn mower +E9201 Accidents caused by other powered hand tools +E9202 Accidents caused by powered household appliances and implements +E9203 Accidents caused by knives, swords, and daggers +E9204 Accidents caused by other hand tools and implements +E9205 Accidents caused by hypodermic needle +E9208 Accidents caused by other specified cutting and piercing instruments or objects +E9209 Accidents caused by unspecified cutting and piercing instrument or object +E9210 Accident caused by explosion of boilers +E9211 Accident caused by explosion of gas cylinders +E9218 Accident caused by explosion of other specified pressure vessels +E9219 Accident caused by explosion of unspecified pressure vessel +E9220 Accident caused by handgun +E9221 Accident caused by shotgun (automatic) +E9222 Accident caused by hunting rifle +E9223 Accident caused by military firearms +E9224 Accident caused by air gun +E9225 Accident caused by paintball gun +E9228 Accident caused by other specified firearm missile +E9229 Accident caused by unspecified firearm missile +E9230 Accident caused by fireworks +E9231 Accident caused by blasting materials +E9232 Accident caused by explosive gases +E9238 Accident caused by other explosive materials +E9239 Accident caused by unspecified explosive material +E9240 Accident caused by hot liquids and vapors, including steam +E9241 Accident caused by caustic and corrosive substances +E9242 Accident caused by hot (boiling) tap water +E9248 Accident caused by other hot substance or object +E9249 Accident caused by unspecified hot substance or object +E9250 Accident caused by domestic wiring and appliances +E9251 Accident caused by electric current in electric power generating plants, distribution stations, transmission lines +E9252 Accident caused by industrial wiring, appliances, and electrical machinery +E9258 Accident caused by other electric current +E9259 Accident caused by unspecified electric current +E9260 Exposure to radiofrequency radiation +E9261 Exposure to infra-red radiation from heaters and lamps +E9262 Exposure to visible and ultraviolet light sources +E9263 Exposure to x-rays and other electromagnetic ionizing radiation +E9264 Exposure to lasers +E9265 Exposure to radioactive isotopes +E9268 Exposure to other specified radiation +E9269 Exposure to unspecified radiation +E9270 Overexertion from sudden strenuous movement +E9271 Overexertion from prolonged static position +E9272 Excessive physical exertion +E9273 Cumulative trauma from repetitive motion +E9274 Cumulative trauma from repetitive impact +E9278 Other overexertion and strenuous and repetitive movements or loads +E9279 Unspecified overexertion and strenuous and repetitive movements or loads +E9280 Prolonged stay in weightless environment +E9281 Exposure to noise +E9282 Vibration +E9283 Human bite +E9284 External constriction caused by hair +E9285 External constriction caused by other object +E9286 Environmental exposure to harmful algae and toxins +E9287 Environmental and accidental causes, mechanism or component of firearm and air gun +E9288 Other accidents +E9289 Unspecified accident +E9290 Late effects of motor vehicle accident +E9291 Late effects of other transport accident +E9292 Late effects of accidental poisoning +E9293 Late effects of accidental fall +E9294 Late effects of accident caused by fire +E9295 Late effects of accident due to natural and environmental factors +E9298 Late effects of other accidents +E9299 Late effects of unspecified accident +E9300 Penicillins causing adverse effects in therapeutic use +E9301 Antifungal antibiotics causing adverse effects in therapeutic use +E9302 Chloramphenicol group causing adverse effects in therapeutic use +E9303 Erythromycin and other macrolides causing adverse effects in therapeutic use +E9304 Tetracycline group causing adverse effects in therapeutic use +E9305 Cephalosporin group causing adverse effects in therapeutic use +E9306 Antimycobacterial antibiotics causing adverse effects in therapeutic use +E9307 Antineoplastic antibiotics causing adverse effects in therapeutic use +E9308 Other specified antibiotics causing adverse effects in therapeutic use +E9309 Unspecified antibiotic causing adverse effects in therapeutic use +E9310 Sulfonamides causing adverse effects in therapeutic use +E9311 Arsenical anti-infectives causing adverse effects in therapeutic use +E9312 Heavy metal anti-infectives causing adverse effects in therapeutic use +E9313 Quinoline and hydroxyquinoline derivatives causing adverse effects in therapeutic use +E9314 Antimalarials and drugs acting on other blood protozoa causing adverse effects in therapeutic use +E9315 Other antiprotozoal drugs causing adverse effects in therapeutic use +E9316 Anthelmintics causing adverse effects in therapeutic use +E9317 Antiviral drugs causing adverse effects in therapeutic use +E9318 Other antimycobacterial drugs causing adverse effects in therapeutic use +E9319 Other and unspecified anti-infectives causing adverse effects in therapeutic use +E9320 Adrenal cortical steroids causing adverse effects in therapeutic use +E9321 Androgens and anabolic congeners causing adverse effects in therapeutic use +E9322 Ovarian hormones and synthetic substitutes causing adverse effects in therapeutic use +E9323 Insulins and antidiabetic agents causing adverse effects in therapeutic use +E9324 Anterior pituitary hormones causing adverse effects in therapeutic use +E9325 Posterior pituitary hormones causing adverse effects in therapeutic use +E9326 Parathyroid and parathyroid derivatives causing adverse effects in therapeutic use +E9327 Thyroid and thyroid derivatives causing adverse effects in therapeutic use +E9328 Antithyroid agents causing adverse effects in therapeutic use +E9329 Other and unspecified hormones and synthetic substitutes causing adverse effects in therapeutic use +E9330 Antiallergic and antiemetic drugs causing adverse effects in therapeutic use +E9331 Antineoplastic and immunosuppressive drugs causing adverse effects in therapeutic use +E9332 Acidifying agents causing adverse effects in therapeutic use +E9333 Alkalizing agents causing adverse effects in therapeutic use +E9334 Enzymes, not elsewhere classified, causing adverse effects in therapeutic use +E9335 Vitamins, not elsewhere classified, causing adverse effects in therapeutic use +E9336 Oral bisphosphonates +E9337 Intravenous bisphosphonates +E9338 Other systemic agents, not elsewhere classified, causing adverse effects in therapeutic use +E9339 Unspecified systemic agent causing adverse effects in therapeutic use +E9340 Iron and its compounds causing adverse effects in therapeutic use +E9341 Liver preparations and other antianemic agents causing adverse effects in therapeutic use +E9342 Anticoagulants causing adverse effects in therapeutic use +E9343 Vitamin k [phytonadione] causing adverse effects in therapeutic use +E9344 Fibrinolysis-affecting drugs causing adverse effects in therapeutic use +E9345 Anticoagulant antagonists and other coagulants causing adverse effects in therapeutic use +E9346 Gamma globulin causing adverse effects in therapeutic use +E9347 Natural blood and blood products causing adverse effects in therapeutic use +E9348 Other agents affecting blood constituents causing adverse effects in therapeutic use +E9349 Unspecified agent affecting blood constituents causing adverse effects in therapeutic use +E9350 Heroin causing adverse effects in therapeutic use +E9351 Methadone causing averse effects in therapeutic use +E9352 Other opiates and related narcotics causing adverse effects in therapeutic use +E9353 Salicylates causing adverse effects in therapeutic use +E9354 Aromatic analgesics, not elsewhere classified, causing adverse effects in therapeutic use +E9355 Pyrazole derivatives causing adverse effects in therapeutic use +E9356 Antirheumatics [antiphlogistics] causing adverse effects in therapeutic use +E9357 Other non-narcotic analgesics causing adverse effects in therapeutic use +E9358 Other specified analgesics and antipyretics causing adverse effects in therapeutic use +E9359 Unspecified analgesic and antipyretic causing adverse effects in therapeutic use +E9360 Oxazolidine derivatives causing adverse effects in therapeutic use +E9361 Hydantoin derivatives causing adverse effects in therapeutic use +E9362 Succinimides causing adverse effects in therapeutic use +E9363 Other and unspecified anticonvulsants causing adverse effects in therapeutic use +E9364 Anti-parkinsonism drugs causing adverse effects in therapeutic use +E9370 Barbiturates causing adverse effects in therapeutic use +E9371 Chloral hydrate group causing adverse effects in therapeutic use +E9372 Paraldehyde causing adverse effects in therapeutic use +E9373 Bromine compounds causing adverse effects in therapeutic use +E9374 Methaqualone compounds causing adverse effects in therapeutic use +E9375 Glutethimide group causing adverse effects in therapeutic use +E9376 Mixed sedatives, not elsewhere classified, causing adverse effects in therapeutic use +E9378 Other sedatives and hypnotics causing adverse effects in therapeutic use +E9379 Unspecified sedatives and hypnotics causing adverse effects in therapeutic use +E9380 Central nervous system muscle-tone depressants causing adverse effects in therapeutic use +E9381 Halothane causing adverse effects in therapeutic use +E9382 Other gaseous anesthetics causing adverse effects in therapeutic use +E9383 Intravenous anesthetics causing adverse effects in therapeutic use +E9384 Other and unspecified general anesthetics causing adverse effects in therapeutic use +E9385 Surface and infiltration anesthetics causing adverse effects in therapeutic use +E9386 Peripheral nerve- and plexus-blocking anesthetics causing adverse effects in therapeutic use +E9387 Spinal anesthetics causing adverse effects in therapeutic use +E9389 Other and unspecified local anesthetics causing adverse effects in therapeutic use +E9390 Antidepressants causing adverse effects in therapeutic use +E9391 Phenothiazine-based tranquilizers causing adverse effects in therapeutic use +E9392 Butyrophenone-based tranquilizers causing adverse effects in therapeutic use +E9393 Other antipsychotics, neuroleptics, and major tranquilizers causing adverse effects in therapeutic use +E9394 Benzodiazepine-based tranquilizers causing adverse effects in therapeutic use +E9395 Other tranquilizers causing adverse effects in therapeutic use +E9396 Psychodysleptics [hallucinogens] causing adverse effects in therapeutic use +E9397 Psychostimulants causing adverse effects in therapeutic use +E9398 Other psychotropic agents causing adverse effects in therapeutic use +E9399 Unspecified psychotropic agent causing adverse effects in therapeutic use +E9400 Analeptics causing adverse effects in therapeutic use +E9401 Opiate antagonists causing adverse effects in therapeutic use +E9408 Other specified central nervous system stimulants causing adverse effects in therapeutic use +E9409 Unspecified central nervous system stimulant causing adverse effects in therapeutic use +E9410 Parasympathomimetics [cholinergics] causing adverse effects in therapeutic use +E9411 Parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics causing adverse effects in therapeutic use +E9412 Sympathomimetics [adrenergics] causing adverse effects in therapeutic use +E9413 Sympatholytics [antiadrenergics] causing adverse effects in therapeutic use +E9419 Unspecified drug primarily affecting the autonomic nervous system causing adverse effects in therapeutic use +E9420 Cardiac rhythm regulators causing adverse effects in therapeutic use +E9421 Cardiotonic glycosides and drugs of similar action causing adverse effects in therapeutic use +E9422 Antilipemic and antiarteriosclerotic drugs causing adverse effects in therapeutic use +E9423 Ganglion-blocking agents causing adverse effects in therapeutic use +E9424 Coronary vasodilators causing adverse effects in therapeutic use +E9425 Other vasodilators causing adverse effects in therapeutic use +E9426 Other antihypertensive agents causing adverse effects in therapeutic use +E9427 Antivaricose drugs, including sclerosing agents, causing adverse effects in therapeutic use +E9428 Capillary-active drugs causing adverse effects in therapeutic use +E9429 Other and unspecified agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use +E9430 Antacids and antigastric secretion drugs causing adverse effects in therapeutic use +E9431 Irritant cathartics causing adverse effects in therapeutic use +E9432 Emollient cathartics causing adverse effects in therapeutic use +E9433 Other cathartics, including intestinal atonia drugs, causing adverse effects in therapeutic use +E9434 Digestants causing adverse effects in therapeutic use +E9435 Antidiarrheal drugs causing adverse effects in therapeutic use +E9436 Emetics causing adverse effects in therapeutic use +E9438 Other specified agents primarily affecting the gastro-intestinal system causing adverse effects in therapeutic use +E9439 Unspecified agent primarily affecting the gastrointestinal system causing adverse effects in therapeutic use +E9440 Mercurial diuretics causing adverse effects in therapeutic use +E9441 Purine derivative diuretics causing adverse effects in therapeutic use +E9442 Carbonic acid anhydrase inhibitors causing adverse effects in therapeutic use +E9443 Saluretics causing adverse effects in therapeutic use +E9444 Other diuretics causing adverse effects in therapeutic use +E9445 Electrolytic, caloric, and water-balance agents causing adverse effects in therapeutic use +E9446 Other mineral salts, not elsewhere classified, causing adverse effects in therapeutic use +E9447 Uric acid metabolism drugs causing adverse effects in therapeutic use +E9450 Oxytocic agents causing adverse effects in therapeutic use +E9451 Smooth muscle relaxants causing adverse effects in therapeutic use +E9452 Skeletal muscle relaxants causing adverse effects in therapeutic use +E9453 Other and unspecified drugs acting on muscles causing adverse effects in therapeutic use +E9454 Antitussives causing adverse effects in therapeutic use +E9455 Expectorants causing adverse effects in therapeutic use +E9456 Anti-common cold drugs causing adverse effects in therapeutic use +E9457 Antiasthmatics causing adverse effects in therapeutic use +E9458 Other and unspecified respiratory drugs causing adverse effects in therapeutic use +E9460 Local anti-infectives and anti-inflammatory drugs causing adverse effects in therapeutic use +E9461 Antipruritics causing adverse effects in therapeutic use +E9462 Local astringents and local detergents causing adverse effects in therapeutic use +E9463 Emollients, demulcents, and protectants causing adverse effects in therapeutic use +E9464 Keratolytics, keratoplastics, other hair treatment drugs and preparations causing adverse effects in therapeutic use +E9465 Eye anti-infectives and other eye drugs causing adverse effects in therapeutic use +E9466 Anti-infectives and other drugs and preparations for ear, nose, and throat causing adverse effects in therapeutic use +E9467 Dental drugs topically applied causing adverse effects in therapeutic use +E9468 Other agents primarily affecting skin and mucous membrane causing adverse effects in therapeutic use +E9469 Unspecified agent primarily affecting skin and mucous membrane causing adverse effects in therapeutic use +E9470 Dietetics causing adverse effects in therapeutic use +E9471 Lipotropic drugs causing adverse effects in therapeutic use +E9472 Antidotes and chelating agents, not elsewhere classified, causing adverse effects in therapeutic use +E9473 Alcohol deterrents causing adverse effects in therapeutic use +E9474 Pharmaceutical excipients causing adverse effects in therapeutic use +E9478 Other drugs and medicinal substances causing adverse effects in therapeutic use +E9479 Unspecified drug or medicinal substance causing adverse effects in therapeutic use +E9480 Bcg vaccine causing adverse effects in therapeutic use +E9481 Typhoid and paratyphoid vaccines causing adverse effects in therapeutic use +E9482 Cholera vaccine causing adverse effects in therapeutic use +E9483 Plague vaccine causing adverse effects in therapeutic use +E9484 Tetanus vaccine causing adverse effects in therapeutic use +E9485 Diphtheria vaccine causing adverse effects in therapeutic use +E9486 Pertussis vaccine, including combinations with a pertussis component, causing adverse effects in therapeutic use +E9488 Other and unspecified bacterial vaccines causing adverse effects in therapeutic use +E9489 Mixed bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use +E9490 Smallpox vaccine causing adverse effects in therapeutic use +E9491 Rabies vaccine causing adverse effects in therapeutic use +E9492 Typhus vaccine causing adverse effects in therapeutic use +E9493 Yellow fever vaccine causing adverse effects in therapeutic use +E9494 Measles vaccine causing adverse effects in therapeutic use +E9495 Poliomyelitis vaccine causing adverse effects in therapeutic use +E9496 Other and unspecified viral and rickettsial vaccines causing adverse effects in therapeutic use +E9497 Mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use +E9499 Other and unspecified vaccines and biological substances causing adverse effects in therapeutic use +E9500 Suicide and self-inflicted poisoning by analgesics, antipyretics, and antirheumatics +E9501 Suicide and self-inflicted poisoning by barbiturates +E9502 Suicide and self-inflicted poisoning by other sedatives and hypnotics +E9503 Suicide and self-inflicted poisoning by tranquilizers and other psychotropic agents +E9504 Suicide and self-inflicted poisoning by other specified drugs and medicinal substances +E9505 Suicide and self-inflicted poisoning by unspecified drug or medicinal substance +E9506 Suicide and self-inflicted poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers +E9507 Suicide and self-inflicted poisoning by corrosive and caustic substances +E9508 Suicide and self-inflicted poisoning by arsenic and its compounds +E9509 Suicide and self-inflicted poisoning by other and unspecified solid and liquid substances +E9510 Suicide and self-inflicted poisoning by gas distributed by pipeline +E9511 Suicide and self-inflicted poisoning by liquefied petroleum gas distributed in mobile containers +E9518 Suicide and self-inflicted poisoning by other utility gas +E9520 Suicide and self-inflicted poisoning by motor vehicle exhaust gas +E9521 Suicide and self-inflicted poisoning by other carbon monoxide +E9528 Suicide and self-inflicted poisoning by other specified gases and vapors +E9529 Suicide and self-inflicted poisoning by unspecified gases and vapors +E9530 Suicide and self-inflicted injury by hanging +E9531 Suicide and self-inflicted injury by suffocation by plastic bag +E9538 Suicide and self-inflicted injury by other specified means +E9539 Suicide and self-inflicted injury by unspecified means +E954 Suicide and self-inflicted injury by submersion [drowning] +E9550 Suicide and self-inflicted injury by handgun +E9551 Suicide and self-inflicted injury by shotgun +E9552 Suicide and self-inflicted injury by hunting rifle +E9553 Suicide and self-inflicted injury by military firearms +E9554 Suicide and self-inflicted injury by other and unspecified firearm +E9555 Suicide and self-inflicted injury by explosives +E9556 Suicide and self-inflicted injury by air gun +E9557 Suicide and self-inflicted injury by paintball gun +E9559 Suicide and self-inflicted injury by firearms and explosives, unspecified +E956 Suicide and self-inflicted injury by cutting and piercing instrument +E9570 Suicide and self-inflicted injuries by jumping from residential premises +E9571 Suicide and self-inflicted injuries by jumping from other man-made structures +E9572 Suicide and self-inflicted injuries by jumping from natural sites +E9579 Suicide and self-inflicted injuries by jumping from unspecified site +E9580 Suicide and self-inflicted injury by jumping or lying before moving object +E9581 Suicide and self-inflicted injury by burns, fire +E9582 Suicide and self-inflicted injury by scald +E9583 Suicide and self-inflicted injury by extremes of cold +E9584 Suicide and self-inflicted injury by electrocution +E9585 Suicide and self-inflicted injury by crashing of motor vehicle +E9586 Suicide and self-inflicted injury by crashing of aircraft +E9587 Suicide and self-inflicted injury by caustic substances, except poisoning +E9588 Suicide and self-inflicted injury by other specified means +E9589 Suicide and self-inflicted injury by unspecified means +E959 Late effects of self-inflicted injury +E9600 Unarmed fight or brawl +E9601 Rape +E961 Assault by corrosive or caustic substance, except poisoning +E9620 Assault by drugs and medicinal substances +E9621 Assault by other solid and liquid substances +E9622 Assault by other gases and vapors +E9629 Assault by unspecified poisoning +E963 Assault by hanging and strangulation +E964 Assault by submersion [drowning] +E9650 Assault by handgun +E9651 Assault by shotgun +E9652 Assault by hunting rifle +E9653 Assault by military firearms +E9654 Assault by other and unspecified firearm +E9655 Assault by antipersonnel bomb +E9656 Assault by gasoline bomb +E9657 Assault by letter bomb +E9658 Assault by other specified explosive +E9659 Assault by unspecified explosive +E966 Assault by cutting and piercing instrument +E9670 Perpetrator of child and adult abuse, by father, stepfather, or boyfriend +E9671 Perpetrator of child and adult abuse, by other specified person +E9672 Perpetrator of child and adult abuse, by mother, stepmother, or girlfriend +E9673 Perpetrator of child and adult abuse, by spouse or partner +E9674 Perpetrator of child and adult abuse, by child +E9675 Perpetrator of child and adult abuse, by sibling +E9676 Perpetrator of child and adult abuse, by grandparent +E9677 Perpetrator of child and adult abuse, by other relative +E9678 Perpetrator of child and adult abuse, by non-related caregiver +E9679 Perpetrator of child and adult abuse, by unspecified person +E9680 Assault by fire +E9681 Assault by pushing from a high place +E9682 Assault by striking by blunt or thrown object +E9683 Assault by hot liquid +E9684 Assault by criminal neglect +E9685 Assault by transport vehicle +E9686 Assault by air gun +E9687 Assault by human bite +E9688 Assault by other specified means +E9689 Assault by unspecified means +E969 Late effects of injury purposely inflicted by other person +E970 Injury due to legal intervention by firearms +E971 Injury due to legal intervention by explosives +E972 Injury due to legal intervention by gas +E973 Injury due to legal intervention by blunt object +E974 Injury due to legal intervention by cutting and piercing instrument +E975 Injury due to legal intervention by other specified means +E976 Injury due to legal intervention by unspecified means +E977 Late effects of injuries due to legal intervention +E978 Legal execution +E9790 Terrorism involving explosion of marine weapons +E9791 Terrorism involving destruction of aircraft +E9792 Terrorism involving other explosions and fragments +E9793 Terrorism involving fires +E9794 Terrorism involving firearms +E9795 Terrorism involving nuclear weapons +E9796 Terrorism involving biological weapons +E9797 Terrorism involving chemical weapons +E9798 Terrorism involving other means +E9799 Terrorism secondary effects +E9800 Poisoning by analgesics, antipyretics, and antirheumatics, undetermined whether accidentally or purposely inflicted +E9801 Poisoning by barbiturates, undetermined whether accidentally or purposely inflicted +E9802 Poisoning by other sedatives and hypnotics, undetermined whether accidentally or purposely inflicted +E9803 Poisoning by tranquilizers and other psychotropic agents, undetermined whether accidentally or purposely inflicted +E9804 Poisoning by other specified drugs and medicinal substances, undetermined whether accidentally or purposely inflicted +E9805 Poisoning by unspecified drug or medicinal substance, undetermined whether accidentally or purposely inflicted +E9806 Poisoning by corrosive and caustic substances, undetermined whether accidentally or purposely inflicted +E9807 Poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers, undetermined whether accidentally or purposely inflicted +E9808 Poisoning by arsenic and its compounds, undetermined whether accidentally or purposely inflicted +E9809 Poisoning by other and unspecified solid and liquid substances, undetermined whether accidentally or purposely inflicted +E9810 Poisoning by gas distributed by pipeline, undetermined whether accidentally or purposely inflicted +E9811 Poisoning by liquefied petroleum gas distributed in mobile containers, undetermined whether accidentally or purposely inflicted +E9818 Poisoning by other utility gas, undetermined whether accidentally or purposely inflicted +E9820 Poisoning by motor vehicle exhaust gas, undetermined whether accidentally or purposely inflicted +E9821 Poisoning by other carbon monoxide, undetermined whether accidentally or purposely inflicted +E9828 Poisoning by other specified gases and vapors, undetermined whether accidentally or purposely inflicted +E9829 Poisoning by unspecified gases and vapors, undetermined whether accidentally or purposely inflicted +E9830 Hanging, undetermined whether accidentally or purposely inflicted +E9831 Suffocation by plastic bag, undetermined whether accidentally or purposely inflicted +E9838 Strangulation or suffocation by other specified means, undetermined whether accidentally or purposely inflicted +E9839 Strangulation or suffocation by unspecified means, undetermined whether accidentally or purposely inflicted +E984 Submersion (drowning), undetermined whether accidentally or purposely inflicted +E9850 Injury by handgun, undetermined whether accidentally or purposely inflicted +E9851 Injury by shotgun, undetermined whether accidentally or purposely inflicted +E9852 Injury by hunting rifle, undetermined whether accidentally or purposely inflicted +E9853 Injury by military firearms, undetermined whether accidentally or purposely inflicted +E9854 Injury by other and unspecified firearm, undetermined whether accidentally or purposely inflicted +E9855 Injury by explosives, undetermined whether accidentally or purposely inflicted +E9856 Injury by air gun, undetermined whether accidental or purposely inflicted +E9857 Injury by paintball gun, undetermined whether accidental or purposely inflicted +E986 Injury by cutting and piercing instruments, undetermined whether accidentally or purposely inflicted +E9870 Falling from residential premises, undetermined whether accidentally or purposely inflicted +E9871 Falling from other man-made structures, undetermined whether accidentally or purposely inflicted +E9872 Falling from natural sites, undetermined whether accidentally or purposely inflicted +E9879 Falling from unspecified site, undetermined whether accidentally or purposely inflicted +E9880 Injury by jumping or lying before moving object, undetermined whether accidentally or purposely inflicted +E9881 Injury by burns or fire, undetermined whether accidentally or purposely inflicted +E9882 Injury by scald, undetermined whether accidentally or purposely inflicted +E9883 Injury by extremes of cold, undetermined whether accidentally or purposely inflicted +E9884 Injury by electrocution, undetermined whether accidentally or purposely inflicted +E9885 Injury by crashing of motor vehicle, undetermined whether accidentally or purposely inflicted +E9886 Injury by crashing of aircraft, undetermined whether accidentally or purposely inflicted +E9887 Injury by caustic substances, except poisoning, undetermined whether accidentally or purposely inflicted +E9888 Injury by other specified means, undetermined whether accidentally or purposely inflicted +E9889 Injury by unspecified means, undetermined whether accidentally or purposely inflicted +E989 Late effects of injury, undetermined whether accidentally or purposely inflicted +E9900 Injury due to war operations from gasoline bomb +E9901 Injury due to war operations from flamethrower +E9902 Injury due to war operations from incendiary bullet +E9903 Injury due to war operations from fire caused indirectly from conventional weapon +E9909 Injury due to war operations from other and unspecified source +E9910 Injury due to war operations from rubber bullets (rifle) +E9911 Injury due to war operations from pellets (rifle) +E9912 Injury due to war operations from other bullets +E9913 Injury due to war operations from antipersonnel bomb (fragments) +E9914 Injury due to war operations by fragments from munitions +E9915 Injury due to war operations by fragments from person-borne improvised explosive device [IED] +E9916 Injury due to war operations by fragments from vehicle-borne improvised explosive device [IED] +E9917 Injury due to war operations by fragments from other improvised explosive device [IED] +E9918 Injury due to war operations by fragments from weapons +E9919 Injury due to war operations from other and unspecified fragments +E9920 Injury due to torpedo +E9921 Injury due to depth charge +E9922 Injury due to marine mines +E9923 Injury due to sea-based artillery shell +E9928 Injury due to war operations by other marine weapons +E9929 Injury due to war operations by unspecified marine weapon +E9930 Injury due to war operations by aerial bomb +E9931 Injury due to war operations by guided missile +E9932 Injury due to war operations by mortar +E9933 Injury due to war operations by person-borne improvised explosive device [IED] +E9934 Injury due to war operations by vehicle-borne improvised explosive device [IED] +E9935 Injury due to war operations by other improvised explosive device [IED] +E9936 Injury due to war operations by unintentional detonation of own munitions +E9937 Injury due to war operations by unintentional discharge of own munitions launch device +E9938 Injury due to war operations by other specified explosion +E9939 Injury due to war operations by unspecified explosion +E9940 Injury due to war operations by destruction of aircraft due to enemy fire or explosives +E9941 Injury due to war operations by unintentional destruction of aircraft due to own onboard explosives +E9942 Injury due to war operations by destruction of aircraft due to collision with other aircraft +E9943 Injury due to war operations by destruction of aircraft due to onboard fire +E9948 Injury due to war operations by other destruction of aircraft +E9949 Injury due to war operations by unspecified destruction of aircraft +E9950 Injury due to war operations by unarmed hand-to-hand combat +E9951 Injury due to war operations, struck by blunt object +E9952 Injury due to war operations by piercing object +E9953 Injury due to war operations by intentional restriction of air and airway +E9954 Injury due to war operations by unintentional drowning due to inability to surface or obtain air +E9958 Injury due to war operations by other forms of conventional warfare +E9959 Injury due to war operations by unspecified form of conventional warfare +E9960 Injury due to war operations by direct blast effect of nuclear weapon +E9961 Injury due to war operations by indirect blast effect of nuclear weapon +E9962 Injury due to war operations by thermal radiation effect of nuclear weapon +E9963 Injury due to war operations by nuclear radiation effects +E9968 Injury due to war operations by other effects of nuclear weapons +E9969 Injury due to war operations by unspecified effect of nuclear weapon +E9970 Injury due to war operations by lasers +E9971 Injury due to war operations by biological warfare +E9972 Injury due to war operations by gases, fumes, and chemicals +E9973 Injury due to war operations by weapon of mass destruction [WMD], unspecified +E9978 Injury due to other specified forms of unconventional warfare +E9979 Injury due to unspecified form of unconventional warfare +E9980 Injury due to war operations but occurring after cessation of hostilities by explosion of mines +E9981 Injury due to war operations but occurring after cessation of hostilities by explosion of bombs +E9988 Injury due to other war operations but occurring after cessation of hostilities +E9989 Injury due to unspecified war operations but occurring after cessation of hostilities +E9990 Late effect of injury due to war operations +E9991 Late effect of injury due to terrorism +V010 Contact with or exposure to cholera +V011 Contact with or exposure to tuberculosis +V012 Contact with or exposure to poliomyelitis +V013 Contact with or exposure to smallpox +V014 Contact with or exposure to rubella +V015 Contact with or exposure to rabies +V016 Contact with or exposure to venereal diseases +V0171 Contact with or exposure to varicella +V0179 Contact with or exposure to other viral diseases +V0181 Contact with or exposure to anthrax +V0182 Exposure to SARS-associated coronavirus +V0183 Contact with or exposure to escherichia coli (E. coli) +V0184 Contact with or exposure to meningococcus +V0189 Contact with or exposure to other communicable diseases +V019 Contact with or exposure to unspecified communicable disease +V020 Carrier or suspected carrier of cholera +V021 Carrier or suspected carrier of typhoid +V022 Carrier or suspected carrier of amebiasis +V023 Carrier or suspected carrier of other gastrointestinal pathogens +V024 Carrier or suspected carrier of diphtheria +V0251 Carrier or suspected carrier of group B streptococcus +V0252 Carrier or suspected carrier of other streptococcus +V0253 Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus +V0254 Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus +V0259 Carrier or suspected carrier of other specified bacterial diseases +V0260 Viral hepatitis carrier, unspecified +V0261 Hepatitis B carrier +V0262 Hepatitis C carrier +V0269 Other viral hepatitis carrier +V027 Carrier or suspected carrier of gonorrhea +V028 Carrier or suspected carrier of other venereal diseases +V029 Carrier or suspected carrier of other specified infectious organism +V030 Need for prophylactic vaccination and inoculation against cholera alone +V031 Need for prophylactic vaccination and inoculation against typhoid-paratyphoid alone [TAB] +V032 Need for prophylactic vaccination and inoculation against tuberculosis [BCG] +V033 Need for prophylactic vaccination and inoculation against plague +V034 Need for prophylactic vaccination and inoculation against tularemia +V035 Need for prophylactic vaccination and inoculation against diphtheria alone +V036 Need for prophylactic vaccination and inoculation against pertussis alone +V037 Need for prophylactic vaccination and inoculation against tetanus toxoid alone +V0381 Other specified vaccinations against hemophilus influenza, type B [Hib] +V0382 Other specified vaccinations against streptococcus pneumoniae [pneumococcus] +V0389 Other specified vaccination +V039 Need for prophylactic vaccination and inoculation against unspecified single bacterial disease +V040 Need for prophylactic vaccination and inoculation against poliomyelitis +V041 Need for prophylactic vaccination and inoculation against smallpox +V042 Need for prophylactic vaccination and inoculation against measles alone +V043 Need for prophylactic vaccination and inoculation against rubella alone +V044 Need for prophylactic vaccination and inoculation against yellow fever +V045 Need for prophylactic vaccination and inoculation against rabies +V046 Need for prophylactic vaccination and inoculation against mumps alone +V047 Need for prophylactic vaccination and inoculation against common cold +V0481 Need for prophylactic vaccination and inoculation against influenza +V0482 Need for prophylactic vaccination and inoculation against respiratory syncytial virus (RSV) +V0489 Need for prophylactic vaccination and inoculation against other viral diseases +V050 Need for prophylactic vaccination and inoculation against arthropod-borne viral encephalitis +V051 Need for prophylactic vaccination and inoculation against other arthropod-borne viral diseases +V052 Need for prophylactic vaccination and inoculation against leishmaniasis +V053 Need for prophylactic vaccination and inoculation against viral hepatitis +V054 Need for prophylactic vaccination and inoculation against varicella +V058 Need for prophylactic vaccination and inoculation against other specified disease +V059 Need for prophylactic vaccination and inoculation against unspecified single disease +V060 Need for prophylactic vaccination and inoculation against cholera with typhoid-paratyphoid [cholera + TAB] +V061 Need for prophylactic vaccination and inoculation against diphtheria-tetanus-pertussis, combined [DTP] [DTaP] +V062 Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with typhoid-paratyphoid (DTP + TAB) +V063 Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with poliomyelitis [DTP + polio] +V064 Need for prophylactic vaccination and inoculation against measles-mumps-rubella (MMR) +V065 Need for prophylactic vaccination and inoculation against tetanus-diphtheria [Td] (DT) +V066 Need for prophylactic vaccination and inoculation against streptococcus pneumoniae [pneumococcus] and influenza +V068 Need for prophylactic vaccination and inoculation against other combinations of diseases +V069 Unspecified combined vaccine +V070 Need for isolation +V071 Need for desensitization to allergens +V072 Need for prophylactic immunotherapy +V0731 Need for prophylactic fluoride administration +V0739 Need for other prophylactic chemotherapy +V074 Hormone replacement therapy (postmenopausal) +V0751 Use of selective estrogen receptor modulators (SERMs) +V0752 Use of aromatase inhibitors +V0759 Use of other agents affecting estrogen receptors and estrogen levels +V078 Other specified prophylactic or treatment measure +V079 Unspecified prophylactic or treatment measure +V08 Asymptomatic human immunodeficiency virus [HIV] infection status +V090 Infection with microorganisms resistant to penicillins +V091 Infection with microorganisms resistant to cephalosporins and other B-lactam antibiotics +V092 Infection with microorganisms resistant to macrolides +V093 Infection with microorganisms resistant to tetracyclines +V094 Infection with microorganisms resistant to aminoglycosides +V0950 Infection with microorganisms without mention of resistance to multiple quinolones and fluroquinolones +V0951 Infection with microorganisms with resistance to multiple quinolones and fluroquinolones +V096 Infection with microorganisms resistant to sulfonamides +V0970 Infection with microorganisms without mention of resistance to multiple antimycobacterial agents +V0971 Infection with microorganisms with resistance to multiple antimycobacterial agents +V0980 Infection with microorganisms without mention of resistance to multiple drugs +V0981 Infection with microorganisms with resistance to multiple drugs +V0990 Infection with drug-resistant microorganisms, unspecified, without mention of multiple drug resistance +V0991 Infection with drug-resistant microorganisms, unspecified, with multiple drug resistance +V1000 Personal history of malignant neoplasm of gastrointestinal tract, unspecified +V1001 Personal history of malignant neoplasm of tongue +V1002 Personal history of malignant neoplasm of other and unspecified oral cavity and pharynx +V1003 Personal history of malignant neoplasm of esophagus +V1004 Personal history of malignant neoplasm of stomach +V1005 Personal history of malignant neoplasm of large intestine +V1006 Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus +V1007 Personal history of malignant neoplasm of liver +V1009 Personal history of malignant neoplasm of other gastrointestinal tract +V1011 Personal history of malignant neoplasm of bronchus and lung +V1012 Personal history of malignant neoplasm of trachea +V1020 Personal history of malignant neoplasm of respiratory organ, unspecified +V1021 Personal history of malignant neoplasm of larynx +V1022 Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses +V1029 Personal history of malignant neoplasm of other respiratory and intrathoracic organs +V103 Personal history of malignant neoplasm of breast +V1040 Personal history of malignant neoplasm of female genital organ, unspecified +V1041 Personal history of malignant neoplasm of cervix uteri +V1042 Personal history of malignant neoplasm of other parts of uterus +V1043 Personal history of malignant neoplasm of ovary +V1044 Personal history of malignant neoplasm of other female genital organs +V1045 Personal history of malignant neoplasm of male genital organ, unspecified +V1046 Personal history of malignant neoplasm of prostate +V1047 Personal history of malignant neoplasm of testis +V1048 Personal history of malignant neoplasm of epididymis +V1049 Personal history of malignant neoplasm of other male genital organs +V1050 Personal history of malignant neoplasm of urinary organ, unspecified +V1051 Personal history of malignant neoplasm of bladder +V1052 Personal history of malignant neoplasm of kidney +V1053 Personal history of malignant neoplasm of renal pelvis +V1059 Personal history of malignant neoplasm of other urinary organs +V1060 Personal history of leukemia, unspecified +V1061 Personal history of lymphoid leukemia +V1062 Personal history of myeloid leukemia +V1063 Personal history of monocytic leukemia +V1069 Personal history of other leukemia +V1071 Personal history of lymphosarcoma and reticulosarcoma +V1072 Personal history of hodgkin's disease +V1079 Personal history of other lymphatic and hematopoietic neoplasms +V1081 Personal history of malignant neoplasm of bone +V1082 Personal history of malignant melanoma of skin +V1083 Personal history of other malignant neoplasm of skin +V1084 Personal history of malignant neoplasm of eye +V1085 Personal history of malignant neoplasm of brain +V1086 Personal history of malignant neoplasm of other parts of nervous system +V1087 Personal history of malignant neoplasm of thyroid +V1088 Personal history of malignant neoplasm of other endocrine glands and related structures +V1089 Personal history of malignant neoplasm of other sites +V1090 Personal history of unspecified malignant neoplasm +V1091 Personal history of malignant neuroendocrine tumor +V110 Personal history of schizophrenia +V111 Personal history of affective disorders +V112 Personal history of neurosis +V113 Personal history of alcoholism +V114 Personal history of combat and operational stress reaction +V118 Personal history of other mental disorders +V119 Personal history of unspecified mental disorder +V1200 Personal history of unspecified infectious and parasitic disease +V1201 Personal history of tuberculosis +V1202 Personal history of poliomyelitis +V1203 Personal history of malaria +V1204 Personal history of Methicillin resistant Staphylococcus aureus +V1209 Personal history of other infectious and parasitic diseases +V121 Personal history of nutritional deficiency +V1221 Personal history of gestational diabetes +V1229 Personal history of other endocrine, metabolic, and immunity disorders +V123 Personal history of diseases of blood and blood-forming organs +V1240 Personal history of unspecified disorder of nervous system and sense organs +V1241 Personal history of benign neoplasm of the brain +V1242 Personal history of infections of the central nervous system +V1249 Personal history of other disorders of nervous system and sense organs +V1250 Personal history of unspecified circulatory disease +V1251 Personal history of venous thrombosis and embolism +V1252 Personal history of thrombophlebitis +V1253 Personal history of sudden cardiac arrest +V1254 Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits +V1255 Personal history of pulmonary embolism +V1259 Personal history of other diseases of circulatory system +V1260 Personal history of unspecified disease of respiratory system +V1261 Personal history of pneumonia (recurrent) +V1269 Personal history of other diseases of respiratory system +V1270 Personal history of unspecified digestive disease +V1271 Personal history of peptic ulcer disease +V1272 Personal history of colonic polyps +V1279 Personal history of other diseases of digestive system +V1300 Personal history of unspecified urinary disorder +V1301 Personal history of urinary calculi +V1302 Personal history, urinary (tract) infection +V1303 Personal history, nephrotic syndrome +V1309 Personal history of other specified urinary system disorders +V131 Personal history of trophoblastic disease +V1321 Personal history of pre-term labor +V1322 Personal history of cervical dysplasia +V1323 Personal history of vaginal dysplasia +V1324 Personal history of vulvar dysplasia +V1329 Personal history of other genital system and obstetric disorders +V133 Personal history of diseases of skin and subcutaneous tissue +V134 Personal history of arthritis +V1351 Personal history of pathologic fracture +V1352 Personal history of stress fracture +V1359 Personal history of other musculoskeletal disorders +V1361 Personal history of (corrected) hypospadias +V1362 Personal history of other (corrected) congenital malformations of genitourinary system +V1363 Personal history of (corrected) congenital malformations of nervous system +V1364 Personal history of (corrected) congenital malformations of eye, ear, face and neck +V1365 Personal history of (corrected) congenital malformations of heart and circulatory system +V1366 Personal history of (corrected) congenital malformations of respiratory system +V1367 Personal history of (corrected) congenital malformations of digestive system +V1368 Personal history of (corrected) congenital malformations of integument, limbs, and musculoskeletal systems +V1369 Personal history of other (corrected) congenital malformations +V137 Personal history of perinatal problems +V1381 Personal history of anaphylaxis +V1389 Personal history of other specified diseases +V139 Personal history of unspecified disease +V140 Personal history of allergy to penicillin +V141 Personal history of allergy to other antibiotic agent +V142 Personal history of allergy to sulfonamides +V143 Personal history of allergy to other anti-infective agent +V144 Personal history of allergy to anesthetic agent +V145 Personal history of allergy to narcotic agent +V146 Personal history of allergy to analgesic agent +V147 Personal history of allergy to serum or vaccine +V148 Personal history of allergy to other specified medicinal agents +V149 Personal history of allergy to unspecified medicinal agent +V1501 Allergy to peanuts +V1502 Allergy to milk products +V1503 Allergy to eggs +V1504 Allergy to seafood +V1505 Allergy to other foods +V1506 Allergy to insects and arachnids +V1507 Allergy to latex +V1508 Allergy to radiographic dye +V1509 Other allergy, other than to medicinal agents +V151 Personal history of surgery to heart and great vessels, presenting hazards to health +V1521 Personal history of undergoing in utero procedure during pregnancy +V1522 Personal history of undergoing in utero procedure while a fetus +V1529 Personal history of surgery to other organs +V153 Personal history of irradiation, presenting hazards to health +V1541 History of physical abuse +V1542 History of emotional abuse +V1549 Other psychological trauma +V1551 Personal history of traumatic fracture +V1552 Personal history of traumatic brain injury +V1553 Personal history of retained foreign body fully removed +V1559 Personal history of other injury +V156 Personal history of poisoning, presenting hazards to health +V157 Personal history of contraception, presenting hazards to health +V1580 Personal history of failed moderate sedation +V1581 Personal history of noncompliance with medical treatment, presenting hazards to health +V1582 Personal history of tobacco use +V1583 Personal history of underimmunization status +V1584 Personal history of contact with and (suspected) exposure to asbestos +V1585 Personal history of contact with and (suspected) exposure to potentially hazardous body fluids +V1586 Personal history of contact with and (suspected) exposure to lead +V1587 History of extracorporeal membrane oxygenation (ECMO) +V1588 History of fall +V1589 Other specified personal history presenting hazards to health +V159 Unspecified personal history presenting hazards to health +V160 Family history of malignant neoplasm of gastrointestinal tract +V161 Family history of malignant neoplasm of trachea, bronchus, and lung +V162 Family history of malignant neoplasm of other respiratory and intrathoracic organs +V163 Family history of malignant neoplasm of breast +V1640 Family history of malignant neoplasm of genital organ, unspecified +V1641 Family history of malignant neoplasm of ovary +V1642 Family history of malignant neoplasm of prostate +V1643 Family history of malignant neoplasm of testis +V1649 Family history of malignant neoplasm of other genital organs +V1651 Family history of malignant neoplasm of kidney +V1652 Family history of malignant neoplasm, bladder +V1659 Family history of malignant neoplasm of other urinary organs +V166 Family history of leukemia +V167 Family history of other lymphatic and hematopoietic neoplasms +V168 Family history of other specified malignant neoplasm +V169 Family history of unspecified malignant neoplasm +V170 Family history of psychiatric condition +V171 Family history of stroke (cerebrovascular) +V172 Family history of other neurological diseases +V173 Family history of ischemic heart disease +V1741 Family history of sudden cardiac death (SCD) +V1749 Family history of other cardiovascular diseases +V175 Family history of asthma +V176 Family history of other chronic respiratory conditions +V177 Family history of arthritis +V1781 Family history of osteoporosis +V1789 Family history of other musculoskeletal diseases +V180 Family history of diabetes mellitus +V1811 Family history of multiple endocrine neoplasia [MEN] syndrome +V1819 Family history of other endocrine and metabolic diseases +V182 Family history of anemia +V183 Family history of other blood disorders +V184 Family history of intellectual disabilities +V1851 Family history of colonic polyps +V1859 Family history of other digestive disorders +V1861 Family history of polycystic kidney +V1869 Family history of other kidney diseases +V187 Family history of other genitourinary diseases +V188 Family history of infectious and parasitic diseases +V189 Family history of genetic disease carrier +V190 Family history of blindness or visual loss +V1911 Family history of glaucoma +V1919 Family history of other specified eye disorder +V192 Family history of deafness or hearing loss +V193 Family history of other ear disorders +V194 Family history of skin conditions +V195 Family history of congenital anomalies +V196 Family history of allergic disorders +V197 Family history of consanguinity +V198 Family history of other condition +V200 Health supervision of foundling +V201 Other healthy infant or child receiving care +V202 Routine infant or child health check +V2031 Health supervision for newborn under 8 days old +V2032 Health supervision for newborn 8 to 28 days old +V210 Period of rapid growth in childhood +V211 Puberty +V212 Other development of adolescence +V2130 Low birth weight status, unspecified +V2131 Low birth weight status, less than 500 grams +V2132 Low birth weight status, 500-999 grams +V2133 Low birth weight status, 1000-1499 grams +V2134 Low birth weight status, 1500-1999 grams +V2135 Low birth weight status, 2000-2500 grams +V218 Other specified constitutional states in development +V219 Unspecified constitutional state in development +V220 Supervision of normal first pregnancy +V221 Supervision of other normal pregnancy +V222 Pregnant state, incidental +V230 Supervision of high-risk pregnancy with history of infertility +V231 Supervision of high-risk pregnancy with history of trophoblastic disease +V232 Supervision of high-risk pregnancy with history of abortion +V233 Supervision of high-risk pregnancy with grand multiparity +V2341 Pregnancy with history of pre-term labor +V2342 Pregnancy with history of ectopic pregnancy +V2349 Pregnancy with other poor obstetric history +V235 Supervision of high-risk pregnancy with other poor reproductive history +V237 Supervision of high-risk pregnancy with insufficient prenatal care +V2381 Supervision of high-risk pregnancy with elderly primigravida +V2382 Supervision of high-risk pregnancy with elderly multigravida +V2383 Supervision of high-risk pregnancy with young primigravida +V2384 Supervision of high-risk pregnancy with young multigravida +V2385 Pregnancy resulting from assisted reproductive technology +V2386 Pregnancy with history of in utero procedure during previous pregnancy +V2387 Pregnancy with inconclusive fetal viability +V2389 Supervision of other high-risk pregnancy +V239 Supervision of unspecified high-risk pregnancy +V240 Postpartum care and examination immediately after delivery +V241 Postpartum care and examination of lactating mother +V242 Routine postpartum follow-up +V2501 General counseling on prescription of oral contraceptives +V2502 General counseling on initiation of other contraceptive measures +V2503 Encounter for emergency contraceptive counseling and prescription +V2504 Counseling and instruction in natural family planning to avoid pregnancy +V2509 Other general counseling and advice on contraceptive management +V2511 Encounter for insertion of intrauterine contraceptive device +V2512 Encounter for removal of intrauterine contraceptive device +V2513 Encounter for removal and reinsertion of intrauterine contraceptive device +V252 Sterilization +V253 Menstrual extraction +V2540 Contraceptive surveillance, unspecified +V2541 Surveillance of contraceptive pill +V2542 Surveillance of intrauterine contraceptive device +V2543 Surveillance of implantable subdermal contraceptive +V2549 Surveillance of other contraceptive method +V255 Insertion of implantable subdermal contraceptive +V258 Other specified contraceptive management +V259 Unspecified contraceptive management +V260 Tuboplasty or vasoplasty after previous sterilization +V261 Artificial insemination +V2621 Fertility testing +V2622 Aftercare following sterilization reversal +V2629 Other investigation and testing +V2631 Testing of female for genetic disease carrier status +V2632 Other genetic testing of female +V2633 Genetic counseling +V2634 Testing of male for genetic disease carrier status +V2635 Encounter for testing of male partner of female with recurrent pregnancy loss +V2639 Other genetic testing of male +V2641 Procreative counseling and advice using natural family planning +V2642 Encounter for fertility preservation counseling +V2649 Other procreative management counseling and advice +V2651 Tubal ligation status +V2652 Vasectomy status +V2681 Encounter for assisted reproductive fertility procedure cycle +V2682 Encounter for fertility preservation procedure +V2689 Other specified procreative management +V269 Unspecified procreative management +V270 Outcome of delivery, single liveborn +V271 Outcome of delivery, single stillborn +V272 Outcome of delivery, twins, both liveborn +V273 Outcome of delivery, twins, one liveborn and one stillborn +V274 Outcome of delivery, twins, both stillborn +V275 Outcome of delivery, other multiple birth, all liveborn +V276 Outcome of delivery, other multiple birth, some liveborn +V277 Outcome of delivery, other multiple birth, all stillborn +V279 Outcome of delivery, unspecified outcome of delivery +V280 Antenatal screening for chromosomal anomalies by amniocentesis +V281 Antenatal screening for raised alpha-fetoprotein levels in amniotic fluid +V282 Other antenatal screening based on amniocentesis +V283 Encounter for routine screening for malformation using ultrasonics +V284 Antenatal screening for fetal growth retardation using ultrasonics +V285 Antenatal screening for isoimmunization +V286 Antenatal screening for Streptococcus B +V2881 Encounter for fetal anatomic survey +V2882 Encounter for screening for risk of pre-term labor +V2889 Other specified antenatal screening +V289 Unspecified antenatal screening +V290 Observation for suspected infectious condition +V291 Observation for suspected neurological conditions +V292 Observation and evaluation of newborn for suspected respiratory condition +V293 Observation for suspected genetic or metabolic condition +V298 Observation for other specified suspected conditions +V299 Observation for unspecified suspected conditions +V3000 Single liveborn, born in hospital, delivered without mention of cesarean section +V3001 Single liveborn, born in hospital, delivered by cesarean section +V301 Single liveborn, born before admission to hospital +V302 Single liveborn, born outside hospital and not hospitalized +V3100 Twin birth, mate liveborn, born in hospital, delivered without mention of cesarean section +V3101 Twin birth, mate liveborn, born in hospital, delivered by cesarean section +V311 Twin birth, mate liveborn, born before admission to hospital +V312 Twin birth, mate liveborn, born outside hospital and not hospitalized +V3200 Twin birth, mate stillborn, born in hospital, delivered without mention of cesarean section +V3201 Twin birth, mate stillborn, born in hospital, delivered by cesarean section +V321 Twin birth, mate stillborn, born before admission to hospital +V322 Twin birth, mate stillborn, born outside hospital and not hospitalized +V3300 Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered without mention of cesarean section +V3301 Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered by cesarean section +V331 Twin birth, unspecified whether mate liveborn or stillborn, born before admission to hospital +V332 Twin birth, unspecified whether mate liveborn or stillborn, born outside hospital and not hospitalized +V3400 Other multiple birth (three or more), mates all liveborn, born in hospital, delivered without mention of cesarean section +V3401 Other multiple birth (three or more), mates all liveborn, born in hospital, delivered by cesarean section +V341 Other multiple birth (three or more), mates all liveborn, born before admission to hospital +V342 Other multiple birth (three or more), mates all liveborn, born outside hospital and not hospitalized +V3500 Other multiple birth (three or more), mates all still born, born in hospital, delivered without mention of cesarean section +V3501 Other multiple birth (three or more), mates all still born, born in hospital, delivered by cesarean section +V351 Other multiple birth (three or more), mates all stillborn, born before admission to hospital +V352 Other multiple birth (three or more), mates all stillborn, born outside of hospital and not hospitalized +V3600 Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section +V3601 Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section +V361 Other multiple birth (three or more), mates liveborn and stillborn, born before admission to hospital +V362 Other multiple birth (three or more), mates liveborn and stillborn, born outside hospital and not hospitalized +V3700 Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered without mention of cesarean section +V3701 Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered by cesarean section +V371 Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born before admission to hospital +V372 Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born outside of hospital +V3900 Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered without mention of cesarean section +V3901 Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered by cesarean section +V391 Liveborn, unspecified whether single, twin or multiple, born before admission to hospital +V392 Liveborn, unspecified whether single, twin or multiple, born outside hospital and not hospitalized +V400 Mental and behavioral problems with learning +V401 Mental and behavioral problems with communication [including speech] +V402 Other mental problems +V4031 Wandering in diseases classified elsewhere +V4039 Other specified behavioral problem +V409 Unspecified mental or behavioral problem +V410 Problems with sight +V411 Other eye problems +V412 Problems with hearing +V413 Other ear problems +V414 Problems with voice production +V415 Problems with smell and taste +V416 Problems with swallowing and mastication +V417 Problems with sexual function +V418 Other problems with special functions +V419 Unspecified problem with special functions +V420 Kidney replaced by transplant +V421 Heart replaced by transplant +V422 Heart valve replaced by transplant +V423 Skin replaced by transplant +V424 Bone replaced by transplant +V425 Cornea replaced by transplant +V426 Lung replaced by transplant +V427 Liver replaced by transplant +V4281 Bone marrow replaced by transplant +V4282 Peripheral stem cells replaced by transplant +V4283 Pancreas replaced by transplant +V4284 Organ or tissue replaced by transplant, intestines +V4289 Other specified organ or tissue replaced by transplant +V429 Unspecified organ or tissue replaced by transplant +V430 Eye globe replaced by other means +V431 Lens replaced by other means +V4321 Organ or tissue replaced by other means, heart assist device +V4322 Organ or tissue replaced by other means, fully implantable artificial heart +V433 Heart valve replaced by other means +V434 Blood vessel replaced by other means +V435 Bladder replaced by other means +V4360 Unspecified joint replacement +V4361 Shoulder joint replacement +V4362 Elbow joint replacement +V4363 Wrist joint replacement +V4364 Hip joint replacement +V4365 Knee joint replacement +V4366 Ankle joint replacement +V4369 Other joint replacement +V437 Limb replaced by other means +V4381 Larynx replacement +V4382 Breast replacement +V4383 Artificial skin replacement +V4389 Other organ or tissue replaced by other means +V440 Tracheostomy status +V441 Gastrostomy status +V442 Ileostomy status +V443 Colostomy status +V444 Status of other artificial opening of gastrointestinal tract +V4450 Cystostomy, unspecified +V4451 Cutaneous-vesicostomy +V4452 Appendico-vesicostomy +V4459 Other cystostomy +V446 Other artificial opening of urinary tract status +V447 Artificial vagina status +V448 Other artificial opening status +V449 Unspecified artificial opening status +V4500 Unspecified cardiac device in situ +V4501 Cardiac pacemaker in situ +V4502 Automatic implantable cardiac defibrillator in situ +V4509 Other specified cardiac device in situ +V4511 Renal dialysis status +V4512 Noncompliance with renal dialysis +V452 Presence of cerebrospinal fluid drainage device +V453 Intestinal bypass or anastomosis status +V454 Arthrodesis status +V4551 Presence of intrauterine contraceptive device +V4552 Presence of subdermal contraceptive implant +V4559 Presence of other contraceptive device +V4561 Cataract extraction status +V4569 Other states following surgery of eye and adnexa +V4571 Acquired absence of breast and nipple +V4572 Acquired absence of intestine (large) (small) +V4573 Acquired absence of kidney +V4574 Acquired absence of organ, other parts of urinary tract +V4575 Acquired absence of organ, stomach +V4576 Acquired absence of organ, lung +V4577 Acquired absence of organ, genital organs +V4578 Acquired absence of organ, eye +V4579 Other acquired absence of organ +V4581 Aortocoronary bypass status +V4582 Percutaneous transluminal coronary angioplasty status +V4583 Breast implant removal status +V4584 Dental restoration status +V4585 Insulin pump status +V4586 Bariatric surgery status +V4587 Transplanted organ removal status +V4588 Status post administration of tPA (rtPA) in a different facility within the last 24 hours prior to admission to current facility +V4589 Other postprocedural status +V460 Dependence on aspirator +V4611 Dependence on respirator, status +V4612 Encounter for respirator dependence during power failure +V4613 Encounter for weaning from respirator [ventilator] +V4614 Mechanical complication of respirator [ventilator] +V462 Other dependence on machines, supplemental oxygen +V463 Wheelchair dependence +V468 Dependence on other enabling machines +V469 Unspecified machine dependence +V470 Deficiencies of internal organs +V471 Mechanical and motor problems with internal organs +V472 Other cardiorespiratory problems +V473 Other digestive problems +V474 Other urinary problems +V475 Other genital problems +V479 Unspecified problems with internal organs +V480 Deficiencies of head +V481 Deficiencies of neck and trunk +V482 Mechanical and motor problems with head +V483 Mechanical and motor problems with neck and trunk +V484 Sensory problem with head +V485 Sensory problem with neck and trunk +V486 Disfigurements of head +V487 Disfigurements of neck and trunk +V488 Other problems with head, neck, and trunk +V489 Unspecified problem with head, neck, or trunk +V490 Deficiencies of limbs +V491 Mechanical problems with limbs +V492 Motor problems with limbs +V493 Sensory problems with limbs +V494 Disfigurements of limbs +V495 Other problems of limbs +V4960 Unspecified level upper limb amputation status +V4961 Thumb amputation status +V4962 Other finger(s) amputation status +V4963 Hand amputation status +V4964 Wrist amputation status +V4965 Below elbow amputation status +V4966 Above elbow amputation status +V4967 Shoulder amputation status +V4970 Unspecified level lower limb amputation status +V4971 Great toe amputation status +V4972 Other toe(s) amputation status +V4973 Foot amputation status +V4974 Ankle amputation status +V4975 Below knee amputation status +V4976 Above knee amputation status +V4977 Hip amputation status +V4981 Asymptomatic postmenopausal status (age-related) (natural) +V4982 Dental sealant status +V4983 Awaiting organ transplant status +V4984 Bed confinement status +V4985 Dual sensory impairment +V4986 Do not resuscitate status +V4987 Physical restraints status +V4989 Other specified conditions influencing health status +V499 Unspecified problems with limbs and other problems +V500 Elective hair transplant for purposes other than remedying health states +V501 Other plastic surgery for unacceptable cosmetic appearance +V502 Routine or ritual circumcision +V503 Ear piercing +V5041 Prophylactic breast removal +V5042 Prophylactic ovary removal +V5049 Other prophylactic gland removal +V508 Other elective surgery for purposes other than remedying health states +V509 Unspecified elective surgery for purposes other than remedying health states +V510 Encounter for breast reconstruction following mastectomy +V518 Other aftercare involving the use of plastic surgery +V520 Fitting and adjustment of artificial arm (complete) (partial) +V521 Fitting and adjustment of artificial leg (complete) (partial) +V522 Fitting and adjustment of artificial eye +V523 Fitting and adjustment of dental prosthetic device +V524 Fitting and adjustment of breast prosthesis and implant +V528 Fitting and adjustment of other specified prosthetic device +V529 Fitting and adjustment of unspecified prosthetic device +V5301 Fitting and adjustment of cerebral ventricular (communicating) shunt +V5302 Fitting and adjustment of neuropacemaker (brain) (peripheral nerve) (spinal cord) +V5309 Fitting and adjustment of other devices related to nervous system and special senses +V531 Fitting and adjustment of spectacles and contact lenses +V532 Fitting and adjustment of hearing aid +V5331 Fitting and adjustment of cardiac pacemaker +V5332 Fitting and adjustment of automatic implantable cardiac defibrillator +V5339 Fitting and adjustment of other cardiac device +V534 Fitting and adjustment of orthodontic devices +V5350 Fitting and adjustment of intestinal appliance and device +V5351 Fitting and adjustment of gastric lap band +V5359 Fitting and adjustment of other gastrointestinal appliance and device +V536 Fitting and adjustment of urinary devices +V537 Fitting and adjustment of orthopedic devices +V538 Fitting and adjustment of wheelchair +V5390 Fitting and adjustment, unspecified device +V5391 Fitting and adjustment of insulin pump +V5399 Fitting and adjustment, other device +V5401 Encounter for removal of internal fixation device +V5402 Encounter for lengthening/adjustment of growth rod +V5409 Other aftercare involving internal fixation device +V5410 Aftercare for healing traumatic fracture of arm, unspecified +V5411 Aftercare for healing traumatic fracture of upper arm +V5412 Aftercare for healing traumatic fracture of lower arm +V5413 Aftercare for healing traumatic fracture of hip +V5414 Aftercare for healing traumatic fracture of leg, unspecified +V5415 Aftercare for healing traumatic fracture of upper leg +V5416 Aftercare for healing traumatic fracture of lower leg +V5417 Aftercare for healing traumatic fracture of vertebrae +V5419 Aftercare for healing traumatic fracture of other bone +V5420 Aftercare for healing pathologic fracture of arm, unspecified +V5421 Aftercare for healing pathologic fracture of upper arm +V5422 Aftercare for healing pathologic fracture of lower arm +V5423 Aftercare for healing pathologic fracture of hip +V5424 Aftercare for healing pathologic fracture of leg, unspecified +V5425 Aftercare for healing pathologic fracture of upper leg +V5426 Aftercare for healing pathologic fracture of lower leg +V5427 Aftercare for healing pathologic fracture of vertebrae +V5429 Aftercare for healing pathologic fracture of other bone +V5481 Aftercare following joint replacement +V5482 Aftercare following explantation of joint prosthesis +V5489 Other orthopedic aftercare +V549 Unspecified orthopedic aftercare +V550 Attention to tracheostomy +V551 Attention to gastrostomy +V552 Attention to ileostomy +V553 Attention to colostomy +V554 Attention to other artificial opening of digestive tract +V555 Attention to cystostomy +V556 Attention to other artificial opening of urinary tract +V557 Attention to artificial vagina +V558 Attention to other specified artificial opening +V559 Attention to unspecified artificial opening +V560 Encounter for extracorporeal dialysis +V561 Fitting and adjustment of extracorporeal dialysis catheter +V562 Fitting and adjustment of peritoneal dialysis catheter +V5631 Encounter for adequacy testing for hemodialysis +V5632 Encounter for adequacy testing for peritoneal dialysis +V568 Encounter for other dialysis +V570 Care involving breathing exercises +V571 Care involving other physical therapy +V5721 Encounter for occupational therapy +V5722 Encounter for vocational therapy +V573 Care involving speech-language therapy +V574 Care involving orthoptic training +V5781 Care involving orthotic training +V5789 Care involving other specified rehabilitation procedure +V579 Care involving unspecified rehabilitation procedure +V580 Encounter for radiotherapy +V5811 Encounter for antineoplastic chemotherapy +V5812 Encounter for antineoplastic immunotherapy +V582 Blood transfusion, without reported diagnosis +V5830 Encounter for change or removal of nonsurgical wound dressing +V5831 Encounter for change or removal of surgical wound dressing +V5832 Encounter for removal of sutures +V5841 Encounter for planned post-operative wound closure +V5842 Aftercare following surgery for neoplasm +V5843 Aftercare following surgery for injury and trauma +V5844 Aftercare following organ transplant +V5849 Other specified aftercare following surgery +V585 Orthodontics aftercare +V5861 Long-term (current) use of anticoagulants +V5862 Long-term (current) use of antibiotics +V5863 Long-term (current) use of antiplatelet/antithrombotic +V5864 Long-term (current) use of non-steroidal anti-inflammatories (NSAID) +V5865 Long-term (current) use of steroids +V5866 Long-term (current) use of aspirin +V5867 Long-term (current) use of insulin +V5868 Long term (current) use of bisphosphonates +V5869 Long-term (current) use of other medications +V5871 Aftercare following surgery of the sense organs, NEC +V5872 Aftercare following surgery of the nervous system, NEC +V5873 Aftercare following surgery of the circulatory system, NEC +V5874 Aftercare following surgery of the respiratory system, NEC +V5875 Aftercare following surgery of the teeth, oral cavity and digestive system, NEC +V5876 Aftercare following surgery of the genitourinary system, NEC +V5877 Aftercare following surgery of the skin and subcutaneous tissue, NEC +V5878 Aftercare following surgery of the musculoskeletal system, NEC +V5881 Fitting and adjustment of vascular catheter +V5882 Fitting and adjustment of nonvascular catheter, NEC +V5883 Encounter for therapeutic drug monitoring +V5889 Other specified aftercare +V589 Unspecified aftercare +V5901 Blood donors, whole blood +V5902 Blood donors, stem cells +V5909 Other blood donors +V591 Skin donors +V592 Bone donors +V593 Bone marrow donors +V594 Kidney donors +V595 Cornea donors +V596 Liver donors +V5970 Egg (oocyte) (ovum) donor, unspecified +V5971 Egg (oocyte) (ovum) donor, under age 35, anonymous recipient +V5972 Egg (oocyte) (ovum) donor, under age 35, designated recipient +V5973 Egg (oocyte) (ovum) donor, age 35 and over, anonymous recipient +V5974 Egg (oocyte) (ovum) donor, age 35 and over, designated recipient +V598 Donors of other specified organ or tissue +V599 Donors of unspecified organ or tissue +V600 Lack of housing +V601 Inadequate housing +V602 Inadequate material resources +V603 Person living alone +V604 No other household member able to render care +V605 Holiday relief care +V606 Person living in residential institution +V6081 Foster care (status) +V6089 Other specified housing or economic circumstances +V609 Unspecified housing or economic circumstance +V6101 Family disruption due to family member on military deployment +V6102 Family disruption due to return of family member from military deployment +V6103 Family disruption due to divorce or legal separation +V6104 Family disruption due to parent-child estrangement +V6105 Family disruption due to child in welfare custody +V6106 Family disruption due to child in foster care or in care of non-parental family member +V6107 Family disruption due to death of family member +V6108 Family disruption due to other extended absence of family member +V6109 Other family disruption +V6110 Counseling for marital and partner problems, unspecified +V6111 Counseling for victim of spousal and partner abuse +V6112 Counseling for perpetrator of spousal and partner abuse +V6120 Counseling for parent-child problem, unspecified +V6121 Counseling for victim of child abuse +V6122 Counseling for perpetrator of spousal and partner abuse +V6123 Counseling for parent-biological child problem +V6124 Counseling for parent-adopted child problem +V6125 Counseling for parent (guardian)-foster child problem +V6129 Other parent-child problems +V613 Problems with aged parents or in-laws +V6141 Alcoholism in family +V6142 Substance abuse in family +V6149 Other health problems within the family +V615 Multiparity +V616 Illegitimacy or illegitimate pregnancy +V617 Other unwanted pregnancy +V618 Other specified family circumstances +V619 Unspecified family circumstance +V620 Unemployment +V621 Adverse effects of work environment +V6221 Personal current military deployment status +V6222 Personal history of return from military deployment +V6229 Other occupational circumstances or maladjustment +V623 Educational circumstances +V624 Social maladjustment +V625 Legal circumstances +V626 Refusal of treatment for reasons of religion or conscience +V6281 Interpersonal problems, not elsewhere classified +V6282 Bereavement, uncomplicated +V6283 Counseling for perpetrator of physical/sexual abuse +V6284 Suicidal ideation +V6285 Homicidal ideation +V6289 Other psychological or physical stress, not elsewhere classified +V629 Unspecified psychosocial circumstance +V630 Residence remote from hospital or other health care facility +V631 Medical services in home not available +V632 Person awaiting admission to adequate facility elsewhere +V638 Other specified reasons for unavailability of medical facilities +V639 Unspecified reason for unavailability of medical facilities +V6400 Vaccination not carried out, unspecified reason +V6401 Vaccination not carried out because of acute illness +V6402 Vaccination not carried out because of chronic illness or condition +V6403 Vaccination not carried out because of immune compromised state +V6404 Vaccination not carried out because of allergy to vaccine or component +V6405 Vaccination not carried out because of caregiver refusal +V6406 Vaccination not carried out because of patient refusal +V6407 Vaccination not carried out for religious reasons +V6408 Vaccination not carried out because patient had disease being vaccinated against +V6409 Vaccination not carried out for other reason +V641 Surgical or other procedure not carried out because of contraindication +V642 Surgical or other procedure not carried out because of patient's decision +V643 Procedure not carried out for other reasons +V6441 Laparoscopic surgical procedure converted to open procedure +V6442 Thoracoscopic surgical procedure converted to open procedure +V6443 Arthroscopic surgical procedure converted to open procedure +V650 Healthy person accompanying sick person +V6511 Pediatric pre-birth visit for expectant parent(s) +V6519 Other person consulting on behalf of another person +V652 Person feigning illness +V653 Dietary surveillance and counseling +V6540 Counseling NOS +V6541 Exercise counseling +V6542 Counseling on substance use and abuse +V6543 Counseling on injury prevention +V6544 Human immunodeficiency virus (HIV) counseling +V6545 Counseling on other sexually transmitted diseases +V6546 Encounter for insulin pump training +V6549 Other specified counseling +V655 Person with feared complaint in whom no diagnosis was made +V658 Other reasons for seeking consultation +V659 Unspecified reason for consultation +V660 Convalescence following surgery +V661 Convalescence following radiotherapy +V662 Convalescence following chemotherapy +V663 Convalescence following psychotherapy and other treatment for mental disorder +V664 Convalescence following treatment of fracture +V665 Convalescence following other treatment +V666 Convalescence following combined treatment +V667 Encounter for palliative care +V669 Unspecified convalescence +V6700 Follow-up examination, following surgery, unspecified +V6701 Following surgery, follow-up vaginal pap smear +V6709 Follow-up examination, following other surgery +V671 Follow-up examination, following radiotherapy +V672 Follow-up examination, following chemotherapy +V673 Follow-up examination, following psychotherapy and other treatment for mental disorder +V674 Follow-up examination, following treatment of healed fracture +V6751 Follow-up examination, following completed treatment with high-risk medication, not elsewhere classified +V6759 Other follow-up examination +V676 Follow-up examination, following combined treatment +V679 Unspecified follow-up examination +V6801 Disability examination +V6809 Other issue of medical certificates +V681 Issue of repeat prescriptions +V682 Request for expert evidence +V6881 Referral of patient without examination or treatment +V6889 Encounters for other specified administrative purpose +V689 Encounters for unspecified administrative purpose +V690 Lack of physical exercise +V691 Inappropriate diet and eating habits +V692 High-risk sexual behavior +V693 Gambling and betting +V694 Lack of adequate sleep +V695 Behavioral insomnia of childhood +V698 Other problems related to lifestyle +V699 Unspecified problem related to lifestyle +V700 Routine general medical examination at a health care facility +V701 General psychiatric examination, requested by the authority +V702 General psychiatric examination, other and unspecified +V703 Other general medical examination for administrative purposes +V704 Examination for medicolegal reasons +V705 Health examination of defined subpopulations +V706 Health examination in population surveys +V707 Examination of participant in clinical trial +V708 Other specified general medical examinations +V709 Unspecified general medical examination +V7101 Observation for adult antisocial behavior +V7102 Observation for childhood or adolescent antisocial behavior +V7109 Observation for other suspected mental condition +V711 Observation for suspected malignant neoplasm +V712 Observation for suspected tuberculosis +V713 Observation following accident at work +V714 Observation following other accident +V715 Observation following alleged rape or seduction +V716 Observation following other inflicted injury +V717 Observation for suspected cardiovascular disease +V7181 Observation and evaluation for suspected abuse and neglect +V7182 Observation and evaluation for suspected exposure to anthrax +V7183 Observation and evaluation for suspected exposure to other biological agent +V7189 Observation and evaluation for other specified suspected conditions +V719 Observation for unspecified suspected condition +V720 Examination of eyes and vision +V7211 Encounter for hearing examination following failed hearing screening +V7212 Encounter for hearing conservation and treatment +V7219 Other examination of ears and hearing +V722 Dental examination +V7231 Routine gynecological examination +V7232 Encounter for Papanicolaou cervical smear to confirm findings of recent normal smear following initial abnormal smear +V7240 Pregnancy examination or test, pregnancy unconfirmed +V7241 Pregnancy examination or test, negative result +V7242 Pregnancy examination or test, positive result +V725 Radiological examination, not elsewhere classified +V7260 Laboratory examination, unspecified +V7261 Antibody response examination +V7262 Laboratory examination ordered as part of a routine general medical examination +V7263 Pre-procedural laboratory examination +V7269 Other laboratory examination +V727 Diagnostic skin and sensitization tests +V7281 Pre-operative cardiovascular examination +V7282 Pre-operative respiratory examination +V7283 Other specified pre-operative examination +V7284 Pre-operative examination, unspecified +V7285 Other specified examination +V7286 Encounter for blood typing +V729 Unspecified examination +V730 Screening examination for poliomyelitis +V731 Screening examination for smallpox +V732 Screening examination for measles +V733 Screening examination for rubella +V734 Screening examination for yellow fever +V735 Screening examination for other arthropod-borne viral diseases +V736 Screening examination for trachoma +V7381 Special screening examination for Human papillomavirus (HPV) +V7388 Special screening examination for other specified chlamydial diseases +V7389 Special screening examination for other specified viral diseases +V7398 Special screening examination for unspecified chlamydial disease +V7399 Special screening examination for unspecified viral disease +V740 Screening examination for cholera +V741 Screening examination for pulmonary tuberculosis +V742 Screening examination for leprosy (Hansen's disease) +V743 Screening examination for diphtheria +V744 Screening examination for bacterial conjunctivitis +V745 Screening examination for venereal disease +V746 Screening examination for yaws +V748 Screening examination for other specified bacterial and spirochetal diseases +V749 Screening examination for unspecified bacterial and spirochetal diseases +V750 Screening examination for rickettsial diseases +V751 Screening examination for malaria +V752 Screening examination for leishmaniasis +V753 Screening examination for trypanosomiasis +V754 Screening examination for mycotic infections +V755 Screening examination for schistosomiasis +V756 Screening examination for filariasis +V757 Screening examination for intestinal helminthiasis +V758 Screening examination for other specified parasitic infections +V759 Screening examination for unspecified infectious disease +V760 Special screening for malignant neoplasms of respiratory organs +V7610 Breast screening, unspecified +V7611 Screening mammogram for high-risk patient +V7612 Other screening mammogram +V7619 Other screening breast examination +V762 Screening for malignant neoplasms of cervix +V763 Screening for malignant neoplasms of bladder +V7641 Screening for malignant neoplasms of rectum +V7642 Screening for malignant neoplasms of oral cavity +V7643 Screening for malignant neoplasms of skin +V7644 Screening for malignant neoplasms of prostate +V7645 Screening for malignant neoplasms of testis +V7646 Special screening for malignant neoplasms of ovary +V7647 Special screening for malignant neoplasms of vagina +V7649 Special screening for malignant neoplasms of other sites +V7650 Special screening for malignant neoplasms for intestine, unspecified +V7651 Special screening for malignant neoplasms of colon +V7652 Special screening for malignant neoplasms of small intestine +V7681 Special screening for malignant neoplasms of nervous system +V7689 Special screening for other malignant neoplasms +V769 Special screening for unspecified malignant neoplasms +V770 Screening for thyroid disorders +V771 Screening for diabetes mellitus +V772 Screening for malnutrition +V773 Screening for phenylketonuria (PKU) +V774 Screening for galactosemia +V775 Screening for gout +V776 Screening for cystic fibrosis +V777 Screening for other inborn errors of metabolism +V778 Screening for obesity +V7791 Screening for lipoid disorders +V7799 Screening for other and unspecified endocrine, nutritional, metabolic, and immunity disorders +V780 Screening for iron deficiency anemia +V781 Screening for other and unspecified deficiency anemia +V782 Screening for sickle-cell disease or trait +V783 Screening for other hemoglobinopathies +V788 Screening for other disorders of blood and blood-forming organs +V789 Screening for unspecified disorder of blood and blood-forming organs +V790 Screening for depression +V791 Screening for alcoholism +V792 Special screening for intellectual disabilities +V793 Screening for developmental handicaps in early childhood +V798 Screening for other specified mental disorders and developmental handicaps +V799 Screening for unspecified mental disorder and developmental handicap +V8001 Special screening for traumatic brain injury +V8009 Special screening for other neurological conditions +V801 Screening for glaucoma +V802 Screening for other eye conditions +V803 Screening for ear diseases +V810 Screening for ischemic heart disease +V811 Screening for hypertension +V812 Screening for other and unspecified cardiovascular conditions +V813 Screening for chronic bronchitis and emphysema +V814 Screening for other and unspecified respiratory conditions +V815 Screening for nephropathy +V816 Screening for other and unspecified genitourinary conditions +V820 Screening for skin conditions +V821 Screening for rheumatoid arthritis +V822 Screening for other rheumatic disorders +V823 Screening for congenital dislocation of hip +V824 Maternal postnatal screening for chromosomal anomalies +V825 Screening for chemical poisoning and other contamination +V826 Multiphasic screening +V8271 Screening for genetic disease carrier status +V8279 Other genetic screening +V8281 Special screening for osteoporosis +V8289 Special screening for other specified conditions +V829 Screening for unspecified condition +V8301 Asymptomatic hemophilia A carrier +V8302 Symptomatic hemophilia A carrier +V8381 Cystic fibrosis gene carrier +V8389 Other genetic carrier status +V8401 Genetic susceptibility to malignant neoplasm of breast +V8402 Genetic susceptibility to malignant neoplasm of ovary +V8403 Genetic susceptibility to malignant neoplasm of prostate +V8404 Genetic susceptibility to malignant neoplasm of endometrium +V8409 Genetic susceptibility to other malignant neoplasm +V8481 Genetic susceptibility to multiple endocrine neoplasia [MEN] +V8489 Genetic susceptibility to other disease +V850 Body Mass Index less than 19, adult +V851 Body Mass Index between 19-24, adult +V8521 Body Mass Index 25.0-25.9, adult +V8522 Body Mass Index 26.0-26.9, adult +V8523 Body Mass Index 27.0-27.9, adult +V8524 Body Mass Index 28.0-28.9, adult +V8525 Body Mass Index 29.0-29.9, adult +V8530 Body Mass Index 30.0-30.9, adult +V8531 Body Mass Index 31.0-31.9, adult +V8532 Body Mass Index 32.0-32.9, adult +V8533 Body Mass Index 33.0-33.9, adult +V8534 Body Mass Index 34.0-34.9, adult +V8535 Body Mass Index 35.0-35.9, adult +V8536 Body Mass Index 36.0-36.9, adult +V8537 Body Mass Index 37.0-37.9, adult +V8538 Body Mass Index 38.0-38.9, adult +V8539 Body Mass Index 39.0-39.9, adult +V8541 Body Mass Index 40.0-44.9, adult +V8542 Body Mass Index 45.0-49.9, adult +V8543 Body Mass Index 50.0-59.9, adult +V8544 Body Mass Index 60.0-69.9, adult +V8545 Body Mass Index 70 and over, adult +V8551 Body Mass Index, pediatric, less than 5th percentile for age +V8552 Body Mass Index, pediatric, 5th percentile to less than 85th percentile for age +V8553 Body Mass Index, pediatric, 85th percentile to less than 95th percentile for age +V8554 Body Mass Index, pediatric, greater than or equal to 95th percentile for age +V860 Estrogen receptor positive status [ER+] +V861 Estrogen receptor negative status [ER-] +V8701 Contact with and (suspected) exposure to arsenic +V8702 Contact with and (suspected) exposure to uranium +V8709 Contact with and (suspected) exposure to other hazardous metals +V8711 Contact with and (suspected) exposure to aromatic amines +V8712 Contact with and (suspected) exposure to benzene +V8719 Contact with and (suspected) exposure to other hazardous aromatic compounds +V872 Contact with and (suspected) exposure to other potentially hazardous chemicals +V8731 Contact with and (suspected) exposure to mold +V8732 Contact with and (suspected) exposure to algae bloom +V8739 Contact with and (suspected) exposure to other potentially hazardous substances +V8741 Personal history of antineoplastic chemotherapy +V8742 Personal history of monoclonal drug therapy +V8743 Personal history of estrogen therapy +V8744 Personal history of inhaled steroid therapy +V8745 Personal history of systemic steroid therapy +V8746 Personal history of immunosuppressive therapy +V8749 Personal history of other drug therapy +V8801 Acquired absence of both cervix and uterus +V8802 Acquired absence of uterus with remaining cervical stump +V8803 Acquired absence of cervix with remaining uterus +V8811 Acquired total absence of pancreas +V8812 Acquired partial absence of pancreas +V8821 Acquired absence of hip joint +V8822 Acquired absence of knee joint +V8829 Acquired absence of other joint +V8901 Suspected problem with amniotic cavity and membrane not found +V8902 Suspected placental problem not found +V8903 Suspected fetal anomaly not found +V8904 Suspected problem with fetal growth not found +V8905 Suspected cervical shortening not found +V8909 Other suspected maternal and fetal condition not found +V9001 Retained depleted uranium fragments +V9009 Other retained radioactive fragments +V9010 Retained metal fragments, unspecified +V9011 Retained magnetic metal fragments +V9012 Retained nonmagnetic metal fragments +V902 Retained plastic fragments +V9031 Retained animal quills or spines +V9032 Retained tooth +V9033 Retained wood fragments +V9039 Other retained organic fragments +V9081 Retained glass fragments +V9083 Retained stone or crystalline fragments +V9089 Other specified retained foreign body +V909 Retained foreign body, unspecified material +V9100 Twin gestation, unspecified number of placenta, unspecified number of amniotic sacs +V9101 Twin gestation, monochorionic/monoamniotic (one placenta, one amniotic sac) +V9102 Twin gestation, monochorionic/diamniotic (one placenta, two amniotic sacs) +V9103 Twin gestation, dichorionic/diamniotic (two placentae, two amniotic sacs) +V9109 Twin gestation, unable to determine number of placenta and number of amniotic sacs +V9110 Triplet gestation, unspecified number of placenta and unspecified number of amniotic sacs +V9111 Triplet gestation, with two or more monochorionic fetuses +V9112 Triplet gestation, with two or more monoamniotic fetuses +V9119 Triplet gestation, unable to determine number of placenta and number of amniotic sacs +V9120 Quadruplet gestation, unspecified number of placenta and unspecified number of amniotic sacs +V9121 Quadruplet gestation, with two or more monochorionic fetuses +V9122 Quadruplet gestation, with two or more monoamniotic fetuses +V9129 Quadruplet gestation, unable to determine number of placenta and number of amniotic sacs +V9190 Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs +V9191 Other specified multiple gestation, with two or more monochorionic fetuses +V9192 Other specified multiple gestation, with two or more monoamniotic fetuses +V9199 Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs diff --git a/create_data_set/imputation_rules.xlsx b/create_data_set/imputation_rules.xlsx new file mode 100644 index 0000000..e13cb7d Binary files /dev/null and b/create_data_set/imputation_rules.xlsx differ diff --git a/create_data_set/pre_esrd_hh_claim_variables.R b/create_data_set/pre_esrd_hh_claim_variables.R new file mode 100644 index 0000000..5a07851 --- /dev/null +++ b/create_data_set/pre_esrd_hh_claim_variables.R @@ -0,0 +1,112 @@ +#Variables to create the table for the home health (hh) pre-esrd claims +# from 2011-2016. Pre-esrd claims in USRDS are kept in files specific to the year. + +# the order of these files matters. +# use 2012 to create the postgres table and then add the other years to it +filenames_esrd = + c( + "preesrd5y_hh_clm_inc2012", + "preesrd5y_hh_clm_inc2013", + "preesrd5y_hh_clm_inc2014", + "preesrd5y_hh_clm_inc2015", + "preesrd5y_hh_clm_inc2016", + "preesrd5y_hh_clm_inc2017", + "preesrd5y_hh_clm_inc2011" + ) + +fieldnames_esrd = + c( + "ATTENDING_PHYS", + "CDTYPE", + "CLM_AMT", + "CLM_TOT", + "DPOADMIN", + "DPODOSE", + "DPOCASH", + "DIALCRC", + "DIALCASH", + "DIALREVC", + "DIALSESS", + "EPOADMIN", + "EPODOSE", + "EPOCASH", + "HCFASAF", + "HCRIT", + "HGB", + "incident_year", + "masked_CLM_FROM", + "masked_CLM_THRU", + "PDGNS_CD", + "PRM_PYR", + "PROVUSRD", + "PRPAYAMT", + "RXCAT", + "SEQ_KEYC", + "OPERATING_PHYS", + "OTHER_PHYS", + "USRDS_ID" +) +####column types ##### +columns_esrd_2015 = cols( + ATTENDING_PHYS = col_double(), + CLM_AMT = col_double(), + CLM_TOT = col_double(), + DRG_CD = col_double(), + DIALCRC = col_double(), + DIALSESS = col_double(), + DPODOSE = col_double(), + DIALREVC = "c", + DISCSTAT = "c", + EPODOSE = col_double(), + EPOADMIN = col_double(), + HCFASAF = "c", + HCRIT = col_double(), + HGB =col_double(), + masked_CLM_THRU = col_double(), + masked_CLM_FROM = col_double(), + OPERATING_PHYS = col_double(), + OTHER_PHYS = col_double(), + PER_DIEM = col_double(), + PDGNS_CD = "c", + PROVUSRD = col_double(), + PRPAYAMT = col_double(), + PRM_PYR = "c", + randomOffsetInDays = col_double(), + RXCAT = "c", + SEQ_KEYC = "c", + TDEDAMT = col_double(), + TYPE_OF_BILL = col_double() +) +####column types ##### +columns_esrd = cols( + ATTENDING_PHYS = col_double(), + CDTYPE = "c", + CLM_AMT = col_double(), + CLM_TOT = col_double(), + DRG_CD = col_double(), + DIALCRC = col_double(), + DIALSESS = col_double(), + DPODOSE = col_double(), + DIALREVC = "c", + DISCSTAT = "c", + EPODOSE = col_double(), + EPOADMIN = col_double(), + HCFASAF = "c", + HCRIT = col_double(), + HGB =col_double(), + masked_CLM_THRU = col_double(), + masked_CLM_FROM = col_double(), + OPERATING_PHYS = col_double(), + OTHER_PHYS = col_double(), + PER_DIEM = col_double(), + PDGNS_CD = "c", + PROVUSRD = col_double(), + PRPAYAMT = col_double(), + PRM_PYR = "c", + randomOffsetInDays = col_double(), + RXCAT = "c", + SEQ_KEYC = "c", + TDEDAMT = col_double(), + TYPE_OF_BILL = col_double(), + TYPE_ADM = col_double() +) \ No newline at end of file diff --git a/create_data_set/pre_esrd_hs_claim_variables.R b/create_data_set/pre_esrd_hs_claim_variables.R new file mode 100644 index 0000000..a85d3e2 --- /dev/null +++ b/create_data_set/pre_esrd_hs_claim_variables.R @@ -0,0 +1,115 @@ +#Variables to create the table for the hospice (hs) pre-esrd claims from +#2011-2016. Pre-esrd claims in USRDS are kept in files specific to the year. + +# the order of these files matters. +# use 2012 to create the postgres table and then add the other years to it +filenames_esrd = + c( + "preesrd5y_hs_clm_inc2012", + "preesrd5y_hs_clm_inc2013", + "preesrd5y_hs_clm_inc2014", + "preesrd5y_hs_clm_inc2015", + "preesrd5y_hs_clm_inc2016", + "preesrd5y_hs_clm_inc2017", + "preesrd5y_hs_clm_inc2011" + ) +#####fieldnames#### +fieldnames_esrd = c( + "USRDS_ID", + "CDTYPE", + "CLM_AMT", + "CLM_TOT", + "DPOADMIN", + "DPODOSE", + "DPOCASH", + "DIALCRC", + "DIALCASH", + "DIALREVC", + "DIALSESS", + "DISCSTAT", + "EPOADMIN", + "EPODOSE", + "EPOCASH", + "HCFASAF", + "HCRIT", + "HGB", + "PDGNS_CD", + "PRM_PYR", + "PROVUSRD", + "PRPAYAMT", + "RXCAT", + "SEQ_KEYC", + "ATTENDING_PHYS", + "OPERATING_PHYS", + "OTHER_PHYS", + "masked_CLM_FROM", + "masked_CLM_THRU", + "masked_HSPCSTRT", + "incident_year" +) +####column types ##### +columns_esrd_2015 = cols( + ATTENDING_PHYS = col_double(), + CLM_AMT = col_double(), + CLM_TOT = col_double(), + DRG_CD = col_double(), + DIALCRC = col_double(), + DIALSESS = col_double(), + DPODOSE = col_double(), + DIALREVC = "c", + DISCSTAT = "c", + EPODOSE = col_double(), + EPOADMIN = col_double(), + HCFASAF = "c", + HCRIT = col_double(), + HGB =col_double(), + masked_HSPCSTRT=col_double(), + masked_CLM_THRU = col_double(), + masked_CLM_FROM = col_double(), + OPERATING_PHYS = col_double(), + OTHER_PHYS = col_double(), + PER_DIEM = col_double(), + PDGNS_CD = "c", + PROVUSRD = col_double(), + PRPAYAMT = col_double(), + PRM_PYR = "c", + randomOffsetInDays = col_double(), + RXCAT = "c", + SEQ_KEYC = "c", + TDEDAMT = col_double(), + TYPE_OF_BILL = col_double() +) +####column types ##### +columns_esrd = cols( + ATTENDING_PHYS = col_double(), + CDTYPE = "c", + CLM_AMT = col_double(), + CLM_TOT = col_double(), + DRG_CD = col_double(), + DIALCRC = col_double(), + DIALSESS = col_double(), + DPODOSE = col_double(), + DIALREVC = "c", + DISCSTAT = "c", + EPODOSE = col_double(), + EPOADMIN = col_double(), + HCFASAF = "c", + HCRIT = col_double(), + HGB =col_double(), + masked_HSPCSTRT=col_double(), + masked_CLM_THRU = col_double(), + masked_CLM_FROM = col_double(), + OPERATING_PHYS = col_double(), + OTHER_PHYS = col_double(), + PER_DIEM = col_double(), + PDGNS_CD = "c", + PROVUSRD = col_double(), + PRPAYAMT = col_double(), + PRM_PYR = "c", + randomOffsetInDays = col_double(), + RXCAT = "c", + SEQ_KEYC = "c", + TDEDAMT = col_double(), + TYPE_OF_BILL = col_double(), + TYPE_ADM = col_double() +) \ No newline at end of file diff --git a/create_data_set/pre_esrd_ip_claim_variables.R b/create_data_set/pre_esrd_ip_claim_variables.R new file mode 100644 index 0000000..512523c --- /dev/null +++ b/create_data_set/pre_esrd_ip_claim_variables.R @@ -0,0 +1,120 @@ +#Variables to create the table for the inpatient (ip) pre-esrd claims from +#2011-2016. Pre-esrd claims in USRDS are kept in files specific to the year. + +# the order of these files matters. +# use 2012 to create the postgres table and then add the other years to it +filenames_esrd = + c( + "preesrd5y_ip_clm_inc2012", + "preesrd5y_ip_clm_inc2013", + "preesrd5y_ip_clm_inc2014", + "preesrd5y_ip_clm_inc2015", + "preesrd5y_ip_clm_inc2016", + "preesrd5y_ip_clm_inc2017", + "preesrd5y_ip_clm_inc2011" + ) +#####fieldnames#### +fieldnames_esrd = c( + "ATTENDING_PHYS", + "CDTYPE", + "CLM_AMT", + "CLM_TOT", + "CVR_DCNT", + "DRG_CD", + "DPOADMIN", + "DPODOSE", + "DPOCASH", + "DIALCRC", + "DIALCASH", + "DIALREVC", + "DIALSESS", + "DISCSTAT", + "EPOADMIN", + "EPODOSE", + "EPOCASH", + "HCFASAF", + "HCRIT", + "HGB", + "incident_year", + "masked_CLM_FROM", + "masked_CLM_THRU", + "OPERATING_PHYS", + "OTHER_PHYS", + "PER_DIEM", + "PDGNS_CD", + "PRM_PYR", + "PROVUSRD", + "PRPAYAMT", + "randomOffsetInDays", + "RXCAT", + "SEQ_KEYC", + "TDEDAMT", + "USRDS_ID" +) + +####column types ##### +columns_esrd_2015 = cols( + ATTENDING_PHYS = col_double(), + CLM_AMT = col_double(), + CLM_TOT = col_double(), + CVR_DCNT = col_double(), + DRG_CD = col_double(), + DIALCRC = col_double(), + DIALSESS = col_double(), + DPODOSE = col_double(), + DIALREVC = "c", + DISCSTAT = "c", + EPODOSE = col_double(), + EPOADMIN = col_double(), + HCFASAF = "c", + HCRIT = col_double(), + HGB =col_double(), + masked_CLM_THRU = col_double(), + masked_CLM_FROM = col_double(), + OPERATING_PHYS = col_double(), + OTHER_PHYS = col_double(), + PER_DIEM = col_double(), + PDGNS_CD = "c", + PROVUSRD = col_double(), + PRPAYAMT = col_double(), + PRM_PYR = "c", + randomOffsetInDays = col_double(), + RXCAT = "c", + SEQ_KEYC = "c", + TDEDAMT = col_double(), + TYPE_OF_BILL = col_double() +) +####column types ##### +columns_esrd = cols( + ATTENDING_PHYS = col_double(), + CDTYPE = "c", + CLM_AMT = col_double(), + CLM_TOT = col_double(), + CVR_DCNT = col_double(), + DRG_CD = col_double(), + DIALCRC = col_double(), + DIALSESS = col_double(), + DPODOSE = col_double(), + DIALREVC = "c", + DISCSTAT = "c", + EPODOSE = col_double(), + EPOADMIN = col_double(), + HCFASAF = "c", + HCRIT = col_double(), + HGB =col_double(), + masked_CLM_THRU = col_double(), + masked_CLM_FROM = col_double(), + OPERATING_PHYS = col_double(), + OTHER_PHYS = col_double(), + PER_DIEM = col_double(), + PDGNS_CD = "c", + PROVUSRD = col_double(), + PRPAYAMT = col_double(), + PRM_PYR = "c", + randomOffsetInDays = col_double(), + RXCAT = "c", + SEQ_KEYC = "c", + TDEDAMT = col_double(), + TYPE_OF_BILL = col_double(), + TYPE_ADM = col_double() +) \ No newline at end of file diff --git a/create_data_set/pre_esrd_op_claim_variables.R b/create_data_set/pre_esrd_op_claim_variables.R new file mode 100644 index 0000000..c06a0f8 --- /dev/null +++ b/create_data_set/pre_esrd_op_claim_variables.R @@ -0,0 +1,122 @@ +#Variables to create the table for the outpatient (op) pre-esrd claims from +#2011-2016. Pre-esrd claims in USRDS are kept in files specific to the year. + +# the order of these files matters. +# use 2012 to create the postgres table and then add the other years to it +filenames_esrd = c("preesrd5y_op_clm_inc2012", +"preesrd5y_op_clm_inc2013", +"preesrd5y_op_clm_inc2014", +"preesrd5y_op_clm_inc2015", +"preesrd5y_op_clm_inc2016", +"preesrd5y_op_clm_inc2017", +"preesrd5y_op_clm_inc2011" +) + +fieldnames_esrd = c( + "USRDS_ID", + "CDTYPE", + "CLM_AMT", + "CLM_TOT", + "DPOADMIN", + "DPODOSE", + "DPOCASH", + "DIALCRC", + "DIALCASH", + "DIALREVC", + "DIALSESS", + "EPOADMIN", + "EPODOSE", + "EPOCASH", + "HCFASAF", + "HCRIT", + "HGB", + "PDGNS_CD", + "PRM_PYR", + "URR_CD", + "PROVUSRD", + "PRPAYAMT", + "RXCAT", + "SEQ_KEYC", + "ATTENDING_PHYS", + "OPERATING_PHYS", + "OTHER_PHYS", + "masked_CLM_FROM", + "masked_CLM_THRU", + "incident_year" +) +####column types ##### +columns_esrd_2015 = cols( + ATTENDING_PHYS = col_double(), + CLM_AMT = col_double(), + CLM_TOT = col_double(), + CVR_DCNT = col_double(), + DRG_CD = col_double(), + DIALCRC = col_double(), + DIALCASH = col_double(), + DIALSESS = col_double(), + DPOADMIN = "c", + DPOCASH = col_double(), + DPODOSE = col_double(), + DIALREVC = "c", + DISCSTAT = "c", + EPODOSE = col_double(), + EPOCASH = col_double(), + EPOADMIN = col_double(), + HCFASAF = "c", + HCRIT = col_double(), + HGB =col_double(), + masked_CLM_THRU = col_double(), + masked_CLM_FROM = col_double(), + OPERATING_PHYS = col_double(), + OTHER_PHYS = col_double(), + PER_DIEM = col_double(), + PDGNS_CD = "c", + PROVUSRD = col_double(), + PRPAYAMT = col_double(), + PRM_PYR = "c", + randomOffsetInDays = col_double(), + RXCAT = "c", + SEQ_KEYC = "c", + TDEDAMT = col_double(), + TYPE_OF_BILL = col_double(), + URR_CD = "c" +) +####column types ##### +columns_esrd = cols( + ATTENDING_PHYS = col_double(), + CDTYPE = "c", + CLM_AMT = col_double(), + CLM_TOT = col_double(), + CVR_DCNT = col_double(), + DRG_CD = col_double(), + DIALCRC = col_double(), + DIALCASH = col_double(), + DIALSESS = col_double(), + DPOADMIN = "c", + DPODOSE = col_double(), + DPOCASH = col_double(), + DIALREVC = "c", + DISCSTAT = "c", + EPODOSE = col_double(), + EPOADMIN = col_double(), + EPOCASH = col_double(), + HCFASAF = "c", + HCRIT = col_double(), + HGB =col_double(), + masked_CLM_THRU = col_double(), + masked_CLM_FROM = col_double(), + OPERATING_PHYS = col_double(), + OTHER_PHYS = col_double(), + PER_DIEM = col_double(), + PDGNS_CD = "c", + PROVUSRD = col_double(), + PRPAYAMT = col_double(), + PRM_PYR = "c", + randomOffsetInDays = col_double(), + RXCAT = "c", + SEQ_KEYC = "c", + TDEDAMT = col_double(), + TYPE_OF_BILL = col_double(), + TYPE_ADM = col_double(), + URR_CD = "c" +) \ No newline at end of file diff --git a/create_data_set/pre_esrd_pre2011_claim_variables.R b/create_data_set/pre_esrd_pre2011_claim_variables.R new file mode 100644 index 0000000..34e2713 --- /dev/null +++ b/create_data_set/pre_esrd_pre2011_claim_variables.R @@ -0,0 +1,38 @@ +#variables for creating the table for pre esrd claims from 2008-2010 + +filenames_esrd = c("inc2010", + "inc2009", + "inc2008" +) +####column types ##### +columns_esrd_2015 = cols( + ATTENDING_PHYS = col_double(), + CLM_AMT = col_double(), + CLM_TOT = col_double(), + CVR_DCNT = col_double(), + DRG_CD = col_double(), + DIALCRC = col_double(), + DIALCASH = col_double(), + DIALSESS = col_double(), + DPOADMIN = "c", + DPOCASH = col_double(), + DPODOSE = col_double(), + DIALREVC = "c", + DISCSTAT = "c", + EPODOSE = col_double(), + EPOCASH = col_double(), + EPOADMIN = col_double(), + HCFASAF = "c", + HCRIT = col_double(), + HGB =col_double(), + masked_CLM_THRU = col_double(), + masked_CLM_FROM = col_double(), + OPERATING_PHYS = col_double(), + OTHER_PHYS = col_double(), + PER_DIEM = col_double(), + PROVUSRD = col_double(), + PRM_PYR = "c", + randomOffsetInDays = col_double(), + RXCAT = "c", + SEQ_KEYC = "c" +) \ No newline at end of file diff --git a/create_data_set/pre_esrd_sn_claim_variables.R b/create_data_set/pre_esrd_sn_claim_variables.R new file mode 100644 index 0000000..ef93e9a --- /dev/null +++ b/create_data_set/pre_esrd_sn_claim_variables.R @@ -0,0 +1,116 @@ +#Variables to create the table for the (sn) pre-esrd claims from +#2011-2016. Pre-esrd claims in USRDS are kept in files specific to the year. + +# the order of these files matters. +# use 2012 to create the postgres table and then add the other years to it +filenames_esrd = c( + "preesrd5y_sn_clm_inc2012", + "preesrd5y_sn_clm_inc2013", + "preesrd5y_sn_clm_inc2014", + "preesrd5y_sn_clm_inc2015", + "preesrd5y_sn_clm_inc2016", + "preesrd5y_sn_clm_inc2017", + "preesrd5y_sn_clm_inc2011" +) + +fieldnames_esrd = c( + "USRDS_ID", + "CDTYPE", + "CLM_AMT", + "CLM_TOT", + "DPOADMIN", + "DPODOSE", + "DPOCASH", + "DIALCRC", + "DIALCASH", + "DIALREVC", + "DIALSESS", + "DISCSTAT", + "DRG_CD", + "EPOADMIN", + "EPODOSE", + "EPOCASH", + "HCFASAF", + "HCRIT", + "HGB", + "PDGNS_CD", + "PRM_PYR", + "PROVUSRD", + "PRPAYAMT", + "RXCAT", + "SEQ_KEYC", + "ATTENDING_PHYS", + "OPERATING_PHYS", + "OTHER_PHYS", + "masked_CLM_FROM", + "masked_CLM_THRU", + "incident_year" +) +####column types ##### +columns_esrd_2015 = cols( + ATTENDING_PHYS = col_double(), + CLM_AMT = col_double(), + CLM_TOT = col_double(), + CVR_DCNT = col_double(), + DRG_CD = col_double(), + DIALCRC = col_double(), + DIALSESS = col_double(), + DPOADMIN = "c", + DPODOSE = col_double(), + DIALREVC = "c", + DISCSTAT = "c", + EPODOSE = col_double(), + EPOADMIN = col_double(), + HCFASAF = "c", + HCRIT = col_double(), + HGB =col_double(), + masked_CLM_THRU = col_double(), + masked_CLM_FROM = col_double(), + OPERATING_PHYS = col_double(), + OTHER_PHYS = col_double(), + PER_DIEM = col_double(), + PDGNS_CD = "c", + PROVUSRD = col_double(), + PRPAYAMT = col_double(), + PRM_PYR = "c", + randomOffsetInDays = col_double(), + RXCAT = "c", + SEQ_KEYC = "c", + TDEDAMT = col_double(), + TYPE_OF_BILL = col_double() +) +####column types ##### +columns_esrd = cols( + ATTENDING_PHYS = col_double(), + CDTYPE = "c", + CLM_AMT = col_double(), + CLM_TOT = col_double(), + CVR_DCNT = col_double(), + DRG_CD = col_double(), + DIALCRC = col_double(), + DIALSESS = col_double(), + DPODOSE = col_double(), + DPOADMIN = "c", + DIALREVC = "c", + DISCSTAT = "c", + EPODOSE = col_double(), + EPOADMIN = col_double(), + HCFASAF = "c", + HCRIT = col_double(), + HGB =col_double(), + masked_CLM_THRU = col_double(), + masked_CLM_FROM = col_double(), + OPERATING_PHYS = col_double(), + OTHER_PHYS = col_double(), + PER_DIEM = col_double(), + PDGNS_CD = "c", + PROVUSRD = col_double(), + PRPAYAMT = col_double(), + PRM_PYR = "c", + randomOffsetInDays = col_double(), + RXCAT = "c", + SEQ_KEYC = "c", + TDEDAMT = col_double(), + TYPE_OF_BILL = col_double(), + TYPE_ADM = col_double() +) \ No newline at end of file diff --git a/create_data_set/setfieldtypes.R b/create_data_set/setfieldtypes.R new file mode 100644 index 0000000..7d78cfb --- /dev/null +++ b/create_data_set/setfieldtypes.R @@ -0,0 +1,158 @@ +#Utility file: The "setfieldtypes" utility is used in order to cast these +#column types explicitly, thereby avoiding auto assignment of "integer64" +#as the column data type. Used by the script **S4_pre_esrd_full.R** + +myfieldtypes = c( + usrds_id = 'integer', + stay_neo_ip = 'numeric', + stay_smo_ip = 'numeric', + stay_alc_ip = 'numeric', + stay_drg_ip = 'numeric', + stay_pne_ip = 'numeric', + stay_kid_ip = 'numeric', + stay_dia_ip = 'numeric', + stay_hyp_ip = 'numeric', + stay_flr_ip = 'numeric', + stay_cad_ip = 'numeric', + stay_cvd_ip = 'numeric', + stay_pad_ip = 'numeric', + clms_neo_ip = 'numeric', + clms_smo_ip = 'numeric', + clms_alc_ip = 'numeric', + clms_drg_ip = 'numeric', + clms_pne_ip = 'numeric', + clms_kid_ip = 'numeric', + clms_dia_ip = 'numeric', + clms_hyp_ip = 'numeric', + clms_flr_ip = 'numeric', + clms_cad_ip = 'numeric', + clms_cvd_ip = 'numeric', + clms_pad_ip = 'numeric', + # has_neo_ip = 'integer', + # has_smo_ip = 'integer', + # has_alc_ip = 'integer', + # has_drg_ip = 'integer', + # has_pne_ip = 'integer', + # has_kid_ip = 'integer', + # has_dia_ip = 'integer', + # has_hyp_ip = 'integer', + # has_flr_ip = 'integer', + # has_cad_ip = 'integer', + # has_cvd_ip = 'integer', + # has_pad_ip = 'integer', + stay_neo_op = 'numeric', + stay_smo_op = 'numeric', + stay_alc_op = 'numeric', + stay_drg_op = 'numeric', + stay_pne_op = 'numeric', + stay_kid_op = 'numeric', + stay_dia_op = 'numeric', + stay_hyp_op = 'numeric', + stay_flr_op = 'numeric', + stay_cad_op = 'numeric', + stay_cvd_op = 'numeric', + stay_pad_op = 'numeric', + clms_neo_op = 'numeric', + clms_smo_op = 'numeric', + clms_alc_op = 'numeric', + clms_drg_op = 'numeric', + clms_pne_op = 'numeric', + clms_kid_op = 'numeric', + clms_dia_op = 'numeric', + clms_hyp_op = 'numeric', + clms_flr_op = 'numeric', + clms_cad_op = 'numeric', + clms_cvd_op = 'numeric', + clms_pad_op = 'numeric', + # has_neo_op = 'integer', + # has_smo_op = 'integer', + # has_alc_op = 'integer', + # has_drg_op = 'integer', + # has_pne_op = 'integer', + # has_kid_op = 'integer', + # has_dia_op = 'integer', + # has_hyp_op = 'integer', + # has_flr_op = 'integer', + # has_cad_op = 'integer', + # has_cvd_op = 'integer', + # has_pad_op = 'integer', + stay_neo_sn = 'numeric', + stay_smo_sn = 'numeric', + stay_alc_sn = 'numeric', + stay_drg_sn = 'numeric', + stay_pne_sn = 'numeric', + stay_kid_sn = 'numeric', + stay_dia_sn = 'numeric', + stay_hyp_sn = 'numeric', + stay_flr_sn = 'numeric', + stay_cad_sn = 'numeric', + stay_cvd_sn = 'numeric', + stay_pad_sn = 'numeric', + clms_neo_sn = 'numeric', + clms_smo_sn = 'numeric', + clms_alc_sn = 'numeric', + clms_drg_sn = 'numeric', + clms_pne_sn = 'numeric', + clms_kid_sn = 'numeric', + clms_dia_sn = 'numeric', + clms_hyp_sn = 'numeric', + clms_flr_sn = 'numeric', + clms_cad_sn = 'numeric', + clms_cvd_sn = 'numeric', + clms_pad_sn = 'numeric', + # has_neo_sn = 'integer', + # has_smo_sn = 'integer', + # has_alc_sn = 'integer', + # has_drg_sn = 'integer', + # has_pne_sn = 'integer', + # has_kid_sn = 'integer', + # has_dia_sn = 'integer', + # has_hyp_sn = 'integer', + # has_flr_sn = 'integer', + # has_cad_sn = 'integer', + # has_cvd_sn = 'integer', + # has_pad_sn = 'integer', + stay_ip = 'numeric', + range_ip = 'numeric', + claims_ip = 'numeric', + stay_op = 'numeric', + range_op = 'numeric', + claims_op = 'numeric', + stay_sn = 'numeric', + range_sn = 'numeric', + claims_sn = 'numeric', + stay_hh = 'numeric', + range_hh = 'numeric', + claims_hh = 'numeric', + stay_hs = 'numeric', + range_hs = 'numeric', + claims_hs = 'numeric', + claims_range = 'numeric', + has_neo = 'integer', + has_smo = 'integer', + has_alc = 'integer', + has_drg = 'integer', + has_pne = 'integer', + has_kid = 'integer', + has_dia = 'integer', + has_hyp = 'integer', + has_flr = 'integer', + has_cad = 'integer', + has_cvd = 'integer', + has_pad = 'integer', + prior_hh_care = 'integer', + prior_hs_care = 'integer', + prior_ip_care = 'integer', + prior_op_care = 'integer', + prior_sn_care = 'integer', + has_preesrd_claim = 'integer' +) + +medevid_fieldtypes = c( + CDTYPE = "c", + masked_UREADT = "c", + ALGCON = "c", + PATNOTINFORMEDREASON = "c", + RACEC = "c", + RACE_SUB_CODE = "c" +) diff --git a/images/20210220_age_boxplot.png b/images/20210220_age_boxplot.png new file mode 100644 index 0000000..222c0db Binary files /dev/null and b/images/20210220_age_boxplot.png differ diff --git a/images/20210220_died_vs_survived_cohort.png b/images/20210220_died_vs_survived_cohort.png new file mode 100644 index 0000000..bd14d84 Binary files /dev/null and b/images/20210220_died_vs_survived_cohort.png differ diff --git a/images/20210220_sex_cohort.png b/images/20210220_sex_cohort.png new file mode 100644 index 0000000..7043556 Binary files /dev/null and b/images/20210220_sex_cohort.png differ diff --git a/images/ONC_ML_Dataset_Flowchart.svg b/images/ONC_ML_Dataset_Flowchart.svg new file mode 100644 index 0000000..9a342cf --- /dev/null +++ b/images/ONC_ML_Dataset_Flowchart.svg @@ -0,0 +1 @@ +yesyesyesyesINPUT:patients.csvnonopatients_medevidpatientsusrds_idyesnoyesyesexcludeS1b_patients.RyesnoS1c_medevid.RINPUT:medevid.csv3,161,638rows3,096,526rowsmasked_firstdial =missingdeathdate >masked_firstdial3,096,515rowsinc_age<183,065,026rowsincyear <=2007orincyear >=20181,150,195rowsusrds_idinpatients3,320,673rowsnoIsfirstentryforusrds_id?yes1,170,585rows1,150,195usrds_idsmedevidyes1,150,195rowsnoS1d_patients_medevid_join.R1,150,195rowsS1e_patients_medevid_waitlist.RINPUTwaitseq_ki.csvINPUT:waitseq_kp.csvINPUTtx.csvusrds_idusrds_idinpatientsexcludewaitseq_kiusrds_idinpatientswaitseq_kpUSRDS_IDinpatientstxpatients_medevid_waitlist1,150,195rows \ No newline at end of file diff --git a/images/ONC_implementation_guide_modeling.png b/images/ONC_implementation_guide_modeling.png new file mode 100644 index 0000000..5c4d408 Binary files /dev/null and b/images/ONC_implementation_guide_modeling.png differ diff --git a/images/avg_prec.png b/images/avg_prec.png new file mode 100644 index 0000000..32b3628 Binary files /dev/null and b/images/avg_prec.png differ diff --git a/images/class_imbalance_bar.png b/images/class_imbalance_bar.png new file mode 100644 index 0000000..ab47dd1 Binary files /dev/null and b/images/class_imbalance_bar.png differ diff --git a/images/lr_calibration.jpeg b/images/lr_calibration.jpeg new file mode 100644 index 0000000..c7edc85 Binary files /dev/null and b/images/lr_calibration.jpeg differ diff --git a/images/lr_cm.png b/images/lr_cm.png new file mode 100644 index 0000000..20c3b53 Binary files /dev/null and b/images/lr_cm.png differ diff --git a/images/lr_fair.png b/images/lr_fair.png new file mode 100644 index 0000000..76e6bd3 Binary files /dev/null and b/images/lr_fair.png differ diff --git a/images/lr_feat_importance.png b/images/lr_feat_importance.png new file mode 100644 index 0000000..0f299a9 Binary files /dev/null and b/images/lr_feat_importance.png differ diff --git a/images/lr_mortality_bar.jpeg b/images/lr_mortality_bar.jpeg new file mode 100644 index 0000000..aa292e9 Binary files /dev/null and b/images/lr_mortality_bar.jpeg differ diff --git a/images/lr_mortality_bar_notcalibrated.png b/images/lr_mortality_bar_notcalibrated.png new file mode 100644 index 0000000..237c3a5 Binary files /dev/null and b/images/lr_mortality_bar_notcalibrated.png differ diff --git a/images/lr_orig_calibration.png b/images/lr_orig_calibration.png new file mode 100644 index 0000000..5301d57 Binary files /dev/null and b/images/lr_orig_calibration.png differ diff --git a/images/lr_pooled.png b/images/lr_pooled.png new file mode 100644 index 0000000..9737186 Binary files /dev/null and b/images/lr_pooled.png differ diff --git a/images/lr_risk.png b/images/lr_risk.png new file mode 100644 index 0000000..8faed76 Binary files /dev/null and b/images/lr_risk.png differ diff --git a/images/lr_roc_auc_bw_nothreshold_hires_crop.png b/images/lr_roc_auc_bw_nothreshold_hires_crop.png new file mode 100644 index 0000000..42e87a3 Binary files /dev/null and b/images/lr_roc_auc_bw_nothreshold_hires_crop.png differ diff --git a/images/mlp_calibration_calibrated.jpeg b/images/mlp_calibration_calibrated.jpeg new file mode 100644 index 0000000..8e0d0f7 Binary files /dev/null and b/images/mlp_calibration_calibrated.jpeg differ diff --git a/images/mlp_calibration_orig.png b/images/mlp_calibration_orig.png new file mode 100644 index 0000000..cfb13b1 Binary files /dev/null and b/images/mlp_calibration_orig.png differ diff --git a/images/mlp_cm_orig.png b/images/mlp_cm_orig.png new file mode 100644 index 0000000..1334a0b Binary files /dev/null and b/images/mlp_cm_orig.png differ diff --git a/images/mlp_fair.png b/images/mlp_fair.png new file mode 100644 index 0000000..1e8a5f1 Binary files /dev/null and b/images/mlp_fair.png differ diff --git a/images/mlp_mortality_bar.jpeg b/images/mlp_mortality_bar.jpeg new file mode 100644 index 0000000..9f8e6f7 Binary files /dev/null and b/images/mlp_mortality_bar.jpeg differ diff --git a/images/mlp_mortality_bar_notcalibrated.png b/images/mlp_mortality_bar_notcalibrated.png new file mode 100644 index 0000000..30f7ab5 Binary files /dev/null and b/images/mlp_mortality_bar_notcalibrated.png differ diff --git a/images/mlp_risk.png b/images/mlp_risk.png new file mode 100644 index 0000000..b59b4ee Binary files /dev/null and b/images/mlp_risk.png differ diff --git a/images/mlp_roc_auc_bw.png b/images/mlp_roc_auc_bw.png new file mode 100644 index 0000000..e3da6f1 Binary files /dev/null and b/images/mlp_roc_auc_bw.png differ diff --git a/images/mlp_roc_auc_bw_nothreshold_hires_crop.png b/images/mlp_roc_auc_bw_nothreshold_hires_crop.png new file mode 100644 index 0000000..8082aca Binary files /dev/null and b/images/mlp_roc_auc_bw_nothreshold_hires_crop.png differ diff --git a/images/mlp_roc_auc_calibrated_bw.jpeg b/images/mlp_roc_auc_calibrated_bw.jpeg new file mode 100644 index 0000000..8c949ea Binary files /dev/null and b/images/mlp_roc_auc_calibrated_bw.jpeg differ diff --git a/images/mlp_roc_auc_calibrated_bw_nothreshold_hires_crop.png b/images/mlp_roc_auc_calibrated_bw_nothreshold_hires_crop.png new file mode 100644 index 0000000..daf0c24 Binary files /dev/null and b/images/mlp_roc_auc_calibrated_bw_nothreshold_hires_crop.png differ diff --git a/images/survive_race_cohort.PNG b/images/survive_race_cohort.PNG new file mode 100644 index 0000000..fb7aa0a Binary files /dev/null and b/images/survive_race_cohort.PNG differ diff --git a/images/xgb_imputed_calibrated_roc_auc_bw.png b/images/xgb_imputed_calibrated_roc_auc_bw.png new file mode 100644 index 0000000..7185129 Binary files /dev/null and b/images/xgb_imputed_calibrated_roc_auc_bw.png differ diff --git a/images/xgb_imputed_calibration.jpeg b/images/xgb_imputed_calibration.jpeg new file mode 100644 index 0000000..258f448 Binary files /dev/null and b/images/xgb_imputed_calibration.jpeg differ diff --git a/images/xgb_imputed_cm.png b/images/xgb_imputed_cm.png new file mode 100644 index 0000000..d5298fb Binary files /dev/null and b/images/xgb_imputed_cm.png differ diff --git a/images/xgb_imputed_fairness.png b/images/xgb_imputed_fairness.png new file mode 100644 index 0000000..2a8dbb6 Binary files /dev/null and b/images/xgb_imputed_fairness.png differ diff --git a/images/xgb_imputed_mortality_bar.jpeg b/images/xgb_imputed_mortality_bar.jpeg new file mode 100644 index 0000000..1ac139c Binary files /dev/null and b/images/xgb_imputed_mortality_bar.jpeg differ diff --git a/images/xgb_imputed_orig_calibration.png b/images/xgb_imputed_orig_calibration.png new file mode 100644 index 0000000..38fad71 Binary files /dev/null and b/images/xgb_imputed_orig_calibration.png differ diff --git a/images/xgb_imputed_risk.png b/images/xgb_imputed_risk.png new file mode 100644 index 0000000..e2bd174 Binary files /dev/null and b/images/xgb_imputed_risk.png differ diff --git a/images/xgb_imputed_roc_auc_bw.jpeg b/images/xgb_imputed_roc_auc_bw.jpeg new file mode 100644 index 0000000..7a56a6e Binary files /dev/null and b/images/xgb_imputed_roc_auc_bw.jpeg differ diff --git a/images/xgb_imputed_roc_auc_bw_nothreshold_hires_crop.png b/images/xgb_imputed_roc_auc_bw_nothreshold_hires_crop.png new file mode 100644 index 0000000..566b05f Binary files /dev/null and b/images/xgb_imputed_roc_auc_bw_nothreshold_hires_crop.png differ diff --git a/images/xgb_nonimputed_calibration.jpeg b/images/xgb_nonimputed_calibration.jpeg new file mode 100644 index 0000000..31b1730 Binary files /dev/null and b/images/xgb_nonimputed_calibration.jpeg differ diff --git a/images/xgb_nonimputed_cm.png b/images/xgb_nonimputed_cm.png new file mode 100644 index 0000000..9979400 Binary files /dev/null and b/images/xgb_nonimputed_cm.png differ diff --git a/images/xgb_nonimputed_fairness.png b/images/xgb_nonimputed_fairness.png new file mode 100644 index 0000000..ed0a16c Binary files /dev/null and b/images/xgb_nonimputed_fairness.png differ diff --git a/images/xgb_nonimputed_mortality_bar.jpeg b/images/xgb_nonimputed_mortality_bar.jpeg new file mode 100644 index 0000000..bb39382 Binary files /dev/null and b/images/xgb_nonimputed_mortality_bar.jpeg differ diff --git a/images/xgb_nonimputed_orig_calibration.png b/images/xgb_nonimputed_orig_calibration.png new file mode 100644 index 0000000..065c64c Binary files /dev/null and b/images/xgb_nonimputed_orig_calibration.png differ diff --git a/images/xgb_nonimputed_risk.png b/images/xgb_nonimputed_risk.png new file mode 100644 index 0000000..6a42f82 Binary files /dev/null and b/images/xgb_nonimputed_risk.png differ diff --git a/images/xgb_nonimputed_roc_auc_bw.jpeg b/images/xgb_nonimputed_roc_auc_bw.jpeg new file mode 100644 index 0000000..a43fd77 Binary files /dev/null and b/images/xgb_nonimputed_roc_auc_bw.jpeg differ diff --git a/images/xgb_nonimputed_roc_auc_bw_nothreshold_hires_crop.png b/images/xgb_nonimputed_roc_auc_bw_nothreshold_hires_crop.png new file mode 100644 index 0000000..e049e0b Binary files /dev/null and b/images/xgb_nonimputed_roc_auc_bw_nothreshold_hires_crop.png differ diff --git a/logistic_regression/1_lr_preprocessing.ipynb b/logistic_regression/1_lr_preprocessing.ipynb new file mode 100755 index 0000000..34294fa --- /dev/null +++ b/logistic_regression/1_lr_preprocessing.ipynb @@ -0,0 +1,1293 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Import and pre-process data for Logistic Regression model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "vars_to_remove = [\n", + " \"cdtype\",\n", + " \"claims_hh\",\n", + " \"claims_hs\",\n", + " \"claims_ip\",\n", + " \"claims_op\",\n", + " \"claims_range\",\n", + " \"claims_sn\",\n", + " \"clms_alc_ip\",\n", + " \"clms_alc_op\",\n", + " \"clms_alc_sn\",\n", + " \"clms_cad_ip\",\n", + " \"clms_cad_op\",\n", + " \"clms_cad_sn\",\n", + " \"clms_cvd_ip\",\n", + " \"clms_cvd_op\",\n", + " \"clms_cvd_sn\",\n", + " \"clms_dia_ip\",\n", + " \"clms_dia_op\",\n", + " \"clms_dia_sn\",\n", + " \"clms_drg_ip\",\n", + " \"clms_drg_op\",\n", + " \"clms_drg_sn\",\n", + " \"clms_flr_ip\",\n", + " \"clms_flr_op\",\n", + " \"clms_flr_sn\",\n", + " \"clms_hyp_ip\",\n", + " \"clms_hyp_op\",\n", + " \"clms_hyp_sn\",\n", + " \"clms_kid_ip\",\n", + " \"clms_kid_op\",\n", + " \"clms_kid_sn\",\n", + " \"clms_neo_ip\",\n", + " \"clms_neo_op\",\n", + " \"clms_neo_sn\",\n", + " \"clms_pad_ip\",\n", + " \"clms_pad_op\",\n", + " \"clms_pad_sn\",\n", + " \"clms_pne_ip\",\n", + " \"clms_pne_op\",\n", + " \"clms_pne_sn\",\n", + " \"clms_smo_ip\",\n", + " \"clms_smo_op\",\n", + " \"clms_smo_sn\",\n", + " \"range_hh\",\n", + " \"range_hs\",\n", + " \"range_ip\",\n", + " \"range_op\",\n", + " \"range_sn\",\n", + " \"stay_alc_ip\",\n", + " \"stay_alc_op\",\n", + " \"stay_alc_sn\",\n", + " \"stay_cad_ip\",\n", + " \"stay_cad_op\",\n", + " \"stay_cad_sn\",\n", + " \"stay_cvd_ip\",\n", + " \"stay_cvd_op\",\n", + " \"stay_cvd_sn\",\n", + " \"stay_dia_ip\",\n", + " \"stay_dia_op\",\n", + " \"stay_dia_sn\",\n", + " \"stay_drg_ip\",\n", + " \"stay_drg_op\",\n", + " \"stay_drg_sn\",\n", + " \"stay_flr_ip\",\n", + " \"stay_flr_op\",\n", + " \"stay_flr_sn\",\n", + " \"stay_hh\",\n", + " \"stay_hs\",\n", + " \"stay_hyp_ip\",\n", + " \"stay_hyp_op\",\n", + " \"stay_hyp_sn\",\n", + " \"stay_ip\",\n", + " \"stay_kid_ip\",\n", + " \"stay_kid_op\",\n", + " \"stay_kid_sn\",\n", + " \"stay_neo_ip\",\n", + " \"stay_neo_op\",\n", + " \"stay_neo_sn\",\n", + " \"stay_op\",\n", + " \"stay_pad_ip\",\n", + " \"stay_pad_op\",\n", + " \"stay_pad_sn\",\n", + " \"stay_pne_ip\",\n", + " \"stay_pne_op\",\n", + " \"stay_pne_sn\",\n", + " \"stay_smo_ip\",\n", + " \"stay_smo_op\",\n", + " \"stay_smo_sn\",\n", + " \"stay_sn\"\n", + " ]" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "categoryVars=[ \n", + " 'dial_train_time',\n", + " 'race',\n", + " 'sex',\n", + " 'hispanic',\n", + " 'como_chf',\n", + " 'como_ashd',\n", + " 'como_othcard',\n", + " 'como_cvatia',\n", + " 'como_pvd',\n", + " 'como_htn',\n", + " 'como_amp',\n", + " 'como_dm_ins',\n", + " 'como_dm_oral',\n", + " 'como_dm_nomeds',\n", + " 'como_dm_ret',\n", + " 'como_copd',\n", + " 'como_tobac',\n", + " 'como_canc',\n", + " 'como_toxneph',\n", + " 'como_alcho',\n", + " 'como_drug',\n", + " 'como_inamb',\n", + " 'como_intrans',\n", + " 'como_needasst',\n", + " 'como_inst',\n", + " 'como_nrc',\n", + " 'como_none',\n", + " 'como_inst_al',\n", + " 'como_inst_nurs',\n", + " 'como_inst_oth',\n", + " 'disgrpc',\n", + " 'nephcare',\n", + " 'nephcarerange',\n", + " 'accesstype',\n", + " 'avfmaturing',\n", + " 'avgmaturing',\n", + " 'epo',\n", + " 'eporange',\n", + " 'dietcare',\n", + " 'dietcarerange',\n", + " 'patinformed',\n", + " 'pattxop_medunfit',\n", + " 'pattxop_unsutage',\n", + " 'pattxop_physunfit',\n", + " 'pattxop_decline',\n", + " 'pattxop_other',\n", + " 'pattxop_unassesssed',\n", + " 'trcert',\n", + " 'typtrn',\n", + " 'empprev',\n", + " 'empcur',\n", + " 'medcov_mdcd',\n", + " 'medcov_mdcr',\n", + " 'medcov_advantage',\n", + " 'medcov_group',\n", + " 'medcov_dva',\n", + " 'medcov_other',\n", + " 'medcov_none',\n", + " 'dialtyp',\n", + " 'dialset',\n", + " 'waitlist_status',\n", + " 'has_neo',\n", + " 'has_smo',\n", + " 'has_alc',\n", + " 'has_drg',\n", + " 'has_pne',\n", + " 'has_kid',\n", + " 'has_dia',\n", + " 'has_hyp',\n", + " 'has_flr',\n", + " 'has_cad',\n", + " 'has_cvd',\n", + " 'has_pad',\n", + " 'prior_ip_care',\n", + "'prior_op_care',\n", + "'prior_hh_care',\n", + "'prior_hs_care',\n", + "'prior_sn_care']" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 3, + "source": [ + "# if running in a docker container or if you don't have these libraries in your python environmenet, you can install here\n", + "!pip install --upgrade pip\n", + "\n", + "!pip install --upgrade scikit-learn\n", + "\n", + "!pip install seaborn\n", + "!pip install pandas\n", + "\n", + "!pip install psycopg2-binary" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "/bin/sh: 1: sudo: not found\n", + "Requirement already satisfied: pydot in /usr/local/lib/python3.6/dist-packages (1.4.2)\n", + "Requirement already satisfied: pyparsing>=2.1.4 in /usr/local/lib/python3.6/dist-packages (from pydot) (2.4.7)\n", + "Requirement already satisfied: pydotplus in /usr/local/lib/python3.6/dist-packages (2.0.2)\n", + "Requirement already satisfied: pyparsing>=2.0.1 in /usr/local/lib/python3.6/dist-packages (from pydotplus) (2.4.7)\n", + "Requirement already satisfied: graphviz in /usr/local/lib/python3.6/dist-packages (0.16)\n", + "Requirement already satisfied: pip in /usr/local/lib/python3.6/dist-packages (21.0.1)\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 13, + "source": [ + "import psycopg2\n", + "import sqlalchemy\n", + "from sqlalchemy import create_engine\n", + "\n", + "# other libraries\n", + "import numpy as np\n", + "import pandas as pd\n", + "import sys\n", + "import pickle\n", + "import seaborn as sns\n", + "\n", + "#plotting\n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "\n", + "# Make numpy values easier to read.\n", + "np.set_printoptions(precision=3, suppress=True)\n", + "\n", + "print('python-' + sys.version)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n" + ] + } + ], + "metadata": { + "id": "dzLKpmZICaWN" + } + }, + { + "cell_type": "code", + "execution_count": 5, + "source": [ + "# if data is stored in a postgresql database, enter your information to connect\n", + "con = create_engine('postgresql://username:password@location/dbname')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "## Import the dataset from Postgresql to a pandas dataframe" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 6, + "source": [ + "df = pd.read_sql_query('''SELECT * FROM medxpreesrd;''', con)\n", + "\n", + "df.shape" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(1150195, 199)" + ] + }, + "metadata": {}, + "execution_count": 6 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# View the totals for each class of the dependent variable ('died_in_90')" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 7, + "source": [ + "pd.pivot_table(df, index='died_in_90',aggfunc='sum',fill_value=0, dropna=True)" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " accesstype album avfmaturing avgmaturing bmi \\\n", + "died_in_90 \n", + "0.0 2515011 2352766.61 1423009 1508554 3.086610e+07 \n", + "1.0 231087 164493.73 143218 147219 2.335663e+06 \n", + "\n", + " claims_hh claims_hs claims_ip claims_op claims_range ... \\\n", + "died_in_90 ... \n", + "0.0 818772 39003 2172735 13581239 495741149 ... \n", + "1.0 120979 11197 323948 1641041 60798983 ... \n", + "\n", + " typtrn usrds_id wasna_album wasna_bmi wasna_gfr_epi \\\n", + "died_in_90 \n", + "0.0 317214 3600584254439 321500 23945 16283 \n", + "1.0 6141 288768821878 29161 4494 3717 \n", + "\n", + " wasna_heglb wasna_height wasna_sercr wasna_weight weight \n", + "died_in_90 \n", + "0.0 156651 16189 16261 16190 8.842169e+07 \n", + "1.0 15013 3690 3711 3699 6.640588e+06 \n", + "\n", + "[2 rows x 196 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
accesstypealbumavfmaturingavgmaturingbmiclaims_hhclaims_hsclaims_ipclaims_opclaims_range...typtrnusrds_idwasna_albumwasna_bmiwasna_gfr_epiwasna_heglbwasna_heightwasna_sercrwasna_weightweight
died_in_90
0.025150112352766.61142300915085543.086610e+0781877239003217273513581239495741149...317214360058425443932150023945162831566511618916261161908.842169e+07
1.0231087164493.731432181472192.335663e+0612097911197323948164104160798983...61412887688218782916144943717150133690371136996.640588e+06
\n", + "

2 rows × 196 columns

\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 7 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 8, + "source": [ + "df.describe()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id subset inc_age race sex \\\n", + "count 1.150195e+06 1.150195e+06 1.150195e+06 1.150195e+06 1.150189e+06 \n", + "mean 3.381473e+06 4.501024e+00 6.319905e+01 1.466191e+00 1.424851e+00 \n", + "std 3.746422e+05 2.871549e+00 1.478916e+01 8.534629e-01 4.943206e-01 \n", + "min 2.794000e+04 0.000000e+00 1.800000e+01 1.000000e+00 1.000000e+00 \n", + "25% 3.062570e+06 2.000000e+00 5.400000e+01 1.000000e+00 1.000000e+00 \n", + "50% 3.403969e+06 5.000000e+00 6.400000e+01 1.000000e+00 1.000000e+00 \n", + "75% 3.702194e+06 7.000000e+00 7.400000e+01 2.000000e+00 2.000000e+00 \n", + "max 4.056879e+06 9.000000e+00 9.000000e+01 9.000000e+00 2.000000e+00 \n", + "\n", + " disgrpc days_on_waitlist died_in_90 wasna_height \\\n", + "count 1.150195e+06 1.150195e+06 1.150195e+06 1.150195e+06 \n", + "mean 2.306556e+00 1.868329e+01 7.484209e-02 1.728316e-02 \n", + "std 1.848746e+00 1.348302e+02 2.631365e-01 1.303245e-01 \n", + "min 1.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "25% 1.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "50% 2.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "75% 2.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "max 8.000000e+00 7.754000e+03 1.000000e+00 1.000000e+00 \n", + "\n", + " wasna_weight ... has_flr has_cad has_cvd \\\n", + "count 1.150195e+06 ... 615813.000000 615813.000000 615813.000000 \n", + "mean 1.729185e-02 ... 0.322754 0.074428 0.219421 \n", + "std 1.303567e-01 ... 0.467530 0.262467 0.413854 \n", + "min 0.000000e+00 ... 0.000000 0.000000 0.000000 \n", + "25% 0.000000e+00 ... 0.000000 0.000000 0.000000 \n", + "50% 0.000000e+00 ... 0.000000 0.000000 0.000000 \n", + "75% 0.000000e+00 ... 1.000000 0.000000 0.000000 \n", + "max 1.000000e+00 ... 1.000000 1.000000 1.000000 \n", + "\n", + " has_pad prior_hh_care prior_hs_care prior_ip_care \\\n", + "count 615813.000000 1.150195e+06 1.150195e+06 1.150195e+06 \n", + "mean 0.113366 1.949861e-01 1.085207e-02 4.814001e-01 \n", + "std 0.317039 3.961902e-01 1.036065e-01 4.996541e-01 \n", + "min 0.000000 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "25% 0.000000 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "50% 0.000000 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "75% 0.000000 0.000000e+00 0.000000e+00 1.000000e+00 \n", + "max 1.000000 1.000000e+00 1.000000e+00 1.000000e+00 \n", + "\n", + " prior_op_care prior_sn_care has_preesrd_claim \n", + "count 1.150195e+06 1.150195e+06 1.150195e+06 \n", + "mean 4.476858e-01 1.220810e-01 5.595086e-01 \n", + "std 4.972559e-01 3.273795e-01 4.964463e-01 \n", + "min 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "25% 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "50% 0.000000e+00 0.000000e+00 1.000000e+00 \n", + "75% 1.000000e+00 0.000000e+00 1.000000e+00 \n", + "max 1.000000e+00 1.000000e+00 1.000000e+00 \n", + "\n", + "[8 rows x 197 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_idsubsetinc_ageracesexdisgrpcdays_on_waitlistdied_in_90wasna_heightwasna_weight...has_flrhas_cadhas_cvdhas_padprior_hh_careprior_hs_careprior_ip_careprior_op_careprior_sn_carehas_preesrd_claim
count1.150195e+061.150195e+061.150195e+061.150195e+061.150189e+061.150195e+061.150195e+061.150195e+061.150195e+061.150195e+06...615813.000000615813.000000615813.000000615813.0000001.150195e+061.150195e+061.150195e+061.150195e+061.150195e+061.150195e+06
mean3.381473e+064.501024e+006.319905e+011.466191e+001.424851e+002.306556e+001.868329e+017.484209e-021.728316e-021.729185e-02...0.3227540.0744280.2194210.1133661.949861e-011.085207e-024.814001e-014.476858e-011.220810e-015.595086e-01
std3.746422e+052.871549e+001.478916e+018.534629e-014.943206e-011.848746e+001.348302e+022.631365e-011.303245e-011.303567e-01...0.4675300.2624670.4138540.3170393.961902e-011.036065e-014.996541e-014.972559e-013.273795e-014.964463e-01
min2.794000e+040.000000e+001.800000e+011.000000e+001.000000e+001.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00...0.0000000.0000000.0000000.0000000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00
25%3.062570e+062.000000e+005.400000e+011.000000e+001.000000e+001.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00...0.0000000.0000000.0000000.0000000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00
50%3.403969e+065.000000e+006.400000e+011.000000e+001.000000e+002.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00...0.0000000.0000000.0000000.0000000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+001.000000e+00
75%3.702194e+067.000000e+007.400000e+012.000000e+002.000000e+002.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00...1.0000000.0000000.0000000.0000000.000000e+000.000000e+001.000000e+001.000000e+000.000000e+001.000000e+00
max4.056879e+069.000000e+009.000000e+019.000000e+002.000000e+008.000000e+007.754000e+031.000000e+001.000000e+001.000000e+00...1.0000001.0000001.0000001.0000001.000000e+001.000000e+001.000000e+001.000000e+001.000000e+001.000000e+00
\n", + "

8 rows × 197 columns

\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 8 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 9, + "source": [ + "# print the shape of the test set \n", + "df[df.subset > 6].shape" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(345305, 199)" + ] + }, + "metadata": {}, + "execution_count": 9 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "## remove columns of non-binary claims data that have missing values\n", + "- for example the counts for number of claims for a specific type \n", + "- keep the claims features that indicate the presence /absence/ or missing (this will be considered a categorical variable and encoded in the next step" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 10, + "source": [ + "# drop features with too many missing values\n", + "df.drop(columns=vars_to_remove,inplace=True)\n", + "df.shape" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(1150195, 110)" + ] + }, + "metadata": {}, + "execution_count": 10 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# calc and plot positive and negative class imbalance" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 11, + "source": [ + "#get counts for each class (this gets used lated when we train the model)\n", + "neg_class_count, positive_class_count = np.bincount(df['died_in_90'])" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 14, + "source": [ + "total = neg_class_count + positive_class_count\n", + "print('Examples:\\n Total: {}\\n Survived: {}({:.2f}% of total)\\n Deceased: {} ({:.2f}% of total)\\n'.format(\n", + " total, neg_class_count, 100 * neg_class_count / total, positive_class_count, 100 * positive_class_count / total))\n", + "\n", + "\n", + "plt.figure(figsize = (8, 8))\n", + "class_plot = sns.countplot(x = 'died_in_90', data = df);\n", + "for p in class_plot.patches:\n", + " class_plot.annotate(p.get_height(), \n", + " (p.get_x() + p.get_width() / 2.0, \n", + " p.get_height()), \n", + " ha = 'center', \n", + " va = 'center', \n", + " xytext = (0, 5),\n", + " textcoords = 'offset points');\n", + "\n", + "plt.title(\"Number of patients for each class ('died_in_90') \\n Positive/Deceased: {} ({:.2f}% of total)\\n\".format(\n", + " positive_class_count, 100 * positive_class_count / total));\n", + "\n", + "plt.xlabel(\"Class\");\n", + "plt.xticks([0,1],['survived', 'deceased']);\n", + "plt.ylabel(\"Number of patients\");\n", + "plt.savefig('class_imbalance_bar.png')" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Examples:\n", + " Total: 1150195\n", + " Survived: 1064112(92.52% of total)\n", + " Deceased: 86083 (7.48% of total)\n", + "\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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Ucayfg74e0TcSQn16xdh+SRJWuiWiOr0zJxFCeh3A0SxeZ19HuUqnIhYk1K9fs8AFFOSpIWqkSEeEb8C/gy8OiKmRcTBwH7AwRFxMzAJ2LsufhHwcERMBi4DPpWZDw9EuSVJWpga+RMzSZLU0CtxSZJkiEuS1FiNa52+5ppr5nrrrTfQxZAkaZG44YYb/pWZQ3ua17gQX2+99Zg4ceJAF0OSpEUiIu7rbZ7V6ZIkNZQhLklSQxnikiQ1lCEuSVJDGeKSJDWUIS5JUkMZ4pIkNZQhLklSQxnikiQ1lCGuXh100EEMGzaMTTbZZO60Rx55hN12240NN9yQ3XbbjZkzZ86dd/nll7PFFlswZswY3vjGN863reeff54tt9ySt73tbXOnff/732eDDTYgIvjXv/41d/rtt9/O9ttvzworrMB3vvOdudOnTp3KzjvvzMYbb8yYMWM44YQTOnHYktQYhrh6deCBB3LhhRfON+3YY49l11135a677mLXXXfl2GOPBeDRRx/lv/7rvxg/fjyTJk3inHPOmW+9E044gdGjR8837fWvfz0XX3wx66677nzTV199dU488USOPPLI+aYPGjSI4447jsmTJ3Pttddy0kknMXny5IV1uJLUOIa4erXjjjuy+uqrzzft/PPP5/3vfz8A73//+znvvPMAOOOMMxg3bhyjRo0CYNiwYXPXmTZtGhdccAGHHHLIfNvacsst6Wkwm2HDhrHNNtuw3HLLzTd9+PDhbLXVVgAMHjyY0aNHM3369Jd0jJLUZIa4FsgDDzzA8OHDAXjFK17BAw88AMCdd97JzJkz2Wmnndh666057bTT5q7z8Y9/nG9961sss8zCe7nde++93HTTTbz2ta9daNuUpKZp3ChmWnxEBBEBwJw5c7jhhhu45JJLeOqpp9h+++3ZbrvtuPPOOxk2bBhbb701l19++ULZ7+zZs3nXu97F9773PYYMGbJQtilJTWSIa4GstdZazJgxg+HDhzNjxoy51eYjR45kjTXWYOWVV2bllVdmxx135Oabb+bGG29k/PjxTJgwgaeffppZs2ax//77c/rpp7+o/T/33HO8613vYr/99mPcuHEL89AkqXGsTtcC2Wuvvfj5z38OwM9//nP23ntvAPbee2+uuuoq5syZw5NPPsl1113H6NGj+cY3vsG0adO49957OfPMM9lll11e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DWXmyZk5NjPHDh06tCOFlSSpaToZ4tcDG0bE+hGxPPBeYHzrAhGxJfBjSoA/2MGySJK0xOlYiGfmHOAjwEXAbcDZmTkpIr4SEXvVxb4NrAKcExF/jYjxvWxOkiR109F74pk5AZjQbdrRLY/f1Mn9S5K0JLPHNkmSGsoQlySpoQxxSZIayhCXJKmhDHFJkhrKEJckqaEMcUmSGsoQlySpoQxxSZIayhCXJKmhDHFJkhrKEJckqaEMcUmSGsoQlySpoQxxSZIayhCXJKmhDHFJkhrKEJckqaEMcUmSGsoQlySpoQxxSZIayhCXJKmhDHFJkhrKEJckqaEMcUmSGsoQlySpoQxxSZIayhCXJKmhDHFJkhrKEJckqaEMcUlqkOOPP54xY8awySabsO+++/L000+TmXzuc59jo402YvTo0Zx44okAZCZHHHEEG2ywAZttthk33njj3O18+tOfZsyYMYwePZojjjiCzARg9913Z/PNN2fMmDEcfvjhPP/88wNynGrPoIEugCSpPdOnT+fEE09k8uTJvOxlL+M973kPZ555JpnJ1KlTuf3221lmmWV48MEHAfj973/PXXfdxV133cV1113Hhz70Ia677jquueYarr76am655RYAdthhB6644gp22mknzj77bIYMGUJmss8++3DOOefw3ve+dyAPW30wxCWpQebMmcNTTz3Fcsstx5NPPsnaa6/N5z//ec444wyWWaZUrg4bNgyA888/nwMOOICIYLvttuPRRx9lxowZRARPP/00zz77LJnJc889x1prrQXAkCFD5u7n2WefJSIG5kDVFqvTJakhRowYwZFHHsmoUaMYPnw4q666Km9+85u5++67Oeussxg7dix77LEHd911F1Cu3NdZZ525648cOZLp06ez/fbbs/POOzN8+HCGDx/OW97yFkaPHj13ube85S0MGzaMwYMHs88++yzy41T7DHFJaoiZM2dy/vnn8/e//53777+fJ554gtNPP51nnnmGFVdckYkTJ3LooYdy0EEH9bmdKVOmcNtttzFt2jSmT5/OpZdeyp/+9Ke58y+66CJmzJjBM888w6WXXtrpw9JLYIhLUkNcfPHFrL/++gwdOpTllluOcePGcc011zBy5EjGjRsHwDvf+c6597pHjBjB1KlT564/bdo0RowYwbnnnst2223HKquswiqrrMIee+zB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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + " The *labels* are 2 integers, 0 (survived) or 1 (deceased). These correspond to the *class*. We also note that we have a class imbalance with deceased being the minority class. \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
LabelClassCount
0survived1064112
1deceased86083
" + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# get dummy variables for categorical features" + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "dial_train_time is calculated based on the difference between 2 dates. There are a large number of missing values for this feature, but we don't want to drop it, so all positive values are changed to 1, 0=0 and missing is nan. Thus, the feature is then turned into a categorical rather than numberic to retain some (though not all) information" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 15, + "source": [ + "df.dial_train_time = df.dial_train_time.fillna(-1)\n", + "df.dial_train_time=df.dial_train_time.astype(int).clip(lower=-1,upper=1)\n", + "df.dial_train_time=df.dial_train_time.astype(str).replace(\"-1\",\"na\")" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Use dummy variables for categorical variables\n", + "- get a list of categorical variables that have more then 2 levels" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 16, + "source": [ + "dummy_list = []\n", + "for col in categoryVars:\n", + " u = len(df[col].unique())\n", + " if u>2:\n", + " dummy_list.append(col)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 17, + "source": [ + "df = pd.concat([df, pd.get_dummies(df.loc[:,dummy_list].astype('str'))],axis=1).drop(columns=dummy_list,axis=1)\n", + "\n", + "df.shape" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(1150195, 297)" + ] + }, + "metadata": {}, + "execution_count": 17 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### look at numeric missing - ensure it's only the lab variables we are about to replace with the imputed data" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 18, + "source": [ + "cols = df.columns\n", + "nu_cols = []\n", + "for c in cols:\n", + " if c in categoryVars:\n", + " pass\n", + " elif c in ['usrds_id','subset','died_in_90']:\n", + " pass\n", + " elif c in dummy_list:\n", + " pass\n", + " else:\n", + " nu_cols.append(c)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 19, + "source": [ + "with open('numeric_columns.pickle', 'wb') as picklefile: \n", + " pickle.dump(nu_cols, picklefile)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 20, + "source": [ + "len(nu_cols)+len(categoryVars)" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "367" + ] + }, + "metadata": {}, + "execution_count": 20 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 21, + "source": [ + "df[nu_cols].isna().sum()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "inc_age 0\n", + "days_on_waitlist 0\n", + "wasna_height 0\n", + "wasna_weight 0\n", + "wasna_bmi 0\n", + " ..\n", + "has_cvd_1.0 0\n", + "has_cvd_nan 0\n", + "has_pad_0.0 0\n", + "has_pad_1.0 0\n", + "has_pad_nan 0\n", + "Length: 289, dtype: int64" + ] + }, + "metadata": {}, + "execution_count": 21 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 22, + "source": [ + "features_unique = df[nu_cols].nunique(axis=0,dropna=False).reset_index()\n", + "features_unique.head(5)" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " index 0\n", + "0 inc_age 73\n", + "1 days_on_waitlist 2557\n", + "2 wasna_height 2\n", + "3 wasna_weight 2\n", + "4 wasna_bmi 2" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
index0
0inc_age73
1days_on_waitlist2557
2wasna_height2
3wasna_weight2
4wasna_bmi2
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 22 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# imputations\n", + "1. import imputations from the postgresql database into a pandas dataframe\n", + "2. replace the original df cols with imputed \n", + "3. save as 5 separate sets of data in pickle format (easier format for importing pandas dataframes)" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 23, + "source": [ + " imp = pd.read_sql_query('''SELECT *, row_number() \n", + " OVER(PARTITION BY usrds_id) AS impnum \n", + " FROM micecomplete_pmm\n", + "''', con)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 24, + "source": [ + "# remove labvars (imputed columns) from original dataset\n", + "df.drop(columns=[\"height\", \"weight\", \"bmi\", \"sercr\", \"album\", \"gfr_epi\", \"heglb\"],inplace=True)\n", + "df.shape" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(1150195, 290)" + ] + }, + "metadata": {}, + "execution_count": 24 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 25, + "source": [ + "imp1 = imp[imp.impnum==1]\n", + "imp2 = imp[imp.impnum==2]\n", + "imp3 = imp[imp.impnum==3]\n", + "imp4 = imp[imp.impnum==4]\n", + "imp5 = imp[imp.impnum==5]" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 26, + "source": [ + "# create 5 datasets, one for each imputation run by merging our medxpreesrd and the imputations\n", + "complete1 = pd.merge(df, imp1, how='left', on=[\"usrds_id\",\"subset\"])\n", + "complete2 = pd.merge(df, imp2, how='left', on=[\"usrds_id\",\"subset\"])\n", + "complete3 = pd.merge(df, imp3, how='left', on=[\"usrds_id\",\"subset\"])\n", + "complete4 = pd.merge(df, imp4, how='left', on=[\"usrds_id\",\"subset\"])\n", + "complete5 = pd.merge(df, imp5, how='left', on=[\"usrds_id\",\"subset\"])\n" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 27, + "source": [ + "all_data = [complete1, complete2, complete3, complete4, complete5]" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 28, + "source": [ + "with open('complete1.pickle', 'wb') as picklefile: \n", + " pickle.dump(complete1, picklefile)\n", + "with open('complete2.pickle', 'wb') as picklefile: \n", + " pickle.dump(complete2, picklefile)\n", + "with open('complete3.pickle', 'wb') as picklefile: \n", + " pickle.dump(complete3, picklefile)\n", + "with open('complete4.pickle', 'wb') as picklefile: \n", + " pickle.dump(complete4, picklefile)\n", + "with open('complete5.pickle', 'wb') as picklefile: \n", + " pickle.dump(complete5, picklefile)\n", + "with open('all_data_dl_model.pickle', 'wb') as picklefile: \n", + " pickle.dump(all_data, picklefile)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/logistic_regression/2_logistic_regression.ipynb b/logistic_regression/2_logistic_regression.ipynb new file mode 100755 index 0000000..5027a0d --- /dev/null +++ b/logistic_regression/2_logistic_regression.ipynb @@ -0,0 +1,550 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Train and Test a Logistic Regression Model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "#install libraries\n", + "!pip install --upgrade pip\n", + "\n", + "!pip install --upgrade scikit-learn\n", + "\n", + "!pip install seaborn\n", + "!pip install pandas" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting pip\n", + " Downloading pip-21.0.1-py3-none-any.whl (1.5 MB)\n", + "\u001b[K |████████████████████████████████| 1.5 MB 775 kB/s eta 0:00:01\n", + "\u001b[?25hInstalling collected packages: pip\n", + " Attempting uninstall: pip\n", + " Found existing installation: pip 20.2.4\n", + " Uninstalling pip-20.2.4:\n", + " Successfully uninstalled pip-20.2.4\n", + "Successfully installed pip-21.0.1\n", + "Collecting scikit-learn\n", + " Downloading scikit_learn-0.24.1-cp36-cp36m-manylinux2010_x86_64.whl (22.2 MB)\n", + "\u001b[K |████████████████████████████████| 22.2 MB 1.1 MB/s eta 0:00:01\n", + "\u001b[?25hCollecting scipy>=0.19.1\n", + " Downloading scipy-1.5.4-cp36-cp36m-manylinux1_x86_64.whl (25.9 MB)\n", + "\u001b[K |████████████████████████████████| 25.9 MB 326 kB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: numpy>=1.13.3 in /usr/local/lib/python3.6/dist-packages (from scikit-learn) (1.19.4)\n", + "Collecting joblib>=0.11\n", + " Downloading joblib-1.0.1-py3-none-any.whl (303 kB)\n", + "\u001b[K |████████████████████████████████| 303 kB 1.4 MB/s eta 0:00:01\n", + "\u001b[?25hCollecting threadpoolctl>=2.0.0\n", + " Downloading threadpoolctl-2.1.0-py3-none-any.whl (12 kB)\n", + "Installing collected packages: threadpoolctl, scipy, joblib, scikit-learn\n", + "Successfully installed joblib-1.0.1 scikit-learn-0.24.1 scipy-1.5.4 threadpoolctl-2.1.0\n", + "Collecting seaborn\n", + " Downloading seaborn-0.11.1-py3-none-any.whl (285 kB)\n", + "\u001b[K |████████████████████████████████| 285 kB 776 kB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: scipy>=1.0 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.5.4)\n", + "Collecting pandas>=0.23\n", + " Downloading pandas-1.1.5-cp36-cp36m-manylinux1_x86_64.whl (9.5 MB)\n", + "\u001b[K |████████████████████████████████| 9.5 MB 970 kB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: numpy>=1.15 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.19.4)\n", + "Requirement already satisfied: matplotlib>=2.2 in /usr/local/lib/python3.6/dist-packages (from seaborn) (3.3.3)\n", + "Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (2.8.1)\n", + "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (0.10.0)\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (1.3.1)\n", + "Requirement already satisfied: pillow>=6.2.0 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (8.1.0)\n", + "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (2.4.7)\n", + "Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from cycler>=0.10->matplotlib>=2.2->seaborn) (1.15.0)\n", + "Collecting pytz>=2017.2\n", + " Downloading pytz-2021.1-py2.py3-none-any.whl (510 kB)\n", + "\u001b[K |████████████████████████████████| 510 kB 1.3 MB/s eta 0:00:01\n", + "\u001b[?25hInstalling collected packages: pytz, pandas, seaborn\n", + "Successfully installed pandas-1.1.5 pytz-2021.1 seaborn-0.11.1\n", + "Requirement already satisfied: pandas in /usr/local/lib/python3.6/dist-packages (1.1.5)\n", + "Requirement already satisfied: numpy>=1.15.4 in /usr/local/lib/python3.6/dist-packages (from pandas) (1.19.4)\n", + "Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.6/dist-packages (from pandas) (2.8.1)\n", + "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas) (2021.1)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/dist-packages (from python-dateutil>=2.7.3->pandas) (1.15.0)\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import pickle\n", + "\n", + "from sklearn.metrics import auc, plot_confusion_matrix, plot_roc_curve, roc_auc_score\n", + "from sklearn.model_selection import GridSearchCV\n", + "from sklearn.preprocessing import StandardScaler\n", + "from sklearn.linear_model import LogisticRegression\n", + "\n", + "\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n", + "with open('numeric_columns.pickle', 'rb') as f: \n", + " nu_cols = pickle.load(f)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Calculate optimal hyperparameters using grid search cross validation on one set of the complete data \n", + "- 5-fold cross validation\n", + "- use only the training set (keep the test set separate until after the final model has been built)\n" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 116, + "source": [ + "# fix random seed for reproducibility\n", + "seed = 78\n", + "np.random.seed(seed)\n", + "tprs = []\n", + "aucs = []\n", + "mean_fpr = np.linspace(0, 1, 100)\n", + "fig1, ax1 = plt.subplots()\n", + "\n", + "imp = 5\n", + "with open('complete' + str(imp) + '.pickle', 'rb') as f:\n", + " dataset = pickle.load(f)\n", + " #dataset = dataset.iloc[0:100,:]\n", + "X_train = dataset[dataset.subset <= 6].copy().sort_values(by = 'usrds_id')\n", + "del dataset\n", + " \n", + "y_train = np.array(X_train.pop('died_in_90'))\n", + " \n", + "scaler = StandardScaler()\n", + "X_train[nu_cols] = scaler.fit_transform(X_train[nu_cols])\n", + "X_train = np.array(X_train.drop(columns=['subset','usrds_id','impnum'])) \n", + "print('scaled shape train ' + str(X_train.shape))\n", + " \n", + "lr_model = LogisticRegression()\n", + "param_grid = [{\n", + " 'penalty':['l1','l2','elasticnet'],\n", + " 'C': np.logspace(-3, 3, 10, 20),\n", + " 'max_iter': [500, 1000, 1500],\n", + " 'class_weight' :['balanced'],\n", + " #'solver':['saga']\n", + " }]\n", + " \n", + "clf = GridSearchCV(\n", + " lr_model, \n", + " param_grid=param_grid,\n", + " cv=5,\n", + " verbose=True, \n", + " n_jobs=-1, \n", + " scoring='average_precision'\n", + ")\n", + "\n", + "best_clf = clf.fit(X_train, y_train)\n", + "\n", + "# save model\n", + "with open('2021_LR_cv_clf_imp_'+str(imp)+'.pickle', 'wb') as picklefile: \n", + " pickle.dump(clf,picklefile)\n", + " \n", + "pred_proba_onc_train = clf.predict_proba(X_train)[:,1]\n", + "train_score = roc_auc_score(y_train, pred_proba_onc_train)\n", + " \n", + "viz = plot_roc_curve(clf, X_train, y_train,\n", + " name='ROC imputation {}'.format(i),\n", + " alpha=0.3, lw=1, ax=ax1)\n", + "interp_tpr = np.interp(mean_fpr, viz.fpr, viz.tpr)\n", + "interp_tpr[0] = 0.0\n", + "tprs.append(interp_tpr)\n", + "aucs.append(viz.roc_auc)\n", + "\n", + "print(\"ROC AUC on training data: {}\".format(train_score))\n", + "print('best params /n ' )\n", + "print(clf.best_params_)\n", + "print('best score /n' )\n", + "print(clf.best_score_)\n", + "\n", + "\n", + "ax1.plot([0, 1], [0, 1], linestyle='--', lw=2, color='r',\n", + " label='Chance', alpha=.8)\n", + "\n", + "mean_tpr = np.mean(tprs, axis=0)\n", + "mean_tpr[-1] = 1.0\n", + "mean_auc = auc(mean_fpr, mean_tpr)\n", + "std_auc = np.std(aucs)\n", + "ax1.plot(mean_fpr, mean_tpr, color='b',\n", + " label=r'Mean ROC (AUC = %0.2f $\\pm$ %0.2f)' % (mean_auc, std_auc),\n", + " lw=2, alpha=.8)\n", + "\n", + "std_tpr = np.std(tprs, axis=0)\n", + "tprs_upper = np.minimum(mean_tpr + std_tpr, 1)\n", + "tprs_lower = np.maximum(mean_tpr - std_tpr, 0)\n", + "ax1.fill_between(mean_fpr, tprs_lower, tprs_upper, color='grey', alpha=.2,\n", + " label=r'$\\pm$ 1 std. dev.')\n", + "\n", + "ax1.set(xlim=[-0.05, 1.05], ylim=[-0.05, 1.05],\n", + " title=\"Receiver operating characteristic\")\n", + "ax1.legend(loc=\"lower right\")\n", + "plt.show()" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "scaled shape train (804890, 294)\n", + "Fitting 5 folds for each of 90 candidates, totalling 450 fits\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "/usr/local/lib/python3.6/dist-packages/sklearn/model_selection/_search.py:921: UserWarning: One or more of the test scores are non-finite: [ nan 0.24826919 nan nan 0.24826919 nan\n", + " nan 0.24826919 nan nan 0.24879302 nan\n", + " nan 0.24879302 nan nan 0.24879302 nan\n", + " nan 0.24897165 nan nan 0.24897165 nan\n", + " nan 0.24897165 nan nan 0.24900071 nan\n", + " nan 0.24900962 nan nan 0.24900962 nan\n", + " nan 0.24899043 nan nan 0.24896443 nan\n", + " nan 0.24896443 nan nan 0.24899133 nan\n", + " nan 0.248944 nan nan 0.248944 nan\n", + " nan 0.24900304 nan nan 0.24896451 nan\n", + " nan 0.24896451 nan nan 0.24898786 nan\n", + " nan 0.24894945 nan nan 0.24894945 nan\n", + " nan 0.24899886 nan nan 0.24896506 nan\n", + " nan 0.24896506 nan nan 0.24898606 nan\n", + " nan 0.24894129 nan nan 0.24894129 nan]\n", + " category=UserWarning\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "ROC AUC on training data: 0.8102466621033131\n", + "best params /n \n", + "{'C': 0.1, 'class_weight': 'balanced', 'max_iter': 1000, 'penalty': 'l2'}\n", + "best score /n\n", + "0.24900961973944008\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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WlCmTBkSEhLYs2cPkydPJiIigo8//tika/nkk0/QarWcOXOGn3/+WV+3bt26QOa+T2PHjsXa2poPP/wQAFdX11Q/67t37/Lhhx9SrFgx/Pz8KFq0KOHh4Zw9e5br169Tu3ZtfHx8iI2NZf/+/UycOJEiRYoApOsAolKpGDJkCKdPn6Zp06Z06dIFKysrbt68yb59+/D19U37BsgNJEGOcPLkScnT01OaP3++FB4eLoWHh0vXr1+XvvnmG8nT01Pq1auXwfGffPKJ9N5770lPnz41KL906ZJUtWpVad68efqyqVOnSp6entL69etTnFej0WSqzS1btkienp7SyZMn9WU//vij5OnpKd26dcug/pw5cyRPT0/pypUr+rLOnTtLH3zwgRQTE2Nw7L59+yRPT09py5Yt+rLx48dLnp6e0pgxY1J+cGkwe/ZsydPTU/rzzz8Nyv/880/J09NTmjNnTopradGihRQdHa0vj46Ollq0aCHVr19fSkhIkCRJkhITE6XGjRtL/fv3l5KTkw3aXrFiRYrPxNfXV/L09JRmz56dwkatVqtv93U2btwoeXp6SkFBQfqyR48eSZ6engZ/g9fx9PSUxo8fn6LMy8tLunDhgkH5sGHDpGrVqkmxsbH6sp49e0rVq1eXHj58qC9TqVSSj49Puud9HWPvM93fc+rUqQbH7Nq1S/L09JTWrVunL8vMZ1StWjXp9u3bKerExcWlapevr69Ut25dSaVSZfpaUsOU79O8efMkT09PydfXN8V9JUmS1LJlS8nX11e//ccff0ienp7SxYsXUz33m+0+evQoxb7UvsNLly6VPD09pV9++SXF8a9fd14hZjlzmPnz59OoUSMaNWpEly5dWLt2LW3btmXhwoX6Y2JiYjhy5Aje3t5YWloSERGh/yldujRly5bl+PHjgDyEsWvXLipWrIiPj0+K8+kmrk1pMy26d+8OwLZt2/RlkiSxY8cOPD09eeeddwC4ceMGN27coFOnTqhUKoNz1atXD1tb21TPNWTIEKM/x/379+Pi4pLimn18fHBxceHAgQMp6vTr18/gjdTBwYG+ffsSFRWlH6Y4fvw4YWFh9OjRg+joaAPb33//ff0xxtiuUCiwtrYGZMccXXvvvfceIDsWZJXatWtTq1Ytg7L33nsPtVrN48ePAQgLC+Py5cu0atUKd3d3/XEWFhYp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" + }, + "metadata": {} + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Train and Test an LR model\n", + "- based on the best params from the previous step\n", + "- run the model for each of the 5 imputed datasets\n", + "- save the model \n", + "- plot figures" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 118, + "source": [ + "with open('2021_LR_cv_clf_imp_5.pickle', 'rb') as f: \n", + " clf = pickle.load(f)\n", + "\n", + "clf.best_params_" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "{'C': 0.1, 'class_weight': 'balanced', 'max_iter': 1000, 'penalty': 'l2'}" + ] + }, + "metadata": {}, + "execution_count": 118 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 12, + "source": [ + "seed = 78\n", + "np.random.seed(seed)\n", + "tprs = []\n", + "aucs = []\n", + "mean_fpr = np.linspace(0, 1, 100)\n", + "fig, ax = plt.subplots()\n", + "\n", + "i=0\n", + "for i in range(5):\n", + " imp=i+1\n", + "\n", + " with open('./complete' + str(imp) + '.pickle', 'rb') as f:\n", + " dataset = pickle.load(f)\n", + " train_x = dataset[dataset.subset <= 6].copy().sort_values(by = 'usrds_id')\n", + " test_x = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id')\n", + " del dataset\n", + " \n", + " train_y = np.array(train_x.pop('died_in_90'))\n", + " test_y = np.array(test_x.pop('died_in_90'))\n", + "\n", + " \n", + " scaler = StandardScaler()\n", + " train_x[nu_cols] = scaler.fit_transform(train_x[nu_cols])\n", + " train_x = np.array(train_x.drop(columns=['subset','usrds_id','impnum'])) \n", + " print('scaled shape train ' + str(train_x.shape))\n", + " \n", + " test_x[nu_cols] = scaler.transform(test_x[nu_cols])\n", + " test_x = np.array(test_x.drop(columns=['subset','usrds_id','impnum'])) \n", + " print('scaled shape test ' + str(test_x.shape))\n", + " \n", + " lr_model_final = LogisticRegression(C=0.1, \n", + " penalty='l2', \n", + " max_iter=1000, \n", + " solver='saga', \n", + " class_weight='balanced',\n", + " n_jobs=-1,\n", + " verbose=1,\n", + " random_state=499)\n", + " \n", + " logistic_model_final = lr_model_final.fit(train_x, train_y)\n", + "\n", + " # model evaluation\n", + "\n", + " pred_proba_onc_test = logistic_model_final.predict_proba(test_x)#[:,1]\n", + " \n", + " #save the predictions from each imputation\n", + " with open('2021_final_LR_model_test_pred_proba_imp_' + str(imp) + '.pickle', 'wb') as picklefile: \n", + " pickle.dump(pred_proba_onc_test, picklefile)\n", + " \n", + " test_score = roc_auc_score(test_y, pred_proba_onc_test[:,1])\n", + "\n", + " print(\"AVG precision on test data: {}\".format(test_score))\n", + " \n", + " LR_Y_pred = logistic_model_final.predict(test_x)\n", + " \n", + " fig3 = plt.figure(figsize=(8, 8));\n", + " plot_cm = plot_confusion_matrix(\n", + " logistic_model_final, test_x, test_y,\n", + " cmap=plt.cm.Greens);\n", + " plt.show()\n", + "\n", + " \n", + "with open('2021_final_LR_model.pickle', 'wb') as picklefile: \n", + " pickle.dump(logistic_model_final,picklefile)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "scaled shape train (804890, 294)\n", + "scaled shape test (345305, 294)\n", + "AVG precision on test data: 0.8103805187674781\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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L/r7/X6uuuqq9jvla6+9lp/85Cds3LgRgGg0esCTLwcrGo22V1088sgjHHfccQBUVla2XwBjqzZKSkpobGxsX25oaGi/iMVW/3RMF2vu3LksXboUcC6gn/nMZzzHO2vWLN5//30+/PBDgsEgS5cuZcGCBQekmzRpEps2bQJg48aNNDU1sX37drZs2cKWLVu4/vrr2+vSP/vZz/LHP/4RcD77Rx99lHnz5gFw/fXXc+2117Jr1y4AgsEg999//wHHO++881i1atUBP521c3g9hzFjxvD8888DsH79egKBwH6lnM6oKrt27aKysrLbdF4kLCMAZgObVHWzqgaBpcDpHdKcDjzkvn4MOEkS1BPIH4qQn51lHY1Mv2t7JHDJkiUUFBTw17/+lZtuuomJEycybdo0Zs2a1d64On36dH7zm99w7rnnMmnSJKZOncrmzZv7JI6ioiLeeOMNpk6dyj/+8Q8WLlwIwHe/+13uvvtuZs6cud9d6Lx581i3bl17I/D3vvc9rr/+embOnLlfKaNjuli33347v/vd75g+fTp/+MMfuPXWWz3Hm52dzR133MHnP/95Jk2axFlnncWUKQdOgfLFL36RF198EXBKA1/5ylf2237GGWe0ZwS33norf/7zn5kxYwbHHnssX/3qVzn++OMBOPXUU7nyyis5+eSTmTJlCkcddVR7A+7B6u4cFi5cyPLlywG45ZZbuO+++zjyyCM599xzWbx4cfu1qrKykquvvprFixczatQo1q1bB8DKlSs59thjyc7ufbundFYk6wsiciYwX1W/7i5fAByjqlfGpFnjpql2lz9w0+zt8F6XAZcBjBkz5uiPPvqox/G0hiM0tIQYVmq9itPd+vXrmTRpUrLDGHCKi4tpampKdhgJcdxxx/HUU08xaNCgZIfSb7797W+zYMECTjrpwKbczv4HRGSlqlZ19l6JLBH0GVW9V1WrVLUqXnGpK3nZWZYJGJOmbrnllvZHUzPF1KlTO80EDkYin6XcDoyOWR7lrussTbWIZANlOENZGGP6WLqWBgCOOSZl58k6aL3t4xArkSWCN4EJIjJWRHKBc4DlHdIsBy50X58J/EMTVVdlMor9GZlMdTB/+wnLCFQ1DFwJPAusBx5V1bUiskhE2prNHwDKRWQTcDVwwCOmxvRUfn4+NTU1lhmYjKPufASd9UTuTsIaixOl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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ] + }, + "metadata": {} + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "scaled shape train (804890, 294)\n", + "scaled shape test (345305, 294)\n", + "AVG precision on test data: 0.8103795564592549\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ] + }, + "metadata": {} + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "scaled shape train (804890, 294)\n", + "scaled shape test (345305, 294)\n", + "AVG precision on test data: 0.8106581173951026\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ] + }, + "metadata": {} + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAVUAAAEGCAYAAADVFgZ3AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAAArnUlEQVR4nO3dfZxXc/7/8cdzpiuh61S6UBQ2LalU+LLIqvxQdrGsrdjI5bpY9iu+diPru3YXWYQNfdUuxboMkUSbrEkXomuNRKXrVHR98fr9cd4zPk2fmfnMdD4zzXxe927nNp/P67zP+7xPw6tzzvuc91tmhnPOuXhklXcDnHOuMvGk6pxzMfKk6pxzMfKk6pxzMfKk6pxzMapS3g0oKVXLMmpUuGZntJYtDi3vJrgSWjznqzVm1rC026tBDWP77tQKf7djnJn1KO2+9jcVLzvVqAJdDinvVrgSGDz09+XdBFdCfY+64qt9qmD77tT/P313WYN92td+puIlVedcxSCVdwvKhd9Tdc7FT0C2UluKq0pqLul9SXMlzZF0Y4j/VdJ8SZ9JekVSnRBvKWmLpJlheSKhro6SZknKlfSwFGV+SfUkjZe0MPysG+IK5XLDfjoU115Pqs659FCKS/F2AreYWVugK3CdpLbAeKCdmR0LfA7cnrDNF2bWPixXJ8QfB64E2oQl717uQGCCmbUBJoTvAD0Tyg4I2xfJk6pzLg0UXf6nshTDzJab2Yzw+TtgHtDUzN4xs52hWA7QrMgWSU2AWmaWY9H7+SOB3mF1L2BE+DyiQHykRXKAOqGeQnlSdc7FT0TZJZUFGkialrAMKLRaqSVwPDClwKpfA28lfG8l6RNJ/5Z0Sog1BZYmlFkaYgCNzGx5+LwCaJSwzZJCtknKO6qcc+mRekfVGjPrVHx1Ogh4CbjJzDYmxP+H6BbBsyG0HGhhZmsldQRelXRMqo0xM5NU6pGmPKk659Ijxs5/SVWJEuqzZvZyQvwy4BygW7ikx8y2AdvC5+mSvgCOBJax5y2CZiEGsFJSEzNbHi7vV4X4MqB5Idsk5Zf/zrn4xdv7L+BpYJ6ZPZgQ7wH8N3CemW1OiDeUlB0+H07UybQoXN5vlNQ11NkXeC1sNgboFz73KxDvG54C6ApsSLhNkJSfqTrn0iO+51RPBvoAsyTNDLE7gIeB6sD48GRUTujpPxUYLGkHsBu42szWhe2uBZ4BDiC6B5t3H/Y+4AVJ/YGvgItCfCxwNpALbAYuL66xnlSdc+kRU041s8mF1Da2kPIvEd0qSLZuGtAuSXwt0C1J3IDrStJeT6rOufgJyMrMN6o8qTrn0iMzc6onVedcGkiQnZn94J5UnXPp4WeqzjkXowwdpcqTqnMuPTIzp3pSdc6lgff+O+dczDIzp3pSdc6lSQqvoFZGnlSdc/FLcazUysiTqnMuPTIzp3pSdc6liZ+pOudcjDLzhSpPqs65NPBHqpxzLmYZmlQz9ATdOZd2Mc2mKqm5pPclzZU0R9KNIV5P0nhJC8PPuiEuSQ9LypX0maQOCXX1C+UXSuqXEO8oaVbY5uEwM0Ch+yiKJ1XnXPxUgqV4O4FbzKwt0BW4TlJbYCAwwczaABPCd4CeRFOotAEGAI9DlCCBQUAXoDMwKCFJPg5cmbBdjxAvbB+F8qTqnEsDIaW2FMfMlpvZjPD5O2Ae0TTRvYARodgIoHf43AsYaZEcoE6YzK87MN7M1pnZt8B4oEdYV8vMcsJI/yML1JVsH4Xye6rOubRIJWECGDSQNC0hNMzMhhVSZ0vgeGAK0ChhEr4VQKPwuSmwJGGzpSFWVHxpkjhF7KNQnlSdc7ETkJ1iR9VuWGNmnYqtUzqIaO6pm8xsY2LSNjOTZKVsbkpS3Ydf/jvn4idiu/wHkFSVKKE+a2Yvh/DKcOlO+LkqxJcBzRM2bxZiRcWbJYkXtY9CeVJ1zqVFXEk19MQ/DcwzswcTVo0B8nrw+wGvJcT7hqcAugIbwiX8OOAsSXVDB9VZwLiwbqOkrmFffQvUlWwfhfLLf+dcGqR+FpqCk4E+wCxJM0PsDuA+4AVJ/YGvgIvCurHA2UAusBm4HMDM1km6B5gayg02s3Xh87XAM8ABwFthoYh9FMqTqnMuLeLKqWY2mcIfvuqWpLwB1xVS13BgeJL4NKBdkvjaZPsoiidV51zsROq9/5WNJ1XnXPwEWcrMLhtPqs65tPAzVeeci1GG5lRPqs65+AmRlaFZ1ZOqcy4t/PLfOefiIsjK0PFUPak652Lnj1Q551zMPKk651xsYn1NtULxpOqci5/8TNU552KVoTnVk6pzLn4CsrL8NVXnnIuNP/zvnHNxSW326UrJk+o+atagMU/97i8cUqcBhjF87PMMfW0kf+h7I+ec2I3du43V69cy4IGBLF8XzcTwwDV30v2En7B52xYGPDCQmblzOfXYLvzlqjvy6z2q+eH0/dPNvP7Ru/zkuK786crbqFalKp8snMPVQ+5g1+5dXHz6ufz2oisR4vstm7jhkbuY9eX88vqrqLDefu8//PvDGSDR/NBDuKJPbxZ+sYTRr76D7TaqV6/GgD69aXRIfZ598S3mfb4YgG07dvDdd5t44v7bmfv5lzz34tv5dS5fuYZrf30BHY/7EcNGvsL83MXUrFEDgCv79Oaw5k3K41DLjGLs/Zc0HDgHWGVm7ULseeCoUKQOsN7M2oeJAecBC8K6HDO7OmzTkR8Goh4L3BjmnaoHPA+0BBYDF5nZt2EWgL8RDXi9Gbgsb1bXItsbjeeaHpJ6hEZlA0+Z2X0F1lcnmg62I7AW+IWZLS6yzlrVjC6HpKfBpdC4XkMa12vIzNy5HHTAgfznkZe5aPC1LFuzgu82bwLg2l59OLpFa254ZBDdT/gJ15zXh96/v4LORx/H/Vffyak3XbhHnXUPqs3s/xtP61+dytbt2/h85ER6DuxH7rLF/L7PDXy96htGjHuRrj86nvlLvmD99xs5q9Op3Pmr3+xV1/5g5NC7y7sJhVq3fiN/fPBp7rvzeqpVq8qjT73Acce0Ycw7H3DTVZfQtHFD3p30MYsWL2NA3/P32PadiTl8tWQFV/bpvUf8+02b+d1dD/PQvb+lerVqDBv5Cu3bHUnnDseU4ZHtm75HXTE9lcn4ClO9WS1rcv0JKZX96vb3ityXpFOB74mmnd5rIGlJDxBNmTI4JNU3Cin3MXAD0UysY4GHzewtSX8B1pnZfZIGAnXN7DZJZwO/IUqqXYC/mVmX4o4nbXeSJWUDQ4GeQFvgEkltCxTrD3xrZq2BIcCf09WedFmxbjUzc+cC8P2WTcxf8gWH1m+Un1ABataoSd4/Xuec2I3nJrwCwMfzP6X2QQfTuF7DPeo8/5QevDN1Elu2baV+rTps37GD3GWLAXhvxn/ofXJ3AHLmfcL67zeGumbStEHjtB5rZbV7126279jBrl272LZjB3XqHIyArVu2AbBly1bq1j54r+1yps3mxE4/3is+9ZO5HNu2NdWrVUt30/drcc1RZWaTgHXJ1oWzyYuAUcW0pQlQy8xywswAI4HeYXUvYET4PKJAfKRFcoA6eZMAFiWdl/+dgVwzWwQgaXRo5NyEMr2Au8LnF4FHJcnSefqcRi0aNaX9EW2ZuuBTAO7qdzOXntmbDZu+o8dtfQA4tH4jlq5ekb/NstUrObR+I1asW50fu/AnZ/Pwy/8HwJoN31IlO5sObdoxY+Fszj+lO80a7p08L+t+AeOmTUrn4VVK9erUoueZJ3HznUOoVq0K7Y4+gh//qDX9L+3F/Y//k2pVq3JAjeoMuvWKPbZbs3Y9q9d+S9ujWu1VZ8702fQ448Q9Yi++PoHX3vo3bY9qxUW9fkrVqpX/zlsJ3v1vIGlawvdhZjYsxW1PAVaa2cKEWCtJnwAbgTvN7AOgKbA0oczSEANoFCb/A1gBNAqfmwJLkmyznCKk8zebrEEFT53zy5jZTkkbgPrAmsRCkgYAAwCokZ2m5u6bA2vUZNSdj/C7v/9v/lnqXSOGcNeIIdz6i6u4+tw+/PGfDxdbT+N6DTmm5VGMnz45P9b3vpv5y1V3UL1qNd6dMZldu3fvsc2px3ahX/cL6XbLJfEeVAbYtHkLMz5bwAODb6JmzRo8+tQLfPjxp0ybOY9br/kVR7RqxpvjJ/Pcy+Pof2mv/O1yps/ihOPb7vXY0PoN37H0m5X8uG3r/NhFvc6kdq2D2LlzF8NHjeHN8ZPpffZpZXWI5UIle/h/zT7cariEPc9SlwMtzGxtuIf6qqSU77uEe6z7dFJXIR4kM7NhZtbJzDpRdf9rcpXsKoz6/SM8//7rvPbhO3utf/69MfT+r7MA+Gbtyj3ONJs2bMQ3a1fmf//5KT0Z85/x7Ny1Mz82Zd5Mzrz1l5xy4wVMnjWV3GVf5q9r1+ooHr/pXi68+xrWfbc+DUdXuc2Zv4iG9etQ6+ADqZKdTaf2P2LhF1+zZNkKjmgVTQXfpWM7Fi5assd2OdOTX/pPmTGbjsf9iCrZP/zjX6f2wUiiatUqnNr1eL74atle21U+qV3670tnlqQqwM+IOpkAMLNtYbI+zGw68AVwJLAMaJawebMQA1iZd1kffq4K8WVA80K2KVQ6M1QqDcovE/6CahN1WFUoT9z8vyz4+ov8S3aAIw49LP/zOSeeyedLFgHwZs57/LJb1OHR+ejj2Ljp+z0u/S867RxemPjGHvU3rF0PgGpVq3LLhQN48s3RADRv2ITRv3+U/n/9Xf49V1cy9evW5osvl7Jt+3bMjDkLFnFok4Zs3rKN5SujC6Y587/g0MYN8rf5ZsVqNm/eSutWzfeqL2fabLoWSLbrN3wHgJkx/bP5NGuy/3S0plO6kypwJjDfzPIv6yU1DP05SDocaAMsCpf3GyV1Dfdh+wKvhc3GAP3C534F4n0V6UrUGVbkpT+k9/J/KtBGUiui5Hkx8MsCZfIO5iPgAuC9inY/9aRjOnLpmb2Z9eV8coZGv4tBzzzIZd0voE2zVuy23Xy98htueGQQAG9/PJHuJ/yEOcPfZfO2LVz14O35dbVo1JRmDZvwwayP99jHzRdeQc/Op5OVJZ58YxT//jQHgNsvvZ56B9fhoevvAmDnrp381w0/L4OjrjyOaNWME45vyx/u+ztZWVkc1qwxp5/ciXp1avPIU88jiQNrHsAVv0q89J9Nl47t9koIq9d+y7pvN3B068P2iD/+zEt89/0mzOCwZo257OJzyuTYyltcz6lKGgWcRnTvdSkwyMyeJsopBTuoTgUGS9oB7AauNrO8Tq5r+eGRqrfCAnAf8IKk/sBXRB1fED0hcDaQS/RI1eUptTfNj1SdDTxE9EjVcDO7V9JgYJqZjZFUA/gHcDxR797FeR1bhda5nz1S5Yq3Pz9S5ZLb10eqDmhR21recnJKZeff9NY+7Wt/k9YuSDMbS5TtE2N/SPi8Fdj/Hqx0zu0zH6XKOedilKE51ZOqcy4dfJBq55yLlSdV55yLSQkf/q9UPKk659LCp6h2zrk4+Zmqc87FxTuqnHMuPj7yv3POxUd4R5VzzsXKk6pzzsXIe/+dcy4u+z6sX4XlSdU5Fzu/p+qcczHL1KS6/81N4pyrFOIa+V/ScEmrJM1OiN0laZmkmWE5O2Hd7ZJyJS2Q1D0h3iPEcsNU1HnxVpKmhPjzkqqFePXwPTesb5nKcXtSdc7FT1FHVSpLCp4BeiSJDzGz9mEZCyCpLdGMAMeEbR6TlB2mWBkK9ATaApeEsgB/DnW1Br4F+od4f+DbEB8SyhXLk6pzLnaKceI/M5tENDNIKnoBo8MEgF8STYXSOSy5ZrbIzLYDo4FeYb6qM4AXw/YjgN4JdY0In18EuimFBntSdc6lRRlM/He9pM/C7YG6IZY/7X2wNMQKi9cH1pvZzgLxPeoK6zeE8kXypOqcSwsptYVoQr9pCcuAFKp/HDgCaA8sBx5I24GUkPf+O+fiV7LxVNeUdOI/M1uZvyvpSSBvXvf8ae+DZiFGIfG1QB1JVcLZaGL5vLqWSqoC1A7li+Rnqs659CjBqWrJq1aThK/nA3lPBowBLg49962ANsDHwFSgTejpr0bUmTXGoumk3wcuCNv3A15LqKtf+HwB8J6lMP20n6k652InIDum11QljQJOI7pNsBQYBJwmqT1gwGLgKgAzmyPpBWAusBO4zsx2hXquB8YB2cBwM5sTdnEbMFrSH4FPgKdD/GngH5JyiTrKLk6lvZ5UnXNpEN9rqmZ2SZLw00lieeXvBe5NEh8LjE0SX0T0dEDB+FbgwhI1Fk+qzrl0EGRl6BtVnlSdc7Hzd/+dcy5mmdoLXmhSlfQI0U3gpMzshrS0yDlX4UUdVZmZVos6U51WZq1wzlUy8nuqBZnZiMTvkmqa2eb0N8k5V+GV7OH/SqXY83NJJ0qaC8wP34+T9FjaW+acq7BElFxSWSqbVI7pIaA74fUsM/sUODWNbXLOVQJZUkpLZZNS77+ZLSlwKr8rPc1xzlUWmXr5n0pSXSLpJMAkVQVuBOalt1nOuYpMQLYn1UJdDfyNaGzBb4jenb0unY1yzlV0lfPSPhXFJlUzWwNcWgZtcc5VEsrg11RT6f0/XNLrklaHybdek3R4WTTOOVdxlcHI//ulVHr/nwNeAJoAhwL/Akals1HOuYovU3v/U0mqNc3sH2a2Myz/BGqku2HOuYpLJVgqm6Le/a8XPr4V5sgeTTQWwC9IMiahc879QFTJ0Hf/izrq6UTv/19ENKr2+8BE4BqixOqcc0lJ8d1TDbOlrpI0OyH2V0nzw2yqr0iqE+ItJW2RNDMsTyRs01HSLEm5kh7Om25aUj1J4yUtDD/rhrhCudywnw6pHHuhSdXMWpnZ4eFnwcU7qpxzRYrxnuozQI8CsfFAOzM7FvgcuD1h3Rdm1j4sVyfEHweuJJq3qk1CnQOBCWbWBpgQvgP0TCg7IGxfrJTeqJLUDmhLwr1UMxuZyrbOucwU1/1SM5skqWWB2DsJX3P4YeK+5G2JJgqsZWY54ftIoDfwFtCLaA4sgBFEV+S3hfjIMNlfjqQ6kpqY2fKi9lVsUpU0KOywLdG91J7AZMCTqnMuKVGi51QbSEocanSYmQ0rwe5+DTyf8L2VpE+AjcCdZvYB0ctLSxPKLA0xgEYJiXIF0Ch8bgosSbLNviVVon8BjgM+MbPLJTUC/pnCds65jKWSDFK9xsw6lWov0v8QzZr6bAgtB1qY2VpJHYFXJR2Tan1mZpKKnYa6KKkk1S1mtlvSTkm1gFVA833ZqXOucssb+i+t+5AuA84BuoVLdMxsG7AtfJ4u6QvgSGAZ0Cxh82YhBrAy77I+3CZYFeLL2DPXJW5TqFSOe1roWXuS6ImAGcBHKWznnMtUMfb+J61e6gH8N3Be4uD5khpKyg6fDyfqZFoULu83Suoaev37Aq+FzcYA/cLnfgXifcNTAF2BDcXdT4XU3v2/Nnx8QtLbRDd7PytuO+dcZovrbSlJo4j6dRpIWgoMIurtrw6MD4k5J/T0nwoMlrQD2A1cbWbrQlXXEj1JcABRB9VbIX4f8IKk/sBXRI+RQtSHdDaQC2wGLk+lvUU9/F/oM1mSOpjZjFR24JzLPCXsqCqSmV2SJPx0IWVfAl4qZN00oF2S+FqgW5K4UYoR+Yo6U32giHUGnFHSncWhw5Ht+PDtyeWxa1dKW3f61GYVzxX7XENlHCwlFUVN/Hd6WTbEOVeZiGxl5muqKT3875xzJZHJ46l6UnXOpYUq5RhUxfOk6pxLi0y9p5rKyP+S9CtJfwjfW0jqnP6mOecqKpHaYCqV8RZBKneSHwNOBPIea/gOGJq2FjnnKgWRldJS2aRy+d/FzDqEAQows28lVUtzu5xzFVwJ3v2vVFJJqjvCa18G0WtgRG8qOOdcUgp/MlEqSfVh4BXgEEn3Eo1adWdaW+Wcq9j8karCmdmzkqYTvcYloLeZzUt7y5xzFVqm9v6nMkh1C6LBBF5PjJnZ1+lsmHOu4oqG/vN7qoV5k+h+qoimU2kFLABSHvjVOZdpRJZ3VCVnZj9O/B5Gr7q2kOLOOQdAlndUpcbMZkjqko7GOOcqB5G591RTeaPqtwnLrZKeA74pg7Y55yoqxTdFtaThklZJmp0QqydpvKSF4WfdEJekhyXlSvoscVxoSf1C+YWS+iXEO0qaFbZ5OMwMUOg+ipPKTY+DE5bqRPdYe6VSuXMuUynlPyl4BuhRIDYQmGBmbYAJ4TtEsz23CcsA4HGIEiTRjAFdgM7AoIQk+ThwZcJ2PYrZR5GKvPwPD/0fbGa3plKZc85B3sj/8XRUmdkkSS0LhHsRTbECMAKYCNwW4iPDqP05kuqEyfxOA8bnTa0iaTzQQ9JEoimickJ8JNCbaKqVwvZRpKKmU6liZjslnVxcJc45V1AJkmoDSdMSvg8zs2HFbNMoYRK+FUCj8LkpsCSh3NIQKyq+NEm8qH0Uqagz1Y+BDsBMSWOAfwGb8laa2cup7MA5l4lKNALVGjPrVNo9mZlJstJuH/c+Uun9rwGsJZqTKu95VQM8qTrnkhJpH6R6paQmZrY8XN6vCvFlQPOEcs1CbBk/XMrnxSeGeLMk5YvaR5GKOj8/RNJvgdnArPBzTvg5u4jtnHMu3eOpjgHyevD7Aa8lxPuGpwC6AhvCJfw44CxJdUMH1VnAuLBuo6Suode/b4G6ku2jSEWdqWYDB0HSf27SeqrtnKvgBIqpo0rSKKKzzAaSlhL14t8HvCCpP/AVcFEoPhY4G8gler3+cgAzWyfpHmBqKDc4r9OK6GWmZ4ADiDqo3grxwvZRpKKS6nIzG5xKJc45t6f4hv4zs0sKWdUtSVkDriuknuHA8CTxaUC7JPG1yfZRnKKSama+DuGc22fCB6lOpsQZ2jnn8vi7/wUk3G9wzrkSyeR3/32KaudcGii2jqqKxpOqcy4t/PLfOediIsX37n9F40nVOZcG8nuqzjkXJ7/8d865mES9/37575xzMYnvjaqKxpOqcy4t/J6qc87FyHv/nXMuJsI7qpxzLj7yR6qccy5WSmmy5sonM4/aOZd2CmerxS0p1HOUpJkJy0ZJN0m6S9KyhPjZCdvcLilX0gJJ3RPiPUIsV9LAhHgrSVNC/HlJ1Up73J5UnXOxEyJbWSktxTGzBWbW3szaAx2JRvR/JawekrfOzMYCSGoLXAwcA/QAHpOULSkbGAr0BNoCl4SyAH8OdbUGvgX6l/bYPak659JCKf4poW7AF2b2VRFlegGjzWybmX1JNLVK57DkmtkiM9sOjAZ6hbmpzgBeDNuPAHqXtGF5PKk659KiBJf/DSRNS1gGFFHtxcCohO/XS/pM0vAwoR9AU2BJQpmlIVZYvD6w3sx2FoiXiidV51zsoimqs1JagDVm1ilhGZa0zug+53nAv0LoceAIoD2wHHgg7QeWAu/9d86lQVoeqeoJzDCzlQB5PwEkPQm8Eb4uA5onbNcsxCgkvhaoI6lKOFtNLF9ifqbqnEuL1M5TS5R4LyHh0l9Sk4R15wOzw+cxwMWSqktqBbQBPiaanrpN6OmvRnQrYUyYgfV94IKwfT/gtVIcMuBnqs65NIh7kGpJBwI/Ba5KCP9FUnvAgMV568xsjqQXgLnATuA6M9sV6rkeGAdkA8PNbE6o6zZgtKQ/Ap8AT5e2rZ5UnXNpEeflv5ltIupQSoz1KaL8vcC9SeJjgbFJ4ouIng7YZ55UnXNpoIx9o8qTqnMuLbL83X+XDuu/38g1D/0Pcxd/jiSeuPlPjJv6b974aAJZWaJhnfoMu+U+Dq3fiEmfTuHCu6+hZeNmAPQ6+SzuuPT6/Lp27drFyTf8jEPrN+LlwUmfOnGlcP1Dgxg3dRINatfjo8deAmDWogXcMvRevt+6mRaHHMqw3/0vtWoexPQFs7jp0XsAMIOBv7yac046A4DHXv0H/3jnFUC0bdmGoTfdTY1q1fP3c9vf/8yz419l6YsflfkxlrXokarMTKppOz8PD+OukjS7kPWS9HB41/YzSR3S1ZbydOsTf+Ssjqfw6VPj+PixMRzd4ghuvuAKpj7xOlMeG0PPzqfzp2eH5pc/uV0npjw2himPjdkjoQI8+uoIjmp+RFkfQqV3yZnn8eLdj+0Ru/GRuxl02Q38Z+iLnHPiGTzy0ggAfnRYa95/6Dk+eOQFXhw8lJuH3sPOXTv5Zs1K/v76KN4b8hwfPfYSu3fv4uVJb+fX98nCOaz/fmOZHld5i+vd/4omnTc9niF677YwPYkedWgDDCB6kLdS2bDpOybPmsZlPS4EoFrVatQ5qBa1Djwov8zmrZtT+g9r6eoVvD11IpeHulx8Tm7XkboH19ojlrvsa05q1xGA047vyuv/mQBAzRoHUCU7usDbtn37Hr+7nbt2sXX7Nnbu2snmbVtpXK8hEF1h/GH4EO6+/KYyOJr9hchSVkpLZZO2IzKzScC6Ior0AkZaJIfo4dsmRZSvcBavWEKD2nUZ8MBAul7Xi2uG3MGmrZsBGPTMg7T+1amMfv91ft/nxvxtpsybSedrzqXXnf2Zu3hhfvx3f7+Xe/v/d6X8j3B/dHSLwxmb8z4Ar00ez7I1K/LXTVswixOv/RknX38BD157J1Wyq3Bog0b85vy+/PjyHhzd56fUqnkQZ3Q4CYAn3xhNzy4/yU+ymSAapDq1P5VNeR5RYe/h7kXSgLz3glevXlMmjYvDzl27mJk7lyvP+SU5Q1+jZo2a3P98dC/07st+S+4/J3Hx6efyxOv/AKB962NYMPJ9Pn78da45rw8XDb4WgLFT3ueQOvXp0KZduR1Lpnn0xrt5euwLnHbjJXy/ZRNVq1TNX9fpqB/z0WMvM2HIswz519Ns3b6N9d9vZOyUicx8+k3mjXyHzdu28Pz7b7J87Spe/XA8A869pByPphzIL//3a2Y2LO+94IYNG5R3c1LWtEFjmjZoTOejjwPg/FO6MzN3zh5lfnHGebw6+R0Aah14EAcdcCAAPTqfxo6dO1mzYR0fzZnOGzkTOKrv6fS972YmfprD5X++tWwPJsMc2bwVL9/zBBP/Noqf/6QnrULnYaKjmh/OgQfUZN5XuUycmcNhjZrSoHY9qlapyrknduPjeTP5bNF8vvxmCR2uPJdjf92Tzdu20uHKc8vhiMpaqmNUVb6kWp69/0W9n1spNK7XkGYNG/P5kkUc2fxwJn7yEUe3aE3ussW0btoSgDc+epcjmx8OwIp1q2lUtwGSmLrgU3bbburXqss9v76Ve34dJdFJn07hoZee5v9uu7+8DisjrF6/joZ16rF7927uH/0kl/eM7mV/tWIZTRs2okp2Fb5e9Q0Lly6mxSGHsmv3bqYt+IzNW7dwQPUa/PvTKRzf5hi6n3AqC/45Ib/eZhecyIwnXy+vwypTlfEsNBXlmVTHEA3bNRroAmwws+Xl2J60ePDa33P5X25l+44dtGzSjGG/vY9rHvofFi79kixl0aLRoTz8m7sBeGXy2zz5xiiqZGdTo3oNRt4+JGP/wyxL/f8ykA9nTWPtxvUc0+8sBl56DZu2bOapN58H4JyTunHpT3sB8NHcT/jbi8Opkl2FrKws7r/mdurXrkv92nU57+QzOe2mS8jOyubYI46mX4+fl+dhlau8e6qZSNFYAmmoWBoFnAY0AFYCg4CqAGb2RBgY9lGiJwQ2A5eb2bTi6u3YqYN9OGVyWtrs0mPrzs3l3QRXQnVrNJxuZp1Ku33b9kfbyHeHp1T2hIYn79O+9jdpO1M1syLvzIeRYa5L1/6dc+Wpct4vTYW/UeWcS4tMvXXlSdU5lxZ+puqcczHK1KSamd1zzrm0UsyvqUpaLGmWpJmSpoVYPUnjJS0MP+uGeKHjikjqF8ovlNQvId4x1J8bti31vwieVJ1zaZGGh/9PN7P2CU8KDAQmmFkbYEL4DoWMKyKpHtFTSF2IBqQelDAD6+PAlQnbFTVuSZE8qTrn4lc2r6n2AkaEzyOA3gnxZOOKdAfGm9k6M/sWGA/0COtqmVlOeCppZEJdJeZJ1TmXFjGfqRrwjqTpkgaEWKOEF4ZWAI3C58LGFSkqvjRJvFS8o8o5FztRokeqGuTdJw2GmVnBUdj/y8yWSToEGC9pfuJKMzNJ6XmTqYQ8qTrn0qBEZ6FrinujysyWhZ+rJL1CdE90paQmZrY8XMKvCsULG1dkGdFbnonxiSHeLEn5UvHLf+dcWsTV+y/pQEkH530GzgJmE40fkteD3w94LXweA/QNTwF05YdxRcYBZ0mqGzqozgLGhXUbJXUNvf59E+oqMT9Tdc6lRYzPqTYCXgm3E6oAz5nZ25KmAi9I6g98BVwUyo8FzgZyCeOKAJjZOkn3AFNDucFmljeQ/rVEs5UcALwVllLxpOqci12cE/+Z2SLguCTxtUC3JPFCxxUxs+HAXiO9hMGcYhkF3pOqcy4NKueo/qnwpOqcSxNPqs45Fw+RsZNUelJ1zqVFpg6o4knVORc7+T1V55yLl5+pOudcjDypOudcjPzy3znnYpI3SHUm8qTqnEsLv/x3zrlYeVJ1zrnYZGZK9aTqnEsT76hyzrlYeVJ1zrmYlHim1ErDk6pzLnZS5l7+Z+aDZM65CkNSc0nvS5oraY6kG0P8LknLJM0My9kJ29wuKVfSAkndE+I9QixX0sCEeCtJU0L8eUnVStteT6rOubSIcYrqncAtZtYW6ApcJ6ltWDfEzNqHZSxAWHcxcAzQA3hMUrakbGAo0BNoC1ySUM+fQ12tgW+B/qU9bk+qzrm0iCupmtlyM5sRPn8HzAOaFrFJL2C0mW0zsy+J5qrqHJZcM1tkZtuB0UCvMNnfGcCLYfsRQO/SHbUnVedcmkhKaQEaSJqWsAwoos6WwPHAlBC6XtJnkoaHGVIhSrhLEjZbGmKFxesD681sZ4F4qXhSdc6VtzVm1ilhGZaskKSDgJeAm8xsI/A4cATQHlgOPFBWDS6K9/4759Ig3keqJFUlSqjPmtnLAGa2MmH9k8Ab4esyoHnC5s1CjELia4E6kqqEs9XE8iXmZ6rOuTRRiksxtUT3CJ4G5pnZgwnxJgnFzgdmh89jgIslVZfUCmgDfAxMBdqEnv5qRJ1ZY8KU1u8DF4Tt+wGvleaIwc9UnXNpkFq6TNnJQB9glqSZIXYHUe99e8CAxcBVAGY2R9ILwFyiJweuM7NdAJKuB8YB2cBwM5sT6rsNGC3pj8AnREm8VDypOufSIq6H/81sMslz9NgitrkXuDdJfGyy7cxsEdHTAfvMk6pzLi38NVXnnIuVJ1XnnItJ5k5R7b3/zjkXIz9Tdc7FLur9z8wzVU+qzrk08aTqnHOxycrQe6qeVJ1zaRDz4/8ViCdV51xaZGZK9aTqnEubzEyrnlSdc/HL4DmqPKk652KXyY9UKRr1quKQtBr4qrzbkQYNgDXl3QhXIpX5d3aYmTUs7caS3ib6+0nFGjPrUdp97W8qXFKtrCRNM7NO5d0Olzr/nblk/DVV55yLkSdV55yLkSfV/UfSyc7cfs1/Z24vfk/VOedi5GeqzjkXI0+qzjkXI0+qZUxSD0kLJOVKGphkfXVJz4f1UyS1LIdmukDScEmrJM0uZL0kPRx+X59J6lDWbXT7F0+qZUhSNjAU6Am0JZpit22BYv2Bb82sNTAE+HPZttIV8AxQ1IPpPYnmlW8DDAAeL4M2uf2YJ9Wy1RnINbNFZrYdGA30KlCmFzAifH4R6KZMfYl6P2Bmk4B1RRTpBYy0SA5QR1KTsmmd2x95Ui1bTYElCd+XhljSMma2E9gA1C+T1rnSSOV36jKIJ1XnnIuRJ9WytQxonvC9WYglLSOpClAbWFsmrXOlkcrv1GUQT6playrQRlIrSdWAi4ExBcqMAfqFzxcA75m/obE/GwP0DU8BdAU2mNny8m6UKz8+nmoZMrOdkq4HxgHZwHAzmyNpMDDNzMYATwP/kJRL1EFycfm12EkaBZwGNJC0FBgEVAUwsyeAscDZQC6wGbi8fFrq9hf+mqpzzsXIL/+dcy5GnlSdcy5GnlSdcy5GnlSdcy5GnlSdcy5GnlQrIUm7JM2UNFvSvyTV3Ie6npF0Qfj8VJIBYBLLnibppFLsY7GkvWbeLCxeoMz3JdzXXZJuLWkbnUuVJ9XKaYuZtTezdsB24OrEleFNrRIzsyvMbG4RRU4DSpxUnatMPKlWfh8ArcNZ5AeSxgBzJWVL+qukqWEc0Ksgf3zQR8OYr+8Ch+RVJGmipE7hcw9JMyR9KmlCGPf1auDmcJZ8iqSGkl4K+5gq6eSwbX1J70iaI+kpoNhRuCS9Kml62GZAgXVDQnyCpIYhdoSkt8M2H0g6Opa/TeeK4W9UVWLhjLQn8HYIdQDamdmXITFtMLMTJFUHPpT0DnA8cBTReK+NgLnA8AL1NgSeBE4NddUzs3WSngC+N7P7Q7nngCFmNllSC6I3yX5E9FbSZDMbLOn/EY0hW5xfh30cAEyV9JKZrQUOJHob7WZJfwh1X080Kd/VZrZQUhfgMeCMUvw1OlcinlQrpwMkzQyfPyB69fUk4GMz+zLEzwKOzbtfSjRwSxvgVGCUme0CvpH0XpL6uwKT8uoys8LGGz0TaJswHGwtSQeFffwsbPumpG9TOKYbJJ0fPjcPbV0L7AaeD/F/Ai+HfZwE/Cth39VT2Idz+8yTauW0xczaJwZCctmUGAJ+Y2bjCpQ7O8Z2ZAFdzWxrkrakTNJpRAn6RDPbLGkiUKOQ4hb2u77g34FzZcHvqWauccA1kqoCSDpS0oHAJOAX4Z5rE+D0JNvmAKdKahW2rRfi3wEHJ5R7B/hN3hdJ7cPHScAvQ6wnULeYttYmmmJmc7g32jVhXRbRaF6EOieb2UbgS0kXhn1I0nHF7MO5WHhSzVxPEd0vnaFoUru/E125vAIsDOtGAh8V3NDMVhPNx/SypE/54fL7deD8vI4q4AagU+gIm8sPTyHcTZSU5xDdBvi6mLa+DVSRNA+4jyip59kEdA7HcAYwOMQvBfqH9s1h72lrnEsLH6XKOedi5GeqzjkXI0+qzjkXI0+qzjkXI0+qzjkXI0+qzjkXI0+qzjkXI0+qzjkXo/8PTDrwPmpqTQIAAAAASUVORK5CYII=" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "scaled shape train (804890, 294)\n", + "scaled shape test (345305, 294)\n", + "AVG precision on test data: 0.8104609609264435\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ] + }, + "metadata": {} + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "scaled shape train (804890, 294)\n", + "scaled shape test (345305, 294)\n", + "AVG precision on test data: 0.8102717744124222\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ] + }, + "metadata": {} + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": { + "scrolled": false + } + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/logistic_regression/3_pool_results_from_imputations.ipynb b/logistic_regression/3_pool_results_from_imputations.ipynb new file mode 100644 index 0000000..30a2428 --- /dev/null +++ b/logistic_regression/3_pool_results_from_imputations.ipynb @@ -0,0 +1,502 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Pool the test set (results) from the Logistic Regression model for all 5 imputations\n", + "- Get one predicted probability for each patient (USRDS_ID) via averaging the score for each USRDS ID across all 5 imputations" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "import pickle\n", + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "import psycopg2\n", + "from sqlalchemy import create_engine\n", + "\n", + "con = create_engine('postgresql://username:password@location/dbname')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Import the model results for each imputation" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "with open('./results/2021_final_LR_model_test_pred_proba_imp_1.pickle','rb') as f: \n", + " imp1_pred = pickle.load(f)\n", + "with open('./results/2021_final_LR_model_test_pred_proba_imp_2.pickle','rb') as f: \n", + " imp2_pred = pickle.load(f)\n", + "with open('./results/2021_final_LR_model_test_pred_proba_imp_3.pickle','rb') as f: \n", + " imp3_pred = pickle.load(f)\n", + "with open('./results/2021_final_LR_model_test_pred_proba_imp_4.pickle','rb') as f: \n", + " imp4_pred = pickle.load(f)\n", + "with open('./results/2021_final_LR_model_test_pred_proba_imp_5.pickle','rb') as f: \n", + " imp5_pred = pickle.load(f)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Keep only the predictions for the positive class (died_in_90)" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 5, + "source": [ + "pooled = pd.DataFrame()\n", + "pooled['imp1']=imp1_pred[:,1]\n", + "pooled['imp2']=imp2_pred[:,1]\n", + "pooled['imp3']=imp3_pred[:,1]\n", + "pooled['imp4']=imp4_pred[:,1]\n", + "pooled['imp5']=imp5_pred[:,1]" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Calculate the mean and standard deviation of the predicted probability for the positive class (died_in_90) for each patient/row " + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 6, + "source": [ + "pooled['score'] = pooled.mean(axis=1)\n", + "pooled['std_'] = pooled.std(axis=1)\n", + "pooled.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " imp1 imp2 imp3 imp4 imp5 score std_\n", + "0 0.925393 0.914949 0.901626 0.929962 0.921700 0.918726 0.009861\n", + "1 0.778438 0.800176 0.776335 0.791798 0.777974 0.784944 0.009424\n", + "2 0.449145 0.417679 0.474578 0.594807 0.488599 0.484961 0.059995\n", + "3 0.636240 0.627138 0.649013 0.598810 0.635832 0.629407 0.016815\n", + "4 0.168010 0.186585 0.171646 0.276738 0.167967 0.194189 0.041841" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
imp1imp2imp3imp4imp5scorestd_
00.9253930.9149490.9016260.9299620.9217000.9187260.009861
10.7784380.8001760.7763350.7917980.7779740.7849440.009424
20.4491450.4176790.4745780.5948070.4885990.4849610.059995
30.6362400.6271380.6490130.5988100.6358320.6294070.016815
40.1680100.1865850.1716460.2767380.1679670.1941890.041841
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 6 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Import the details from the original data (postgres)" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [ + "dataset = pd.read_sql_query('''SELECT usrds_id, died_in_90, subset FROM medxpreesrd;''', con)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### sort the values so they are in the same order as when the LR was calculated and keep only the test set" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [ + "dataset = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id').reset_index(drop=True)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### merge the details with the pooled predictions" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 12, + "source": [ + "pooled = pooled.merge(dataset, left_index=True, right_index=True)\n", + "pooled" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " imp1 imp2 imp3 imp4 imp5 score std_ \\\n", + "0 0.925393 0.914949 0.901626 0.929962 0.921700 0.918726 0.009861 \n", + "1 0.778438 0.800176 0.776335 0.791798 0.777974 0.784944 0.009424 \n", + "2 0.449145 0.417679 0.474578 0.594807 0.488599 0.484961 0.059995 \n", + "3 0.636240 0.627138 0.649013 0.598810 0.635832 0.629407 0.016815 \n", + "4 0.168010 0.186585 0.171646 0.276738 0.167967 0.194189 0.041841 \n", + "... ... ... ... ... ... ... ... \n", + "345300 0.625205 0.574412 0.541137 0.574188 0.604139 0.583816 0.028736 \n", + "345301 0.106419 0.106407 0.106438 0.106418 0.106436 0.106424 0.000012 \n", + "345302 0.131457 0.131446 0.131473 0.131461 0.131455 0.131458 0.000009 \n", + "345303 0.124623 0.091418 0.109285 0.103798 0.108954 0.107615 0.010684 \n", + "345304 0.183068 0.183059 0.183086 0.183077 0.183116 0.183081 0.000020 \n", + "\n", + " usrds_id died_in_90 subset \n", + "0 31089.0 1.0 9 \n", + "1 34521.0 0.0 8 \n", + "2 46751.0 0.0 8 \n", + "3 50506.0 0.0 9 \n", + "4 54985.0 0.0 8 \n", + "... ... ... ... \n", + "345300 4056286.0 0.0 8 \n", + "345301 4056351.0 0.0 7 \n", + "345302 4056356.0 0.0 9 \n", + "345303 4056511.0 0.0 7 \n", + "345304 4056879.0 0.0 7 \n", + "\n", + "[345305 rows x 10 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
imp1imp2imp3imp4imp5scorestd_usrds_iddied_in_90subset
00.9253930.9149490.9016260.9299620.9217000.9187260.00986131089.01.09
10.7784380.8001760.7763350.7917980.7779740.7849440.00942434521.00.08
20.4491450.4176790.4745780.5948070.4885990.4849610.05999546751.00.08
30.6362400.6271380.6490130.5988100.6358320.6294070.01681550506.00.09
40.1680100.1865850.1716460.2767380.1679670.1941890.04184154985.00.08
.................................
3453000.6252050.5744120.5411370.5741880.6041390.5838160.0287364056286.00.08
3453010.1064190.1064070.1064380.1064180.1064360.1064240.0000124056351.00.07
3453020.1314570.1314460.1314730.1314610.1314550.1314580.0000094056356.00.09
3453030.1246230.0914180.1092850.1037980.1089540.1076150.0106844056511.00.07
3453040.1830680.1830590.1830860.1830770.1831160.1830810.0000204056879.00.07
\n", + "

345305 rows × 10 columns

\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 12 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### save as a pickle file" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 14, + "source": [ + "with open('./results/2021_final_LR_model_test_pred_proba_pooled.pickle', 'wb') as picklefile: \n", + " pickle.dump(pooled, picklefile)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/logistic_regression/4_plot_lr_roc_auc.ipynb b/logistic_regression/4_plot_lr_roc_auc.ipynb new file mode 100644 index 0000000..69ade96 --- /dev/null +++ b/logistic_regression/4_plot_lr_roc_auc.ipynb @@ -0,0 +1,353 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Plot pooled results from the Logistic Regression model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 7, + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import pickle\n", + "\n", + "# add folder with custom functions to path\n", + "import sys\n", + "sys.path.append('../onc_functions')\n", + "\n", + "#import custom plotting functions\n", + "from plot_functions import onc_calc_cm, onc_plot_roc, onc_plot_roc_no_threshold" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 12, + "source": [ + "with open('./results/2021_final_LR_model_test_pred_proba_pooled.pickle','rb') as f: \n", + " results = pickle.load(f)\n", + "\n", + "results = results.loc[:,['score','died_in_90','subset','usrds_id']]\n", + "results = results.rename(columns={'died_in_90':'y'})\n", + "results.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y subset usrds_id\n", + "0 0.918726 1.0 9 31089.0\n", + "1 0.784944 0.0 8 34521.0\n", + "2 0.484961 0.0 8 46751.0\n", + "3 0.629407 0.0 9 50506.0\n", + "4 0.194189 0.0 8 54985.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreysubsetusrds_id
00.9187261.0931089.0
10.7849440.0834521.0
20.4849610.0846751.0
30.6294070.0950506.0
40.1941890.0854985.0
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 12 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# plot the ROC AUC with points at 20% and 50% thresholds" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 10, + "source": [ + "onc_plot_roc(\n", + " y_true=results.y, \n", + " y_pred=results.score, \n", + " model_name='lr');" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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bAcAAOTJcAAAAAAAAAAt1ubNm+O8884res63vvWtOPvss6NLly5FzwIAAAAAADiYJEmirq4upk+fHk1NTdGjR4+oq6uL/v37510NAADImeEAAAAAAAAAWpy1a9fGhRdeWPSc66+/Pq655pqi5wAAAAAAAByp7t27x/jx42Pv3r0xduzYKC8vz7sSAADQDBgOAAAAAAAAoMXYvHlznHfeeUXPOf/88+Nzn/tc0XMAAAAAAIDWLU3TeOGFF2LQoEHRvn37zO6OHDkys1sAAEDrYDgAAAAAAACAFuHiiy+OV155pagZNTU18fWvf72oGQAAAAAAQNuwffv2aGhoiFdffTXOOOOMqKury7sSAADQihkOAAAAAAAAoNlav359vOMd7yhJ1syZM6NDhw4lyQIAAAAAAFqvNE3j6aefjvnz58f+/fsjIuK5556LU089NU466aSc2wEAAK2V4QAAAAAAAACalaamprj++utjwYIFJcl76KGHok+fPiXJAgAAAAAAWretW7dGfX19rFu37g2vzZgxI/7sz/4sKisrc2gGAAC0doYDAAAAAAAAaBY2b94c5513XsnyPve5z8X5559fsjwAAAAAAKD1KhQKsWzZsmhsbIympqY3fWb79u0xf/78mDJlSonbAQAAbYHhAAAAAAAAAHKTpmn88Ic/jG9961slzV2wYEEkSVLSTAAAAAAAoHXavHlz1NfXx8aNGw/77FNPPRVDhw6NAQMGlKAZAADQlhgOAAAAAAAAIBfLly+Pq666qqSZt99+e0yePLmkmQAAAAAAQOvU1NQUS5YsicWLF0ehUDji9zU0NMSll14aFRV+rAcAAMiOf8MAAAAAAACgpHbs2BHnnHNOyfJuvPHGuPzyy0uWBwAAAAAAtH4bN26M+vr62Lx581G/d+vWrbFw4cKYMGFCEZoBAABtleEAAAAAAAAASqKpqamkH4C79dZb44ILLihZHgAAAAAA0PodOHAgFi5cGEuXLo00TY/5ztKlS2Po0KHRt2/fDNsBAABtWVneBQAAAAAAAGj9Hn300ZKNBnz/+9+PxsZGowEAAAAAAECm1q5dG7/85S/jiSeeOK7RgIiINE1j/vz5GTUDAACIqMi7AAAAAAAAAK3X3r17Y8qUKSXJ+u53vxtVVVUlyQIAAAAAANqO/fv3x/z58+Opp57K7OawYcNi0qRJmd0D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GLtGdXFAklcnqf1YX/q5fqDnjDUD/XMDAABgHOvo6BjQvksvvbThJAAAAAAADIVNmzalu7s7P/zhD1PrS3/cqLu7O6985SszderUYUgHAAAAAAAwtrUNd4CGlD68huqcsfYCAACAfunp6Ul7e/uA9s6cOTP77bdfw4kAAAAAABhsDz/8cC688MLcfPPNOywNSJLNmzdn8eLFL3sfAAAAAACAgZs43AEaMlTfSfIdKwAAAOjF7NmzB7z3q1/9aoNJAAAAAAAYbBs3bsy1116b2267rU/rH3nkkdx22205/vjjBzkZAAAAAADA+DJWigNKH9Y08dB/X84Za5QlAAAA0GfvfOc7B7z3ggsuaDAJAAAAAACD7cc//nGWLFmSZ555pl/7li1blkMPPTR77rnnICUDAAAAAAAYf9qGOwAAAAAwNixdujTLly8f8P6TTjqpwTQAAAAAAAyW9evX54orrsh3vvOdfpcGJMnGjRvT2dmZWn2mCQAAAAAAQFMmDncAAAAAYPT77ne/m9///d8f8P5ly5Y1mAYAAAAAgMFy77335sorr8yzzz7b0pwHH3wwd955Z44++uiGkgEAAAAAAIxvigMAAACAlnz5y1/OZz7zmQHv/+IXv5i2trbmAgEAAAAA0Lhnn302V111VZYvX97IvFJKnnnmmUZmAQAAAAAAoDgAAAAAaMENN9zQUmnArFmzcvzxxzcXCAAAAACARtVac/fdd2fp0qVZv359IzOnTZuWV7/61dl///0bmQcAAAAAAMDYKQ6oY+wcAAAAGPF6enryC7/wCy3N+NznPtdQGgAAAAAAmrZ27dosWbIkK1asaGReW1tbTjnllJx66qmZMGFCIzMBAAAAAADYYiwUB5Qxdg4AAACMCrNnz25pf3d3d0NJAAAAAABoUq01d9xxR6699tps2LChkZn7779/Ojo6su+++zYyDwAAAAAAgBca7cUBPzHGzgEAAIBR4aKLLmppv9IAAAAAAICRafXq1ens7MxDDz3UyLwJEyakvb09J554Ytra2hqZCQAAAAAAwEuN6uKAWuvisXQOAAAAjAa11nz84x8f8P7LLruswTQAAAAAADSh1ppbbrklXV1d2bRpUyMzZ8yYkYULF2bvvfduZB4AAAAAAAAvb1QXBwAAAABDb9asWQPe+6lPfSpTp05tMA0AAAAAAK1atWpVOjs7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9gEAAAAAAABD17AuDijL8mdH0n0AAAAYXJ2dnTXP/sEf/EGFSQAAAAAADjn77LNz6aWXZsOGDSe15+KLL86CBQsybty4ipIBAAAAAAAAQ9mwLg4AAACAk/Frv/ZrNc11dXVVnAQAAAAA4FXz5s3LU089lV27dg14duLEiVmyZElmzpxZh2QAAAAAAADAUNXU6AAAAADQCK2trTXNrVy5suIkAAAAAACvNXbs2CxZsmTAc5deemluueUWpQEAAAAAAAAwCrU0OgAAAAAMtlpLAz70oQ9lzJgxFacBAAAAAPhRM2fOzMUXX5xHHnmkz7NTpkxJW1tbZsyYMQjJAAAAAAAAgKFIcQAAAACjymc+85maZ3/pl36pwiQAAAAAAL1bsGBBNm/enL179x73elEUueKKK9La2pqWFm8DAgAAAAAAgNGsqdEBAAAAYDD9zd/8TU1zd999d8VJAAAAAAB6N27cuCxevPi416ZOnZqf/MmfzPXXX680AAAAAAAAAIifGgIAADBqtLa21jw7efLkCpMAAAAAAPTPrFmzMnv27GzcuDFJ0tTUlKuvvjrXXHNNmpubG5wOAAAAAAAAGCoUBwAAADAqPPvsszXPrlixosIkAAAAAAADs2jRojzzzDOZPHly2tracvrppzc6EgAAAAAAADDEKA4AAABgxCvLMu9617tqmr3hhhsyduzYihMBAAAAACNZd3d3mpubK9s3fvz4vPOd78xpp52WpqamyvYCAAAAAAAAI4efJAIAADDizZ07t+bZT3ziExUmAQAAAABGsrIss379+vzf//t/s2vXrkp3T5s2TWkAAAAAAAAAcEJ+mggAAMCI9sQTT9Q829XVVV0QAAAAAGBE2759e+64446sXLkye/bsydKlS1OWZaNjAQAAAAAAAKNES6MDAAAAQD29973vrWluzZo1FScBAAAAAEainp6e3H///fnud7+b7u7uH76+efPmPProo7n44osbmA4AAAAAAAAYLRQHAAAAMGK1trbWNPebv/mbaWpqqjgNAAAAADDSvPjii7nnnnvy4osvHvf6ypUr87rXvS4TJkwY5GQAAAAAAADAaOMpCAAAAEakp59+uubZm2++ucIkAAAAAMBI093dnbVr1+ZrX/vaCUsDkmTfvn1Zvnz5ICYDAAAAAAAARquWRgcYDoqi6O7lclmW5bD+51gURXuS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AIxvigNGqZRyepJfysilAdteH0ryx0l+v9b6VKsBd83Xk2zI5n8eanb+tZ2fSVgcUEr55SR/kuGLIHbFHkk+V0r5lVrrn7V0j4nkPyRZ3OsQAMD4d80114xp7p//+Z8bTgIAAADQjlprvve97+Wqq67Khg0bGtm5//77Z/HixXnFK17RyD4AAAAAAAAAACYGxQGj94dJ+jP8g/XblgY8mOQna61XtR9t19RanyulXJlkIC9+DTtybpcidU0p5W1ptzTgX2+V5H+XUlbXWj/R8r3GrVLKQUn+R69zAAATwy/90i91PHPwwQenlLb/0w4AAABg161atSpLlizJY4891si+/v7+nHXWWTnllFPS19fXyE4AAAAAAAAAACYOxQGjUEo5Ny8+VD9cacDWa1cl+fFa6w+6EK8py7P5a9yRrV/bq7oXp32llPlJ/iqjKw1YkeSTW369P8lzSeYkmZdkYZKfTnLOSLdM8lellNtrrSvHGHui+9Mke/U6BAAw/n3jG98Y09wXvvCFhpMAAAAANO+2227LVVddlY0bNzay78ADD8zixYuz117ehgEAAAAAAAAA2F0pDhid3x7h+tYH62s2lwZcVGtd3XqqZq3Yyetbv64kOaiU8opa6w+7lKk1pZQ9k3wqydQRjt6V5Bdrrd/awbWnk1y35eNPSimvTfJnSY4aZt+0JJ8upZxea13VefKJq5TypiT/rtc5AICJ4b3vfW/HM1/60pdaSAIAAADQvKGhoUZKA6ZOnZr58+fnxBNPTCmj6coGAAAAAAAAAGCy6ut1gPGulPLKJD+WFx+e3962rz+Q5PUTsDQgSVaO8typrabong8mmTvCmX9JcvZOSgNeptb6jSRnJfn2CEfnJvm90eycLEopeyX53zu5fG83swAA49/dd989prkDDzyw4SQAAAAA7TjppJNywAEH7NKOQw45JJdccklOOukkpQEAAAAAAAAAACgOGIU3J+nf8vn233FTt3l9Y5JLa61PdytYk2qt30/yw62/HeboUV2I06pSyolJfnmEY1cm+fFa67Od7K61PpPkDUmuGeHor5ZSTuhk9wT3P5MctJNrv9TNIADA+PeTP/mTHc/8y7/8SwtJAAAAANpRSsnixYvT398/8uHtTJ8+PYsXL87FF1+cOXPmtJAOAAAAAAAAAICJSHHAyC4d4XrJ5gft/3et9bou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DrttccBWWwoEvpjki6WUaUkWJDk/yfFJjklySJI9kszO5oft12RzScBDSe5PcmOSq5NcWWtd3+X4nTozyXc6OH9brfX5lrIAANChoaGhfPWrX+147j3veU8LaQAAAKB5jzzySJYuXZpVq1Y1sm/WrFlZtGhRjjjiiEb2AQAAAAAAAAAAjFe7fXHAtrY8+D+45WPSqbWuSLKi1zkAABib+fPn9zoCAAAAtGL9+vW5+uqrc/vttze287jjjsuCBQsyffr0xnYCAAAAAAAAAACMV4oDAABgAhgaGhrT3JIlSxpOAgAAAM168MEHs3Tp0jz//PON7JszZ04GBgZyyCGHNLIPAAAAAAAAAABgIlAcAAAAE8Af/uEfjmlu9uzZzQYBAACAhrzwwgtZsWJF7r777kb2lVJy4oknZv78+Zk6dWojOwEAAAAAAAAAACYKxQEAADABfPKTn+x45tOf/nQLSQAAAGDX1Fpz3333Zfny5Vm7dm0jO/fee+8MDAzkwAMPbGQfAAAAAAAAAADARKM4AAAAxrnrr79+THNHHXVUw0kAAABg16xZsybLli3L/fff38i+UkpOO+20nHnmmenv729kJwAAAAAAAAAAwESkOAAAAMa5X/iFX+h45tprr20hCQAAAIxNrTV33XVXrrzyyqxbt66Rnfvuu28GBgay//77N7IPAAAAAAAAAABgIlMcAAAA41itteOZn/qpn2ohCQAAAIxNrTVf//rX8+CDDzayr6+vL2eccUZOO+209Pf3N7ITAAAAAAAAAABgolMcAAAA49g73vGOjmd+4zd+o4UkAAAAMDallOy7776NFAe88pWvzMDAQF7xilc0kAwAAAAAAAAAAGDyUBwAAADjVK011113XcdzpZQW0gAAAMDYnXHGGbn//vvz9NNPj2m+v78/Z599dk455RR/7wUAAAAAAAAAANiBvl4HAAE0IGYAAQAASURBVAAAduzss8/ueOY73/lO80EAAABgF/X392dgYGBMD/0fdNBBueSSS3LqqacqDQAAAAAAAAAAANiJKb0OAAAAvFytdUxze+yxR8NJAAAAoBkHHHBATj755Nx8882jOj916tScc845OeGEExQGAAAAAAAAAAAAjEBxAAAAjENvfetbO575lV/5lRaSAAAAQHPOOuusPPDAA1m1atWw5w477LAsWrRIQR4AAAAAAAAA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/fosXbo0X/rSl7Jq1aokyaZNmzI4ODjmvxsBAAAAAAAAAAAAE8OUXgcAAIA2/fmf/3nHM5/+9KdbSAIAANCeBx98MEuXLs3zzz//smtPPPFEbrnllpxyyik9SAYAAAAAAAAAAAB0g+IAAAAmtY997GMdzxx11FEtJAEAAGjeCy+8kCuvvDJ33XXXsOdWrlyZI444InvuuWeXkgEAAAAAAAAAAADd1NfrAAAA0JavfOUrHc9cdtllLSQBAABo3r333pvLL798xNKAJNm4cWMGBwdTa+1CMgAAAAAAAAAAAKDbpvQ6AAAAtOV3f/d3O5555zvf2UISAACA5qxZsybLly/Pfffd19Hco48+mu9973s54YQTWkoGAAAAAAAAAAAA9IriAAAAJqWbbrqp1xEAAAAaVWvNXXfdlSuvvDLr1q0b046rr746hx9+eGbPnt1wOgAAAAAAAAAAAKCX+nodAAAA2vD2t7+945mVK1e2kAQAAGDXrV69Ol/72tfyne98Z8ylAUmyfv36LF26NLXWBtMBAAAAAAAAAAAAvTal1wEAAKBpGzduHNNcKaXhJAAAALum1prbb789V199dTZs2NDIzrVr12b9+vWZPn16I/sAAAAAAAAAAACA3lMcAADApLNgwYKOZ6699toWkgAAAIzds88+m8HBwTz22GON7Ovv789ZZ52VU045JX19fY3sBAAAAAAAAAAAAMYHxQEAAEwqQ0NDvY4AAACwS2qtufnmm3Pttddm48aNjew88MADs3jx4uy1116N7AMAAAAAAAAAAADGF8UBAABMKvPnz+945utf/3oLSQAAADr39NNPZ8mSJfn+97/fyL6pU6dm/vz5OfHEE1NKaWQnAAAAAAAAAAAAMP4oDgAAYNK4/fbbxzS37777NpwEAACgM5s2bcqNN96YG264IUNDQ43sPPTQQ7No0aLMmTOnkX0AAAAAAAAAAADA+KU4AACASeNnfuZnOp756Ec/2kISAACA0fvBD36QwcHBPPXUU43smz59ehYsWJBjjz02pZRGdgIAAAAAAAAAAADjm+IAAAAmhYcffnhMc4sWLWo4CQAAwOhs2rQp1113XW666abUWhvZeeSRR+b888/PrFmzGtkHAAAAAAAAAAAATAyKAwAAmBTe/e53dzzzwQ9+sIUkAAAAI3v88cczODiYZ555ppF9M2fOzHnn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6wIAAEfjzjvvTCv/7//+71lqApA79fX1MX/+/Hj55Zejrq4upWtmzZoVffv2jaKioiy3AwAAAAAAAICmbc+ePXHxxRfHX//614zMGzBgQIwfPz5OOeWU6NevX/Tr1y969OgRRUVFUVRUFIWFhVFVVRW7d++OvXv3xrp16+L111+P5cuXx+LFi2P69OlNfnkBAAAAAJlncQAA0KSl+8TskSNHZqkJQG5s2bIlysvLY+vWrWldV11dHdOmTYuzzz47EolEltoBAAAAAAAAQNO2ffv2OP/882P27NlHPKNNmzZx3nnnxZVXXhlnn312dO3a9R2vad++fbRv3z4iIk466aQ4/fTT//6x+vr6WLBgQfz1r3+N++67L+bMmXPE3QAAAABoPiwOAAAAaILq6upi3rx5sWDBgkgmk0c0Y9WqVfHGG29E//79M9wOAAAAAAAAAJq+zZs3x1lnnRULFy48ouuPPfbYuOGGG+Kaa675+xKATMjLy4vhw4fH8OHD4wtf+EKsWLEi7rnnnvif//mf2LhxY8bOAQAAAKBpyct1AQCAIzVz5sy08pdffnmWmgA0rLfeeiseeuihmD9//hEvDfibGTNmxP79+zPUDAAAAAAAAACah/3798cll1xyREsDOnfuHD/72c9ixYoV8YUvfCGjSwMOpn///vGNb3wjVq1aFXfeeWeceOKJWT0PAAAAgMbJ4gAAoMm6/vrr08qfccYZWWoC0DAOHDgQM2bMiMcffzx27NiRkZl9+vSJRCKRkVkAAAAAAAAA0Fx87GMfS/vBJhER73//+2Pp0qXxqU99Klq3bp2FZodWWFgY//Zv/xavvvpq3HHHHdG5c+cGPR8AAACA3LI4AABoMcaOHZvrCgBHbN26dfHggw/GokWLIplMHvW84uLiOPfcc+Pd7353FBYWZqAhAAAAAAAAADQPN998c/zxj39M65rWrVvHnXfeGffee2/06NEjS81Sk5+fH9ddd10sX748/u3f/s0DBQAAAABaiIJcFwAAOBI7d+7MdQWABlFTUxOzZs2KV199NWMzTz755BgzZoyFAQAAAAAAAADwL2bOnBnf+ta30rqmU6dO8eSTT8aECROy1OrIdO3aNe6888647LLL4iMf+Uhs2rQp15UAAAAAyCKLAwCAJunHP/5xWvlcb/EGOBKrV6+OadOmxd69ezMyr3379lFa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s9QEID319fWxYMGCePDBB2Pjxo0ZmdmrV6+4/PLL47TTTvOmBAAAAAAAAABIU21tbfzv//5vyvmSkpK44oorstio+aurq4vPfe5zce6558bKlSuzetaCBQti/Pjx8cgjj2T1nH/11FNPxaWXXhq9evWKa665Jp566qmoqalp0A4REW+++WZcffXVcdppp8XMmTMb/PyjtXLlyhg1alR85zvfycjDOQ4lmUzGz3/+8ygtLY3169dn7ZwjUV5eHiNGjIgrr7yywW/g37t3b/zv//5vjBs3LsaMGdNg586bNy/GjBkTl19+eVRWVmb9vOrq6rjzzjvjlFNOiTvuuCOtRTIAAACNkcUBAECTcu+996aVv/jii7PUBCB127Zti8ceeyxmz56dkc3nrVq1ikmTJsWFF14YHTt2zEBDAAAAAAAAAGh5Kioq0rpR+Jprron8/PwsNmredu7cGRdccEHaD485Gnv37o3JkyfHH//4xwY78xvf+EY89thjWb3ZPR1LliyJSZMmxc033xzJZDLXdVIybdq0GD16dCxatKjBzpw7d26UlpbGhg0bGuzMQ9m5c2d88IMfjNNPPz0WLFiQ6zqxbNmyrJ9RU1MTn//852P06NExd+7crJ/3r3bt2hXXX399nH322bF169YGPx8AACBTLA4AAJq1goKCXFcAWrj6+vp4+umnY/PmzRmZ17dv35gyZUoMGjQoEolERmYCAAAAAAAAQEv05JNPppV/3/vel6Umzd/u3bvj7LPPjmeeeabBz66vr48Pf/jD8fzzzzf42Y1FXV1d/Od//mdcddVVjWahwaG8+OKLcfbZZ8eWLVsa/OwVK1bEOeecE3v27Gnws/+msrIyhg8fnvZDlpqyN998MyZOnBi33XZb1NfX57TLX/7ylxg1alS88sorOe0BAABwpCwOAACajKay7RjgH+Xl5cW4ceOOek5hYWGcccYZcd5550W7du0y0AwAAAAAAAAAWrY//elPKWfHjRsXJSUlWWzTfO3fvz8uvvjiqKyszFmHAwcOxAc/+MHYuHFjzjo0Bvfee29cfvnlUVdXl+sqBzV37ty4+OKLY//+/TnrsGjRorjuuutycvaDDz4YEydOjJUrV+bk/Fx46aWXYuTIkTn9/eFfrVq1Ks4444xYuHBhrqsAAACkzSN4AYAmY/Xq1WnlBwwYkKUmAOkpKSmJkpKSI/6hXklJSUyYMCGKiooy3AwAAAAAAAAAWqbXX389XnvttZTzF110URbbNG9XX311vPjiiyllO3ToECNGjIj+/ftH7969o7i4OPLz82Pv3r2xbt26WLZsWVRWVsa+ffvS7rFp06b45Cc/GY8++mja1zYnTzzxRHzhC1+I2267LddV/sn69evjPe95T+zevTulfElJSQwZMiRKSkqiS5cuUVxcHAcOHIhdu3bFqlWrYv78+fHqq68e0QOL7r777rjsssvi0ksvTfvaI/XLX/4yrr322qivr2+wM3Nt9uzZcd5558WOHTtyXeVttm7dGu9+97tj6tSpMWjQoFzXAQAASJnFAQBAk3Hvvfemlf/FL36RpSYA6ZswYUKsX78+qqurU76mbdu2MXHiRE8sAAAAAAAAAIAMmzp1alr5008/PTtFmrlf/vKXcc899xw206tXr/jQhz4UV1xxRQwfPjzy8vIOm6+pqYk///nP8dOf/jSee+65tPo89thj8cILL8SZZ56Z1nXZkEgk4uSTT44RI0bEwIEDY8CAAdGnT5/o3r17dO3aNdq0aRNt2rSJ6urq2LlzZ+zcuTN27NgRixcvjnnz5sXcuXNj/vz5ceDAgbTPvv3222P8+PFx5ZVXZuEzS19dXV184AMfiM2bNx82N2HChLjqqqvikksuiV69er3j3A0bNsS9994bP/7xj2Pt2rVpdfrSl74U559/fhQWFqZ13ZH4/e9/H9dcc80RX5+XlxcjR46MCRMmxKhRo6KkpCSOP/74aNeuXRQXF0d9fX3s27cvduzYEevWrYtVq1bFokWLYsGCBTF9+vTYuXNnBj+b1CxcuDDOPvvslBdF/KsBAwbEmWeeGaNGjYoBAwbEcccdF507d462bdtGXV1d7NmzJ9asWROvvfZaTJ8+Pf785z/H8uXL0zpj69atcemll8acOXOiY8eOR9QTAACgoSWOZIMeAOlLJBLjImLGP742Y8aMGDduXI4aQdMzfvz4qKmpSTk/d+7cLLYBSN/y5cvjr3/9a0rZk046KcaPH98gP3wEAAAAAADg6K1ateptTz9u27Zt9OvXLzeFADis66+/Pu64446Usu3atYvt27dHQYFntkVEvPjii3HGGWe8Y+7444+PTZs2ve2/j3/TtWvX+Pa3vx0f//jHj/j9Ec8++2xcffXVsWbNmpSvGT16dMyePfuIzkvFqFGjYt68eQf92MknnxznnXdenHfeeTFu3Ljo0KHDUZ21ZcuWuPvuu+NXv/pVLFmyJK1rjznmmFiyZEl069btqDoczkc/+tH47W9/+465QYMGxdKlSw/58YkTJ8YPf/jDI37PbXV1dXz729+OW265Jerq6lK+7mc/+1l86lOfOqIzU1VeXh7nnHNOWu+N/Jv+/fvHddddF1deeWX07t37iM6vr6+P+fPnx+OPPx6PPfZYzJ8//22Zjh07xo4dO45o/sFs2rQpRo8eHatXr07rus6dO8cnPvGJuPrqq2PgwIFpnzt79uz44Q9/GI888kikcx/NBRdcEE8++WTa5wEAQEvT3L9HPnPmzBg/fvy/vjw+mUzOzEWfQzn8OkYAgEbkSL4xDtCYnHjiidG3b9/DZoqLi+O8886LM844w9IAAAAAAAAAAMiSQ93YfTDvete7LA04AqtXrz7k0oBLLrkkXn311fjUpz51VO+POOecc6KysjJGjBiR8jVz5syJGTNmvHMwQ44//vi46aabYtGiRbF06dL40Y9+FOeee+5RLw2IiOjWrVt84QtfiMWLF8eDDz4YPXv2TPnazZs3x1e/+tWj7pAJh1oa0Lp16/jpT38aFRUVR/WgrsLCwvjOd74Tjz76aLRp0ybl62677ba0bjBP19q1a+O9731v2u+N7NWrV/zud7+LZcuWxQ033HDESwMiIvLy8mLEiBHxzW9+M15++eV45ZVX4otf/GJ07tz5iGceTl1dXVx++eVpLQ1o1apVfOUrX4mVK1fGrbfeekRLAyIixowZEw899FBUVFSkNeNPf/pT/OY3vzmiMwEAABqaxQEAQLOUrW9aAxyNRCIRkyZNilatWh3044MGDYopU6bEcccd18DNAAAAAAAAAKDlqK+vjwULFqScHzx4cBbbtDxf+cpX4pFHHsnYk+579OgRzzzzTPTv3z/la+68886MnH047373u+PRRx+NFStWxHe+852sfx1dfvnlsXTp0vjQhz6U8jW/+c1v0n7qe0Pp3LlzlJeXx6c//elIJBIZmXnhhRfGvffem/K8ZcuWxYsvvpiRs/9VMpmMj3/847Ft27a0rvvwhz8cS5cujauuuiry8/Mz3uvUU0+N//qv/4o1a9bEHXfc8Y4PSUnXrbfeGtOmTUs5P2jQoKisrIzvfe970bFjx4x0mDhxYsydOzcuu+yylK/54he/GJs2bcrI+QAAANlkcQAA0CSUl5enlb/++uuz1ATg6LRr1y7GjBnzT6916NAhLrzwwpg0aVK0bt06R80AAAAAAAAAoGVYvXp1VFVVpZy3OCBzbrrppvje976XsRvB/6Zbt25x7733pnwj9WOPPZb2U95TdfbZZ8fMmTPjhRdeiEsuuSQrN3cfSqdOneLuu++Om266KaX8gQMH4tZbb81yq/R16NAhnn/++Rg7dmzGZ1922WXxmc98JuX8/fffn/EOERE///nP47nnnks5n5eXF7fddlv89re/zdgN9IdTXFwc1113Xbz++uvx4x//OCMzly5dGt/85jdTzp955pkxc+bMGDp0aEbO/0ft2rWLBx54IK666qqU8tu2bYvvfOc7Ge8BAACQaRYHAABNwk9/+tO08ueee26WmgAcvUGDBkWvXr0ikUjEkCFDYvLkydG7d+9c1wIAAAAAAACAFmHNmjVp5U855ZQsNWlZpkyZktUbb0ePHh0f+9jHUsru3Lkz/vKXv2Slx/e///2s3PCeju985ztx9dVXp5S95557orq6OsuNUpdIJOL3v/99jBgxImtnfPvb346uXbumlH300Uczfv6uXbvi61//esr5RCIRd911V3z2s5/NeJd30rp16/joRz+akVmf//znU/5aO/300+OJJ57I6pKE/Pz8+PWvfx1nnnlmSvm77ror1q9fn7U+AAAAmWBxAADQJLzxxhtp5QsLC7PUBGiJkslkRuclEokoKyuLiy++OMaNGxcFBQUZnQ8AAAAAAAAAHFq6iwOOPfbYLDVpOfr06RO//OUvs37OTTfdFHl5qb1Fvry8PMttcuv222+Pk0466R1zO3bsyMrN8Ufquuuui4suuiirZ3Ts2DHlm/A3btwYy5Yty+j5P/jBD2Lr1q0p57/3ve/Fxz/+8Yx2aGgVFRXx7LPPppTt379/PProo9G2bdsst4ooKCiI++67L3r06PGO2f3798ePfvSjrHcCAAA4Gu5OAQAavUzfsAuQjr1798bUqVNj4MCBUVJSkrG5HTp0iA4dOmRsHgAAAAAAAByNurq6qKury3WNw8rLy8vIUu7a2tqor6/PQKPsyc/Pj/z8/KOec+DAgUb/vouW9LkWFBSkfEMz2bV27dq08j179sxSk5bjxz/+cYO8T6Jfv35x9tlnxzPPPPOO2alTp2a9Ty61bds2fvCDH8R73/ved8w+9thjceWVVzZAq8Pr2bNnfP/732+Qs66++ur41re+ldKfCf723qFM2LFjR9x2220p5y+55JK48cYbM3J2Ln3ta19LKZefnx/3339/dOzYMcuN/k/Xrl3jjjvuiClTprxj9u67747vfe970apVqwZoBgAAkD6LAwCARu+WW25JKz9mzJgsNQFakmQyGcuWLYtZs2ZFTU1NbN68OXr37h2FhYW5rgYAAAAAAAAZN3/+/Jg3b16uaxzWwIEDo6ys7KjnTJ8+PeNPDs60kSNHxsiRI496znPPPZf2DdINrbS0NE4++eSjnvPoo4/G9u3bM9Aoe84///zo27dvrmsQEevXr0852759+ygqKspim+Zv2LBhcfnllzfYeZdffnlKiwMWLFgQyWQyEolEA7TKjcsuuyz69+8fK1asOGzuL3/5S6P4/+LGG2+Mdu3aNchZvXv3jrFjx8aMGTPeMfvyyy9n7Nzf/OY3sXfv3pSynTp1ijvvvDPn/1yO1oIFC1Je1PG5z30uRowYkeVGbzd58uQYPXp0zJkz57C5TZs2xRNPPJHSQg4AAIBcsLYUAGj0HnroobTyX/nKV7LUBGgpdu/eHU899VRUVFRETU1NRETs27cvpR8UAgAAAAAAAACN2+7du1POHnPMMVls0jLccMMNDXrj89lnn51Sbs+ePY1+uUomvO9973vHzFtvvRWLFy9ugDaH1r59+7jmmmsa9MxUv1ZeffXVjJ155513ppy9+eabo0ePHhk7O1d+8YtfpJRr37593HTTTVluc2g33nhjSrlHHnkky00AAACOnMUBAECzc+yxx+a6AtBEJZPJWLRoUTzwwAOxbt26t318+fLlsWbNmhw0AwAAAAAAAAAyZd++fSln27Ztm8UmzV/79u1j8uTJDXpmv379onv37illly1bluU2uffud787pdz8+fOzW+QdTJkyJYqLixv0zDFjxqSUy9TXSWVlZcpLCHr16hX/9m//lpFzc6m6ujruueeelLLXXnttdOnSJcuNDu3iiy9O6feOZ599NpLJZAM0AgAASJ/FAQBAozZr1qxcVwBaiB07dsTjjz8eM2bMiNra2kPmKioqoqampgGbAQAAAAAAAACZlM7igMLCwiw2af7OPPPMKCoqavBzTznllJRy69evz3KT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nHPOOTF+/PgYM2ZMdOrUKa1ZyWQyVq5cGVOnTo3y8vJ48cUXY+XKlWl3IvM+/elPx3//93+n9UCNe+65Jx555JH48Ic/HNdcc00MGzbsHd9PU11dHTNmzIh77rkn7rvvvtizZ89h861atYrf//738d73vjflXjSsu+++O1avXh2VlZVpXVdZWRmXXnpplJSUxJVXXhkXX3xxjBw5Mlq3bp3yjDfeeCOmTZsWL774Yjz11FPx1ltvpVv/iFx77bWxbt26+Pa3v53Wda+88kpcddVVcf3118ell14a559/fpSVlUX37t3T7rB9+/ZYvHhxzJ49O2bNmhVTp05tsM8fAAAgmywOAABy6o033kgr37dv3yw1AVJVV1cX8+fPj5dffjnq6+vTvn7z5s3xyiuvxNChQ7PQDgAAAAAAAAAgsz796U9Hp06d4pprromqqqojmpFMJmPWrFkxa9asiIhIJBLRu3fvKCkpiX79+kX37t2jqKgoioqKorCwMKqqqmLPnj2xZ8+eWL9+fbz++uvx+uuvx759+zL5qZEhnTp1iu9973tx7bXXpnVdVVVV/PznP4+f//zn0aFDhxg7dmz0798/OnfuHJ06dYr6+vrYs2dPrFmzJpYvXx4vvfRSWk9b/9a3vhUjRoxI99OhAbVt2zYef/zxKC0tjeXLl6d9/cqVK+OWW26JW265Jdq0aRNDhgyJE044IY477rho3759FBUVRX19fezfvz+2b98e69evj1WrVsWSJUti9+7dWfiMUnPzzTfH1q1b42c/+1na127fvj1+/etfx69//euIiOjdu3cMGjQojj322Ojdu3cUFxdHmzZtIplMRnV1dezfvz+2bt0ab731VmzcuDGWL1+e1sNyAAAAmhKLAwCAnPrjH/+Y6wpAGjZv3hzl5eWxbdu2o5ozd+7c6NevX3Ts2DFDzQAAAAAAAAAAsucDH/hAnHbaaTFlypR49dVXj3peMpmMdevWxbp162LatGkZaJieI3lCN4d3zTXXxOOPPx5/+tOfjuj6Xbt2xbPPPpuxPh/96EfjK1/5SsbmkT09e/aMqVOnxllnnRWLFi064jn79++PysrKqKyszGC77PnpT38a3bp1i5tvvvmo5qxfvz7Wr1+foVYAAABNW16uCwAALVtNTU2uKwApqK2tjdmzZ8ejjz561EsDIiLq6uri9ddfz0AzAAAAAAAAAICGceqpp8bcuXPjIx/5SK6rHLGSkpJ45JFH4qtf/WquqzQ7iUQi7r777hg4cGCuq8QFF1wQd911V65rkIYePXpEeXl5lJWV5bpKg/rWt74Vv/rVr6JNmza5rgIAANAsWBwAAORMXV1dWvm+fftmqQlwOBs3boyHHnooFixYEMlk8qjntW3bNs4666wYMWJEBtoBAAAAAAAAADSc4uLi+M1vfhN//etf49RTT811nZR169Ytvv/978eSJUvi0ksvzXWdZqtLly7x/PPPR0lJSc46fOhDH4qHHnooCgoKctaBI9OlS5d44YUX4sYbb4xEIpHrOg3m4x//eFRWVsZpp52W6yoAAABNnsUBAEDOzJkzJ638Jz7xiSw1AQ7mwIEDMX369HjiiSdi586dGZl50kknxZQpU+KEE05oUT/cAgAAAAAAAACal9NPPz3mz58ft99+e/Ts2TPXdQ6pe/fu8YMf/CBWrVoV//Ef/+Gp3g3g2GOPjZkzZ8bo0aMb9Ny8vLz43ve+F3fffXcUFhY26NlkTn5+ftxyyy3x/PPPx8knn5zrOg3m1FNPjTlz5sQ3v/nNKC4uznWdg+rTp098/vOfz3UNAACAw7I4AADImalTp6aVnzBhQpaaAP9q3bp18eCDD8bixYsjmUwe9bzi4uI477zz4owzzvADaAAAAAAAAACgWcjPz4/rr78+Vq9eHb/+9a9jyJAhua70d5MmTYp77rkn1qxZE1/+8pcb7Y24zVWPHj2ioqIivvSlL0VeXvbfsv+ud70r5syZE1/5yleyfhYN493vfncsXLgwfvCDH0TXrl1z0iE/Pz8uueSSuO+++xrkvMLCwvjP//zPWL58eVx99dXRunXrBjn3cIqLi+PKK6+MJ554IlavXh1f+9rXcl0JAADgsCwOAAByZsOGDWnlO3funKUmwN9UV1dHeXl5/OlPf4rdu3dnZOagQYNiypQpcdxxx2VkHgAAAAAAAABAY9K6dev46Ec/GgsXLowXX3wxPv3pT0evXr0avMewYcPi29/+drz66qtRUVERH/jABxrFjbctVWFhYdx6660xd+7cOOecc7Jyxqmnnhq/+tWvYtasWTFy5MisnEHutGrVKr785S/Hm2++GT/5yU/ixBNPbJBz+/fvHzfffHO8+eab8eijj8a5557bIOf+Ta9eveKuu+6KNWvWxLe//e049thjG/T87t27x4c+9KG4//77Y9OmTfHHP/4xLrzwwsjPz2/QHgAAAEcikYmnhwLwzhKJxLiImPGPr82YMSPGjRuXo0aQe6NGjUo5W1RUFBUVFVlsA6xevTqmTZsWe/fuzci89u3bR2lpafTp0ycj8wAAAAAAAKAxW7VqVezbt++fXmvbtm3069cvN4UAyKn6+vqYPn16PP300zFz5syYO3duxh7i8DfHHXdclJWVRVlZWZx55pn+m9PIzZ8/P+688854+OGHY9OmTUc8p1evXnHOOefEhz70oTjzzDNTuuaee+5J6evvgx/8YLRv3/6Iu5F9lZWVcf/998cTTzwRy5Yty8jMdu3axRlnnBHnnntunHPOOXHSSSdlZG6mJJPJmD17djz22GPxpz/9KRYvXhz19fUZm9+nT58YM2ZMTJo0KUpLS2P48OGRSCQyNh8AAFqK5v498pkzZ8b48eP/9eXxyWRyZi76HIrFAQANxOIA+GcHDhxI6+v/3HPPje9+97tZbAQt1759+2LGjBmxYsWKjMxLJBJx6qmnxqhRo6JVq1YZmQkAAAAAAACNXXN/UyQAR6e+vj4WL14cr7zySqxcuTJWrVoVq1evjvXr18eePXuiqqoqqqqqYt++fZGXlxdt27aNNm3aRPv27aNnz57Rq1ev6NOnTwwYMCAGDx4cp556anTr1i3XnxZHoL6+PiorK2PmzJnx0ksvxYoVK2LNmjWxY8eOv/9Zori4ONq1axcdOnSIkpKSGDBgQJx88skxbty4OO2003L8GdBYbN269e9fR2+88UasWrUq1q5dG7t37469e/fGvn37onXr1tG+ffto165dtG/fPjp27BglJSUxaNCgOPnkk+Pkk0+OE088MQoKCnL96aRsz549MW/evJg3b168/vrr8eabb8aaNWti69atf/99tLq6OgoKCqKwsDCKioqiS5cu0a1bt+jZs2eUlJRESUlJDBw4MIYOHRpdu3bN9acEAADNQnP/HnlTWRzQdP52BwA0Ky+//HJa+auuuipLTaDlSiaT8cYbb8T06dNj//79GZnZqVOnKCsrix49emRkHgAAAAAAAABAc5CXlxdDhgyJIUOG5LoKOZaXlxdjxoyJMWPG5LoKTVzXrl3jwgsvjAsvvDDXVRpUu3btoqysLMrKynJdBQAAoNGxOAAAyIk//OEP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+eef95gZOnSoihcv7n4ZByQmJjq2yVv6ZQgBgwPypuTkZMXExGjOnDlZPkdQUJDat2+vgQMHqnv37ipdurTHYyIiIhQRESFJqlKliq6//vo/Pf7bUJqZM2dq+fLlysjIyHI/IDeaNGmS7QEyERERevTRRzVy5EgVKFDgb4+HhIQoPDxcZcuWVfv27fXoo49q//79evbZZzVt2jRbAwSGDx+uRo0aqWbNmrY65gY///yzhg0blqWBWm3bttVDDz2kXr16KTAw8KqZ336foqKiVLduXfXo0UOSdOHCBf33v//V+++/r6NHj9paNy4uToMHD9bKlSu56SH81qhRo/Tuu+9muk9n5cqVWrJkiTp27OjFZoDEMycAALBsw4YNtvKGYbjUBFacP39es2bN0qZNmxyZ5hwSEqKwsDAHmgEAAAAAAAAAAAAAAAB5i2EYKlCggMqXL6/69eurc+fOGjNmjObMmaPTp09r5syZateuXZbOnZKSomHDhiktLc3Z0llw5MgRtW3bNktDAwICAjR06FAdOHBA8+fPV//+/T0ODchM8eLFddddd2nDhg3atm2bunXrlqXzLFq0SD179lRSUlKWuzhl9uzZuummm7I8NKBDhw5auHChjh49qn//+99q2bKlpaEBnkRGRqpr1656++23dfz4cS1cuFC33nqrgoK4z+HVLF++XGvXrvWYu/fee73QxhkzZ87U5cuXPeasbv5bunRploePIOe6cuWKbrzxxiwPDShSpIieffZZnTx5UgsXLtRdd91laWiAFTVr1tS9996rJUuW6NixY3rzzTdVuXJlR84N5HRHjhyx/TWrRYsW2rNnj5577rmrDg24lipVqmjq1KlasmSJSpYsafm4hIQE3XLLLY68pz6neeaZZ3T27FlbxxQrVkyzZs3S8uXL1bdv32sODchMkSJF9Pjjj2vfvn169NFHbQ8AWLNmjSZNmmR7XW8rVKiQOnTooNGjR/u6it+pVKmSYmJi1KtXL19XcUW5cuV04403esy9/PLLXmgD/BmDAwAAgCvKly/v6wp5Vnp6ujZt2qSvv/46W5PI/6hChQqKiYlRtWrVHDkfAAAAAAAAAAAAAAAAgF8EBgaqX79+WrZsmVauXJml917t3LlT7733ngvtrIuLi1P37t115MgR28e2bNlS27dv14QJExQdHe14twYNGui7777T4sWLs7TRc9GiRbrrrrsc72XH+vXrNXDgQCUnJ9s+tnnz5tqwYYOWLFmiG264wdWbAgUGBuqGG27QlClTtH//fj3wwAPKnz+/a+vlRK+88orHTIsWLVS3bl0vtHGG1btM33777SpbtqzHnGmamjBhQnZrIQcxTVO33367lixZYvvYsLAwvfjiizp69KjGjh2r4sWLu9Dwf8qUKaNRo0Zp7969mjZtmho2bOjqeoC/e/jhh20NNbr55pu1YsUKRUVFZXnN9u3ba+vWrapevbrlY3bs2OHz18veduDAAY0bN87WMc2bN9f333/v2GbvkJAQvf7661qyZIkKFixo69jnnntOqampjvRwwh+HBEybNk379+/XxYsXtWTJEr322mu+rudTvw0JeOWVV7R48WJduHBBBw4c0PTp09W7d29f13PNPffc4zGzZMkSbdmyxQttgP9hcAAAALDE7rTkEiVKuNQEmTlz5oy++uorbdu2TRkZGdk+X2hoqDp27KjOnTsrPDzcgYYAAAAAAAAAAAAAAAAArqV169basWNHljZXvP7660pJSXG+lAWmaWrQoEHavXu3reMCAwP13HPPaeXKlV7ZJN2xY0dt27ZNt99+u+1jp06dqjfeeMOFVp4dOXJEvXv3tv0+vgIFCui9997T2rVr1axZM5faXVuFChX07rvvav/+/Ro0aJDX1/dH27dv14IFCzzmhg8f7oU2zjhw4IBWrFhhKXvnnXda/vv36aefOvI+SOQMTz75pL766ivbx91www364YcfNGbMGK+/zzUwMFADBw7U1q1b9fnnn2drEzSQU82fP1+zZs2ynO/du7cmT56s4ODgbK9dpkwZLV26VBUrVrR8zLPPPquzZ89me+2c4v3331daWprlfI0aNfTdd9+pdOnSjndp166dZs2apXz58lk+5ujRo5o9e7bjXaz465CAffv2/WlIwMCBA7M0kCw3+OOQgEWLFv1pSMDjjz+ujh07qnDhwr6u6RXdunWzNPjv1Vdf9UIb4H8YHAAAACzZuHGjrXy7du3cKYKrSk1N1bp16zR79mxdvHjRkXNWrlxZMTExqly5sqsTpgEAAAAAAAAAAAAAAAD8T6FChTR9+nR16NDB1nEnTpzQtGnTXGqVueeee872pp78+fNrzpw5ev755xUYGOhSs7+LjIzUpEmT9Pbbb9t+X9QTTzyhhQsXutTs6hISEtSjRw+dOXPG1nHVq1fXhg0bdN999ykgwLfbBkqXLq3Jkydr9erVql+/vk+7+Nrbb7/tMVOoUCENGDDA/TIOmTBhgkzT9JirWLGiWrduraFDh1o675EjR7J093nkPJMmTbK9oc4wDD377LNasGCBKlWq5FIz626++Wb9+OOPevLJJx3ZEA3kFI899pjlbLVq1TR58mQFBQU5tn6ZMmU0Y8YMhYSEWMrHxsbqX//6l2Pr+7O0tDR99tlnlvMRERGaN2+eihQp4lqndu3a6eOPP7Z1zMSJE90p8wdXGxJw4cKFPw0JqFKlius9/JGnIQGdOnXKM0MCriYgIEDDhg3zmPvqq6909OhRLzQCfsHgAAAAYMn69ett5WNiYlxqgr86efKkvvzyS+3cudPSD989yZ8/v7p06aKOHTsqLCzMgYYAAAAAAAAAAAAAAAAA7AgODtaXX36patWq2Tpu6tSpLjW6trVr19regFW4cGEtXrxY3bp1c6mVZ//4xz80adIkW5vX0tPTNWTIEMdu7mLF6NGj9cMPP9g6plOnTtqwYYNq1KjhUqusuf7667Vx40aNGjUqT97M5ueff7Y03GPw4ME55r17GRkZ+vTTTy1lBw8eLMMwVL16dTVv3tzSMePHj89OPeQABw8e1H333WfrmHz58mnmzJkaO3asXz2XhIeH66WXXtKaNWvy7F2okbd899132rlzp6VsQECAPv/8c0VERDjeo3HjxnrxxRct5z/55BOdP3/e8R7+ZuPGjTp79qzl/KhRoxQdHe1eoV8NHjzY8usASVq6dKlSUlJc6dKnT59rDgnwp68vvjBu3DiGBFh01113efyeMj09Xe+//76XGgEMDgAAABZNnz7dVt6bE6DzqpSUFK1atUrffvutLl++7Mg5q1evrpiYGFWoUMGR8wEAAAAAAAAAAAAAAADImkKFCumNN96wdczSpUt16dIldwpdRXJysu666y5lZGRYPiY0NFTffvutWrRo4WIzawYNGmR7A8fp06c1atQolxr92eLFi/Xhhx/aOqZ9+/aaPXu2ChYs6FKr7AkJCdGbb76p7777TiVKlPB1Ha/6+OOPlZyc7DF39913e6GNMxYsWKDjx49byg4ePPj3/z9kyBBLx8yaNcurgzrgXaZp6o477lBCQoLlY4KDgzVjxgz17dvXxWbZ07RpU23btk2DBg3ydRXAVa+88orl7N13361GjRq51uXhhx9W9erVLWWvXLmi//znP6518RfLli2znC1atKgeffRRF9v82auvvmo5e+XKFds3wbSqQoUKDAm4hsaNGzMkwKIyZcpYGoj3ySefKDEx0QuNAAYHAAAA5EhHjx7VjBkztGfPHkfOFxkZqe7du6tt27bKly+fI+cEAAAAAAAAAAAAAAAAkD033XSTGjdubDmfmpqqVatWudjoz/75z3/qxx9/tJwPCAjQZ599ppYtW7rYyp67775bTz31lK1jJk6cqEWLFrnU6BeXL1/WXXfdJdM0LR/TvHlzzZkzJ0fcrb5r167atGmT6tSp4+sqXmGapj755BOPuZo1a+aoazJ+/HhLuVatWqlSpUq///fNN99s6b2KSUlJmjp1apb7wb/95z//0cqVKy3nDcPQlClTdNNNN7nYyhmRkZGaPHmyXn/9dTakIlfavn275decYWFheuGFF1ztExwcbGuQwQcffKC0tDQXG/ne9u3bLWdvvPFGRUZGulfmL9q2bauyZctazn///fcutgGyb8CAAR4z58+f18yZM73QBmBwAAAAcAGTxdyTlJSkZcuWaf78+bYmrGamdu3a6t+/v6Kiohw5HwAAAAAAAAAAAAAAAADn2L27vVt35Pyrw4cP6/XXX7d1zOjRo9WvXz+XGmXdiy++qI4dO9o65sEHH1R6erpLjX65E+vRo0ct54sVK6aZM2cqPDzctU5OK1++vFavXq1OnTr5uorrFi9erMOHD3vM9e/f3/0yDjl//rxmz55tKTtkyJA//XfhwoUtb/4eN26c7W7wf+fPn9ezzz5r65jHHntMMTExLjVyx6OPPqoZM2Yof/78vq4COGrSpEmWs0OHDlXx4sVdbPOLXr16qVq1apayP//8s+bPn+9yI9/at2+f5WzXrl1dbJL9Ne18LoAv9OzZUyEhIR5zVgaJAU5gcAAAAPDowoULtvL+NA06Nzl48KBmzJjh2De+BQsWVM+ePXX99dcrODjYkXMCAAAAAAAAAAAAAAAAcJbdDe1bt251qcmf/fOf/1RqaqrlfKNGjVy/22xWGYahTz/91NZNc/bu3aspU6a40uf06dN65513LOd/uwt3Trx5TMGCBTVv3jxVqVLF11VcZXXze04aHDB58mSlpKR4zIWFhV31Lqx/HSZwLdu2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/O7KlSu28gMGDHCpSda1aNFCYWFhto8rW7as+vfvrzp16sgwDBeaAQAAAAAAAAAAAAAAAIB9r7/+ugICrL3t++LFi3rjjTdc69KlSxfly5fPct7pu317y6lTpzRv3jzL+ebNmztyI56ePXtazh4/flzLli3L9ppwnmEYqly5sqWsr++cm1P/jtrh5OdYqlQpBQcHW8qmpqbauuuzNx05ckRpaWmWsiEhISpZsqQj63bq1MnWe3wnT57syLoAnNO4cWPLWTub9522ZcsWy9ncNjggMTHRcjYr+y6clj9/fstZO58b4Eupqak6c+aMpWyVKlVcboO8iMEBAADgd7t27bKVb9KkiUtNsi40NFTXX3+95XxISIjatGmj7t27q0CBAi42AwAAAAAAAAAAAAAAAAD7atWqpdtuu81y/p133tG5c+dc6VKoUCH17t3bcn737t2aP3++K13c9N577yklJcVy/o477nBk3SFDhti68c2bb77pyLpwntWNlbt373a5ybXt2LHDp3eD9pZJkyYpPT3dkXMFBQWpRo0alvPbtm1zZF2nbd++3XK2Zs2aCgwMdGTd8PBwWzctW7VqlTZt2uTI2gCccd1111nOrly50sUm15aamqp169ZZyoaGhqp+/fouN/IuO8/ZVofIuCk1NdVyNiQkxMUmgHN+/PFHZWRkWMr6474s5HwMDgAAAL9bsGCBrbyd6W7eVKlSJVWsWNFjrnz58oqJiVGNGjVs/WMLAAAAAAAAAAAAAAAAAHjT888/r6CgIEvZ+Ph4vfbaa651GTZsmK38v//9b5eauCMxMVEfffSR5Xx4eLhuueUWR9auVKmSbrjhBsv57777Tjt37nRkbTiradOmlnLff/+9y02ubdy4cZazzz77rEzT9KtfVgd2nDx5UvPmzcvqZfqbevXqWc5u3LjRsXWdZGczvtMbaocPH24r/+qrrzq6PoDsadmypeU9BCtWrLC1Kdwp69atU3x8vKVs69atFRoa6nIj77Kzx8PqdXKTnQ7+un8F+KsdO3ZYyhUoUEDVq1d3uQ3yIgYHAACA3508edLXFRxz/fXXK1++fFd9LDQ0VB06dFCXLl0UHh7u5WYAAAAAAAAAAAAAAAAAYE+lSpV0++23W86/9957Onv2rCtdOnbsqOjoaMv5RYsWaenSpa50ccObb76pc+fOWc4PHDhQkZGR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0cL2saZpaurUqapfv7569OihL7/80pW7cycmJmr69Onq1auXypcvr1deeUWxsbbejp0rWb2z8cyZM13r8P3332vz5s2W84MGDXKti1vsdP7000+VkZHhyLq333675aEFvzl79qwGDBigDh06aOHChY70+M2iRYvUoUMHDRgwQGfPnrV1bN++fX16J+6YmBhNmjRJQUFBto89cuSI7r33XlWsWFHPP/+87Y2pVu3Zs0fPPPOMKleurB49ejAwAJB033332Xp9cu7cOXXo0EHPP/98ll6PHDt2TH379tWoUaNsPZc/8sgjql+/vu31cqqIiAjbw20kaffu3WrWrJn+8Y9/6MyZM9nu8eOPPyomJkY9evSw/XUpKChIH374YbY7eBIdHS3DMLL9y6ojR444sl67du3cuyiSli9f7kjPO+64w/KaY8eOdWTNiRMnundhrmHjxo06evSox1yXLl1UuHBhLzRCXsbgAORFz0nK7DvJC5IGmqZ5JSsnN00zQdIASZcyiQVJejYr5/eVXwcu3Owh9qZpml9ldQ3TNGdIettD7BbDMGpkdQ0AV/fll1/ayjdq1MhjxjRN7dy5UzNnztSpU6eyWk3x8fHauNHTPBYAAAAAAAAAAAAAAAAAyHuio6M1ZMgQy/lJkybpwIEDrvUxDEPvvfee7rvvviwdn5CQoH//+9+qXr262rZtq9dee01bt261fCdZ6ZcBCatXr9Zzzz2nBg0aqHnz5po4caLS0tJs9/ltaMCtt95q+1g3FCpU6PdNwVlhmqbmzp2r/v37q0SJEho4cKDee+89bd26Venp6bbPl5ycrPXr1+vVV1/VjTfe+Ps5Z8+ezQ2D/qB27dqqV6+ex9yyZct08eJFVzqMHz/ecrZevXqW+vqbrl27qlixYpayx48fd3TD/qRJk1SrVi3bxy1btkxdunRRtWrV9OSTT2r16tW2N9EmJSVpzZo1euqpp1SjRg117txZy5Yts92lbt26Ptlk91e33XabZsyYoXz58mXp+NOnT2vs2LGqWbOm6tevryeeeELffPONfv755yyd78SJE/riiy903333qXbt2qpVq5ZefPFFHTx4MEvnA3KjwMBATZs2TUWKFLF8THp6usaOHauqVavqjTfe0MmTJz0es3XrVj300EOqVq2avv7a3v1Or7/+ev3rX/+ydUxuEBMTo5iYGNvH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AAAAAMCDChUq2LpL+eeff64ff/zRxUb/U7duXW3fvl3PP/+88uXL55U1s6JEiRKaMmWKvv32WxUpUsTXdSxr1KiRdu7cqZdfflnh4eG+rmNZ8+bNtXjxYn311VeKjo72dR2vuP/++z1mUlJSNH36dMfWPH78uBYuXGg5/9f3iOZEt91m/W3mEyZMcHz9qKgobdiwQcOHD3f83E667777tH79epUpU8bXVTIVFBSk1157TZs3b1arVq18XceyiIgIPf744/rpp59055138n5o5Cn333+/Pv/8c+XPn99nHSpWrKjVq1erefPmPuvgb6KiorRx40ZLg4x85ZFHHtG8efN8+mcHsCsjI0NTp071mGvVqpXq16/vhUYAgwOQt9zk4fG5pmnGObmgaZqXJM3zEPPUy6cMwygqqYWH2DQXlv7cw+PXG4aRc34qC/ixs2fP2sq3a9fu9/9/5swZffnll9q2bZtM08x2l7CwMHXs2FGdO3fOUf+AAQAAAAAAAAAAAAAAAAC+NmbMGAUHB1vKZmRkaOzYsS43+p+QkBA999xz+v7779W9e3evrWtFSEiIRowYoR9//FG33nqrr+tkSUhIiJ544gnt3btXgwcPVlBQkK8rXdP111+v+fPna/369erYsaOv63hV69at1aBBA485J+9MPnHiRGVkZFjKhoWFqV+/fo6t7SuDBg2ynN2xY4e2bNnieIf8+fPrww8/1Jw5c1S5cmXHz58dlStX1ty5c/Xee+8pLCzM13Usa9CggVatWqXPPvvM767pHxUoUEBPPvmkDh8+rFdeeUUFCxb0dSXAJ26++WatXbtWlSpV8vranTt31ubNm1WvXj2vr+3vChQooK+++koffPCBChcu7Os6v6tYsaLmzp2rN954w69fxwJXs3DhQh0+fNhj7qGHHnK/DPArBgcgL+nk4fG5Lq3r6bw3uLSuUzpKymy83VHTNH9welHTNLdLOpFJJEBSB6fXBfKiL7/80la+atWqSk1N1bp16zR79mxdunTJkR5VqlRRTEyMKleuzFRNAAAAAAAAAAAAAAAAALCpfPnyuuOOOyznp0+frl27drnY6O+qVaumuXPnasuWLerXr58CAnz3dvawsDA9+OCDOnDggN9tnsqqsmXL6tNPP9XBgwf16KOP+s2G1fDwcA0bNkxbtmzR6tWr1aVLF19X8pkHH3zQY2bLli2ObGY3TVMTJ060nO/Zs6ciIyOzva6vVa1aVc2aNbOcHz9+vGtdevTooT179uidd95RiRIlXFvHihIlSuidd97Rnj17/G6Aix233XabfvrpJ3355Zdq2bKlr+v8rmHDhvrwww914sQJvfTSSypatKivKwE+V79+fe3cuVNjxoxRvnz5XF+vVKlSmjRpkhYsWKAiRbhPaWZGjBihvXv36r777lNoaKjPehQpUkRjx47Vrl27cvTXJuRtH3/8scdMVFSU+vTp44U2wC8YwYI8wTCM0pJqeogtdmn5RR4er20YRinTNE+7tH52eRrl6dZ1++3cQzJ5vJOkmS6uD+QJ69evt5wNDQ3V2bNntWrVKl2+fNmR9cPDw9WqVStVqFDBkfMBAAAAAAAAAAAAAAAAQF41ZswYTZw4USkpKR6zGRkZev755zVjxgwvNPuzRo0aaebMmdq3b58mTZqkzz//XAcOHPDK2k2bNtWtt96q2267TcWLF/fKmt5Wrlw5vf7663r22Wc1c+ZMzZw5U4sXL7b058IpoaGh6tKli/r166devXqpQIECXlvbn9122216+umnderUqUxzH330kaVNSJm5cOGCBg0aZDnfq1evbK3nT1555RWtWLHCUtbtoSHBwcF66KGHNGLECM2cOVMffvihVq1a5eqaf9SqVSvde++96t+/v0JCQry2rpsCAgLUt29f9e3bV1u3btXnn3+uL7/8UocOHfJqj2rVqqlfv37q37+/GjVq5NW1gZwif/78evHFFzV06FC9+uqrmjJlihITEx1do1SpUhoxYoRGjhzJ6w0bihcvrvfee0/PPvus/vOf/2jy5Mk6duyYV9auXbu27rzzTt1zzz2KiIjwypqAG06dOqU5c+Z4zD388MMKCmIrN7zHME3T1x0A1xmG0UvSrEwix0zTLO/i+icllc4k0tM0Tc9fJXzAMIxtkhpkErnLNE1XxiwahnGPpI8yiWw1TbOxG2u7wTCMFpLW/vFja9euVYsWLXzUCPhFkyZNLOVM01RCQoJGjRrl2No1atRQ8+bNvTJBEAAAAAAAAAAAAAAANx0+fPhvb34PCwtTdHS0bwoBAJDDbNiwQd9++61WrVqljRs3OraprFChQrr++uvVpk0b9e3bV1WqVHHkvDlNbGysvv32Wy1fvlzr16/X7t27lZGR4dj5g4KC1KhR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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Print the confusion matrix and performance metrics for multiple thresholds" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 13, + "source": [ + "cm = onc_calc_cm(\n", + " results.y, \n", + " results.score, \n", + " range_probas=[.10,.20, .30, .40, .50])\n", + "cm" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " threshold sensitivity specificity likelihood_ratio_neg \\\n", + "0.1 0.1 0.992696 0.15179 0.0481217 \n", + "0.2 0.2 0.966781 0.324821 0.10227 \n", + "0.3 0.3 0.921206 0.48065 0.163932 \n", + "0.4 0.4 0.850183 0.612116 0.244753 \n", + "0.5 0.5 0.752661 0.722268 0.342447 \n", + "\n", + " likelihood_ratio_pos tp fp tn fn total_survived \\\n", + "0.1 1.17034 25550 271060 48507 188 319567 \n", + "0.2 1.43189 24883 215765 103802 855 319567 \n", + "0.3 1.77377 23710 165967 153600 2028 319567 \n", + "0.4 2.19185 21882 123955 195612 3856 319567 \n", + "0.5 2.71003 19372 88754 230813 6366 319567 \n", + "\n", + " total_deceased \n", + "0.1 25738 \n", + "0.2 25738 \n", + "0.3 25738 \n", + "0.4 25738 \n", + "0.5 25738 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
thresholdsensitivityspecificitylikelihood_ratio_neglikelihood_ratio_postpfptnfntotal_survivedtotal_deceased
0.10.10.9926960.151790.04812171.17034255502710604850718831956725738
0.20.20.9667810.3248210.102271.431892488321576510380285531956725738
0.30.30.9212060.480650.1639321.7737723710165967153600202831956725738
0.40.40.8501830.6121160.2447532.1918521882123955195612385631956725738
0.50.50.7526610.7222680.3424472.710031937288754230813636631956725738
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 13 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 14, + "source": [ + "#save \n", + "cm.to_csv('./results/2021_lr_confusion_matrix.csv')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "interpreter": { + "hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49" + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3.9.5 64-bit" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/logistic_regression/5_lr_feature_importance.ipynb b/logistic_regression/5_lr_feature_importance.ipynb new file mode 100644 index 0000000..e3c13ad --- /dev/null +++ b/logistic_regression/5_lr_feature_importance.ipynb @@ -0,0 +1,259 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Plot the feature importance from the Logistic Regression model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 4, + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import pickle\n", + "\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n", + "with open('numeric_columns.pickle', 'rb') as f: \n", + " nu_cols = pickle.load(f)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 6, + "source": [ + "# load final model\n", + "with open('./results/2021_final_LR_model.pickle', 'rb') as picklefile: \n", + " logistic_model_final = pickle.load(picklefile)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 10, + "source": [ + "# grab a pandas dataframe of the data from step 1 to get the feature names \n", + "with open('./complete5.pickle', 'rb') as f:\n", + " dataset = pickle.load(f)\n", + "feats = dataset.iloc[0:1,:]\n", + "ff = feats.drop(columns=['usrds_id','subset','died_in_90','impnum']).copy()\n", + "ff = ff.columns\n", + "ff = np.array(ff)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 11, + "source": [ + "def get_most_important_features(r, model, n=5):\n", + "\n", + " # loop for each class\n", + " classes ={}\n", + " for class_index in range(model.coef_.shape[0]):\n", + " word_importances = [(el, r[i]) for i,el in enumerate(model.coef_[class_index])]\n", + " sorted_coeff = sorted(word_importances, key = lambda x : x[0], reverse=True)\n", + " tops = sorted(sorted_coeff[:n], key = lambda x : x[0])\n", + " bottom = sorted_coeff[-n:]\n", + " classes[class_index] = {\n", + " 'tops':tops,\n", + " 'bottom':bottom\n", + " }\n", + " return classes" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 12, + "source": [ + "importance = get_most_important_features(ff, logistic_model_final, 20)\n", + "importance" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "{0: {'tops': [(0.061290827714118645, 'como_htn_2.0'),\n", + " (0.06321524556061506, 'patinformed_2.0'),\n", + " (0.06805699162242364, 'hispanic_2.0'),\n", + " (0.07003767351050381, 'race_1.0'),\n", + " (0.07597390377492767, 'prior_hh_care'),\n", + " (0.07601736487064886, 'typtrn_3.0'),\n", + " (0.07723981684878611, 'avfmaturing_2.0'),\n", + " (0.0988468092906853, 'wasna_weight'),\n", + " (0.10988009779602281, 'dietcare_2.0'),\n", + " (0.11579619767199734, 'trcert_nan'),\n", + " (0.1170796860800267, 'accesstype_nan'),\n", + " (0.1202220267321587, 'disgrpc_6.0'),\n", + " (0.14541424184206928, 'prior_sn_care'),\n", + " (0.1506381696084268, 'gfr_epi'),\n", + " (0.15643030730009827, 'epo_9.0'),\n", + " (0.18395763827142345, 'dietcare_9.0'),\n", + " (0.22723668874424388, 'prior_ip_care'),\n", + " (0.2286510212823167, 'nephcare_nan'),\n", + " (0.5049971681447901, 'inc_age'),\n", + " (1.0108648726225204, 'prior_hs_care')],\n", + " 'bottom': [(-0.06000591053731134, 'como_chf_2.0'),\n", + " (-0.06275920861405501, 'nephcarerange_2.0'),\n", + " (-0.06562813051347575, 'como_htn_1.0'),\n", + " (-0.0663979162067267, 'waitlist_status_active'),\n", + " (-0.06881463120749759, 'disgrpc_4.0'),\n", + " (-0.06885486069354935, 'epo_nan'),\n", + " (-0.07023824128763213, 'empcur_2.0'),\n", + " (-0.07080115087342335, 'patinformed_1.0'),\n", + " (-0.07218580864822566, 'hispanic_1.0'),\n", + " (-0.07356895543898494, 'empprev_2.0'),\n", + " (-0.079597192121037, 'dialtyp_2.0'),\n", + " (-0.08180867968318853, 'typtrn_nan'),\n", + " (-0.09140221394997096, 'wasna_height'),\n", + " (-0.10013821734123818, 'avfmaturing_1.0'),\n", + " (-0.10024958914893292, 'weight'),\n", + " (-0.11951529371611484, 'trcert_1.0'),\n", + " (-0.13380049899167462, 'prior_op_care'),\n", + " (-0.15227098855946808, 'accesstype_1.0'),\n", + " (-0.18145263364940348, 'album'),\n", + " (-0.512442884030342, 'dietcare_nan')]}}" + ] + }, + "metadata": {}, + "execution_count": 12 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 17, + "source": [ + "def plot_important_words(top_scores, top_words, bottom_scores, bottom_words, name):\n", + " y_pos = np.arange(len(top_words))\n", + " top_pairs = [(a,b) for a,b in zip(top_words, top_scores)]\n", + " top_pairs = sorted(top_pairs, key=lambda x: x[1])\n", + " \n", + " bottom_pairs = [(a,b) for a,b in zip(bottom_words, bottom_scores)]\n", + " bottom_pairs = sorted(bottom_pairs, key=lambda x: x[1], reverse=True)\n", + " \n", + " top_words = [a[0] for a in top_pairs]\n", + " top_scores = [a[1] for a in top_pairs]\n", + " \n", + " bottom_words = [a[0] for a in bottom_pairs]\n", + " bottom_scores = [a[1] for a in bottom_pairs]\n", + " \n", + " fig = plt.figure(figsize=(10, 20)) \n", + "\n", + " plt.subplot(121)\n", + " plt.barh(y_pos,bottom_scores, alpha=0.5)\n", + " #plt.title('Survived', fontsize=20)\n", + " plt.yticks(y_pos, bottom_words, fontsize=14)\n", + " plt.suptitle('Key words', fontsize=16)\n", + " plt.xlabel('Importance (coeffecient)', fontsize=20)\n", + " \n", + " plt.subplot(122)\n", + " plt.barh(y_pos,top_scores, alpha=0.5)\n", + " #plt.title('Died in 90 Days', fontsize=20)\n", + " plt.yticks(y_pos, top_words, fontsize=14)\n", + " plt.suptitle(name, fontsize=16)\n", + " plt.xlabel('Importance (coeffecient)', fontsize=20)\n", + " \n", + " plt.subplots_adjust(wspace=0.8)\n", + " plt.savefig(\"2021_top_bottom_plot.svg\")\n", + " plt.show()\n", + "\n", + "top_scores_p = [a[0] for a in importance[0]['tops']]#[20:-1]\n", + "top_words_p = [a[1] for a in importance[0]['tops']]#[20:-1]\n", + "bottom_scores_p = [a[0] for a in importance[0]['bottom']]#[20:-1]\n", + "bottom_words_p = [a[1] for a in importance[0]['bottom']]#[20:-1]\n", + "\n", + "plot_important_words(top_scores_p, top_words_p, \n", + " bottom_scores_p, bottom_words_p, \n", + " \"Feature Importance Logistic Regression\")" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 14, + "source": [ + "top_scores = [a[0] for a in importance[0]['tops']]\n", + "top_words = [a[1] for a in importance[0]['tops']]\n", + "bottom_scores = [a[0] for a in importance[0]['bottom']]\n", + "bottom_words = [a[1] for a in importance[0]['bottom']]" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 15, + "source": [ + "top_coef = pd.DataFrame(columns=['vocab','coef'])\n", + "top_coef['coef'] = top_scores + bottom_scores" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 16, + "source": [ + "top_coef = top_coef.sort_values(by='coef',axis=0,ascending=False)\n", + "top_coef.to_csv('./results/2021_top_log_regression_coef_20.csv')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/logistic_regression/6_logsitic_regression_fairness.ipynb b/logistic_regression/6_logsitic_regression_fairness.ipynb new file mode 100644 index 0000000..c18821d --- /dev/null +++ b/logistic_regression/6_logsitic_regression_fairness.ipynb @@ -0,0 +1,888 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Calculate a fairness assessment of the logistic regression model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 11, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import sys\n", + "import pickle\n", + "\n", + "# add folder with custom functions to path\n", + "sys.path.append('../onc_functions')\n", + "\n", + "from fairness import get_fairness_assessment\n", + "\n", + "import datetime\n", + "dte = datetime.datetime.now()\n", + "dte = dte.strftime(\"%Y\")\n", + "\n", + "print('python-' + sys.version)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 12, + "source": [ + "import psycopg2\n", + "from sqlalchemy import create_engine\n", + "\n", + "con = create_engine('postgresql://username:password@location/dbname')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 13, + "source": [ + "#import only the columns we want to look at in this assessment\n", + "df = pd.read_sql_query('''SELECT usrds_id, died_in_90, inc_age, sex, dialtyp, race, hispanic, subset FROM medxpreesrd;''', con)\n", + "\n", + "#save the dataset\n", + "with open('complete_fair1.pickle', 'wb') as picklefile: \n", + " pickle.dump(df, picklefile)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 14, + "source": [ + "with open('complete_fair1.pickle','rb') as f: \n", + " details = pickle.load(f)\n", + "details.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset\n", + "0 2969676.0 0.0 72.0 2.0 1.0 2.0 2.0 8\n", + "1 2969869.0 1.0 73.0 2.0 1.0 2.0 2.0 9\n", + "2 2970021.0 0.0 55.0 2.0 1.0 1.0 1.0 8\n", + "3 2970067.0 0.0 72.0 1.0 1.0 1.0 2.0 9\n", + "4 2970686.0 0.0 49.0 2.0 1.0 2.0 2.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubset
02969676.00.072.02.01.02.02.08
12969869.01.073.02.01.02.02.09
22970021.00.055.02.01.01.01.08
32970067.00.072.01.01.01.02.09
42970686.00.049.02.01.02.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 14 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 15, + "source": [ + "with open('./results/2021_final_LR_model_test_pred_proba_pooled.pickle','rb') as f: \n", + " y_pred = pickle.load(f)\n", + " \n", + "y_pred.head() " + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " imp1 imp2 imp3 imp4 imp5 score std_ \\\n", + "0 0.925393 0.914949 0.901626 0.929962 0.921700 0.918726 0.009861 \n", + "1 0.778438 0.800176 0.776335 0.791798 0.777974 0.784944 0.009424 \n", + "2 0.449145 0.417679 0.474578 0.594807 0.488599 0.484961 0.059995 \n", + "3 0.636240 0.627138 0.649013 0.598810 0.635832 0.629407 0.016815 \n", + "4 0.168010 0.186585 0.171646 0.276738 0.167967 0.194189 0.041841 \n", + "\n", + " usrds_id died_in_90 subset \n", + "0 31089.0 1.0 9 \n", + "1 34521.0 0.0 8 \n", + "2 46751.0 0.0 8 \n", + "3 50506.0 0.0 9 \n", + "4 54985.0 0.0 8 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
imp1imp2imp3imp4imp5scorestd_usrds_iddied_in_90subset
00.9253930.9149490.9016260.9299620.9217000.9187260.00986131089.01.09
10.7784380.8001760.7763350.7917980.7779740.7849440.00942434521.00.08
20.4491450.4176790.4745780.5948070.4885990.4849610.05999546751.00.08
30.6362400.6271380.6490130.5988100.6358320.6294070.01681550506.00.09
40.1680100.1865850.1716460.2767380.1679670.1941890.04184154985.00.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 15 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 16, + "source": [ + "data = details.merge(y_pred, on=['usrds_id','died_in_90','subset'])\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset \\\n", + "0 2969676.0 0.0 72.0 2.0 1.0 2.0 2.0 8 \n", + "1 2969869.0 1.0 73.0 2.0 1.0 2.0 2.0 9 \n", + "2 2970021.0 0.0 55.0 2.0 1.0 1.0 1.0 8 \n", + "3 2970067.0 0.0 72.0 1.0 1.0 1.0 2.0 9 \n", + "4 2970686.0 0.0 49.0 2.0 1.0 2.0 2.0 8 \n", + "\n", + " imp1 imp2 imp3 imp4 imp5 score std_ \n", + "0 0.524443 0.460429 0.432501 0.520211 0.453502 0.478217 0.037195 \n", + "1 0.492358 0.492342 0.492408 0.492367 0.492423 0.492380 0.000031 \n", + "2 0.451538 0.451482 0.451440 0.451575 0.451419 0.451491 0.000059 \n", + "3 0.058317 0.058300 0.058325 0.058311 0.058305 0.058312 0.000009 \n", + "4 0.216587 0.216604 0.216638 0.216629 0.216636 0.216619 0.000020 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubsetimp1imp2imp3imp4imp5scorestd_
02969676.00.072.02.01.02.02.080.5244430.4604290.4325010.5202110.4535020.4782170.037195
12969869.01.073.02.01.02.02.090.4923580.4923420.4924080.4923670.4924230.4923800.000031
22970021.00.055.02.01.01.01.080.4515380.4514820.4514400.4515750.4514190.4514910.000059
32970067.00.072.01.01.01.02.090.0583170.0583000.0583250.0583110.0583050.0583120.000009
42970686.00.049.02.01.02.02.080.2165870.2166040.2166380.2166290.2166360.2166190.000020
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 16 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + " # Fairness " + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 17, + "source": [ + "fairness= get_fairness_assessment(data,\n", + " y_proba_col_name='score',\n", + " y_true_col_name='died_in_90')\n", + "fairness.head(39)" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Feature Value Count AUC TN FP FN TP\n", + "0 agegroup 1.0 4340 0.829859 4261 33 40 6\n", + "1 agegroup 2.0 12774 0.825866 12382 180 177 35\n", + "2 agegroup 3.0 26120 0.828693 24568 971 396 185\n", + "3 agegroup 4.0 53564 0.803657 46993 4756 1013 802\n", + "4 agegroup 5.0 85076 0.788509 66144 14608 1803 2521\n", + "5 agegroup 6.0 86140 0.768390 50356 28260 1810 5714\n", + "6 agegroup 7.0 62193 0.740362 23076 30849 991 7277\n", + "7 agegroup 8.0 15098 0.724801 3033 9097 136 2832\n", + "8 sex 1.0 198347 0.816653 134009 49691 3614 11033\n", + "9 sex 2.0 146957 0.803552 96803 39063 2752 8339\n", + "10 dialtyp 1.0 310415 0.802400 202318 84026 5928 18143\n", + "11 dialtyp 2.0 15082 0.831254 14448 354 202 78\n", + "12 dialtyp 3.0 13295 0.844102 12748 276 195 76\n", + "13 dialtyp 4.0 77 0.976027 55 18 0 4\n", + "14 dialtyp 100.0 6436 0.741123 1244 4080 41 1071\n", + "15 race 1.0 230577 0.802574 141142 69658 4160 15617\n", + "16 race 2.0 93560 0.812754 72489 16061 1826 3184\n", + "17 race 3.0 3225 0.804476 2672 425 57 71\n", + "18 race 4.0 12965 0.837901 10499 1889 219 358\n", + "19 race 5.0 3776 0.809844 3245 363 86 82\n", + "20 race 6.0 881 0.776969 556 264 13 48\n", + "21 race 9.0 321 0.756385 210 94 5 12\n", + "22 hispanic 1.0 51021 0.831624 41485 7037 953 1546\n", + "23 hispanic 2.0 292532 0.805458 188814 80758 5402 17558\n", + "24 hispanic 9.0 1752 0.760173 514 959 11 268" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FeatureValueCountAUCTNFPFNTP
0agegroup1.043400.829859426133406
1agegroup2.0127740.8258661238218017735
2agegroup3.0261200.82869324568971396185
3agegroup4.0535640.8036574699347561013802
4agegroup5.0850760.788509661441460818032521
5agegroup6.0861400.768390503562826018105714
6agegroup7.0621930.74036223076308499917277
7agegroup8.0150980.724801303390971362832
8sex1.01983470.81665313400949691361411033
9sex2.01469570.803552968033906327528339
10dialtyp1.03104150.80240020231884026592818143
11dialtyp2.0150820.8312541444835420278
12dialtyp3.0132950.8441021274827619576
13dialtyp4.0770.976027551804
14dialtyp100.064360.74112312444080411071
15race1.02305770.80257414114269658416015617
16race2.0935600.812754724891606118263184
17race3.032250.80447626724255771
18race4.0129650.837901104991889219358
19race5.037760.80984432453638682
20race6.08810.7769695562641348
21race9.03210.75638521094512
22hispanic1.0510210.8316244148570379531546
23hispanic2.02925320.80545818881480758540217558
24hispanic9.017520.76017351495911268
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 17 + } + ], + "metadata": { + "scrolled": false + } + }, + { + "cell_type": "code", + "execution_count": 18, + "source": [ + "fairness.to_csv('./results/' + str(dte) +'_lr_fairness.csv')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/logistic_regression/7_logistic_regression_risk_assess.ipynb b/logistic_regression/7_logistic_regression_risk_assess.ipynb new file mode 100644 index 0000000..17adc0e --- /dev/null +++ b/logistic_regression/7_logistic_regression_risk_assess.ipynb @@ -0,0 +1,669 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Calculate a risk assessment of the Logistic Regression model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "!pip install --upgrade pip\n", + "!pip install pandas" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: pip in /usr/local/lib/python3.6/dist-packages (21.0.1)\n", + "Requirement already satisfied: pandas in /usr/local/lib/python3.6/dist-packages (1.1.5)\n", + "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas) (2021.1)\n", + "Requirement already satisfied: numpy>=1.15.4 in /usr/local/lib/python3.6/dist-packages (from pandas) (1.19.5)\n", + "Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.6/dist-packages (from pandas) (2.8.1)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/dist-packages (from python-dateutil>=2.7.3->pandas) (1.15.0)\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import pickle\n", + "\n", + "# add folder with custom functions to path\n", + "import sys\n", + "sys.path.append('../onc_functions')\n", + "from risk import get_risk_categories\n", + "\n", + "print('python-' + sys.version)\n", + "import datetime\n", + "dte = datetime.datetime.now()\n", + "dte = dte.strftime(\"%Y%m%d\")" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Risk categories" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "# here' we import the dataset we created for the fairness assessment in notebook 6\n", + "with open('complete_fair1.pickle','rb') as f: \n", + " details = pickle.load(f)\n", + "details.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset\n", + "0 2969676.0 0.0 72.0 2.0 1.0 2.0 2.0 8\n", + "1 2969869.0 1.0 73.0 2.0 1.0 2.0 2.0 9\n", + "2 2970021.0 0.0 55.0 2.0 1.0 1.0 1.0 8\n", + "3 2970067.0 0.0 72.0 1.0 1.0 1.0 2.0 9\n", + "4 2970686.0 0.0 49.0 2.0 1.0 2.0 2.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubset
02969676.00.072.02.01.02.02.08
12969869.01.073.02.01.02.02.09
22970021.00.055.02.01.01.01.08
32970067.00.072.01.01.01.02.09
42970686.00.049.02.01.02.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 2 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 3, + "source": [ + "with open('./results/2021_final_LR_model_test_pred_proba_pooled.pickle','rb') as f: \n", + " y_pred = pickle.load(f)\n", + " \n", + "y_pred.head() " + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " imp1 imp2 imp3 imp4 imp5 score std_ \\\n", + "0 0.925393 0.914949 0.901626 0.929962 0.921700 0.918726 0.009861 \n", + "1 0.778438 0.800176 0.776335 0.791798 0.777974 0.784944 0.009424 \n", + "2 0.449145 0.417679 0.474578 0.594807 0.488599 0.484961 0.059995 \n", + "3 0.636240 0.627138 0.649013 0.598810 0.635832 0.629407 0.016815 \n", + "4 0.168010 0.186585 0.171646 0.276738 0.167967 0.194189 0.041841 \n", + "\n", + " usrds_id died_in_90 subset \n", + "0 31089.0 1.0 9 \n", + "1 34521.0 0.0 8 \n", + "2 46751.0 0.0 8 \n", + "3 50506.0 0.0 9 \n", + "4 54985.0 0.0 8 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
imp1imp2imp3imp4imp5scorestd_usrds_iddied_in_90subset
00.9253930.9149490.9016260.9299620.9217000.9187260.00986131089.01.09
10.7784380.8001760.7763350.7917980.7779740.7849440.00942434521.00.08
20.4491450.4176790.4745780.5948070.4885990.4849610.05999546751.00.08
30.6362400.6271380.6490130.5988100.6358320.6294070.01681550506.00.09
40.1680100.1865850.1716460.2767380.1679670.1941890.04184154985.00.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 3 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 4, + "source": [ + "data = details.merge(y_pred, on=['usrds_id','died_in_90','subset'])\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset \\\n", + "0 2969676.0 0.0 72.0 2.0 1.0 2.0 2.0 8 \n", + "1 2969869.0 1.0 73.0 2.0 1.0 2.0 2.0 9 \n", + "2 2970021.0 0.0 55.0 2.0 1.0 1.0 1.0 8 \n", + "3 2970067.0 0.0 72.0 1.0 1.0 1.0 2.0 9 \n", + "4 2970686.0 0.0 49.0 2.0 1.0 2.0 2.0 8 \n", + "\n", + " imp1 imp2 imp3 imp4 imp5 score std_ \n", + "0 0.524443 0.460429 0.432501 0.520211 0.453502 0.478217 0.037195 \n", + "1 0.492358 0.492342 0.492408 0.492367 0.492423 0.492380 0.000031 \n", + "2 0.451538 0.451482 0.451440 0.451575 0.451419 0.451491 0.000059 \n", + "3 0.058317 0.058300 0.058325 0.058311 0.058305 0.058312 0.000009 \n", + "4 0.216587 0.216604 0.216638 0.216629 0.216636 0.216619 0.000020 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubsetimp1imp2imp3imp4imp5scorestd_
02969676.00.072.02.01.02.02.080.5244430.4604290.4325010.5202110.4535020.4782170.037195
12969869.01.073.02.01.02.02.090.4923580.4923420.4924080.4923670.4924230.4923800.000031
22970021.00.055.02.01.01.01.080.4515380.4514820.4514400.4515750.4514190.4514910.000059
32970067.00.072.01.01.01.02.090.0583170.0583000.0583250.0583110.0583050.0583120.000009
42970686.00.049.02.01.02.02.080.2165870.2166040.2166380.2166290.2166360.2166190.000020
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 4 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 8, + "source": [ + "risk_cat = get_risk_categories(data,\n", + " y_proba_col_name='score',\n", + " y_true_col_name='died_in_90')\n", + "risk_cat" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Risk Category Count Count Died in 90 Count Survived Percent Died in 90\n", + "0 0-0.09 43117 145.0 42972.0 0.003363\n", + "1 0.1-0.19 56041 633.0 55408.0 0.011295\n", + "2 0.2-0.29 51733 1103.0 50630.0 0.021321\n", + "3 0.3-0.39 44494 1770.0 42724.0 0.039781\n", + "4 0.4-0.49 38156 2412.0 35744.0 0.063214\n", + "5 0.5-0.59 33358 3208.0 30150.0 0.096169\n", + "6 0.6-0.69 29338 4074.0 25264.0 0.138864\n", + "7 0.7-0.79 24342 4765.0 19577.0 0.195752\n", + "8 0.8-0.89 17561 4878.0 12683.0 0.277775\n", + "9 0.9-0.99 7141 2740.0 4401.0 0.383700" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Risk CategoryCountCount Died in 90Count SurvivedPercent Died in 90
00-0.0943117145.042972.00.003363
10.1-0.1956041633.055408.00.011295
20.2-0.29517331103.050630.00.021321
30.3-0.39444941770.042724.00.039781
40.4-0.49381562412.035744.00.063214
50.5-0.59333583208.030150.00.096169
60.6-0.69293384074.025264.00.138864
70.7-0.79243424765.019577.00.195752
80.8-0.89175614878.012683.00.277775
90.9-0.9971412740.04401.00.383700
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 8 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 6, + "source": [ + "risk_cat.to_csv('./results/' + str(dte) + '_lr_risk_cat.csv')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/logistic_regression/__init__.py b/logistic_regression/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/logistic_regression/calibration_logistic_regression.ipynb b/logistic_regression/calibration_logistic_regression.ipynb new file mode 100644 index 0000000..f06f5a5 --- /dev/null +++ b/logistic_regression/calibration_logistic_regression.ipynb @@ -0,0 +1,369 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Optional script to calibrate the Logistic Regression results and plot" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 14, + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import pickle\n", + "\n", + "import sys\n", + "sys.path.append('../onc_functions')\n", + "\n", + "# import custom functions\n", + "from plot_functions import onc_plot_calibration_curve, onc_plot_risk, onc_plot_roc, onc_plot_roc_no_threshold\n", + "from calibrate_onc import calibrate_onc" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 3, + "source": [ + "with open('./results/2021_final_LR_model_test_pred_proba_pooled.pickle','rb') as f: \n", + " data = pickle.load(f)\n", + "\n", + "data = data.loc[:,['score','died_in_90','subset','usrds_id']]\n", + "data = data.rename(columns={'died_in_90':'y'})\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y subset usrds_id\n", + "0 0.918726 1.0 9 31089.0\n", + "1 0.784944 0.0 8 34521.0\n", + "2 0.484961 0.0 8 46751.0\n", + "3 0.629407 0.0 9 50506.0\n", + "4 0.194189 0.0 8 54985.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreysubsetusrds_id
00.9187261.0931089.0
10.7849440.0834521.0
20.4849610.0846751.0
30.6294070.0950506.0
40.1941890.0854985.0
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 3 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Plot original model's calibration cuve" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 4, + "source": [ + "onc_plot_calibration_curve(\n", + " y_true=data.y, \n", + " y_proba=data.score, \n", + " label='Logistic Regression',\n", + " filename='./results/lr_orig_calibration')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAnAAAAJNCAYAAACx90jQAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAABt8klEQVR4nO3dd3hUZfr/8fedUILUgAgoShOkgxJAYBWkiOCusiKgawHFjiji2nbdRUV3EVlXUVhXEGwoIvpdsVIURRSFUKVKEaRKLwEpSe7fHxnyC5hAgMycmeTzuq65mPPMmXM+k5OEO885z3nM3RERERGR2BEXdAAREREROTEq4ERERERijAo4ERERkRijAk5EREQkxqiAExEREYkxKuBEREREYkyhoANE2umnn+5Vq1YNOoaIiIjIcc2ePXuru5c/ur3AFXBVq1YlOTk56BgiIiIix2Vma7Jr1ylUERERkRijAk5EREQkxqiAExEREYkxKuBEREREYowKOBEREZEYowJOREREJMaogBMRERGJMSrgRERERGKMCjgRERGRGKMCTkRERCTGRG0BZ2ajzGyzmS3M4XUzs6FmtsLMFpjZBZHOKCIiIhKEqC3ggFeBy47xeiegZuhxG/CfCGQSERERCVzUFnDuPg3YfoxVrgRe9wzfAWXMrFJk0omIiIgEJ2oLuFw4C1ibZXldqE1EREQkX4vlAi7XzOw2M0s2s+QtW7YEHUdERERi0LZt21i5cmXQMYDYLuDWA2dnWa4cavsNd3/Z3ZPcPal8+fIRCSciIiL5R3p6Oq1bt+bGG2/E3YOOQ6GgA5yCCcDdZjYWaA7scveNAWcSERGRfGTt2rVUrlyZuLg4nn32Wc4880zMLOhY0dsDZ2ZvAzOA88xsnZn1NrM7zOyO0CqfAKuAFcAI4K6AooqIiEg+NGfOHGrVqsWYMWMAuPTSS6lfv37AqTJEbQ+cu197nNcd6BOhOCIiIlJA7N27l+LFi9OoUSP69+9P27Ztg470G1HbAyciIiISaYMHD6ZBgwakpKQQHx/PU089xZlnnhl0rN+I2h44ERERkUhwd9yduLg4WrVqxfr12Y6JjCoq4ERERKTAOnDgAD169CApKYlHH32UVq1a0apVq6BjHZdOoYqIiEiBVbRoURITEylVqlTQUU6ICjgREREpUJYuXUqHDh0yT5WOHj2ae+65J+BUJ0YFnIiIiBQohQsXZvny5VEzq8LJUAEnIiIi+d6kSZMYMGAAADVq1GDFihVcfPHFAac6eSrgREREJN+bMmUK48aNY+/evQAUKhTb4zhVwImIiEi+4+688sorzJs3D4DHH3+cefPmUbx48WCD5REVcCIiIpLv7Nq1i7/85S+MHDkSgGLFilG0aNGAU+UdFXAiIiKSLxw4cIDXXnsNd6dMmTLMmDGDoUOHBh0rLFTAiYiISL4wduxYevXqxddffw1A9erViYvLn6VO/vxUIiIiUiDs2LEj8zq366+/nq+++iqmR5fmVmwPwRAREZEC7eqrr2bNmjUsXbqUQoUKFYjiDVTAiYiISIxZs2YNlSpVokiRIgwePJj4+PiYvy3IidIpVBEREYkZP//8M3Xr1mXIkCEANGnShMaNGwcbKgAq4ERERCTq7dixA4BzzjmHgQMHcsMNNwScKFgq4ERERCSqjRgxgurVq2dOPt+/f3/OPvvsgFMFSwWciIiIRKXU1FQA2rZty/XXX0+JEiUCThQ9zN2DzhBRSUlJnpycHHQMERERyYG786c//YkSJUowYsSIoOMEysxmu3vS0e0Fa8iGiIiIRD0zo1atWiQkJODumFnQkaKOTqGKiIhI4FavXk3r1q2PmHz+kUceUfGWAxVwIiIiErjSpUuzbds2NmzYEHSUmKACTkRERAIxdepUbr/9dtydxMREFixYQOfOnYOOFRNUwImIiEgglixZwueff84vv/wCkG8nng8HfaVEREQkItyd119/nUmTJgFwxx138MMPP1CxYsWAk8UeFXAiIiISEampqQwePJhRo0YBGT1uxYoVCzhVbFIBJyIiImFz6NAhhg8fzsGDBylcuDCTJk3irbfeCjpWzFMBJyIiImEzbdo0+vTpwwcffADAmWeeqWvd8oC+giIiIpKndu3axVdffQVAu3btmDlzJt26dQs4Vf6iAk5ERETyVJ8+fejSpQspKSkANG3aNOBE+Y8KOBERETlla9euZfv27QAMHDiQyZMna/L5MFIBJyIiIqdk165dNGzYkL/85S8AVKtWjaSk38y/LnlIk9mLiIjISfnll1+oUKECpUuX5rnnnuPiiy8OOlKBoR44EREROWHvvfceVapUYe7cuQD07NmTatWqBZyq4FABJyIiIrm2f/9+ANq2bcudd95JlSpVAk5UMKmAExERkVy58847+cMf/pA5+fy///1vypYtG3SsAknXwImIiEiO3B0zA+CCCy6gYsWKpKWlUaiQSoggqQdOREREsrVp0yZat27NRx99BMCtt97KgAEDVLxFARVwIiIikq3Dp0f37dsXcBI5mgo4ERERyTRjxgyuuuoqDh48SJEiRfjqq6/o3r170LHkKCrgREREJNOOHTuYO3cuq1evBsi8/k2ii05ii4iIFGDuzjvvvMOBAwfo2bMnnTt3ZunSpRQtWjToaHIM6oETEREp4EaPHs0bb7yBuwOoeIsBKuBEREQKmNTUVJ577jm2b9+OmfH2228zceJEnS6NISrgRERECphly5bx5z//mTFjxgAZo03j4+MDTiUnQtfAiYiIFAB79uxh6tSpXHHFFdSrV4/58+dTt27doGPJSVIPnIiISAEwcOBArr76atavXw9AvXr1dMo0hqmAExERyac2bNjAmjVrAHjkkUf46quvOOusswJOJXlBBZyIiEg+dOjQIS688EL69OkDQGJiIi1atAg4leQVXQMnIiKSj/z888+cc845FC5cmOHDh1OnTp2gI0kYqAdOREQkn/jyyy+pUaNG5uTzv//976lRo0bAqSQcVMCJiIjEuJSUFABatmzJgw8+yIUXXhhwIgk3FXAiIiIx7JFHHqF58+YcOHCAIkWK8NRTT3H66acHHUvCTNfAiYiIxBh3x92Ji4vj4osv1k14C6Co7YEzs8vMbJmZrTCzh7N5/Rwzm2pmc81sgZl1DiKniIhIJO3evZsOHTowfPhwADp16sSTTz6p+UsLmKgs4MwsHhgGdALqAtea2dG3i34UGOfu5wPXAMMjm1JERCTySpYsSbly5ShRokTQUSRAUVnAAc2AFe6+yt0PAmOBK49ax4FSoeelgQ0RzCciIhIxc+bMoW3btmzbtg0z45133qFXr15Bx5IARWsBdxawNsvyulBbVo8B15vZOuAToG9koomIiERWoUKFWLNmTeasCiLRWsDlxrXAq+5eGegMvGFm2X4eM7vNzJLNLHnLli0RDSkiInIy3nvvPQYNGgRAw4YNWbZsGRdccEHAqSRaRGsBtx44O8ty5VBbVr2BcQDuPgNIALIdN+3uL7t7krsnlS9fPgxxRURE8tbEiRN5//33OXToEJDRCydyWLQWcLOAmmZWzcyKkDFIYcJR6/wMtAMwszpk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+YoA8MMPP9CqVSuGDRsGQL169TjjjDMCTiUiQZszZw533XUXlSpVolevXmzevJnBgwezbt063nvvPTp16qTiTfI19cBJ1HF3Vq5cybnnnkuDBg148803+eMf/xh0LBEJ2K5du3jrrbcYMWIEc+fOJSEhgW7dunHLLbdw0UUXqWdeChT1wEnUGTBgABdccAEbNmwA4LrrrtMQf5ECyt2ZPn06PXv2pFKlStx1112kp6fz4osvsmHDBl5//XUuvvhiFW9S4KgHTqLCoUOHOHDgACVKlKBXr16UL19eU9OIFGCbN2/m9ddfZ+TIkSxbtoySJUty4403csstt9CkSRMVbFLgqYCTwB06dIiWLVvSqFEjRo4cSfXq1enbt2/QsUQkwtLT05k8eTIjR47kgw8+yPzdMGrUKLp3707x4sWDjigSNVTASWBSU1MpVKgQhQsXpnv37tSoUSPoSCISJhUrVsxxEvhZs2YxevRoRo0axZo1ayhXrhx33303t9xyC3Xr1g0grUj00418JRCzZ8/m6quv5v3339fcgyIFwLFOeZoZ7k779u259dZbufLKKylatGgE04lEL93IV6JK9erVqVmzZtAxRCQK/PWvf+Xmm2+mWrVqQUcRiRkq4CRiRo8ezUcffcT48eNJTExk0qRJQUcSkTBbvXo1n3/++THXGThwYITSiOQfKuAkYvbv38+ePXvYs2cPpUqVCjqOiITBtm3bmDp1KlOmTGHKlCmsXLky6Egi+ZKugZOw2b9/P0888QStWrXi8ssvJz09HTPT8H+RfGTfvn188803mQXb3LlzcXdKlixJmzZtaN++Pe3ataN+/fo5bqOg/T8kciJ0DZxEXFxcHB9++CEAl19+OXFxum+0SKxLTU1l9uzZfP7550yZMoVvvvmGgwcPUrhwYVq0aMHjjz9Ou3btaNq0KYULF858X4UKFXIchSoiJ04FnOSpLVu28K9//YvHH3+cokWL8t133+neTSIxzN1ZtmxZZsE2depUdu3aBUCjRo3o27cv7dq146KLLqJEiRI5bmfTpk2RiixSIKiAkzyVnJzMs88+S8eOHbnkkktUvInEoI0bN2YWbFOmTGH9+vUAVKlShW7dutGuXTvatm3LGWecEXBSkYJLBZycsuXLl7N48WKuvPJKOnXqxKpVq6hcuXLQsUQkl3bv3s1XX32VWbAtXrwY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l19OnTp1MnvTqlatqlGfIlGuRYsWLFiwAICVK1fSp08ftmzZwmmnncaIESPYv38/Dz74IL/++ivJycnMmDGDr7/+mgEDBnDgwAFq1KjB6NGjKVGiBFWrVqVHjx5MnjyZBx98kLJly+a4Xs+ePfnwww85dOgQ7777LrVr1yYlJYW+ffuSnJyMmTFgwAC6du3KpEmTst3O8axevZrf//73LFy4kFdffZUJEyawb98+Vq5cyR//+EcGDx4McNLbjzh3L1CPJk2aeKzZt2+fp6amurv75MmT/c033/T09PSAU0l+A+T4qFq1qptZ5rKZefXq1b1z587ev39/f/nll33atGm+efNmfW+KnIDFixcfsdy6dWsfPXq0u7sfPHjQW7du7W+88Ya7u+/du9dbt27tY8eOdXf3nTt3euvWrf29995zd/ctW7Z469atfcKECe7uvnHjxlxlKF68uLu7p6am+tVXX+2ffvqpu7u3bdvWf/zxR3d3/+677/ySSy5xd/fRo0d7nz59Mvd50UUXeUpKiru7Dxo0yB9//HF3d69SpYo//fTTuVpv6NCh7u4+bNgw7927t7u7P/jgg37vvfdm5ty+ffsxt5NVz549/d133z2i7aeffvJ69eplfoZq1ar5zp07/ddff/VzzjnHf/7551xvP1yO/n5wdweSPZt6Rn8OR7lNmzbRqlUr+vXrR9++fWnfvn3QkSSG7d27l7Vr1/Lzzz8f8VizZs0x39eiRQtuuummzN60mjVrUqxYsQilFpFw+vXXX2ncuDHr16+nTp06dOjQgZSUFL799lu6deuWuV7W2/Uc9t1337F48WJatWoFZAxQatGiRebrPXr0yNV6V111FQBNmjTh/fffB2DKlCmMHTs2c53ExEQ++uijY27nRLRr1y5zppW6deuyZs0adu7cmWfbDzcVcFEqPT2duLg4KlSoQMeOHWnQoEHQkSTKpaen88svv/ymOMtapG3btu2I98TFxXHmmWdyzjnnHHPbb731Vjiji0jIl19+mfm8cOHCRyyfdtppRyyXLl36iOXTTz/9iOWKFSvmap+Hr4Hbt28fHTt2ZNiwYfTq1YsyZcpkXhuXE3enQ4cOvP3229m+Xrx48Vytd3hUeXx8PKmpqSe9vxORdST74f3m5fbDTQVcFPr444/585//zPTp0ylXrhzDhw8POpJEgX379rF2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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# plot original model mortality risk" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 17, + "source": [ + "onc_plot_risk(\n", + " y_true=data.y, \n", + " y_proba=data.score, \n", + " label='Predicted (Logistic Regression)',\n", + " filename='lr_not_calibrated_mortality_bar')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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AAAAAAAAAAAAAAAAAAAAAAAAAAAA+DEaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4MdoHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgB+jcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH6MxgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgxGgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODHaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAfo3EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+jMYBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4MRoHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgx2gcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAH6NxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfozGAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+DEaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4MdoHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgB+jcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH6MxgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgxGgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODHaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAfo3EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+jMYBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4MRoHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgx2gcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAH6NxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfozGAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+DEaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4MdoHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgB+jcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH6MxgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgxGgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODHaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAfo3EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+jMYBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4MRoHAAAA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WrVqbn39BQsWtJ577jkrPj7+inlNP192fLaGDBlilHvIkCFuz+2Kbdu2Wc8995xVtWpVW753YmJirB49elijR4+2Tp065VKNdtSV18VTx+XExERr3LhxVufOna2goCC31R8QEGB16NDBmjRpkpWRkeGR1+Kq/fv3W3369LECAgLc9vodDofVtWtXa/369Tnmbtu2rdH2li5d6pk3wwcMGjTI6D3573//65X6/OH8ylsSEhKsDz/80GrRooXlcDjc9nkKCwuzevXqZc2YMcPKzs729svM1ebNm63rr7/e7d8LrVu3thYuXJhj7nvuucdoWxMmTHD76zZ9HZ6SkZFhTZ061erSpYsVEhLi9t/Hn5fw8HCrVatW1vPPP29t3LjR5ZpNvxM8vbhyH9Dfvt8WLlxoDRgwwCpatKgt72HZsmWt/v37W1OnTrVSUlK8/XJt58x74w0ff/yxUzXu2LHDK3Ve8ttvv1lvvvmmVa9ePbful5GRkdbtt9/uM5/DK8nKyrLGjRtnlSlTxu3H7gceeMA6evRojvm9tS+74ziakZFhffjhh1aVKlXy9F7VrVvX7a/v7Nmz1qhRo6yWLVu69bwxJCTEuvnmm332vHH16tVW375983yPMbclMDDQqlOnjnX//fdbP/74o0evybOzs60ff/zR6t27txUZGWnr6wwODrYaN25sPf7449bKlStt+Z178/6fsxYsWGDdeeedVlRUlFvf5/r161vDhw+3zp4969XX565rne3bt1u33XabFRgY6Nb3qWXLltaKFSs882a4wPRey7fffuvtUm3j7888AAAAAAAAAH9m5/13lt8XAPnT6tWrL3dMaG75wNjVPy8BAgAAAAAfVr58eePY+Ph4paWl2VjNX1mWpXHjxqlatWp65513dP78eY/lzs2GDRvUu3dvVa9eXcOGDdPevXvduv3z589r3LhxatiwoW688UatX7/erdt3h7i4OLVv3149e/bU7t273brt+Ph4vfXWW6pZs6ZmzZrl1m3nJ/Pnz9f111+vWrVq6a233tKePXtsyXPhwgVNnz5dDzzwgMqUKaPbbrtNixYtutTgC1dw7tw5vfLKKypfvrz69++vBQsWGM9WaiI7O1tLlizR3XffrSpVqmjMmDHKyspy2/bdITMzUy+99JJq1KihqVOnGs+GbsKyLP3www9q1qyZnnrqKePZ/fI7y7I0c+bMXOMcDofat2/vgYpg4vz58xo6dKjKly+vwYMHa/Xq1W49BqempmratGnq3r27YmNj9dVXX7n18+ouiYmJuu+++9SgQQP9+OOPbt/+ihUr1KlTJ91zzz06d+6c27d/tcjMzNTYsWNVoUIF9enTR/PmzTOetdhVKSkpWrlypd544w01aNBAVapU0X/+8x/t3LnT1rzIm7S0NH3++eeqVauWOnXqpM8//1ynT5+2JdeRI0c0btw49enTR6VLl9Zjjz2mbdu22ZILubvmmmucik9OTrapkpzt3r1b/fv3V6VKlfSf//xHmzdvduv2k5KS9O2336p9+/Zq0aKFFi5c6Nbtu8PGjRtVr1499e/fX7/99ptbt52SkqLRo0erZs2aGjdunFu37QtWrFih+vXra/Dgwdq3b5+3y/nDb7/9pieeeELlypXTI488olWrVrn1vDE9PV2zZ89W9+7dVbt2bX333Xdu23ZeLFq0SE2aNFGLFi30xRdf2H6PMSsrS1u2bNGYMWN0/fXXq0SJEhowYIAWL15sW07LsjR16lTVqFFD119/vf773/8qKSnJtnySlJGRofXr1+v9999Xq1atVKZMGT366KM+eR/TTt9//70aNmyozp076+uvv1ZiYqJbt79p0yY988wzKl++vJ5++ulcZ633VWlpaXrppZdUr149fffdd26/R7Vq1Sq1adNGDzzwgE/eA+rYsaNR3PTp022uBAAAAAAAAAAAAHlF4wAAAAAAPq148eJOxXvqgf2LFy/q5ptv1oABA3TmzBmP5DRx4sQJ3XHHHWrcuLGmTZvmkUFz8+bNU7NmzfTwww8rISHB9nwmpkyZonr16mnZsmW25jl27JhuueUWPfTQQz434NmX/frrr2rXrp26dOmiBQsWeDR3enq6pkyZok6dOqly5cpeG+Tjy7Kzs/Xxxx+rUqVKGjp0qM6ePWt7zkOHDumBBx5QkyZN9Msvv9iez8TBgwfVunVrDRs2zNYBpVlZWXr33XfVoEEDxcXF2ZbnarFp0yadOHEi17i6deuqcOHCHqgIufnmm29UvXp1vfLKKx5psrRz507dddddatasmX799Vfb85nasGGD6tevr88++8z287NJkyapVq1aPnM89SW//PKL6tWrp0GDBuno0aNeq2P//v1666239Pbbb3utBuTs+++/V40aNTRw4EBt377do7nPnTunkSNHqnbt2rrttts8mhu/c/YcwtOD/y5cuKDBgwcrNjZW48ePt735iSStWbNGnTt31u233250LuYJI0aMULNmzbR161Zb81y4cEEDBgxQ9+7dr4rrR8uy9PLLL6tt27Y+1aAkLS1Nr7zyiq699lq9//77tg8ol6Tt27fr9ttvV8eOHb3WPOHkyZPq3r27OnXq5NXB7GfPntW4cePUv39/W7a/b98+tWnTRrfeeqvbm3s649ixYxo1apSefvppr9XgSXv37lWHDh3Uq1cvbdy40fZ8iYmJeuedd1StWjV9+umnftWwMy4uTo0aNdKwYcOUkZFhWx7LsjRmzBi1adNGx44dsy2PK9q1ayeHw5Fr3IIFC7gPDgAAAAAAAAAA4ONoHAAAAADAp0VERDgV74mHuOPi4tS8eXPNmTPH9lzO+Pzzz1WtWjVNnjzZ47kvDTSuW7eu22c5dNawYcN02223ebSJwSeffKKePXteFYMI7JSWlqbHHntMDRo00E8//eTtchQXF+eRQTb+ZNeuXWrSpIkefvhhXbhwweP5N27cqKZNm+rdd9/1eO4/27Rpk5o2baq1a9d6LOeuXbvUvHlzBvrmYt68eUZx7du3t7kS5CY+Pl5du3bVnXfeqVOnTnk8//r169WoUSO99tprXh+wMnv2bLVp08ajA9KOHz+utm3bGn9m8oMPP/xQzZo18/ggcPiXY8eOqXPnzurVq5dPNPTx5uDK/MzZ67rw8HCbKvmn2bNnq3r16vroo4+8Mmjvu+++U61atbRo0SKP574kMzNT/fr10zPPPGPr4M6/mzlzpjp06KDTp097LKe7paSkqE+fPj5xfvRnq1evVq1atTR06FClpqZ6PP/ixYtVp04dffPNNx7Nu2LFCtWqVUszZ870aF5PmzZtmurVq6eVK1d6u5R85aOPPlLt2rW1dOlSj+e+cOGC7r//frVt29Znms3kZOXKlWrSpIlHm6ls2LBBbdq00fHjxz2WMzdFihRR7dq1c407f/681qxZ44GKAAAAAAAAAAAA4CoaBwAAAADwac4+yGwyK05eHD9+XB06dPCpAUepqanq16+fBg4c6NHB8pdz8OBBtWjRQlOmTPFK/ieeeEIvvfSSV3LPmjVLvXr1YsalK9i7d6+aN2+ukSNH2j7TMlwzdepUNW7c2OsD17OysvTUU0/pjjvu8EpjhxUrVqhdu3ZeGeh88uRJXXfdddqxY4fHc/uLuXPnGsW1a9fO3kKQox07dqhx48Zeb7KUmZmpl19+Wb169VJiYqJXavjqq6/Uo0cPj89GLUlJSUnq1q2bVwd3+opnnnlGjzzyiDIzM71dCnzY/PnzVa9ePS1cuNDbpcDLzp4961R8TEyMTZX8T1ZWlp5//nndcsstXh+EefbsWd1www364IMPPJ47IyNDPXv21BdffOHx3JK0bt06dezYURcvXvRK/rzIzMxUnz59NG3aNG+X8hcffvih2rVr59EGS5eTkpKiO++8U0899ZRHmipMnz5dHTt21JkzZ2zP5U0ff/yx+vTpo6SkJG+Xkm+kpaXp3nvv1eDBg5WWlubVWlasWKFGjRrp559/9modOVm2bJk6derklc/i/v371blzZ69dq16OaRNG03szAAAAAAAAAAAA8A4aBwAAAADwac4OsrJzpr+EhAR16dJFBw8etC2Hs86dO6fWrVt77aH5y0lJSdG//vUvffnllx7NO2zYML3//vsezfl38+fP1+DBg71agy9asWKFGjdurE2bNnm7FFzBq6++qltvvdWnHlaePHmyevbs6dHmAdu3b9fNN9/s1SYsFy5c0E033aSTJ096rQZfde7cOa1bty7XuICAALVp08YDFeFyfvnlF7Vs2dLrg7/+bPr06bruuus8/tmeP3+++vXr59WmQpmZmerdu7d27tzptRq87c0339SIESO8XQZ83MiRI3XjjTf69UzicB9nGwcULFjQnkL+X2pqqrp166Y333zTZ2aJz8rK0uOPP67XX3/dYzkty1L//v01e/Zsj+W8nC1btui2227zu6aBAwcO9HpTpz/Lzs7WwIED9cgjjygjI8Pb5fzh3Xff1f3332/rZ23ZsmX617/+5ZVGeZ70zTffaPDgwT5z3MoPUlNTdfPNN2vChAneLuUPR48eVbt27bRkyRJvl/IPGzZsULdu3ZSamuq1GrZt26aHHnrIa/n/rkOHDkZxNA4AAAAAAAAAAADwbUHeLgAAAAAAcuLsTHoRERE2VSINGDBAv/76q1FsYGCg6tSpo2uvvVYVKlRQdHS0wsPDlZKSoosXLyouLk47duzQzp07XZ59/fTp0+rYsaO2bNni0vp2ys7OVt++fRUcHKzbb7/d9nxff/21XnrpJZfXj4qK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oEABTZkyRVOnTlXlypXdUkP58uU1Z84cDRs2TA6Hw2idiRMnauHChW7Jf8mxY8f0xhtvGMdHRUVp/vz5uvfee92Sv1ChQpoxY4YGDhzolu1dTR5//HHt37/fqXVuuOEG7dy5U4888ohCQ0PdXlPFihU1ZMgQHTx4UJMmTVLNmjXdnsNfZGRk6J577lFKSorxOgMHDtSWLVvUs2dPt9QQFBSkZ599VsuXL1epUqWM1jlz5owee+wxt+T/s6eeekppaWnG8Y8++qimTJmi6Ohot+R/6KGHNHv2bIWHh7tle1erX3/9VRkZGUaxderUsbka/Nn27ds1YsQIp9a54YYbtHHjRrVt2zZPuQMDAzV48GCtXbtWZcuWNV7PsiwNGjTIqc++iezsbD3yyCPG8Q6HQ6NGjdL777+vkJAQt9RQvXp1rVixQm3atHHL9vzVsmXLdOjQIaPYPn36aOXKlapataqtNV177bV6+eWXdfDgQc2cOVMtW7a0NR+uLC0tTXfddZfTx4BnnnlGW7ZsUdeuXW2pq1mzZvr000915MgRvf7667rmmmtsyYMrS01Ndep6Ozg4WLfccovb6zhw4ICeeOIJ4/iQkBB99NFHWrx4serXr++WGq655hpNnDhR48ePN/6OWrZsmcaNG+eW/Jds2rRJn3/+uXF8mTJltGLFCnXp0sVtNfTv31/z589XgQIF3LZNbytQoIAWLFighx9+2Pi+Tl6dP39e/fv3V3Z2tlG8w+HQiy++qHXr1ql9+/ZuqSEyMlLvvPOOZs+ebfz73L17t1577bU8505KStK0adOMYmvUqKGNGze6dT++nCJFimjQoEFav369fvnlF91+++0KCgrK0zb379+vlStXGsW2adNGGzZsUJMmTfKUMzdlypTRE088oZ07d2rp0qXq0qWLx/Z7u126rklPTzdep0iRIlq2bJlefPHFPF+DNGzYUD///LNuv/12p9YbP368li1blqfc7laoUCH99NNPevDBB922f3Tt2lXffPON8fZ2797tE++L6T2VTZs2KTMz0+ZqAAAAAAAAAAAA4AoaBwAAAADwWWPHjnUqvmnTpjZV8k+VKlXSokWLnBqkllepqam69957jR+yLleunFavXq0+ffq4vRaHw6EXXnhBo0ePNn748emnn3aqEURuXnrpJSUlJRnFBgcHa9asWW4fRBcQEKBPP/1Ud9xxh1u368/mzZvn9GCRp59+WnPmzFHJkiVtqup/goODddddd2nr1q366quv3DZQ05+89tpr2rJli1Gsw+HQyJEjNXbsWEVGRrq9liZNmmj58uXGx9Kvv/5aGzdudFv+FStWaPr06cbxAwYM0AcffOC2/Jd07txZ06ZNU2BgoNu3fbVYv369UVzp0qVVuHBhm6vBnz3wwAPGTR0kqWfPnpo1a5YKFizothrq1q2r5cuXq0KFCsbr7N6926nBoSamTp2qX375xTj+zTff1ODBg91ag/T7YMA5c+aoXr16bt+2v/jxxx+N4mJjY/XFF1/Y0rToSgICAtStWzetXLlSb731lsfy4n9efvllbd++3Tg+LCxMU6ZM0dtvv+2RfaVw4cJ6/vnnFRcXp2eeecb2fPifTz75RMePHzeOv+mmm1SkSBG31mBZlu69914lJycbxRcqVEiLFi3SQw89ZMtA2H79+mnatGnG100vvviiUw3KcvP8888b3wMpWLCgFi5cqOrVq7st/yVt2rTRjBkzFBwc7PZte1pYWJhmzZrl0SaY0u8N2Ew/X6GhoZo6dapee+01W97zG2+8UQsXLjQ+H3333Xd17NixPOVcvny50WcjMjJS06ZNU+nSpfOUz1kNGjTQ5MmTjQf9X8mCBQuM4kqUKKEpU6a49ZrARLt27TR37lxNnjzZo3ntMn78eK1atco4vnjx4lq2bJlbG1hFRETo66+/drpR6/333+8zg84LFCigRYsWqVmzZm7fdo8ePfTwww8bx0+ZMsXtNTirbt26RnEpKSlOnVMDAAAAAAAAAADAc2gcAAAAAMAnzZkzx6mBV+Hh4WrevLmNFf1PWFiYZsyYoRIlSngk3yXvv/++du/ebRRbqlQpLV26VLGxsbbWNGjQIL388stGsb/++qtTA3RzcvToUX355ZfG8e+//77bZqj7O4fDoXHjxqlhw4a2bN+fZGVlOTUzpvT7wK3hw4crIMCztygCAgJ05513KiIiwqN5ve3QoUN6++23jeM/+eQTp2bPdkXlypU1d+5cRUVFGcUPHTrUbbmdGbDZvHlzffzxx27L/XddunRhAGkOTBsH1K5d2+ZK8GcLFizQihUrjONbtGihb775xpYBYBUqVNDcuXOdmg343XffVXx8vNtqcKYRwR133KFnn33Wbbn/LioqSrNnz1ahQoVsy+HLTAdQvffee149F/D09QSkuLg4p5oAhYaGavr06bY0Y8tNdHQ0Dco8aNWqVXr++eedWsfZQZImvv32W/30009GsdHR0frxxx/VunVrt9fxZ127dtWnn35qFHvy5EmNHj3aLXm3bNmi+fPnG8U6HA59++23tjQNuKR9+/a2NBHztFGjRqlt27YezblmzRrjezjBwcGaOnWqevXqZWtNTZo00dSpU42at6Wmpub5Ws303OSRRx5RjRo18pQrL/J6bmL6Ol955RUVL148T7ny4mo4B8vIyNBrr71mHH+paYgd94oDAgI0duxY3XDDDcbr7N6926l7u3ZxOBz66quv1KBBA9tyvPbaa7rmmmuMYmfMmGFbHaYqVKhgfF1teq8GAAAAAAAAAAAAnkXjAAAAAAA+JykpyenBxzfccIMts2FfzhtvvOHxgYnx8fEaMWKEUWxoaKhmzZqlSpUq2VzV74YMGaJOnToZxb755ptuyTly5Ejj2Y07d+6shx56yC15ryQsLEyTJk3y6Gy1vmj8+PHatWuXcfygQYP0yiuv2FgR/m7o0KFKT083in3yySd1//3321zR72rVqqUxY8YYxc6ePVvbtm3Lc84dO3Zo3rx5RrHh4eGaNGmS8UyrrnryySfVpk0bW3P4K9Pfuae++/A7ZwaqFClSRN9//72t35U1atTQxIkTjeMvXLigUaNGuSX3smXLtHHjRqPYUqVK2dqI5JIyZcroo48+sj2PLzI5Hylbtqw6duzogWrgS1588UXjcyFJmjBhglOD4OCf9u3bpx49eigtLc14nVatWunmm292ax2ZmZkaMmSIUazD4dDXX3+txo0bu7WGK+nbt68GDBhgFDtixAi3zCL93nvvGcc+8MADuv766/OcMzcPPvigOnfubHseu3Tr1k0DBw70eN4XXnjBOPa9995z+2frSjp27Gh8T2Ls2LE6e/asy7lM75X069fP5Ry+wOR1hoeH6/bbb/dANVe3SZMm6dChQ8bxH330kZo0aWJbPYGBgfr2229Vrlw543XeeOMNZWVl2VaTiYceesj2Y05MTIxxU84TJ04YNw62i8PhUIUKFYxit27dam8xAAAAAAAAAAAAcAmNAwAAAAD4nAceeEB79uxxap1//etfNlXzVzVq1NDgwYM9kuvP3nvvPZ0/f94o9u2331bDhg1truh/HA6HPv/8c6PZWjds2KBff/01T/kyMjI0btw4o9iQkBDjwch5VbNmTT399NMeyeWLsrKynBpA2rhxY7cN1oSZvXv3Gs/m1rhx4zzPqOisO++8U127djWKNT0G5GTMmDGyLMso9oUXXlCVKlXynDM3DodDY8eOVVBQkO25/M3BgweN4kqXLm1vIfjDzz//rJUrVxrHf/zxxx6ZVbR79+668847jeNHjRrl1CDiK5kwYYJx7FtvvaWCBQvmOaeJO+64I981JElOTjYa2Ne0aVMFBPAnkvxk9+7dmjx5snH8I4884rHrTHjPtGnT1LhxY50+fdp4nYCAAH344Ydur2XSpEnau3evUeyjjz7qscHVl7z77rsqVapUrnEnTpzQnDlz8pQrKSlJU6dONYotXLiw3njjjTzlc8aHH37ol+froaGhev/99z2ed8mSJVq6dKlRbI8ePfTwww/bXNFfPfvss6pXr16ucWlpafrqq69cznP48OFcY4oUKaJrr73W5Ry+wOR1xsbGGs9mjit79913jWO7dOmi/v3721jN72JiYvT5558bx+/bt08zZ860saKclShRwm1NbnMzYMAA42uPFStW2FxN7kzvrcTFxdlcCQAAAAAAAAAAAFzBU3EAAAAAfEZWVpYeffRR44Gtl1SoUEE9e/a0qaq/GjJkiMcfEM/IyNCnn35qFNuoUSOvNDYoV66c8cPdeR3w++OPP+rcuXNGsQMHDlTFihXzlM8ZTz/9tAoXLuyxfL5k9uzZOnLkiFFsUFCQxo8fb/vs7firTz75xGgmt8DAQH366adeGQzz1ltvGT1I/dVXX+VpoG9WVpamTJliFFusWDE99thjLudyVrVq1XTPPfd4LJ8/SExMNJ7dk8YBnvPFF18Yx7Zt21a33nqrfcX8zTvvvGPU0EiSzp49qx9++CFP+VJSUjR9+nSj2NjYWKcaG7iDpwbD+IqLFy8axZUpU8bmSuBrRo8ebdw0qGLFih5vogTP2r17t/r166fevXsrPj7eqXWfeuopo4HGzjJtRlC2bFkNGzbM7flzU6BAAb344otGsXm97p8xY4aSk5ONYp955hnFxMTkKZ8zqlat6pezwvfr10+VKlXyeF7T/To6OtqWhhy5CQoKMm48kZf92uT85Go4N8kvr9Pbfv75Z+3cudMoNigoSCNHjrS5ov/p1KmTU/fpnbmudLdnn31WUVFRHslVqlQpNWvWzCh206ZNNleTO9PP6aFDh2yuBAAAAAAAAAAAAK6gcQAAAAAAn3Dq1Cl17tzZpRnIn3rqKQUGBtpQ1V+VLVtWvXv3tj3P382YMUOnTp0yin3zzTe9NnPqE088oeDg4FzjTAfWXYnpLKEBAQF6+umn85TLWQUKFNCDDz7o0Zy+YsyYMcaxjzzyiGrVqmVjNfi7tLQ0TZo0ySj29ttvV/369W2u6PJiY2N100035Rp35syZPM3AtmTJEp08edIodvDgwYqMjHQ5lyuee+45ORwOj+b0ZQcPHjSOZRCKZ6Slpenbb781jvf0wPUSJUo41fAjr4NVfvzxR+PB6o888ojHz9VatGihxo0bezSnN5k2lvHH2aLhupSUFONzIUkaOXKkwsPDbawI3nDkyBF99913uuGGG1SjRg2Xjv+33HKLLd9r69ev1+bNm41iX375ZY+fn17Sv39/FSlSJNe4BQsWGA/8v5ypU6caxUVERGjQoEEu53HVo48+6vGceeFwODzaDO2S48ePGzdoeuSRR7zWBKxLly6qXbt2rnFbt27V/v37Xcphcn5yNZyb5JfX6W0TJ040jr333nt17bXX2ljNP73++uvG1zzz5s0zvu/tTtHR0Ro4cKBHc3bq1MkobteuXTZXkjsaBwAAAAAAAAAAAPg3/ioLAAAAwKtSUlL0xRdfaNiwYTp27JjT69euXdtjD4nfeeedHmlQ8Hfjx483imvUqJE6duxoczVXVrx4cd188836/vvvc4z77bfftH37dsXGxjqdIzs7W/PnzzeK7dKli8qXL+90jry677779OabbxrN7H61OHnypBYsWGAUGx4ermeffdbmivB3M2bM0Llz54xin3vuOZurydnAgQM1e/bsXOPmz5+v6667zqUcc+bMMYoLCgpS//79XcqRF1WqVFHHjh21cOFCj+f2Rc48iO6twUb5zbJly3T+/Hmj2KZNm6p58+Y2V/RPgwcP1ogRI5SRkZFr7I8//qikpCSXB2GaflYjIyN15513upQjrwYNGqT169d7JbenhYWFGcUdOXLE5krgS3744Qfj41aDBg10880321wRTH3wwQcurZeUlKT4+HidP39ep0+f1oYNG1y65/BnzZo109dff21LAxjT6/6SJUvqnnvucXt+UyEhIbr77rv13nvv5RiXlpampUuXGjUF+7usrCwtXbrUKPbWW29VwYIFnc6RV7GxsWrVqpVWrlzp8dyuaNq0qapVq+bxvJMmTVJmZmaucaGhoXr88cc9UNGVDRw4UI888kiucfPnz9dDDz3k9PZNzk+uhnOTsLCwXJuGXA2v09ucacrqjaYh1atX14033mjUOCQzM1OzZs3SgAEDPFDZ//Tp08fjTXiaNm1qFLd7926bK8md6b2VCxcu6Pz58ypUqJDNFQEAAAAAAAAAAMAZNA4AAAAA4HHp6enasGGDfvzxR40ePVqnT592aTuBgYEaM2aMx2aq6t27t0fy/FliYqKWLFliFOvpBywvp1u3brk2DpB+n33QlcYBv/76q/HgZ28NzCtbtqzatGljPNDhajBnzhxZlmUUe/fdd6tYsWI2V4S/mzlzplFcs2bNVKtWLZuryVmnTp0UHh6ulJSUHOMWLFigESNGuJTD9PPZoUMHlSxZ0qUcefXvf/+bxgH/7+DBg8axNA7wDGf2zfvvv9/GSq6sRIkS6t69u9GMxenp6Vq+fLm6dOniUi7Tc7Xrr7/eazNEd+/eXYMGDcoXjY0KFSqkwMDAXF/rokWLlJGRoeDgYA9VBm8yaUp0ydNPP21jJXCWtwcTX3LXXXdp7Nixxs1JnDVr1iyjuHvuucfrx61u3brl2jhA+v183ZXGARs2bFBCQoJRbM+ePZ3evrv07t3bbxoHeON+lmR+HdqjRw9dc801NleTs27duhk1DliwYIFLjQOKFCmSa8zJkye1ceNGNWjQwOnt+4oiRYro8OHDOcZs2LBBp0+fVtGiRT1U1dVl27ZtOn78uFFs27ZtVaNGDZsrurwHHnjAqHGA9Pv1pafva3fr1s2j+SSpZs2aRnEnTpyQZVlyOBw2V3RlZcuWNY49ePAgjQMAAAAAAAAAAAB8DI0DAAAAABhJSEhwaaY/y7KUkJCg8+fP69y5czp8+LB+/vnnXAeEmnj77bfVokWLPG/HRKFChbzy4O6iRYuUnp6ea1xAQID69OnjgYpy1qlTJ6O4n3/+2aXtmw72DQ4O1o033uhSDnfo3r17vmocYPogsCT17dvXvkJwWdnZ2VqwYIFR7O23325zNbkLCwtTq1atch2YvH37dqWkpCg8PNyp7Z85c0Zbt241ir3llluc2rY7de3aVUFBQUYzdF7tTpw4YRQXHBys6Ohom6uBZN44IDg4WN27d7e3mBzceuutRo0DpN9fkyuNA86ePatdu3YZxXpzBvNrrrlGLVu21PLly71Wg6cEBQWpTJkyOnToUI5xZ8+e1bhx47zW3AKek52drXnz5hnFxsTEePW4Bd8TFRWl119/3WhAsas2b96sY8eOGcX6wvl6y5YtFRERkeus4q5e95sOxg8LCzO+B2GHbt26eWUmb1dcd911Hs957tw5rVu3zijWF/br8uXL69prr9XevXtzjHN1v65YsaLRedjw4cP17bffupTDF1SsWDHXxgFZWVl699139dZbb3moqquLM03cvHmvuFOnTipUqJDOnz+fa+zixYuVnZ2tgIAAD1T2ezNibxwXy5Urp9DQUKWlpeUYl5WVpbNnzxo1HLFL4cKFjWNN79kAAAAAAAAAAADAc2gcAAAAAMDI+fPnfWamP0nq37+/nnzySY/la9WqlVdm+fnxxx+N4po0aeLUA312KVWqlEqUKJHrA4ObN292afsbNmwwimvUqJFiYmJcyuEOnTt39lpub1i2bJlRXMWKFdWsWTN7i8E/rF+/XmfPnjWKveGGG2yuxkzDhg1zfRg+KytLW7ZsUdOmTZ3a9saNG2VZllFsx44dndq2OxUuXFgNGzY0HmxzNUtKSjKKc7aJBFxz8eJF4+Ybbdu2VcGCBe0tKAddunRRWFiYUlNTc41dtWqVSzm2bNliHNu6dWuXcrhLq1at8kXjAEmqV69ero0DJOnZZ59V06ZNVb9+fQ9UBW/ZunWrzpw5YxTbo0cP22aUh38JDAzUvffeq9dee03Fixe3NZfpdX/JkiVVt25dW2sxERQUpDp16mjt2rU5xm3dutWlgaCm362NGjXy6ue1YsWKKl26tI4ePeq1GkzExMSoTp06Hs+7cOFCZWdn5xoXHBzslQG8l9OwYcNcGwecOHFCp06dUrFixZzadr169TRx4sRc47777jt16tRJ/fv3d2r7vqJevXr66aefco1799131b59e11//fUeqOrqsnr1auNYbzZDCg4OVteuXfXll1/mGnv27Fnt3r1bNWrU8EBlUtWqVRUVFeWRXH/mcDhUpEgRo++NM2fOeLVxgDP3V0zv2QAAAAAAAAAAAMBzPNOyGwAAAADcaMCAAfrss888mtNbD+ebDhht06aNzZWYq1mzZq4xe/bsMRrE93emAxVbtGjh9LbdqVq1aipU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ffZZw/lhw4bp9u3bJnb0f0aPHm34fVgXFxe9+OKLJncESxh9L6VNmzYmdwIAAAAAAAAAAID0YHAAAAAAAGQCL774ooKCggxlL1++rHbt2ikyMtLkrhyndevWhn8e0dHR6ty5s6lXVl29erU+/PBD09bPLD744APDV5uKjY1V586dLbrSXUZVokQJQ7c7Pj5ea9eutUNHj5YzZ06NHDnScL5///7atGmTiR05lpubm4YMGWI4//777+v33383rZ/79++rc+fODh0ukRkY/XA6gwPMlyNHDg0cONBw/scff9TixYvNa+j/Gzx4sEUDg95//32b1e7evbsqV65sOP/222/r22+/tVn9v0RGRqpdu3bat2+fzdfODJKSkhzdwkP37t3T0qVLDWWNvrZNTdmyZQ3lli1blu5amZGHh4fGjRtnOH/ixAn16tUrQ92n4Bivv/66cuTIYThvyZWW/65FixZq2bKloWxUVJTatGnzRPw9lZqPPvpITk5OhrK3b99Ws2bNTBmosG3bNnXs2FEJCQk2X/tJV7ZsWfXv399Q9sGDB3r22Wd19OhRk7uyr4z2PDJjxgxDOUtfm2Sk25mcnKyff/7ZUNYWr8EcYcSIEYbPj1evXlX//v2VkpJiak8bN260aDha9+7dVaJECRM7giUePHhgaHiLk5OT4aGOAAAAAAAAAAAAcAwGBwAAAABAJuDi4mLRBy937dql1q1bZ6irzIaHh6t///6Gr/iVGicnJ33wwQeG82FhYerevbvi4+PTXfvfdu3apR49eujBgwc2XzuzKVWqlOENAZJ09uxZNWnSRNeuXTOxK/N5eHjo6aefNpT99NNPTe4mdcOGDVORIkUMZWNjY9W+fXutW7fO3KYsEBsbqy+//FKff/65TdYbNGiQ8ufPbyiblJSkLl26KCwszCa1/y4mJkadO3fWsWPHbL72k6ZZs2Zyd3dPM7d169YMtXHlSfXmm29adBXSPn366ODBg6b18+mnn2r69OmG8zVr1lTz5s1tVt/Z2Vlffvml4XxycrIGDRqkt956S4mJiTbp4eTJk2rQoEGWHp7x3nvv6aWXXtLp06cd3Yo+/fRTxcTEGMo2bNgw3fVq1aplKDd9+nTduXMn3fUyo+eff96iDYLLly9Xz549HfacYvYGPxjj5+enYcOGGc6vXr1aO3futKrWJ598Yvjq7KdP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eFI49pKDAAAAABxm2rRpFuXfeusteXh4mNSN7fXu3VuFCxc2nF+0aJFu375tYkfG3bp1S71791bLli1tMjTg7xISEjR16lSVLFlSU6ZMsena1rhz547eeecdFShQQEOGDNHu3bttMjQgNbdu3dLKlSs1bNgwBQYGqk6dOvrss8908+ZNU+s+zvr169W8eXNVqVJFn376abqGBjzKlStX9MUXX6hMmTJ67rnndOLECZuubw+HDh1SgwYN1Lt3b5sODZCktm3bKnfu3IayISEhNq2dXikpKZoxY4ahbKtWrZQnTx5T+0lMTNT06dNVrlw5tW3bVrNmzUrX0IBHOXz4sEaMGKHAwEC9++67unv3rk3Xt4W5c+eqRIkSmjRpUrqHBvxbWFiYunXrpjZt2ujChQs2XRsAAAAAAAAAAAAAAAAAAABA5sbgAAAAACALSkxMNLzZVJKeeuop9e3b18SObM/FxUWvvfaa4Xx8fLxmzpxpYkfG7N27V+XLl9fPP/9sap379+/r9ddfV4cOHXTr1i1Taz3O7NmzVaJECf3nP/9RdHS0Q3pISUnRjh079MYbb2j58uV2rX3q1Cm1aNFCzZo107p160yvl5ycrLlz56pixYoaO3as4uPjTa9pC1OnTlXVqlW1detWU9Z3c3NTr169DGV//fVXm2+ET49Nmzbp7NmzhrL9+vUztZe1a9cqKChIL7zwgo4fP25qLUmKjIzUxx9/rDJlymju3Lmm1zMiJiZGL774op577jldv37d1FqrVq1S+fLltWbNGlPrAAAAAAAAAAAAAAAAAAAAAMg8GBwAAAAAZEHr1q2zaFNj//795eXlZWJH5njppZfk6elpOG/2Zv20rFq1Sg0bNtTVq1ftVnPZsmWqXbu2IiIi7FYzISFBffv2Va9evXT79m271c0oUlJSNGHCBFWoUEFr1661e/2EhASNGzdONWvWtOvv3VLJyckaPHiwXnnlFSUmJppaKzg42FAuJiZGv/zyi6m9WCIkJMRQLmfOnGrXrp0pPdy7d089e/ZUixYtdOrUKVNqpObatWt67rnn1LNnT8XExNi9/l9u376tJk2a6KeffrJbzfv376tt27aaPn263WoCAAAAAAAAAAAAAAAAAAAAyLgYHAAAAABkQStXrrQo37NnT5M6MVf27NnVunVrw/m9e/fq5s2bJnb0eBs2bFDH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9MUXXxg+ply5cmrXrp1N6hcoUEAzZsyQi4uL4WOio6M1bNgwlS5dWt99951pQziOHTumTz/9VPXq1VPRokU1YsQInTlzxpRaWcnzzz8vZ+e032qJj483tF6xYsXUoEGD9LZlE61bt9a7775r0TERERFq27at6tevr6VLl+rBgwc27+vBgwfatm2b3nvvPZUqVUrVq1fXF198obt379q81t+NHTtW1apVs+iYOXPmqGTJkpo4caJu3bpl0bFnz57VsGHDFBQUpK1btz42lz9/fg0YMMCitQEAAAAAAAAAAAAAAAAAAAA8GVwd3QAAAACAjMfd3V0LFixQ165dtWTJEouPv3nzpsaOHasPPvhALVq0UOvWrdWsWTOVLVvW8BqxsbHaunWr1q1bp19//VXh4eEW9/GXv4YGNG7c2Oo1zODm5qaffvpJtWrVeuyG2qSkJH377bf67rvvVLt2bbVq1UrVq1dX6dKllStXLnl7eysuLk53795VeHi4Dhw4oLVr12rdunWKi4uzuCdXV1f9/PPP8vf3T+/NS9P9+/c1Y8YMzfh/7N17lN91fe/71yeZySQhVxAIl2AAuahVKSoqghQFL4C21W7d9VhA5bhpxctppad68Oiy6up2rx61WFQsWmy1ctSyablYpCqKXBWBo7K5h6AQ7iGT+2U+5w+iy5ZkfpPM7ze/+WQej7VmudZ8Pr/v+z0RhrWY+T358pczODiYF73oRTnqqKPy0pe+NIcddlj23Xff7XperTU33XRTLr744nzzm9/MzTffvN07ffrTnx7TG7/H6oQTTsjnP//5nHbaadv1uqVLl+aP//iP8773vS8nnXRSTjjhhBx77LFZvHjxdu8wPDycW2+9Nddff32uvfba/OAHP8iyZcu2+zl0tt9+++XlL395rrjiiq4875RTTkkppSvP6oaPfexj+eUvf5kvf/nL2/W6q666KldddVX22muv/P7v/35OOOGEHHnkkVm4cOF27/DQQw/lpz/9aa699tpf//Xc60jA1gwODuarX/1qnv/852d4eHjMr1uxYkU+8IEP5CMf+Uhe8YpX5Pjjj89hhx2Wgw46KPPnz8/MmTOzZs2aPProo7ntttvy4x//ON/61rfywx/+MCMjIx2f/9nPfjY33njjeL40AAAAAAAAAAAAAKBRwgEAAMBWDQ4O5utf/3pOO+207X6T6K9s3rw5l112WS677LIkyYIFC3LIIYfkkEMOyR577JE5c+Zkzpw52bhxY1atWpXh4eEsXbo0t912W+66665s2rRp3F/H0572tPzzP/9zjj766HE/qxde8IIX5KMf/Wje//73j3qv1pqrr746V199dU/3Offcc/PSl760pzO2ZuPGjb9+c/GvzJs3L4ccckj22Wef7L333tltt90yc+bMzJw5Mxs2bMjq1auzatWqLF++PLfddltuv/32rF69eod3OOOMM3Lcccd148v5D97+9rfnsccey5//+Z9v92tXr16dCy64IBdccEGSJ/96fvazn53Fixdn7733zpw5czJr1qyUUrJ+/fqsW7cujz/+eB588MEsX748d911V+6///5uf0mM4tRTT+1KOKCUklNOOaULG3VPKSXnnXdennjiiR2KyjzwwAM555xzcs455yRJlixZkkMOOST77rtvFi1alNmzZ2fmzJnZvHlz1q9fn7Vr1+bRRx/N8uXL88ADD+T222/vSyRgWw466KB84xvfyIknnrjd/7xat25dLrnkklxyySVd2+f000/P6173OuEAAAAAAAAAAAAAAJiihAMAAIBtGhwczPnnn5/DDz8873vf+8b9Rv4VK1bkuuuuy3XXXdelDUd3+OGH58ILL8x+++03IfN21F/8xV/ktttuy9///d/3dY8Pf/jDeetb39rXHX7TypUrc8MNN+SGG27o+axjjjkmf/3Xf92z55955plZuHBhTj/99GzevHmHn/PII4/kyiuv7OJmdNvrX//6zJs3LytXrhzXc4499tg8/elP79JW3TMwMJBvfOMbOf3003PeeeeN61lLly7N0qVLu7NYn7zyla/Mueeem7e//e2ptfZ1j7PPPrtv8wEAAAAAAAAAAACA/pvW7wUAAIDJ7z3veU+uuOKK7LPPPv1eZcze+ta35qqrrpr00YBfOffcc3PSSSf1bf7HP/7xfOhDH+rb/H466qijcvHFF2fGjBk9nXPaaafloosuyoIFC3o6h/6aNWtW3vSmN437Oaeeeur4l+mRgYGB/N3f/V0+8pGPZNo0/2rprW99a84///wMDPSnz3nEEUfk61//et/mAwAAAAAAAAAAAACTg9/uBgAAxuSYY47JrbfemjPOOGNSv1H0gAMOyOWXX54vfvGLmTVrVr/XGbPBwcFceOGFOe200yZ07tDQUM4777y8//3vn9C5k8Vb3vKWfPvb386cOXMmZN6JJ56YW265Jcccc8yEzKM/xvum/7lz5+YNb3hDd5bpoQ9+8IP53ve+l6c//en9XqXv/uiP/igXXXRR5s+fP6FzX/va1+a73/1u5s2bN6FzAQAAAAAAAAAAAIDJZ/K+2wcAAJh05s6dm7PPPjvXXHNNjjzyyH6v8x/MmTMnH/jAB/LTn/40xx9/fL/X2SEDAwP5whe+kE996lOZPXt2z+cdeuihue666/K2t72t57MmmwULFuS8887LP/zDP2TmzJkTOnvx4sX5zne+k7PPPju77bbbhM4eq9122y3vfe97J/zPZmdx5JFH5uCDD97h17/xjW+ckO8B3XD00Ufn5ptvzrvf/e4MDg72e52tOuigg/KOd7yj53NOOOGE3HTTTXnxi1/c81kDAwM566yzcuGFFzbz1woAAAAAAAAAAAAA0FvCAQAAwHY74ogj8sMf/jDf+c538opXvKKvuyxYsCAf/OAHs3Tp0nzsYx/LrFmz+rpPN7znPe/JLbfc0rMAwty5c/PRj340N954Y573vOf1ZMavfOYzn8l73/veHHTQQT2dM1YDAwM57bTT8vOf/7yvwYRp06bljDPOyJ133pkzzzwzc+bM6dsuvzJjxoycdNJJ+ad/+qf88pe/zCc/+ckMDAz0e61mnXrqqX15bT/Mnz8/n/70p/Ozn/0sf/AHf5Bp0/r/r5sWLlyYt73tbfnud7+b22+/fULCAUmyZMmSXHXVVfnbv/3b7L777j2ZccQRR+RHP/pR/vIv/zLTp0/vyQwAAAAAAAAAAAAAoD3eAQDAlPehD32o3ysANOvYY4/Nsccem5tuuilf/vKXc8EFF+T+++/v+dxp06blZS97Wd785jfnTW96U+bNm9fzmRPtwAMPzOWXX55rr702n/jEJ3LRRRdlZGRkXM/ca6+9ctppp+Wd73xn9txzzy5tOrqjjjoqRx11VD75yU/mjjvuyMUXX5xLLrkkV199ddauXTshOyRPvon45JNPzrve9a4ceOCBEza3kwULFuQTn/hEzjrrrHzpS1/KZz/72dx2220TNn/+/Pk5/vjjc9JJJ+V1r3tdFi5cOGGzd3Ynn3xyzjrrrO3++/YZz3hGjjrqqB5t1VsHHXRQvv71r2fp0qU555xz8qUvfSmPPPLIhM1fvHhxXvOa1+R1r3tdjj/++MyYMWPCZv+m6dOn50/+5E/ylre8JZ/73Ofyuc99Lvfcc8+4n3v88cfnzDPP7FlUBgAAAAAAAAAAAABoW6m19nsHgCmhlPKSJFf/5ueuvvrqvOQlL+nTRt2zdOnSp7zxb9asWVmyZEl/FgKgb0ZGRnLllVfm0ksvzQ9+8IPceOON2bhxY1eeveeee+alL31pjjnmmLzhDW/IPvvs05XntuLhhx/OpZdemosvvjjXXXdd7rvvvo6vKaXk4IMPzvHHH59Xv/rVeeUrX5nBwcEJ2LazjRs35qabbsq1116ba6+9Ntdcc01X3lj7mxYvXpzjjjsuv/u7v5tXvepVmTlzZlef3yu33HJLLrroovzrv/5rfvKTn2TTpk1de/buu++eI444IkcffXSOPvroHHHEERkY0BSkNzZt2pTvf//7ueiii3LZZZfljjvu6NqzSynZf//98+IXvzhHH310Xvayl+VZz3pW157fTSMjI/ne976XSy+9NJdffnl+/vOfZ/PmzR1ft2jRorzgBS/IiSeemJNOOin77rvvBGwLAAAAAFOP33kAAADojlJKv1fY6XkPGDAWvh/3nu/HMDVdc801OfLII//zp4+stV7Tj322RTgAYIIIBwAwFa1duzbXX399br311tx99925++67c88992TFihVZs2ZNVq9enTVr1mRgYCCzZ8/OLrvskl122SWLFi3KAQcckAMPPDAHHnhgDj/88Bx88MH9/nImleHh4dx6661Zvnx5hoeHMzw8nJGRkcyZMydz587NkiVLcsghh2T27Nn9XnXMHn/88dx555258847c9ddd+Wuu+7K0qVLs2LFigwPD2fVqlVZtWpV1q5dm+nTp2doaCizZ8/O0572tOyxxx7Zb7/9cvDBB+fQQw/Ni170op3iTbbr1q3LT37yk/zoRz/KHXfckWXLlmXZsmV5+OGHs3bt2qxZsybr1q3LwMBAZsyYkVmzZmXXXXfNbrvtlkWLFmXJkiXZf//9c/DBB+e5z31u9tprr35/SUxhjz/+eG644YbceOONueeee3Lvvffmvvvu+/U/E9auXZsNGzZkcHAwQ0ND2WWXXbLrrrvmaU97Wvbee+/sv//+OeCAA3LooYfmuc99bubNm9fvL2mHhynYnQABAABJREFUrF+/PrfffnvuvvvurFy5MsPDw0mS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AAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANGyg3wsAAAAAAAAAAAAAAMCOKKX0e4WdXq213ysAAAAAYzCt3wsAAAAAAAAAAAAAAAAAAAAAO044AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAA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AAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADOzgugcAAAAAAAAAAAAAAAAAYHvnnnvuukfY884555x1jwAAcFSOW/cAAAAAAAAAAAAAAAAAAAAAwJETDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDADq57AAAAAAA4llXVukfY87p73SMAAAAAAAAAAAAAwNCOW/cAAAAAAAAAAAAAAAAAAAAAwJETDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEA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CQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAAAAAAAAAAAAAAAAAMNjxdS8AAADA/6+q1r3Ckdfd614BAAAAAAAAAAAAAADglB1b9wIAAAAAAAAAAAAAAAAAAADA3gkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgx1f9wIAAAAAAAAAAAAA8IW2t7fXvcKRt7W1te4VAAAAAIB9cmzdCwAAAAAAAAAAAAAAAAAAAAB7JxwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAP6mYycAAMYiSURBVAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDH170AAAAAAAAAAADAYbK9vb3uFY68ra2tda8AAAAAAABwpBxb9wIAAAAAAAAAAAAAAAAAAADA3gkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADDY8XUvAAAAAAAAAACcsL29ve4Vjrytra11rwAAAAAAAAAA++7YuhcAAAAAAAAAAAAAAAAAAAAA9k44AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBjq97AQDg8Kmqda9w5HX3ulcAAAAAAAAAAAAAAAAA4Ig4tu4FAAAAAAAAAAAAAAAAAAAAgL0TDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGOz4uhcAAAAAAABg/ba3t9e9wpG3tbW17hUAAAAAAAAAAIAj6ti6FwAAAAAAAAAAAAAAAAAAAAD2TjgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAA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SZKkEWbjAEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSRpiNAyRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJGmE2DpAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkaYTZOECSJEmSJEmSJEmSJEmSJEmSJEmSJEmSpBFm4wBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkkaYjQMkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSRphNg6QJEmSJEmSJEmSJEmSJEmSJEmSJEmSJGmE2ThAkiRJkiRJkiRJkiRJkiRJkiRJkiRJkqQRZuMASZIkSZIkSZIkSZIkSZIkSZIkSZIkSZJGmI0DJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEkaYTYOkCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRphNk4QJIkSZIkSZIkSZIkSZIkSZIkSZIkSZKkEWbjAEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSRpiNAyRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJGmE2DpAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkaYTZOECSJEmSJEmSJEmSJEmSJEmSJEmSJEmSpBFm4wBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkkaYjQMkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSRphNg6QJEmSJEmSJEmSJEmSJEmSJEmSJEmSJGmE2ThAkiRJkiRJkiRJkiRJkiRJkiRJkiRJkqQRZuMASZIkSZIkSZIkSZIkSZIkSZIkSZIkSZJGmI0DJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEkaYTYOkCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRphNk4QJIkSZIkSZIkSZIkSZIkSZIkSZIkSZKkEWbjAEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSRpiNAyRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJGmE2DpAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkaYTZOECSJEmSJEmSJEmSJEmSJEmSJEmSJEmSpBFm4wBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkkaYjQMkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSRphNg6QJEmSJEmSJEmSJEmSJEmSJEmSJEmSJGmE2ThAkiRJkiRJkiRJkiRJkiRJkiRJkiRJkqQRZuMASZIkSZIkSZIkSZIkSZIkSZIkSZIkSZJGmI0DJEmSJEmSJEkDERHTIiIrfk2d7HVIqiYiFoiILSLiVRHx+Yg4OSLOj4gbI+KeiJjZw8/0BYP++0gaPxFxTA/nqYMarKNqDdlUDZJGw7CctyRJmpdheZ8aljokTR6eVwYvInbs4d/gjEHXK0mSJEkSwJRBFyBJkiRJkiRJkiR1ExFTgGcBL+v8d7nBViRJkiRJkiRJkiRJkiRJw8XGAZIkSZIkSZIkSRpKEbEwcAjwTmDNAZcjSZIkSZIkSZIkSZIkSUPLxgGSJEmSJEmaVCJix4ZTJDAbeHCur1md/96bmTMazi9J0liIiG2AbwGbDLqWYRYRxwAHtpjykeufmcB04FbgFuAm4J/AJcAlmXlrizVJkiQNVI3XZF/OzNfXME9rImJX4NQapro2M6fWMI8kSZIkSZIkSdLYsnGAJEmSJEmSJpvfDTJ5RNwP3PaYr6spFtJdBlyRmbMGV6EkScMvIg4CjgQWGnAp+m+LdL6WBlYG1plXUERcA5wBnA78IjPvbqk+SZKkUfaSiHjriN07OnjQBUiSpOEQEdliujn8Z5Pvu3n0c7mbgMspPpf7R2be2GJdkiRJkiRJA2XjAEmSJEmSJKleSwBrd77m5eGImAZcBPweOAc4PzNnt1OeJEnDLSJeCxwx6Do0YY9cDx0MzIqIXwHHAj/LzDkDrUySJGl4rQDsCfxo0IVUERFLAy8YdB2SJGksLQAs1vkCWAXYYF6BEXE9xWdyZwInZeZNrVQoSZIkSZI0ADYOkCRJkiRJktq1ILBu5+uRB6tnRMR5wGnAiZl5+aCKkyRpkCJid+BLg65DtVsY2KvzdUVEfAo4OjMfGmxZkjRcIuJNwLIVwz+fmXc3VoykQTqIEWkcAOzHo4v1pKESEc8HNq8Y/tPMvKCxYqQWRcRBwNSK4cdk5rTGipGGxxoU1y37AUdExLnAd4DjMnPGQCuTJEmSJEmqmY0DJEmSJEmSpMFbHNix8/XhiLgIOJGiicA/B1iXJEmtiYjlgG9RNNnR5LU+cCTwxoh4XWaeNeiCJGmIvAlYq2LsMcDdTRUiaaB2j4hVMvPWQRdSwUGDLkDq4vnAgRVjpwEXNFWI1LKDgGdUjD2D4vtfGicBPLXz9dGI+Drwycy8a7BlSZIkSZIk1WOBQRcgSZIkSZIk6b88CfgQcFlE/DYi9oiIGHRRkiQ17HBgtUEXodZsDJwZEV+MiIUGXYwkSdIQmQK8bNBFlImIDYDtBl2HJEnSBCwHvBO4IiJeFxE+Vy9JkiRJkkbelEEXIEmSJEmSJKmrnTtfl0XEZ4FjMnP2gGuSJKlWEfE44NV9Hn4+8FfgQuBO4F7g/orHTu8zp+rzemDriHhhZt486GIkSZKGxIHAZwZdRImDBl2AJElSTVYAvgLsExH7e49KkiRJkiSNMhsHSJIkSZIkSaPhicCRwJsj4g2ZedqgC5IkqUavBBbpIT6BI4AvZublzZSkFm0HnBERO2XmTYMuRpIkaQhsGhFbZeZfB13IvETEgsDLB12HJElSzXYCLoyI52bmeYMuRpIkSZIkqR8LDLoASZIkSZIkST3ZEDg1In4UEWsNuhhJkmpyYA+xDwDPzsz/sWnApPIE4MyIWGnQhUiSJA2JgwZdQBe7AasPughJkqQGrAScFhFPH3QhkiRJkiRJ/Zgy6AIkSZIkSZIk9WVvYNeIODgzfzzoYiRJ6ldEbASs3cMhb83MXzdVzxj4BHBKn8cGsCiwOMVCsTWBzYGtgWVrqG094PsRsVtmPlzDfJIkSaPsJRHx1sycNehC5uHgQRcgSZLUoKWAX0bEtpl5yaCLkSRJkiRJ6oWNAyRJkiRJkjTWMjP6PTYiFqFYPLcosAiwDLBa52tVYC1gE2BjYPkJF/vflgZ+FBGfAd6ZmQ81kEOSpKbt2kPslZn51cYqGQ+XZeYZdU4YEQsC2wEvBfanuEbp107Ah4F31VCaJEnSsEqKpkzdrADsCfyo+XKqi4jlgL0qhlf5e0qSpPG10wSOXQBYDFiS4nO5NSk+k9uKej6TWxL4WURsk5l31TCfJEmSJElSK2wcIEmSJEmSJPUpMx8EHgTumeuP/z6v2IhYDXgKsAuwM7BRjaW8FdgmIvbMzHtrnFdqVGZOHXQNkobCk3uIPaapItS/zHwYOAc4JyLeCfwvxfXJon1O+baIOD4zL66rRkn/bSJN1CRJE3Y2sEOFuIMYssYBwEsoGmiWuQZYkGIRnyRNepl5EMV5W1JFdTe3BIiIBYDNgRcBBwCrT2C6dYHPAgdPvLLeeV6RJEmSJEn9WGDQBUiSJEmSJEnjIDNvzsyfZubrM3Nj4PEUi+rm2WigDzsAp0TEUjXNJ0lSWzbpIfa0xqpQLTLz3sz8P2BL4MI+p5kCfKW+qiRJkobOMRXjdo+IVZospA8HVYw7DsgG65AkSfovmTknM8/PzHcCawOvAW6fwJQHRsTT66lOkiRJkiSpeTYOkCRJkiRJkgYgM2/MzE9l5pMoFtZ9D5gzwWm3w+YBkqTRs37FuDnU13BHDcvMfwBPA07pc4odIuIZNZYkSZI0TM4AplWImwK8rNFKehARGwPbVAhN4NiGy5EkSeoqM2dl5pHAE4Gf9DlNAJ+srypJkiRJkqRm2ThAkiRJkiRJGrDM/FtmvgTYmKKBwERsD/wsIhaceGWSJDUrIpYBFq8YfmNmzmiyHtUrM6cDLwDO6nOKt9dYjiRJ0jDpZWH9gU0W0qODKsadmZnXNFmIJElSVZl5J/BC4DN9TrFtROxQY0mSJEmSJEmNsXGAJEmSJEmSNCQy87JOA4FnAddOYKqdgA/XU5UkSY1atYfYexurQo3JzJnAPsAtfRy+R0Q8ruaSJEmShsWxFA0EymwaEVs1XUyZiJgCvKxi+DENliJJktSzLLwN+FafU7yxznokSZIkSZKaYuMASZIkSZIkachk5m+ATYBvT2Cad0TEc2oqSZKkpizRQ+x9jVWhRmXm7cBr+zg0gL1rLkeSJGkoZOY1wFkVww9qsJSqdqda46/pwA8brkWSJKlfhwEX93HcsyNiybqLkSRJkiRJqpuNAyRJkiRJkqQhlJnTM/PlwHuptvvcYwVwXESsVm9lkiTVatEeYh9srAo1LjN/Cpzdx6E2DpAkSZPZMRXjXhIRCzdZSAUHV4z7YWbe32glkiRJfcrMmcDr+zh0MWCPmsuRJEmSJEmqnY0DJEmSJEmSpCGWmR+m2FWun+YBywMfr7UgSZLqtdCgC1CrPtPHMU+JCL9PJEnSZHUiML1C3ArAng3XMl8RsQLw3IrhRzdZiyRJ0kRl5hnAmX0culPNpUiSJEmSJNXOxgGSJEmSJEnSkMvM44C393n4ARGxTZ31SJJUoxh0AWrVz4HbezxmMWCzBmqRJEkauMy8H/hhxfCDGiylzP7AwhXirgbObrgWSZKkOny1j2O2rb0KSZIkSZKkmtk4QJIkSZIkSRoBmfkZ4Et9HBrAFyLChZmSJGmgMnMOcHIfh25Vdy2SJElD5JiKcbtHxCpNFtLFQRXjjs3MbLIQSZKkmvwSmNXjMZtGxCJNFCNJkiRJklSXKYMuQJIkSZIkSVJlbwN2BDbt8bjtgOdS7PI71DoNDp5IsWvLesDawDrAysDiwBIUOw/PAmYA9wO3AtcA04CLgXMz86q2ax+EiFiMYjHllsBUYK3O1woUr9fiFK/XHOBBitfsDordnq+j2Anwn8CFwD8z8+F2/wZqSkQsTfFztBnFz9HaFN8bS/Hoz9IUip+h+4H7gGspfpauAs4DzsvMGa0XLyJiIWAL4CnAuhTnwanAshT/dksAC/LoeXA6cD3Fz/TVwN8ozoX3tly6VMU59L5b7tT6y6hHRKwOPBXYAHgCsD6wIrBk52sx4B7gX8ANwGXA+cB3MnNmi3X6vjAfnevPrYCnAxsBGwKPo3htlgKS4vW4D7gLuBy4FLgEOCsz7xhA2ZqPiFiY4vt8ax79Pl+LR3+feOQrKa6PH6D4+byd4mf0KuAKiuvjSzOz10UkqonnrfnzvDUpnUVxHb9OSdwU4GXAZxqvaC4R8SSK30/KJHBsw+UMVEQsQHFfbluK6751KM5Py1OclxYHFubR39XuB27k0d/V/g6c488hRMTGFO/Xj1xHr0PxO+8j19FTgDsp3qenUZzDfp+ZPxtAuSOj8x6xDsX36SP3VqcCK1H8nrIssEjnaw4wk+J6aDpwM8X10A0U91j/RnE9NLvNv4MktSUz74uIv1J8hlbVgsCaFL83aj4i4vE8+j6/AbAGxe/lK1FcLy1Ccc30yGd9D3T+O4PiPelGivf/aztf04Cr2ryXJkmSJEnSKLNxgCRJkiRJkjQiMnNWRBxAsQBi4R4PfwND2jggIpYHXgA8H9ie4mHrMot1vlageEhrm8fMeStwCvAD4NTJ8oBr5+HfbYG9gV0oHgKucp93QWAhigevV55PzIyI+CPFgoVTgT92dobWiIiIbYEXUXxvbAIsUOGwpTtfq1E8qD+3hzoPTv4I+EFmXltjuXqMzs6h+1KcD7eleICyzCP/flAsWtl5rrE5EfF3ip2zTsjMv9dYrjQRf+3jmLVqr2ICImIbYD/gmRTn2zLLd77WB3bq/NlpFA89N8b3he4iYjvg1cBzKB5c72YRioVWa1M0bHrEnM71088pdli+uYla1V1EbEZxffxMioWtVXd/nEKxyHNFioUMjzUrIv5CcX18GsWC60nxe8Ww8rzVneetySszMyKOBQ6vEH4gLTcOAA6uGPe7Uf85m5eIWIbifWYfioZRy1Q47JFGHlA0g9vhMXNeBvyG4ne1P9ZX7fCKiAUpzl/Pp3jPflyFw1bpfG0E7EHxHmHjgLlExHIUjWS273xtQXH/r4pH7hcuRXG/cF7NSx6MiLMo7i38IjOvnHDRGnsR8UyK79cqEvjUsDeD6jRD2beHQ07IzH82VY968hd6axwAxX0qGwfMJSIWp3h/fz7Fva81Kx66aOeritkRcSHwx0e+xqWJuCRJkiRJvYrMHHQNkiRJkiRJUm0ioqcbXpkZTdXSlIj4OPCOPg7dKDP/UXc9/YqIZwP/A+xG8ZBqU+4EvgZ8ITNvazBPYyJiLeD1wEuA1VtKezvFYpLvAGdkAzeTI2Ia1ReDrp2Z0+quYZjq6EdErEzxvXEAzS+sPQP4ZGb+quE8YyUidgXeBuxK8dB+Uy4BvgwcnZkPNpgHgIg4A3hG03n6dG1mTh10EXWJiGMoFpBVdXBmHtNMNeU6C6/u7vGwszKz5++nXq4Ly64JI2IK8FKKa5dtusVW1Mj7ie8L5SJib+C9wOY1Tz2L4rrp02XX3D3+3Db2M1vnz0jbImIl4LXAyykWZLbhXopFc8cDp2TmQ71O0OvvqwNyZmbu2FYyz1vlPG+Nhj6uyf7jWqDze/81QJXz7daZ2U8zpp5FxEIUO76WNasAeHlmfvsxx0+j+s/2UF2nd5pF/S+wJ9Wb0vTjGuDrwBGZeV+DeSqJiB2B31UML33P6DQMfQ1wKNUXEc7Pf3yPDPnvnf9W93VU53tzT4oFmlvT7L2ExzoT+Crw42FqqDQs71Nt1dHjuXVQ5ntOj4gdKL6XqjokM79VS1UNiYhvAy+rGD4dWH0YzvlNGLXP6CLiTcDnejystevdYTm/zU9EbAQcRvH73FIl4U24EfghcCJwbkOfY+1IjddGTYqITSjuW6zR46GXAXtk5jX1VyVJkiRJGoQq3dklSZIkSZIkDZdPUixa6dXr6y6kV1HYr7MryC8pdgtrsmkAFDv8vhuYFhGfjYhBPLzUl4jYIiJ+AFwFvJX2mgZAsSjgFcDpwLUR8e7OAi0NgYhYMyKOAK4F/o92HhbeEfhlRFwQETuXBau7iHhWRPwJOBV4Fs0/6L8xxcP9V0fEGzuLoKXWZeY9wP09HrZEE7VUFRHPAC4AjqWepgG1832hXERsHhFnUuw8vnkDKRamuHa6KCI+HhFVd8xTDyJi3Yj4JnAdxc7cbTUNgGJX+/0ommvd3Pl3HvYFW0PL81Y5z1vjJTOvpWhuUcVBzVXyX55DtaYB91F8r468iHhKRPwGOA/Yh2abBgCsDXyc4t7L+zs79o68zj3AVwGXAx9l4k0DxlpEbBsRX4iI6yi+N98LPIV2mwZA0ajhe8BlnXu8Q9VcSqMhM88CLu7hkEObqqUOEbECxftFVcdP1qYBI+qGPo5ZsvYqRkxETI2I71D8LL+OwTQNAHgc8EbgHOCGznvlWN73jojdgN/Te9OAs4DtbRogSZIkSZOLjQMkSZIkSZKkEZOZd9L7DigA+3d2ihuIiNiU4uGdE4AnDaCExYA3UzzY+qIB5K8sIlaKiCOBvwD70v5DwI+1BvAR4PoB1zH2ImKhiHgH8A+KXXYHsbhnM+C3EXF8RKwygPwjLSJWiYjvAacATx5ACasDnwf+0tmlUBqEXhsHDGTxVEQs3tnZ7QyK5htDx/eFaiLizcCfgB1aSDcFeAdwYURs2UK+sRARS0bEx4FLgUMYzPf63Fak+He+KiIeN+BaRornrWo8b42tYyrGvSQiFm6ykLkcXDHuxMyc0WglDYuIpSLiS8C5wG4DKGE54APAxRHxrAHkr01ErA38ATgSWGHA5Yy0iHhzRFxB8Xq+gd4XAzZlHYp7vOdGxHqDLkYj6YgeYreJiC0aq2TiDqS3a9qvNVWI+tLrPSoY0H2qYdBpDPQGit/N9weGqYHM6hTvlYO+X9C6iDgYOJmi4WEvTgCemZl31V+VJEmSJGmQbBwgSZIkSZIkjaYvAg/2eMzSFDsstioiFoyIjwDnA9u3nX8eVge+HxFHRkTTu8b1LCJeBlwBvIrhu4c7dK/XOImIzSh2vP44w/Fw4kuBv0XEUwddyKiIiD0oFsm9eNC1UCyY+2NEHO4OgRqAXq9hWn//iYjHA2dTLAAYSr4vlOs0f/gZ8FmKnbXb9ATgrIh4dst5J52IeCbFbsXvoP1/xzILAgNrzjZqPG+V87w19n4IVNmBeAVgz4ZrISJWBvaoGH50k7U0rdNU7RLgfxj8vZi1gVM6962G7X2vVEQ8AzgPeMqga5kkXgMM88L8bSneS18+6EI0cr5Ntfe8R7ymqUJq8OoeYv+UmRc0VYj60us9Khi+30tbERFLAicBX6Bo1K0hEBEfBL5F7/cmPgbsn5n9/AxIkiRJkobcoD/okCRJkiRJktSHzLwT+Fkfhzb+YPncOg+Znwa8m2IXw2HyKuCciFh10IXAvxeIfIviocllBl2PhktEHEixu9xGg67lMVYDfhcRrx10IcMuIt4J/JxiF8lhsQDwPuCnEbHUoIvRWOl156+ZjVQxHxGxEfBnYGh3XfZ9oVxELEdxHfq8AZaxBHCSC6n6ExFTIuJjwCkU31saYZ63ynneUmbOAE6sGH5Qg6U84mVUu5dzZWae03QxTel8v5/F8Ozk/ohXAWcMy32rKiLixcCpwIqDrkWtWhI4NiLeN+hCNDoyczrFffCq9h/Ge1cRsROwQQ+HfL2pWtS3fnann157FUMuIpanuF567qBrUSEiFo6IbwPv7fHQh4BXZ+a7MzMbKE2SJEmSNARsHCBJkiRJkiSNrm/1cUxrjQMiYhPgfGDHtnL2YWuKh7AfN8giOg+BnwscPMg6NHyi8HngGIZ3F5+FgCMi4m2DLmQYdf4Nv0axg8+wfi7zPIrdZZcfdCEaG0v2GP9AI1XMQ0SsAfwaGMoFWr4vVBMRywJnANsNqoa5TAGOiojdBl3IKOnsZHgK8E4gBlyOJsDzVjWetzSXYyrG7R4RqzRZCNWbExzbZBFNioh3U9Tfz6LBNmwH/Cki1h50IWUi4pkUi4B73e1Wk8fhEfHpQRehkXJED7FLAi9tqpAJeE0PsXcD32uoDvWvn4YUd9ddxDCLiCWAk4EtBl2LCp3fH39N0eirF/cBe2bmN2ovSpIkSZI0VIb1ATVJkiRJkiRJ5U4F7ujxmKkRsWETxcwtIjanWPQw0AX5FW0AnDmoHdwiYipwNrDZIPJreEVEUOxC9cZB11LRpyLi7YMuYgh9id4eIh6UzYFTOzvdSo3pfI/1unD0/iZqeay5Hrp9fBv5euX7QjURsTDwY+BJbefuYgpwYkRsPOhCRkGnkc1vgV0GXYsmxvNWNZ63NLfMPBu4qkLoFHpfKFRZRGwFbFohdA5wXFN1NKnTLOQjg66jgjWB0yNizUEXMj+d75cfYdMAwVsj4nWDLkKjITMvAc7s4ZChur8WESsBL+jhkOMys7XGiKqsn3tAd9ddxJD7KrDtoItQofOZ4rn03rT9JmCHzDyl7pokSZIkScNnyqALkCRJkiRJktSfzJwTEb8FXtzjoU8G/tFASQBExBYUC30muvj0AeBC4HzgWuAGit0wHgAWBJYAVgfWofg7bQ0s0meudYGfRsQzMvPBCdZdWeeh73Oop8FCApdSvF7XANOAe4AZwGyKRZqLUeygvBqwHrAJsD7eKx5WRwEH1zDPtcBfgMuA64HbKH6OZlH8HC0DrA1sCDwNWGMCuT4REVdm5k8mVPEkEREfBA6rYapLgD9QnLsfORfOptgRawWKf7vNKP79+j0PAmwJ/LJzLpw1oYql+etnt9Qba69i3r5K8fNU1XSKn82LKRb43UrR5GA2xW6IS1Fcp2xMsVvsRBsS+L5QzTeAnSY4x3SKBSwXAZcDd3X+bFFgaR59fZ5B9ddnGeAHEbHlBGub1DoNPM6kuE6tw5UU3+9XU1wj303xc/ogxb/n4sDKFNfHa3fyPpGJvZ/qUZ63qvG8pcc6BvhQhbgDgc80VMNBFeNOz8zrGqqhMRFxCPCpGqa6iuK+zmUU92HuA2ZSXAsuR9GsclOKn70lJ5BnKkXzgG0y864JzFO7zi7E36O3v98twO+Bf1K8R9/Jo83ClgKWpXjtNqY4ry9dU7njYhbF9+Y/Ka5/bu183Uvx/TmT4l7gIhTfp6tSfI9tRHFfoJ/dt+f2xYi4NDPPmOA8Gg9HUJwjq9giIp6cmec1WVAPXgEs3EP815sqRBOyXh/H9NrQe2RFxD7AAROc5l6K31MuBa4Dbqb47Go6xT20BSjekxaluNf9yO/o61F8fjUViAnWMClExDbAz4FVejz078AemXlD/VVJkiRJkoaRD4NKkiRJkiRJo+1Uem8csDVwbAO1EBGrUTy00m/TgHuA44GfAmf2snC186Dy84BXAjv3kfspFAs2Xt7HsT2LiGWAXzKxpgEzgZOBE4DfZubdfdSxOMVuMU8HngtshQ9hDVxEvI+JLbL6E/Bt4BeZeW2PuTcFXgq8Gli+x7wBfDsits/Mi3o8dlKJiL2A/5vAFNMoHij+dmZWWjTd+Xl+DvA/wA595t0W+BIT3MUtM3esEhcROwK/qzjtmVXn1VDbqo9jejqP9SMiXgTsVyF0BsX77vHA2Zn5UA85tqLYGfjVfdTn+0KVZBEH0/+13BzgFOArwGlVr0Mj4knAqzp5yxa1bQS8r8/6Jr2IWIhit+KJNA14CDiN4uf0lMy8rY86Fqb4nenpwB7AUykal01YZna9zo6IacBaFadbOzOnTbSmpnjeqpjM85bm7TjgcIpFVN1sGhFbZub5dSbvnAdfWjH8mDpzt6Gz4OorE5jiNuCbwDGZeUXFnAsDuwCvo3hvKfu3nZd1ge9GxHMyc04fxzflU1RbdHkjxf3I73Z2Ga+k89rtCBwKbD73WNnvhxFxDEWDjSoOzsxjqtY1ZG6juEd8LvBH4KJefk+ZW0QsSNE84AXASygWa/ZqQeCoiNg0M2f0U4e6y8yp3cYj4gyqL8bfacBNHn5CsYh4tYrxrwEG3jggIoLieqqqszPz0qbq0YRs3WN8UiyCn/Q678H9Nlq6muL3uZOACyZy7dL5LG0rivvWuwLbM4bN/jqfN3yXogFiL04F9snMe+uvSpIkSZI0rPr5EEKSJEmSJEnS8Ditj2P6WbBXKiIWpVjw389C+NuANwKrZ+ZhmXlqr7tdZ+b9mXlCZu5CsatvPw8QHhARvTZi6FnnIdwfUuyc1o97gY8Ca2bmPpn5o36aBgBk5ozMPD0zD8/MbSh2n3wrY/Lw2zCKiBcCH+jz8J8DW2bmtpn5lV4XWQFk5t8z810Ui9beR9GgohdLUCy2WqjX3JNFRKxHsdinnyYcdwJvANbPzI9XbRoA//55PjEzn0GxsKLfn+NXdxaxSU14Wh/HTKu7iHk4omT8IeCzwNTMfGVm/q7XxTiZ+dfMfDPF4pvKi5l9X6gmItYFvtjn4ecC22TmczLzl71ch2bmRZn5emAdioYvZQ/D/y/wpD7rnOyOpL8GYFB8Xx4BrJeZz87M4/ppGgCQmbMy89zM/ETnPXUVigXof+iztrHjeasaz1uan8y8jurNtQ5qoITnUa3pxr3AjxvI35iIWIGiSU0/i81mUJzbpmbme6o2DYB/v7f8KjP3pFiUfWYf+QF2B97f57FN2BR4bUnMvyia263bed0qNw2Af792v8nMvYGd+qxzMroK+BDFgtdVM/NlmXlEZp7fb9MAgMx8ODP/nJnvpmhW8UKKXYp7tQ7w4X7r0PjIzNkUzXyr2q+ziHjQdqX4Ganqa00Vov51rgu26PGwK8doAfZB9N5A5mrgRRT3tj/QeV+aUMOjzLyn8xnWRzNzZ4rr1BcC3wfun8jcoyIi3kBx3d1r04CjgeeM0fesJEmSJKnDxgGSJEmSJEnSCOssorizx8M26yxcr9tngCf3eExS7PK2bmZ+sa5dqDLzjxTNA94BPNzj4V+OiJXqqKOLd1M8XNiP7wNP6DxsfXuNNQGQmTdm5mczczPgKZ18fT9wrN5ExNoUOzb2uuD8GmDnzHxeZv6tjloyc3pmfohiIcCFPR7+JOA9ddQxor5B+e6t83ImsElmfmkiD/oDZOaZFI1iPtPnFJ+PiNUnUoP0WJ3rjz36OPSvddcyDyt0GbsEeHJmvrWO997MvL3qNY/vCz05Cliyx2PmUCwqftpEd2vOzH9l5qHAM+neGGIKvS9MmPQi4gD6X/x6GrBppwFZz4vMy3T+bb+RmdtT7L5+JL0vRB8bnrd64nlL3RxTMe4lDTS5qNpE7AeZ+UDNuZv2GYqGib36O0VTk8Mn+nfOzAszc0fg7fR3v+U9EbH5RGqoUVmDiZ8BG3UawTw40WRNvM+PmAeBY4HtMnO9zHxfpzlZNpEsM+dk5o8p3gPe1Mnfi8Miop+fN42fI6l+PlwcOKDBWqo6tIfYOyia1mj4PA/o9bOyvzRRyJB6dY/x3wWe1GlsO6FmAd10muf+ODP3A1ajaGJ0QVP5BikiFoiIzwFfoPc1H+/LzFd0GrRIkiRJksaMjQMkSZIkSZKk0dfrrk+LU+z6VJuI2InyHcYe616KnS7+JzOn11kP/Pvh1k8Cz6bYFa6qFYGP1V3PIyJiC+C9fRz6ALB/Zu6XmbfWXNY8ZeZ5nYev1gO+iQ0EGhURQX+Lh35M8UBe1R0pe5KZVwLbUzzw34t3R0St55pREBEHAjv2cejRwC6ZeXNdtWTmQ5n5NooHqnttorI08KW6apE69qR4n+3FTHpf7FmnXwPb17WItRe+L1QXEfsAz+jxsNnAPpn5oToXW2Xmb4FtKHaBVQUR8Xj623X9YeBtmblb5/uycZn5j8x8DbAm8Gl6+z1j0vO8VZ3nLVXwY4r7JmVWpLjGqkVErAY8q2L40XXlbUNE7Agc2Mehvwa2zcx/1llPZn4a2J3e30sWBI6MiGF/7u+jwAsys1tjElVzN/ABYI3MPKjTMLU1mflwZn6BosHoTT0cujDwrmaq0mSSmTfS23Xaa5qqpYrOe+XzejjkmDqap6gRr+vjmNNrr2IIRcT6FE1pqzoOeFlm3t9QSfOUmfdl5tcycwuKhmi/o2hYPvIiYjGKpiNv6vHQWcDLO030JEmSJEljatg/QJAkSZIkSZJU7qI+jqltt6eIWIJicUgvO0reQrE71q/qqmN+MvNUigexe9kR7sDOg1G16uy0fCzQ626Ad1DsKPndumuqIjOvzcxXAU8cRP4xciiwU4/HfJ5i8VDtzTfm1tkZe1/gpz0cthDw/kYKGlIRsSTwqT4O/QZwSGb2uri/ksz8DrA/vT80uXdEPLOBkjS+3tLHMecNcGes3wDPy8wqi/aa4PtCBRGxCPDJHg+bA+ybmT+pux6AzLyOYkHwtCbmn4S+Dizb4zEPAM/NzM/UX065zLw9M98OrAvcPogahpTnrQo8b6mKzvfsDyqGH1Rj6gOotvPu5Zl5bo15G9VZZP+VPg79JcX1YCONYjqNO55N0SyrF9sAr6y/otp8IDPfU2eTkzH2KWBqZh6emQO95sjMC4Gn0VvzgFdExPINlaTJ5YgeYjeJiO0bq6TcK4ApFWOT4vcdDZmI2BPYusfDHqD69dmo26WH2CuB1wz6fT8zT83MndtuXtCEiFiZognC83s89G5g98z8dt01SZIkSZJGi40DJEmSJEmSpNF3SR/H1NY4gGK3i7V7iP8XsGtmXlpjDV1l5tkUD/RVNYVmFjwfBGza4zF3Urxe59dfTm8y0x0oGxIRSwMf7vGwr2bmm9t6IK+zcHd/oJfvxf0jYoOGShpGhwEr9XjMacDrmv53zMzvA+/p49Cxav6g5kTEXsDT+zi0kQWSFfwd2DszZw0iue8LPTmQ3q5FAd6Vmb3uPN6Tzq6ZzwdG/oH1JkXELsAePR42E9grM09poKSeZOYtk2FRQh08b/XE85aqOqZi3LM7i4vqcFDFuGNryteWfYGNejzm78CLm74ezMyz6O2e1SPeHRG9NqZsw9GZefigi5gsMvOozLxn0HU8IjOvAZ5L9WYXiwAvba4iTRaZeTpwWQ+HHNpULd10GtG8qodDfpuZVzZVj/oTEUtRNDDr1U8H2Fyybdv2EHt4ZvbaBEnz0fn984/AU3o89FrgqZn5u/qrkiRJkiSNGhsHSJIkSZIkSaOvl12eHvH4OhJHxLLA23o45GFgv8z/b+++w2Wpyvzt3w/xEAREFAQEQSUJiCiioAiKICioCKbRARTBHMZXHUfHHwYwjjoKiAE4GAATKkkBE6gEFUFBgo7knHM8nOf9oxpFPZxTq7uqq7r3/bmuvsbRtWp9z97dq6p613pWDlPsYCSZeQRwYEGXl0fESk2NHxGzgL0Lu82hWrT4h6ZyqLf+AyjZge1nwFtbyvKQHrRTa93FRAsDb2kvUX9ExJKU76Z+NdWcOKeFSP8iMz8GHF3YbbOIeE4beTRzRMQKwBeH7H5kk1lquovqs9nlwknPCzVERFA+9/4oM0t3+h7K4Bru7eMYaxINfn8fH6LrHpl5YtN5NDLnrRqct1QiM38N/KVG00WAV486XkRsCqxbo+lc4Gujjjcug89daRG1O6m+j7m9hUj/IjMPB75Q2G114DUtxBnFecyQ7wBmssw8k7Iig7u2lUVT54CCtrtExMNbS/LQnk81/9ZV8vcIjcGg+MPBwJpDdJ9Jv8+6xdPuAr7XZpCZJCK2AE6hvNDcGcDTx1mwXZIkSZLUbxYOkCRJkiRJkibfVUP0aaRwAFXRgOUK2n8sM3/S0NjDeDdwRc22iwC7Nzj2npT/3N+XmSc1mEE9FBHLA+8s6HIj8MrMvL+lSPOVmRcCHyjo8uqIWKKtPD3y70DpLp97ZeYNbYSZ35jATYV9SgrESP8gIhYHvg08eojuJ2TmpQ1HqmOfLh+09bxQ5AXUf5gd4DaqeXBsMvMgoMvr3z7bAXhqYZ/9M/ObbYTR8Jy3ijhvqdTsmu2aWJi7W812P8nMyxsYb1y2BTYo7PO+DnaI/k/gwsI+fbtX23NQoEXT77PAxTXbPjUiVm4xi6bHodQv7jSLbopSlFyXXQ38sK0gKhcRCwNfAnYeovv3M/PkhiP1Wd0CGWdl5l2tJpkhIuJVwImUFeQDOAZ4dmZe3XwqSZIkSdKksnCAJEmSJEmSNPmuHKLPSqMOOlgI+IaCLn8BPjrquKMY7BT34YIur2tw+DcVtj8N+J8Gx1d/vRZYpqD9uzPz2rbC1HQAcEnNtssBL20vSm/sVtj+R5l5VBtB5iczrwL2Luy2jQ/5axgRsSTVrmNbDXmITzcYp65L6f7863mhvt0K2386My9raOwS76DanVn/6M2F7S8G3tNCDo3Oeau+3QrbO2/pa9T7XWwYERsPO0hEzAJeUbP57GHH6chuhe3PAfZrIcd8DRbclxRhAVg3IjZtI88QvpOZv+o6hMYjM++j7L5p67ayaHpk5q3ANwq67NlWlnmJiFWoikDVdVBmzmkrj8pExIrAscAeQ3S/G3hXs4l6r+79XRf3KlMnIv6Lav5brLDrF4EXZ2bdoiuSJEmSpBnCwgGSJEmSJEnS5BtmwcWSDYy7E/CIgvbvz8x7Ghh3VAcDV9Vs+7iIWG/UASNiK8p2lZwLvDEzc9SxNRFKHlY8BzikrSB1Zea9wKcKuuzYVpY+iIi1gJLFGgm8r6U4dRxI/Z0BARYGXt1OFE2riFgb+CVlD9U/2OmZeWKDker6bGbe3cG4D+Z5oYaIeBhl768bqXZGHbvM/BNweBdj91VErAk8r7Db29zFuLect2pw3tIwMvNy4Kc1m+82wlAvpiqSsSC3AN8fYZyxiohlgBcVdnt/ZnZSOGNQXO7Uwm5d7Lg9L/t2HUBjdwRQd1H0c9sMoqlyQEHbdSPi2a0l+Vevp/qOrI65wJdbzKKaImJWRLwVOA/YdsjD7J2ZFzUYaxIsUbOdxcZGEBGLRMRXgH2AKOiawHsy802ZeX876SRJkiRJk8zCAZIkSZIkSdKEG+xaU7pzTd2Hfubn9QVtzwO+28CYIxv8vA4u6LJdA8O+rrD9dzLzrAbGVc9FxBaUFZXYp0cFJb4B1F2897yIqPtg7SSquzPnA47PzD+0kqSGwUK50kVor2oji6ZPRDwsIj4EnAkMu+vtXMp3Im/C7cBBHYz7N54XirwYmFXQ/iuZeduIY46iZEfWmeC1lD0Uf3pmHt1WGA3PeavIi3He0nBm12z3yohYdMgxdq/Z7ls9KLJU4sWUfe7OGyze79LHC9u/PCK6fgbwJL/Hmnky83rgjJrNn9ZmFk2PzPwj8OuCLnu1leXBBteBJd/x/ygzL20rj+YvIhaKiE0i4lPARcDngYcPebhDM/MTzaWbGPfVbLdSqymm2KCw3LGUFeIDuBt4eWaWFMKTJEmSJM0wi3QdQJIkSZIkSVIj7gaWLmg/UuGAiHgUsGVBly/3aHEIVEUM3l+z7baMsGAiIhYBti/s5i5tM8fLCtpeB3yvrSClMvOWiDiRers3LgdsCpzSaqjulO5WtX8rKcocSjXXLFWz/YYRsWJmXtNiJk2owQP0mwKvBF4DLDviIffLzLoLUJp0VMcLNMHzQomS66sEvjLCWCPLzDMj4je4aOoBpbs/e33cX85b9TlvaVjfB25hwddYKwA7AEeWHDwiVgW2rtn8kJJj90DpvVrJTtdtOQa4BFi9ZvvlgacCv2kt0YJ9s8Ox1a1TqM6PC/KEiJg1YYVH1J39gc1rtt0pIlYYFLJo0wuAVQvaf6mtINMmIrYcoftCVAWClqZawL46sD6wCcMXCniwX1BWQHua3AYsXqPdRhGx2KBQrWoaXH8fC2xY2PUGYMfMnNa/s0iSJEmSGmLhAEmSJEmSJGk6lBYOKNltbV62o/4OofdT7eTYG5l5VkRcCaxco/kmIw63OWUPqZ062FlJM0PJ4qHDMrPuTj/jchz1F/49jSksHBARy1C2mOo64EctxaltsFDuSKpF3nUE1WIiF4RMvnVGfCh7caqCE48GVgM2orkHsgFOA97d0LFKfbejcR/M80J9Wxa0PT0z/zrCWE35Ji7AJSIeWMxR1+VUiyjVT85b9W1Z0NZ5S3+TmXdFxLeAPWs0343CwgHAv1MtvFuQ8zPztMJjdyYiHriHqWsOcFhLcWrLzLkR8TXgvwu6PY/uCgfMpSpuoZnpLzXbLQysC5zZYhZNj+8B1wAr1mi7OLA70PbO228oaHsZ1TWm6vl51wEewuHA63p4/zIuV1AVpVqQ5agKV/WmQFzfRcSTqIoGrFLY9f+A7TOz7rlXkiRJkjSD1fmjjyRJkiRJkqT+u6uw/RIjjleyOOTUMez4M4y6D7svFxFrjjBOyc8K4OsjjKUJEhHrAmsUdDm6rSwjOLWg7catpejWlpQVaj4qM+9vKUup0sUdz20lhcbtvVQPZQ/7+jHVw8D7Ae8BtqG5ogGXATt3tEvZXDp+WN3zQn0RsR7VboJ1HTXsWA37QdcBeqL0+viwzJzbShKNxHmrPuctNWB2zXbbRcSjCo+9a812hxYet2sbACU/i5My88a2whSapHu1P/T0ez+Nx1UFbZ/QWgpNlcF3AgcVdNlzUCymFYPCZ9sWdPlKj777U7m5wHsz81WZWfp3t2ny54K2n4qIpVpLMkUi4vnALykvGnAq8AyLBkiSJEmS6rJwgCRJkiRJkjQdShatAoz64NpzCtqeMOJYbfl9QdsnjzDOZgVtk/KdATW5Sh7sv4vqgbK+ORe4u2bbUT5HffaUwvbHtpJiOD8GShZoP7WtIBJwCfDszLyio/HPzsybOxr7AZ4X6tu0sP2PRhirMZl5KfCnrnP0QMn1MbhzYZ85b9XnvKWRZOapwAU1mi4CvLrucSNic2CtGk3nMnmFDif2Xi0zz6QqqlVX6b+1SSd3OLa6d0dB20e3lkLT6EvU/xvG4yn7e0Wp11P/Wes5wFdbzKJ2/QJ4WmZ+susgPfDbgrZrAEdaPGD+IuL1VMX0HlbY9XvAcyzUJEmSJEkqYeEASZIkSZIkaTrMKmw/9E4pgx12VijocvqwY7XswoK2aw4zQEQsBGxU0OWczLxmmLE0kUoe7D+rox2452uwe9alNZuX7EY7STYsbP+rVlIMYbBrVkkRlXUiYtG28mhGO5OqaMBFHWb4XYdjP8DzQn0bFLS9HTh7hLGadkrXAXqg5L1+M/34fGrenLfqc95SE2bXbLdrwTF3q9nuhA4LPA1rYu/VBn5d0HaZiHhsW0EWwPP0zHZfQVsLB6i2QfGiYwq6vKGNHBGxCPDagi5HZ+ZVbWRRq34P7JiZW2XmGV2H6YmfFLbfBvhlRDypjTCTLCofA75MeRH4zwC7ZGbdYneSJEmSJAEWDpAkSZIkSZKmxdgKBwAbF7bv64NWlxe0XXXIMdYGli5o/7Mhx9FkKvks9fVzBPU/S0tFxMNbTdKNksUof8nM61pLMpySxSiLAuu2FUQz1kHAZpl5Scc5zut4fPC8UGL9gra/HSwM7otTuw7QpcEOhGsXdDkpM+e2lUcjc96qz3lLTfg6UGdO3DAiFvj5jIglgZfVHHt2zXZ9UnKvdidVMas+KblXg/JCCU3pw3W0/klELBsRz4qI10bEvhFxWEScGBFnRcRlEXFDRNweEfdGRA77An5eEGvFtv69mloHFLR9UUS08R57EWVFLw5sIYPacTnwSWCDzHxKZh7ddaA+ycwzgf8r7PZk4PcRcUREbNpCrIkTEYsDhwH/Wdh1LvDWzHxXZmbzySRJkiRJ087CAZIkSZIkSdJ0WLyw/SiFA55c0PbmzLxhhLHadEtB22ELB5TsKgn9e0hdLRk8MLZeQZfSh/TGaRyfpV6KiMUo23m2TzvHPqA00zqtpNBM9Gdg28zcoye7Zv25y8E9LxQrKWLypyHHaMu5XQfo2BMpe07B6+Oect4q5rylkWXmFcCJNZvvVqPNTsAyNdrdDPyg5rh9UlKo5vzMnNNakuFMyr1ap9fRqkTEwyPiVRFxSEScC9wEnExVqO19wCuBrYEnUZ3LlgeWoioQOC5LjXEsTYcTgb/UbLso8NoWMuxV0Pav1D9Pq3v3AlcCF3UdpMf2H6LPQsDLgdMi4pyIeH9ElFyTTY2IWJ5qTnhFYdc7gZdk5n7Np5IkSZIkzRQWDpAkSZIkSZIm3GDXztLv+kYpHPD4grYXjzBO20p+Bo8ccozVCtv3cVGx2rE6sEhB+4tbytGEcXyW+urRQBS0v6CtICM4v7D9Kq2k0ExyEfAWqh3dTug6zINc1fH4nhdqioiFKNvxsW+L2fp4Lhgnr4+nh/NWTc5batjsmu1eGRELWhC8e81jHZGZ99Rs2wuDz91KBV36+D6fhHu1OzLztg7GFVURn4j4t4j4KXAd8E2qoiHrUvZdxbjM6jqAJstgl+0vFnR5/WD+b0REPI6q4EZdX3Zn8ImyJvA54NyI2L7jLH31FariCsN6IvBR4PyI+L+I2C8idoqIRzQTr78iYk3gVOBZhV2vAbbMzKOaTyVJkiRJmklK/ogrSZIkSZIkqZ9KFiA8YJSHekt2WNwoIqbhYbklhuz3mML2fXxQXe0o3an0BxF9fOa72LCfpb5aubB9H3faLV2YVvpvlgDuA04ADgWOzMz7O84zL9d0PL7nhfoeBSxc0P7CIcZoTWbeHBE3Uu3yOhN5fTw9nLfqc95Sk34A3Awst4B2KwA7AEfO63+MiNWBrWqOeUjNdn2yImWfu97dq2XmNRFxK7BMzS5d3Kt1fQ09I0XEw4B3DF6TNDdbOEDDOATYh3rXYGsA2wA/bmjsPalfhONeJvN8qaq43bER8TngXZk5t+M8vZGZd0TE24HvNHC4xwFvHrwyIi4ATqFaXH8acO60/Owj4unAUZQXnTsf2D4zL2o+lSRJkiRppmmsuqYkSZIkSZKkzgxTOOCKEcYrXSAyDcZROODWzLxjyHE0eWbi5wgsHNC7RRWZeRPVw811WThAdV1CVShgV2ClzHxhZn6np0UDAG7peHzPC/WVXvteO8QYbetjpnEpLRwwyu6GapfzVn3OW2pMZt4NHFGz+W7z+d92pd5iyHMz8zc1x+uTib9XGyjJ1cW9WtfX0DNOROxJVWDmw0xW0QCARbsOoMmTmTcDhxV02auJcSNiMWD3gi5HZuZ1TYytzrwDOCoipu3765Fk5neBLzV82ADWAV4LfAU4G7gpIk6IiA9GxHMiYlKLzawD/IzyogEnAZtZNECSJEmS1JRFug4gSZIkSZIkaWTDFA64bITxZuKi0WEfFntEQdurhhxDk2kmfo5g+goHLFfYvq+LUa6l/uK/h7cZRBPhXuCewes2qvf11VSLe/8MnAv8KTMnbbFvSQGNNnheqK/k+gr6udj1OqqHyWeikt/f3YMCN+on5636nLfUtNnAG2q02y4iHpWZ//CeioigKhxQx6GF2fpiucL2fb1XuwZ4Qs22XdyrdX0NPWNExCpUn/2tO44yiro7t0v/7ADgdTXbvjAiVm7gO4mdKFv4e+CI481YmVk8N0TEosAyg9fDgfWAJwEbA1sw/LPxLwC+FxEvzkzPcX/3FmAl4EUtjrEM8LzBC+DuiDgZ+DFVYY5LWhy7SSsO0ecwYHffc5IkSZKkJi3UdQBJkiRJkiRJI1t9iD6XDzPQ4IGsxYfpO+EWHrJfyaISF0XNLA/rOkBHhv0s9VXpwrGb2wjRgJL5Z9qKP8xEu2dmjPBaPDOXycxHZuaamfmMzHxJZr45M/83M0+cwKIBUBVC6JLnhfqmYe69uesAHSr5/d3cVgg1wnmrPuctNSozTwfOq9F0EeDV8/jvtwDWrNH/fuDrBdH6ZBo+d9D/e7Wur6FnhIjYGPgtk100QBpaZv4eOL1m80WAPRoYdq+Ctudn5kkNjKmaMvO+zLwhMy/KzN9n5jcy892Z+VyqQttvotrFfhjbAd8cFFoSkJlzgJ2Bg8Y47CxgG+AzwMUR8ZuIeGtELD/GDOPwSeDVFg2QJEmSJDXNwgGSJEmSJEnS5NtgiD6XDTmWC0bLlPy87m4thfrIz9J0mFXYvq+LKkpylf6bpYmQmdlxBM8L9ZXOQ318+Lqv54Nx8Pp4ejhv1ee8pTbMrtlu13n8d7vV7Ht8Zl5Vs23feK82Hl1fQ0+9iNgcOJlqIaw0k+1f0HaPiBi6eGlErA1sWdDlS8OOpeZl5vWZ+UVgI2BP4JohDrMz8IEmc026zJyTmXsAuwO3dhBhE+DzwJURcUhErNdBhjZsgN+3S5IkSZJaYOEASZIkSZIkafJtOESfi4ccywdYyrgwSg/Fz9J0mIZFYND/xSjSTOBnq77FC9v3ce7t6+LEcfD6eHo4b9XnvKU2fB24v0a7DQe7lQMQEUsDu9QcY/YQufrCezVNvIh4InA0sFTXWaQe+DZwfc22j6HaNX5Yexa0vQs4dISx1JLMnJuZX6FamH3SEIfYOyKe33CsiZeZs4G1ga8BczuIsDhVEaxzIuLwiHhsBxmatB1w3OAaXZIkSZKkxlg4QJIkSZIkSZpgEbEIsG5ht6syc5hdVqB8wYOkefOzJEl6MM8LkiaN85bUocy8CjihZvPdHvSfd6beIuQbgaMKY0lqSEQsCRwJPLyBw90G/JpqcfMHgdcCL6TavXltYBVgWWBJYDFgocyMOi9gqwbySQuUmfcABxd0ecMw40TELGDXgi7fzsybhhlL45GZ1wHbAscWdl0IODQiVmg+1WTLzKszc1dgPeAQuin6F8ArgPMj4j0RsXAHGeZlmIJrWwI/iYgmzvmSJEmSJAEWDpAkSZIkSZIm3ZOpHugsccYI4903Qt+Z6K6Ctu4MN7P4WZoOpQ9Fls7X41Ky8M/dn6V2eF6or/Qh7D7OvTN5wbXXx9PDeas+5y21ZXbNdq+MiEUH/3n3mn2OGCzSnFTeq2nSfRJYa8i+9wA/AN4IrAMsm5nPzMzdMvMjmXlIZh6bmb/LzD9n5pWZeWtm3pWZ92VmNvRvkJr2RervcL5dRKw2xBg7A48oaP+lIcbQmA2uaXYBTins+iiq953mITMvyMzXAisDbwNOBcZ9Dlkc+ATVwvuSz25bTgPeP0S/TYGfR8SjGs4jSZIkSZqhFuk6gCRJkiRJkqSRPG+IPqMUDrizsP2vM/OZI4w36VwYpYdS+ll6Xmb+pJUkGkXpwoy+LrhyMYrUPc8L9Q2zELDkmmwc+no+GAevj6eH81Z9zltqyw+Bm1jwjuQrADtExFnAs2oe+5ARcvWB92qaWBGxHtWi/1JXUxUcOCQzb2401EOLMY0jkZkXR8SPgBfUaL4QsAfwwcJh9ipo+8fMPLXw+OpIZt4VES8BzqRa6F7XzhHx8sz8VkvRJl5m3gR8AfhCRKwCbAdsCzwbeOSYYmwJnBYRW2bmFWMac54yc9+IuB34HGXnyScBJ0fE1pl5eSvhJEmSJEkzxkJdB5AkSZIkSZI0kmEKB/xuhPFKF4fM9MU+JYs9FvSgv6aLn6XpULqga7k2QjSgZP7p2yI2aVp4XqhvGube5boO0KGS399ybYVQI5y36nPeUisGu+ceXrP5boNXncVL52TmKN8d9cE0fO7Ae7WZ6iOUP9f5ZeAJmfnZMRYNAFhijGNJAAcUtH1dRNTeXC0ingiUFEE+sKCteiAzrwVeAcwt7PqZiFi6hUhTJzOvyMyvZuYumfkoYG1gd+Ag4IKWh3888JOIWLblcRYoMz9PVbyk9L22NvDLiFiz+VSSJEmSpJnEwgGSJEmSJEnShIqIZYDNCrvNBU4bdszMnEPZDmYz/eHR6wraPrq1FOqj2wrbz/TPUl/dXNj+UW2EaEDJzk83tZZCmtk8L9R3Q2H7ce1uV6KPmcal5Pp4VkRYXKu/nLfqc95Sm2bXbLcd1eKlOg4dLkqv3FzYvq/3aiW5vFebAhGxKvDiwm5vz8y9MvP2FiItyEw+v6sbPwYurNl2ZWCHgmPvVdD2duAbBe3VE5n5S+B/CrutDHyghThTLzP/nJmzM3OPzFyH6r7iRcAngV8B9zY85DrAwQ0fcyiZeTDwSuC+wq6PpSoesG7joSRJkiRJM4aFAyRJkiRJkqTJ9QpgscI+p2bm9SOOe3lB274+eD0ulxW0XSYilmotifqm5HMEfpb66srC9iu2kmIEEbEcsHhBl9J/s6R6PC/Ud1Vh+97Nvczs31/J9TFUCzTUT85b9TlvqTWZ+VvgTzWaLkK9goVzmI6FkBN/rzZQkst7tenw75Q90/nJwa7GXVm+w7E1A2XmXODAgi61igFExBLAawqOe3hmlhbSUn98EPhrYZ93RsQT2ggzk2Tm9Zl5VGa+NzOfBTwc2Ab4NPWuaevYKSJe0tCxRpKZ3wZeQllBdqi+Czk5Ip7cfCpJkiRJ0kxg4QBJkiRJkiRpcu0+RJ+jGhj3koK2K0REyYLUaVO6MGrtVlKoj0o+RwCrtpJCoypdmPG4VlKMpvSBVxejSO3wvFDftcD9Be3XbCvIMAYFW2byAiuvj6eH81Z9zltq2+wGj/XjzLy6weN15RrKPne9u1eLiEcCyxZ08V5tOpQsdDyP7nfAXqXj8TUzHUz9RbjbRMQaNdq9AliuIENJ8QL1TGbeDby5sNtiwD4txJnRMvPOzDwxM9+dmetTfVf9Pqpz3Cg+ERG9WCORmccC2wO3F3ZdAfh5RGzWfCpJkiRJ0rTrxU2xJEmSJEmSpDIRsR7w9CG6NlE44NLC9qs3MOakKl1Ms0ErKdRHfo6mw1XA3IL267QVZASlma5oJYUkzws1DXaYLFnQuFZbWYY00xfCe308PZy3anLe0hh8A5jT0LFmN3ScTg3xufNeTZ2LiGWAkp2FP5yZ97WVp6bVOh5fM1Bm3gB8q2bzAPas0W6vggi/zczfF7RXD2Xm8cBxhd12dgf4dmXm/2XmxzNzPWAL4JghD/UEYIfmko0mM38OPA+4ubDrssAJEfGcxkNJkiRJkqaahQMkSZIkSZKkyTTMblIXZOb5DYxdutPHRg2MOanOLmzvQ2czx+WU7TCzUUs5NILMvBe4qKDL+m1lGUFpplF3e5I0b54XypTMRU9sLcVw1us6QMfOpWwHaK+P+8t5q4zzllqTmVcDxzdwqBuAoxs4Tl+UfAe2TkQs3FqS4XivNvM8Haj7PrwJ+F6LWerasOsAmrEOKGi7e0Qs+lD/Y0Q8Cdi04HgHFrRVv72bsvvTAPZpKYv+SWb+MjN3ALYELh7iEK9qNNCIMvM0YCvgusKuSwHHRsQLm08lSZIkSZpWFg6QJEmSJEmSJkxErA+8fIiuTT3Q9pvC9jN5sc9fgFsL2rtryAwx2P3wdwVd1o6IJdvKo5H8saDtWhGxQmtJhrN5Qdt7KVt8I6kmzwvFzilou0nPFgI+o+sAXcrMuyhb2PjsiPC5hh5y3irmvKW2HdLAMQ4bFEebFiX3akvRvwInJfdqUPbvVT+tVdD2Z5l5X2tJaoiIRehfsRvNEJn5G+CMms1XBF4yn//9DQVD3wIcUdBePZaZ5wLfKOy2XUQ8s408mrfMPInquugvhV2379l9FZl5FrAFcEVh11nAkRExzN+GJUmSJEkzkH9glyRJkiRJkibPPpR/t3c7cHBD458BzC1ov1VD406czEzgrIIu60fEii3FUf+UFOFYiOqBMvVPyeKMoHzxR2siYhbw1IIu53e9MEGacp4X6ju7oO3SwAZtBRnCZl0H6IHfF7RdjrJzlcbLeas+5y217WjghhGPMbuBHH1SupC+b4sAS/LckpmXtJZE4/K4grYl11NteQbVQkapK/sXtN1rXv9lRCwN/FvBcb6emXcWtFf/fQgo/b7zQ20E0UPLzCuB7YC7C7r17b4KgMw8n+o678LCrosCh0XE7s2nkiRJkiRNGwsHSJIkSZIkSRMkIl4F7DhE10Mz89YmMmTm7ZQtetgkIh7ZxNgT6pcFbQPYqa0g6p1TC9u/oJUUGlXJTrvQr9/j84DFC9r/tq0gkgDPCyVOK2y/XSspCkXEargrK5RdHwO8tJUU/XR/QdtoLUV9zlv1OW+pVZl5L3D4CIc4OzP7sBC5SRN7rxYRGwCrF3Qp/bfOFJN2Xl2poO1fW0tR3zZdB9BDmrT3/rCOAG6s2XariHjCPP77VwIPKxjzwIK2mgCZeRHlxZOeExHPbiGO5iMz/wr8T2G3DdvIMqrMvBh4FnBeYdeFgIMi4m2Nh5IkSZIkTRULB0iSJEmSJEkTIiJWBvYbouv9wBcajnN0QduFmNmL4Y8tbP+aVlKoj35C2Q45L4mIhdsKo6GdBMwpaL9jRPTl7zMvKWz/k1ZSSHqA54WaMvNc4JqCLsMU3mrDi7sO0BPHAVnQ/lU9One27d6Ctou2lqI+562anLc0JrM76ttLmXkOcHVBly0jYtm28hTyXq0Zk3ZeXaqg7S2tpahvl64D6CFN2nt/KJl5F3BIzeYB7DmP/36vgiF/nZl/KmivybEPcF9hnw+1EUQLVPcz/4CSQkxjlZlXAlsAZxZ2DeB/I+K/mk8lSZIkSZoWM+WP65IkSZIkSdJEi4hZwLeBhw/R/cuZeUHDkb5f2L7kAbxpczpwXUH7Z0REL3dBUbMy83bgxIIuqwAvbCmOhpSZt1G2g+yKwPNailNbRCxN2Q7OCfy0pTiS8LwwhJ8XtN00ItZsLUl9r+o6QB8MHo4veTB+VXq0C3TLShZ5Ldlaipqct4o5b6lVmXkGcPYQXecA32g4Tl+ULKhfFHhFW0HqiogA/r2wm4UD5m2izquUZZjbWooaImIzYO0uM2i+Ju29P4ovUr8o2W4RsfgD/09EPBV4SsFYB5YE0+TIzEsoL6L07IjYqoU4mo/M/Cvwl4IuK7SVpQmZeT2wFXDKEN33iYh9G44kSZIkSZoSFg6QJEmSJEmSem6wu+Y3gc2H6H4z8MFGAwGZ+XvgkoIuT46ILZrOMQkycy5wVGE3dwqZOY4sbP/2VlJoVMcXtn9TKynKvBpYpqD9mZlZUgRF0nA8L9R3XEHbh9pdcmwiYiNg0y4z9ExpIbKZcn18W0Hb5doKUch5qz7nLY3D7CH6HJeZ1zYdpCdK79Xe2EqKMtsCjytofz3w+5ayTLpJO6/eX9D2Ua2lqOcdHY+v+Zu09/7QBouIT6jZfAX+sYhmSbHjG4DvFLTX5NkHuK+wz4faCKIFKvnbZO+Lo2TmLcA2DFcI6n0R8YVB4SlJkiRJkv7GwgGSJEmSJElSj0XEIsBXgZ2GPMTegx0r2vDVwvYfbyXFZPhKYftdIuJJrSRR33wHuKWg/VYRsW1bYTS0wwvbvzAi1mslSQ2Dc8t/FHY7rI0skv6F54X6fgjcXdB+j4h4WFthanhXh2P30SGULY57ekTMhJ3qS4r0PLq1FGWct+pz3tI4fAO4FLii4FX6/c4k+SFwZ0H7J/VgjnpvYfsjBkUr9a8m7bxa8l7trHDA4PuMly6wobo0ae/9Ue1f0HYvgIhYBnhlQb/ZmXlPUSpNlMy8hOo+tcSzImLrNvJovkoKXs1pLUWDMvMO4IWUFyEHeAtwcEQs3GwqSZIkSdIks3CAJEmSJEmS1FODh9eOBXYf8hCnU/bQXKkvASUPyz0jIl7TVpg+y8zTgT8UdFkI+KK7hEy/wQNhBxV2+0xELN5GHg1nsLvZKQVdFgI+2lKcOl4HPKGg/RyqBUiSWuZ5ob7MvJWy3bsfAbyzpTjzNVhc9aouxu6rzLwCOKaw2+cjYok28vRIySKvNVpLUcB5qz7nLY1DZl6bmatn5qoFr6O7zt2WzLwN+EFht327+j5mULRgy8Jus5tPMjUm7bxaUvz1Ka2lWLDP4XOnfTdp7/1RHUv9Hci3iIh1gVcDS9Xsk8CXhwmmibMPcF9hnw+1EUTzNaug7W2tpWjYoDjJS4Ejhui+G3BYRCzaaChJkiRJ0sTyC1xJkiRJkiSphyJiY+BUYJshD3EDsEtmtrabRmZeR/kO1F+IiNXayDMB9its/wzKdwTXZNqPsh131wM+3lIWDW92YfuXRMTz2ggyPxGxAvCRwm4/zsxr2sgjaZ48L9Q3u7D9/xcRj2kjyAJ8Dv82Py+l18drAJ9sI0iPXFzQdoO2QgzBeau+2YXtnbek0c0ubL8xsEcLOeZrUFDls4XdzsnMM9rIMyUuLmjbh/Nq3YXPAM/vYmfhiHg1MPbvMlTs4oK2fXjvjyQz51IVOa5rr8Grrp9n5p/LUmkSZealwCGF3TYbFP7R+DyuoO1Efac9+JvuvwFfHaL7y4DvR0RJYQVJkiRJ0pTyj3ySJEmSJElSj0TE4hGxL3A61WKKYSTw6sy8rLlkD+kjwD0F7ZcFjoyIpVvK02eHAn8t7PPxiNiijTDqj8y8iPJdWt8eEe4A2i9fB64u7PPViFimjTDzsT/wyMI+n2ojiKR587xQ5BjggoL2D6NsQcnIIuK1uLhqnjLzJ8DJhd3eMuXv9ZIFSc9qLUUh560izlvSmGXmicBZhd0+3UHhyw8D6xb28V5t/krOqytFxONbS1JPSd7lGb7g7FAiYm3ggHGOqaGVvJc2joglW0syPl+l/t8p3gBsWHDsA8vjaILtA9xb2OdDbQTRv4qIRwLrF3Q5r60sbcnMuZn5eqpibqVeABw3Q/8GK0mSJEl6EAsHSJIkSZIkST0QEYtFxJ7A+cD7gEVGONwHMvPHzSSbv8ECkc8VdnsKVfGAXu96EREbRUTpA9sPKTPvA/67sNsiVDuElDzIqMn038BtBe0DmB0Rz28pTyMiYlZEvLjrHOOQmXcDny7sthrw9YiIFiL9i4h4B9XOQyVOzszSRZ2SRud5oYbMTOAzhd22i4h3N5VhfgbXcJ8fx1gT7D+H6HNQRGzdeJJ++FNB21Ui4umtJSnnvFWD85bUmY8Wtl8G+O64vruKiJcApZ/zC4HDWogzNTLzeuDagi47t5WlptML2388Isby/GdEPAL4PlVBG/Xf+cD9NdsuBuzYYpaxyMzrgO/WbL54waGvAX5QHEgTKzMvBQ4p7LZpRGzfRp4uRMTTImLFrnM8hNcDCxe0P6ulHK3LzHdSfg0LsBVwQkQs12wiSZIkSdIksXCAJEmSJEmS1KGIeFREvBP4C9Uugo8d8ZAfzsx9Rw5WZl/gqsI+zwN+EhHLt5BnJBGxYUR8D/g9sHbDhz+C8oeAl6f6WT254SzFIuJxXWeYVpl5LdXugiUWBY6KiNe0EGkkgwVWb6VayLB3x3HG6UCqB4pL7Eh5wYFiETHsOO6YJXXA80KRQ4GLC/t8bDAvtiYiVgZ+CCzV5jiTLjNPBb5T2G0W8MOIGOsuu/MSESs2vEPr+cCNBe3f1+DYI3HeKuK8JY3fkcDZhX02Ab4WESWL04pFxNOAr1MVVCmxT2bOaSHStDmloO1bI6KzOTAzLwEuK+iyIfDmluL8zWDh4QlAYwVW1a7MvJ2yOe89bc91Y3JAC8c8eFAQWDPLvsC9hX2m6TvU7YGLIuJ/I2LVrsM8ICIeA7y3oMvZmXllW3nGITP/G3jPEF2fAfw8Ih7ZcCRJkiRJ0oSwcIAkSZIkSZI0ZoNiAa+KiGOBK6h2G1ytgUN/JDP/XwPHKZKZtwK7AVnYdXPgdxGxeeOhCkXlBRFxIvAHYCfKH9heoMHukrsDdxd2fSTwq4h4RdOZ6oiI1SLiS1QLmdSezwC/LOyzKNVChv8d106I8xMRj46IjwCXUu1U+uiOI41VZt4BvGuIrv8REZ+PiMbnHYCI2Jlq17XSh8C/lZk/ayGSpHo8L9SQmfdQvkPvwsB3mtxF/MEGD7OfxOhFwWaKNwPXFfZZEjhuUIRt7CJihYj4BNWi8kc1ddzB/ULJ537HiChZONE2560anLek8RvMr2+i/LurXYBvRcRizaeCiHgmcCLlBTtOpXw35JnqpIK2KwPfiIiS3cibdmRh+8+2WVgmItakKr6wcVtjqDUl7/0nA5+PiIl+njgzT6HZ3cXnAl9u8HiaEJl5KeXn2adGxA5t5OnIEsDbgAsj4vCI2KzLMBGxLFWRs2UKupWeU3spMz/FcNexGwEnR8QqjYeSJEmSJPXeRH/RJ0mSJEmSJPVdRCwaEetHxCsi4rMR8QfgauCbVLt2LNLAMPcD78nMDzZwrKFk5glUi0RKrQGcNPjZLN9wrAWKiNUj4gPAn4FjgK3bHjMzzwM+METXJYHDI+KwiGhscdL8RMQmEXEY8FdgT5p5v+ohZOZc4N+Am4bo/jbgzIh4frOpFiwiFomIHSLiO8AlVO/vGbuTTWZ+E/jpEF3fChwbESs0lSUiFo6IjwLfplqUV+IW4B1NZZFUzvNCfZn5XcoWxgAsBnwvIt7fZOGWiNgK+C3w+KaOOe0y8zrgjUN0XRj4TEQcP1jU1rqIWCciDqRaVP4eqmv0pv2gsP3HI+JHEfGstooQ1eW8VZ/zljR+mfkr4OAhur6UqpjjY5vMExFvobp3LFkABzAH2GtQDEEL9sPC9i8GzoqIl3dUQOCwwvYLUxW3eHnTQSLilVTnh3WbPrbG4geF7d8EnBIR20dEaeHJPjmgwWMdn5kXN3g8TZZ9gXsL++zdQo6uLQq8Avh1RJwZEe+IiBXHGSAi1gZ+RVXkpK45TFHhj8z8IrAr1d+DS6xDVTxgjeZTSZIkSZL6zIc8JUmSJEmSNKNFxJYjdF8MmAUsPngtB6xEtSPhSsDqwFqUL9YscQ3wisz8RYtj1PVfwNOAZxX2W5hqcepuEfF54MuZeUXD2f4mIp4A7AC8iCprF4trPgtsAQyzI9grge0j4gvA/2bm9U0Gi4iVgZcBuwMbNnlsLVhmXhYRr6F6sL30Id11gB9FxM+oCnn8aLB4q3ERsQTwHKrP0k7M4EIBD2FP4Ayq80KJ7YBzBgVNDh7l9xcRmwP/CzxlyEO8LTOvHnZ8Sc3wvFBkD+BMYOmCPgsBHwWeHxFvy8wzhx08Ih4BfBjYi/n/ruYAZ1P2wPvUy8zvRcR+wFuG6L4N8KeI+Arw6cHukI0ZFDjbier6eBy7LP4QuIfqHrOu5w9eV0fEr4FzqIob3ADcCdxXcKybM/Osgvb/wHmriPOWNH7vpioauXphv02AP0TEPlTfxdwzbICIWJ/qe6Fhi1d+JDPPHnb8mSYzL4qI31B9Z1nXOsARwO0R8cAO5hcB1wG3UZ1XaxduKPneNjN/ExGnAs8oyDsLOCIiXgC8PTOHKeDzNxHxFAbnmhrNjwe2HWU8teZk4Cqqv1XUtSlwLHBTRPyK6vx/MXA9cDtl15R3Z+ZpBe2b8k3gU8CyDRzrwAaOoQmVmZdGxMHAGwq6bRwRL87MH7QUq2sbDV6fjoifUN3zHZOZl7Ux2KCA9nuoCpssUdj90My8svlU3cnMr0fEHcDhVH+frmtN4JcRsXVmnt9OOkmSJElS31g4QJIkSZIkSTPdz7sOMIKTqYoGXNV1EIDMvDcidqTKtcEQh1gO+CDwXxFxAtVDRz8a5aGjwe5Ia1E9bLsZ1WL9Jwx7vKZk5tyIeBXVLikbDXGIZal2wXxXRBxD9TDzTzPzltIDDRbMbAo8G3gB8FS6Kaaggcw8NiL2Ar465CGeM3hdEhHfA44GTsnM0h2S/iYiHk61AH3zB73a2GF3KmTmhYMFc0dR/nlaEfgK8N6IOAA4vO4C/sHneTvgzVTvgWF9MTO/NkJ/SQ3yvFBPZv5fRLyN4XYSfibwu4g4Dtif6rqq1qKYweK/PagWldfZMfiTwCq4AHde3kF1rT7M4rNZwFuBNw7uJY6gupcoLrIVEYtSXRNvQXVefSblC+CHlpk3RcShVIWISq1EtTP2S0eIcBKw5Qj9nbdqct6Sxm8wx76U6vuYWYXdlwE+Abw9Ir5MtSDt4jodB+eWrYA3UhUsGfa8cizwkSH7zmSfAw4bot/SVAWKthlx/NLvBT5K9bsu9Rpgp4j4GrB/Zv6pbseIWIaqwOluwHNrdvsV1TnCwgE9NPj++QtUu6aXejjVXLXDCBEuAR47Qv+hZOadETEbePuIh7qc4T6Hmi77Aq+lbJH23hHxw8ysXWBmAi1MNfdvCxwQEedQ/V3w18CpwMXD/vsj4mFU590dgF0Y7p7tFqpC51MnM48c/B32+5QVU1gFODkithmlUKAkSZIkaXJYOECSJEmSJEmaPNcA/0n1gHKvHj7KzJsj4vlUD46uMeRhFgG2H7yIiKuA3wN/Bi6j2inpDuAuqt29Zg1eS1MtlFkJWJVqd7C1KHuoa2wy846I2IHqZ1W6090DlqB6eGoXYG5E/InqZ3UR1cOZt/D3HUZnUT1ktSKwMvB44IlUP6NFh/+XqA2ZeVBEPBL42AiHWR34j8Hr3sEDfH+kem9cBtxE9Tm6h+o98MBnaQWqz9GjgccB61K9b1QgM4+JiA8Bew95iMdT7bT7PxHxB+B04HyqB5dvp9r5dWngEcDaVEVInkX54pd/9muqhZuSesTzQj2ZeUhEbEW1aKrUQsALB6/bIuIXVD+fv1D9bO6g2gF+GaoFMOtRFV5arWCMc6l29/7SEPmmXmbeHxEvA37B8AuU//le4s/A74ALqXZLvYnq+vheqt/nEsCjqK6P1wDWp7qPGPV8OqpPALtSZZxIzlv1OG9J45eZZ0TEG4FDhjzEylT3eXtHxAVU91DnU81Nt1PNSUtRLbxdi6q45pbAw0YKXn22X9237wInxLepipWu03WQOjLzuIg4lqrAZ6mlqApUvHHwneopVNdC11GdG26h+q50aeAxVN89bEJ17VVS0OJWqnPXY4fIqPE5gOo6aoWug4zZF4G3MVpx3K9m5v0N5dGEyszLIuIgqnm1ricBOwHfaydVL60/eL1p8P/fHhHnUV0fXUH1N71rqe7F7wbupzpfLUV1Pnrg73lrU927jfo3vTdl5rUjHqO3MvP4wd9hj6Hs+vKRwM8jYrvMPK2ddJIkSZKkvrBwgCRJkiRJkjQ55gBfAPbOzFu7DvNQMvPKiNgcOI5qIeuoHk31oOwwD8v2WmZeHhFbAD+lelB3FAtRPYy+wcjB1AuZ+fGIuA34PNXvdxSLARsPXhqTzPxQRCxP9bDysIJqLt2oiUwL8DvgBaPs5iupPZ4XatuDahHUliMc42GMvsPmP7sF2CUz74kYZf3KdMvMWyPiucCPgac1cMi1Bq+JkpkXRsRHmfBdpZ23anPeksYsM2cP7tX+Z8RDrT14te0i4LmZefMYxpo6g+JEewInMdpC4nF6I3AWsPwIx3g08NLBq0n3AS/LzIsj4rENH1sNysxbIuKdwNe7zjJOmXlBRPwMeO6Qh5gDfLXBSJps+wKvo2wx+94RceQMLvazNFVRmk06GPsLmXlYB+OOVWae/KDvTkquFZYDToyIHTPz562EkyRJkiT1wqh/mJUkSZIkSZLUvtuAzwKPz8z/6HPRgAdk5lXAFsCJXWfpu8y8lOpndU7XWdQ/mbk/sDPVTqqaQJn5dqqdzvruTGCbzLyl6yCSHprnhQUbFD95CXB211keZA6wc2ae23WQSZCZNwFbA7/oOErXPg78qOsQo3LeWjDnLakbmfkZ4D+7zlHDJcBWmXlZ10EmWWb+EvhA1znqGvy+XwPM7TrLP0lgt8w8vusgqiczvwF8pescHdh/hL7HZOYVjSXRRMvMy4GDCrutD+zSQhzN39eAd3QdYlwy87fAs4GrC7suDRwXEds3n0qSJEmS1BcWDpAkSZIkSZL662Lg3cCqg4IBl3Scp0hm3gZsB+xNtehAD2FQaOHpwOFdZ1H/ZOb3qXbc7dNCIhXIzDdRLUjp2wP/D/gh8OzBQk1JPed5YcEGu/FuCZzWbRKgug5+bWb+pOsgk2RwL/E8qgJqM1JmzgFeBpzQdZZROW8tmPOW1I3M/ATw78DdXWd5CKcAT5+07wT7KjP3BT7WdY66MvM4YE+qxfp9cD/whpmwk/MUehPVgtqZ5Cjg8iH7fqnJIJoK+wL3Fvb5fxHhM/rj8wVg98zs6/fvrcjMc6gKk19a2HUW8IOI2Ln5VJIkSZKkPvBLCUmSJEmSJKlfLgY+DWyamWtk5qcz89aOMw0tM+/PzA8BzwL+0nWeIdw/roEy847MfBXwRuCOcY2ryTB4AGwTqsVzk/bw29g+R302WJDyQuDGrrM8yP3Ah4CXDBZoSpoQnhcWLDNvpNq1/uhxjPcQbgd2zMyvd5hhYmXmnMz8D2An4Iau83QhM28Htgc+SvlClV5x3low5y2pG4P3+zALrtr2ZWCrzCzdRVbzkZn/BbwCuLbrLHVk5kFUxQO6Lsp6M7BdZn654xwawuC6elfg7VTn+qmXmfdTzaOlLgKObziOJlxmXg58tbDbesDLW4ijf3QH8LrMfNtMKxrwgMz8C8P9DXZR4IiI2K3xUJIkSZKkzlk4QJIkSZIkSerWLcCPgQ8AmwyKBbw7M3/Tca5GZeZpwPrAu4C+72h9JzAb2Dwzx75gIzMPBNYFvjfusWu4vusAM1lm3jNYPLcRcGLHcer4I/BW4LldB+mLzPwR1ef7iK6zAGdR7Vy5d2b2ZfdCSQU8LyxYZt4BvAj4/4D7xjXuwJ+BZw/mfo1gsFv9WlQLf/q2EOA2Wt6lelCM7b+BDYFvMP73cmOctxbMeUvqRmb+lup7q/3o/lxzEbBtZu6VmRNdNKavMvNbwNpUO0j3qbjfPGXmV6kKCXX1vdxvqb4/mIRzt+YjMz9P9d7fn5lRuPYrlF9PfdnvyfQQPgbcU9jngxGxcBthWnZz1wFq+imwQWYe3HWQrmXmpVSFsM4p7LowcHBEvLn5VJIkSZKkLlk4QJIkSZIkSRqf64BfUe1M8lbgycDymbldZu6Tmb/rNF3LMvPezPwM8HhgH6qfR1/cCxwD/DuwUmbunpmndBUmMy/LzJ2pFqj8rKscD3IG8DrgMV0HEWTm2Zm5DfB8qofj+uQi4BPAxpn5pMzcLzNv7jhTr2TmtZn5SmBboIsiMVdS7TC3ybSfd6SZwvPC/GXlf4BNgV+OYcj7qf7NT8rM349hvBkhM2/MzL2odqz/Pt0v6jwfeCew6rh2gs7MCzLzNcBqVPeTP6PlogVtcd6aP+ctqRuZeVtmvhV4Bt0UN7kJ2BtYPzNP6GD8GSUzb87M91N91/VK4Nv0uIjAYNH+E4EjxzjsLcBbqIoGXDDGcdWizLwyM98CrEr1fe8xwO3dpmrH4Dq95FrzPmDGL0DWvGXm5cBBhd3WoTrHTJTM/BzV+fEtVNdEpQUT2nYm8ILM3DozL+o6TF8M5rxnUxX8KRHAfhHx3uZTSZIkSZK6skjXASRJkiRJkqQJNIfqQZl7B//3gdetwLWD1zUP+r8XAudn5k2dpO2ZzLwR+EBEfAR4ObAHsDnjL3R6DfBj4Djg+My8ZczjL1Bm/gz4WURsDLwDeAmw9JiG/zPVw8hfz8xzxzSmCmTm8cDxEbEO8GZgF2DFMce4Hzid6nN0XGaeOebxJ9ZgIcgJEbE11Y6yW1Pt8NOWP1HtnnlIZvbtYU+N5gfAxQXtz2olhTrneWH+Blm2iIiXAv8NPKnhIe4Fvgl8KjPPa/jYGhgsat4pIp5AdX38cuARYxr+cqo59xuZefqYxvwXg8UA+1E92L8YVUG6jYAnAI8DVgJWAJYHZgGL0dNnQ5y35s95S+pGZv4G2CYiNgHeA+wALN7ikBcBXwIOyMzbWhxH85CZdwJHAEdERFAt8nwqsBZV8dNVqM6rjwCWpDqvLkq1yG7cWa8FXhoRWwAfBZ7V0lBXAAcCB2bm9S2NoY4NCiMdTLXT9MLABsDGVNeUjwdW5u/XlEvw9/f+xIiIWVSFmOr6/uBzJj2Uj1EV3Ci5LvhgRByemfe3lKkVg0IJ+wP7R8SSVAvStwG2opovxv33vHup7scPzMyfj3nsiZGZN0bEc6mKwmxR2P3jEfGwzPxAC9EkSZIkSWMWmdl1BkmSJEmSJEkzXEQ8EtgReCHVzm5NLxaZA1wAnAH8CvjVJC6MGDzsuD2wE9WDWqs2ePgbqH42vwB+nJnnN3hsjUFELET1+Xkx8ByqB/iafqD3euAPwKlU75dTXNjQjIhYkWrx44uBp1M9lD2KuVTFAo4FDs/MP454vFZExHJUix3ruDkzz2otjDRlPC/MX0RsDuxJdW21wpCHmQv8BjgamJ2ZVzYUTzVFxCLAc4GdgS2pFjk15TbgFOAkqkJj7sTeMuet+XPekroxuGd56eC1ObBMA4f9M3A81b3aqQ0cTzNQRGxIVZD1RcBqIx7uKuAEqvPDDzNzTs0My+E9vXoqIl4DfK2gy3NckDy6iNi7pH1mFrXvWkS8iqq4TIlDMvOSNvJ0ISKWBTajKszxlMHr0S0MdQlwMtUi+B9Nyn2bJEmSJEl9YOEASZIkSZIkSb0TEY8BNgHWo3rwdTWqRfLLUu3utQTV7pn3A/cMXrdQLQK5jmpnrIupdm27APjTNO6wHRGrUi2sWRdYY/BaBVia6ue0JNXOL/fyjz+ja6keuroIOB84a5oeXFMlIhanenh7Y2BN/v5ZehSwFNXn6MHvkXuBO6mKSFwPXMPf3ycXAme7sGg8ImJRqgcun0a1AHJN4LHAclS/uyWBhal+X3cAt1Ptgnwh8FeqHeV/nZm3jDe5pD7zvDBvg4XKTwWeCTyR6rrqgeuphwFJtYD8NuBmqoV+5wLnACdn5nXjT62HMihI9gxgff5+ffwYqt/lA9fHCwP3UV0f30r1Hr+Ov7+/L6BaWP5/6QMVnXLemjfnLak7g8/fhlTF3taimpvWoNqRe0mquWlRqrnoTqp7tSup5qALqc4vv/ZzqKZFxPpUCzg3pvoeYTXgkVTvy8Wprntup/oO4Raq7w4uoDpHnJGZZ3cQW2pVRPyS6nqpjgsyc50280jTLCKWp7ovWYfqe+zHUP1NbwWq66Rlqc5HDxSGe+DverdR3Y9fC1xKdV66gOrcdNX4/gWSJEmSJE0XCwdIkiRJkiRJkiRJkiRJkiRJmngRsQ5wXkGXd2XmZ9rKI0mSJEmSJI3TQl0HkCRJkiRJkiRJkiRJkiRJkqQGvL6g7d3A7JZySJIkSZIkSWNn4QBJkiRJkiRJkiRJkiRJkiRJEy0iFgd2Lejyncy8sa08kiRJkiRJ0rhZOECSJEmSJEmSJEmSJEmSJEnSpNsZeERB+wPbCiJJkiRJkiR1ITKz6wySJEmSJEmSJEmSJEmSJEmSNLSIOB14Ws3mf8zMJ7WZR5IkSZIkSRq3hboOIEmSJEmSJEmSJEmSJEmSJEnDiojNqF80AOCLbWWRJEmSJEmSuhKZ2XUGSZIkSZIkSZIkSZIkSZIkSRpKRBwF7FCz+W3AKpl5W4uRJEmSJEmSpLFbqOsAkiRJkiRJkiRJkiRJkiRJkjSMiNiE+kUDAA6yaIAkSZIkSZKmUWRm1xkkSZIkSZIkSZIkSZIkSZIkqVhEnARsUbP5/cDjM/Pi9hJJkiRJkiRJ3Vio6wCSJEmSJEmSJEmSJEmSJEmSVCoidqN+0QCA71g0QJIkSZIkSdMqMrPrDJIkSZIkSZIkSZIkSZIkSZJUW0SsA5wOLFOzSwIbZOaf2kslSZIkSZIkdWehrgNIkiRJkiRJkiRJkiRJkiRJUl0RsR7wY+oXDQD4rkUDJEmSJEmSNM0iM7vOIEmSJEmSJEmSJEmSJEmSJEnzFRGPAN4IfABYvKDrfcATM/MvrQSTJEmSJEmSemCRrgNIkiRJkiRJkiRJkiRJkiRJmpkiYh1gpYf4n5cElgMeD2wKPJeyggEP+KJFAyRJkiRJkjTtIjO7ziBJkiRJkiRJkiRJkiRJkiRpBoqI2cCuLQ5xFbBuZt7S4hiSJEmSJElS5xbqOoAkSZIkSZIkSZIkSZIkSZIkteQtFg2QJEmSJEnSTGDhAEmSJEmSJEmSJEmSJEmSJEnT6KuZeWTXISRJkiRJkqRxsHCAJEmSJEmSJEmSJEmSJEmSpGlzOvC2rkNIkiRJkiRJ42LhAEmSJEmSJEmSJEmSJEmSJEnT5Bxgx8y8q+sgkiRJkiRJ0rhYOECSJEmSJEmSJEmSJEmSJEnStDga2CIzr+06iCRJkiRJkjROFg6QJEmSJEmSJEmSJEmSJEmSNOluBF6TmTtm5k1dh5EkSZIkSZLGbZGuA0iSJEmSJEmSJEmSJEmSJEnSkP4AfAn4Rmbe1nUYSZIkSZIkqSsWDpAkSZIkSZIkSZIkSZIkSZLUZ/cBtwA3ATcAfwROA07LzPO6DCZJkiRJkiT1RWRm1xkkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSdKQFuo6gCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJGp6FAyRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJmmAWDpAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkaYJZOECSJEmSJEmSJEmSJEmSJEmSJEmSJEmSpAlm4QBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiaYhQMkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZpgFg6QJEmSJEmSJEmSJEmSJEmSJEmSJEmSJGmCWThAkiRJkiRJkiRJkiRJkiRJkiRJkiRJkqQJZuEASZIkSZIkSZIkSZIkSZIkSZIkSZIkSZImmIUDJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmaYBYOkCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRpglk4QJIkSZIkSZIkSZIkSZIkSZIkSZIkSZKkCWbhAEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJpiFAyRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJmmAWDpAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkaYJZOECSJEmSJEmSJEmSJEmSJEmSJEmSJEmSpAlm4QBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiaYhQMkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZpgFg6QJEmSJEmSJEmSJEmSJEmSJEmSJEmSJGmCWThAkiRJkiRJkiRJkiRJkiRJkiRJkiRJkqQJZuEASZIkSZIkSZIkSZIkSZIkSZIkSZIkSZImmIUDJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmaYBYOkCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRpglk4QJIkSZIkSZIkSZIkSZIkSZIkSZIkSZKkCWbhAEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJpiFAyRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJmmAWDpAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkaYJZOECSJEmSJEmSJEmSJEmSJEmSJEmSJEmSpAlm4QBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiaYhQMkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZpgFg6QJEmSJEmSJEmSJEmSJEmSJEmSJEmSJGmCWThAkiRJkiRJkiRJkiRJkiRJkiRJkiRJkqQJZuEASZIkSZIkSZIkSZIkSZIkSZIkSZIkSZImmIUDJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmaYBYOkCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRpglk4QJIkSZIkSZIkSZIkSZIkSZIkSZIkSZKkCWbhAEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJpiFAyRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJmmD/P8JlZo86fPQxAAAAAElFTkSuQmCC" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Calibrate model\n", + "### model can be calibrated by training an isotonic regression on a portion of the testing set. \n", + "\n", + "In order to split the predictions from the test set into a new test/train set for the classifier, pull in the subset information from the postgres data and merge it with the predictions from the LR model." + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 5, + "source": [ + "calibrated_results = calibrate_onc(data, path='./results/', model_name='lr')" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "accuracy - original/calibrated: 0.7261524259077015 / 0.925476603119584\n", + "ROC AUC - original/calibrated: 0.8127091890156175 / 0.8123671017958832\n", + "avg precision - original/calibrated: 0.26026449800744755 / 0.25494374411559184\n", + "\tBrier: 0.061\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 7, + "source": [ + "# for plotting the calibration curve of the calibrated model\n", + "onc_plot_calibration_curve(\n", + " y_true=calibrated_results.y, \n", + " y_proba=calibrated_results.p_calibrated, \n", + " label='Logistic Regression Calibrated',\n", + " filename='./results/lr_calibration_curve_calibrated')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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1xN4J62CEhFxwuDBg1m1ahWfffYZlStXvu52FixYEDuzuUqVKuzZs4datWqlVpgikgU5vSh3Uv/m5gVypWMcIiKO+eKLL5g0aRKDBw+mW7duN9TWrFmzmDZtGhEREQD4+fmlRogikoU5nSyKiGRpf/75J/369aNRo0a8/vrrKd4/Ojqajz76KPZS87hx41i/fj3+/v6pHaqIZFFKFkVEHBIaGkqXLl246aab+Pbbb8mWLeULVPz77788++yzfPLJJwDkzp1biaKIpCpvWjpHRCTLiIqKokePHhw+fJjly5dTsGDBZO976dIlZs+eTffu3SlYsCC///475cqleL6giEiyqGdRRMQBI0eOZOHChbz77rspnoDyySefcN9997FhwwYAypcvr5nOIpJmlCyKiKSzOXPmMHr0aPr27cvDDz+crH1CQ0PZtm0bAP369WPp0qXcfvvtaRmmiAjg/GXowsaYu1K4rXBaBiQikpb++ecfHnjgAWrWrMmkSZOS1SNoraVVq1ZcvHiRTZs24e/vT6NGjdI+WBERnE8WW7gfCdmrbBMRyZDOnTtHp06d8Pf354cffiB79uxXrb9//36KFy+Or68vb7/9Nnny5NHlZhFJd04miwdwJYUiIpmetZa+ffuyfft2Fi1axM0333zV+tu3b6dGjRq8+eab9O/fn/r166dTpCIi8TmWLFprQ5w6tohIehs3bhzfffcdY8eOpWnTpknWO3PmDIGBgZQvX57hw4fToUOHdIxSRCQxTXAREUljS5cu5dlnn6VLly4MGTIkyXoTJ06kfPnyhIaGYozhhRdeoHjx4ukYqYhIYk6PWRQRydQOHjxIt27dKF++PFOmTPE45jAqKgpfX18aNWrErl27dIs+EfEq6lkUEUkjly5dokuXLly6dIlZs2aRJ0+eeNujoqLo0qULw4YNA6BKlSpMnDgxUT0RESepZ1FEJI0MHDiQdevWMXPmTMqXL59ou6+vLzfffDOFC2tFMBHxXupZFBFJA5988gkff/wxw4cPp1OnTrHlu3btonHjxuzcuROAd955h8GDBzsVpojINSlZFBFJZevWraN///7cfffdvPzyy/G25cqVi8OHD7N//36HohMRSRkliyIiqejkyZN06dKFIkWK8PXXX+Pr68vixYt5+umnAShSpAh///03zZo1czhSEZHkUbIoIpJKrly5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PmHu3LmsWbOGm2++mbx58zJixAg2btzInDlz6NChQ+zElpiv4eHhNGnShD///JMaNWrQp08foqOjWbhwIT169OCvv/5i9OjRiWJavXo1Y8aMoX79+vTp04d///0Xf39/APr06cOUKVMoXrw4Xbp0IW/evKxZs4YXX3yRX375hZ9//pls2eL/SQgPD6devXr4+/vTtWtXLl++zPfff0+fPn3w8fGJTXhjjBgxgpdffpncuXPTsWNHSpQowZEjR/jtt9/48ssvadasWWzdUaNGMXLkSPLly0fbtm0pWLAgmzdv5q233uJ///sfq1evTte7CUVGRtKiRQuOHDlCq1atyJYtG7Nnz2bYsGFcunQpdkhCjOSeb5FMwVrrFQ9c6y4OBD7HNYHlf7juFf0kUNrp+FL6uP32262kj19//dUWLlzY4vonw+NDkmfbtm1Oh+AVkvrcLFu2zPr4+Fh/f3975MiR2PIdO3ZYPz8/W7p0aXvo0KF4+yxevNj6+PjYjh07xiufMmWKBeyUKVMSHadXr14WsGPHjo1XfvHiRduiRQtrjLF//vlnbPnSpUtjY/7ggw8StRdzrE6dOtkLFy7E2zZixAgL2PHjx3t8D/r27WuvXLkSW/7XX39ZX19fW6FChXj1Fy5caAFbqlSpRO+BtdYePHgw9vslS5ZYwNapU8eGhYV5jHXQoEGJ2vAkpn6vXr2SXTfhe16yZEkL2FatWsV7f44fP26DgoJsUFCQjYiIiC2/nvMt4pTk/l4H1tukcrSkNuihZNHbhYWF2X79+lnA5smTR8liKrjWL5WGDRvG/qGNiIiwDRs2tF988YW11trz58/bhg0b2m+++cZaa214eLht2LCh/eGHH6y11p48edI2bNjQ/vjjj9Zaa48ePWobNmxoFyxYYK219sCBA7Zhw4b2559/ttZau3v3btuwYUP766+/Wmut3b59u23YsKFdtWqVtdbaLVu22IYNG9q1a9daa2285OlGxXxuRowYYUeMGGGHDx9u7733Xuvn52eNMXbixInx6g8aNMgCdt68eR7b69ixo/X19bVnzpyJLUsqcfn333+tr6+vrVmzpse2Nm7caAE7ZMiQ2LKYZLFatWoe96lWrZrNli1bosTMWmuvXLlib7rpJnvHHXckeg9y5sxpT58+nWifu+66ywL27NmzsWVt27a1gJ05c6bHGOLq2LGjBezWrVuTjLdAgQLXbMfa1E0Wd+7cmWifBx54wAJ2y5YtsWXXc75FnJIayaKjl6FFrtf3339P3759OX/+PM888wzDhg2jUqVKHie5FCpUyIEIJTMYNWpUvOfGGD799FMefPDBeOWrV68GYNmyZaxbty5ROydOnCAqKop//vmH22+//arHXLduHVFRUbFjEBOKjIwE4O+//0607c4770xUduHCBTZt2kT+/PkZP368x2MGBAR4bK9s2bIeLwWXKFECgLCwMHLnzg3AmjVrMMbQsmXLJF9bjNWrV+Pn58f333/P999/n2h7REQEJ0+e5NSpU9x0003XbC81BAUFUaZMmUTlcV9rjNQ83yIZgZJFyVCOHTvGE088wYwZM/Dx8eGRRx7hzTffjN0maevXX3+N/d7Pzy/e85w5c8Z7HhQUFO95/vz54z0vXLhwvOclSpSI9/yWW26J97x8+fLxnleuXDne87RY0Nr1zzacP3+e1atX07dvXx599FFKlixJkyZNYuudOuUaSh3zWUzKuXPnrnnMmLbWrVvnMRG5Wlue1mkMCwvDWsvJkycTJb/XkjdvXo/lMWMbo6L+u1treHg4wcHB5MiR45rtnjp1iitXrlwznnPnzqVbspiS15qa51skI3DyDi4iyWat5b333qN06dLMnTuXV199lV27djF58mSnQ5MsIFeuXDRr1oy5c+cSFRVFr169uHDhQuz2mOVYTp8+fdXhKQ0bNrzmsWLaeuqpp67a1tKlSxPt62mh8Jj2qlevfs3hMzcib968hIWFJWuyWVBQEMHBwdeMp2TJkjcUU1pJzfMtkhEoWRSvt2fPHu6++24GDBjAhQsXmDFjBsOHD7+hNe5ErkeVKlV4+OGHOXToEO+8805see3atQFYsWLFDR/jzjvvxMfHJ1XaAsidOzeVKlXir7/+IjQ0NFXa9KR27dpYa/npp5+SVTcsLIy//vorzeJJS6l5vkUyAiWL4rWioqJ46aWXqFSpEr///jsTJ05k/fr1tG3b1unQJAt74YUXCAgI4K233oodxzZgwAD8/Px46qmn+OeffxLtExERkezEomDBgvTs2ZP169fzyiuvxLv8GWP37t3s3bs32TE//fTTRERE0KdPH49rGIaFhfHHH38kuz1PnnjiCQAGDx7M4cOHE22PW/bUU08B8PDDD3tck/D8+fOsWbPm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QkJC6NChA4sXL45Xd8WKFbRr147ixYsTEBBA4cKFqV27dux5Shijp/Py3XffcddddxEUFESOHDm47bbbGDNmDJcvX05UN+Yzdf78eYYMGcLNN99MQEAAZcqUYezYsVhrPb6nnjzxxBOcOXOGoUOHMnTo0ESJIkCpUqX47rvvqFOnTmzZhg0bePLJJ6latSr58uUje/bslC1blsGDBxMWFpbs41/rUu/8+fOpW7cuuXLlIjg4mK5du7Jz585E9a51/iMiIpg0aRKtW7emZMmSBAQEkC9fPpo1a8aCBQvitfXrr79ijGH//v3s378/3s9Yws/d9u3b6d27NyVKlMDf359ChQrRo0cPduzY4fH17Nq1i3vuuYfg4GBy5cpF3bp1mT9/frLfr9SknkVJ5MKFC7G/5AoWLMjMmTN1mz5JNYULF+b48eOJygsVKsSxY8cciOj6RURE0KJFC5YtW8att95K//79uXDhAjNmzKBbt25s3LiR1157Ld4+/fv35/3336do0aL069cPf39/fvzxR9auXUtkZCR+fn7XPO7mzZupVasWxhjat29PqVKlOHPmDLt27WLy5MmMHj0aPz8/Bg0axOzZs1m2bBm9evVK0Ziqjz/+mMceewxfX1/at29P2bJlOXHiBOvXr2fy5Mnce++9KX27PEr4evfv30+jRo3Yt28fDRo0oGXLlpw/f5558+bRsmVLPvzwQx5++OHY+pcuXaJJkyb88ccfVK9enZ49e3L69GleffVVVqxYcdVjP/nkk6xYsYI2bdrQunVrfH19ryuG3r17M336dCpXrswDDzxAjhw5OHLkCCtXruSnn36iWbNmAPz000+0adOGwMBA2rdvT7FixQgNDeXvv/9m8uTJyephHT58OGPGjCF//vz06NGD3Llzs2DBAoYPH87ChQtZtGgR/v7+8faJjIykRYsWHDlyhFatWpEtWzZmz57NsGHDuHTpUrKOu3fvXhYvXkz27Nl59tlnr1k/ICAg9vuPP/6YWbNm0bBhQ5o1a0Z0dDQbNmxg3LhxLFiwgN9//508efJcs82rmTlzJgsWLKBTp040atSIjRs38sMPP7B06VJ+++03ypcvn2ifpM5/aGgoTz75JHXr1qV58+YUKFCAo0ePMnfuXFq3bs3HH3/MQw89BLgS2BEjRjB+/HgABg0aFNt+zNALcJ37zp07ExkZSbt27ShTpgyHDh1i5syZzJ8/n6VLl8a7bL9z507q1KnDqVOnaNWqFdWqVWPXrl107NiRVq1a3dB7dV2stXqkweP222+3GU10dLSdN2+eLV26tAVsjRo17NGjR50OS9LRtm3b0vwYQJIPb5HceF577TUL2FatWtnIyMjY8uPHj9uSJUtawK5atSq2fPny5Raw5cqVs2FhYbHlly9ftg0aNLCALVmyZLxjTJkyxQJ2ypQpsWVPP/20Bezs2bMTxRQaGmqjoqJin48YMcICdunSpR5fQ69evSxg9+7dG1v2119/2WzZstng4GC7devWRPscPHgwiXfEc9txY7fW2gsXLtjbbrvNAvatt96Kt61hw4bWGGOnT58erzwsLMxWrVrVZs+e3R47diy2/OWXX7aA7d69u42Ojo4tP3DggM2fP78FbK9evTzGVbRoUbtnz55EcackhvDwcGuMsbfffru9cuVKorb+/fff2O87d+5sAbtx48ZE9U6ePOkxxrjn5bfffrOALVGiRLzfzZGRkbZt27YWsK+++mq8dmI+h61atbIXLlyILT9+/LgNCgqyQUFBNiIiIlE8CU2bNs0Ctl69etesm9C+ffs8vjeffPKJBezrr78er9zTZz7mtST18wHYuXPnxts2fvx4C9gmTZrEK7/W+b906ZLHz3h4eLitVKmSDQ4OjvdeJhVbjNDQUJs3b15700032b/++iveti1btthcuXLZ6tWrxytv3ry5Bez48ePjlc+ePTv29SZ8f5KS3N/rwHqbRE6jnkUBICwsjKpVq3Lw4EFKly7NkiVLaNy4sdNhiRcZNGgQGzduTNNjxL0MeD2qVasW+x9+evjss88wxjBu3Lh4l+QKFizIiy++yEMPPcQnn3xC3bp1Afj8888BeP7558mbN29sfX9/f8aMGUP9+vVTdPwcOXIkKgsODr6OVxLf+++/z5UrV3jxxRepVKlSou3FixdPUXuzZ8+OvZx64sQJ5s2bx8GDB7nrrrt47LHHYutt2rSJZcuW0bVrV7p37x6vjbx58zJq1Cg6duzIDz/8wOOPPw643lMfHx/GjBkT7/J6iRIlGDRoEC+88EKScT377LOUKlUqXllKYzDGYK0lICAAH5/EI7s8Td7xdN7y58+fZJwxPvvsMwBeeOEFChcuHFueLVs23n77bf73v//xySefMHz48ET7Tpw4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dWq88s2bN3PfffcREhJCQEAABQoUoEaNGgwaNIjIyEjAdWls1KhRADRu3Dje5eAYMZeK444Di7F27Vq6detGsWLFCAgIoEiRItx9991Jvrbkyp49Oz179gRg3bp1ibaHhoby3HPPUaFCBXLkyEFQUBBNmzZl0aJFHts7ffo0gwYNonjx4mTPnp1bb72VcePGsWfPHowxicZ1xbzmPXv28O6771KlShVy5MhBo0aNriuGiIgIJk6cSI0aNQgODiZnzpyEhITQoUMHFi9eHK/uihUraNeuHcWLFycgIIDChQtTu3bt2POUMEZP5+W7777jrrvuIigoiBw5cnDbbbcxZswYLl++nKhuzGfq/PnzDBkyJPbWb2XKlGHs2LFYm/y5mE888QRnzpxh6NChDB06NFGiCFCqVCm+++476tSpE1u2YcMGnnzySapWrUq+fPnInj07ZcuWZfDgwYSFeZwv6tG1LvXOnz+funXrkitXLoKDg+natSs7dyZcUvna5z8iIoJJkybRunVrSpYsSUBAAPny5aNZs2YsWLAgXlu//vorxhj279/P/v374/2MJfzcbd++nd69e1OiRAn8/f0pVKgQPXr0YMeOHXiya9cu7rnnHoKDg8mVKxd169Zl/nxnrqB4Q8+iiEiGFBERQYsWLVi2bBm33nor/fv358KFC8yYMYNu3bqxceNGXnvttXj79O/fn/fff5+iRYvSr18//P39+fHHH1m7di2RkZHJWhR98+bN1KpVC2MM7du3p1SpUpw5c4Zdu3YxefJkRo8ejZ+fH4MGDWL27NksW7aMXr16pWhM1ccff8xjjz2Gr68v7du3p2zZspw4cYL169czefJk7r333pS+XR4lfL379++nUaNG7Nu3jwYNGtCyZUvOnz/PvHnzaNmyJR9++CEPP/xwbP1Lly7RpEkT/vjjD6pXr07Pnj05ffo0r776KitWrLjqsZ988klWrFhBmzZtaN26Nb6+vtcVQ+/evZk+fTqVK1fmgQceIEeOHBw5coSVK1fy008/0axZMwB++ukn2rRpQ2BgIO3bt6dYsWKEhoby999/M3ny5GT1sA4fPpwxY8aQP39+evToQe7cuVmwYAHDhw9n4cKFLFq0CH9//3j7REZG0qJFC44cOUKrVq3Ili0bs2fPZtiwYVy6dClZx927dy+LFy8me/bsPPvss9esH/de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umYpmyeffDLtPwTpjls6ic/SVVddtdGtEqurq7nooovYsGEDZ5xxRj1eZW5uvfVWOnTowDXXXMNNN92U9rUsXryYk046qWacXmIsaWqCs2zZMs4555y8xTZr1iymT5++UdmYMWN46623OOSQQzYZr1ibiooKVq5cyUsvvbRR+Z133plxMk6XLl1Yvnx52p/LH/zgBzWTo1544YVN6jds2LDR+9OtWzcOO+ww3nnnHcaMGbNR24ceeqjJxyuCLkOLiGSUuqhusrFjx3LRRRdRWVnJQw89RL9+/TjiiCNYu3Yt999/P8uWLeOSSy7ZaJLFQQcdxIgRI7j99tvZfffdOe6449hss82YNm0aHTt2pGvXrvWayXz99dcza9YsDjjgAHbccUfat2/Pq6++SmVlJeXl5YwYMaKm7SGHHEKrVq247LLLeOWVVygvLwfCjNpMevfuzdixYznrrLPYc889OeaYY9h11135+OOPmTt3Lh06dKg5c9oQv/nNb3j44Ye58sorOfnkk2nTpg0TJkxg0KBBnHHGGdx6660MGDCATp06sWTJEl566SVeeeUV5syZwzbbbAOEGa1Tpkxh4sSJvPHGG3zrW9/ik08+qVm4esqUKVnPDs8mhvfff58999yTPfbYg759+7L99tuzevVqpk+fztKlSzn//PNr1hA8//zzef/999l///2pqKigTZs2zJ8/n1mzZrHDDjtsMvs61X777ccll1zC9ddfT58+fTj++OPZYostqKys5JVXXmHgwIFcfPHFuR2MeujVqxczZszg+OOP56KLLuL3v/89gwcPrrnd34svvsgzzzyDmfHzn/8cgL333pv999+fyZMns99++zFw4EA++ugjKisr2W233ejatWteYhs6dCjDhg1j2LBh7LLLLvz73/+msrKSzp07M3bs2Kz6uuCCC5gxYwYDBw7kO9/5Dh07dmTevHk8/fTTHH/88UyaNGmTfQYPHszcuXM5/PDDOfDAA2nbti39+vVj6NChdOnShUmTJtXcunPw4MHsvvvumBnvvfcec+bM4eOPP95oEs0f/vAH9t13Xy644AIeeeQR+vXrx8KFC3nwwQdrJlQ1JSWLIpKVUr0HczqJpW7SueWWW2jXrh2PPvooN998MxMmTGD06NG0bt2afv36ccstt6SdaPLHP/6Rnj17cttttzFu3Di6dOnCsGHD+O1vf0u3bt3qNaP57LPPpry8nOeff56nn36aL7/8km7dunH22Wdz4YUXbnQWpVevXtx1113ceOONjB07tuYPUm3JIsCPfvQj+vTpw4033sjs2bOZMmUKW221FX379q1ZkLih9txzT4YNG8bkyZO57bbbOO+88+jWrRvz589n9OjRPPDAA9x7771UV1ez7bbb0rt3b8477zz22GOPmj4233xzHn/8cX71q18xadIkfve737HjjjsycuRIDjjgAKZMmVIztrG+sokhcZec2bNn8/jjj7NixQo6d+7MbrvtxrXXXrtRAjhy5EgefPBB5s2bx8yZM2nVqhXdu3dn5MiRXHDBBTWJfG2uu+469txzT8aMGcPdd9/N+vXr2Xnnnbnqqqu48MILN1mQO9/22WcfFixYwB133MHUqVN5+OGHqaqqol27duyyyy5ceOGFjBgxomZJmrKyMqZOncrll1/O3//+d2699Va+/vWvc+aZZ3L55ZfXOkYzG8OHD2fEiBFcffXVNbPshw8fzjXXXEOPHj2y6uvwww9n2rRpXHXVVfz1r3+lrKyMb37zmzz++OO8/fbbaZPFyy+/nFWrVjFt2jSeeeYZqqurOe200xg6dCgQksmXXnqJG2+8kRkzZvDUU0/Rpk0bunbtyqBBgzjuuOM26m/XXXflueee49JLL2XmzJnMnj2bvn37MmXKFJYvX97kyaIln7aX/Onfv7/Pmzev0fpP/MFedO2RjfYcTaWUXktz9/rrr9OrV6+0dc0lSWyun6M333yTHj16cNJJJ3HfffcVOpyScMcddzBixAjGjRvH//3f/xU6HJGCqO33ejIzm+/u/dPV6cyiiNRLc03Cis3SpUvZZpttNro0unbt2poFpIcNG1agyJqvDz74YJPLmYsXL2bUqFG0bt265uyOiORGyaKISBO65ZZbuO+++zj44IPZbrvtWLp0KY899hhLlixhyJAhnHDCCYUOsdk57rjjWL9+PXvttRedOnVi0aJFTJ8+nbVr13LNNdfkbVycSEulZFFEpAkddthhvPjiizzyyCOsXLmS1q1b06NHD84//3wuuOCCjGu/SWannHIK99xzDw888ACffPIJ7du3Z8CAAZx77rkMHz680OGJNHtKFkVEmtDgwYMZPHhwocMoKWeffTZnn312ocMQKVlaZ1FEREREMlKyKCIiIiIZKVkU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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 10, + "source": [ + "onc_plot_risk(\n", + " y_true=calibrated_results.y, \n", + " y_proba=calibrated_results.p_calibrated, \n", + " label='Predicted (Logistic Regression)',\n", + " filename='lr_mortality_bar')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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zz03GjTwNikAAACw5OjYsWMce+yx1dbccccd8cgjj5RoIgAAAAAAAErBJ2IBAAAAgCXOuHHj4txzz622Zsstt4xtttmmRBMBAAAAlM6JJ54Yv/jFL6qtOeKII2LevHklmggAAAAAAIBia1TuAQAAAAAACu2II46I+fPnL/Z4gwYN4rzzzit43+nTp8eFF16YqbZt27ZxzDHHFHwGAKjLsv6erKkkSaJx48bRpEmTaNKkSbRq1Srat28f7du3j44dO0azZs2K2h8AoK5o1apVnHLKKXHkkUcutub999+Ps846K04//fQSTgYAAAAAAECxCA4AAICl2KRJk6Jr165F7/Pdh/WbNm0a7dq1iw4dOsTyyy8f3bp1ix49ekSPHj1i7bXXjoqKiqLPAgAs+e6444544oknqq3Zd999o1evXgXvPX369Mwftu/cubPgAACWOr/5zW/K1rtBgwax8sorx5prrhnrrrtu9O/fP/r37x/LLLNM2WYCACim4cOHx8UXXxzvvvvuYmvOO++8GDZsWKy88solnAwAAAAAAIBiEBwAwFIvSZJyjwBLnTRNyz0CJVZZWRmVlZXxzTffxOTJk2P8+PE/qWnRokVsvPHGsfnmm8fQoUNjlVVWKcOkAEB9N3fu3Dj++OOrrWnatGmceeaZJZoIAKgrFi1aFJMmTYpJkybFww8/HBHfvj+80UYbxe677x577rlnrLDCCmWeEgCgcCoqKuIvf/lLDB06dLE1372Xcvvtt5dwMgAAAAAAAIpBcAAAAFAnzJ49O0aOHBkjR46M3//+97HhhhvGoYceGvvuu29UVFSUezyAxbrnnnvitddey1k3ZMiQotzdHPhff/3rX+Ojjz6qtuawww5zFz1gifLaa6/FPffck7OuV69eMWTIkKLPA/VJmqYxevToGD16dJx44okxdOjQOO6442L99dcv92gAAAWx++67x3rrrRdjxoxZbM0dd9wRTz/9dGyyySYlnAwAAAAAAIBCExwAAADUSS+88EK88MILcfLJJ8cf/vCHGD58eDRo0KDcYwH8xD333BPXX399zrouXboIDoAimzx5cpx77rnV1jRu3DiOP/74Ek0EUBqvvfZanH766Tnr9t9/f8EBUI2qqqq45ZZb4tZbb4199tknzjnnnFhxxRXLPRYAQK397ne/iz322KPamhNPPDGee+65Ek0EAAAAAABAMdh1AwAA1GmffvppHH744dG3b9949dVXyz0OAFCHnXbaaTFr1qxqa/bff/9YYYUVSjQRAFAfpWkaN910U6y11lpx++23l3scAIBa22233WL11Vevtub555+PO++8s0QTAQAAAAAAUAyCAwAAgHrhlVdeiY022iiuuuqqco8CANRB7777bs7rhIYNG8Zvf/vbEk0EANR333zzTey5557xm9/8JtI0Lfc4AAA11qBBg0zviZx00kmxcOHCEkwEAAAAAABAMQgOAAAA6o3Kysr41a9+FSeccEK5RwEA6pg//elPUVVVVW3NHnvsEausskqJJgIAlhQXXnhhHHLIIbFo0aJyjwIAUGP77bdfdOrUqdqaCRMmxL/+9a8STQQAAAAAAEChCQ4AAADqnb/+9a9x3HHHlXsMAKCOGD9+fNxyyy3V1iRJEr///e9LNBEAsKS55ppr4o9//GO5xwAAqLGKioo4/vjjc9adccYZOcMZAQAAAAAAqJsalXsAAACgfmjXrl2ccsopNTp33rx5MXv27Pjss89i4sSJ8eqrr8b06dNrNc/f/va3WGONNeJXv/pVrdYBAOq/P/3pT7Fw4cJqa7bZZpvo2bNniSYCAAohTdManTdr1qyYPn16TJs2LaZOnRovv/xyvPDCC/H888/Hp59+WuN5/vKXv8QGG2wQu+yyS43XAAAop0MOOSROO+20av+N5oMPPojrr78+hg0bVrrBAAAAAAAAKAjBAQAAQCatW7eOY445pmDrvfrqq3HffffFtddeGx999FGN1jjqqKOiT58+0bt374LNBUuC0047LU477bRyjwFQEu+//37cdtttOesOO+ywEkwDLE5NN/+yZBo1alS5R2AJ17Jly2jZsmV06tQpIiI222yz74+NHDky/v73v8cDDzwQixYtynvtww8/PDbffPNo06ZNweYFoH7q0qWL61zqnebNm8cvf/nLuPjii6utO/fcc+PAAw+MBg0alGgyAAAAAAAACsG/7gAAAGXRu3fvOPXUU+ODDz6Ia6+9NlZYYYW816isrIxDDz20Rh/0BwCWDOedd14sXLiw2ppOnTrFdtttV6KJAIC6bPDgwXHffffF66+/Hj179sz7/C+++EJQGwBQr/3qV7/KWTNhwoS4++67SzANAAAAAAAAhdSo3AMAAABLt4YNG8aBBx4YQ4YMiWHDhuX9QbQXX3wxrrvuujjooIOKNCEAUFd9+eWXcf311+esO/jgg6Nhw4YlmAgAqC/WXnvtePHFF+M3v/lNXH755Xmde+WVV8Yf/vCHWG655Yo0HQBA8fTo0SP69+8fzz77bLV155xzTuy2224lmgoAAAAAqC9OP/30co/AUuDUU08t9whQbzUo9wAAAAAREe3atYs777wzjjzyyLzPPfvss2PRokVFmAoAqMsuu+yymDdvXrU1DRs2jGHDhpVoIgCgPmnatGlcdtll8ctf/jKv8+bMmROXXnppkaYCACi+4cOH56x56aWXYvTo0SWYBgAAAAAAgEIRHAAAANQZSZLERRddFPvss09e57377rtx//33F2kqAKAumj9/flxxxRU567bffvvo1KlTCSYCAOqrq666KgYMGJDXObfcckuRpgEAKL6hQ4dGu3btctZdfPHFJZgGAAAAAACAQhEcAAAA1ClJksSVV14Zq622Wl7n3XTTTUWaCACoi+6444744osvctYdcsghJZgGAKjPGjduHJdcckkkSZL5nHfeeSfGjh1bxKkAAIqnadOm8X//93856+6888749NNPSzARAAAAAAAAhSA4AAAAqHNatGgRF1xwQV7nPPjggzF37twiTQQA1DVXXHFFzpq2bdvGVlttVYJpAID6bp111olddtklr3Mef/zxIk0DAFB8e+yxR86aqqqquPbaa0swDQAAAAAAAIUgOAAAAKiTtt9++1h//fUz18+ePTuee+65Ik4EANQVEyZMiKeffjpn3Y477hiNGzcuwUQAwJLguOOOy6v++eefL9IkAADF179//+jYsWPOumuvvTbSNC3BRAAAAAAAANSW4AAAAKDOGj58eF71PrAPAEuHrHe623333Ys8CQCwJOnbt2+0atUqc/2YMWOKOA0AQHElSRK77rprzrpJkybFo48+WoKJAAAAAAAAqK1G5R4AAABgcXbeeecYPnx45jvZvPzyy0WeKLt58+bFM888E6+++mpMmDAhxo8fH59//nnMmjUrZs2aFXPnzo0mTZpEixYtYtlll42OHTvGAQccEL/85S9LNuP8+fPjww8/jEmTJsX06dNjzpw5MXv27IiIaNGiRbRo0SLat28f3bp1ixVXXDGSJCnZbMU0b968ePLJJ+OZZ56JcePGxfjx42Pq1Kkxc+bMmDdvXrRs2TJatWoVbdq0idVWWy3WWmut6NmzZ2yxxRbxi1/8otzjL3UWLVoUn332WXz44YcxefLkmDNnTsyZMycqKyujefPm0apVq2jVqlW0bt06OnbsGJ07d44GDeQklkqapvHFF1/ExIkT48svv4zZs2f/z3+fFi1aRJs2baJLly7RtWvXaNq0ablHLpi33norHn300Xjrrbdi3Lhx8fHHH8fMmTNj1qxZ0bhx4+9/Njt16hRrrbVWrLXWWjFgwIBYd911yz16vbdo0aK48cYbc9a1atUqtt566xJMRCF8d10yceLE/7kuadiw4ffPJ7/4xS+WuOuSiG+fS99888147LHHYuzYsfHOO+98/5wyc+bMaNSo0fe/6zp06BBrrbVW9OjRI/r16xd9+/Zdov4u6pKpU6fGxx9/HJMnT46pU6fGvHnzorKyMhYtWhTNmjWL5s2bf/+nZcuW0alTp1hxxRVdhyyF5s+fHx9//HF8+OGH8fXXX39/vVpVVfU/16qtWrWKLl26xPLLL1/ukalGo0aNYpNNNokHH3wwU/2HH35Y5Ilqp6qqKj7++OOYOHHi9z+fs2fPjkWLFkWLFi2iefPmsdxyy0W3bt1ipZVWioYNG5Z75IKYM2dOPPXUU/HMM8/E+PHj/+d1/9y5c79/LdmmTZvo1q1brLXWWrH22mvH5ptvHp06dSr3+GWVpmmMGTMmnn/++Rg/fnxMmDAhPvzww+9f68yePTsaNWoUzZs3j7Zt20aHDh1i4403jvPOO69kMy5atCg+/fTTmDhxYkydOvX716ELFiz4/rpxmWWWia5du0bnzp2joqKiZLMV0+zZs2PixIkxefLkmDJlyvevvRcsWBBNmzb9n2uT5s2bR4cOHWLllVeOJk2alHv0vEyfPj0+/PDDmDJlSkyZMiXmzp0blZWVUVVV9ZNrsBYtWsQKK6wQK620UjRq5KMvNfXD93a++OKL739X/PAx1aZNm+jcufMS995OVm+//XY8+eST8dZbb8Vbb70Vn376aXzzzTfxzTffxMKFC6NFixbRsmXLWHnllaNLly6x7rrrRv/+/aNPnz714jE4dOjQuOSSS3LW3XDDDTF48OASTAQAAAAAAEBt+NdTAACgzmrfvn2sueaaMW7cuEz1H3zwQd49sm60yhJeMHfu3Lj55pvjjjvuiKeeeirmzp1bbf13G0qmTJkS77zzTqyzzjpFDQ5444034qmnnopnn302nn/++fjoo49i0aJFmc5t2rRp9O7dOwYMGBCDBg2KLbfcMho3bly0WQstTdMYMWJEXH755fHII49U+99mxowZMWPGjPjkk09i7Nixcc8990RERIMGDWKjjTaK3XffPYYNG5bXXSjJbty4cfHkk0/GCy+8EC+88EK89957sWDBgsznN2vWLNZYY43o3r17rL322rHZZptF3759a70BphCbMg888MA48MADa73Odzp37hyTJk0q2HpZTJ06NR5//PF49tln49lnn423334753Pdd5IkiW7dusWAAQNiwIABscMOO0SHDh2KPHFhTZw4MS6//PK46aab4tNPP11sXVVVVcyZMye+/PLLeO+992LUqFHfH1t55ZVjp512isMOOyzWWmutEky95Hn66aer/fv/zg477FAvPqC/tPrwww9jxIgR8cwzz8To0aPjgw8+yHxd0qRJk1h77bW/fz7ZaqutonXr1kWeuPDGjh0bV155Zdx2223x5ZdfLrauqqoq5s2bF1OmTIn3338/nn322e+PLb/88rH99tvHIYccEv369cvZ86677sp0d+zddtstevfune0bWQLMnDkzRo4cGaNHj47nn38+xo0bF19//XXe61RUVESnTp2+D8xZf/31o1+/frHOOusUZDPboEGD4sknn6zVGtdff31cf/31tZ7lhyZOnBhdunQp6Jp11cKFC+P555+P0aNHxwsvvBAvvfRSfPzxx5nD7iIi2rVrF927d4/u3btHr169Ysstt4w111yziFOTr759+2YODpg7d25Mnjw52rdvX+Spsnn33Xdj1KhR8eyzz8Zzzz0XH3zwQVRVVWU6t6KiInr27Bn9+/ePTTfdNLbZZpto0aJFkScunKqqqrj//vvjqquuisceeyzmz5+/2Nrvwnk+++yzGDduXDzwwAPfH1tvvfVil112ieHDh2cKDzz55JMzzXfmmWdmqssq6++EJ554IgYNGlRtTZqm8fDDD8e//vWvGDlyZEydOrXa+u+uTb7++uv44IMPvg+hLJZPPvkkHn/88Rg9enQ8++yzMWHChGr/+/5Qw4YNY4011ogBAwbEJptsEttvv320a9euqPMWQlVVVTz99NPx9NNPx3PPPRdvvvlmptdAP5YkSXTo0CG6dOkSnTt3jnXXXTf69esXG2ywQbRs2bIIk+dn3rx58cQTT8QzzzwTzz33XIwdOzYmT56c9zoNGzaMFVZYIbp06RJdunSJ3r17R79+/aJ3795L5Sb3XObMmROPPvpoPPPMM/HMM8/Ea6+9ltd7OyuvvHJstNFGMWDAgBg8eHCsvvrqRZ44mwMOOCDTde4///nPOOCAA3LWTZw4MS699NK4++674/3336+29rv3kz/99NN47rnn4pZbbomIiDZt2sSQIUPiwAMPjE033TTT91EOm2yySSy//PLVvi6NiLjnnnti7ty50axZsxJNBgAAAAAAQE0k+XyYCYCaS5Jko4gY/cOvjR49OjbaaKMyTVQ4kyZN+skHSpo1a1ZvPjDsznxQeq5B645JkyZF165dM9WWY4NqRMT//d//xU033ZSptm3btjFt2rS81i9EcMDXX38dZ511VlxzzTV59/+ho48+Oi688MIan/9z3n333bjhhhvitttui3fffbdg67Zr1y523XXXOPzww2O99dYr2LrFcPfdd8fvf//7GD9+fMHWbNu2bRx66KHxu9/9Ltq0afOzNVkfX8V4bJ122mlx+umn56w79dRT47TTTito75oYO3Zs3HjjjXHXXXfFhAkTCr5+mzZtYvPNN4+tttoqdtttt0ybP36sLl4zlup5efbs2XHbbbfFbbfdFo8//njmjUe5NGjQIAYNGhQHHHBA7L333nX67oAffPBB/O53v4s777wz88bmXJIkie233z5OPfXU2GCDDRZbV8gNQUuKQw89NK644oqcdf/+979jt912K8FE/6s+XF+Vy8yZM+P666+PW265JZ577rmCvS5o2rRpbL/99rHffvvFTjvtVCefs3/o9ddfj9/+9rfxyCOPFHTdTTbZJE455ZTYcsstF1tT6M00+ShkYFchVFVVxT333BPXXnttzg2mtdWsWbNYf/31Y+DAgbH77rvXOJShEMEBxVCT4ID69vvt0Ucfjdtuuy3uvffemDJlSsHXX2mllWKrrbaKbbbZJnbYYYclfpNjPs/T5XgP6dJLL40jjjgic/3bb78d3bt3L+JE1fv000/jX//6V9x2223x2muvFWzdFi1axI477hjDhw+vE4/DxVm0aFFcd911ceqpp8Ynn3xSsHWbNWsWBxxwQJx88smxwgorLLauXL/fCvE8WlVVFZdffnlcdNFF8d5779V4lnXXXbegP3sR377XdtNNN8Vtt90Wo0ePLtjfX+PGjWPrrbeOYcOG1cnrxueeey6uvPLKuPfee2v1HmMuDRs2jB49esTGG28cu+yyS2y++eYle02epmmMHDkyrrrqqnjooYeKGjxRUVERvXr1igEDBsRuu+0WG2+8ccH/m5fz/b98jRw5Mq6//vq49957Y9asWQVbt3fv3rH33nvHsGHDYplllinYuvkq1Gudt99+O/70pz/Fv//971i4cGHB5uvfv3+cffbZMWDAgIKtWUhZ32u59dZbY8899yzBRKVX3z/zAAAAAACllOXzqVBbp556arlHgJ947rnnYuONN/7xlzdO0/S5csyzOA3KPQAAAEB1OnfunLl2+vTpUVlZWcRp/leapnHNNdfEGmusEX/961+L+oHefL388sux++67x5prrhlnnnlmQUMDIiKmTZsW11xzTay//vqx3XbbxUsvvVTQ9Qth4sSJsdlmm8Wuu+5a0NCAiG9/1s4+++xYa6214r777ivo2kuThx9+OLbeeutYe+214+yzzy5KaEDEt3f9uvvuu+Owww6LTp06xZ577hmPPvqoIJscvv766zj99NOjc+fOMWzYsBgxYkTBQgMivt3g8/jjj8cvf/nLWHXVVePyyy8v6AeyC6Gqqir++Mc/Rvfu3eOOO+4oWGhAxLe/Q/7zn/9Ev3794vjjj898d7+lXZqmce+99+asS5IkNttssxJMRBbTpk2L0047LTp37hxHHnlkQTd/RXx7p9I777wzhgwZEj169Igbb7yxoI/XQpk1a1b86le/ivXWW6/goQEREU8//XQMHjw49t9///j6668Lvv6SoqqqKq688sro0qVLDB06NB566KGihgZEfHtH8meeeSb+8pe/xHrrrRerrrpq/P73v49x48YVtS+1U1lZGVdffXWsvfbaMXjw4Lj66quLEhoQEfHxxx/HNddcE0OHDo0VV1wxjjnmmHjrrbeK0ovcll122bzq58yZU6RJqjd+/PgYNmxYdOvWLX7/+98XfOP27Nmz49Zbb43NNtssNt544xg5cmRB1y+EMWPGRK9evWLYsGEFDQ2I+Pa5+7LLLou11lorrrnmmoKuXRc8/fTT0bt37zjyyCNrFRpQaJ988kkce+yxsfLKK8dRRx0Vzz77bEGvG+fPnx/3339/DBkyJHr27Bm33XZbwdaujUcffTT69u0bG2+8cVx33XVFf49x4cKF8cYbb8Tll18eW2+9dXTo0CEOPvjgeOyxx4rWM03TuOOOO6J79+6x9dZbx7///e+ihgZERCxYsCBeeumluOCCC2LAgAHRqVOnOProo+vk+5jFdNddd8X6668fW221Vdx0000FDQ2IiHj11VfjxBNPjM6dO8cJJ5yQ8671dVVlZWX88Y9/jF69esVtt91W8Peonn322Rg4cGAcdthhdfI9oOoC6H7o7rvvLvIkAAAAAAAA1JbgAAAAoE5bfvnl86ov1Qf2Z86cGTvuuGMcfPDBMXXq1JL0zOKLL76IffbZJ/r06VPQO2NX56GHHop+/frFr3/96/jmm2+K3i+L22+/PXr16hWjRo0qap/PPvssdt555zjiiCPq3Ibnuuz111+PQYMGxbbbbhsjRowoae/58+fH7bffHoMHD45VVlmlbJt86rJFixbFJZdcEt26dYvTTjstvvrqq6L3/PDDD+Owww6Lvn37xiuvvFL0fllMmjQpNtlkkzjzzDOLuqF04cKFcf7558d6660XEydOLFqfJcWrr74aX3zxRc66ddddt6x3OuT/u/nmm2PNNdeM008/vSQhS+PGjYv99tsv+vXrF6+//nrR+2X18ssvR+/eveOqq64q+vXZDTfcEGuvvXadeT6tS1555ZXo1atXDB8+PD799NOyzfH+++/H2WefHeecc07ZZqB6d911V3Tv3j0OOeSQGDt2bEl7f/3113HRRRdFz549l9i7udZ1+V5DlHrz34wZM+LII4+MHj16xLXXXlv08JOIbxPzt9pqq9hrr70yXYuVwnnnnRf9+vWLN998s6h9ZsyYEQcffHAMGTJkiXj9mKZpnHLKKbHpppvWqYCSysrKOP3002O11VaLCy64oOgbyiMixo4dG3vttVdsueWWZQtP+PLLL2PIkCExePDgsm5m/+qrr+Kaa66JYcOGFWX99957LwYOHBh77LFHwcM98/HZZ5/FxRdfHCeccELZZiild999NzbffPPYbbfdYsyYMUXvN2vWrPjrX/8aa6yxRlxxxRX1KrBz4sSJscEGG8SZZ54ZCxYsKFqfNE3j8ssvj4EDB8Znn31WtD41MWjQoEiSJGfdiBEjvA8OAAAAAABQxwkOAAAA6rTmzZvnVV+KD3FPnDgxNtpoo3jggQeK3isfV199dayxxhpxyy23lLz3dxuN11133YLf5TBfZ555Zuy5554lDTG49NJLY9ddd10iNhEUU2VlZRxzzDGx3nrrxZNPPlnucWLixIkl2WRTn7zzzjvRt2/f+PWvfx0zZswoef8xY8bEhhtuGOeff37Je//Qq6++GhtuuGE8//zzJev5zjvvxEYbbWSjbw4PPfRQprrNNtusyJOQy/Tp02OHHXaIfffdNyZPnlzy/i+99FJssMEGccYZZ5R9w8r9998fAwcOLOmGtM8//zw23XTTzI+ZpcHf//736NevX8k3gVO/fPbZZ7HVVlvFbrvtVicCfcq5uXJplu/rumbNmhVpkp+6//77Y80114x//OMfZdm0d9ttt8Xaa68djz76aMl7f6eqqioOPPDAOPHEE4u6ufPH7r333th8881jypQpJetZaHPnzo2hQ4fWieujHxo9enSsvfbacdppp8W8efNK3v+xxx6LddZZJ26++eaS9n366adj7bXXjnvvvbekfUvtzjvvjF69esUzzzxT7lGWKv/4xz+iZ8+e8cQTT5S894wZM+LQQw+NTTfdtM6EzVTnmWeeib59+5Y0TOXll1+OgQMHxueff16ynrkst9xy0bNnz5x106ZNi+eee64EEwEAAAAAAFBTggMAAIA6Ld8PMme5K05tfP7557H55pvXqQ1H8+bNiwMPPDAOOeSQkm6W/zmTJk2KjTfeOG6//fay9D/22GPjj3/8Y1l633fffbHbbru549JivPvuu7HRRhvFRRddVPQ7LVMzd9xxR/Tp06fsG9cXLlwYxx9/fOyzzz5lCXZ4+umnY9CgQWXZ6Pzll1/GFltsEW+//XbJe9cXDz74YKa6QYMGFXcQqvX2229Hnz59yh6yVFVVFaecckrstttuMWvWrLLMcOONN8Yuu+xS8rtRR0TMnj07dtppp7Ju7qwrTjzxxDjqqKOiqqqq3KNQhz388MPRq1evGDlyZLlHocy++uqrvOrbtGlTpEn+v4ULF8ZJJ50UO++8c9k3YX711VexzTbbxIUXXljy3gsWLIhdd901rrvuupL3joh44YUXYsstt4yZM2eWpX9tVFVVxdChQ+POO+8s9yj/4+9//3sMGjSopAFLP2fu3Lmx7777xvHHH1+SUIW77747ttxyy5g6dWrRe5XTJZdcEkOHDo3Zs2eXe5SlRmVlZRx00EFx5JFHRmVlZVlnefrpp2ODDTaIF198saxzVGfUqFExePDgsjwW33///dhqq63K9lr152QNYcz63gwAAAAAAADlITgAAACo0/LdZFXMO/198803se2228akSZOK1iNfX3/9dWyyySZl+9D8z5k7d27svffe8a9//aukfc8888y44IILStrzxx5++OE48sgjyzpDXfT0009Hnz594tVXXy33KCzGn/70p9hjjz3q1IeVb7nllth1111LGh4wduzY2HHHHcsawjJjxozYfvvt48svvyzbDHXV119/HS+88ELOugYNGsTAgQNLMBE/55VXXon+/fuXffPXD919992xxRZblPyx/fDDD8eBBx5Y1lChqqqq2H333WPcuHFlm6HczjrrrDjvvPPKPQZ13EUXXRTbbbddvb6TOIWTb3BA27ZtizPIf82bNy922mmnOOuss+rMXeIXLlwYv/nNb+LPf/5zyXqmaRrDhg2L+++/v2Q9f84bb7wRe+65Z70LDTzkkEPKHur0Q4sWLYpDDjkkjjrqqFiwYEG5x/ne+eefH4ceemhRH2ujRo2KvffeuyxBeaV08803x5FHHllnnreWBvPmzYsdd9wx/vnPf5Z7lO99+umnMWjQoHj88cfLPcpPvPzyy7HTTjvFvHnzyjbDW2+9FUcccUTZ+v/Y5ptvnqlOcAAAAAAAAEDd1qjcAwAAAFQn3zvpNW/evEiTRBx88MHx+uuvZ6pt2LBhrLPOOrHaaqtFly5dolWrVtGsWbOYO3duzJw5MyZOnBhvv/12jBs3rsZ3X58yZUpsueWW8cYbb9To/GJatGhRHHDAAVFRURF77bVX0fvddNNN8cc//rHG57ds2TLWX3/96N69e7Rv3z5atWoVCxYsiG+++SY++OCDeOuttzLfAfyyyy6LDTbYIPMHLZd0DzzwQAwdOrQsd1omm5NOOinOOuusco/xsx544IHYfffd45577okGDYqbf/nFF1/EdtttFzNmzKjR+UmSxNprrx09evSIrl27RqtWraKioiJmzpwZn3/+eYwbNy7GjBkTc+bMybnWpEmTYs8994wnnniiRrMsqUaMGJFpg9a6665b9A18/LzXXnstBg8eHNOnTy/3KD/x4osvxtZbbx0jRoyIVq1aFb3fG2+8EUOHDq3xHe6TJImePXtG9+7dv39OadKkScyaNSu++uqrmDBhQrz22muZQkZmzJgRO+20U+br2CXJ448/HieffHK5x6COO/XUU+NPf/pTucegDnn//fcz1zZu3Lio1x1z5syJnXbaKR577LGi9aiNk08+ORo3bhwnnHBC0XudeuqptQoo/O51/xprrBHLL798tGrVKhYuXBizZ8+Ojz/+OMaPHx9jxozJtJn7oYceilNOOaWkwQm1cemll+YVOLnqqqvGWmutFd26dYt27dpFixYtYv78+d+/thk7dmy89dZbNX6dv3DhwjjggAPixhtvrNH5xXbllVdGo0aN4pJLLin42l9++WXsueeeZb8TfLGNGzcuDj74YKEBJVRZWRm77LJLjBw5styj/MTcuXNjxx13jAcffDA23XTTco8TERGfffZZbLfddjFz5sxM9V27do2ePXtG165dY5lllokWLVp8/97xpEmT4rXXXot33nmnRj/zN9xwQ+yyyy4xZMiQvM8ttE033TQaNGiQ898rXn/99fjss89ihRVWKNFkAAAAAAAA5ENwAAAAUKdNmjQpc23btm2jSZMmRZnjlltuiTvuuKPamsaNG8cuu+wS++yzT2y++ebRsmXLnOtOnjw57rvvvrj44ovzmmfmzJmxxRZbxJtvvpnXed9p3759bLnlltGnT5/o2bNnrLzyytG+ffto1qxZNGjQIGbPnh1ffPFFvP/++/H888/HY489Fs8991xeH35ctGhRHHTQQbH66qvHeuutV6M5sxg/fnz86le/yvu8xo0bx2677RbDhg2LTTbZJBo3blxt/eeffx533313XHbZZfHWW29VW3vsscfWqTv5lcsTTzwRu+yyS63uHrj22mvHgAEDYsMNN4xu3bpFly5donXr1tGiRYuI+PZuajNmzIhPP/00Pvroo3jrrbfijTfeiGeffbagd4yt7mf/gAMOiOuvvz7nGv/85z/jgAMOKNhMhXDaaafVODSgoqIiNtlkk9h4441jvfXWi65du8aKK64YLVq0iKZNm8bcuXNj+vTp8cEHH8Sbb74ZTz75ZDz00EOZP5T9nfvvvz9+97vfxbnnnlujObNI0zT222+/+Oijj/I+t3fv3nH44YfHTjvtFO3bt6+2dt68eTFq1Ki4+uqr49577612Q/GTTz5ZlI0q9dmoUaMy1RXzdw6L9/nnn8e2224b06ZNq9H5a6yxRmy77bbRv3//6N69e3Ts2PH7DX0zZ86MSZMmxbhx4+Lxxx+Phx56KCZPnpx3j+effz722muv+M9//hNJktRozizmzJkTe+65Z8yaNSvvc/v37x8HH3xw7LDDDrHccstVW5umabz55ptx8803x3XXXVdtiMB777231G2gr6ysjIMOOqhGIV3t2rWLLbbYInr16hWrrrpqrLrqqrHccstFixYtokWLFtGkSZOorKyMysrKmDZtWkyePDk+++yzePfdd2PChAnxyiuvxNixYwt+B+Xqngevu+66OPDAA3Ousf/+++e1eXRJd+aZZ9YqNKCioiI23HDD6N+/f6y33nrRpUuXWGmllaJly5bRvHnzqKqqirlz58ZXX30Vn3322ffXRa+++mo8//zzmQKFKL2s1xwRET179oxGjYrzz61VVVWx88471zg0oE2bNrHFFltE3759o1evXrHyyitHhw4donnz5tGoUaOYPXt2TJ06Nd5///146aWX4oknnognnngiU1DTD/3ud7+LtdZaK7bffvsazZnFY489VqNN+s2bN4899tgjDjjggNh4442joqKi2vo5c+bE448/Hv/85z/jvvvuq/Z6/dxzz43ddtst75lK7b333osTTzwxZ93AgQNjv/32ix122CE6dOiQs37OnDkxYsSIuOaaa+KTTz7Ja6Zhw4bVODSgefPmsdlmm8WGG24YvXv3js6dO8cKK6wQzZs3jyZNmsScOXPi66+/jg8++CDGjBkTo0aNihEjRuS9Uf/SSy+NHj16xOGHH16jORfn6KOPrtF1bOPGjWPAgAGx8cYbxyqrrBKrrrpqrLjiitG8efNo0aJFNG/ePBYsWBCVlZXxzTffxJQpU+KLL76I9957L95999147bXX4tVXX63R9WlNHHTQQTUKlmjRokUMGjQo+vTpE6uuumqsssoq0aFDh++/x2bNmsX8+fOjsrIypk+fHlOmTInPP/883nvvvZgwYUKMGTMm3njjjbLeQb5chg8fHg8//HCNzm3btm1stdVWscUWW8Taa68d3bp1i9atW0fjxo1j5syZMWXKlHjnnXfihRdeiIceeiheffXVvHt8F4Tz0ksvxeqrr16jOQtl4cKFsc8+++R837B///7xf//3f7HzzjtHx44dc677+eefx8033xwXXnhh3s+Lxx9/fGy77bZF+7eNrNq0aRPdunWL9957L2ftqFGjYp999inBVAAAAAAAAORLcAAAAFCnjRkzJnNt586dizbHEUccsdhjSZLEQQcdFKecckqsvPLKea3bvn37OPjgg2PYsGGZP1C4aNGi2HvvvfMODaioqIihQ4fG8OHDY8CAAdXevbtNmzbRpk2bWGONNWK77baLP/3pT/Hhhx/GhRdeGFdeeWXmDS5z586NIUOGxGuvvRbLLLNMXvNmMX/+/Nh7773z3nCzyy67xPnnnx9du3bNfE7Hjh3j8MMPj8MPPzxuvfXWOOGEExb732zGjBnV/swsDcaNGxe77rprjTbMdejQIQ4//PDYe++9Y9VVV622tqKiIlq1ahWdOnWKDTfcMIYOHfr9sbfffjv+85//xH333RejR492p7sfufXWW+P000/P+7zvNsrvscce0bp168XWfbe5csUVV4xNNtkkDj/88Jg7d27cdtttcdZZZ8WECRMy9zzvvPOiT58+//Pft5DOP//8ePTRR/M6p2vXrnH++efHLrvskvmcpk2bxjbbbBPbbLNNTJgwIY455ph46KGHFlv/u9/9LtOmnaXFSy+9lKlunXXWKfIk/NiCBQti6NCh8cUXX+R97i677BLHHXdc9O/f/2ePV1RURNOmTeMXv/hF9OnTJ375y1/GggUL4u67746//OUv8frrr+fV78EHH4zTTjutRs9/WR1zzDHxzjvv5HXOOuusExdccEFsvvnmmc9JkiTWWWedWGeddeLUU0+NCy64IP785z8v9rrooosuirXWWiuvueqzSy65JD788MPM9Q0aNIjdd989jjrqqOjXr180bNiw2vpmzZpFs2bNom3btj97TTlv3rwYPXp0PProo/HAAw/EG2+8kff3QHHdfPPNccopp9To3HXXXTeOOOKI2G233ap9ndOwYcNo0qRJtG3bNlZZZZXYZJNNvj+2YMGCePHFF+O+++6Lu+++O959990azUJhff755zF+/PjM9euvv37RZjnyyCPzvkZNkiS23377OOyww2Lw4MHVbpRv3bp1tG7dOrp16xaDBw+Ok046KSZPnhyXXXZZXHTRRZnDgBYtWhT77rtvvPLKK7HKKqvkNW8WX331Vey33355BcF89z7NGWeckWmz53eaN28eO+ywQ+ywww4xYcKEOP744+P+++//2dqqqqo46KCDMq9dLieeeGLMnj17sccHDhwY55xzTvTr1y+vdZs3bx5DhgyJIUOG5BXAds4552QK3vuxgQMHfh/Y1qxZs8XWtWzZMlq2bBkrr7xyDBo0KI499tiYMWNGXHfddXHeeefFp59+mrnnMcccE717946NNtoo73l/ziuvvBK33357Xuf069cvjj/++Nhmm22+D1BcnCZNmkSTJk2idevW0alTp58cX7RoUbzxxhsxcuTIePjhh+PJJ5/MOygki7vuuiuef/75vM7Zeuut4ze/+U1sttlmOYM9mzZtGk2bNo02bdr87HvBVVVV8eKLL8ajjz4aDz/8cDz//PNL/PtBl112WY0eV6usskqcdNJJsffeey/2cdWuXbto165drL766rHTTjvFn//853jjjTfib3/7W/zrX//K67n5m2++iV133TWef/75TIG7xXL++efHuHHjFnt8wIABce655+b92O/YsWMcd9xx8etf/zrOOOOMOPvsszM/xt5///249tpr47DDDsurZzGss846mYIDXnrpJcEBAAAAAAAAddTid4kAAACU2ZdffpnXxtJ8NoHna3EfmO/YsWM8/vjjcfXVV+cdGvBDSZLESiutlKn2D3/4Q953s999991j3LhxcdNNN8XAgQOrDQ1YnM6dO8cFF1wQb7/9dmy77baZz/v444/j2GOPzbtfFn/961/zustVs2bN4pprrom77rqrVj8ve+21V7zxxhux4447LrYm342MS5KZM2fGjjvuGNOnT8/rvDZt2sRFF10UkyZNij/+8Y85QwNyWWutteLEE0+MZ555Jt5///047bTTYoUVVqjVmkuK1157Le9NLt26dYs777wzxowZEwcffHC1oQGL06xZszjggANi7NixcfbZZ+d1J7XDDz88pk6dmnfPXD744IO878I9dOjQeP311/MKDfix1VdfPR588MH4xz/+sdiNEbNnz47333+/xj2WJJWVlZkDcwQHlN5pp50Wzz77bF7ndO3aNUaNGhV33XXXYkMDFqeioiL22GOPeOWVV+Liiy+Opk2b5nX+GWecEU8++WRe52Q1evTouOqqq/I655hjjomXXnopr9CAH2vWrFmcdNJJ8corryz2MbBo0aJ46623atyjPlm0aFFcfPHFmes32GCDGDduXNx2223Rv3//nKEBWTRt2jQ233zz7wMuJkyYEKeffnrma36K69VXX42DDjoo742Eq6++etx///3x2muvxSGHHFKrcLSKioro379/nHPOOTFhwoR47rnn4le/+lU0b968xmtSe7fddlte9X379i3KHFdccUVcfvnleZ2z2WabxSuvvBL3339/bLfddtWGBixO+/bt49RTT4133303fvnLX2Y+b8aMGXHwwQcXZXPuSSedFJ9//nnm+uWWWy4eeOCBuPrqq/MKDfix1VdfPe677764+uqrF7uhtj687l/c+1kVFRXx97//PUaNGpV3aMCPZX0/7KGHHoqTTjopr7V79+4djz/+eDz55JOx5557VhsasDht2rSJo48+OsaPHx/HHXdc5vfEFixYEAceeGBUVlbm3fPnXHjhhZkfI+3bt48HH3wwnnvuudhtt91yhgZk0aBBg+jVq1eccMIJ8dhjj8UXX3wRl19+eWywwQa1XvuHLrjggsy1q6yySrzwwgvx8MMPx9Zbb50zNCCLRo0axcYbbxynnHJKjB49Oj766KM4//zzY80116z12nXR2LFj45hjjsnrnEaNGsUZZ5wRb7/9dhx00EF5P67WWWeduO666+LFF1+MHj165HXu2LFj4+ijj87rnEJbXGhA48aN45JLLomnnnqqVoEhTZo0iTPPPDPuueeevF6rXnTRRXUi5GLdddfNVPfiiy8WeRIAAAAAAABqSnAAAABQZ9177715fViu0B90zaVHjx7xwgsvxKBBg0rWc/To0XHuuedmrm/dunXcfvvtcccddxTszn+dO3eOBx54IM4888xIkiTTOddff32MHDmyIP2/89lnn8Vf/vKXzPUtW7aMhx9+uGB3BGzXrl3cc889ccghhxRkvSXJb37zm7w3O2+zzTYxbty4OOqoo/LaTJ5V165d49RTT41JkybFDTfcsFTdcfnHFixYEPvvv3/MnTs38zmHHHJIvPHGG7HrrrsWZIZGjRrFb3/723jqqacyhzlMnTo17w/DZ3H88cfntRHk6KOPjttvvz1atWpVkP5HHHFE3H///TXaALM0ef3112PBggWZagUHlNbYsWPjvPPOy+ucbbbZJsaMGRObbrpprXo3bNgwjjzyyHj++efz2oydpmkMHz68YJvAvrNo0aI46qijMtcnSRIXX3xxXHDBBQXZJBURseaaa8bTTz8dAwcOLMh69dWoUaPiww8/zFQ7dOjQeOaZZ2L11Vcv6kyrrbZanHLKKTFp0qS499578w7MoHAqKytjv/32y/s54MQTT4w33ngjdthhh6LM1a9fv7jiiivi448/jj//+c+x7LLLFqUPizdv3ry8Xm9XVFTEzjvvXPA5Pvjgg7zC9xo3bhz/+Mc/4rHHHovevXsXZIZll102rr/++rj22msz/44aNWpUXHPNNQXp/51XX301rr766sz1nTp1iqeffjqvsMNchg0bFg8//HCNgtPqqtatW8eIESPi17/+deb3dWpr2rRpMWzYsMx3J0+SJE4++eR44YUXYrPNNivIDC1atIi//vWvcf/992f+7zl+/Pg444wzat179uzZceedd2aq7d69e4wZM6agP8c/Z7nllovhw4fHSy+9FK+88krstdde0ahRo1qt+f7778czzzyTqXbgwIHx8ssvFy2A5TudOnWKY489NsaNGxdPPPFEbLvttiX7uS+2717XzJ8/P/M5yy23XIwaNSpOPvnkWr8GWX/99ePFF1+MvfbaK6/zrr322hg1alStehdau3bt4sknn4zDDz+8YD8fO+ywQ9x8882Z1xs/fnyd+HvJ+p7Kq6++GlVVVUWeBgAAAAAAgJoQHAAAANRZV155ZV71G264YZEm+alu3brFo48+WtI7hs6bNy8OOuigzB+yXnnllWP06NExdOjQgs+SJEn84Q9/iMsuuyzzhx9POOGEgt416Y9//GPMnj07U21FRUXcd999Bd9E16BBg7jiiitin332Kei69dlDDz2U92aRE044IR544IFa3Q0yq4qKithvv/3izTffjBtvvLFgGzXrkzPOOCPeeOONTLVJksRFF10UV155ZUHucPhjffv2jaeeeirzc+lNN90UY8aMKVj/p59+Ou6+++7M9QcffHBceOGFBev/na222iruvPPOgtzhekn10ksvZapbccUVa3X3Z/J32GGHZQ51iIjYdddd47777ou2bdsWbIZ11103nnrqqejSpUvmc8aPH5/X5tAs7rjjjnjllVcy15911llx5JFHFnSGiG83Az7wwAPRq1evgq9dXzzyyCOZ6nr06BHXXXddUUKLFqdBgwax0047xTPPPBNnn312yfry/51yyikxduzYzPVNmzaN22+/Pc4555yS/Kwss8wycdJJJ8XEiRPjxBNPLHo//r9LL700rzvbb7/99rHccssVdIY0TeOggw6KOXPmZKpv165dPProo3HEEUcUZSPsgQceGHfeeWfm100nn3xyXgFluZx00kmZ3wNp27ZtjBw5sih3FR84cGDcc889UVFRUfC1S61p06Zx3333lTQEM+LbALasj68mTZrEHXfcEWeccUZR/s632267GDlyZObr0fPPPz8+++yzWvV86qmnMj02WrRoEXfeeWesuOKKteqXr/XWWy9uueWWzJv+F2fEiBGZ6jp06BC33357QV8TZDFo0KB48MEH45Zbbilp32K59tpr49lnn81cv/zyy8eoUaMKGmDVvHnzuOmmm/IOaj300EPrzKbz1q1bx6OPPhr9+vUr+Nq77LJL/PrXv85cf/vttxd8hnytu+66mermzp2b1zU1AAAAAAAApSM4AAAAqJMeeOCBvDZeNWvWLDbaaKMiTvT/NW3aNO65557o0KFDSfp954ILLojx48dnql1hhRXiiSeeiB49ehR1puHDh8cpp5ySqfb111/Pa4NudT799NP417/+lbn+ggsuKNgd6n4sSZK45pprYv311y/K+vXJwoUL87ozZsS3G7fOPffcaNCgtG9RNGjQIPbdd99o3rx5SfuW24cffhjnnHNO5vpLL700r7tn18Qqq6wSDz74YLRs2TJT/WmnnVaw3vls2Nxoo43ikksuKVjvH9t2221tIK1G1uCAnj17FnkSfmjEiBHx9NNPZ67feOON4+abby7KBrAuXbrEgw8+mNfdgM8///yYPn16wWbIJ4hgn332id/+9rcF6/1jLVu2jPvvvz/atWtXtB51WdYNVH/729/Kei1Q6tcTREycODGvEKAmTZrE3XffXZQwtlxatWoloKyEnn322TjppJPyOiffTZJZ3HrrrfHkk09mqm3VqlU88sgjsckmmxR8jh/aYYcd4oorrshU++WXX8Zll11WkL5vvPFGPPzww5lqkySJW2+9tSihAd/ZbLPNihIiVmoXX3xxbLrppiXt+dxzz2V+D6eioiLuuOOO2G233Yo6U9++feOOO+7IFN42b968Wr9Wy3ptctRRR0X37t1r1as2anttkvX7PP3002P55ZevVa/aWBKuwRYsWBBnnHFG5vrvQkOK8V5xgwYN4sorr4xtttkm8znjx4/P673dYkmSJG688cZYb731itbjjDPOiGWXXTZT7T333FO0ObLq0qVL5tfVWd+rAQAAAAAAoLQEBwAAAHXO7Nmz8958vM022xTlbtg/5y9/+UvJNyZOnz49zjvvvEy1TZo0ifvuuy+6detW5Km+deqpp8bgwYMz1Z511lkF6XnRRRdlvrvxVlttFUcccURB+i5O06ZN44Ybbijp3WrromuvvTbeeeedzPXDhw+P008/vYgT8WOnnXZazJ8/P1PtcccdF4ceemiRJ/rW2muvHZdffnmm2vvvvz/eeuutWvd8++2346GHHspU26xZs7jhhhsy32m1po477rgYOHBgUXvUV1n/m5fqdx/fymejynLLLRd33XVXUX9Xdu/ePa6//vrM9TNmzIiLL764IL1HjRoVY8aMyVS7wgorFDWI5DudOnWKf/zjH0XvUxdluR5ZaaWVYssttyzBNNQlJ598cuZroYiIf/7zn3ltgqN+eu+992KXXXaJysrKzOcMGDAgdtxxx4LOUVVVFaeeemqm2iRJ4qabboo+ffoUdIbFOeCAA+Lggw/OVHveeecV5C7Sf/vb3zLXHnbYYbH11lvXumcuhx9+eGy11VZF71MsO+20UxxyyCEl7/uHP/whc+3f/va3gj+2FmfLLbfM/J7ElVdeGV999VWNe2V9r+TAAw+scY+6IMv32axZs9hrr71KMM2S7YYbbogPP/wwc/0//vGP6Nu3b9HmadiwYdx6662x8sorZz7nL3/5SyxcuLBoM2VxxBFHFP05p02bNplDOb/44ovMwcHFkiRJdOnSJVPtm2++WdxhAAAAAAAAqBHBAQAAQJ1z2GGHxYQJE/I6Z++99y7SNP+re/fuceSRR5ak1w/97W9/i2nTpmWqPeecc2L99dcv8kT/X5IkcfXVV2e6W+vLL78cr7/+eq36LViwIK655ppMtY0bN868Gbm21lprrTjhhBNK0qsuWrhwYV4bSPv06VOwzZpk8+6772a+m1ufPn1qfUfFfO27776xww47ZKrN+hxQncsvvzzSNM1U+4c//CFWXXXVWvfMJUmSuPLKK6NRo0ZF71XfTJo0KVPdiiuuWNxB+N6LL74YzzzzTOb6Sy65pCR3FR0yZEjsu+++mesvvvjivDYRL84///nPzLVnn312tG3bttY9s9hnn32WukCSOXPmZNrYt+GGG0aDBv6JZGkyfvz4uOWWWzLXH3XUUSV7nUn53HnnndGnT5+YMmVK5nMaNGgQf//73ws+yw033BDvvvtuptqjjz66ZJurv3P++efHCiuskLPuiy++iAceeKBWvWbPnh133HFHptplllkm/vKXv9SqXz7+/ve/18vr9SZNmsQFF1xQ8r6PP/54PPHEE5lqd9lll/j1r39d5In+129/+9vo1atXzrrKysq48cYba9zno48+ylmz3HLLxWqrrVbjHnVBlu+zR48eme9mzuKdf/75mWu33XbbGDZsWBGn+VabNm3i6quvzlz/3nvvxb333lvEiarXoUOHgoXc5nLwwQdnfu3x9NNPF3ma3LK+tzJx4sQiTwIAAAAAAEBN+FQcAABQZyxcuDCOPvrozBtbv9OlS5fYddddizTV/zr11FNL/gHxBQsWxBVXXJGpdoMNNihLsMHKK6+c+cPdtd3w+8gjj8TXX3+dqfaQQw6Jrl271qpfPk444YRYZpllStavLrn//vvj448/zlTbqFGjuPbaa4t+93b+16WXXprpTm4NGzaMK664oiybYc4+++xMH6S+8cYba7XRd+HChXH77bdnqm3fvn0cc8wxNe6VrzXWWCP233//kvWrD2bNmpX57p6CA0rnuuuuy1y76aabxh577FG8YX7kr3/9a6ZAo4iIr776Kv7zn//Uqt/cuXPj7rvvzlTbo0ePvIINCqFUm2HqipkzZ2aq69SpU5Enoa657LLLMocGde3ateQhSpTW+PHj48ADD4zdd989pk+fnte5xx9/fKaNxvnKGkaw0korxZlnnlnw/rm0bt06Tj755Ey1tX3df88998ScOXMy1Z544onRpk2bWvXLx+qrr14v7wp/4IEHRrdu3UreN+vPdatWrYoSyJFLo0aNMgdP1ObnOsv1yZJwbbK0fJ/l9uKLL8a4ceMy1TZq1CguuuiiIk/0/w0ePDiv9+nzeV1ZaL/97W+jZcuWJem1wgorRL9+/TLVvvrqq0WeJresj9MPP/ywyJMAAAAAAABQE4IDAACAOmHy5Mmx1VZb1egO5Mcff3w0bNiwCFP9r5VWWil23333ovf5sXvuuScmT56cqfass84q251Tjz322KioqMhZl3Vj3eJkvUtogwYN4oQTTqhVr3y1bt06Dj/88JL2rCsuv/zyzLVHHXVUrL322kWchh+rrKyMG264IVPtXnvtFb179y7yRD+vR48esf322+esmzp1aq3uwPb444/Hl19+man2yCOPjBYtWtS4V0387ne/iyRJStqzLps0aVLmWptQSqOysjJuvfXWzPWl3rjeoUOHvAI/artZ5ZFHHsm8Wf2oo44q+bXaxhtvHH369Clpz3LKGixTH+8WTc3NnTs387VQRMRFF10UzZo1K+JElMPHH38ct912W2yzzTbRvXv3Gj3/77zzzkX5vfbSSy/Fa6+9lqn2lFNOKfn16XeGDRsWyy23XM66ESNGZN74/3PuuOOOTHXNmzeP4cOH17hPTR199NEl71kbSZKUNAztO59//nnmgKajjjqqbCFg2267bfTs2TNn3Ztvvhnvv/9+jXpkuT5ZEq5Nlpbvs9yuv/76zLUHHXRQrLbaakWc5qf+/Oc/Z37N89BDD2V+37uQWrVqFYccckhJew4ePDhT3TvvvFPkSXITHAAAAAAAAFC/+VdZAACgrObOnRvXXXddnHnmmfHZZ5/lfX7Pnj1L9iHxfffdtyQBBT927bXXZqrbYIMNYssttyzyNIu3/PLLx4477hh33XVXtXWffPJJjB07Nnr06JF3j0WLFsXDDz+cqXbbbbeNzp07592jtn71q1/FWWedlenO7kuKL7/8MkaMGJGptlmzZvHb3/62yBPxY/fcc098/fXXmWp/97vfFXma6h1yyCFx//3356x7+OGHY4sttqhRjwceeCBTXaNGjWLYsGE16lEbq666amy55ZYxcuTIkveui/L5IHq5NhstbUaNGhXTpk3LVLvhhhvGRhttVOSJfurII4+M8847LxYsWJCz9pFHHonZs2fXeBNm1sdqixYtYt99961Rj9oaPnx4vPTSS2XpXWpNmzbNVPfxxx8XeRLqkv/85z+Zn7fWW2+92HHHHYs8EVldeOGFNTpv9uzZMX369Jg2bVpMmTIlXn755Rq95/BD/fr1i5tuuqkoATBZX/d37Ngx9t9//4L3z6px48bxy1/+Mv72t79VW1dZWRlPPPFEplCwH1u4cGE88cQTmWr32GOPaNu2bd49aqtHjx4xYMCAeOaZZ0reuyY23HDDWGONNUre94YbboiqqqqcdU2aNInf/OY3JZho8Q455JA46qijctY9/PDDccQRR+S9fpbrkyXh2qRp06Y5Q0OWhO+z3PIJZS1HaMiaa64Z2223XabgkKqqqrjvvvvi4IMPLsFk/9/QoUNLHsKz4YYbZqobP358kSfJLet7KzNmzIhp06ZFu3btijwRAAAAAAAA+RAcAAAAlNz8+fPj5ZdfjkceeSQuu+yymDJlSo3WadiwYVx++eUlu1PV7rvvXpI+PzRr1qx4/PHHM9WW+gOWP2ennXbKGRwQ8e3dB2sSHPD6669n3vxcro15K620UgwcODDzRoclwQMPPBBpmmaq/eUvfxnt27cv8kT82L333puprl+/frH22msXeZrqDR48OJo1axZz586ttm7EiBFx3nnn1ahH1sfn5ptvHh07dqxRj9r6v//7P8EB/zVp0qTMtYIDSiOfn81DDz20iJMsXocOHWLIkCGZ7lg8f/78eOqpp2LbbbetUa+s12pbb7112e4QPWTIkBg+fPhSEWzUrl27aNiwYc7v9dFHH40FCxZERUVFiSajnLKEEn3nhBNOKOIk5Kvcm4m/s99++8WVV16ZOZwkX/fdd1+muv3337/sz1s77bRTzuCAiG+v12sSHPDyyy/HN998k6l21113zXv9Qtl9993rTXBAOd7Pisj+OnSXXXaJZZddtsjTVG+nnXbKFBwwYsSIGgUHLLfccjlrvvzyyxgzZkyst956ea9fVyy33HLx0UcfVVvz8ssvx5QpU+IXv/hFiaZasrz11lvx+eefZ6rddNNNo3v37kWe6OcddthhmYIDIr59fVnq97V32mmnkvaLiFhrrbUy1X3xxReRpmkkSVLkiRZvpZVWylw7adIkwQEAAAAAAAB1jOAAAAAgk2+++aZGd/pL0zS++eabmDZtWnz99dfx0UcfxYsvvphzQ2gW55xzTmy88ca1XieLdu3aleWDu48++mjMnz8/Z12DBg1i6NChJZioeoMHD85U9+KLL9Zo/aybfSsqKmK77barUY9CGDJkyFIVHJD1g8AREQcccEDxBuFnLVq0KEaMGJGpdq+99iryNLk1bdo0BgwYkHNj8tixY2Pu3LnRrFmzvNafOnVqvPnmm5lqd95557zWLqQddtghGjVqlOkOnUu6L774IlNdRUVFtGrVqsjTEJE9OKCioiKGDBlS3GGqsccee2QKDoj49nuqSXDAV199Fe+8806m2nLewXzZZZeN/v37x1NPPVW2GUqlUaNG0alTp/jwww+rrfvqq6/immuuKVu4BaWzaNGieOihhzLVtmnTpqzPW9Q9LVu2jD//+c+ZNhTX1GuvvRafffZZptq6cL3ev3//aN68ec67itf0dX/WzfhNmzbN/B5EMey0005luZN3TWyxxRYl7/n111/HCy+8kKm2Lvxcd+7cOVZbbbV49913q62r6c91165dM12HnXvuuXHrrbfWqEdd0LVr15zBAQsXLozzzz8/zj777BJNtWTJJ8StnO8VDx48ONq1axfTpk3LWfvYY4/FokWLokGDBiWY7Nsw4nI8L6688srRpEmTqKysrLZu4cKF8dVXX2UKHCmWZZZZJnNt1vdsAAAAAAAAKB3BAQAAQCbTpk2rM3f6i4gYNmxYHHfccSXrN2DAgLLc5eeRRx7JVNe3b9+8PtBXLCussEJ06NAh5wcGX3vttRqt//LLL2eq22CDDaJNmzY16lEIW221Vdl6l8OoUaMy1XXt2jX69etX3GH4iZdeeim++uqrTLXbbLNNkafJZv3118/5YfiFCxfGG2+8ERtuuGFea48ZMybSNM1Uu+WWW+a1diEts8wysf7662febLMkmz17dqa6fEMkqJmZM2dmDt/YdNNNo23btsUdqBrbbrttNG3aNObNm5ez9tlnn61RjzfeeCNz7SabbFKjHoUyYMCApSI4ICKiV69eOYMDIiJ++9vfxoYbbhi9e/cuwVSUy5tvvhlTp07NVLvLLrsU7Y7y1C8NGzaMgw46KM4444xYfvnli9or6+v+jh07xrrrrlvUWbJo1KhRrLPOOvH8889XW/fmm2/WaCNo1t+tG2ywQVkfr127do0VV1wxPv3007LNkEWbNm1inXXWKXnfkSNHxqJFi3LWVVRUlGUD789Zf/31cwYHfPHFFzF58uRo3759Xmv36tUrrr/++px1t912WwwePDiGDRuW1/p1Ra9eveLJJ5/MWXf++efHZpttFltvvXUJplqyjB49OnNtOcOQKioqYocddoh//etfOWu/+uqrGD9+fHTv3r0Ek0Wsvvrq0bJly5L0+qEkSWK55ZbL9Htj6tSpZQ0OyOf9lazv2QAAAAAAAFA6pYnsBgAAKKCDDz44rrrqqpL2LNeH87NuGB04cGCRJ8lurbXWylkzYcKETJv4fizrRsWNN94477ULaY011oh27dqVdYZSef/99zPdPSxi6QtUqCuyPo+0b98+1lhjjSJPk02W55GI/Dbsfifr88hyyy0Xq6++et7rF9JGG21U1v51heCAuuXNN9/MHL6x6aabFnma6rVo0SL69OmTqfatt97KtLnt587L4he/+EWsssoqea9fSOW+PiqlQYMGZar75ptvYtCgQXHvvfcWdyDKKmv4WETYwEh07tw5/vCHP8Q7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4y7gzsF55J/c3NyUJ08eo1pX2LCflJRk980gGZEtgwNsuSse0iZ79uxGda7yPpicnGx8N2DTx/afTK9PTDdeWCklJUUXL150dowMIVu2bGrbtq3Gjx+vjRs36s6dO9qyZYsmTJigxx57LE3PlfsZMWKEVq5caZe1cH+m16oS16uZ3auvvqoGDRoY148ZM8Yu51Su1//J9H1Vco33VlfI4Ip4Xtufj4+P6tevryFDhmjx4sW6fv26Dh06pO+++069e/e26TPTw6xatUojRoywy1pp4e/vr2bNmmnEiBFatWqVbt++rV27dumLL77QU089ZdM54mF++OEHff/993ZZy5FsuQZ1lc9jV65cMaoLCAh45IfiZiSmv1spUKCAwwaNAAAAAAAAAAAAwByDAwAAAADARdlyx2R7333LFZl+OTg5Odnozr9WO336tLMjOITp85QNFc7BeeR/mZ5LwsPDrQ1imCElJcXZMZwub968ypIli1Et5xrrmd7Z11U24F65csV4oFBa7lpseszRo0dtXtvezp49y+a8NPL29ladOnU0aNAg/fLLL7p+/bp27typMWPGqGbNmnJzc0vTuikpKXr11VcVFxdn58T4W0BAgPEGVt5DMjc3Nzd9/fXXxpsWIyMjNWrUqHT35Xr9n7Jly2Z8x2lXeG91hQyuiOe19dzc3FS2bFm98MILmjp1qk6fPq3Tp0/rq6++Urt27dJ1p/kPP/xQhw8ftmPatPPw8FCVKlX02muvadasWbp48aIOHTqkjz/+WE2aNEnXhuW33nrLJQYG2sKWzyuu8nnMNEdaPovBOqbXxfYaWgIAAAAAAAAAAAD7YnAAAAAAALiokJAQ49rMcIflggULGte6wpf3XSGDI5huCDhz5gwbApwgX7588vLyMqrNDOcRyfxc4gqvYVfI4Arc3NxUuHBho1o2fVqvQIECRnUnT55UUlKSxWlSd+TIEeNa08f2n8qUKWNUd/DgQZvXtjdXyPCocHNzU9WqVTVs2DD98ccfOnPmjMaOHWvT9fvfTp48qalTp1qQEn8zvV7lNYLQ0FC99NJLxvU//PCDTp48ma6efO7/X6VLlzaqc4XXrCtkcEU8r52jSJEieuWVV7RkyRJdu3ZN33//vWrVqmXzOgkJCXYZjGKVsmXL6o033tDatWt16dIlffbZZypXrpzN69y+fVsff/yx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S6MNuVZbt26dtmzZYlRr67XJ119/rSeeeMKSz8y2mj59us6dO2dUa49rMGeoUKGCOnfubFz/66+/asSIEZblOX78uLp27Wr8+1E3NzcNGzbMsjyw3a5du3Tnzp1U6ypXrqy8efM6IBEAAAAAAAAAAADSisEBAAAAAJBBtGrVSs8884xx/ebNm1W7dm3t2bPHulAGwsLC1L17d5UpU0ZTpkyx28a4xx57TE2aNDGuX7p0qTp06GDXL/uvXr1aLVq0MPpSZWYxfvx4FShQwLj+yJEjqlmzpsM3BaxatUq1a9e22/OhYcOGRnXr16+36U639ubj46Pvv//e+K50ERERatOmjT7//HOnbly7dOmSRo8erSJFiqh///46f/68XdbNmjWrxo8fb1x/48YNNW3aVGFhYXbpL/21MaZ169Zas2aN3dZ8lAUEBBi93iIjI7Vjxw4HJMrc8uTJoyFDhhjXR0ZGqlmzZpac8ydNmqQ333zTuN7NzU2ffvqp3XM0aNDApg2OkjRhwgTVrFlT69evT3Pf2NhYvf/++6pateoDr/3c3d1Vvnz5NPfIKOLi4vT999+rdOnS6t69u13P2bZYs2aNxowZY1QbHBysevXqpbun6fXIrVu31LNnT8XExKS7Z0bj4eGh77//3nhjtiT9/PPPatmypa5fv25hsn9KSEjQt99+q06dOjmsJx7u9ddfV/bs2Y3r33333TT1CQ0NtWkj5ZEjR1SrVi2nX0vu3btXL730kooVK6ZPPvlEUVFRdlv7/fffV548eYzrr127ptatW6tv3766fPlymvseP35cjz32mHr37v3AITCVKlVK8/qZSe7cuW0a/nbp0iU1aNBAc+bMsS6UgZMnT+rNN99U4cKFNWLECN28eTNN66SkpGjVqlVq1KiR6tevr7lz59rtd2O2uHTpknr06GFc3759e5vWT0pK0vz581W5cmW1bdtWy5Ytc8rvEQ4ePKh+/foZ1Xp4eGToO6d/8MEH8vHxMa5/7733jK9PbXH06FE1adLEptdI3759Va5cObtnQdqZDv2x9dwAAAAAAAAAAAAAx2NwAAAAAABkIF9++aVKlChhXH/ixAnVrFlTw4cPV2RkpIXJ/unq1av64osvVKlSJTVo0EBz5841vuOULSZOnGjTF2RXrVqlqlWrpnsDWVxcnN599121atVKd+/evW9NlixZ0tUjowoODtZ3331n0zFnz55V3bp19f7771v65fnExETNmTNHtWrVUsuWLfXHH3/YbW1bNnWNHDlSzZo10++//+6UzQLNmjXTv//9b+P6xMREDRgwQE2bNtWhQ4csTPZPCQkJWrZsmZ588kmFhIRoxIgRunr1qt37PP3006pfv75x/c2bN9WkSRONHz8+3T+/NWvWqEqVKtq0adMDazLrueRhunXrZlS3ZMkSi5NAkoYMGaIyZcoY11+/fl2NGjXSvHnz7NI/Pj5e/fv31+uvv27TxqS+ffuqTp06dsnw3yZOnKiSJUvadMyePXvUpEkTNWjQQDNnzjTedHPgwAENGzZMRYsW1dtvv/3QjZr9+/dXtWrVbMqVkSUlJWnu3Llq0KCBKlWqpEmTJunatWsO6T1z5kx16NBBycnJRvV9+vSRl5dXuvs2a9ZM/v7+RrXLly9XpUqVNG3atAdezz6qateubdOgEemvjVSVK1fWwoULrQn1/925c0cTJkxQiRIl1LdvX509e9bSfjAXGBioN954w7h+1apVaf7c+e6776pu3brG9VevXlWLFi30yiuvOHTAxZ07dzR16lTVr19flStX1nfffae4uDi798mVK5emT59uPPxM+muj9rfffqvixYvrhRdeUFhYmBITE1M9LiYmRsuWLdMTTzyhcuXKPfQ17+npqR9++ME4U2bXp08f4+t4SYqKitJTTz2lrl27OvRcGBMTo3nz5qlNmzYqWbKkPv74Y0VERNht/c2bN6t79+4KCQnRsGHDdOTIEbut/TC7du1S7dq1jYdpVKlSRdWrV09zv+XLl6tdu3YqWbKkxo8f77Cf4cqVK9WwYUPj4SUdO3a0aTCJqylZsqSGDh1q0zHDhw/Xc88998CBKLZaunSp6tWrpwsXLhgfkzdvXr3//vt26Q/7Mf0dii3ncgAAAAAAAAAAADiHp7MDAAAAAADM+fv7a+7cuTZ9CTYhIUFjxozRt99+q0GDBqlPnz7KlSuX3bOFh4dr+fLlWrhwodasWWPJoID/Vr58eY0fP96mDRynT59WgwYN9OSTT+qtt96y6YvQMTExmj17tsaMGaPTp08/tHbUqFEaPHiw8dqPkjZt2mjQoEH6+OOPjY+JjY3V22+/renTp+vtt99Wjx495Olpn19b7N27Vz/++KNmzpypK1eu2GXN/1avXj0VLlzY+Mvwa9eu1dq1a+Xv769q1aqpZMmSypMnjwIDA+Xt7W20RmBgoJ577rk05X3vvfe0detWbdy40fiY9evXq0KFCurRo4def/111ahRI029HyYyMlJr167V0qVLtWDBAt24ccPuPf6bm5ubZs6cqUqVKhlvnExMTNTQoUM1bdo0DR8+XE8++aTxz02Stm7dqg8++ECLFi16aF2bNm0UHR2tDRs2GK+dGTz++ON67bXXFB8f/9C6BQsWaOzYsQ5KlTZnzpyxaROco/3666/q3LnzQ2u8vb01ZcoUNWrUyGhDniRFRESoW7du+uWXX/TBBx8oJCQkTfnWrVun/v37a//+/TYdV7RoUUs3qvx9vVa/fn2bN+SEhYUpLCxM7u7uqlChgsqVK6ciRYooICBA3t7eioqK0o0bN3T8+HHt3r3bePNXiRIlNGbMGL366qtpeUgZ3r59+/T666/rjTfeUIsWLdSpUye1a9dOBQsWtGufAwcOaNSoUZo/f77xMT4+Pnr99dft0t/X11edO3fWjz/+aFR//Phx9enTRy+++KIqVqyosmXLqmDBggoODpaPj4/x+em5555TYGBgeqI73OjRo7Vp0yZt2bLF+JgLFy7oscceU/PmzTVs2DA1btzYLlkSExO1bt06zZgxQwsWLFBMTIxd1oX9vf766/rkk0+Mh7uMGDFCa9assbmPh4eHZs+erZo1axp/fklJSdE333yjn376Sf369VPfvn1VuHBhm3un5vLly1qxYoV+++03LVu2zJJBAffTqlUrDRkyROPHj7fpuOjoaE2ZMkVTpkxRYGCgqlWrptKlSytPnjzy9/dXcnKyIiMjdf78eR09elQ7d+40fkxvvfWWqlatmpaHk2lNnjxZe/futWmz/IIFC7RkyRK9+OKLevXVV1W2bFm757p165ZWrlypxYsXa9GiRQ4ZvHnp0iWNGzdO48aNU7Vq1dSlSxe1b99eFStWtGufa9eu6aOPPtKkSZMUGxtrfJwtwwYf5uTJkxo6dKiGDRumBg0a6LHHHlP79u1tGopq4syZMxo7dqymTJliPLhJ+ut1nNENGTJECxcu1O7du42PmTp1qsLCwvTxxx+rQ4cOaep75coVDR06VFOnTrVpgJubm5u++eYbBQUFpakvrHH58mVt3rw51boKFSooNDTUAYkAAAAAAAAAAACQHgwOAAAAAIAMpmrVqpo/f746duxo092ur169qsGDB2v48OFq1aqV2rVrp+bNm6tYsWI2b1qMiYnR0aNHtWPHDm3btk1hYWE6duyYrQ/FLgYMGKBVq1Zp+fLlNh03b948zZs3TxUrVlSbNm1Ut25dlSlT5t4GgoSEBN29e1enT5/W/v37tWbNGq1YsUK3b99Ode3HHntMTz75ZKYdHCBJH374oY4dO6bFixfbdNyRI0f07LPPavDgwXriiSf02GOPqVatWvLz8zNe48KFC9q8ebM2bNigpUuX6syZM7bGt5m7u7sGDhyogQMH2nRcZGSkNmzYkKaN4SEhIWkeHODl5aVFixapYcOGNm24TU5O1o8//qgff/xRFSpUUOfOndW6dWtVrVpVWbJksSlDcnKyzp49qz179mjbtm3aunWrtm3blupmcCsUKVJEkydP1lNPPWXTcceOHdPTTz+tgQMHqk2bNmrSpInKly+vIkWKKDAwUB4eHoqMjNTly5d1+PBhbd68WcuWLdPhw4dTXTswMFDffvutevXqldaH9cjKli2bWrdurd9+++2hdUePHtX+/ftVoUIFByXLvOrWrasJEyZowIABNh03d+5c/frrr+ratauee+45NWjQINUhHLdu3dLSpUs1efLkNN3J2dfXV7/88ovlG1WqVKmiefPmqXPnzsYDFf5TcnKy9u7dq71796Y7S1BQkBYtWmTTe6m7u3u6+7qixMRELV++/N51Y/ny5dWgQQPVq1dP1atXV4kSJeTh4WHTmmfOnNHSpUv122+/aeXKlTZtnJKkN998U0WKFLHpmId54403jAcH/C0xMVG7du3Srl270tSzc+fOGW5wgLe3txYuXKhatWqlOhDsv61evVqrV69WaGiounfvrnbt2qlixYrGz53k5GQdPXpUmzZt0rp164w/Y8D5AgIC9MYbb+idd94xql+7dq02bNigRo0a2dyrcOHCWrFihRo1amQ83Er6azjPuHHj9P7776tJkyZq3769WrRoobJly9p8bo+Pj9fx48e1c+dObdu2TVu2bNG+fftsPs/Zy9ixYxUeHq7Zs2en6fi7d+9q3bp1WrduXbqztGnTRu+9955xvSsPinKkoKAg/f7776pbt65NdyePi4vTF198oS+++EK1a9dWx44d1apVK1WoUEFeXl42ZUhMTNTp06e1a9eue59D//zzT4cMv3yQnTt3aufOnRo2bJgKFiyohg0bql69eqpdu7bKli0rX19fm9a7ffu2fv/9dy1ZskS//PKLzYOs6tevr+7du9t0TGpSUlK0ceNGbdy4UQMHDlSJEiXUoEED1a9fXzVr1lSpUqVsGsYn/bVxffny5Vq8eLEWL15s0+9IJalnz56qU6eOTce4Im9vby1YsEDVq1c3Hmwj/TVAqmPHjqpatapeeeUVdejQQXny5HnoMUlJSdq6daumT5+uWbNm2fzckv4adNCpUyebj4O1fvnlF6OhGz179nRAGgAAAAAAAAAAAKQXgwMAAAAAIANq3bq1pk+frmeeecbmzWjx8fH3vlQr/bU5tUKFCipcuLDy58+vwMBA+fr6ysPDQ3FxcYqNjdWdO3d05coVXb58WadPn9bZs2edtlngv7m5uWn27NmqX7++Dhw4YPPx+/bt0759++yWJyQkRN98802avjz7KHF3d9fs2bPVokULbd261ebjL1++rEmTJmnSpEny9PRUaGioSpQooZCQEAUFBd3b/Pj38/PixYs6e/asDh06ZNMXpe2pb9++mjhxos2bz5wlODj43makEydO2Hz8/v37tX//fr333nvy9PRU6dKlVbx4cRUsWFA5c+aUr6+vfHx8FB8fr7i4OEVHR+vq1au6fPmyzp8/r+PHj9t0x0Orde/eXYcOHbJpA9Dfrl+/rpkzZ2rmzJl2yzN58mS73wn7UdKnT59UBwdI0vz58xkc4CD9+/fX7t27NX36dJuOi4+P16xZszRr1ixlzZpV1apVU5kyZZQ3b957dwKOiIjQmTNndOjQIe3duzfNG7vc3Nw0ZcoUVa5cOU3H26pdu3b6/vvv9fzzzzttM5qnp6fmz5+vcuXK2XScrRu3MqoDBw7owIED+vrrryX99bhLlSp177o4d+7c8vX1la+v7727UkdFRenmzZs6duyYjhw5ohs3bqS5f7Vq1TR8+HB7PRxJfw2t6Natm+bOnWvXdR9FuXLl0tKlS9W4cWNdvXrV5uMPHjyo4cOHa/jw4fL391eFChVUrFgxFSxYUP7+/vLz81NiYqJiY2N148YNXbx4UadOndLhw4cVExNjwSOCI7z++uv65JNPjD9zjBgxQuvXr09Tr8qVK2vRokVq3769oqKibDo2OTlZa9as0Zo1ayRJfn5+Kl++vEJCQlSwYEEFBQXJ19dXnp6eiouLU1xcnCIiIu597j9z5oxOnz7t1M3U/83NzU3Tpk3TnTt3tGzZMqflqFChgubOnWvToJnM8r5qonDhwvr999/VpEkTXbt2zebjt23bpm3btmno0KHy9vZWaGioihYtqgIFCih79uzy9fWVt7f3ved1ZGTkvc+h586d04kTJ2zeYO5I58+fv3dtLP31u5UiRYqoaNGiyp8/v/Lly6esWbPK19dX7u7uioqKUlRUlO7evasTJ07o6NGjOn/+fJp/ZxcUFKRp06bZ8RHd34kTJ3TixAlNnTpV0l/XrMWLF1dISIjy58+vvHnzys/P797QhKioKEVGRur27ds6fvy4jh49qsuXL6e5f0hIiCZOnGiXx+IKihYtqjlz5qhdu3Y2P7937dqlF198UW5ubgoNDVVoaKiKFSumgIAAeXt7KzIyUteuXdORI0e0c+fOdA07ateuncaMGZPm42GdBQsWpFrj4eGhp59+2gFpAAAAAAAAAAAAkF4MDgAAAACADOqpp55SYGCgnnzyyXRtUr979642b96szZs32zGdYwUFBWn58uWqW7euzp0757QcgYGBWrJkiXLnzq3w8HCn5XAVWbNm1cqVK9WxY8d03dUxMTHRbnddtpKvr6++++47tWrVyqU22DxM/vz5tWXLFrVr1047duxI8zqJiYk6ePCgDh48aMd0jjd69GidO3fOIRslUsth7zs8Pmrat2+vPHny6MqVKw+tmz9/vkaNGuWgVJgyZYpiYmI0b968NB0fFRV1706k9ubm5qbJkyfrqaeesvvaD/Pss88qODhY3bt3d/iwlKxZs2revHlq3rz5vf9m+v6UJUsWq2K5tPj4+HvDBKyWL18+zZ8/Xz4+PnZf+/PPP9f69etTPUdCKlu2rDZu3KjmzZvr/PnzaV4nMjJSW7duTdPALGQsAQEBGjRokIYNG2ZUv2HDBq1du1ZNmzZNU7/GjRtr3bp1ateuXZo2Wf8tOjpa27dv1/bt29O8hivw9vbWokWL9Nxzz9l1aJepmjVrasmSJQoICJDE+2pahYaGasuWLWrdurVOnjyZ5nXi4+O1e/du7d69247pXEtycrJOnTqlU6dOWd7L09NTP/30k4oXL255r/+WmJioo0eP6ujRo5b3CggI0IIFC5Q9e3bLezlSixYtNGfOHHXr1s3mIbOSlJKSYul1cPPmzTV//ny5u7tbsj7S7vr169qwYUOqdW3btlX+/PkdkAgAAAAAAAAAAADpxf+VAwAAAIAMrF27dlq3bh13pZZUsGBBbdq0SaVKlXJK/6xZs+qXX35R+fLlndLfVfn7+2vZsmV64oknnB3FIZo1a6Yvv/xSbm5uzo5iLFeuXFq3bp06d+7s7CguYcqUKXr55Zed1v/ll1+2+92nH0Wenp7q3bt3qnWHDh3SkSNHrA8ESX/dgfCnn35yucEXnp6emjx5sl588UWn9O/UqZM2bNigYsWKOaxn3rx5tX79erVt2/Yf/930LudWbGbH/8mbN6/Wrl2rIkWKWLJ+njx5tGTJEgUGBlqy/qOmdOnS2rRpE9fxMNavXz/lyJHDuH7EiBHp6lejRg1t2bJF5cqVS9c6jwpPT09Nnz5d48ePl5eXl8P6/j0QL1euXPf+G++raVeiRAlt2bJF9erVc3YU6K/X1ezZs9WuXTtnR7HU37+jqlatmrOjWKJLly6aPXu2yw0radWqlX777TeXy4W//Prrr0aDcF544QUHpAEAAAAAAAAAAIA9MDgAAAAAADK4mjVrau/everatauzozhdSEiIwsLCVLduXYf2zZMnj9avX69mzZo5tG9GkSVLFs2bN0+fffaZQzd2OEvfvn01f/58BQUFOTuKsaxZs+rXX3/V119/LT8/P2fHcSp3d3d9/fXXGj16tMPvhDdq1Ch9/fXXDu2Zkb388stGPyNn3I02M/t709GYMWNc4m6SOXLk0O+//+60oQF/q1mzpvbs2aPnnnvO8uEyvXr10oEDB1S9evX/+bvY2FijNf6+kzLsr2rVqtq+fbvKlCljaZ/q1atr69atKl26tKV9HhVFihTRH3/8oWeffdbZUZABBAQEaNCgQcb1YWFhWrlyZbp6lihRQn/++adeffXVdK3zqHBzc9OQIUO0ZcsWhYaGWtorKChI3333nRYtWvQ/n5V4X02f3Llza8OGDRo1apQ8PT2dHSfTypkzp1atWvXI/16xaNGi2rJli+rXr+/sKJbq2rWrNm7cqAIFCjg7iiRp0KBBWrp0qXx9fZ0dBQ/w448/ploTEhLyyA8WAQAAAAAAAAAAeJQ4/5ubAAAAAIB0y549u37++WfNmjVLhQsXdnac+/L399fzzz+vggULWtonV65c2rBhg95++22HbFhs2LChtm3bdt/Nefin/v37a9u2bapVq5azo1iuS5cuOnr0qJ5//nl5e3s7O46xl19+Wbt37/6fO1S7kgYNGqhDhw6W9xk+fLhWr16t/PnzW94rZ86cmjt3rt59913Lez1KihQpYvRc+OGHH5SYmOiARPhPw4YN04oVKyy7o7qJFi1aaOfOnWratKnTMvyngIAATZkyRX/++adatGhh9/Xr16+vlStXaubMmQ+8E/aVK1eM1sqTJ489o0GSh4eHBg0apLCwMBUqVMghPcuVK6e9e/dq7NixNt0dPbPy8/PTtGnTNHfuXJfZbAfX1a9fP5teVyNGjEh3T19fX3355ZdauXKl5Zvl08rb21vdunVTxYoVHdKvevXq2rt3r7777ju7v259fX318ssv69ChQw+8yzLvq+nn4eGhd999V1u3bnX4EEhT7u7uatu2rRo2bOjsKHbXpk0b7d69W40bN3Z2FEs988wz2rlzpypUqODsKA5Ro0YN7dy5U126dHFahrx582rBggWaMGGCPDw8nJYDD3fkyBFt3Lgx1brXXnuNnyMAAAAAAAAAAEAGwuAAAAAAAHiEPPXUUzp69KjGjx/vEpuD3N3d1aRJE3333Xe6ePGivv/+ewUHB1ve19PTU+PGjdO2bdssu5NYtmzZ9NVXX2n9+vVO3RSZ0VStWlVbt27Vd999Z/kQiQdxc3NT06ZNNXfuXAUFBVnWJ0+ePPr+++8VHh6uDz74QDVr1rT8LtP2UKpUKS1dulSrV69WzZo1nR1H0l93BhwyZMi9LzQ3atTIIX2bNGmigwcPauDAgZYMgHBzc1OPHj106NAhPfnkk3ZfPzN4/fXXU625fPmyFi1a5IA0+G8tWrTQwYMH9dZbb8nHx8dhffPnz68ZM2Zo5cqVCgkJcVhfU1WrVtXKlSt14MAB9evXT7lz507zWrlz51bv3r21ZcsWbdq0KdWBBJcuXTJaN2/evGnO5Gz/+te/9N5776l27doOGSJlolmzZtq2bZsmTJjg8Lut+vj4aOjQoTp37px++OEHtW3bVlmyZHFohozmySef1JEjRzR48GBlzZrVKRmyZMmiXr166ZtvvnFKf6TO399fgwYNMq7ftm2bli9fbpfeLVq00N69e/XNN984bBBJamrWrKlPP/1UFy5c0Jw5cxw60NDDw0MvvPCCwsPDtWDBArVu3Tpd1+6VK1fW6NGjdebMGX399dcPHSSWGd5XHaV69eravHmz5s2bpzJlyjg7jiQpNDRU7733nsLDw7V06dI0D8Ro1KiRvvrqK7Vt29Zl7rpeqlQpzZ07V8uWLbPb72aefPJJTZgwQU2aNJGXl5dd1kyvatWqadWqVZo+fbqyZcvm7DgOlSdPHi1YsEALFy5U0aJFHdbX09NTL7/8sg4fPuzUwQUw8+2336Za4+fnp+eff94BaQAAAAAAAAAAAGAvbikpKc7OAACZgpubWx1JW/7zv23ZskV16tRxUiL7CQ8PV0xMzD/+m6+vLxvoACADCA8PN/7iYEhIiMLDw60N5ASmm3gz4men2NhYzZ49W19++aV27tzpsL5+fn5q0qSJ2rVrp8cee8wlviC/dOlSTZw4UatWrUr3z7Jw4cIaMGCAXnzxRfn7+z+wzvT1ZcVra+TIkRo1alSqdSNGjNDIkSPt2tsWCQkJmj17tj799FPt2bPH8n758+dXz5499dJLL6lEiRKW97ufO3fuaNu2bdqzZ4+OHz+u06dP6+rVq7p+/boiIyMVHx+vhIQEo+epo87LW7du1RdffKEFCxYoLi7O8n5/q1Spktq2bavOnTu7xACDU6dO6fPPP9f06dN1586ddK3l4+Ojnj176s0331TZsmUfWtu4cWNt2LAh1TXXrVv3yN8l8kGqVaumXbt2PbSmRYsWWrlypUPy2HJ95ep+/fVXde7c2S5rXb58WR9//LEmT56siIgIu6z534oVK6a33npLffr0ceiggvRKSUnR3r17tXbtWh04cEBHjhzRuXPnFBERoaioKHl4eCggIEABAQHKly+fypUrp9DQUNWuXVs1a9Y03hwfHR2tgIAAJScnP7Qua9asioyMtMdD+wdnXHdfu3ZNy5cv19KlS7VmzRrduHHDbmunxsvLS507d1a/fv3UoEEDh/U1ER8fr507d+rPP//UsWPHdPLkSV2+fFnXr1/XnTt3FBcXp4SEhFSfK387ffq0zb8HzCjvb7du3dJXX32lr776ShcvXrS8X4UKFdSnTx89++yzyp49u+X9nMWWYVqu/Fk8MjJSRYoUMT631KhRQ9u3b7drhsTERC1cuFBffvmlNmzY4LB/L29vb9WvX19t27ZVly5dXO7aJyoqShs2bNDmzZt15MgRHTt2TNeuXVNkZKRiYmLk5+engIAABQYGqlixYgoNDVX58uXVrFkzmzZRf/PNN3rllVdSrXvttdf0xRdfpOch/Y+Mch5Ni5SUFK1atUpffPGFli1bpqSkJIf0dXd3V82aNe/9Pis0NNTuPWJiYrR27VotXbpUK1as0OnTp+3e42Hq1aunV199Vd26dbP07uF3797VypUrtWTJEq1atcoh76F/c3d3V8uWLfXaa6+pffv2lvdz5u//TCUmJmrWrFn68MMPdfDgQUt6+Pr6qnfv3ho8eLDThrf17t1b06dPT7Vu6tSp6t27t/WB7sOVzt2xsbEqUKCAbt68+dC6f/3rX5o0aZKlWVwF33kAAAAAAAAAzJl8PxVIrxEjRjg7AvA/tm7dqrp16/73f66bkpKy1Rl5HoTBAQDgIAwOAAC4otu3b+uzzz4zqg0ODtaAAQMszQPrnDhxQosWLdJvv/2m7du3KzY21m5rBwcHq1q1amrQoIEaNGigunXruuxdTE+dOqVFixZpxYoV2rJli9GmOD8/P4WGhqply5Zq3769TRv0nCWjDA74T4cOHdK8efO0cOFC7d+/33ij2sP4+PioQYMGatWqlVq2bJnmuwPiLxEREVq+fLkWLVqkNWvW6MqVK3Zb28vLS+XKlVPdunXVoEEDNW7cWPny5bPb+vYUHR2tpUuXavny5VqzZo3Onj2b6jHu7u4qWrSo6tWrp/bt26tVq1YKDAx0QNrMYd68eerWrdtDa9zc3HT8+HEVL17cQanwIDExMfrtt980Z84crV69Ot0b1PPnz6+OHTuqR48eql+/vk2bUTOb7du3q1atWqnWValSJdVhHGnhCgO7jh07pq1bt2rbtm3aunWrDhw4YNfNiMHBwWrUqJE6dOigjh07KleuXHZb+1HjSpumTCQnJ2vjxo36+eeftXTpUp05c8Yu62bPnl3NmzdXy5Yt1apVK7vd9RmZ04ULF/Tbb79p0aJF2rx5s12HwPj7+6ty5cqqX7/+vc/+AQEBdls/o3r11Vf19ddfp1r3+eef6/XXX3dAokfPjRs3tGTJEi1atEjr16/XrVu37LZ2lixZVKFChXvP60aNGjl8aMvly5f/cW2yc+dORUdH2219Hx8f1axZU+3bt1fnzp1VqlQpu61tizNnzvzjce7Zs0fx8fF2Wz9r1qyqW7euOnbsqE6dOqlQoUJ2Wzs1GWFwwH/asWOHZs+erV9//TXdeXx9fdWoUSN1795dXbp04X0hg/nxxx/19NNPP7TG09NTx48fzzT/z5/vPAAAAAAAAADmGBwAR2BwAFwRgwMAAP/A4AAAAOAqEhIStH//fu3YsUNHjx7V2bNndfbsWV25ckXR0dGKjo5WbGys3N3d5e3trSxZsihbtmzKmTOncufOrZCQEBUrVkwlS5ZUxYoVVbhwYWc/pDRJSUnRuXPndPToUd24cUMRERGKi4tT1qxZ5e/vr+DgYJUoUUJFihRhE6KD3b17V3/88Yf+/PNPnTx5UuHh4Tp79qzu3r2r6OhoxcTEyMPDQ/7+/goICJC/v78CAwMVEhKiMmXKqGzZsipTpoxKlSqVoe44ndGcPXtWO3bs0L59++79jM6fP6+IiAjFxMQoJiZGSUlJ8vb2lo+PjwICApQjRw7lypVLBQsWVNGiRVW8eHGFhoaqXLly8vb2dvZDSpO7d+/q8OHD9x57ZGSkvL29790dvECBAipTpox8fX2dHfWRlZycrNKlS+vEiRMPrRs8eLDef/99B6WCiaSkJO3du1dbtmzR4cOHderUKYWHh+vWrVv3rknc3d2VNWtW+fn5KXfu3CpatKiKFSumSpUqqV69eipWrJizH0aG8cUXX6hfv36p1vXs2VM//vijAxI5X0xMjE6cOKGTJ0/e+3Pq1Cldv35dkZGR987rUVFRcnNzk7e3t3x9fZU9e3blzp1b+fPnV8mSJVW6dGlVq1ZN5cqV47oxk7h48eK9jY+nT59WeHi4Lly4oMjIyHufp7JkyXLvejUgIEDBwcEqXrz4vWvVMmXKqGjRoi4/lAwZU3Jysg4dOqQdO3bo8OHDOnv2rM6cOaPLly8rKirq3vW69NfGYh8fHwUHBytHjhzKnTu3ChcurGLFiql48eKqWLGiihcvzvntPqpXr66dO3emWrdq1So1b97cAYkebSkpKTpx4oR27NihAwcO6MyZMzp79qwuXryoyMjIe8/r5OTke8/rwMBA5cyZU7ly5VKhQoXufQ6tUKGCSpcuLQ8PD2c/rH9ISkrS6dOn/3FtcuLECV25ckURERH3rk0iIyOVlJR073EGBQUpd+7cyps3r0qUKKFSpUqpUqVKqlq1qkv+XiQ+Pl6nTp269/j+fqxXr1699/j+/pOSknLvcWbLlk25c+dWvnz5VKJECZUuXVqVK1dWpUqV5Onp6eyHleFcuHBBYWFh2rNnz73r4CtXrigqKkpRUVFKTEyUn5+f/Pz8FBQUpCJFiqhYsWIqXbq06tSpo2rVqsnLy8vZDwNp1LBhQ23atOmhNZnps6HEdx4AAAAAAAAAWzA4AI7A4AC4IgYHAAD+gcEBAAAAAABYY9q0aerTp89Da3LmzKkzZ87Iz8/PQakA19KpUyf99ttvqdaNGzdOb7/9tgMSAQCQcd24cUO5c+dWcnJyqrUXL15Uvnz5HJAKAIDU7d27V5UrV35ojbu7uw4cOKCyZcs6JpQL4DsPAAAAAAAAgDkGB8ARGBwAV5RRBgdwGxMAAAAAAAAAGVqvXr1UokSJh9Zcv35d3333nYMSAa4lMjJSa9asMaqtWbOmxWkAAMj4Fi9ebDQ0oFChQgwNAAC4lHHjxqVa071790w1NAAAAAAAAAAAAOBRwuAAAAAAAAAAABmap6enhg8fnmrdxx9/rISEBAckAlzL/PnzFRUVlWqdt7f3/SYiAwCA/zJt2jSjusaNG1uaAwAAWxw/flzz589/aI2Hh4feffddByUCAAAAAAAAAACAvTE4AAAAAAAAAECG17NnT4WGhj605ty5c5o5c6aDEgGuISUlRZ9++qlRba1ateTr62txIgAAMradO3dqw4YNRrUMDgAAuJIPPvhAycnJD6159tlnVbp0aQclAgAAAAAAAAAAgL0xOAAAAAAAAABAhufh4aH3338/1boPP/ww1S/JA4+Sn3/+Wfv27TOq7dSpk8VpAADI+IYPH25U5+HhoXbt2lmcBgAAMxcuXEh1mKKvr69Gjx7toEQAAAAAAAAAAACwAoMDAAAAAAAAADwS2rdvr0aNGj205ujRo1qwYIGDEgHOdfv2bQ0YMMCo1t3dXd27d7c2EAAAGdzcuXO1fPlyo9pmzZopT548FicCAMDMhAkTFB8f/9CaAQMGqECBAg5KBAAAAAAAAAAAACswOAAAAAAAAADAI2PChAlyc3N7aM3YsWOVnJzsoESAcyQnJ6tPnz66dOmSUX3jxo3ZIAIAwEOcOHFCr776qnF9r169LEwDAIC5K1eu6LvvvntoTe7cuTV48GAHJQIAAAAAAAAAAIBVGBwAAAAAAAAA4JFRvXp19enT56E1e/fu1Y8//uigRIDjpaSkaMCAAVq4cKHxMW+88YZ1gQAAyOAuXbqkdu3a6ebNm0b1BQoUULdu3SxOBQCAmREjRigqKuqhNePGjVNQUJCDEgEAAAAAAAAAAMAqDA4AAAAAAAAA8EgZN26cAgMDH1ozfPhwxcbGOigRMqO+ffvqm2++UXx8vEP7xsXFqU+fPpo0aZLxMRUrVlS7du0sTAUAQPpcuXJFrVu31rZt2xze+/Dhw6pbt66OHTtmfMwbb7whb29vC1MBAGDm6NGjmjJlykNrqlWrluoQRgAAAAAAAAAAAGQMDA4AAAAAAAAA8EjJkyePRo0a9dCas2fPauLEiQ5KhMzozJkzeuWVV1SsWDGNHz9eN27csLznnj17VLNmTU2fPt2m48aOHWtRIgAA7CMlJUW///676tSpo6ZNm2rhwoVKTk62tGdycrK++uorVa9eXeHh4cbHFS5cWC+//LJ1wQAAsMHgwYOVmJj4wL93c3PTpEmT5O7OV8gAAAAAAAAAAAAeBfxfHwAAAAAAAACPnH79+qlKlSoPrRk/frxu3rzpoETIrC5cuKChQ4eqQIECeuKJJ7R48WLFxcXZtceBAwf07LPPqlq1atq3b59Nxz722GNq3769XfMAAGCldevW6bHHHlNISIiGDBmi/fv323X9xMREzZ8/X5UqVdJrr72m6Ohom46fNGmS/Pz87JoJAIC0CAsL06JFix5a89JLL6lOnToOSgQAAAAAAAAAAACrMTgAAAAAAAAAwCPHw8NDkydPfugd827fvq333nvPgamQmcXFxWn+/Pnq2LGjcuTIoc6dO2vixIn6888/lZCQYNNaSUlJ2r9/vz766CPVrVtXFSpU0IwZM2y+83KOHDk0ceJEm44BAMBVnD9/Xh988IEqVqyookWL6rXXXtOcOXN09uxZm9eKjIzU77//rv79+6tQoUJ64okndODAAZvX6datmzp27GjzcQAAWOGtt9566N/nzp1b77//voPSAAAAAAAAAAAAwBE8nR0AAAAAAAAAAKxQo0YNTZ06VadOnXpgjY+Pj5KTkx86YACwt6ioKC1atOjenR89PT1VvHhxlSxZUvnz51fu3Lnl5+cnHx8fJSYmKjY2Vnfu3NH58+cVHh6uAwcO2Hz34//m4eGhuXPnqmDBgvZ4SAAAOFV4eLi++uorffXVV5KkoKAglSlTRiEhIcqXL5+yZ8+uLFmyyMvLS7GxsYqJidHVq1d14cIFHTt2TMePH1dKSkq6MpQvX15Tpkyxx8MBACDdLl++rFatWqlVq1YPrGnUqJGCg4MdFwoAAAAAAAAAAACWY3AAAAAAAAAAgEfWM8884+wIQKoSExN19OhRHT161GE9J02apGbNmjmsHwAAjnTnzh398ccf+uOPPxzSL3/+/Fq0aJGyZs3qkH4AAKQmb968GjlypLNjAAAAAAAAAAAAwMG4jRYAAAAAAAAAAJmEu7u7vv32W73yyivOjgIAwCMhJCREGzduVLFixZwdBQAAAAAAAAAAAAAAZHIMDgAAAAAAAAAAIBMICgrS/Pnz9eKLLzo7CgAAj4S6desqLCxMxYsXd3YUAAAAAAAAAAAAAAAABgcAAAAAAAAAAPCoq1Onjnbv3q3HHnvM2VEAAMjwPD099fbbb2vDhg0qWLCgs+MAAAAAAAAAAAAAAABIYnAAAAAAAAAAAAB2FxIS4uwIkqSCBQtq5syZ2rx5s4oWLersOAAApImPj4/y5s3r7BiSpDZt2mjfvn0aN26cPD09nR0HAAAAAAAAAAAAAADgHgYHAAAAAAAAAABgZ5MnT9aZM2f06aefqn79+nJ3d+yv46tXr64ffvhBx48fV69eveTm5ubQ/gAA2FO2bNl04cIFbdq0SQMGDFDhwoUd2t/Hx0e9evXS1q1btWzZMpUtW9ah/QEAAAAAAAAAAAAAAExwCwQAAAAAAAAAACxQuHBhDRgwQAMGDNDVq1e1ceNGbd26VVu3btWuXbsUFxdnt17u7u6qXr26OnTooI4dO6pixYp2WxsAAFfg7u6u+vXrq379+vr000+1d+9ebd68+d5768mTJ+3aLzAwUC1atFCHDh3Uvn175ciRw67rAwAAAAAAAAAAAAAA2BuDAwAAAAAAAAAAsFju3LnVtWtXde3aVZIUHx+v/fv369SpUwoPD9fp06cVHh6uS5cuKSoqStHR0ff+JCQkyMfHR76+vvLz81OuXLlUsGBBFSpUSKVLl1bVqlVVpUoVZc2a1cmPEgAAx6lUqZIqVaqkV199VZJ07do1HThw4B/vq2fOnNHNmzf/8d4aExMjScqSJYt8fX0VEBCg/Pnzq2DBgipcuLAqVqyoqlWrqnTp0nJ3d3fmQwQAAAAAAAAAAAAAALAJgwMAAAAAAAAAAHAwb29vVatWTdWqVXN2FAAAHgm5cuVSkyZNnB0DAAAAAAAAAAAAAADAabhFAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRiDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyMAYHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAbG4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIwBgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJCBMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAMjMEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkYAwOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgA2NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRiDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyMAYHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAbG4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIwBgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJCBMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAMjMEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkYAwOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgA2NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRiDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyMAYHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAbG4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIwBgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJCBMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAMjMEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkYAwOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgA2NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRiDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyMAYHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAbG4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIwBgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJCBMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAMjMEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkYAwOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgA2NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRiDAwAAAAAAAAAAAAAAAAAAAAAA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3ryp8PDwfwxDKFWqlJ599lm98MILLv8zPH/+vFatWqUtW7Zox44dOnbsmGJiYmxex8/PTyEhISpSpIhKlCihmjVrqnbt2ipRooQFqe0nJSVF27dv16ZNm7R582Zt375dFy9eND7e399fNWrUUL169dSsWTM1bNhQ7u7uFiZOXe/evTV9+vRU66ZOnarevXunWrd582ZNnTpVK1asMHqdx8fH69atWwoPD9eRI0f+8XdLlizRn3/+meoaXl5eGjp0qNzc3FKtdaTz588bD3R5/PHHVaFCBYsT/VNsbKw2bNigzZs3a/Pmzdq1a5du375tfHzu3LlVt25d1atXT61bt1b58uWtC2uBO3fuaNq0aZo6dar27t370Nrr16/r+vXrOn36tLZv337vvwcFBalNmzbq3bu3WrVqZXVkAAAAAAAAAAAAAAAAAAAAABkUgwMAAACATOrIkSP/2FiemqJFi+r111+3LpAd+fn5aezYsUYbkP/2zTffuNzggJUrV2r06NHavHlzutc6duyYhg0bplGjRqlPnz4aPXq0Sw0QuHPnjqZPn64ff/xRf/75p1JSUtK9ZnR0tA4fPqzDhw//47/nyJFDtWrVUosWLfT444+rUKFC6e5lD7t379aPP/6oefPm6fz582leJzIyUuvWrdO6des0ZswY5cuXT08++aRee+01lSxZ0o6JHSslJUWzZs3ShAkTtGfPHrutm5iYqFGjRhnV1q5dW82aNbNbb3v4/vvvjfJ7enrqlVdecUCiv35Wy5cv1+zZs7Vo0SJFRESkea2rV69q4cKFWrhwod566y2VL19ePXv2VN++fZUtWzY7praviIgIjRs3ThMnTlR0dHS61rpz547mzJmjOXPmqFKlSho2bJieeOIJOyUFAAAAAAAAAAAAAAAAAAAA8Khw7i0HAQAAADjNlClTbKp/66235OPjY1Ea++vVq5cKFy5sXP/rr7/q5s2bFiYyd+PGDfXq1UutWrWyy9CA/xQfH6/JkyerZMmSmjRpkl3XTotbt25p8ODBKlCggPr3768dO3bYZWjAw9y4cUPLli3TwIEDFRISorp16+rTTz/V9evXLe37IGvWrFGLFi1UtWpVffLJJ+kaGnA/ly5d0ueff64yZcroqaee0tGjR+26viPs379fDRs2VK9evew6NECS2rVrp1y5chnVTps2za690yslJUUzZswwqm3durXy5MljaZ6EhARNnTpV5cqVU7t27fTjjz+ma2jA/Rw4cEBvv/22QkJCNGTIEN2+fduu69vDnDlzVKJECb3//vvpHhrw3/bu3asnn3xSbdu21blz5+y6NgAAAAAAAAAAAAAAAAAAAICMjcEBAAAAQCaUkJBgvNlUkrJly6Znn33WwkT25+HhoX/961/G9XFxcZo5c6aFiczs3LlT5cuX108//WRpn7t37+r1119Xx44ddePGDUt7PcisWbNUokQJffjhh4qKinJKhpSUFG3dulVvvPGGlixZ4tDex48fV8uWLdW8eXOtXr3a8n7JycmaM2eOKlasqJEjRyouLs7ynvYwefJkVatWTWFhYZas7+XlpZ49exrV/vLLL3bfCJ8eGzZs0OnTp41q+/TpY2mWVatWKTQ0VM8995yOHDliaS9JioiI0AcffKAyZcpozpw5lvczER0dreeff15PPfWUrl69ammv5cuXq3z58lq5cqWlfQAAAAAAAAAAAAAAAAAAAABkHAwOAAAAADKh1atX27Sp8YUXXpCfn5+Fiazx4osvytfX17je6s36qVm+fLkaNWqky5cvO6zn4sWLVadOHYWHhzusZ3x8vJ599ln17NlTN2/edFhfV5GSkqJx48apQoUKWrVqlcP7x8fHa9SoUapVq5ZDf+62Sk5OVr9+/fTyyy8rISHB0l69e/c2qouOjtbPP/9saRZbTJs2zaguR44cat++vSUZ7ty5ox49eqhly5Y6fvy4JT0e5sqVK3rqqafUo0cPRUdHO7z/327evKmmTZvqhx9+cFjPu3fvql27dpo6darDegIAAAAAAAAAAAAAAAAAAABwXQwOAAAAADKhZcuW2VTfo0cPi5JYKzg4WG3atDGu37lzp65fv25hogdbu3atOnXqpKioKIf3Pn78uOrVq6fDhw9b3is6OlqtWrXSjBkzLO/lim7duqV27dpp2LBhiouLc2qWvXv3qnr16lq/fr1TczzIq6++qi+++MIhvSpVqqQqVaoY1Zpu1rdaVFSUFixYYFTbs2dPeXt72z3D/v37VaNGDc2ePdvua9tq9uzZqlu3rs6dO+fw3pcuXVKDBg30xx9/OLx3YmKinnvuOacPvgEAAAAAAAAAAAAAAAAAAADgfAwOAAAAADKh5cuXG9eWKlVKlStXti6MxZ588knj2uTkZP3+++8Wprm/w4cP6/HHH7f8ruoPc/HiRbVu3VqXLl2yrEdSUpK6du3qshvVrXb69GlVr17dptef1W7cuKG2bdtq9erVzo7yDyNHjtTkyZMd2rN3795GdWFhYTp16pS1YQzMnz9fkZGRRrWmj80WK1asUO3atXX8+HG7r51We/fuVePGjR06PCAyMlLt2rXToUOHHNbzfp577jlt2rTJqRkAAAAAAAAAAAAAAAAAAAAAOJenswMAAAAAcKzjx4/r5MmTxvWPP/64hWms1759e/n4+Bjf3X358uXq2bOnxan+T0xMjDp16qTbt28b1efIkUNVq1ZVmTJllCNHDvn7+ys2Nla3b9/W8ePHtXfvXoWHh6cpy9mzZ9WuXTtt2rRJWbNmTdMaD/Pee++51KZ5Rzpx4oSaNm3qlLuhpyYmJkYdO3bUihUr1LBhQ2fH0bJlyzRq1Cjj+kKFCqlChQoqVqyYcuTIoaxZsyopKUmRkZG6evWqDh06pH379ikiIuKh6/To0UNvvvlmqgM8UlJSNH36dJsyWmHatGlGdRUrVlSVKlXs2vu3337TE088ofj4eLuuaw+nTp1S48aNtWXLFuXJk8fSXklJSXriiSe0e/fuNK8REhKiSpUqqWTJkgoODpavr6+ioqJ048YNHTlyRLt379a1a9dSXSc+Pl5dunTRwYMH05wFAAAAAAAAAAAAAAAAAAAAQMbG4AAAAAAgk9mwYYNN9U2bNrUoiWNkzZpVNWrUUFhYmFG9rf8+6fXOO++kesduf39/9erVS71791aNGjXk7u7+0Ppjx45p3rx5+uabb3ThwgWb8uzevVv9+/fX999/b9NxqTlw4IDGjBmTpmNDQkLUvHlzlStXTiVKlFDx4sUVFBSkrFmzys/PT56enoqLi1NMTIyuX7+ua9eu6ezZszp+/LgOHz6sP//806ZhGfZ24cIFNW7c2Oafxd8KFSqk5s2bq3r16goNDVXhwoWVI0cO+fr6SpKioqJ04cIFHT9+XFu3btXvv/+uvXv32tQjJiZGXbt21Z9//qnChQunKac93Lx5U0OHDk21rkqVKnrmmWfUuXNnFSlSJNX6hIQErVu3TjNmzNCKFSvuW5MzZ0516NBBv/zyS6rrzZgxQyNHjpSbm1uqtVYIDw83Plf16dPHrr1Xrlyprl27pjpg4UEqV66sRo0aqXr16ipRooQKFy6swMBA+fr6KiEhQRERETpz5oyOHDmisLAwLVmyxObXzqlTp9S1a1etXbtWXl5eacppYty4cQ98Pj1MgQIF9NJLL6lbt24qXbr0Q2tTUlK0c+dOzZw5U9OnT9edO3ceWHv9+nW9+uqrKl++vM2ZAAAAAAAAAAAAAAAAAAAAAGR8DA4AAAAAMpldu3YZ13p5ealu3boWpnGMhg0bGg8OOH/+vK5fv66cOXNanErauXOnDh069MC/d3Nz00svvaQxY8bYlKdUqVJ65513NHjwYH322WcaPXq0IiMjjY+fMmWK2rZtqy5duhgfk5qhQ4cqKSnJuD4gIEB9+/bVCy+8kOrGWkny8/OTn5+fcuTIcd/6mzdvat26dVq9erUWL16c5k38toqOjlbHjh1t7ufn56devXqpb9++qlq16kNrg4ODFRwcrNDQUHXu3FkffPCBDh06pAkTJmjmzJlKTEw06nnt2jV17txZ27Ztk7e3t0157WXMmDG6devWA/++YsWK+uCDD9S6dWub1vXy8lLLli3VsmVLnT179oF1vXv3NhocEB4ervXr16tJkyY25bCXGTNmKCUlJdU6Ly8v9ezZ0259jx49qm7dutk8NCB//vzq27ev+vTpo0KFCj2wzsPDQ1myZFGuXLlUvXp19erVSykpKVqzZo3Gjx+vtWvXGvcMCwvTwIED9cUXX9iU1dS2bds0evRom47x9/fX8OHDNWDAAOPXmJubm6pXr67q1atr1KhRGjlypL744osHnk8XLFigEydO2JQLAAAAAAAAAAAAAAAAAAAAwKPh4bepBAAAAPDI2b17t3FttWrV5OfnZ2Eax2jYsKFN9bb8G6XHgQMHlJycfN+/y5Ejh5YtW6ZvvvkmzUMMvLy89NZbb2nnzp2qWLGiTce+8sorD72ztS1OnDihJUuWGNc/88wzOnPmjD766COjoQEmsmfPrscff1xff/21zp07p7CwMPXt21cBAQF2Wf9Bnn/+eZuGdfw9LOLkyZOaPHlyqkMDHqRcuXL64YcftHv3btWqVcv4uN27d2vcuHFp6mkPDxoa4ObmpnfeeUd//vmnzUMD/lvhwoUf+Hdt2rRRnjx5jNaZPn16unKkVUpKimbMmGFU265dO+XKlcsufSMiItShQwfdvn3b+Bh/f3999NFHOnnypN59992HDg14EDc3NzVv3lxr1qzRwoULlT9/fuNjv/zyS61bt87mnqlJTEzU888/bzyUQ5IqVKignTt36t///neaB3MEBwfrs88+09q1a5UvX74H1u3duzdN6wMAAAAAAAAAAAAAAAAAAADI2BgcAAAAAGQiycnJ2rdvn3G9rZvNXZWtj8NRgwMeJH/+/AoLC0v3Bum/lSpVSmFhYapXr57xMVevXtV7771nl/6md0eXpI8//ljTp09XtmzZ7NL7ftzc3FSvXj198803unjxor788ksVLVrU7n3mzJmjOXPmGNfnz59fa9as0eTJk5U3b167ZChfvrw2bdqkV155xfiY8ePH6+DBg3bpbw9eXl6aM2eO3nvvPXl5eVnay9PTU7169TKqnT9/viIjIy3Ncz+bNm3SyZMnjWp79+5tt75vvfWWjh8/blxft25d7d+/X2+++aayZMlilwydOnXSrl27bDqXvfTSS4qNjbVL/7999dVXOnTokHF9/fr1tXnzZpUqVcou/Rs2bKitW7eqWLFidlkPAAAAAAAAAAAAAAAAAAAAwKOBwQEAAABAJnL69GlFR0cb15crV87CNI6TL18+BQcHG9c7c9N0UFCQ1qxZozJlyth13YCAAK1YsUKVKlUyPmbixIk6ffp0unv//vvvRnV9+vTRG2+8ke5+tvD399err76q48ePq3379nZb9+rVq+rXr59xfaVKlbR9+3Y1adLEbhn+5uXlpa+++kpDhw41qo+Pj9fbb79t9xxp4e7urhkzZujJJ590WE/TzfZRUVGaP3++tWHuY9q0aUZ1uXLlUtu2be3Sc+3atfr222+N63v06KG1a9eqSJEidun/n/LkyaNVq1apWbNmRvUnTpzQV199Zbf+d+/e1ciRI43rK1WqpOXLlysgIMBuGSQpJCRE69atU548eey6LgAAAAAAAAAAAAAAAAAAAICMi8EBAAAAQCZy7tw5m+oflcEBklS2bFnjWlv/nezFzc1Ns2fPtvvQgL/5+/tr0aJFyp49u1F9QkKCPvnkk3T1jI2N1c6dO1Ot8/X11aeffpquXunh4eGhnDlz2m294cOH6/r160a1oaGhWrNmjQoUKGC3/vczduxY403xixcvNvq5WW3IkCHq3r27Q3uWL19e1atXN6o13cRvL9HR0cbDCnr16iUvL69090xOTta//vUvpaSkGNX36NFDM2fOlI+PT7p7P4iv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/ni6urpa/unJfaW7D71353vVUxtssEHTd1RRNUdPiwOS5AMf+EB++MMf5pprrunxGTfffHNuvvnmnHLKKSmKIltvvXV233337Lbbbtltt92yzTbbpCiKHp/fGw888EClublz57YsY290t3ijp/rjz11P7Lvvvtl4440r/e88Y8aM7Lnnnn2yd+bMmZXm3vjGN2bcuHF9sjOp/nr++c9/XrvX89KlS7N48eIMHz688j1V3/s23HDDnsbqUwPl7xYAAAAAAAAAAAAAoH+tGU8AAQAAlWy88caVZ5cvX54nn3yyiWn616OPPlp5dp111klHR0cT0zxr3XXXbfqOKqrmePzxx3u8Y8iQITn33HOz0UYb9fiMFyrLMrfeemvOPPPMHHXUUdl2220zfvz4HHTQQfnSl76UG264odIntfeVqg9a19WiRYv6ZU93HubuT21tbTniiCMqzZ533nl98v36wx/+kDvvvLPS7LRp03q974W8nv/RE088UWluoLynr7feeq2OAAAAAAAAAAAAAAC0gOIAAAAYRLpTHJAkDz30UJOS9L+qnxiddP/71FNjx47tlz2NVM3R24ehJ06cmCuuuCITJ07s1TmrMmfOnFx00UU57rjjstNOO2W99dbL1KlT88tf/jJLlixpys7nPfbYY009v9X6qzigPwo7eqrqw/nPPPNMfvazn/V638yZMyvNTZgwIfvvv3+v9z2vq6trjSqNWZnuvp6rztftPR0AAAAAAAAAAAAAWLMoDgAAgEGkuw/E33777U1K0v+683vpr+KAgfKQdNUcixcv7vWurbfeOtddd12mTJnS67MaefLJJ3P22Wfn4IMPzoQJE/KRj3wkt956a1N29deD9a2ybNmyftnT1jZw/zPFlltumd13373S7IwZM3q1a9GiRfnxj39cafaII47IkCFDerXvn3ev6br7eq763le393QAAAAAAAAAAAAAYM0ycH8iHwAA6HOTJk3q1vzf/va35gTpZ8uWLcusWbMqz2+22WZNTPP/DBs2rF/2NFL1IdMlS5b0yb4NN9wwV1xxRb7xjW9k7bXX7pMzG3nqqafy3//939l2223zxje+MX/961/79Pw1/WHrsixbHWFAmD59eqW53/zmN3nggQd6vOf888/P008/XWl22rRpPd6zMmv6aznp/ut56dKllebq9p4OAAAAAAAAAAAAAKxZFAcAAMAgsu6662bChAmV59eU4oBZs2Z16xOmd9hhh+aFeYEVK1b0y55Gli9fXmmuvb29z3a2tbXlAx/4QO66666cdNJJWWeddfrs7NUpyzK/+MUvsuOOO+Y973lP5s6d2yfnDoaHrUkOO+ywjBw5suFcV1dXzj777B7vmTFjRqW5XXfdNVtvvXWP96yM1/KLDRkypNJc3d7TAQAAAAAAAAAAAIA1i+IAAAAYZF7xildUnv3jH//YxCT957rrruvWfHe+R72xZMmSftnTSNUcw4cP7/PdY8eOzYknnpgHHngg3/ve97L//vv3aUHBqnR1deWss87Ky172slxzzTW9Pq/qg8XUW2dnZ9785jdXmp05c2aPdjz44IP59a9/XWl22rRpPdqxOl7LL9bR0VFprm7v6QAAAAAAAAAAAADAmkVxAAAADDLdeSj+3nvvzb333tvENP3jyiuvrDw7dOjQbLvttk1M8/8sXLiwX/Y0UjVHM4oDntfR0ZF3vvOd+dWvfpVHHnkk55xzTt71rndl4403btrO5NmHtKdMmZLzzz+/V+dU+RR61gzTp0+vNHfHHXfk6quv7vb5Z599drq6uhrOjRgxIm9729u6fX4jXssvVvW9r27v6QAAAAAAAAAAAADAmkVxAAAADDKvetWrujX/u9/9rklJ+k93fg/bb799hg0b1sQ0/8/jjz/eL3saqZqjs7OzyUmeNX78+LzrXe/KOeeck/vvvz/33ntvfvCDH+Too4/O9ttvn7a2vv0/ZZcsWZLDDz+88qe8r8yIESMqzW200UYpy7J2v5rxyfZ1tc8++2STTTapNDtz5sxun1/1nje96U1Za621un1+I1Vfy0nyzne+s+WvzZ78mjRpUre+J1Xf++r2ng4AAAAAAAAAAAAArFkUBwAAwCAzZcqUtLe3V56/5JJLmpim+e68887cfffdlef333//Jqb5RwPl4c6qOTbccMMmJ1m5TTbZJG9/+9vzzW9+M3/9618zZ86cXHrppTnxxBPzmte8pvKnga/OsmXL8ra3vS0PP/xwj+6v+gD3okWLenQ+A0dRFJk6dWql2XPPPTeLFy+ufPY111yT22+/vdLs9OnTK5/bHR0dHeno6Kg0O1hez1Xf+wbKe/pjjz3W6ggAAAAAAAAAAAAAQAsoDgAAgEGms7Mze+yxR+X5Cy+8sNYPh/74xz/u1vwBBxzQpCQv9uCDD2b58uX9tm9V7rnnnkpzrSoO+GednZ153etel5NOOim//e1vM3fu3Fx22WX52Mc+ls0337zH5z7xxBP5xCc+0aN7J06cWGlu/vz5PTqfgWXq1KkpiqLh3NNPP53zzz+/8rkzZsyoNDdx4sS89rWvrXxud3k9/6Oq732zZ89ubpCKqr6nAwAAAAAAAAAAAABrFsUBAAAwCHXn4fj58+fn4osvbmKa5jrvvPMqz6611lrZbbfdmpjmHy1btix33313v+1blaqfcL7RRhs1OUnPdHR0ZL/99svJJ5+cu+66KzfccEOOOeaYjBkzpttn/eAHP8itt97a7fs23XTTSnNLly7NE0880e3zGVi22GKL7LnnnpVmZ86cWWlu8eLFlYtOjjjiiLS1Ne8/6VR9PT/44INNyzCQbLzxxpXmqr6XNtOCBQsGzf8uAAAAAAAAAAAAAMA/UhwAAACD0MEHH9yt+TPPPLNJSZrrT3/6U/76179Wnj/ggAPS3t7exEQvdsstt/Trvn/2+OOP57HHHqs0+9KXvrTJafrGK1/5ypx22ml54IEHcsIJJ6Sjo6PyvWVZ5hvf+Ea3d2622WaVZ++9995un8/AM3369Epzl19+eaUHuX/+859n7ty5lc6cNm1apbmeqvp6vu+++5qaY6DYZpttKs09/PDDefLJJ5ucZvVuueWWlGXZ0gwAAAAAAAAAAAAAQGsoDgAAgEFom222yS677FJ5/tJLL+3Rp7C32te+9rVuzVd9ELgvXX311f2+84WuueaayrMve9nLmpik73V2duazn/1srr322qy77rqV7/vpT3/a7QdvX/GKV1Sevemmm7p1NgPTW9/61owaNarhXFdXV84555yGczNmzKi0d4899sjkyZMrzfZU1dfzvHnzcs899zQ1y0DQnfe+7rynNkOr9wMAAAAAAAAAAAAAraM4AAAABqmjjjqq8mxZlt1+CL/VHnroofz4xz+uPD9p0qTst99+TUy0cr///e/7fecLXXXVVZXm2traalcc8Lwddtghl19+eYYNG1Zp/pFHHsntt9/erR1bb711Ojs7K81ef/313TqbgWn06NE59NBDK83OnDlztdcffPDBXH755ZXO6o+Ck5133rny7GB4PU+YMCHjx4+vNNvq9/RW7wcAAAAAAAAAAAAAWkdxAAAADFKHH354pU/Lft6MGTNyxx13NDFR3zrhhBOybNmyyvNHHnlkiqJoYqKVu/766/PYY4/1+97n/eIXv6g0t8MOO2T06NFNTtM8L3/5y/Pxj3+88vyf/vSnbp3f1taWnXbaqdJs1QfEGfimTZtWae62227Lddddt8rr55xzTrq6uhqeM3LkyBx22GFV4/XYy1/+8owYMaLS7GB5Pe+1116V5n75y182OcmqLVmyJL/61a9ath8AAAAAAAAAAAAAaC3FAQAAMEiNGTMmRx11VOX5ZcuW5dhjj21ior5z00035bvf/W7l+ZEjR+a9731vExOtWldXV37+85+3ZPff/va33H777ZVm99lnnyanab6jjz668uzdd9/d7fMPOOCASnOzZs3KLbfc0u3zGXj23nvvbLbZZpVmZ8yYscprM2fOrHTGIYcckjFjxlSa7Y2hQ4fmta99baXZX/7yl5VKD+qu6nvgrbfemttuu63JaVbuV7/6VebPn9+S3QAAAAAAAAAAAABA6ykOAACAQey4447LyJEjK8//8pe/zEUXXdTERL3X1dWVD33oQ916kPWDH/xg1l9//SamWr1vf/vbA35v1YeIB7KJEydm2223rTT7+OOPd/v8N7/5zZVnzzrrrG6fz8BTFEWmTp1aafZHP/pRlixZ8qKvX3fddZUfNJ8+fXq38vVG1dfzo48+OuD/XugL++67b+XZVr2nn3HGGS3ZCwAAAAAAAAAAAAAMDIoDAABgEFt//fXzwQ9+sFv3HHnkkXnsscealKj3vvKVr+TKK6+sPD969Oh88pOfbGKixm644YZcc801/bpz3rx5lT/lfO21114jigOSZNNNN600t3Dhwm6fvfnmm2eHHXaoNHvWWWdl3rx53d7BwDN16tQURdFwbu7cubngggte9PUZM2ZU2rPppptmypQp3Y3XYwcffHDa29srzZ566qlNTtN622yzTeXike9+97v9/ud71qxZueSSS/p1JwAAAAAAAAAAAAAwsCgOAACAQe6Tn/xkxo4dW3n+sccey/Tp09PV1dW8UD30pz/9Kccff3y37vn4xz+eddZZp0mJqjvhhBP6dd/JJ5+cOXPmVJo99NBDM3To0CYn6h+dnZ2V5oYNG9aj89/3vvdVmps7d26++MUv9mgHA8ukSZPymte8ptLsP5cELFmyJD/60Y8q3Vu1oKCvrLPOOnnLW95SafbXv/51Lr/88iYnar23v/3tlebmzJmTU045pblh/skJJ5wwIP9eBgAAAAAAAAAAAAD6j+IAAAAY5NZZZ5185Stf6dY9F198cT72sY81KVHP3H///Tn44IOzdOnSyvdsvfXWOe6445qYqrorrrgiF154Yb/suv/++/PVr3618vzUqVObmKZ/Pfzww5XmxowZ06PzjzjiiMpFHF/72tdy22239WgPA8u0adMqzV122WX/8Bq84IILMnfu3Ib3FUXRkj+HH/7wh7s1u2jRoiamab13vvOdGTJkSKXZr3zlK3nggQeanOhZ11xzTc4999x+2QUAAAAAAAAAAAAADFyKAwAAgLznPe/Jvvvu2617Tj311G49fN5Mc+bMyYEHHpiHHnqo8j1tbW35zne+k46OjiYm656jjz46Tz/9dNP3vPe97828efMqze6yyy7Zfffdm5yof5RlmTvuuKPS7KabbtqjHaNGjcrRRx9daXbx4sU5/PDDs3jx4h7tYuB4y1vektGjRzecW7FiRb73ve/9/f8/Y8aMSufvtdde2XzzzXsar8d233337LbbbpVmb7vttnzkIx9pcqLWmjRpUg455JBKs88880ze+973NjnRs+8jRx55ZLq6upq+CwAAAAAAAAAAAAAY2BQHAAAASZIzzjij0oOvL/Txj388n//855uUqJqHHnoor371q3PzzTd3675jjjkme+yxR5NS9cwDDzyQd77znU19APTzn/98Lr300srzxx57bK/2LV++vFf396UrrrjiHz7tfXW23XbbHu/51Kc+lfXWW6/S7E033ZTDDz98QH2f6L5Ro0blsMMOqzQ7c+bMJMnDDz+cyy67rNI906dP73G23jr55JMrz37729/Ol7/85Samab1PfOITlWcvueSSfOELX2himuSoo47Kbbfd1tQdAAAAAAAAAAAAAEA9KA4AAACSJJtttlnOPvvsFEXRrfuOP/74HH300Vm6dGmTkq3a//7v/2aPPfbodmnAbrvtlv/6r/9qUqreueiii3LMMcekLMs+P/ucc87JCSecUHl+xx13rPzp2qvy+te/Pp///Ofz9NNP9+qc3urq6soXv/jFSrMjRozIzjvv3ONdnZ2d+dznPld5/he/+EUOO+ywLFq0qMc7+9qNPTZArwABAABJREFUN96YQw89NAsWLGh1lNqYNm1apblbbrkl119/fc4555ysWLGi4fyoUaNy6KGH9jJdz+22225529veVnn+3//93/OlL32piYm6pyzLXHDBBTn66KP75LyddtopBx98cOX5448/Puecc06f7P5nn/70p/P973+/KWcDAAAAAAAAAAAAAPWjOAAAAPi7N7/5zd16sPx5p59+enbdddd+/dTjr3/969l5550ze/bsbt03YcKE/OxnP8uwYcOaE6wPfOtb38qRRx6ZJUuW9NmZ3/jGNzJt2rRuFRKccsopaWvr3f/Z+MQTT+T444/Ppptumo9//OO56667enVeT332s5/Nb3/720qz++yzT0aMGNGrff/6r/+a17zmNZXnzz///Oy999655557erW3N8qyzCWXXJIDDjggr3zlK/PTn/60KQUWa6q99torL3nJSyrNzpgxIzNnzqw0+9a3vjWjR4/uTbReO+WUU7LeeutVnj/uuOMybdq0zJ8/v4mpVm/hwoX5zne+k+233z5vetObcv311/fZ2SeffHLlv0PKssy0adPy9a9/vc/2L1++PB/+8Icrl6EAAAAAAAAAAAAAAIOD4gAAAOAfnHjiiT36dOs///nP2XHHHfPpT386zzzzTBOSPeuPf/xj9t5773zoQx/K4sWLu3XvyJEj87Of/SwbbLBBk9J1z/Dhw1d5bcaMGdlzzz3zt7/9rVc7nnzyybzzne/MMccck66ursr3vetd78pee+3Vq90v9PTTT+erX/1qJk+enAMOOCA//vGPu/2/X08sX748H/3oR/O5z32u8j3vfe97e723ra0t3/ve9zJ+/PjK91x//fXZbrvtcsopp2Tp0qW9zlDVvffemy996Ut5yUtekgMPPDCXXnppv+1e00ydOrXS3Jlnnln5z/a0adN6kahvrL/++pkxY0aKoqh8z8yZM7Pddtvl4osvbmKyF7vhhhvy0Y9+NBtttFH+9V//NTfffHOf73jJS16SY489tvJ8V1dXPvShD+Ud73hHnnjiiV7tnjVrVqZMmZLTTjttlTOr+7sFAAAAAAAAAAAAAFhzKQ4AAAD+QVEU+f73v5+DDz642/cuWrQoX/ziF7PFFlvks5/9bB544IE+yVSWZX7961/nkEMOyS677JIrr7yy22eMHDkyF154YXbZZZc+ydQXDjnkkGy33XarvH7DDTfk5S9/eT7wgQ/kzjvv7NbZTz75ZL70pS9l8uTJ+cEPftCtezfddNM+/XTsFyrLMpdeemkOP/zwrL/++pk6dWp+8pOfNKVs4uKLL86uu+6aU089tfI9L33pS3PQQQf1yf6NNtooZ599doYMGVL5ngULFuTf/u3fstVWW+X0009vWgnHrbfemq9+9avZc889s9lmm+W4447L3Xff3ZRdg8m73/3utLU1/k8tS5YsqXTe5ptvnle/+tW9jdUnDjjggHzqU5/q1j2zZ8/OG97whuy11175xS9+kRUrVvR5rhUrVuQPf/hD/s//+T/Zcssts9NOO+XUU0/N3Llz+3zXC5100kl51ate1a17fvjDH2by5Mn54he/mCeffLJb995zzz35t3/7t2y77ba56qqrVjk3YcKEvO997+vW2QAAAAAAAAAAAADAmqG91QEAAICBZ9iwYfnJT36St771rbngggu6ff8TTzyRk046Kf/xH/+R/fffPwcccED23XffbLPNNpXPWLRoUa666qpcccUV+dnPfpZZs2Z1O8fzni8NmDJlSo/PaIahQ4fmrLPOyq677rrKB2qXL1+eb33rWzn99NOz22675fWvf3122mmnbLXVVllnnXUyatSoLF68OHPnzs2sWbPyl7/8JZdffnmuuOKKLF68uNuZ2tvb8/3vfz9rrbVWb397DT3zzDM5++yzc/bZZ2fo0KHZZZddsueee2aPPfbIDjvskI033rhb55Vlmb/85S+58MIL89Of/jR//etfu53p1FNPrfTgd1UHHnhg/u///b856qijunXf7Nmzc/TRR+fYY4/NQQcdlAMPPDBTpkzJxIkTu51h3rx5ufXWW/PHP/4x1157bX7/+9/nvvvu6/Y5NLbJJptkn332yRVXXNEn502dOjVFUfTJWX3hC1/4Qh588MGcffbZ3brvqquuylVXXZUNN9wwb37zm3PggQdm9913z7hx47qd4bHHHsvNN9+ca6+99u+v52aXBKzM0KFD84Mf/CCvfOUrM2/evMr3zZ07N5/+9Kfzuc99Lq997Wuz3377ZYcddsjkyZOz1lprZfjw4Vm4cGGefPLJ3H777fnTn/6USy+9NH/4wx/S1dXV8PxvfetbufHGG3vzWwMAAAAAAAAAAAAAakpxAAAAsFJDhw7Neeedl6OOOqrbD4k+b8WKFbnkkktyySWXJEnGjh2brbbaKltttVXWW2+9jB49OqNHj86yZcsyf/78zJs3L7Nnz87tt9+eu+66K8uXL+/172OdddbJz372s+y11169PqsZXvWqV+Xzn/98jjvuuNXOlWWZq6++OldffXVT85xxxhnZY489mrpjZZYtW/b3h4uf19nZma222iobbbRRJkyYkPHjx2f48OEZPnx4li5dmgULFmT+/Pl55JFHcvvtt+eOO+7IggULepzhmGOOyb777tsXv51/8J73vCdPPfVUPvnJT3b73gULFuTcc8/Nueeem+TZ1/O2226biRMnZsKECRk9enRGjBiRoiiyZMmSLF68OHPmzMmjjz6aRx55JHfddVceeuihvv4tsRrTpk3rk+KAoigyderUPkjUd4qiyJlnnpmnn366R6UyDz/8cL75zW/mm9/8ZpJk0qRJ2WqrrbLxxhtngw02yMiRIzN8+PCsWLEiS5YsyaJFi/Lkk0/mkUceycMPP5w77rijJSUBqzJ58uT85Cc/yRve8IZu/321ePHiXHTRRbnooov6LM/73//+HHzwwYoDAAAAAAAAAAAAAGCQUhwAAACs0tChQzNz5szsuOOOOfbYY3v9IP/cuXNz3XXX5brrruujhKu344475vzzz88mm2zSL/t66lOf+lRuv/32zJgxo6U5TjrppEyfPr2lGV7omWeeyfXXX5/rr7++6bv23nvvnHzyyU07/xOf+ETGjRuX97///VmxYkWPz3niiSfyu9/9rg+T0dcOOeSQdHZ25plnnunVOVOmTMmmm27aR6n6Tnt7e37yk5/k/e9/f84888xenTV79uzMnj27b4K1yP77758zzjgj73nPe1KWZUtznHbaaS3bDwAAAAAAAAAAAAC0XlurAwAAAAPfRz7ykVxxxRXZaKONWh2lsunTp+eqq64a8KUBzzvjjDNy0EEHtWz/f/7nf+bEE09s2f5W2nPPPXPhhRdm2LBhTd1z1FFH5YILLsjYsWObuofWGjFiRA4//PBenzNt2rTeh2mS9vb2fOc738nnPve5tLX5T0vTp0/PzJkz097emn7OnXfeOeedd17L9gMAAAAAAAAAAAAAA4Of7gYAACrZe++9c+utt+aYY44Z0A+Kbr755rnsssty1llnZcSIEa2OU9nQoUNz/vnn56ijjurXvR0dHTnzzDNz3HHH9evegeJd73pXLr/88owePbpf9r3hDW/ITTfdlL333rtf9tEavX3of8yYMXnLW97SN2Ga6Pjjj8///M//ZNNNN211lJY74ogjcsEFF2Sttdbq173/8i//kt/+9rfp7Ozs170AAAAAAAAAAAAAwMAzcJ/2AQAABpwxY8bktNNOyzXXXJPdd9+91XH+wejRo/PpT386N998c/bbb79Wx+mR9vb2fPvb384pp5ySkSNHNn3f1ltvneuuuy5HHnlk03cNNGPHjs2ZZ56Zc845J8OHD+/X3RMnTsxvfvObnHbaaRk/fny/7q5q/Pjx+ehHP9rv35s1xe67754tt9yyx/cfdthh/fIe0Bf22muv/PWvf82HP/zhDB06tNVxVmry5Ml573vf2/Q9Bx54YP7yl79k1113bfqu9vb2fOYzn8n5559fm9cKAAAAAAAAAAAAANBcigMAAIBu23nnnfOHP/whv/nNb/La1762pVnGjh2b448/PrNnz84XvvCFjBgxoqV5+sJHPvKR3HTTTU0rQBgzZkw+//nP58Ybb8zLX/7ypux43te//vV89KMfzeTJk5u6p6r29vYcddRR+dvf/tbSwoS2trYcc8wxmTVrVj7xiU9k9OjRLcvyvGHDhuWggw7KD3/4wzz44IP52te+lvb29lbHqq1p06a15N5WWGuttXLqqafmlltuyaGHHpq2ttb/56Zx48blyCOPzG9/+9vccccd/VIckCSTJk3KVVddlW984xtZd911m7Jj5513zg033JD/+I//yJAhQ5qyAwAAAAAAAAAAAACoH08AADDonXjiia2OAFBbU6ZMyZQpU/KXv/wlZ599ds4999w89NBDTd/b1taWV7/61XnHO96Rww8/PJ2dnU3f2d+22GKLXHbZZbn22mvz5S9/ORdccEG6urp6deaGG26Yo446Kh/84Aez/vrr91HS1dtzzz2z55575mtf+1ruvPPOXHjhhbnoooty9dVXZ9GiRf2SIXn2IeJ3v/vd+dCHPpQtttii3/Y2Mnbs2Hz5y1/OZz7zmXz3u9/Nt771rdx+++39tn+ttdbKfvvtl4MOOigHH3xwxo0b12+713Tvfve785nPfKbbf25f8pKXZM8992xSquaaPHlyzjvvvMyePTvf/OY3893vfjdPPPFEv+2fOHFiDjjggBx88MHZb7/9MmzYsH7b/UJDhgzJBz7wgbzrXe/K6aefntNPPz333HNPr8/db7/98olPfKJppTIAAAAAAAAAAAAAQL0VZVm2OgPAoFAUxW5Jrn7h166++urstttuLUrUd2bPnv2iB/9GjBiRSZMmtSYQAC3T1dWV3/3ud7n44ovz+9//PjfeeGOWLVvWJ2evv/762WOPPbL33nvnLW95SzbaaKM+ObcuHn/88Vx88cW58MILc9111+X+++9veE9RFNlyyy2z33775fWvf33233//DB06tB/SNrZs2bL85S9/ybXXXptrr70211xzTZ88WPtCEydOzL777ps3vvGNed3rXpfhw4f36fnNctNNN+WCCy7IL3/5y/z5z3/O8uXL++zsddddNzvvvHP22muv7LXXXtl5553T3q5TkOZYvnx5rrzyylxwwQW55JJLcuedd/bZ2UVRZLPNNsuuu+6avfbaK69+9avz0pe+tM/O70tdXV35n//5n1x88cW57LLL8re//S0rVqxoeN8GG2yQV73qVXnDG96Qgw46KBtvvHE/pAUAAACAwcfPPAAAAABAdZ/97GdbHYFBwIfEMhBdc8012X333f/5y7uXZXlNK/KsiuIAgH6iOACAwWjRokX54x//mFtvvTV333137r777txzzz2ZO3duFi5cmAULFmThwoVpb2/PyJEjM2rUqIwaNSobbLBBNt9882yxxRbZYostsuOOO2bLLbds9W9nQJk3b15uvfXWPPLII5k3b17mzZuXrq6ujB49OmPGjMmkSZOy1VZbZeTIka2OWtmcOXMya9aszJo1K3fddVfuuuuuzJ49O3Pnzs28efMyf/78zJ8/P4sWLcqQIUPS0dGRkSNHZp111sl6662XTTbZJFtuuWW23nrr7LLLLmvEQ7aLFy/On//859xwww258847c9999+W+++7L448/nkWLFmXhwoVZvHhx2tvbM2zYsIwYMSJrr712xo8fnw022CCTJk3KZpttli233DLbb799Ntxww1b/lhjE5syZk+uvvz433nhj7rnnntx77725//77//53wqJFi7J06dIMHTo0HR0dGTVqVNZee+2ss846mTBhQjbbbLNsvvnm2XrrrbP99tuns7Oz1b+lHlmyZEnuuOOO3H333XnmmWcyb968JMmYMWMyZsyYrLfeetlmm20ybty4FicFAAAAgMHBzzwAAAAAQHWKA+gPigMYiOpSHOBjBQEAgKYZMWJE9t577+y9996tjrLGGTNmTHbeeedW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AAAAAAAAAAAAgJ5THAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAAAAAAAACoMcUBAAAAAAAAAAAAAAAAAAAAUGOKAwAAAAAAAAAAAAAAAAAAAKDGFAcAAAAAAAAAAAAAAAAAAABAjSkOAAAAAAAAAAAAAAAAAAAAgBpTHAAAAAAAAAAAAAAAAAAAAAA1pjgAAAAAAAAAAAAAAAAAAAAAakxxAAAAAAAAAAAAAAAAAAAAANSY4gAAAAAAAAAAAAAA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AAAAAAAAAAAAAAAAAIDdUxwAAAAAAAAAAAAAAAAAAAAAA6Y4AAAAAAAAAAAAAAAAAAAAAAZMcQAAAAAAAAAAAAAAAAAAAAAMmOIAAAAAAAAAAAAAAAAAAAAAGDDFAQAAAAAAAAAAAAAAAAAAADBgigMAAAAAAAAAAAAAAAAAAABgwBQHAAAAAAAAAAAAAAAAAAAAwIApDgAAAAAAAAAAAAAAAAAAAIABUxwAAAAAAAAAAAAAAAAAAAAAA6Y4AAAAAAAAAAAAAAAAAAAAAAZMcQAAAAAAAAAAAAAAAAAAAAAMmOIAAAAAAAAAAAAAAAAAAAAAGDDFAQAAAAAAAAAAAAAAAAAAADBgigMAAAAAAAAAAAAAAAAAAABgwBQHAAAAAAAAAAAAAAAAAAAAwIApDgAAAAAAAAAAAAAAAAAAAIABUxwAAAAAAAAAAAAAAAAAAAAAA6Y4AAAAAAAAAAAAAAAAAAAAAAZMcQAAAAAAAAAAAAAAAAAAAAAMmOIAAAAAAAAAAAAAAAAAAAAAGDDFAQAAAAAAAAAAAAAAAAAAADBgigMAAAAAAAAAAAAAAAAAAABgwBQHAAAAAAAAAAAAAAAAAAAAwIApDgAAAAAAAAAAAAAAAAAAAIABUxwAAAAAAAAAAAAAAAAAAAAAA6Y4AAAAAAAAAAAAAAAAAAAAAAZMcQAAAAAAAAAAAAAAAAAAAAAMmOIAAAAAAAAAAAAAAAAAAAAAGDDFAQAAAAAAAAAAAAAAAAAAADBgigMAAAAAAAAAAAAAAAAAAABgwBQHAAAAAAAAAAAAAAAAAAAAwIApDgAAAAAAAAAAAAAAAAAAAIABUxwAAAAAAAAAAAAAAAAAAAAAA6Y4AAAAAAAAAAAAAAAAAAAAAAZMcQAAAAAAAAAAAAAAAAAAAAAMmOIAAAAAAAAAAAAAAAAAAAAAGDDFAQAAAAAAAAAAAAAAAAAAADBgigMAAAAAAAAAAAAAAAAAAABgwBQHAAAAAAAAAAAAAAAAAAAAwIApDgAAAAAAAAAAAAAAAAAAAIABUxwAAAAAAAAAAAAAAAAAAAAAA6Y4AAAAAAAAAAAAAAAAAAAAAAZMcQAAAAAAAAAAAAAAAAAAAAAMmOIAAAAAAAAAAAAAAAAAAAAAGDDFAQAAAAAAAAAAAAAAAAAAADBgigMAAAAAAAAAAAAAAAAAAABgwBQHAAAA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AAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAAAAAAAAAAAAAAAAAAAIAREw4AAAAAAAAAAAAAAAAAAACAERMOAAAAAAAAAAAAAAAAAAAAgBETDgAA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4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAPWxmQYAAMSaSURBVAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx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AAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAIBiwgEAAAAAAAAAAAAAAAAAAABQTDgAAAAAAAAAAAAAAAAAAAAAigkHAAAAAAAAAAAAAAAAAAAAQDHhAAAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAADFhAMAAAAAAAAAAAAAAAAAAACgmHAAAAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAgGLCAQAAAAAAAAAAAAAAAAAAAFBMOAAAAAAAAAAAAAAAAAAAAACKCQcAAAAAAAAAAAAAAAAAAABAMeEAAAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAMWEAwAAAAAAAAAAAAAAAAAAAKCYcAAAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAACAYsIBAAAAAAAAAAAAAAAAAAAAUEw4AAAAAAAAAAAAAAAAAAAAAIoJBwAAAAAAAAAAAAAAAAAAAEAx4QAAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAAAAAAAAAAAAAAAxYQDAAAAAAAAAAAAAAAAAAAAoJhwAAAAAAAA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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# plot calibrated ROC AUC" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 13, + "source": [ + "onc_plot_roc(\n", + " y_true=calibrated_results.y, \n", + " y_pred=calibrated_results.p_calibrated, \n", + " model_name='lr_calibrated');" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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s7OzIpkXXHBB5s6dm7POOqsieQDA6c1wAAAAAAAAAADA77F///4899xzefrpp7Nhw4buPue39OnTJ1dddVVmzJiRhoaGTJo0Kf369evuswAAAAAA+AL27NmT5ubm7N27tyJ5ffv2zaxZs3LJJZekKIqKZAIApz/DAQAAAAAAAAAA/8WRI0fy61//Ok8//XRefPHFdHR0dPdJSf7pQ56TJ0/OtGnTMn369Fx11VWGAgAAAAAAerj29vasW7cumzdvTlmWFckcN25c5syZk/79+1ckDwDoOQwHAAAAAAAAAAC9WltbW1avXp2nn346K1euTFtbW3eflIEDB2bq1KmZPn16pk2bliuuuCJ1dXXdfRYAAAAAABXywQcfpKWlJQcOHKhIXv/+/TNnzpyMGzeuInkAQM9jOAAAAAAAAAAA6HU6Ojry0ksvZfny5VmxYkUOHz7crfecffbZn44ETJ8+PZdeemlqamq69SYAAAAAAKpjy5Ytef755yuWd+mll2bWrFnp27dvxTIBgJ7HcAAAAAAAAAAA0CuUZZktW7bk6aefzrPPPpu9e/d22y0jR47M9OnTPx0LuOiii1IURbfdAwAAAABA1xkzZkxqamrS2dn5pXLOOuuszJ07NxdccEGFLgMAejLDAQAAAAAAAADAGassy7zxxhtZvnx5fvnLX+aDDz7oljuKosj06dMzb968XHvttRk9erShAAAAAACAXmr48OGZOnVq1q9f/4UzrrjiilxzzTWpr6+v4GUAQE9mOAAAAAAAAAAAOOP85je/yfLly7N8+fK8/fbb3XbHxIkTc/PNN+emm27KyJEju+0OAAAAAABOL9OmTcvbb7+dffv2fa73DR48OI2NjRkzZkyVLgMAeirDAQAAAAAAAADAGWHPnj155pln8vTTT+eVV17ptjvGjRuXefPmZd68ebngggu67Q4AAAAAAE5ftbW1aWpqys9//vOUZXnS54uiyKRJk9LQ0JA+ffxYIADwu/wbAgAAAAAAAADQYx04cCDPPfdcli9fnvXr15/ShyurYfTo0fna176WefPm5dJLL01RFN1yBwAAAAAAPcfIkSMzadKkbN68+TOfGzp0aJqamjJy5MguugwA6IkMBwAAAAAAAAAAPcrRo0fT3Nyc5cuXZ82aNeno6OiWO4YNG5abbropN998cyZNmmQsAAAAAACAz62h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/jCPP/54Tpw4UbWeWbNm5fvf/36mTJlStQ4AAAAAAIDPa/Lkydm+fXs++uijz/3eiy++OLNmzUr//v2rcBkAAEBlGQ4AAAAAAAA4A7377rt58MEH89RTT6Wzs7MqHUVR5Prrr8/999+fCRMmVKUDAAAAAADgy6ipqUlTU1OWLl16yt8zGTBgQObMmZOLLrqouscBAABUkOEAAAAAAACAM8i2bdvy4IMP5tlnn01ZllXpqKmpyc0335w/+qM/yvjx46vSAQAAAAAAUCnDhw/P1KlTs379+pM+e/nll+faa69N3759u+AyAACAyjEcAAAAAAAAcAbYsmVLHnjggaxcubJqHX369Mkdd9yR7373uznvvPOq1gMAAAAAAFBp06ZNy9tvv519+/b93tcHDRqUuXPn5vzzz+/iywAAACrDcAAAAAAAAEAPVZZl1q1bl3/4h3/ISy+9VLWevn375u677863v/3tjBw5smo9AAAAAAAA1VJbW5umpqb8/Oc/T1mWv/XalVdemZkzZ6aurq6brgMAAPjyDAcAAAAAAAD0MGVZZvXq1XnggQeyefPmqvUMGDAgixYtyje+8Y0MGzasaj0AAAAAAABdYeTIkZk0adKn318ZMmRIGhsbM3r06G6+DAAA4MszHAAAAAAAANBDdHZ25le/+lUeeOCBvP7661XrGTx4cL75zW9m4cKFGTx4cNV6AAAAAAAAulpDQ0N27NiRCy+8MDNmzEifPn60BgAAODP4XzcAAAAAAACnufb29ixfvjwPPvhg3nnnnar1DB8+PN/+9rdz9913Z8CAAVXrAQAAAAAAOBVlWebjjz/OOeecU7HMPn365J577kltbW3FMgEAAE4HhgPgFBRF0TfJZUnOTzIoyYAkR5J8kuS9JK+XZdnWfReenoqiGJHkgiSj80//3PolKZMcyz/9s/sgyW/Ksvyo244EAAAAADiNtbW15cknn8wPfvCD7Ny5s2o95557bv7oj/4od9xxR+rr66vWAwAAAAAAcKoOHTqUlStX5r333suCBQsqOh5gNAAAADgTGQ6AP6AoimuT3JXkliRXJvmsrwx0FEWxNclTSX5eluUL1b/w9FMUxVVJ5ie5Psn0JCNO8X27kqxP8usky8qy3FqtGwEAAAAAeoKjR49m6dKleeihh7Jnz56q9YwdOzbf+973csstt6RPH982AgAA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XnqpkryBAwdm0qRJGTVqlNEAAAAAeiTDAQAAAAAA0M3a2tpy55135hvf+EZWrFhRef7o0aNz9tlnZ8KECZVnAwAAAAAA9CSbNm3Kvffem4cffjhlWVaSecABB2TixIkZMGBAJXkAAADQGQwHAAAAAABANynLMr/61a/y9a9/PU888UTl+cOGDcupp56a97znPamtra08HwAAAAAAoCdZvnx5mpubs2bNmkryBg8enClTpmTfffetJA8AAAA6k+EAAAAAAADoYmVZZu7cuZk6dWoWLFhQeX5tbW3e97735WMf+1iGDh1aeT4AAAAAAEBPsnHjxsyZMycLFy6sLPPggw/Occcdl/79+1eWCQAAAJ3JcAAAAAAAAHSh3/zmN5k6dWruu+++TslvbGzMmWee6ZtvAAAAAACAPmHp0qWZMWNG1q5dW0nekCFD0tjYmL333ruSPAAAAOgqhgMAAAAAAKALLFq0KNdff32am5s7Jf/www/PaaedlnHjxnVKPgAAAAAAQE+yYcOGzJo1K4sWLaokryiKHHbYYRk3blzq6uoqyQQAAICuZDgAAAAAAAA60dNPP50bb7wxP/vZz1KWZeX5Y8aMyWmnnZYpU6akKIrK8wEAAAAAAHqSsiyzZMmSzJo1K+vXr68kc8cdd0xTU1N23333SvIAAACgOxgOAAAAAACATrBq1ap861vfyr/+67+mtbW18vwRI0bk1FNPzf/+3/87NTU1lecDAAAAAAD0NGvXrs2MGTOydOnSSvKKoshRRx2VY445JrW1tZVkAgAAQHcxHAAAAAAAABV6+eWX853vfCf/+I//mJaWlsrzd91113z84x/Pu971rvTr59f8AAAAAADA9q8syzz22GOZPXt2ZZ+/7Lzzzmlqasouu+xSSR4AAAB0N28UAgAAAABABdatW5fvf//7+d73vpe1a9dWnj906NB89KMfzXvf+97U19dXng8AAAAAANATrVmzJtOnT8/TTz9dSV5tbW2OOeaYHHnkkampqakkEwAAAHoCwwEAAAAAALANWlpacvvtt+fmm2/O6tWrK88fOHBgPvShD+Wv/uqvssMOO1SeDwAAAAAA0BOVZZkFCxZk7ty52bRpUyWZu+22W5qamrLTTjtVkgcAAAA9ieEAAAAAAADogLa2tvz85z/Pddddl2effbby/Lq6upx44on567/+6wwf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DAAAAAAAoOc68sgjs2TJki1+xrLffvtl8uTJGTRoUBc2AwAAANi+1XR3AQAAAACAnubBBx/MySef3OHRgEGDBuW6664zGgAAAAAAAPQ5NTU1+V//63+lpuaPX1UfOHBg3vzmN+fP//zPjQYAAAAAVKxfdxcAAAAAAOhJZs2alc985jPZuHFjh+7faaedcu211+aggw6quBkAAAAAAEDvsPPOO+fII4/M/fff//uf7b///mloaMiAAQO6sRkAAADA9stwAAAAAADA7/z85z/P5z//+WzevLlD9++xxx65/vrrs++++1bcDAAAAAAAoHc55phj8uSTT6alpSWTJ0/OyJEju7sSAAAAwHbNcAAAAAAAQJIf/vCHufTSS1OWZYfu32+//TJ16tTsvvvuFTcDAAAAAADofK2tramtra0sr7a2Nn/+53+eQYMGpX///pXlAgAAAPCn1XR3AQAAAACA7lSWZW666aZccsklHR4NOOSQQ/Ktb33LaAAAAAAAANArLV26NP/0T/+UlStXVpq74447Gg0AAAAA6CKGAwAAAACAPqssy1x11VW5/vrrO5wxbty43HDDDdlxxx2rKwYAAAAAANAFNmzYkLvvvjt33XVXXn311TQ3N6e1tbW7awEAAADQAf26uwAAAAAAQHdobW3NV77ylfz4xz/ucEZTU1MuueQS35QDAAAAAAD0KmVZZsmSJZk1a1bWr1//+5+vXr068+bNy7HHHtuN7QAAAADoCMMBAAAAAECf09LSks9+9rP5z//8zw5nvPOd78wFF1yQ2tra6ooBAAAAAAB0srVr12bGjBlZunTpn7w+f/78jBo1KrvssksXNwMAAABgW9R0dwEAAAAAgK60bt26fPrTn96m0YAPfvCD+dznPmc0AAAAAAAA6DXKsszChQvzgx/84DVHA/7r3LRp09LW1taF7QAAAADYVv26uwAAAAAAQFd56aWXcsYZZ2TBggUdzvjkJz+Zj370oymKosJmAAAAAAAAnWfNmjWZPn16nn766a06/8ILL+SBBx7I0Ucf3cnNAAAAAKiK4QAAAAAAoE9YuXJlTjvttDz55JMdur8oipx33nk54YQTqi0GAAAAAADQScqyzIIFCzJ37txs2rTpdd07b9687Lffftlpp506qR0AAAAAVarp7gIAAAAAAJ1t2bJlOemkkzo8GlBbW5uvfOUr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KvHyyy/njDPOyMMPP9zhjFNPPTUnnXRSiqKosBkAAAAAAMCf9vzzz2fatGl54YUXKsnr379/Jk6cmLFjx/q8AwAAAIAuZTgAAAAAANhmzz33XE4//fQsWbKkwxl/+7d/m/e+970VtgIAAAAAAPjTWltbM2/evMyfPz9lWVaSOXLkyEyePDmDBw+uJA8AAAAAXg/DAQAAAADANlm2bFlOO+20PPPMMx26v7a2Nl/84hfz1re+teJmAAAAAAAAf2zlypVpbm7O6tWrK8kbMGBAJk2alNGjR6coikoyAQAAAOD1MhwAAAAAAHTYY489ltNPPz0vvvhih+7v379/vvrVr2by5MkVNwMAAAAAAPhDmzZtyn333ZeHHnooZVlWkjlmzJg0NDRk4MCBleQBAAAAQEcZDgAAAAAAOuT+++/PWWedlVdffbVD9w8ePDhXXXVVjj766IqbAQAAAAAA/KEVK1akubk5r7zySiV5gwYNypQpUzJy5MhK8gAAAABgWxkOAAAAAABet7vuuitf+MIXsmnTpg7dP3z48Fx77bU58MADK24GAAAAAADw/7S0tOSee+7JI488UlnmgQcemAkTJqS+vr6yTAAAAADYVoYDAAAAAICtVpZlbrnllkydOrXDGXvuuWemTp2afffdt8JmAAAAAAAAf2jZsmWZPn161q5dW0nekCFDMmXKlIwYMaKSPAAAAACokuEAAAAAAGCrbN68OZdeemn+9V//tcMZo0aNytSpU7PbbrtVVwwAAAAAAOC/2bBhQ2bPnp3HH3+8kryiKHLIIYdk/PjxqaurqyQTAAAAAKpmOAAAAAAAaNfatWtz3nnnZc6cOR3OOOSQQ3LNNddkxx13rK4YAAAAAADAf7NkyZLMnDkz69evryRv2LBhaWpqyh577FFJHgAAAAB0FsMBAAAAAMAWPffcc/n0pz+9Td/KM378+Fx++eUZNGhQhc0AAAAAAAB+a926dZk5c2aeeOKJSvKKosgRRxyRN7zhDenXzyvXAAAAAPR8fosFAAAAALymxx57LJ/+9KezatWqDme88Y1vzJe//OX079+/wmYAAAAAAABJWZZ5/PHHM3v27GzcuLGSzJ133jmNjY3ZddddK8kDAAAAgK5gOAAAAAAA+JNmzZqV888/P+vW1k19NAABAABJREFUretwxrve9a78/d//fWpraytsBgAA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50Mf+lD+8A//sHnBAAAAAACAIeUVr3hF9t1339x6663dnt1uu+3S3t6eLbbYog+SAQAAAACbGsUBAAAAAAwpzz33XE477bRcc801vd6x5ZZb5oILLsihhx7axGQAAAAAAMBQNGXKlCxYsCBLly5d7/URI0bkyCOPzD777JNSSh+nAwAAAAA2FW39HQAAAAAAmmX58uV5//vfv1GlAbvttlu++c1vKg0AAAAAAAB6ZMSIEWlvb1/vtR133DFvfvObs++++yoNAAAAAABaanh/BwAAAACAZlhXGjBv3rxe72hvb8+5556bzTbbrHnBAAAAAACAIW/77bfPXnvtlTvvvDNJMmrUqBx99NHZY489FAYAAAAAAH1CcQAAAAAAg96zzz6bk08+OTfffHOvd/zZn/1Z/uZv/iZtbW1NTAYAAAAAAGwqjjrqqDz00EOZOHFipk6dqqgYAAAAAOhTigMAAAAAGNSWLFmS973vfbntttt6NT9ixIicffbZOf7445ucDAAAAAAAGMiWL1/e1A/3jxo1Km94wxsUBgAAAAAA/cLXpwEAAAAwaD3zzDN5z3ve0+vSgK222ipf/epXlQYAAAAAAMAmpLOzM1dccUX+4z/+I08//XRTdysNAAAAAAD6i+IAAAAAAAalxYsX56STTsqdd97Zq/ntt98+3/jGN3LAAQc0ORkAAAAAADBQPfTQQ/nOd76TW2+9NatXr05HR0dqrf0dCwAAAABgow3v7wAAAAAA0KinnnoqJ510UubPn9+r+Z122ilf/vKXM3HixCYnAwAAAAAABqKVK1fm6quv/o1C4sceeyy33XZb9ttvv35KBgAAAADQHIoDAAAAABhUnnzyyZx00km5//77ezW/yy675Etf+lK23Xbb5gYDAAAAAAAGpPvvvz+XX355li9fvt7r11xzTXbaaaeMGzeuj5MBAAAAADRPW38HAAAAAICeWrhwYd71rnf1ujRg1113zVe/+lWlAQAAAAAAsAlYsWJF/ud//ic/+9nPXrY0IEk6OzvT0dGRWmsfpgMAAAAAaK7h/R0AAAAAAHrisccey0knnZSHHnqoV/O77757vvSlL2XChAlNTgYAAAAAAAwktdbMnz8/V1xxRZ577rkezTz88MO56667stdee7U4HQAAAABAaygOAAAAAGDAe+SRR3LSSSflkUce6dX8nnvumS9+8YvZcsstmxsMAAAAAAAYUJYtW5bLL788DzzwQMOzV111VXbYYYeMHTu2BckAAAAAAFqrrb8DAAAAAMCGPPTQQ3nXu97V69KAffbZJ1/+8peVBgAAAAAAwBBWa80dd9yRWbNm9ao0IElWrVqVyy+/PLXWJqcDAAAAAGi94f0dAAAAAABezoIFC3LSSSdl4cKFvZrff//98/nPfz7jxo1rcjIAAAAAAGCgWLp0aTo6OvLwww9v9K4HHngg8+fPz2677daEZAAAAAAAfUdxAAAAAAAD0v3335+TTjopTz75ZK/mDzzwwHz+85/P2LFjm5wMAAAAAAAYCGqtufXWW3Pttdems7OzKTsnTZqUrbbaqim7AAAAAAD6kuIAAAAAAAac+fPn56STTspTTz3Vq/lDDz00n/vc57LZZps1ORkAAAAAADAQPP300+no6Mhjjz3WlH3Dhw/PEUcckf333z+llKbsBAAAAADoS4oDAAAAABhQ7r777rznPe/J008/3av5I444IpdccknGjBnT3GAAAAAAAEC/6+rqyk033ZTrr78+a9asacrOyZMnp729PePHj2/KPgAAAACA/qA4AAAAAIAB484778x73vOeLFmypFfzRx55ZC6++OKMHj26yckAAAAAAID+tmjRonR0dOSJJ55oyr6RI0fmyCOPzN57751SSlN2AgAAAAD0F8UBAAAAAAwIt912W9773vdm6dKlvZo/5phjctFFF2XkyJFNTgYAAAAAAPSnNWvW5Fe/+lXmzZuXrq6upuzcaaedMm3atIwdO7Yp+wAAAAAA+pviAAAAAAD63S233JL3ve99efbZZ3s1397envPPP19pAAAAAAAADDELFy7M7Nmzs3jx4qbsGzVqVI455pjsvvvuKaU0ZScAAAAAwECgOAAAAACAfnXnnXfmb/7mb7J8+fJezf/Wb/1WPvOZz2TEiBFNTgYAAAAAAPSX1atX57rrrsvNN9+cWmtTdu66666ZOnVqxowZ05R9AAAAAAADieIAAAAAAPrN008/ndNOO63XpQG/8zu/k3PPPTfDh/sxFwAAAAAADBWPPvpoOjo68swzzzRl32abbZapU6fmla98ZVP2AQAAAAAMRN5RDQAAAEC/6Orqykc+8pE8/vjjvZo/7rjj8slPfjLDhg1rcjIAAAAAAKA/dHZ2Zu7cubntttuatnPPPffM0UcfnVGjRjVtJwAAAADAQKQ4AAAAAIB+8eUvfzlz587t1ezxxx+fc845J21tbU1OBQAAAAAA9IcHH3wwc+bMybPPPtuUfZtvvnmmTZuWHXfcsSn7AAAAAAAGOsUBAAAAAPS5jo6OfP3rX+/V7AknnJCPfvSjSgMAAAAAAGAIWLlyZa666qrcddddTdu577775sgjj8yIESOathMAAAAAYKBTHAAAAABAn3rwwQdz9tln92r2xBNPzIc+9CGlAQAAAAAAMATcd999ueKKK7J8+fKm7Ntiiy3S3t6e7bbbrin7AAAAAAAGE8UBAAAAAPSZ5557LjNmzMiyZcsann3LW96SGTNmpJTSgmQAAAAAAEBfWbFiRa644orMnz+/KftKKTnggANy+OGHZ/hwb40FAAAAADZNfjoKAAAAQJ+oteYzn/lM7rnnnoZn3/rWt+a0005TGgAAAAAAAEPADTfc0LTSgAkTJmT69OmZOHFiU/YBAAAAAAxWigMAAAAA6BOzZs3Kj3/844bnXv3qVysNAAAAAACAIeTwww/Pfffdl+XLl/d6R1tbWw4++OAccsghGTZsWBPTAQAAAAAMTm39HQAAAACAoe+mm27KJZdc0vDczjvvnI9//ONKAwAAAAAAYAgZNWpUjj322F7Pb7vttnnDG96Qww8/XGkAAAAAAMDzhvd3AAAAAACGtqeeeiof+tCHsnr16obmxowZkwsvvDBjx45tUTIAAAAAAKC/7LLLLtl1110zf/78Hs8MGzYshx12WA488MC0tfnuLAAAAACAF1IcAAAAAEDLdHZ25owzzsjChQsbnj377LOz6667tiAVAAAAAAAwEEydOjWPPPJInnvuuW7PTpo0KdOnT8+WW27Z+mAAAAAAAIOQulUAAAAAWuaSSy7JvHnzGp5729velte+9rXNDwQAAAAAAAwYY8aMyTHHHLPBMyNGjMjUqVNzwgknKA0AAAAAANiA4f0dAAAAAICh6dJLL82sWbManjv44IPz/ve/vwWJAAAAAACAgWa33XbLPffckwULFvzGte233z7t7e0ZN25cPyQDAAAAABhc2vo7AAAAAABDz6233przzjuv4bmtt946559/foYP13cJAAAAAACbglJKpk2blpEjR/7fcyNHjkx7e3uOP/54pQEAAAAAAD2kOAAAAACAplq0aFFmzJiRzs7OhuaGDRuWz372s9lmm21alAwAAAAAABiIxo4dm6OOOipJsvPOO+fNb35z9t5775RS+jkZAAAAAMDg4avbAAAAAGiazs7OnHnmmVm4cGHDs6ecckoOPvjg5ocCAAAAAACartba1A/277XXXtl8882z/fbbKwwAAAAAAOiFtv4OAAAAAMDQcckll2TevHkNzx133HH54z/+4+YHAgAAAAAAmqqzszNXXXVVfvGLX6TW2rS9pZTssMMOSgMAAAAAAHppeH8HAAAAAGBouPTSSzNr1qyG5/bcc8+cffbZ3ggIAAAAAAAD3COPPJKOjo4sWbIkSTJ//vzstttu/ZwKAAAAAIBEcQAAAAAATXDrrbfmvPPOa3hu/PjxueiiizJ69OgWpAIAAAAAAJph1apVmTt3bm6//fYXPX/llVdm++2393N+AAAAAIABoK2/AwAAAAAwuC1atCgzZsxIZ2dnQ3NtbW05//zzM3ny5BYlAwAAAAAANtaCBQsya9as3ygNSJIVK1bkyiuv7IdUAAAAAAC81PD+DgAAAADA4NXZ2ZkzzzwzCxcubHj2/e9/f6ZMmdKCVAAAAAAAwMZ67rnnctVVV+Xuu+/e4Ll77rknu+22W3beeec+SgYAAAAAwPooDgAAAACg1y655JLMmzev4bnjjjsub3/725sfCAAAAAAA2Gjz58/PFVdckRUrVvTo/OWXX57tttsuI0eObHEyAAAAAABeTlt/BwAAAABgcLr00ksza9ashuf23HPPnH322SmltCAVAAAAAADQW8uXL8/Pf/7z/OIXv+hxaUCSLFu2LFdffXULkwEAAAAA0J3h/R0AAAAAgMHnlltuyXnnndfw3Pjx43PRRRdl9OjRLUgFAAAAAAD0Rq01d999d6666qqsXLmyVzvuuOOO7Lbbbtl+++2bnA4AAAAAgJ5o6+8AAAAAAAwuixYtyhlnnJHOzs6G5tra2nL++edn8uTJLUoGAAAAAAA06tlnn81PfvKT/PKXv+x1acA6HR0dDf/5AQAAAAAAzTG8vwMAAAAAMHh0dnbmzDPPzMKFCxueff/7358pU6a0IBUAAAAAANCoWmtuv/32zJ07t2kf9h89enRWrlyZESNGNGUfAAAAAAA9pzgAAAAAgB675JJLMm/evIbnjjvuuLz97W9vfiAAAAAAAKBhzzzzTDo6OvLoo482Zd+wYcNy+OGH54ADDkhbW1tTdgIAAAAA0BjFAQAAAAD0yKWXXppZs2Y1PLfnnnvm7LPPTimlBakAAAAAAICeqrXm5ptvznXXXZfVq1c3Zed2222X9vb2bLHFFk3ZBwAAAABA7ygOAAAAAKBbt9xyS84777yG58aPH5+LLrooo0ePbkEqAAAAAACgpxYvXpzZs2dn4cKFTdk3YsSIHHnkkdlnn32UBwMAAAAADACKAwAAAADYoEWLFuWMM85IZ2dnQ3NtbW05//zzM3ny5BYlAwAAAAAAutPV1ZV58+blhhtuSFdXV1N27rDDDpk2bVrGjRvXlH0AAAAAAGw8xQEAAAAAvKzOzs6ceeaZvfr2oZNPPjlTpkxpQSoAAAAAAKAnnnjiiXR0dGTRokVN2Tdq1KgcffTR2WOPPVJKacpOAAAAAACaQ3EAAAAAAC/rkksuybx58xqeO+644/KOd7yj+YEAAAAAAIBurVmzJtdff31uvPHG1FqbsnOXXXbJsccem80226wp+wAAAAAAaC7FAQAAAACs16WXXppZs2Y1PLfnnnvm7LPP9k1DAAAAAADQDx577LF0dHTk6aefbsq+MWPGZOrUqXnlK1/pZ/8AAAAAAAOY4gAAAAAAfsMtt9yS8847r+G58ePH56KLLsro0aNbkAoAAAAAAHg5nZ2dufbaa3Prrbem1tqUnbvvvnuOOeYYP/cHAAAAABgEFAcAAAAA8CKLFi3KjBkz0tnZ2dBcW1tbzj///EyePLlFyQAAAAAAgPV5+OGH09HRkaVLlzZl39ixYzNt2rTstNNOTdkHAAAAAEDrKQ4AAAAA4P90dnbmzDPPzBNPPNHw7Mknn5wpU6a0IBUAAAAAALA+q1atytVXX5077rijaTv32WefHHnkkRk5cmTTdgIAAAAA0HqKAwAAAAD4P5dccknmzZvX8Nxxxx2Xd7zjHc0PBAAAAAAArNcDDzyQyy+/PMuWLWvKvnHjxqW9vT3bb799U/YBAAAAANC3FAcAAAAAkCS59NJLM2vWrIbn9txzz5x99tkppbQgFQAAAAAA8ELPPfdcrrzyytxzzz1N2VdKyX777ZcjjjgiI0aMaMpOAAAAAAD6nuIAAAAAAHLLLbfkvPPOa3hu/PjxueiiizJ69OgWpAIAAAAAAF6oq6sr3//+97NkyZKm7Ntyyy0zffr0TJo0qSn7AAAAAADoP239HQAAAACA/rVo0aLMmDEjnZ2dDc21tbXl/PPPz+TJk1uUDAAAAAAAeKG2trYcdNBBG72nlJJDDjkkb3zjG5UGAAAAAAAMEcP7OwAAAAAA/aezszNnnnlmnnjiiYZnTz755EyZMqUFqQAAAAAAgJez99575957780jjzzSq/mtt94606dPzzbbbNPkZAAAAAAA9Ke2/g4AAAAAQP+55JJLMm/evIbnjjvuuLzjHe9ofiAAAAAAAGCDSilpb2/P8OGNfXfUsGHDcsQRR+QNb3iD0gAAAAAAgCFIcQAAAADAJurSSy/NrFmzGp7bc889c/bZZ6eU0oJUAAAAAABAd8aPH58jjjiix+cnTpyYE088MYccckja2rx1FAAAAABgKGqsbhYAAACAIeHmm2/Oeeed1/Dc+PHjc9FFF2X06NEtSAUAAAAAAPTU/vvvn/nz5+fxxx9/2TPDhw/PEUcckf33318hMAAAAADAEKc2FgAAAGATc/311+fd7353Ojs7G5pra2vL+eefn8mTJ7coGQAAAAAA0FOllLS3t2fYsGHrvb7ddtvlTW96Uw444AClAQAAAAAAmwDFAQAAAACbkNmzZ+e9731vVq1a1fDsySefnClTprQgFQAAAAAA0BsTJkzIoYce+qLnRowYkWnTpuUP/uAPMn78+H5KBgAAAABAXxve3wEAAAAA6Bs33HBDTj/99F7NHnfccXnHO97R5EQAAAAAAMDGOuiggzJ//vwsWrQoO+64Y6ZNm5bNN9+8v2MBAAAAANDHFAcAAAAAbAKWL1+ed73rXb2a3XPPPXP22WenlNLkVAAAAAAAwMZqa2vLq171qjz11FPZfffd/TwfAAAAAGAT1dbfAQAAAABora6urnzkIx/p1ez48eNz0UUXZfTo0U1OBQAAAAAAm57Vq1dn7ty5eeSRR5q6d+utt84ee+yhNAAAAAAAYBOmOAAAAABgiPv85z+fOXPmNDzX1taW888/P5MnT25BKgAAAAAA2LQ8+uij+e53v5sbb7wxHR0d6ezs7O9IAAAAAAAMIYoDAAAAAIawSy+9NP/yL//Sq9mTTz45U6ZMaXIiAAAAAADYtHR2duaKK67ID3/4wzzzzDNJkiVLluS6667r52QAAAAAAAwlw/s7wEBXSnlzkjFJ/rPWurK/8wAAAAD01A033JDPfOYzvZo97rjj8o53vKPJiQAAAAAAYNPy0EMPpaOjI88+++xvXLvllluy6667ZtKkSf2QDAAAAACAoaatvwMMAvsm+ackD5dSLi6l7NXfgQAAAAC689BDD2XGjBlZvXp1w7NbbbVVzjnnnJRSWpAMAAAAAACGvpUrV2b27Nn58Y9/vN7SgCSptaajoyNr1qzp43QAAAAAAAxFigN6piTZKskpSW4rpfxvKeUtpZTh/RsLAAAA4Dc9++yzOfXUU/PMM880PDty5Mj85Cc/yYgRI1qQDAAAAAAAhr77778/s2bNyp133tnt2cWLF+eGG27og1QAAAAAAAx1igN6rmZtgUBJ0p7kW0keKqV8ppTyyn5NBgAAAPC8NWvW5Kyzzsp9993X8Oxhhx2W2bNnp63Nj4wAAAAAAKBRK1asyC9+8Yv87Gc/y/Lly3s8N2/evCxatKiFyQAAAAAA2BR4F3hjal5cIDAxyZlJ7i6l/KSU8vpSit9TAAAAoN9ccsklueqqqxqe23HHHXPBBRdkxIgRLUgFAAAAAABDV60199xzT2bNmpX58+f3an727Nnp6upqQToAAAAAADYVPuTemHWFATUvLhFoS/KaJP8vyYJSyjmllB36LSUAAACwSfrOd76T//zP/2x4bvPNN8/MmTOzxRZbtCAVAAAAAAAMXcuWLctPf/rTXHbZZXnuued6vefJJ5/MjTfe2MRkAAAAAABsahQH9M66AoHkxQUCJcnkJGcnua+U8v1Syu/1T0QAAABgU3LNNdfkggsuaHiura0tn/3sZ7PLLrs0PxQAAAAAAAxRtdbccccdmTVrVhYsWNCUnQsWLEittSm7AAAAAADY9Azv7wCD3EvLA174/LAkr0vyulLKgiRfTfL1WuvjfRsRAAAAGOoeeOCBnHnmmenq6mp4dsaMGTnyyCNbkAoAAAAAAIampUuXpqOjIw8//HBT9g0bNiyHHnpoDjrooJRSuh8AAAAAAID1UBzQHC/8Sf0LSwTWPb9zknOTnFNK+UGSr9Ra/6cP8wEAAABD1JIlS3Lqqadm6dKlDc++5S1vyZvf/OYWpAIAAAAAgKGn1ppbbrkl1157bVavXt2UnZMmTcr06dOz5ZZbNmUfAAAAAACbLsUBzbeuLOCFBQLrnh+R5I1J3lhKuSfJV5J8o9a6qG8jAgAAAEPB6tWrc8YZZ2TBggUNzx511FE5/fTTW5AKAAAAAACGnqeffjqzZ8/O448/3pR9w4cPzxFHHJH9998/pZTuBwAAAAAAoBuKAxpT8+tigO688NwLSwTWPb9HkguTfLqU8p0kX6m1Xt6UlAAAAMCQV2vNBRdckOuuu67h2V122SXnnXdehg0b1oJkAAAAAAAwdHR1deWmm27K9ddfnzVr1jRl5+TJk9Pe3p7x48c3ZR8AAAAAACSKA3pi5fO/lqy/AKAn1p194fy650cleVuSt5VSbk/y5STfrLUu6XViAAAAYMj7j//4j/y///f/Gp4bP358Zs6cmXHjxrUgFQAAAAAADB2LFi3K7Nmz8+STTzZl38iRI3PUUUdlr732SimNvAURAAAAAAC6pzigG7XW80sp1yR5T5ITkozI+gsAeuKF59ZXQrBvkr9Ncn4p5T+SfLXWek1vswMAAABD05VXXpmZM2c2PDds2LBceOGF2XHHHVuQCgAAAAAAhoY1a9bkhhtuyI033piurq6m7Nxpp50ybdq0jB07tin7AAAAAADgpRQH9ECt9bIkl5VSJib5yyR/leSV6y7nNwsAemLd2ZfOlySbJfnzJH9eSpmX5MtJ/r3Wuqy3rwEAAAAYGubPn58PfehDvXqj4oc//OEcdthhLUgFAAAAAABDw8KFCzN79uwsXry4KftGjx6do48+OrvvvntKaeQthgAAAAAA0Ji2/g4wmNRaF9Zaz0uye5Ljk/wgyZr8ZglAXf+G9SoveLxwft1zh2RtccAjpZQvllIOasJLAQAAAAahxYsX55RTTsny5csbnn3729+e17/+9S1IBQAAAAAAg9/q1atz1VVX5Qc/+EHTSgN23XXXvPnNb84ee+yhNAAAAAAAgJYb3t8BBqNaa03ykyQ/KaVsl+Svk/xlkh3XHcmvywMa+Wn/SwsI1j1XkoxL8u4k7y6lXJPkS0m+XWt9rrevAwAAABg8Vq1alRkzZuSRRx5pePbYY4/NBz7wgRakAgAAAACAwe/RRx/N7Nmzs2TJkqbs22yzzXLsscdml112aco+AAAAAADoCcUBG6nW+miST5ZSzk3y+1n74f7fTdKWFxcAJD0vEXjhufXNT3n+MbOU8s0kX6m13tGL+AAAAMAgUGvNZz7zmcybN6/h2d122y2f/vSn09bW1vxgAAAAAAAwiK1atSpz587N7bff3rSde+65Z44++uiMGjWqaTsBAAAAAKAnFAc0Sa21K8kPk/ywlLJjkncl+Ysk2607kl+XAPS0QOCFZ9c3PyHJ+5O8v5QyJ8mXk3y31trZqxcBAAAADEj/8i//kv/6r/9qeG7ChAmZOXNmxo4d24JUAAAAAAAweD344IOZM2dOnn322abs23zzzTNt2rTsuOOOTdkHAAAAAACNUhzQArXWB5OcXUo5J8kJWVsi8Nqs/cD/CwsAkp6XCLzw3Prmpz3/+NtSyj8l+Yda672NpwcAAAAGkl/+8pf5/Oc/3/DciBEjctFFF2Xy5MktSAUAAAAAAIPTypUrc+WVV+buu+9u2s599903Rx55ZEaMGNG0nQAAAAAA0CjFAS1Ua12T5HtJvldK2SXJu5P8WZJJ647k1yUAPS0QeOHZ9c1vm2RGkg+WUi5L8qUklz6fBQAAABhE7rrrrpx99tmptXZ/+CXOPvvsHHTQQS1IBQAAAAAAg9PixYvzX//1X1mxYkVT9m2xxRZpb2/Pdttt15R9AAAAAACwMdr6O8CmotZ6f631rCQ7JvnjJJc9f2l9JQA9VV7wqC94lKz93/a3k3wnyYJSyidLKTtu1IsAAAAA+syiRYty6qmn9urNi3/+53+e448/vgWpAAAAAABg8Npiiy2y2WabbfSeUkoOOuigvPGNb1QaAAAAAADAgKE4oI/VWlfXWr9da/2dJHsluSTJU1l/AUAj1s0nLy4QKEm2S/KRJPNLKZeWUo4vpZT1rwEAAAD628qVK3P66afn8ccfb3j2t37rt/Ke97ynBakAAAAAAGBwa2trS3t7ezbm7XMTJkzI61//+hx55JEZPnx4E9MBAAAAAMDGURzQj2qt99RaP5hk+yTvSDIn6y8AaMT65teVCAxL8vtJfpjkvlLKR0opr9ioFwEAAAA0Va01n/zkJ3PLLbc0PLvXXnvlk5/8ZNra/MgHAAAAAADWZ9ttt81BBx3U8FxbW1sOPfTQnHjiiZk4cWILkgEAAAAAwMbxLvIBoNa6qtb677XW6Un2TfJ3SZ7Or0sAXlgA0FMl6y8RWPfcTkk+meSBUsqsUsprmvBSAAAAgI30ta99LT/96U8bntt6660zc+bMjBkzpgWpAAAAAABg6DjssMOy5ZZb9vj8tttumze84Q05/PDDM2zYsNYFAwAAAACAjaA4YICptd5Raz0lyfZJ/jzJVVl/AUAj1je/rkRgRJITk/yklHJ3KeWDpZStN+pFAAAAAL3y85//PF/5ylcanhs5cmRmzpzpG44AAAAAAKAHhg0blvb29pRSuj135JFH5vWvf3223trb6gAAAAAAGNgUBwxQtdbnaq3fqLVOTXJgki8lWZpflwC8sACgp0rWXyKw7rndknw2yUOllH8rpbQ347UAAAAA3bvtttvy8Y9/vFezn/jEJ7Lvvvs2OREAAAAAAAxdr3jFKzb4s/VJkybljW98Yw466KC0tXmrJQAAAAAAA5+fZg8CtdZbaq3vTTI5yV8nuS7rLwBoxPrm15UIjEryx0n+t5Ryaynl/aWULTbuVQAAAAAvZ+HChTnttNOyatWqhmff9a535TWveU0LUgEAAAAAwNA2ZcqUjBs37kXPjRgxIlOnTs0JJ5yQLbfcsn+CAQAAAABALygOGERqrctrrf9Ya52S5LAk/5BkWX5dAvDCAoCeKll/icC65/ZJMjPJI6WUr5dSjmzGawEAAADWWrFiRU499dQ8+eSTDc++9rWvzV//9V+3IBUAAAAAAAx9I0aMSHt7+//9/fbbb583velN2W+//VJK2cAkAAAAAAAMPIoDBqla669qre9OMjnJ3ySZl/UXADTi5eZLkjFJ3pnkylLKr0op7y6lbN77VwAAAAB0dXXl4x//eO68886GZ/fbb798/OMf98ZFAAAAAADYCNtvv30OOOCATJ8+Pccff3zGjRvX35EAAAAAAKBXFAcMcrXWZ2utX661HprkqCT/nGRFfrMAoJESgfKCxwvn1z13UJIvJnm4lPKlUsrBG/9KAAAAYNPz5S9/OZdddlnDcxMnTszFF1+cUaNGtSAVAAAAAAAMTGvWrMktt9ySrq6upu49+uijs9deeynrBQAAAABgUFMcMITUWq+ptf5FkslJ3p/k1vz6w/5J4wUC2cB8STIuybuSXF9KubKU8o5SyoiNeAkAAACwyfjxj3+cr3/96w3PjR49OjNnzsw222zTglQAAAAAADAwPf744/nud7+bK6+8MjfddFN/xwEAAAAAgAFHccAQVGtdUmv9+1rrgUmOTfKvSVbmxSUAjSoveNQXPNY9d2SSbyR5oJRyVillwsa9CgAAABi6brrppnzqU5/q1ey5556bvfbaq8mJAAAAAABgYOrs7MxVV12VSy+9NE8//XSS5Prrr/+/vwYAAAAAANZSHDDE1VqvrLX+aZLtk3woawsE1n3ov7deWEDw0gKBVyQ5N2sLBD5TStl6I+4DAAAAQ86jjz6a008/PZ2dnQ3Pvu9978urXvWq5ocCAAAAAIAB6OGHH853v/vd3Hzzzan11295W7NmTWbPnv2i5wAAAAAAYFOnOGATUEp5ZZIzkpyWZOS6p5ux+gWPmheXCGye5Mwk95VSzi6ljGnC/QAAAGBQW758eU455ZQsXry44dnf//3fzzvf+c4WpAIAAAAAgIFl1apVmTNnTn70ox9lyZIl6z3z+OOP59Zbb+3jZAAAAAAAMHApDhiiSiltpZQ3lFJ+kuTurC0OmJhff9C/6bd8wd6XFgick+TuUsqJLbgvAAAADApdXV35yEc+knvvvbfh2YMOOigf+chHUkor/pMeAAAAAAAGjgULFmTWrFm5/fbbuz177bXXZunSpX2QCgAAAAAABj7FAUNMKWXHUsonkyxI8p0kr8na/51f+KH+lkbI+gsEJieZVUr5f6WUrVqcAQAAAAacv/u7v8ucOXManps8eXIuuuiijBw5sgWpAAAAAABgYHjuuedy2WWX5Sc/+UmWLVvWo5nOzs50dHSk1la/LQ4AAAAAAAa+4f0dgI1X1n7d4O8nOSnJcXlxUUDy4rKARr6acH1/mtLT+ZeWB6x77vVJjiilvKnWOreBLAAAADBo/eAHP8i//uu/Njy32WabZebMmZkwYUILUgEAAAAAQP+rtea+++7LFVdckRUrVjQ8//DDD+euu+7KXnvt1YJ0AAAAAAAweCgOGMRKKdsl+eskf5lkh3VPP//rSz/039vCgJcWENT1PL/BmC+ZLUm2T3JZKeWPa60/bCAXAAAADDo33HBDPvOZzzQ819bWlvPOOy+77bZbC1IBAAAAAED/W758eS6//PLcf//9G7Xnqquuyg477JCxY8c2JxgAAAAAAAxCbf0dgMaVUn63lPK9JA8k+XiSHbP2A/klv/nh/nWPnnjpbE3ywyR/nOQrSZau5z4vLSh42dgvmRuT5NullPYezgMAAMCg89BDD+WDH/xg1qxZ0/DsKaeckqlTp7YgFQAAAAAA9K9aa+66667MmjVro0sDkmTVqlW56aabNj4YAAAAAAAMYsP7OwA9U0qZmOQvk/x1kp3XPf38ry/98H5PiwJeOrtu7okk/5jky7XWBc8/9+1SyulJ3prkr5Ic+YL5+pL5DXlhecCoJN8spexfa322gcwAAAAw4C1dujSnnHJKlixZ0vDsG97whrz1rW9tQSoAAAAAAOhfzz77bObMmZMHH3ywKfva2tpy6KGH5qCDDmrKPgAAAAAAGKwUBwxwpZTfTvLuJK/P2v+9Xvjh/PV96L+n1jd7VZIvJplVa131GwO1Ls/aQoF/LKXsn+SkJG9PskUaKxBYVx6QJDsmuej5XQAAADAkrFmzJmeddVavviXpsMMOy5lnnplSGv1PfQAAAAAAGLhqrbn99tszd+7cdHZ2NmXnxIkT097enq222qop+wAAAAAAYDBTHDAAlVK2TvIXSf46yW7rnn7+1/rS4w2sXt/s8iT/nuQLtdYbe7yo1luSvK+UckaSdyY5Ocne6XmBwLrygJLkr0spl9Ra7+rp/QEAAGAgu/jii3P11Vc3PLfjjjvmwgsvzPDhfmQDAAAAAMDQ8cwzz6SjoyOPPvpoU/YNGzYsRxxxRA444ABFvAAAAAAA8DzvQh9ASinTk7w7yRuSjMyLP3j/wg/9N/onHeubvSvJF5P8c611SYP7fr241uVJvpTkS6WUE5Ock2T//LpAoKdZ353k9N7mAAAAgIFi1qxZ+fa3v93w3Oabb57Pfe5zGT9+fAtSAQAAAABA36u15qabbsp1112XNWvWNGXndtttl/b29myxxRZN2QcAAAAAAEOF4oB+VkqZkOSdSd6VZK91Tz//a33p8QbXv7QwYE2SS5N8sdb6Pw3u6v5mtf6/Usr3kvx5kvOSbJvuywPWXX9nKeWsWuuqZucCAACAvjJ37txceOGFDc+1tbXlggsuyM4779yCVAAAAAAA0PcWL16c2bNnZ+HChU3ZN2LEiBx55JHZZ599Ukqjb6UDAAAAAIChT3FAPymlHJPk3UnelGR0Xvzh+pd+4L8R65t9LMnXknyl1vpwg/sau3mtNcnXSyk/TPKNJL+bly8PKPl13glJjkwyp5X5AAAAoFXuv//+nHnmmenq6mp49owzzsiUKVNakAoAAAAAAPrWmjVrMm/evPzqV7/q1c/M12fHHXfMtGnTsvnmmzdlHwAAAAAADEWKA/pQKWV8kj/J2sKA/dY9/fyv9aXHG1y/vsKAOUm+mOS7tdbVDe7bKLXWJ0opv5+15QHvyMuXB7yQ4gAAAAAGpWeeeSannnpqnn322YZn3/KWt+RNb3pTC1IBAAAAAEDfeuKJJ9LR0ZFFixY1Zd+oUaNy9NFHZ4899kgpjb6lDgAAAAAANi2KA/pAKeWIJCcl+aMkY/LiD9Cv7wP/PbW+soFnk/xrki/UWm9tcF9T1VprKeWvkxyRZM90Xx5wZJ8EAwAAgCbq7OzMGWeckQcffLDh2aOOOiqnn356C1IBAAAAAEDfWb16da6//vrcdNNNqfWlb2vrnVe+8pWZOnVqNttss6bsAwAAAACAoU5xQIuUUsYmeUeSdyc5aN3TLzjSrMKAdbO3JflSkm/WWpc2uK9laq0rSylnJPlBfrPo4IVKkt36JhUAAAA0R601F1xwQa6//vqGZ3fZZZecd955GTZsWAuSAQAAAABA33jssccye/bsPPPMM03ZN2bMmEydOjW77rprU/YBAAAAAMCmQnFAk5VSDsnasoC3Jtk8zSsLWN/86iTfT/KFWuvsXuzrK/+V5MEkO2Tta3jpa1/33JZ9GwsAAAA2zre+9a1873vfa3hu/Pjx+dznPpdx48a1IBUAAAAAALReZ2dnrrnmmtx2222pdUPfKdNze+yxR44++uiMHj26KfsAAAAAAGBTojigCUopY7K2KOCkJIete/oFRzamMGB9s48k+WqSr9ZaH2twX5+rtdZSymVJ3pkXv56XmtBHkQAAAGCjXXHFFfnc5z7X8Nzw4cNz0UUXZYcddmh+KAAAAAAA6AMPP/xwOjo6snTp0qbsGzt2bKZNm5addtqpKfsAAAAAAGBTpDhgI5RS9s/asoC3Jxmf5pUFvNz8/yb5YpLv11rX9GJnf7oua4sDNsTXLAIAADAo3HvvvTnrrLPS1dXV8OxZZ52VQw89tAWpAAAAAACgtVauXJmrr746d955Z9N27rPPPjnyyCMzcuTIpu0EAAAAAIBNkeKABpVSRiX5oyTvTnLUuqdfcGRjCgPWN7skyTeTfLHWekeD+waSx17m+ZJfv+7eFCwAAABAn3rqqady6qmnZvny5Q3PvuMd78jrX//6FqQCAAAAAIDWeuihhzJ79uwsW7asKfvGjx+f9vb2TJ48uSn7AAAAAABgU6c4oIdKKXtnbVnAnybZct3Tz/+6MWUBLzd/U5IvJfnXWmtz/qSlfz3d3wEAAABgY61atSozZszII4880vDstGnT8v73v78FqQAAAAAAoPVqrU0pDSilZP/998/hhx+eESNGNCEZAAAAAACQKA7oVinl6CTnJZm27qkXXN6YwoD6kr8vSVYl+X9JvlBrvaLBfQPd6v4OsDFKKaOS7JlkhyTjkmyWZHmSpUkeSnJnrXVV/yUEAACg1Wqt+fSnP50bb7yx4dndd989n/70p9PW1taCZAAAAAAA0Ho77rhj9txzz9x111293jFhwoS0t7dn0qRJTUwGAAAAAAAkigN64rVJ2l/w9xtTFvBy8w8m+UqSr9VaF/ZiJy1QSjkqyR8m+b0k+yUZtoHja0optyb5cZIf1Fqvbn3CwaOUMi7J9CRHJdkra0sYtsmvSxhWJnn2+ceDSeYnuTfJvCRza61P9n1qAACAF/vmN7+ZH/3oRw3PbbXVVpk5c2Y222yzFqQCAAAAAIC+c/TRR+ehhx7K8uXLG5orpeTggw/OoYcemmHDNvQ2LAAAAAAAoLcUB/RcswsDapKfJ/likh/WWrs2IhtNVEr54yQzkhzawNiwJAc+//hQKeX6JBfWWv+zBREHhVLK6CRvTPKXSaZlw/9/s9nzj4lJds3akoEX7ronyS+T/CjJL2qtz7YgMgAAwMv65S9/mb//+79veG7EiBG56KKLst1227UgFQAAAAAA9K1Ro0Zl6tSp+fnPf97jma233jrTp0/PNtts08JkAAAAAACA4oDGNFoYsL6ygaeT/HOSL9Va725CJpqklLJ3kq8kaW/CusOS/Ecp5aQkJ9Va72zCzkHh+cKAk5N8KMlWTVq7+/OPv0qyqpTyF7XWf2vSbgAAgA26884789GPfjS11u4Pv8TZZ5+dAw88sAWpAAAAAACgf7zyla/Mrrvumvnz52/w3LBhw3LooYfmoIMOSltbWx+lAwAAAACATZfigNZYX2HAr5J8Mcm/11pX9H2kAaXxT1q0WCnlxCTfSLJ5k1e/Ksl1pZQ/rbV+r8m7B5xSyu8n+VKSHVt4m5FJtm3hfgAAgP/z5JNP5tRTT81zzz3X8Oxf/MVf5Pjjj29BKgAAAAAA6F9Tp07NI4888rI/P580aVLa29szYcKEPk4GAAAAAACbLjW+zVNf8EjWFgasSvKvSY6utR5Wa/1HpQEpL/Pov0ClvDfJd9L80oB1Nk/y3VLK37Rof78rpYwupXwhyX+ltaUBAAAAfWblypU5/fTTs3DhwoZnX/3qV+ekk05qQSoAAAAAAOh/Y8aMydFHH/0bzw8fPjxHH310TjjhBKUBAAAAAADQx4b3d4AhoL7gr9d9AP7+JF9J8o+11if7PNHANC/Jb/V3iJcqpbwzyefT+vKCkuTvSynP1lq/2eJ79alSypZJLk0yrZ+jAAAANE2tNZ/4xCdy6623Njy799575xOf+ETa2vQ1AgAAAAAwdO2+++659957s2DBgiTJ5MmT097envHjx/dzMgAAAAAA2DQpDui9lxYG1CQ/SfKFJD+utdb1Tm2iaq3PJJnd3zleqJQyJck/pGelAVcm+ffnf70/ydIk45LsmuSYJG9PcmR3t0zyD6WU22ut1/Yy9oBSSpmY5H+S7N/A2F1JbkxyT5JFSZYlGZ1ky+cfuyU5OMkOzUsKAADQmH/4h3/Iz372s4bnttlmm1xyySUZM2ZMC1IBAAAAAMDAUUrJtGnT8oMf/CCHHHJI9t5775TS6u9vAQAAAAAAXo7igMa8tCwgSZ5K8vUkX6q13tf3keiNUsr4JP+RZEQ3R+9O8p5a6/+s59riJNc///h8KeW1Sb6YtR98fzkjk/xnKeXgWuuSxpMPHKWUsUl+lJ6VBtyY5B+TfKfW+mgP92+dZGqS1yf5gyQTexkVAACgIT/72c/y1a9+teG5kSNH5pJLLsnEif7zBQAAAACAgWfNmjVZvHhxttlmm6btHDt2bP7oj/4ow4YNa9pOAAAAAACgd9r6O8AgVJ5/XJvkz5NsX2s9Q2nAoPPJJK/s5swvkhzxMqUBv6HW+rMkhyf5326OvjLJOT3ZOVCVtdXg/5G1r3dDHkjypiSH1Fo/39PSgCSptS6qtV5aa/3LJNsl+e0k30uyppexAQAAunXrrbfmnHPO6dXsJz7xiey7777NDQQAAAAAAE3wxBNP5Hvf+15+9KMfZfny5U3drTQAAAAAAAAGBsUBPVeSPJfkn5NMqbUeWWv9Rq11Zf/GolGllH2TvLebY1cleX2t9ZlGdtdan07yuiTXdHP05FLKPo3sHmA+mOQPujnzn0kOrLV+t9ZaN+ZmtdauWutltdYTk+yapEdlDgAAAI1YuHBhTjvttKxatarh2Xe/+915zWte04JUAAAAAADQe6tXr87VV1+d73//+3nqqaeycuXKXH755dnIt/MAAAAAAAAD0PD+DjBI3Jvky0m+Xmtd3N9h2Ggfz4b/2X8qyR/VWntVrV1rXVZKeUuSeUm2fJljw5N8LMlbe3OP/lRKOSTJud0cm5nk9I0tDFifWuuCZu8EAABYsWJFTj311CxatKjh2de+9rX5q7/6qxakAgAAAACA3nv00UfT0dGRZ5558Xen3H///Zk/f3522223fkoGAAAAAAC0Qlt/BxgEvlhr3aPWerHSgMGvlLJrkjd2c+yjtdYHN+Y+tdYHsragYEPeXErZZWPu09dKKSVrSzRGbuDYN2qtp7WiNAAAAKAVurq68rGPfSx33nlnw7P7779/Pv7xj2ftfy4BAAAAAED/6+zszOWXX54f/vCHv1EasM6VV16Z5557ro+TAQAAAAAAraQ4oBu11if6OwNN9d4kwzZw/e4kX23Svb6YZP4Grg97Ps9g8idJpmzg+i1J3t1HWQAAAJriS1/6Uv73f/+34blJkybl4osvzqhRo1qQCgAAAAAAGvfggw9m1qxZue222zZ4bsWKFbnyyiv7KBUAAAAAANAXFAewySilDEvy1m6Ozay1rmnG/Wqtq5P8XTfH3lZKGRT/HpZSRiQ5dwNHapI/q7Wu7KNIAAAAG+3HP/5x/umf/qnhuTFjxmTmzJnZeuutW5AKAAAAAAAas3Llyvzyl7/Mf//3f+fZZ5/t0cw999yTBQsWtDgZAAAAAADQVwbFB5ahSV6dZLsNXH8uyb82+Z7fSLJqA9cnJ3lVk+/ZKn+cZMcNXP/3Wuv1fRUGAABgY91444351Kc+1fBcKSWf+tSnsueee7YgFQAAAAAANOa+++7LrFmzctdddzU8O2fOnKxataG3NwEAAAAAAIOF4gA2Ja/r5vqPaq1Lm3nDWuvTSf67m2Pd5RooTuvm+qf7JAUAAEATPPLII/ngBz+Yzs7Ohmff97735VWvelXzQwEAAAAAQANWrFiRX/ziF/n5z3+e5cuX92rHsmXLcvXVVzc5GQAAAAAA0B8UB7Ap+Z1urv+oRfftbu9rWnTfpimlHJLk4A0c6ai13t5HcQAAADbKsmXLcuqpp2bx4sUNz/7BH/xB/vRP/7QFqQAAAAAAoGdqrbn77rsza9aszJ8/f6P33XHHHXn00UebkAwAAAAAAOhPw/s7wGBQSmnf0PVaa0dfZWmFUsoWSQ7q7txgfp2llO2S7NPNsV+06PY/7+b6fqWUV9RaH2vR/Zvhrd1c//c+SQEAALCRurq68pGPfCT33ntvw7MHH3xwPvzhD6eU0oJkAAAAAADQvWXLlmXOnDlZsGBBU/a1tbXl4IMPzsSJE5uyDwAAAAAA6D+KA3rml0nqy1yrGfy/jwcnuaybM4P9dU7p5vqDtdYHW3HjWuv9pZRHk2y3gWNHJPlhK+7fJG/p5vp/9UkKAACAjfS3f/u3ufzyyxuemzx5ci688MKMHDmyBakAAAAAAGDDaq254447Mnfu3KxataopO7fddtu0t7dn6623bso+AAAAAACgfw3mD4L3h6H8lYJD+bUlyaHdXL+hxfe/LsnrNnD9kAzQ4oBSyp5Jdt7AkTtrrQ/3VR4AAIDe+v73v59/+7d/a3hus802y+c+97lMmDChBakAAAAAAGDDlixZko6OjjzyyCNN2Tds2LAcdthhOfDAA9PW1taUnQAAAAAAQP9THNCY+pK/H2oftn/p61tnKLzOg7u5flOL739Tui8OGKhe1c31uX0RAgAAYGNcf/31Oe+88xqea2try/nnn59dd921BakAAAAAAODl1Vpzyy235Nprr83q1aubsnPSpEmZPn16ttxyy6bsAwAAAAAABg7FAY154QfoX+5D9oPdS0sChsrr3LOb63e3+P73dHN9jxbff2O0d3P9hp4sKaVsnWTfJNsmGZdkTZJlSZ5Icn+Sh2utQ+WfNwAAYAB58MEHM2PGjKxZs6bh2VNOOSXHHHNMC1IBAAAAAMDLW7x4cTo6OvL44483Zd+IESMyZcqU7LvvvillKHyPDAAAAAAA8FKKAxjyyto/6dqlm2PdfbB/Y3W3f5cW339jHNzN9Zd9baWU30ry5iS/n2SnbvY8U0q5OsnPk3y31np/AxkBAADWa+nSpTn11FOzZMmShmdPPPHEvPWtb21BKgAAAAAAWL+urq7ceOONueGGG3pViLs+22+/fdrb2zNu3Lim7AMAAAAAAAYmxQFsCiYlGd3NmUdanKG7/WNLKRNrrQtbnKMhpZQRSfbs5ti965k7McnHkxzYwO22SHLc84+LSik/S/LZWutlDewAAAD4P2vWrMmHPvSh3H///Q3PHn744TnjjDN86xIAAAAAAH1m0aJFmT17dp588smm7Bs5cmSOOuqo7LXXXn7eDQAAAAAAmwDFAWwKJvfgzGMtztCT/ZOTDKjigCR7JBnRzZnH1/1FKWVykq9n7Yf/N9Zrk7y2lHJpkvfXWh9owk4AAGATcvHFF2fu3LkNz+2444654IILMny4H5sAAAAAANB6a9asyQ033JAbb7wxXV1dTdm5884759hjj83YsWObsg8AAAAAABj4vAOeTcHW3VxfUmtd2coAtdblpZRnk2y+gWPd5ewPO3ZzfXWSp5OklHJMku8meUWTM5yQZFop5Z211h82eTcAADBEffvb3863v/3thufGjRuXz33ucxk/fnwLUgEAAAAAwIs9/vjj6ejoyOLFi5uyb/To0Zk6dWp23XXXlFKashMAAAAAABgcFAewKdiqm+tL+iTF2vtsqDigu5z9Ybturi+ttdZSyrFJfpKkVRXlE5J8v5TyN7XWr7ToHgAAwBAxd+7cXHTRRQ3PtbW15bOf/Wx23nnnFqQCAAAAAIBfW716da699trccsstqbU2Zeduu+2WY445JmPGjGnKPgAAAAAAYHBRHMCmYEI315f2SYru7zMYiwNWlVL2TvLjtK40YJ22JF8upXTWWr/e4nutVynl6I1csX9TggAAAC/r/vvvz5lnnpmurq6GZ88444xMmTKlBakAAAAAAODXHnnkkXR0dGTJkuZ838lmm22WadOmKcYFAAAAAIBNnOIANgWju7m+rE9SJM92c727nP1hi26utyX5TpJxGzhzd5IfJPlpkgVJHk+yKskrsraY4FVJTkgyJUnpQaYvl1LuqbV29OBss13ZD/cEAAB66Jlnnskpp5ySZ5/t7j+/ftMf/dEf5U1velMLUgEAAAAAwFqrVq3K3Llzc/vttzdt51577ZWjjjoqo0aNatpOAAAAAABgcFIcQLL2w9/rU1/w141/VePAMbKb66v7JEX39+kuZ38Y0831bZ9/rM+CJDNqrd9+mev3Pf+4MslnSilTknw+awsENmREkm+WUg6otS7t5iwAALCJ6OzszIwZM/LQQw81PHv00UfntNNOa0EqAAAAAABYa8GCBZkzZ06WLWvOd5yMGzcu06ZNyw477NCUfQAAAAAAwOD3ch8YZ9PSkw+sd7Y8ResoDui90b2c+2GSfTZQGvAbaq3XJDkqybk9OL5zkk/1MhsAADDE1Frz2c9+NjfccEPDs6985Stz3nnnZdiwYS1IBgAAAAAAa3+OfeuttzatNGC//fbLm970JqUBAAAAAADAiygOIEm27MGZVa0O0ULd/XO+pk9SdH+fgfgplRG9mPl2khNrrcsbHaxrnZ3kzB4cf08pZeeG0wEA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ixcv/r/nnnjiidx888056KCD+jEZAAAAAADA0DWoiwOSvCpJbeB8afB8b+8z1PT29w0AAIAhaPHixTnjjDOyevXqhuY222yzXHjhhRkzZkyLkgEAAAAA0J9Wr16d6667LjfffHNq/c23G1133XXZZZddssUWW/RDOgAAAAAAgKGtrb8DNEnpwaOv7jPUHgAAAPB/urq68pGPfCQLFy5sePacc87JTjvt1IJUAAAAAAD0t0cffTTf/e53c9NNN623NCBJ1qxZk9mzZ7/sdQAAAAAAAHpveH8HaJK++pMkf2IFAADAJu0rX/lKrrnmmobn/uRP/iSvfvWrW5AIAAAAAID+1NnZmblz5+a2227r0fnHHnsst912W/bbb78WJwMAAAAAANi0DJXigNKDM8340H9P7jPUKEsAAAAgSXL55ZfnH//xHxueO/TQQ/O+972vBYkAAAAAAOhPDz74YObMmZNnn322oblrrrkmO+20U8aNG9eiZAAAAAAAAJuetv4OAAAAAAx8jzzySM4+++yG57beeuucd955GTZsWAtSAQAAAADQH1auXJlf/vKX+e///u+GSwOSpLOzMx0dHanVd5oAAAAAAAA0y/D+DgAAAAAMbKtWrcqMGTOydOnShuba2tpy/vnnZ+utt25RMgAAAAAA+tp9992Xyy+/PCtWrNioPQ8//HDuuuuu7LXXXk1KBgAAAAAAsGlTHAAAAABs0Kc+9anceeedDc994AMfyCGHHNKCRAAAAAAA9LUVK1bkiiuuyPz585uyr5SSZ599tim7AAAAAAAAUBwAAAAAbMDFF1+c//7v/2547tWvfnXe9ra3tSARAAAAAAB9qdaae+65J1deeWVWrlzZlJ0TJkzIq171qmy77bZN2QcAAAAAAMDQKQ6oQ+w+AAAA0O9mz56db33rWw3P7bTTTvn4xz+eUkoLUgEAAAAA0FeWLVuWOXPmZMGCBU3Z19bWloMPPjiHHHJIhg0b1pSdAAAAAAAArDUUigP66lMIPu0AAADAJmPOnDk588wzG54bPXp0LrzwwowdO7YFqQAAAAAA6Au11txxxx2ZO3duVq1a1ZSd2267bdrb27P11ls3ZR8AAAAAAAAvNtiLA35riN0HAAAA+t2VV16ZM844I6tXr2549iMf+Uh22223FqQCAAAAAKAvLFmyJB0dHXnkkUeasm/YsGE5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nz6V7AQAAAAAAACq1a2LA4qieMPOzJVl+V+dcZ2eptb/bgAAAN3B+vXrc+6556a1tbWmuTPOOCPHH398nVIBAAAAANSuLMssWLAg11xzTZ566qlKdg4bNizNzc3Zd999K9kHAAAAAAAA1Ee3Lg5IckmScifmar0Bfmev09MoDgAAAHqcr3/961mwYEFNM8961rPynve8p06JAAAAAABqt3r16lx99dX505/+VMm+oigyYcKETJw4MY2NjZXsBAAAAAAAAOqnuxcHtCtqOLsrBQC1XKenUZwAAAD0OLfeemu++93v1jRTFEXOO++8DBw4sE6pAAAAAAA6rizL/PGPf8z111+f9evXV7Jz7733zvTp07PXXntVsg8AAAAAAACov55SHNDRm9p39cb/3nrzfG8uTAAAAHqotWvX5txzz01Z1vZPvde97nWZMGFCfUIBAAAAANRg5cqVmTlzZh5++OFK9jU2NmbixIk5+uij09DQUMlOAAAAAAAAoHP0lOKAjtzYXsVN/73xBvreWpYAAAD0cF/5ylfy0EMP1TQzevTovPOd76xTIgAAAACAjinLMnfccUduuummbNiwoZKd++67b5qbmzNs2LBK9gEAAAAAAACdq6cUBwAAAECH3XjjjfnRj35U00xDQ0POP//89O3bt06pAAAAAAB27Mknn8zMmTPz2GOPVbKvqakpxx13XI488sgURW/8nRoAAAAAAADQMygOAAAAoFdZtWpVzj///Jrn3vrWt2bcuHF1SAQAAAAAsGNtbW2ZN29ebr755rS2tlayc9SoUWlubs6QIUMq2QcAAAAAAAB0HcUBAAAA9Cpf/OIXs2jRoppmnvOc5+TNb35znRIBAAAAAGzf0qVLM3PmzCxZsqSSfX379s3kyZNz2GGHpSiKSnYCAAAAAAAAXUtxAAAAAL3GTTfdlJ/+9Kc1zfTp0ycXXHBBmpr8ExoAAAAA6Fytra2ZM2dO5s6dm7a2tkp2HnjggZk2bVr22GOPSvYBAAAAAAAAu4eectdD2cOuAwAAQMXWrVuXCy+8sOa5d77znTn44IPrkAgAAAAAYNsWL16clpaWPPHEE5Xs69evX0488cQccsghKYqikp0AAAAAAADA7qMnFAd01juZ3jEFAADoxr75zW/moYceqmnmqKOOyute97o6JQIAAAAA+GsbN27M7Nmzc9ttt6Us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oaH2j5OMHTs2Z5xxhtIAAAAAAAAAgC7S1NUBAAAA6J6+973v5Z577qlpZtq0aXn+859fp0QAAAAAwK4aPnx4jjnmmNx8880dOj9o0KBMmzYtBxxwQJ2TAQAAAAAAALA9igMAAACo2cKFC/PNb36zppmBAwfmYx/7WIqiqFMqAAAAAKAKEyZMyP33359ly5Zt99y4ceMyefLk9OnTp5OSAQAAAAAAALAtDV0dAAAAgO6lLMtcdNFFWb9+fU1z73rXu7LvvvvWKRUAAAAAUJXGxsZMnz59myWgQ4cOzcknn5ypU6cqDQAAAAAAAADYTTR1dYBdURTFJ3dmrizLCzrjOj1Nrf/dAACAnunnP/95brrppppmjjzyyJxxxhl1SgQAAAAAVG3EiBE56qijcuutt/75uaIoMn78+EyaNClNTd36IycAAAAAAAAAPU53fxf3vCTlTszVegP8zl6np1EcAAAAvdyyZcvyxS9+saaZxsbGnH322WloaKhTKgAAAACgHo499tg88MADWb58eYYNG5bp06dnn3326epYAAAAAAAAAGxFdy8OaFfUcHZXCgBquU5PozgBAADIF77whaxYsaKmmTe84Q059NBD65QIAAAAAKiXpqamNDc35+GHH84xxxyTxsbGro4EAAAAAAAAwDb0lOKAjt7Uvqs3/vfWm+d7c2ECAACw2bXXXptf/epXNc0ccMABeetb31qnRAAAAABAu7Isc9ddd2XvvffOiBEjKts7cuTIjBw5srJ9AAAAAAAAANRHTykO6MiN7VXc9N8bb6DvrWUJAADAFtauXZtPfepTNc+dffbZ6devXx0SAQAAAADtVqxYkZkzZ+aRRx7J8OHD8/KXvzyNjY1dHQsAAAAAAACATtRTigMAAACoo69//et59NFHa5o55ZRTMmnSpDolAgAAAADKssztt9+em266KRs3bkySLFu2LHPnzs2xxx7bxekAAAAAAAAA6EyKAwAAANiu+fPn5wc/+EFNM8OHD8/73//++gQCAAAAAPLEE09k5syZWbRo0V+9NmfOnIwePTrDhw/vgmQAAAAAAAAAdIWGrg4AAADA7qu1tTUzZsxIW1tbTXMf+tCHMmTIkDqlAgAAAIDeq62tLXPmzMkVV1yx1dKA9jMtLS01/1wPAAAAAAAAgO6rqasDAAAAsPv67//+79x99901zZx44ol54QtfWKdEAAAAANB7Pf7442lpacnSpUt3eHbJkiW57bbbcvTRR3dCMgAAAAAAAAC6Wk8pDih72HUAAAC63MMPP5xvfOMbNc0MGDAgZ511VoqiqFMqAAAAAOh9Wltbc8stt2Tu3Lkpy45/dGH27Nl59rOfnaFDh9YxHQAAAAAAAAC7g55QHNBZd6O46wUAAOg1yrLMRRddlHXr1tU09853vjMjR46sUyoAAAAA6H0WLVqUlpaWPPnkkzXPtra2pqWlJSeffLKyTwAAAAAAAIAerrsXB5zfw64DAACwW/jlL3+ZG264oaaZcePG5VWvelWdEgEAAABA77Jhw4bMnj07t99+e8qy3Ok9jz32WObPn58jjjiiwnQAAAAAAAAA7G66dXFAWZadckN/Z10HAABgd/DEE0/kX//1X2uaaWhoyDnnnJOGhoY6pQIAAACA3uPhhx/OrFmzsmLFikr23X777Tn88MP9/A4AAAAAAACgB+vWxQEAAABU74tf/GKWL19e08zrXve6jB07tk6JAAAAAKB3WL9+fW644Ybceeedle18znOekxNOOEFpAAAAAAAAAEAPpzgAAACAP7v++uvzi1/8oqaZ/fffP29729vqlAgAAAAAeocHH3wws2bNyurVqyvZN3jw4DQ3N2f//fevZB8AAAAAAAAAuzfFAQAAACRJnnrqqVx00UU1z5199tnp379/HRIBAAAAQM/31FNP5dprr829995byb6iKDJu3Lgcf/zx6dOnTyU7AQAAAAAAANj9KQ4AAAAgSfLNb34zjzzySE0zf/d3f5fjjz++TokAAAAAoOcqyzL3339/rrnmmqxdu7aSnXvuuWeam5uz3377VbIPAAAAAAAAgO5DcQAAAAD54x//mO9973s1zey5557553/+5zolAgAAAICea82aNbn66qvzwAMPVLKvKIocffTROfbYY9PY2FjJTgAAAAAAAAC6F8UBAAAAvVxra2tmzJiRtra2muY++MEPZs8996xPKAAAAADogcqyzD333JPrrrsu69atq2TnXnvtlebm5owYMaKSfQAAAAAAAAB0T4oDAAAAerkf/vCHufPOO2uamTJlSl7ykpfUKREAAAAA9DyrVq3KrFmzsnDhwkr2NTQ0ZOLEiTn66KPT2NhYyU4AAAAAAAAAui/FAQAAAL3YI488kn//93+vaaZ///4566yz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AACgcaWUnH322RkzZky/cwcffHAuvPDCHHHEESllMPuvAQAAAAAAAACAgQzH4oDf6+da34fpn0/y3YazbFIpZZck/z1bVxqwcUnApooCtrRIoK7P9FellL23IBsAANuIX/7yl3nsscdant9xxx3zzne+s8FEAAAAQDeMHz8+Z5xxxiavjRs3Lueee27OO++8jB8/vsvJAAAAAAAAAACALTEciwPOSf8PyZf11/++1rqqK4le678k2b1Pnnb0LQEoG30sTvLE+j83vp60Vh7QN8/4JP+5zXwAAGwjent7c9lll7V15n3ve58HBgAAAGCYOOKII7L//vu/6rXDDjssF154YSZNmpRStqT7GgAAAAAAAAAAGAzDqjiglLJnkkkbvhxg/FsNx9mkUsr+ST6a1h7i31jfwoBFST6f5B1J9ksypta6S631gFrrLkl2SHJykn+Z5Jd9zvUtHhjoXiXJH5ZSDtmCrAAADHFz587Ngw8+2PL8+PHj8573vKfBRAAAAEA3lVIybdq0jBo1KhMmTMj555+f17/+9Rk7duxgRwMAAAAAAAAAANo0crADdNgZ/Vzr+7D8w7XWG5oOsxn/PsnovPJgfiv6FgY8muRPk3y91tq72QO1rkhy6/qP/1VKOSzJf03ynrxSHrC5+28oGEjW/Wfk00k+02JWAAC2AbXWXHbZZW2dueCCC7Ljjjs2lAgAAABoRa01pbT6FtPAJk6cmPPPPz+77757Ro8e3bG9AAAAAAAAAABAd/UMdoAO6684IHnlgfjvdCHLa29eyk5JLs6rSwwG0rc04BtJDq+1zuyvNGCTS2p9sNb6viRvTvLcRrv7u3dJclEpZUw79wMAYGi76aabcuedd7Y8P3r06HzgAx9oMBEAAAAwkIULF+b73/9+VqxY0dG9++67r9IAAAAAAAAAAADYxg234oCTWpz7caMpNu+iJOPWf97Kr4LZ8OB+kvyXWutFtdZVWxOg1vqzrCtYeKzPPTalb75dkly4NfcFAGBoueyyy9qaf/vb357ddtutoTQAAABAf15++eX86le/ys9//vM899xzmTdv3mBHAgAAAAAAAAAAhpjhVhxwQjb9IHzf135ba53fpTwb+2g2/6D+xjaUBtQkf1tr/bNOhai1PpTkdUle6HOvgbyrU/cHAGBw3Xnnnbnhhhtanu/p6cmHPvShBhMBAAAA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4+mnn45Vq1YVpPm8vLw8Fi1aFG9961ujoqKiAAkBAAAAAAAAoO+pq6vL60bh9773vVFaWpphot7t1KlT8Za3vCU+85nPdNmZ586di4cffjj++Z//ucvO/MM//MN4+umnM73ZPR+bN2+ORYsWxZ/8yZ/k9aE9xbRs2bKYO3dubNy4scvOXLt2bdTW1saBAwe67MzXc+rUqfilX/qluOOOO/J6z2RWtm3blvkZra2t8bu/+7sxd+7cWLt2bebn/azTp0/Hb//2b8fdd98dx44d6/LzAQAACkVxAADQozQ2Nqaerays9AncQNF1dHTEN7/5zThy5EhB9l133XXxyCOPxNSpU/0eBwAAAAAAAABX4Otf/3pe8z//8z+fUZLe78yZM3H33XfHt771rS4/u6OjI371V381vvOd73T52d1Fe3t7/M//+T/jl3/5l7tNocHr+cEPfhB33313HD16tMvP3r59e9xzzz1x9uzZLj/7R9asWRNVVVXx2GOPFS1DV3vllVdi4cKF8elPfzo6OjqKmuV73/tezJkzJ1544YWi5gAAALhcigMAgB7j4sWLeTUIV1ZWZhcGIKWSkpKoqam54j39+/ePO++8M+67774YMmRIAZIBAAAAAAAAQN/2b//2b6lna2pqYtKkSRmm6b0uXLgQ999/f6xZs6ZoGS5evBi/9Eu/FAcPHixahu7gsccei4ceeija29uLHeU1rV27Nu6///64cOFC0TJs3LgxPvCBDxTl7McffzwWLlwYO3fuLMr5xbB+/fqYPXt2UX9/+Fm7du2KO++8MzZs2FDsKAAAAHkrK3YAAIC0tm3bFq2trannZ82alWEagPQmTZoUkyZNuuwf6k2aNCluv/32GDRoUIGTAQAAAAAAAEDf9PLLL8eLL76Yev5tb3tbhml6t/e85z3xgx/8INXssGHDorq6OiZPnhzXXHNNDB48OEpLS+PcuXOxb9++2LZtW6xZsyaam5vzznH48OF4//vfH0899VTe1/Ymzz77bHzoQx+KT3/608WO8lP2798fb37zm+PMmTOp5idNmhQzZsyISZMmxciRI2Pw4MFx8eLFOH36dOzatSsaGxtj69atkSRJ3lm+/OUvx4MPPhhvf/vb8772cv3N3/xNvO9974uOjo4uO7PYVq1aFffdd1+cPHmy2FFe5dixY/GGN7whli5dGlOnTi12HAAAgNQUBwAAPUZjY2Pq2UGDBsWNN96YXRiAPN1+++2xf//+aGlpSX3NwIEDY+HChT6xAAAAAAAAAAAKbOnSpXnN33HHHdkE6eX+5m/+Jr7yla9ccmbcuHHxK7/yK/FzP/dzUVVVFSUlJZecb21tjW984xvxuc99Lr797W/nlefpp5+O7373u3HXXXfldV0WcrlcTJkyJaqrq+OWW26Jm2++OcaPHx9XX311jBo1KgYMGBADBgyIlpaWOHXqVJw6dSpOnjwZmzZtinXr1sXatWujsbExLl68mPfZn/nMZ2LBggXxzne+M4OvLH/t7e3xi7/4i3HkyJFLzt1+++3xy7/8y/HAAw/EuHHjOt174MCBeOyxx+JTn/pU7N27N69M/+W//Jd405veFP3798/rusvxj//4j/He9773sq8vKSmJ2bNnx+233x5z5syJSZMmxYQJE2LIkCExePDg6OjoiObm5jh58mTs27cvdu3aFRs3boympqZYvnx5nDp1qoBfTTobNmyIu+++O3VRxM+6+eab46677oo5c+bEzTffHNdff32MGDEiBg4cGO3t7XH27NnYs2dPvPjii7F8+fL4xje+ES+99FJeZxw7dize/va3x+rVq6OiouKycgIAAHS13OU06AGQv1wuVxMRK37ysRUrVkRNTU2REkHP8//9f/9ffP/73081O2/evPjc5z6XcSKA/Lz00kupfx+76aabYsGCBV3yw0cAAAAAAACu3K5du1716ccDBw6MiRMnFicQAJf027/92/HZz3421eyQIUPixIkTUVbmM9siIn7wgx/EnXfe2enchAkT4vDhw6/68/FHRo0aFR/72Mfi13/91y/7/RHPP/98vOc974k9e/akvmbu3LmxatWqyzovjTlz5sS6dete87kpU6bEfffdF/fdd1/U1NTEsGHDruiso0ePxpe//OX427/929i8eXNe11511VWxefPmGD169BVluJR3vetd8aUvfanTualTp8aWLVte9/mFCxfG//pf/+uy33Pb0tISH/vYx+Iv/uIvor29PfV1n//85+O3fuu3LuvMtJYsWRL33HNPtLa25n3t5MmT4wMf+EC8853vjGuuueayzu/o6IjGxsZ45pln4umnn37ND3iqqKiIkydPXtb+13L48OGYO3du7N69O6/rRowYEb/xG78R73nPe+KWW27J+9xVq1bF//pf/yuefPLJyOc+mre85S3x9a9/Pe/zAACgr+ntr5HX19fHggULfvbhBUmS1Bcjz+u5dB0jAEA3kSRJNDU1pZ6fNWtWhmkALs+NN94Y11133SVnBg8eHPfdd1/ceeedSgMAAAAAAAAAICOvd2P3a7ntttuUBlyG3bt3v25pwAMPPBBbt26N3/qt37qi90fcc889sWbNmqiurk59zerVq2PFihWdDxbIhAkT4qMf/Whs3LgxtmzZEp/85Cfj3nvvveLSgIiI0aNHx4c+9KHYtGlTPP744zF27NjU1x45ciT+x//4H1ecoRBerzSgX79+8bnPfS7q6uqu6IO6+vfvHx//+MfjqaeeigEDBqS+7tOf/nReN5jna+/evfGOd7wj79KAcePGxT/8wz/Etm3b4vd+7/cuuzQgIqKkpCSqq6vjj/7oj6KhoSFeeOGF+PCHPxwjRoy47J2X0t7eHg899FBepQHl5eXx3//7f4+dO3fGJz7xicsqDYj44QdSfe1rX4u6urq8dvzbv/1bfPGLX7ysMwEAALqa4gAAoEfYs2dPHD9+PPV8ZWVldmEALlMul4tFixZFeXn5az4/derUeOSRR+L666/v4mQAAAAAAAAA0Hd0dHTk9SEm06ZNyzBN3/Pf//t/jyeffLJgn3Q/ZsyY+Na3vhWTJ09Ofc2jjz5akLMv5Q1veEM89dRTsX379vj4xz+e+ffRQw89FFu2bIlf+ZVfSX3NF7/4xbw/9b2rjBgxIpYsWRL/6T/9p8jlcgXZ+da3vjUee+yx1Pu2bdsWP/jBDwpy9s9KkiR+/dd/Pa/3RUZE/Oqv/mps2bIlfvmXfzlKS0sLnmv69Onxv//3/449e/bEZz/72U4/JCVfn/jEJ2LZsmWp56dOnRpr1qyJP/uzP4uKioqCZFi4cGGsXbs2HnzwwdTXfPjDH47Dhw8X5HwAAIAsKQ4AAHqEfH5QV1JSEtOnT88wDcDlGzJkSMybN++nHhs2bFi89a1vjUWLFkW/fv2KlAwAAAAAAAAA+obdu3fH+fPnU88rDiicj370o/Fnf/ZnBbsR/EdGjx4djz32WOobqZ9++um8P+U9rbvvvjvq6+vju9/9bjzwwAOZ3Nz9eoYPHx5f/vKX46Mf/Wiq+YsXL8YnPvGJjFPlb9iwYfGd73wn5s+fX/DdDz74YPzn//yfU8//y7/8S8EzRET83//7f+Pb3/526vmSkpL49Kc/HV/60pcKdgP9pQwePDg+8IEPxMsvvxyf+tSnCrJzy5Yt8Ud/9Eep5++6666or6+PWbNmFeT8nzRkyJD413/91/jlX/7lVPPHjx+Pj3/84wXPAQAAUGiKAwCAHiGf4oCbb745Bg0alGEagCszderUGDduXORyuZgxY0Y8/PDDcc011xQ7FgAAAAAAAAD0CXv27Mlr/tZbb80oSd/yyCOPZHrj7dy5c+Pd7353qtlTp07F9773vUxy/Pmf/3kmN7zn4+Mf/3i85z3vSTX7la98JVpaWjJOlF4ul4t//Md/jOrq6szO+NjHPhajRo1KNfvUU08V/PzTp0/HH/zBH6Sez+Vy8YUvfCE++MEPFjxLZ/r16xfvete7CrLrd3/3d1N/r91xxx3x7LPPZlqSUFpaGn//938fd911V6r5L3zhC7F///7M8gAAABSC4gAAoEdobGxMPZtFuyzQtyVJUtB9uVwuFi9eHPfff3/U1NREWVlZQfcDAAAAAAAAAK8v3+KAa6+9NqMkfcf48ePjb/7mbzI/56Mf/WiUlKR7i/ySJUsyTlNcn/nMZ+Kmm27qdO7kyZOZ3Bx/uT7wgQ/E2972tkzPqKioSH0T/sGDB2Pbtm0FPf8v//Iv49ixY6nn/+zP/ix+/dd/vaAZulpdXV08//zzqWYnT54cTz31VAwcODDjVBFlZWXx1a9+NcaMGdPp7IULF+KTn/xk5pkAAACuhLtTAIBu79SpU7Fr167U85WVlZllAfqec+fOxdKlS+OWW26JSZMmFWzvsGHDYtiwYQXbBwAAAAAAAFeivb092tvbix3jkkpKSgpSyt3W1hYdHR0FSJSd0tLSKC0tveI9Fy9eLHhReqH1pa+1rKws9Q3NZGvv3r15zY8dOzajJH3Hpz71qS55n8TEiRPj7rvvjm9961udzi5dujTzPMU0cODA+Mu//Mt4xzve0ens008/He985zu7INWljR07Nv78z/+8S856z3veE3/8x3+c6u8EP3rvUCGcPHkyPv3pT6eef+CBB+IjH/lIQc4upt///d9PNVdaWhr/8i//EhUVFRkn+g+jRo2Kz372s/HII490OvvlL385/uzP/izKy8u7IBkAAED+FAcAAN1eU1NTXvOzZs3KKAnQlyRJEtu2bYuVK1dGa2trHDlyJK655pro379/saMBAAAAAABAwTU2Nsa6deuKHeOSbrnllli8ePEV71m+fHnBPzm40GbPnh2zZ8++4j3f/va3875BuqvV1tbGlClTrnjPU089FSdOnChAouy86U1viuuuu67YMYiI/fv3p54dOnRoDBo0KMM0vV9lZWU89NBDXXbeQw89lKo4oKmpKZIkiVwu1wWpiuPBBx+MyZMnx/bt2y85973vfa9b/LP4yEc+EkOGDOmSs6655pqYP39+rFixotPZhoaGgp37xS9+Mc6dO5dqdvjw4fHoo48W/d/LlWpqakpd1PE7v/M7UV1dnXGiV3v44Ydj7ty5sXr16kvOHT58OJ599tlUhRwAAADFoLYUAOj2GhsbU8+OGzcurr766uzCAH3CmTNn4rnnnou6urpobW2NiIjm5uZUPygEAAAAAAAAALq3M2fOpJ696qqrMkzSN/ze7/1el974fPfdd6eaO3v2bLcvVymEn//5n+905tChQ7Fp06YuSPP6hg4dGu9973u79My03ytbt24t2JmPPvpo6tk/+ZM/iTFjxhTs7GL5f//v/6WaGzp0aHz0ox/NOM3r+8hHPpJq7sknn8w4CQAAwOVTHAAAdHtNTU2pZysrK7MLAvR6SZLExo0b41//9V9j3759r3r+pZdeij179hQhGQAAAAAAAABQKM3NzalnBw4cmGGS3m/o0KHx8MMPd+mZEydOTP3hM9u2bcs4TfG94Q1vSDWXzwf8ZOGRRx6JwYMHd+mZ8+bNSzVXqO+TNWvWpC4hGDduXPzmb/5mQc4tppaWlvjKV76SavZ973tfjBw5MuNEr+/+++9P9XvH888/H0mSdEEiAACA/CkOAAC6tdbW1ti8eXPq+VmzZmWYBujNTp48Gc8880ysWLEi2traXneurq4uWltbuzAZAAAAAAAAAFBI+RQH9O/fP8Mkvd9dd90VgwYN6vJzb7311lRz+/fvzzhJ8c2cOTPV3AsvvJBxkku7//77u/zMtN8nBw8eLMiN4s8++2zq2Q9+8IO94vefJUuWxKlTp1LNvuc978k4zaWVlZXFm9/85k7nDh8+XPSiDQAAgNejOAAA6Na2bNkSFy9eTD1fWVmZXRigV+ro6IjGxsb42te+FocOHep0/ty5c7Fq1aouSAYAAAAAAAAAZCGf4oABAwZkmKT3u+eee4py7k033ZRq7vDhwxknKb7Ro0fH4MGDO53btGlTF6R5baWlpXHXXXd1+bnXX399qpvz29vb49ixY1d83te//vVUcyUlJfErv/IrV3xed/Dcc8+lmqusrIxbbrkl4zSdu/vuu1PNrV69OuMkAAAAl0dxAADQrTU1NaWeHTJkSNxwww0ZpgF6m2PHjsVTTz0Vq1evjvb29tTXbdmypU80zgMAAAAAAABAb9TW1pZ6trS0NMMkvd/s2bOLcu7VV1+dau7o0aMZJ+kehg4d2unMvn37uiDJa7v55ptjyJAhXX5uLpeL0aNHp5q90u+VkydPpv6U+tra2hg/fvwVndddfOtb30o1d99992WcJJ20v2el/XcJAADQ1RQHAADdWj4vrs6cOTNKSvz1Buhce3t7rF27Np588snL/qFeXV1dXm8kAAAAAAAAAAC6hwEDBqSebW1tzTBJ7zd9+vSinJv2ZvDm5uaMk3QP/fv373TmwIEDXZDktc2YMaNoZ3fV98q6desiSZJUs/fee+8VndVdnDp1KrZt25Zqtra2NuM06dx0001RXl7e6dyGDRu6IA0AAED+yoodAADg9SRJEk1NTannKysrswsD9BqHDx+OJUuWxIkTJ65oz+nTp2PNmjVRU1NToGQAAAAAAAAAQFfIpzigpaUlwyS926hRo2LQoEFFOTvtv+Pu8O+3vb09Nm7cGJs2bYqXXnoptm/fHgcOHIijR4/GkSNH4ty5c9Ha2hqtra2ZfsjFkSNHoqOjoygf3nPdddd1+Zk/0lXfK+vWrUs9e9ddd13RWd1FQ0ND6rKE2bNnZ5wmnZKSkhg3bly88sorl5zbvXt3FyUCAADIj+IAAKDb2r17d5w6dSr1/KxZszJMA/R0bW1tsWbNmti4cWPqH0h15vz585EkSeRyuYLsAwAAAAAAAACyN3DgwNSzFy5cyDBJ7zZu3Liind2/f/9Uc8UqDmhqaopnn302nn/++Vi3bl2cP3++KDl+UkdHR5w/fz6GDBnS5Wf3he+VF154IdVcWVlZr3kvZENDQ6q5ESNGxNVXX51xmvRGjRrVaXHAwYMHo729PUpLS7soFQAAQDqKAwCAbquxsTH1bGlpaUybNi27MECPduDAgViyZEmcPn26IPsGDRoUCxcujIkTJxZkHwAAAAAAAADQdfIpDjh79myGSXq3QYMGFe3stB8CUagPn0jj8OHD8fd///fxhS98IbZv395l5+bjwoULRSkO6AvfK53diP4jN998c/Tr1++Kzuou0n6fT5gwIeMk+UnzZ0R7e3scOnQorrnmmi5IBAAAkJ7iAACg22pqako9O2XKlBgwYECGaYCeqLW1NVavXh2bN28u2M5bbrkl5s+fn7ptHAAAAAAAAADoXkaNGpV69vDhw5EkSeqbi/kP3s/1Q8eOHYs///M/j8997nNx4cKFYse5pGLl6wvfK3v27Ek1d+ONN2acpOvs3bs31VxjY2OP/D329OnTigMAAIBuR3EAANBtNTY2pp6dNWtWdkGAHmnPnj2xdOnSgjX/DxkyJGpra+Paa68tyD4AAAAAAADoTiorK2PGjBnFjnFJJSUlBdlz++23R01NTUF2ZaW0tLQge+6+++4u/TTty1Gor/Xtb397t/9ay8q8bbe7yOdn/62trXH8+PG8ygb4oZ54I3Ch/eM//mN88IMfjBMnThQ7SiptbW1FObcvfK/s27cv1dy4ceMyTtJ10hYH9FTNzc3FjgAAAPAqXoEEALql48ePp27YjfjhGxgAIiJaWlpixYoV8dJLLxVs57Rp02Lu3LlRXl5esJ0AAAAAAADQnZSWlhbsBu7uri/dvN2XfsbZl75Wrly+Hxpw4MABxQHk5cKFC/Hud787/vmf/7nYUegGWlpaorW1NdXs2LFjM07TdQ4fPlzsCJlSHAAAAHRHfefVbwCgR2lqasprftasWRklAXqSnTt3xrJlywr2Q5mKioqora3tVU3eAAAAAAAAANDXXXfddXnNb9++PaZPn55RGnqbkydPxpvf/Oaor68vdhS6iXzeyzR48OAMk3St3n5j/cWLF4sdAQAA4FUUBwAA3VJjY2Pq2WuvvVajN/Rxzc3NsWzZsti5c2dB9uVyuZg5c2bMnj27T33aCAAAAAAAAAD0BRMnTsxrfvPmzfHAAw9kE4Ze5cKFC3H//fcrDeCn5HMD/YABAzJM0rV6e3FAkiTFjgAAAPAq7oABALqlpqam1LOzZs3KMAnQnSVJEi+//HKsWLEiWlpaCrJz5MiRsXjx4rjqqqsKsg8AAAAAAAAA6F5GjRoV48ePj3379qWa37RpU8aJ6C3e9773xdKlSy/7+kGDBsWsWbNi6tSpMXny5JgwYUJcffXVcfXVV8ewYcNiyJAhMXjw4CgtLY2ysrIoLS1NtXfixImxe/fuy87FlWlra0s9m/bfaU/Q24sDAAAAuiPFAQBAt3PhwoXYunVr6vnKysrswgDd1tmzZ2Pp0qWxZ8+eguwrKSmJqqqqqKys7FU/gAMAAAAAAAAAXq26ujp1cUBjY2O2YegVnnjiifjyl7+c93WzZs2Kd77znXHPPfd430ovNWDAgNSzhfrwlO6gtLQ0Ojo6ih0DAACgT1EcAAB0O5s3b86rYXfWrFkZpgG6myRJYuvWrbFy5cq4ePFiQXZeddVVsXjx4hg5cmRB9gEAAAAAAAAA3dvs2bPj2WefTTW7efPmOHr0aIwePTrjVPRUra2t8Xu/93t5XXPPPffExz72sZg7d25Gqf5De3t75mfw+gYOHJh69sKFCxkm6VqDBg2KU6dOFTsGAABAn6I4AADodvJp6B42bFhMnDgxsyxA93L69Omoq6uL/fv3F2RfaWlpzJkzJ2bMmBElJSUF2QkAAAAAAAAAdH9z5sxJPZskSfzgBz+Ihx9+OMNE9GRf+MIX4pVXXkk1269fv/j85z8fv/Ebv5Fxqv/Q3NzcZWfxavkUB5w4cSLDJF1r4MCBqYoDbr/99li2bFkXJAIAAOj9FAcAAN1OU1NT6tlZs2a52Rf6gCRJYuPGjbFmzZpoa2sryM6xY8fG4sWLo6KioiD7AAAAAAAAAICeY/HixdGvX79obW1NNf/d735XcQCv66//+q9TzZWWlsYTTzwRb3nLWzJO9NPOnz/fpefx00pLS2PkyJFx/PjxTmcPHDjQBYm6RkVFRRw8eLDTOcUWAAAAheMuOwCgW+no6IgNGzaknp81a1aGaYDu4MSJE/HMM89EfX19QUoDysvL4/bbb4+3ve1tSgMAAAAAAAAAoI8aMmRI1NbWpp5/8skno729PcNE9FTr1q2LTZs2pZr9gz/4gy4vDTh9+rQbs7uB6667LtXc3r17M07SddJ+zWfPns04CQAAQN+hOAAA6FZ27twZZ86cST1fWVmZXRig6I4ePRpPPPFEHDp0qCD7xo8fHw8//HBMmzYtcrlcQXYCAAAAAAAAAD3TW9/61tSzhw4diu9973sZpqGn+uY3v5lq7tprr43/9t/+W8ZpXm3fvn1dfiavlvYm+rQlFD3BhAkTUs35HgUAACgcxQEAQLfS2NiYera8vDxuvfXW7MIARTdq1Ki4+uqrr3hP//79Y/HixfHmN785hg4dWoBkAAAAAAAAAEBP97a3vS2v+X/4h3/IKAk92ZIlS1LNve9974v+/ftnnObVtmzZ0uVn8mo33XRTqrkjR44U7ENWim3SpEmp5s6dOxfHjh3LOA0AAEDfoDgAAOhWmpqaUs9OnTo1+vXrl2EaoNhyuVzU1tZGaWnpZe+YMGFCPPzww3HLLbdELpcrYDoAAAAAAAAAoCe74YYbYvHixannv/rVr/pkbF5lw4YNqebuv//+jJO8tnzek0d2qqqqUs8uW7YswyRdJ5+vOe3/jwAAALg0xQEAQLfS2NiYeraysjKzHED3UVFREXPmzMn7ugEDBsRdd90V99xzTwwePDiDZAAAAAAAAABAT/e+970v9Wxra2t88pOfzDANPc3Zs2dTfTr8wIEDY8aMGV2Q6NWWLl1alHP5abNnz049+53vfCfDJF1n7ty5qWfXrFmTYRIAAIC+Q3EAANBtHDlyJPbv3596ftasWRmmAbqTGTNmxFVXXZV6fvLkyfHII4/E5MmTI5fLZZgMAAAAAAAAAOjJ3vGOd8To0aNTzz/66KNx4MCBDBPRk+zbty/V3KRJk4ryHpbz58/H8uXLu/xcXm3KlCkxfPjwVLNf//rXI0mSbAN1gdGjR8fkyZNTzX7729/OOA0AAEDfoDgAAOg2mpqa8pqfOXNmRkmA7qakpCQWL14cJSWX/k+YwYMHx7333ht33XVXDBw4sIvSAQAAAAAAAAA9Vf/+/eP9739/6vmzZ8/Ghz/84QwT0ZOcPXs21VxFRUXGSV7b008/Ha2trUU5m59WUlIS9957b6rZvXv3xg9+8INsA3WRN73pTanmlixZEidPnsw2DAAAQB+gOAAA6DbyKQ6YMGFCjBgxIsM0QHczcuTIqKqqet3nb7nllnj44YdjwoQJXZgKAAAAAID/n737Dq+qytc4/p70Qiihhxo6JKFLh4goRVBBCFgQdESxoKOOZex1HBR1LKNjAxTEBiqCAlKU3kJPAOmhhU6A9HruH854x1Fg7WTvc06S7+d5eO6d8O613hNicpKc9dsAAABAaffggw8qMjLSOP/ZZ5/pp59+crARSousrCyjXFFRkcNN/tjkyZO9si/+2KBBg4yz7777roNNPGfIkCFGufz8fE2dOtXhNgAAAABQ9jE4AAAA+IxNmzYZZ9u0aeNcEQA+q23btr/7RX1ERIQGDhyo+Ph4BQcHe6kZAAAAAAAAAAAAAAAorSpVqqS//vWvlq4ZNWqUTp486VAjZ2VkZGj27NnerlEmBAYGGuWOHz/ucJPf27x5sxYuXOjxfXF+AwcONH5904wZM7Rz506HGzmvV69eqlatmlH2n//8p9eGbAAAAABAWcHgAAAA4BOysrK0Y8cO43zbtm2dKwPAZ/n7+ys+Pl4ul0sul0sxMTEaNmyY6tSp4+1qAAAAAAAAAAAAAACgFLvnnntUr1494/yhQ4d0ww03lLpDrocPH1bPnj21aNEib1cpE8LDw41yR48e9fjHyrPPPiu32+3RPXFhVapU0bBhw4yyRUVFeuSRRxxu5LyAgADdeuutRtmdO3fqww8/dLgRAAAAAJRtDA4AAAA+ITk52dIvRhgcAJRf1atXV9euXXXVVVepe/fuxpPbAQAAAAAAAAAAAAAAzickJETvvfeepWsWLFigO+64o9Qczt64caO6dOmiTZs2ebtKmVGrVi2jXHZ2tlatWuVwm/83b948ffPNNx7bD+bGjh1rnJ05c6Zmz57tYBvPuPvuu+Xv72+UfeKJJ3T8+HGHGwEAAABA2cXgAAAA4BM2b95snK1SpYql6d4AvCcrK0srVqxQQUGBrevGxsYa/+IVAAAAAAAAAAAAAADAxIABAzRmzBhL13zwwQe69957HWpknzfeeENdunTRoUOHvF2lTKlevbrCw8ONst99953DbX5x6tQpS4fT4Vk9e/ZUp06djPO33nprqf/vtl69eho+fLhR9sSJExo1alSpGcgCAAAAAL6GwQEAAMAnWBkc0KZNG7lcLgfbACgpt9utHTt2aPr06dq6davWr1/v7UoAAAAAAAAAAAAAAAAX9dprr6lBgwaWrvnnP/+pkSNHKjs726FWxXfs2DENGjRI9913n/Ly8rxdp0xq06aNUe79999XWlqao10KCws1cuRIHThwwNF9UDLjx483zp44cUJDhgxRRkaGg42c9+KLLyo4ONgo+8MPP2jcuHEONwIAAACAsonBAQAAwOuKioq0ZcsW47zpL1oAeEdGRobmzp2rJUuWKDc3V5K0ZcsWnThxwsvNAAAAAAAAAAAAAAAALiwiIkJff/218V3k/2PatGnq0aOH9u3b51AzawoKCvT666+refPm+v77771dp0zr1q2bUe706dN69tlnHevhdrt1yy23aN68eY7t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aG9XKbbo6Gh98803euyxx7xdpcxxuVyaMmWKmjdv7u0qGjhwoD744ANv14AFNWvW1JIlSxQfH+/tKh717LPPauLEiQoJCfF2FQAAAAAoExgcAAAAvGrr1q3G2djYWAebADifo0eP6quvvtLmzZvldrtLvF5oaKguv/xytW/f3oZ2AAAAAAAAAAAAAAAAnhMeHq6PPvpIP/30U6l6PVO1atX097//Xdu2bdPgwYO9XafMioyM1MKFCxUdHe21DjfddJO++uorBQQEeK0DiicyMlKLFi3SI488IpfL5e06HvOnP/1JiYmJat26tberAAAAAECpx+AAAADgNUVFRdq+fbtxvjT9og0oC/Lz87VixQrNnj1bZ8+etWXNpk2bKiEhQY0aNSpXv9wCAAAAAAAAAAAAAABly6WXXqpNmzbpzTffVK1atbxd57xq1Kihl156SSkpKfrrX//KXb09oG7dulq1apU6derk0X39/Pz04osvasqUKQoODvbo3rCPv7+/xo8fr4ULF6pFixberuMxsbGxWrt2rZ555hmFh4d7u84fqlOnju677z5v1wAAAACAC2JwAAAA8Jp9+/YpKyvLOM/gAMBzDh8+rBkzZmjr1q1yu90lXi88PFz9+/dX7969+QU0AAAAAAAAAAAAAAAoE/z9/XXPPfdo//79mjx5suLi4rxd6Vc9e/bUtGnTdPDgQT388MM+exC3rKpZs6aWLl2qBx98UH5+zr9k/5JLLtHatWv16KOPOr4XPOOyyy7Tli1b9NJLL6lq1ape6eDv769rrrlGX3zxhUf2Cw4O1tNPP61du3ZpzJgxCgoK8si+FxIeHq4RI0Zo9uzZ2r9/v5544glvVwIAAACAC2JwAAAA8JqtW7caZ4ODg9WoUSMH2wCQpNzcXC1ZskTff/+90tPTbVmzZcuWSkhIUP369W1ZDwAAAAAAAAAAAAAAwJcEBQXp5ptv1pYtW7R48WLdddddql27tsd7tG3bVs8//7x+/vlnLV26VDfccINPHLwtr4KDgzVhwgStW7dOffv2dWSP2NhYTZw4UatXr1aHDh0c2QPeExgYqIcfflgHDhzQW2+9pSZNmnhk38aNG+u5557TgQMHNHPmTPXr188j+/5H7dq19cEHH+jgwYN6/vnnVbduXY/uX6NGDd1000368ssvdfz4cX3++ecaNGiQ/P39PdoD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Gan77rtPDz74oEJDQ73W4z9mzJihhISEC2YSEhL05ZdfeqiR7ynrPyMvLYMD/LxdAAAAlC6bN282zrpcLsXFxTnYBnZwu93atWuXpk+f/uvQAEk6e/as1q9f78VmAAAAAAAAAAAAAAAAQPlUUFCgBQsWaOzYsapbt67uuOMOrx7YsNOuXbt06623qkmTJnrzzTc9PjRAkvbu3avHH39cDRo00JNPPqlTp055vINTjh49qscff1z169fXuHHjvDo0QJL27Nmjv/3tb2rcuLEGDBig77//3qt9fNHjjz9+waEBkvTYY4+ViqEBkjRx4sRiXZeXl6dPPvnE5jYoa9xut7777jv17t1bHTp00JQpU7w2NED65WDp7Nmzde2116p+/fp68skndezYMa/1AXzNl19+qRYtWujVV191bGiAJB07dky33367unTp4vXnPqXFqVOndMcdd6ht27b69NNPPTY0QPplmMQ//vEPNW/eXC+++KJyc3M9tvcfycvL0/r16/X+++/r9ttvV4cOHRQREaFLLrlEd95556+DuOwYGuDLjh07ptdee02tW7dW69at9cILL3j9e9DTp0/rqaeeUkxMjE98HzFs2DC1b9/+gpnp06dr2bJlHmoE/DEGBwAAAEu2bNlinG3cuHGp+UF1eZWZmakffvhBP/300x/+MGbLli06ceKEF5oBAAAAAAAAAAAAAAAAkKTs7Gy99957iomJ0b333qu0tDRvVyqWrKwsPfTQQ2rVqpUmTZrkEwdvzp49qxdeeEGNGzfWe++9J7fb7e1KxZabm/vrAf0XX3xRp0+f9nal3ygqKtK8efM0aNAgdejQQd9++22pfn/bJTk5WR999NEFM9WrV9dtt93mmUIldPLkSc2ePbvY10+ePNnGNihr1q9fr+7du+uqq67S4sWLvV3nd44cOaIXXnhB0dHReuCBB3T06FFvVwK8Jj8/X+PGjdOIESOUmprqsX3Xrl2rrl276uOPP/bYnqXRwoULFRcXp/fee09FRUVe65GRkaHHH39cXbp00c8//+zx/efOnauOHTsqIiJCHTt21NixY/XBBx9ow4YNPvG9iictWLBAdevW1V/+8hclJSV5u87v7Nu3T4MGDdI999yjvLw8r3b561//etHMww8/7IEmwPkxOAAAAFiyefNm42ybNm0cbIKScLvd2r59u6ZPn64D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fvBtL730ktF/E//x0EMPqUmTJg42AmDFnDlzjLPXX3+9g01+LzIyUv379zfKZmdn66effnK4kffk5+cb5SpXruyV4V41atQwzjoxqAulR9OmTeVyuYyyhYWFlgaw2alnz55GQzhmzpxpyw1FgQthcAAAALigpKQk42yVKlVUr149B9uUHxkZGZo3b54WL16s3NzcEq/n5+enDh06aMiQIapevboNDQEAAAAAAAAAAAAAAAB4ipXX/GRnZzt6EOHMmTP6/PPPjfOVKlXSs88+61gfO7lcLr322muWrnn33Xdt7TBx4kTjg16S9MQTT6hatWq2doC9PvvsM6Pc0KFDHW5in4kTJxrlateurcsvv/y8f3++oQL/69SpU5o5c6ZRFr4tMzNTU6dONc7XrFlTjz32mIONAFi1YMEC4+w111zjYJM/dvXVVxtnrTyW0qZy5cpGudDQUGeLnEd4eLhxNjIy0sEm8HUhISGqUqWKcT4jI8PBNufn5+enwYMHXzSXkZGhWbNmOV8I5RqDAwAAwAXt3bvXONumTRvjSV74Y263W9u2bdP06dN18OBBW9asXr26rr32WnXo0EH+/v62rAkAAAAAAAAAAAAAAADAc6pWrWopn5WV5VATadq0aZbuFD127NhSdbA9Pj5e3bp1M86vXr1aW7dutWXvoqIiffjhh8b5yMhIjR071pa94Yz09HT9+OOPF81VqVJF7dq180CjksvJyTEeHjJy5MgLvm6xdevWatu2rdFapsMK4Ns+//xznTt3zjj/5z//2WuHWgH83pEjR5ScnGyUbdy4sRo2bOhsoT9woYE1/2v+/PkONvEu0+8fTp8+7XCTP3bixAnjrNXvhVD2hIWFGWfdbreDTS7M9PPPN99843ATlHcMDgAAABeUmppqnG3durWDTcqHHTt2aPny5ZYmRp+Pv7+/OnfurGuuuYYpewAAAAAAAAAAAAAAAEApZvX1P9nZ2Q41sXZ4NyAgQOPGjXOsi1Puu+8+S3krh/0vZN68edq/f79x/u6777Z0t1Z43oIFC4xeDxgfHy8/v9JxvOOrr77SmTNnjLKjR4+2JSNJCxcutO2GTPCe9957zzgbERGhO++808E2AKz66aefjLNWDvDbqWHDhmrcuLFRdseOHTpy5IjDjbyjevXqRrnc3Fylp6c73Ob3rAwOqFGjhoNNUBpY+Rit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1re+1fLfV5dE5513Xktx//RP/zSu7xOdZXAA414p5c1Jzkh7X3x/oplJziylHN6h/XuilLJykouS7N7BNC9J8qtSSv+OqQTG7Oabb87pp5+eG264IcnQEIFuT88FAAAAAAAAAAAYFOuvv34OPvjgluO/9KUv5Y477uhILbvsskte97rXjeias846K0cccURH6hmpxx9/PHvvvXeuvvrqEV134oknduUU9k9/+tNZddVVW45/7LHHsueee+b888/vYFVjd99992WPPfbIkUce2fIps4NoxowZ2WGH1s61+8UvftHZYhY577zzcvPNN7cUu8wyy2TPPffscEVjd+CBB2bChNZejTnttNPaMqhi8uTJec1rXtNy/DnnnJMf/vCHY847FrNmzcoPfvCDluMPPvjgjr/M9oxnPCPvf//7R3TND37wg+y///6ZP39+h6pqj9NOOy1bbrnliP98gUGx3HLL5Z//+Z9bjn/729/e0f9u//jHP+bEE09sOf7f//3fO1ZLkqy33noppbT0dcghh7Q1dyllRINfzj///Hzve99raw2tOOGEE0b0d5RB6EmWJB/4wAdy3HHHjeiaF7/4xTnjjDMyefLkDlU1GFodHPDiF7+4w5UwnhkcwLhWSjk4yaeSlE6nSvLfpZTWnw70sVLKskl+nORpXUi3WZKfLMoJLEEeffTR/PSnP81Pf/rTf3gIe9NNN7X8YBoAAAAAAAAAAGC8Oeqoo1p+IePxxx/Phz70oY7VcsIJJ2TNNdcc0TWf/OQn88Y3vjELFy7sUFXNHnzwwbzoRS/Kz372sxFdt+eee+aAAw7oUFX/24orrpgvfOELI7pmzpw52X333XPaaad1qKqx+elPf5pnPOMZmTVrVq9L6YpWXwhq9QWjsTrppJNajt1rr70G4mTftdZaKzvuuGNLsQ8++GDOOOOMtuQ94ogjMnXq1JbjDz300Nxzzz1tyT1S99xzT1772te2HD9t2rT867/+a+cKeoJ3vetd2WabbUZ0zdlnn53dd989999/f4eqGr2HHnoor33ta3PAAQfkwQcf7HU50FFvf/vbW+5Hr7nmmhGfXN6qhQsX5o1vfGPmzp3bUvzmm2+ePfbYoyO19Iv99ttvRPGHH354/vznP3eomn905ZVXjvil9JH+mhi9j370ozn66KNHdM2uu+6as846K1OmTOlQVYNhwYIFLQ1xK6Vk9907eZYz453BAYxbpZRtk3wxrQ0NuCjJvyTZOskKSSYv+uezkrw1ySWtpEzyxVLKyP5W259OTrJVC3EPJPlskpcmWTvJtCTTk6yTZM8kn08yu4V9tkrylVHUCfShWmtuuOGGnH766cMOB7jwwgvz+OOPd7EyAAAAAAAAAACAwbD++uuP6LTrk046KbfddltHalluueVy5plnjugF2iT5whe+kL333rsnL1bedttt2WmnnUZ8yvtTn/rUnHzyyR2paXH23HPPvOtd7xrRNXPmzMkBBxyQI488MvPmzetQZSNzxx13ZP/998+uu+6au+66q9fldE0/DQ6YPXt2zjrrrJbjX/WqV3WwmvYaSa0jGZ4wnDXXXDOHHXZYy/H33HNPdt9998ye3crH59tn9uzZ2X333XPvvfe2fM3hhx+e1VdfvYNV/X8TJ07Mt7/97ay66qojuu7cc8/NNttskyuuuKIzhY3C1772tWy00Ub5yle8+sD4sNZaa+WQQw5pOf7oo49u6YXakfrgBz+Yn//85y3Hv+c970kpnT5/trde9KIXjWiw15133pl99933Hw6E7IS77rore+2114hy7bDDDtlwww07WBV/8/GPf3zEf/fYZZddcvbZZ4/474NLossvv7ylXm/LLbfMaqut1oWKGK8MDmBcKqUsk+S0DA0AGM4NSV5Ya31+rfXTtdbf1lr/Wmudv+ifl9VaP1VrfU6S3ZLc2LDflCTfWpR/IJVS3prk5Q1hNcknkqxfaz281npOrfWOWutjtdZHa62311q/X2s9LMn6ST7VQupXlFLeMqbigZ57+OGH86Mf/SjnnXde41CARx99NL/+9a+7VBkAAAAAAAAAAMBgee9739vyKa9z584d8ameI/HsZz87n/vc50Z83dlnn50tt9wyF198cQeqenLf/va3s8UWW+S3v/3tiK6bOXNmzj777Cy//PIdqmzxPvzhD2fvvfce8XUf+9jHsvXWW+eiiy7qQFWtefDBB3Pcccdlk002yemnn96zOnpl4403zlOf+tTGuOuuu67jAxW+8Y1vtPyS3pprrpkXvOAFHa2nnfbZZ58stdRSLcX+8pe/zI03Nn3svzXvec97RvR7wm9/+9vssssuuf3229uSv8ntt9+enXfeeUS/36244oojfmFwrNZdd91873vfy7Rp00Z03U033ZRtttkm73rXu7rysuvi/OpXv8r222+f17zmNbn77rt7Vgf0wnHHHZdll122pdgFCxbkFa94Ra688sq25f/yl7+cY489tuX47bbbLgcccEDb8veryZMn54gjjhjRNb/85S+z5557dnSo16233pqdd945N91004iuO/LIIztUEU/06U9/Om9/+9tHdM1OO+00qj/Dl1StDgPbY489OlwJ453BAYxXH8jQC+vDOTfJNrXWn7WyYa31J0melaTpd/j1kxzTyp79ppSyZpIPN4TNTbJ3rfWIWusDTXsuGsDw1iT7JmkaafrhUsoaLRUL9J1rr7023/72t0f0sPP666/v2sNRAAAAAAAAAACAQbLeeuvl4IMPbjn+5JNPzs0339yxeg455JARv2iSJDfffHO22267HHbYYR194fIPf/hDXv7yl2e//fbLAw88MKJrJ06cmK997WvZbLPNOlNcg1JKvva1r2Xbbbcd8bVXX311tttuuxx00EG56qqrOlDdk7vnnnvy7ne/O+uss07e97735ZFHHula7n6z//77txR3zjnndLSOk046qeXYAw88MBMmDM7rJssss0z23HPPlmJrrW07EX6VVVbJiSeeOKJrLrvssjzrWc/Kt7/97bbUsDjf/va386xnPSuXX375iK771Kc+lZVWWqlDVS3etttum1NOOWXE/97Nnz8/H/3oR7Ppppvmc5/7XB577LEOVfiPZs2ale233z7bbbddLrzwwq7lhX6yyiqr5IMf/GDL8ffff39e+MIX5vzzzx9z7o9//ON5wxvekFprS/ETJ07Mf//3f48576B44xvfmNVXX31E15x77rl57nOfmyuuuKLt9cyaNSvbbrtt/vCHP4zouuc+97l58Ytf3PZ6+N+++MUv5i1vGdl5v9tvv33OOeecTJ8+vUNVDZ5W+/lW/34AozU4f5ODNimlPC3JmxvCfp3kZbXW2SPZe9GL8i9NcmlD6FtKKZuOZO8+8R9JZgyzXpMcUGv9zkg3rrWekeSghrCZi2oABsxf//rXXHDBBZk3r2k+yD+64IILMnfu3A5UBQAAAAAAAAAAMNiOOuqoTJ48uaXYefPm5bjjjutoPSeccELe9KY3jfi6BQsW5POf/3ye+tSn5h3veEeuv/76ttV06aWX5tBDD83Tn/70fPe73x3x9RMnTsxXv/rVvPzlL29bTaMxbdq0/PjHP85zn/vcEV9ba803vvGNbLHFFtljjz1y5plnduR07kcffTSnn356Xvayl2WdddbJ8ccfn9mzR/Rx7CVSqycbn3HGGR2r4Xe/+11+85vftBz/qle9qmO1dMpIaj7llFOycOHCtuR99atf3fLQgr+59957s99++2XnnXfOT37yk7bU8Tc//elPs/POO2e//fbLvffeO6Jr99prr56exL3vvvvmq1/9aiZNmjTia2+99da86U1vyvrrr59jjjlmxC+mturaa6/N+973vjzlKU/JHnvsYWAAJDn88MNH1J/cd9992XnnnXPMMceMqh+5/fbbs9dee+Xtb3/7iH4vf8c73pEttthixPkG1cyZM0c83CZJfv/732fbbbfN2972ttxzzz1jruMPf/hD9t133+yxxx4j/nNp0qRJ+dznPjfmGpqst956KaWM+atVt956a1vy7bTTTm27Bx/60IdaHsLxNxdccEFmzpzZll9LO78OOeSQtt2Xkbj77rvzq1/9qjHu6U9/es8G0jF+GBzAeHR0kuH+Jnl/kv1rrXNGs3mt9ZEk+yV5YJiwSUneP5r9e2XRwIVXNoT9Z631rNHmqLV+O8knGsIOKKVsMtocQG+M5cX/hx9+OJde2jSPBQAAAAAAAAAAYPxZb731cvDBB7cc/9WvfjU33nhjx+oppeTTn/50Dj/88FFd/8gjj+S//uu/svHGG2fHHXfMxz72sVx++eUjeoll3rx5ufDCC3P00Udnyy23zLOf/eycfPLJmT9//ojr+dvQgAMPPHDE13bCcsst9/eXgkej1ppZs2Zln332ySqrrJL9998/n/70p3P55ZdnwYIFI97v8ccfz8UXX5yPfvSjeclLXvL3Pb/3ve85MOgJNttsszzjGc9ojDvvvPPy17/+tSM1nHTSSS3HPuMZz2ip3n7zohe9KCuttFJLsXfccUdbX9j/6le/mqc97Wkjvu68887Lbrvtlo022ijvfve7c+GFF474JdrHHnssv/rVr/Ke97wnm2yySXbdddecd955I67l6U9/ek4++eQRX9duBx10UL797W9n6tSpo7r+7rvvzrHHHptNN900W2yxRd71rnflu9/9bv785z+Par8777wz3/rWt3L44Ydns802y9Oe9rQcd9xxuemmm0a1HyyJJk6cmNNOOy0rrLBCy9csWLAgxx57bDbccMOccMIJ+dOf/tR4zeWXX563vvWt2WijjfKd74zsvNPnP//5+dCHPjSia5YE++67b/bdd98RXzdv3rx88pOfzDrrrJMDDjgg3/nOd/LQQw+1fP0999yTU045Jbvuumue9rSnjXo40vvf//6B7EkYn84666yWhpkcdFDTucswdiMfwwUDrJSyQZK9G8LeW2u9fSx5aq23llKOTjLcaKZ9SynvrrXeMpZcXfTOJMONP7o1yfvakOeoJPskWWsx62VRLa9rQy5gQNxwww155jOfmWnTpvW6FAAAAAAAAAAAgL5y1FFH5ZRTTsm8efMaY+fPn58PfOADOeWUUzpWz9+GByyzzDI5/vjjR73P+eefn/PPPz/J0ImpG220UTbeeOOsvvrqmTlzZmbOnJlaax5++OE8/PDDue2223LdddflhhtuyOOPPz7mX8f06dPz1a9+NXvv3fTR4+6aMWNGZs2alUMPPTSnnXbaqPd5+OGHc/rpp+f0009Pkiy11FJZd911s/7662fdddfNsssum+nTp2f69Ol/j3/kkUcye/bs3HzzzfnjH/+Y22+/vW2nti/pDj300BxxxBHDxsybNy9nn312Dj300Lbmnjt3bk499dSW41/1qle1NX+3TJ48Ofvtt18+85nPtBR/0kkn5UUvelFbci+77LKZNWtWnvOc54zqdOYbbrghxx9/fI4//vhMmjQpm266adZff/2svfbaWXHFFTNt2rRMmTIlc+fOzaOPPpr7778/t99+e26++eb8/ve/H9VglCdaffXVM2vWrCy99NJj2qddXv7yl2fWrFnZf//985e//GXU+/zud7/L7373u7//36uuumrWW2+9rL/++ll99dX//nvcUkstlUcffTSPPPJIHn744dx999354x//mD/+8Y8jelEWxrN11lknX/va1/LSl750RL3BnXfemXe+85058sgjs+mmm+ZZz3pW1lxzzSy33HKZN29eHnjggdxwww35zW9+kzvuuGNUta288so57bTTMmnS+HyN8qSTTsq1116bq6++esTXzp07N6eddlpOO+20TJw4MRtvvHE222yzrLXWWllxxRWz1FJLpdaaRx99NPfee29uu+22/O53v8stt9wy5rpf9rKX5b3vfe+Y94FuOfPMMxtjJk6cmFe/+tVdqIbxbnz+icd49uYkE4dZvyHJF9qU6zNJ3pZkg8WsT1xUzzvblK9jSikrJmkalfr+WutjY81Va52zaOjCl4cJe1Up5Z211vvHmg/of2uttVa23357QwMAAAAAAAAAAACexHrrrZdDDjkkX/ziF1uKP/XUU/Pe9743G264YUfr+shHPpKtttoqr33ta/PII4+Maa+HH344l19+eS6//PI2VTe8DTbYIN/5znf69oTTpZZaKt/85jez3Xbb5R3veEdbBiU89thjue6663Lddde1ocKRWWqppfrmheVOefWrX50jjzwyc+fOHTbujDPOaPvggO9+97u57777WoqdMGFCDjyw6WPj/etVr3pVy4MDvvvd7+Yvf/lLVlxxxbbkXm+99fKLX/wiu+66a26/ffTnGM6fPz9XXXVVrrrqqrbU1WS99dbLj3/846y99tpdydeqXXbZJb/97W+z//7759e//nVb9rznnntyzz335JJLLmnLfiOxyiqrdD0ndNuLX/zifP7zn88b3vCG1FpHdO3ChQtzzTXX5JprrmlrTcstt1x+/OMfZ621Fne26ZJv5syZmTVrVl7wghfkpptuGvU+CxYsyO9///v8/ve/b2N1T26HHXbI17/+9ZQy3Pm30D/uu+++/PKXv2yMe/GLX5w11lijCxUx3k3odQHQLaWUiUkOaAj7eK11QTvy1VrnJ/lkQ9iBpZRB+O9w/yRThlm/M8k325jv1CTDjVqckmTfNuYD+tDUqVOz4447Zvfdd1/ifyAAAAAAAAAAAAAwFkcddVQmT57cUuyCBQty7LHHdriiIfvtt19+/etfZ9NNN+1KvnZ4yUtekv/5n//p26EBT/TmN785F110UTbaaKNelzJqr3jFK3LttdfmKU95Sq9L6agVV1wxr3jFKxrjzj333MyePbutuU866aSWY3faaaesueaabc3fTc997nNb/ndp7ty5+frXv97W/JtsskkuuuiibL755m3dt1Oe8Yxn5Fe/+lXf/h6y9tpr5/zzz8873/nOTJw43PmR/WuVVVbJl7/85Xz+85/vdSnQFa9//evzqU99qtdlJEmWXnrp/OhHP8pWW23V61J6bp111skvf/nLbLzxxr0updELX/jC/PCHP8zMmTN7XQq07Dvf+U4WLGh+JfX1r399F6oBgwMYX3ZOsvow648lae/f/JNTkgw3FnKNJDu1OWcnHNSwfnKtdV67ktVaH8/QvRtOU03AAFt33XWzzz77ZOONNzYlDgAAAAAAAAAAoMG66647olPKv/nNb+YPf/hDByv6/57+9KfniiuuyDHHHJOpU6d2JedorLLKKjn11FNzzjnnZIUVVuh1OS3beuutc9VVV+UjH/lIZsyY0etyWvbsZz875557bs4666yst956vS6nK9785jc3xsydOzenn35623Lecccd+clPftJy/Ktf/eq25e6Vgw5q/WPmX/nKV9qef6211soll1ySN77xjW3fu50OP/zwXHzxxX1/6u2kSZPysY99LL/5zW+y3Xbb9bqcls2cOTNHHnlkrr/++rz2ta/1eWjGlTe/+c355je/menTp/eshvXXXz8XXnhhnv3sZ/eshn6z1lpr5dJLL21pkFGvvOMd78gPf/jDnv67A6PRyjCqddddNy95yUu6UA0YHMD48tKG9Vm11ofambDW+kCSHzaENdXVU6WUFZM8tyHstA6k/mbD+vNLKYPzVBZoybRp07LLLrtk1113HagfYAAAAAAAAAAAAPTaUUcdlcmTJ7cUu3Dhwhx77LEdruj/mzJlSo4++uj87ne/y4tf/OKu5W3FlClTcthhh+UPf/hDDjzwwF6XMypTpkzJu971rlx33XV5zWtek0mTJvW6pMV6/vOfnx/96Ee5+OKLs8suu/S6nK7afvvts+WWWzbGtfNk8pNPPjkLFy5sKXbatGnZe++925a7V171qle1HHvllVfmsssua3sN06dPz+c+97l8//vfz1Oe8pS27z8WT3nKUzJr1qx8+tOfzrRp03pdTsu23HLLXHDBBfn617/ed/f0iZZZZpm8+93vzi233JLjjz8+yy67bK9Lgp545StfmYsuuigbbLBB13Pvuuuu+c1vfpNnPOMZXc/d75ZZZpmcddZZ+exnP5vll1++1+X83frrr59Zs2blhBNO6Os+Fp7MH/7wh5x//vmNcW9+85szceLELlQEBgcwvrywYX1Wh/I27ftPHcrbLrskGW683W211qvbnbTWekWSO4cJmZBk53bnBXrnqU99avbdd9885SlPMVUTAAAAAAAAAABghNZZZ50ceuihLceffvrpueaaazpY0T/aaKONMmvWrFx22WXZe++9M2FC7z7OPm3atLzlLW/JjTfe2HcvT43WmmuumVNOOSU33XRT/u3f/q1vXlidMWNGXv/61+eyyy7LhRdemN12263XJfXMW97ylsaYyy67rC0vs9dac/LJJ7ccv+eee2bppZcec95e23DDDbPtttu2HH/SSSd1rJY99tgj1157bU488cSsssoqHcvTilVWWSUnnnhirr322r4b4DISBx10UK6//vqceeaZed7zntfrcv5uq622yuc+97nceeed+fCHP5wVV1yx1yVBz22xxRa56qqrctRRR2Xq1Kkdz7faaqvlq1/9an784x9nhRWcUzqcww47LNddd10OP/zwLLXUUj2rY4UVVsixxx6ba665ZqD/bGJ8+8IXvtAYM3369Lzuda/rQjUwxAgWxoVSyupJNm0IO7dD6X/asL5ZKWW1WuvdHco/Vk2jPDt13/6298HDrL8wyRkdzA90wYwZM7Lddttl3XXX7XUpAAAAAAAAAAAAA+2oo47KySefnLlz5zbGLly4MMccc0y+/e1vd6Gy/23rrbfOGWeckRtuuCFf/epX881vfjM33nhjV3Jvs802OfDAA3PQQQdl5ZVX7krOblt77bXzH//xH3n/+9+fM844I2eccUbOPffclv69aJellloqu+22W/bee++87GUvyzLLLNO13P3soIMOynvf+97cddddw8Z9/vOfb+klpOHcf//9edWrXtVy/Mte9rIx5esnxx9/fH75y1+2FNvpoSGTJ0/OW9/61hx22GE544wz8rnPfS4XXHBBR3M+0XbbbZc3velN2WeffTJlypSu5e2kCRMmZK+99spee+2Vyy+/PN/85jdz5pln5uabb+5qHRtttFH23nvv7LPPPtl66627mhsGxfTp03PcccflkEMOyUc/+tGceuqpefTRR9uaY7XVVsthhx2WI444Qr8xAiuvvHI+/elP5/3vf38++clP5mtf+1puv/32ruTebLPN8trXvjZveMMbMnPmzK7khE547LHHcsoppzTGvfa1rzXQhK4qtdZe1wAdV0p5WZKzhwm5vda6Tgfz/ynJ6sOE7Flr/X6n8o9FKeW3SbYcJuR1tdaOjFkspbwhyeeHCbm81vrMTuTuhFLKc5Nc9MTvXXTRRXnuc5/bo4pY0jz3uc/NxRdf3OsyntT666+fd73rXf/w/U022STPfvazuzJBEAAAAAAAAAA66ZZbbvmHD79PmzYt6623Xm8KAoABc8kll+Scc87JBRdckEsvvbRtL5Utt9xyef7zn58ddtghe+21V5761Ke2Zd9BM3v27Jxzzjn5xS9+kYsvvji///3vs3DhwrbtP2nSpGy99dbZcccds+OOO2annXbKjBkz2rb/kuRjH/tYjjzyyGFjZs6cmT/96U9Zeumlu1QV3XT77bdn1qxZf/8978EHH2zb3ksvvXS233777LHHHnnJS16Sddbp2GsSfeeyyy7LD37wg1x00UW59NJLc//997d1/1VXXTU77LBDdtxxx+y8887ZdNOmsy2B/+svf/lLTjrppJx99tm55JJLsmDBglHtM2PGjLzgBS/I/vvvn/3222+JGYzSS7XWXHDBBfnud7+bn//857nyyivTrvdOJ0+enG222Sa77LJL9t5772yxxRZt2Rd67etf/3pe/epXDxszadKk3HDDDePmGfGS/oz817/+dZ73vOf9328/r9b6617UszgGBzAulFKOTfL+YUK+W2t9eQfzfy/JS4cJObrW+oFO5R+tUsqUJA8nmTxM2Fa11is6lH/rJJcNEzI3ycxa67xO5G83gwPotEEaHLD00ktnhx12yJprrtnDqgAAAAAAAACgfZb0D0UCQDfNmzcvl112Wa655prceOONuemmm3LzzTfn/vvvzyOPPJJHHnkkc+bMSSklM2bM+PvXyiuvnA022CAbbLBBnvKUp2TLLbfMZpttlgkTJvT6l9R3HnroofzmN7/J9ddfn1tuuSW33HJLbr311tx3332ZM2dO5syZk0cffTSPP/54pkyZkmnTpmXatGlZfvnls/rqq2eNNdbI2muvnac97WnZfPPNs8kmmzhEqEUPPvhg1l133TzwwAPDxn32s5/NYYcd1p2i6Jlaa/74xz/m8ssvz9VXX53bb789d9xxR+68887Mnj07jz76aB577LH/9d/iUkstlWWXXTZrrrlm1lprray99trZfPPNs/XWW2fDDTdMKaXXv6yeq7Xm+uuvz5VXXpmbb77577/H3XHHHXnooYf+/nvco48+mlrr3+/rjBkzsuqqq2aNNdbIGmuskac+9anZfPPNs9lmm2WNNdbo9S8Llih//etf8/Of/zxXXXVVfv/73+f666/P/fffn4ceeigPP/xwJk6cmKWXXjozZ87Mqquumk033TSbbrpptt5662y//fb6jg7761//miuuuCJXX311rr322tx+++25++67c/fdd+eRRx75+59NpZQstdRSmTp1apZZZpms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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 15, + "source": [ + "onc_plot_roc_no_threshold(y_true=calibrated_results.y, \n", + " y_pred=calibrated_results.p_calibrated, \n", + " model_name='lr_calibrated');" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n", + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n", + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n", + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n", + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n", + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAKCkAABsQCAYAAADSk/A1AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAJnKAACZygHjkaQiAAEAAElEQVR4nOzOwW0UAQBD0Vlrr0wBiPRfWIACkgKGAghCK7Sygt8729K/Xdd1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+XdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsSDsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVqQdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACvSDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAVaQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAirQDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYEXaAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAi7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYkXYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArEg7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFakHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr0g4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAFWkHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwIq0AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGBF2gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwIu0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWJF2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKxIOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWpB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK9IOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgBVpBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMCKtAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgRdoBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsCLtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFiRdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsSDsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVqQdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACvSDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAVaQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAirQDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYEXaAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAi7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYkXYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArEg7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFakHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr0g4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAFWkHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwIq0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AAAAAAAAAAAAAJiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADmomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAuehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBcdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYC661gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwF13rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADmomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAuehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBcdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYC661gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwF13rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADmomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAuehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBcdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYC661gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwF13rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADmomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAuehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBcdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYC661gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwF13rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADmomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAuehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBcdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYC661gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwF13rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADmomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAuehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBcdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYC661gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwF13rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADmomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAuehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBcdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYC661gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwF13rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADmomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAuehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBcdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYC661gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwF13rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADmomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAuehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBcdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYC661gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwF13rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADmomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAuehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBcdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYC661gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwF4vWAQAA0Eop5WuTPDfJsx66vi7Jk5LcluSJSU4nOZOkS7L30NUneSDJl5J8IcnnHrp+N8l9tdZ6vKcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANsmidQAAAByHUsoiyV1JXpbk25O8IMlTR77NTinlU0l+KcnPJvmFWuvuyPcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANliptbZuAACOQSmlJHlOkjuTPDtJGXH+f9Zaf2LEPRhFKeXmJN+V5NVJXpHk7DEnHCb5b0l+OslHaq1fOOb7s8FKKWeTPHilr3/wwQdz9uxx/xMHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOkgsXLuTcuXNX8yvnaq0Xpurh0kqttXUDADCBUso3JLnzousFSZ440e1+rtb60om24aqVUv5kkjcluTvJ2bY1jzhK8p+T/KskP1NrXTfu4YQrpZxN8uCVvv7BBx/M2bMn5Z87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQwoULF3Lu3Lmr+ZVztdYLU/VwaYvWAQDA9SulPCPJnUnueujrC5Pc2rIJWiilfGeSH0ry0sYpl3IqySsfuj5TSvknST5Ya91vmwUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcp0XrAADg6pRSvi7JnY+6bmsaBY2VUv50kncn+dbWLVfojiQfSPKOUsrfS/LBWmtt3AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcg0XrAADg8kopT0lyZ5K7Hvp6Z5KnNY2CE6SU8rVJ3pvkL7duuUZfn+TfJPlbpZTvr7X+SusgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYFqL1gEAwP9XSvmaJHc+6rq9aRScYKWUNyZ5T5JbG6eM4c4kv1hKeW+St9dah9ZBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwDQWrQMAYI5KKWeTvDDJnUnueujrM5tGwYYopdya5MeT/MW2JaM7leTvJHl5KeU1tdbfbh0EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjG/ROgAAtl0ppUvy7UnuvOi6I0lp2QWbqJTy/CQ/neSZrVsm9Nwkv1pK+eu11p9sHQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMa9E6AABm4GySn28dAZuulPI9SX4yyS2tW47BLUn+XSnlG2utb28dAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIynax0AAACPp5TyN5N8JMktrVuO2dtKKR8spSxahwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADj6FoHAADAYymlvCXJ+zLfz66vT/KhUsqidQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABw/brWAQAAcDmllLckeU/rjhPgNUk+XEo51ToEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuD5d6wAAALiUUsrrk7y7dccJ8uok72sdAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFyfrnUAAAA8WinlO5L8WJLSuuWEeVMp5W2tIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBrt2gdAAAAFyulPCvJTyW54Rhve5Tkt5L8apJ7kvxGkv/70PXlJAdJbk1y/qGvz0xyV5I7k7wgyROOsfWdpZRP11r/4zHeEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjJonUAAAA8rJRyc5KPJPmaY7rlryT5YJIP1VofeJzXfvGhK0l+OcmHk6SUckOSP5/kDUm+O8mZaVIfUZL821LKi2qtvzPxvQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICRda0DAADgIv8sybccw33+Q5Ln1lr/VK31R2utD1zrUK31oNb6n2qt35vkaUnenmR3rNDLOJvkp0oppye+DwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADCyrnUAAAAkSSnle5J838S3+eUkL661vrrW+ttjj9dav1xr/QdJviHJv0xyNPY9LvInkrxrwn0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAl3rAAAAKKXcluQDE95ineQdSb6t1vrxCe+TJKm1fqHW+jeSvCzJ/RPe6i2llJdMuA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMrGsdAAAcmweSfDTJu5J8vHELPNq7kzx5ou0HknxXrfWdtdY60T0uqdb680men+TnJrpFSfL+UsrpifYBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAkXWtAwCASXw5yc8m+adJXpvkWbXW22qtf67W+kNJ7msZBxcrpfyZJG+YaP7zSV5Ua/3oRPuPq9Z6f5I/m+RDE93iOUl+cKJtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYGSL1gEAwHW7kOSTSe55+Kq13tc2Ca5MKeVUkh+ZaP7+JC+rtX5uov0rVms9KqW8IcmZJK+a4BZ/t5Ty47XW35tgGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjRonUAAHBVdpP8WpJ7Lrp+t9ZaW0bBdfhrSb5pgt0HknxHrfUzE2xfk1rrYSnldUk+kuQVI8/fmOQfJXn9yLsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAyBatAwCAy+qTfCrJPRdd/6PWum5aBSMppdyS5J0TTNckd9daf3OC7etSaz0opbwuyb1J7hh5/u5SyntrrZ8YeRcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY0aJ1AACQJFkl+XSSey66fqvWetS0Cqb1/UmeOsHuP661fnSC3VHUWndLKa9N8ktJzow4XZK8I8l3j7gJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjGzROgAAZmg/ya8nueei6zdqrYdNq+AYlVJuTvIDE0x/PMnbJ9gdVa3110opP5DkR0ee/gullBfUWu8deRcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYyaJ1AADMwEGSDyS5J8knkny61rrfNgmae1OSp4y8uZ/kr9RaD0fenUSt9X2llNckeenI0z+c5FUjbwIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjWbQOAIBtV2tdJvm+1h1wUpRSTiV58wTT/7zWet8Eu1P620nuTdKNuPnKUsqzaq2fG3ETAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEnXOgAAgNl5ZZI/OvLmF5P8w5E3J1dr/VSSfz3ybJfkzSNvAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACPpWgcAADA7b55g84drrRcm2D0Ob0sydvsbSylPGHkTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEHXOgAAgPkopdyR5CUjz/6fJD8x8uaxqbX+QZL3jzx7NslrR94EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARtC1DgAAYFb+6gSbP1JrPZhg9zj9iySHI2++ceQ9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYARd6wAAAOahlNIlecPIs7tJ3j/y5rGrtX4+yb8fefbFpZQ7Rt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArlPXOgAAgNl4SZKnj7z5Y7XWL4+82cq7J9h83QSbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwHXoWgcAADAb3zvB5gcm2Gyi1npvkk+OPPvakfcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA69S1DgAAYPuVUk4ledXIs79Za/31kTdb+9DIe99cSvnjI28CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA16FrHQAAwCx8W5Knjrz5oZH3ToIPJ6kjb/6lkfcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA69C1DgAAYBZeMcHmhyfYbKrW+r+TfHzk2ZePvAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABch651AAAAs/DykffuqbV+duTNk+LDI+99aynl/MibAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwDXqWgcAALDdSilPT/ItI8/+zMh7J8l/GXnvVJLvHHkTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuEZd6wAAALbeSyfY/K8TbJ4Itdb7kvzeyLMvG3kPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuEZd6wAAALbeS0be65P84sibJ83HRt576ch7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwDXqWgcAALD1Xjry3i/UWvdH3jxpPjby3nNKKU8beRMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4Bl3rAAAAtlcp5clJ/tjIsx8bee8k+liSOvLmi0feAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK5B1zoAAICt9qIJNv/7BJsnSq31D5J8buTZu0beAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK5B1zoAAICt9qKR99ZJfm3kzZPq3pH3xn4vAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGvQtQ4AAGCrvWjkvd+ptS5H3jypPjHy3gtLKT7/AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQGNd6wAAALba80fe+8TIeyfZ2Gd9YpJnj7wJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXKWudQAAANuplPLkJE8defYTI++dZPdOsPm8CTYBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAq9C1DgAAYGs9b4LNT06weSLVWv8wyf8aeXaK9wQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4Cl3rAAAAttY3T7D5mQk2T7Kxz/u8kfcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAq9S1DgAAYGt948h7y1rr74+8edJ9ZuS9sd8TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4Cp1rQMAANhad4y899mR9zbBfSPvPbuUUkbeBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK5C1zoAAICtdcfIe/eNvLcJxj7zjUm+fuRNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4Cp0rQMAANg+pZQzSW4fefa+kfc2wRRnvmOCTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAKda0DAADYSrdn/M+a9428twk+m6SOvPmMkfcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAq9C1DgAAYCvdPsHm70+weaLVWveS/OHIs39k5D0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgKnStAwAA2Eq3T7B5/wSbm2Dsc0/x3gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXaNE6AACArXT7BJv3T7C5Ce5P8k0j7k3x3gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwYWqtqbVmvV5f8qq15ujo6Cu+Xu7nV7Jx8fe5vGc84xl5+tOf3joDAJjYonUAAABbaey/KtUkXxh5c1PcP/Kev/gBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAo1uv16m1Zr1eP3LVWnN0dPRV37/cay712qvdOAm/2/r+V/q7tdbW/2y4hLe+9a25++67W2cAABNbtA4AAGArPWXkvQdqrYcjb26K+0feG/u9AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgFHVWlNrzXq9/oqr1pqjo6Ov+tnlvn+514yxcRJ+t/X9H/19AADgyi1aBwAAsJWeMvLe/SPvbZKxz/6kUkqptdaRdwEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADbCer3OarXKer2+5FVrzdHRUWqtV/T9y71mjI2T8Lst7l9rbf3PBOAxrdfr7Ozs5Kabbsrp06db5wAAG2jROgAAgK30lJH3vjjy3iYZ++ynkjwpyZdG3gUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhdrTV7e3vp+/6RaxiGLJfLS369+HWXe/3e3l7rYwGwwR7+70mtNUdHRzl//nxKKa2zAIANs2gdAADAVrpt5L0LI+9tkinOfluSL02wCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzNR6vc7e3l6GYbjmq+/7R74+fA3DkPV63fp4AJCjo6Ps7Ozk4ODgK763XC7zhCc8oWEZALCJFq0DAADYSudG3tsZeW+TTHH2WyfYBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATrhaaw4ODjIMQ4ZhSN/3Wa1WV/S87/sMw3DJ5w+/DgC21TAMWS6XqbVe8mdnzpzJDTfc0KAMANhUi9YBAABsl1LKTUnG/gvVhZH3NskUZz83wSYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADCSw8PDDMOQYRiyWq0yDEP6vn/k+cOPr+T5o6/1et36eACwMQ4PD7O7u5uDg4PHfN3Ozk7Onz+fUsoxlQEAm27ROgAAgK1zboLNnQk2N8UUZ5/iPQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgFlZr9dZrVZZrVbp+z7DMIx2HRwctD4eAMxe3/fp+z611sd97dHRUfq+zy233HIMZQDANli0DgAAYOucm2DzwgSbm2KKs0/xHm2EUsqZJGdad1yhJ7YOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYdLXW7O/vZxiGx736vs9qtbrk877vMwzDVzzf29trfTwAYAKHh4fZ2dnJ4eHhVf3eMAw5ffp0brjhhonKAIBtsmgdAADA1rllgs2dCTY3xRRnn+I92hQ/mOTvt44AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOArHR4epu/7rFarDMOQvu8zDMMVPX/48eWer9fr1scDADZArfWRzxG11mv6/d3d3Zw/f36COgBg2yxaBwAAsHVunGBzd4LNTTHF2ad4jwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2HLr9Tqr1Sp932cYhgzD8FXPr/U6PDxsfTwAYMYODg6yu7t73Z9JDg8Ps1wuc8stt4xUBgBsq0XrAAAAts5NE2weTLC5EWqttZRylOTUiLNTvEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAtdbs7e1lGIaruvq+z2q1eszn+/v7rY8HADCqWmuWy2VWq1VqraNsDsOQM2fOZLFYjLIHAGwnnxQAABjbTRNsHk6wuUkOk5wacW+K9wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgCtUa83BwUFWq1WGYcgwDOn7/rLP+77PMAyXfP7w44t/XmttfUQAgBNvf38/u7u7OTo6GnW31pqdnZ2cP39+1F0AYLssWgcAALB1zkyweTjB5iY5zLj/u07xHgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbJ31ep1hGNL3fYZhyGq1euTxlTx/rOvo6Kj18QAAZqnWmt3d3axWq8nucXh4mL7vc/PNN092DwBgsy1aBwAAsHVOTbB5OMHmJhn7/FO8RwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATR0cHGS5XKbv+yyXy0s+Hobhiq6+77NarbK/v9/6WAAAjGh/fz+7u7s5Ojqa/F593+fMmTM5derU5PcCADbPonUAAABbZ4q/Qh1MsLlJxj6/vxQCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM3VWrO/v5/lcpnlcpm+76/r8cHBQesjAQBwQq3X6yyXy6xWq2O7Z601Ozs7ufXWW4/tngDA5li0DgAAYOucmmDzcILNTTL2+ad4jwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAGai1ZhiG9H2fvu+zu7t7XY/X63XrIwEAsOX29vaaffY8ODjIMAy56aabjv3eAMDJtmgdAADA1jk1webhBJubZOzzT/EeAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAn1Hq9Tt/36fs+y+Uyy+XykceX+t5jPR6GIev1uvWRAADgca3X6+zu7mZvb69px3K5zOnTp3Pq1KmmHQDAybJoHQAAAFegtg5obOz/Z7yMvAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjOzo6CjL5TLL5TJ931/X42EYWh8HAACO1Wq1ynK5zHq9bp2SWmt2d3dz7ty51ikAwAmyaB0AAMDWOZpgc+6fW28YeW+K9wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm9/fz9936fv++zu7l7X4/39/dbHAQCAjbNer7Ozs3PiPk/v7+9ntVrlxhtvbJ0CAJwQi9YBAABsnfUEm3P/3Dr2+Y9G3tsk70ryntYRV+iJST7fOgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgm9Vas7+/n+VymeVymb7vr+vxwcFB6yMBAMBsDcOQ5XKZWmvrlEva3d3N6dOn03Vd6xQA4ARYtA4AAGDrHE2wecMEm5tk7PNP8R5thFrrXpK91h1XopTSOgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgqfV6ndVqddlrb2/vMX9+JdcwDFmv162PCgAAXIejo6Ps7Ozk4OCgdcpjqrVmZ2cn586da50CAJwAi9YBAABsnaMJNuf+uXXs80/xHgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwE7XWHBwcZLVaTXrt7++3PioAAHDC9X2fvu9Ta22dckX29/ezt7eXM2fOtE4BABpbtA4AAGDr7E2wOffPrWOff4r3CAAAAAAAAAAAAAAAAAAAAAAAAAAAgP/H3r/HWJre+WHf9z116nqq634bzpJDDskhOcshh3Pl3Gq0gtaxbGcdYbWxBQPrKECcRIoXTizbSmAhgLBJjDiWYcmCvZtAUuzEsry70i42kqBsVrvdc+EML7MkNcvLkMPhkN3supy6dd2rq86bP5Zd6Jrpnlud029dPh/gi/d53nPq934fFgE2TxVQAAAAAAAAAAAAACfAwcFBdnZ2Op6yLKs+KgAAcI7t7+9nY2Mj169fr7rK+7axsZHu7u7UarWqqwAAFapXXQAAgDNnpwMzz/u/W9t9/k58jwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4B61WK3t7e9nZ2elo9vf3qz4qAABAR21tbWVraytlWVZd5QNptVrZ2NjI0NBQ1VUAgArVqy4AAMCZs92Bmef9361dbZ7Xie8RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwKlUlmX29/ezs7PT0ezu7lZ9VAAAgFNtf38/6+vr2d/fr7oKAMCx1asuAADAmbPdgZmNDsw8FYqiGEhStHlsJ75HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG3XarWys7PT8bRaraqPCgAAwG2UZZmtra1sb2+nLMuq6xxLV1dXBgcH09PTU3UVAKBi9aoLAABw5mx1YOZQB2aeFp04+3YHZgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADnSFmW2dvby87OTluyu7t7y/t7e3tVHxUAAKBStVrtMEVRpKurK0VRvKf77+c9x5nxQb62KIr3dP61tbW89tpr2d7e7vB/0p03PT2de++9N93d3e/4vgceeOAONQIAqlSvugAAAGfOtQ7MvNCBmadFJ86+1oGZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAmxv7+fnZ2djmZ3dzdlWVZ9VAAA4H0oiiJFUaSrqytFUaRWq71jbvfe9zLjNH5t1c+/1XuKoqj6vzaVuX79el5++eV861vfyqOPPlp1nWMZHBzMM888kw9/+MNVVwEATpB61QUAADhz1jowc6gDM0+LTpx9tQMzAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgHfRarWyu7ubnZ2djubg4KDqowIAcA7UarXDFEWRrq6uFEXxnu6ftK+t+vl34muLokhRFFX/1wbekx//+Md57rnnsrGxUXWVY7v//vvz+OOPp7u7u+oqAMAJU6+6AAAAZ0tZlhtFURwk6Wrj2AttnHXadOLsax2YCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKdWWZa5fv16dnZ2Opq9vb2qjwoAcC4VRZH+/v4MDAwcSU9PT2q1Wrq6ulIURWq12jumKIpbvvd290/7177Te4uiqPrbCpxBu7u7+dKXvpTXXnut6irHNjw8nNnZ2dx1111VVwEATqh61QUAADiT1pKMtXHeUBtnnTadOPtaB2YCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABARxwcHGR3dzc7OzsdTavVqvqoAAD8VE9PTwYGBt5T+vv702g0jlzf+p7e3t7UarWqjwXAO3jjjTfy/PPPZ3t7u+oqx1IURT73uc/l4YcfTr1er7oOAHCC+ZcCAACdsJxkrI3zLrRx1mnTibMvdWAmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA50yr1cre3l52dnYOs7u7e2Tfjly/fr3qowIAcAu1Wi0DAwPp7+9ve7q6uqo+HgB3yPb2dl544YX84Ac/qLrKsY2OjuZP/ak/lcnJyaqrAACnQL3qAgAAnEkLST7Rxnnn+ZOudp+9TLLY5pkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcQmVZZnt7O8vLy1lZWcnKykqWl5cP98vLy1lbW8v29nZ2dnbelt3d3aqPAADAuyiKIn19fenv73/PGRgYOPI1N+8HBgbS39+fvr6+dHd3pyiKqo8IwClVlmW+//3v58UXXzz1nzHUarU8+OCD+cIXvpCurq6q6wAAp0S96gIAAJxJ822eN9PmeadJu8++XJblQZtnAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcEJcv349KysrWVlZyfLy8uH15vXN9/b29qquDABAkp6envT396e/vz8DAwPp6+u75X5gYCD9/f233N9Y37zv7e1NURRVHw8Ajtjc3Mxzzz2XH/3oR1VXObbJycnMzs5mfHy86ioAwClTr7oAAABn0kKb500WRVEry7LV5rmnwUyb57X7ewMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAHtVqtXLt2LcvLy1lZWTlyXV5ezurq6uF6ZWUl6+vrVVcGADizurq6MjAwkP7+/vT19R2u38v+3VKr1ao+HgB0XFmW+c53vpOXX345e3t7Vdc5lq6urjzyyCN54IEH/O84APCB1KsuAADAmXS1zfO6kkwmmW/z3NNgps3z2v29AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4BbKssze3l52dnayvb19y+uNbG9vZ3t7O2tra1leXs7KykqWl5ezvLyc1dXVtFqtqo8DAHBqFEWR/v7+tmVgYCB9fX3p7+9Pd3d31ccDgFPr2rVruXTpUn7yk59UXeXYZmZm8uyzz2Z4eLjqKgDAKVavugAAAGfS5Q7MnEky34G5J91Mm+f9uM3zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATqVWq5Xt7e3s7OxkZ2fncP3W67u9frv37ezspCzLqo8JAHBi9fb2pr+//10zMDCQvr6+W+4HBgbS399/ZN/T05OiKKo+HgDwU2VZ5tVXX81XvvKV7O/vV13nWLq7u/PYY4/l/vvv9+8NAODY6lUXAADgTPpxB2bOJPlGB+aedDNtnteJ7w0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBHlWWZ7e3tbG5uZmNjIxsbG7dcb25uZnt7O9vb29nZ2Xnb9Ua2t7dz/fr1qo8FAHDi1ev1DAwMpK+vL/39/env7z+yHxgYSH9//y33N9a329dqtaqPBwB02MrKSi5dupT5+fmqqxzb3XffndnZ2Vy4cKHqKgDAGVGvugAAAGfSjzsw864OzDzRiqKoJ5lo89hOfG8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABu6+DgIJubm9nY2DjMzfv3+lqr1ar6KAAAJ1KtVktfX1/6+/szMDCQ/v7+9PX1Ha5vtX+vqdfrVR8PADiFWq1WvvGNb+SVV17JwcFB1XWOpaenJ0888UTuu+++FEVRdR0A4AzxqQsAAJ3wZgdmfrwDM0+6jybpavPMTnxvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAM6gsy+zt7WVjYyObm5vZ2Ni4ZW5+7Vbr7e3tqo8CAHAi9PX1pb+//1gZGBg4MmdgYCDd3d0piqLq4wEAJEmWlpbyh3/4h1laWqq6yrHdc889efrpp9NoNKquAgCcQfWqCwAAcPaUZblVFMVPknyojWM/2cZZp0Unzvz9DswEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOmFarla2trWxsbGRzczMbGxtvW781t3rf/v5+1UcBALijuru709/ff9sMDAykr6/vlvuBgYH09/ffct/X15darVb18QAAOubg4CCvvPJKvvGNb6TValVd51j6+vry1FNP5d57701RFFXXAQDOqHrVBQAAOLO+l+RDbZz3iTbOOi3afebrSX7Y5pkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECbXb9+PRsbG9nY2Mjm5uYt17fa35ytra2qjwEAcEcMDAxkYGAgjUYjjUbjXdcDAwPp7+8/vPb396evr+9w39XVVfWRAABOnfn5+Vy6dCkrKytVVzm2j3/843nyySfT399fdRUA4IyrV10AAIAz63tJnm3jvE+0cdZp8ck2z3ujLMuDNs8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+qizLbG9vZ2NjIxsbG9nc3Lzl+t1e29vbq/ooAAAdUxRFGo1GBgYG0mg0jrXu7+9PrVar+kgAAOfW9evX89WvfjWvvvpqyrKsus6xDAwM5Jlnnsk999xTdRUA4JyoV10AAIAz67ttnjdcFMVkWZaLbZ57kn2izfNea/M8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4Mw4ODrK5uZmNjY235a33b96/dd1qtao+CgBA23V1daXRaKTRaGRgYOBY676+vhRFUfWRAAA4pp/85Ce5dOlSrl27VnWVY/vUpz6VL37xi+nt7a26CgBwjtSrLgAAwJn1agdmfjLJYgfmnlSfbPO8f9HmeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAULmyLLO7u5vNzc1sbGxkY2PjyPqtud37dnZ2qj4KAEBb9fT0ZGBgIAMDAxkcHDzWuru7O0VRVH0kAABOgL29vbz88sv59re/XXWVY7tw4UJmZ2dz9913V10FADiH6lUXAADgzPoXHZj5YJIXOzD3xCmK4kKSj7d57DfbPA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI6l1Wplc3Mzm5ub2djYyMbGxpH1rfa3un9wcFD1UQAA2qK3tzeNRiONRiMDAwPHWnd3d1d9HAAAzpgf/ehHee6557K5uVl1lWMpiiL3339/HnvsMf9uBgAqU6+6AAAAZ1NZlleKolhJMtrGsQ+3cdZJ94UkRZtn/os2zwMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4Bzb29vLxsZGNjc3s7Gx8bb1u722sbGRra2tqo8BAHBsAwMDGRgYSKPRSKPR+MDrgYGBdHV1VX0cAAB4m52dnXzpS1/K9773vaqrHNvw8HCeffbZzMzMVF0FADjn6lUXAADgTPt6kp9r47yH2zjrpGv3WXeSfLfNMwEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOIXKssz29nY2NjaOZHNz87b7W722t7dX9VEAAN637u7u9PX1HUlvb28GBgbSaDTSaDTe17q/vz+1Wq3qYwEAQMf84Ac/yAsvvJDt7e2qqxxLURT53Oc+l4cffjj1er3qOgAA8S8SAAA66ctJfq6N8+4viqK3LMvdNs48qR5q87w/Kstyv80zAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4w/b397O5uZmNjY3D661y82tvfd/W1lZarVbVRwEAOKIoivT396evr69j6e3tTVdXV9VHBQCAU2FraysvvPBC3njjjaqrHNv4+HhmZ2czOTlZdRUAgEP1qgsAAHCmfbnN87qTfC7JV9o89yR6uM3z2v29AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgfSjLMru7u9nY2MjGxkY2NzdvuX5r3vra7u5u1UcBAM6hnp6e9PX1dTTd3d0piqLqowIAAD/1z//5P89PfvKTqmscS61Wy0MPPZTPf/7z6erqqroOAMAR9aoLAABwpr3cgZmPJ/lKB+aeGEVRDCf5VJvHfrnN8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzo1Wq5XNzc1sbGxkY2PjyPqt+7e+dvP9g4ODqo8CAJwxtVot/f396evr61h6e3tTq9WqPioAAHCHPf744/nt3/7tlGVZdZUPZHJyMs8++2zGxsaqrgIAcEv1qgsAAHB2lWV5pSiKN5Pc08axfybJf9nGeSfRn07S7t+QeKHN8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAToW9vb1sbGwcZnNz87b72623traqPgYAcAr19fV1PPV6vepjAgAAZ9Tk5GQ+//nP5+tf/3rVVd6Xrq6uPPLII3nggQdSq9WqrgMAcFs+3QUAoNMuJvnlNs77U0VRdJVledDGmSfNn2nzvB+WZflmm2cCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHTc1tZWNjY2bpvNzc1brm/eX79+vepjAAAnTHd3d/r6+jqanp6eFEVR9VEBAACO5eGHH84Pf/jDrK6uVl3lPbnrrrsyOzub4eHhqqsAALyretUFAAA48y4m+eU2zhtO8miSl9o486T5M22e94dtngcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8IHt7u5maWkpy8vLWVpaum2Wl5ezvb1ddV0A4A6q1Wrp6+vraHp7e9PV1VX1UQEAAE6Frq6uzM7O5nd/93dTlmXVdW6ru7s7jz/+eD7zmc+kKIqq6wAAvCf1qgsAAHDm/UEHZv6ZJC91YG7liqL4cJL72jy2E98DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBD169fz8rKSpaWlrK0tJTl5eU0m83D9dLSUprNZpaXl7OxsVF1XQDgA+jt7U1fX19HU6/XUxRF1UcFAADgJjMzM/nZn/3ZvPrqq1VXuaWf+ZmfyezsbAYHB6uuAgDwvtSrLgAAwNlWluUbRVG8luS+No79HyX51TbOO0n+pTbPK5P8szbPBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADOgVarldXV1TSbzSwtLWV5eTlLS0tpNpuH6xtZW1urui4AnFv1ej19fX0dTU9PT2q1WtVHBQAAoCKPPvpo3nzzzayvr1dd5VBvb2+eeOKJfPKTn0xRFFXXAQB43+pVFwAA4Fz4J0nua+O8J4uiuLssyyttnHlS/BttnvdKWZbzbZ4JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJxSrVYr6+vrWVpaSrPZzPLycpaWlm6Z1dXVtFqtqisDwKlVFEX6+vo6mt7e3tTr9aqPCgAAwBnX3d2d2dnZ/ON//I+rrpIk+ehHP5qnn346AwMDVVcBAPjAfLoPAMCd8E+S/HttnFdL8m8k+RttnFm5oiimk/zpNo/9J22eBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcMGVZZnNzM0tLS0eyvLycZrN5uL5x/+DgoOrKAFC5np6e9PX1dTTd3d0piqLqowIAAEBb3H333fnUpz6V7373u5V16O/vz1NPPZWPfexj/j83AHDq1asuAADAufCHSVaTjLRx5l9I8jfaOO8k+KUkXW2e+dttngcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3CHb29tZWlrK8vJyms3m4XppaSnNZvNwvbS0lL29varrAkBb1Gq19PX1dTy1Wq3qowIAAMCp88UvfjGXL1/O5ubmHX/2Jz/5yTzxxBPp6+u7488GAOiEetUFAAA4+8qyvF4Uxe8k+bfbOPaRoig+UZbl99s4s2p/oc3zXi/L8pU2zwQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjmFvby9LS0tZXl7O0tJSms3m4frmLC8vZ2trq+q6AHBEb29v+vr6Opp6vZ6iKKo+KgAAAHALvb29efrpp/PP/tk/u2PPbDQaeeaZZ/KRj3zkjj0TAOBOqFddAACAc+N/SPJvt3nm/zzJ/6HNMytRFMWnkzzR5rG/0eZ5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAt7O/vZ3l5OcvLy1laWjqS5eXlNJvNw/X6+nrVdQEgSVIURYaHhzM2NpbR0dHD683rsbGxw3Wj0UitVqu6NgAAAFCxe+65Jx//+Mfz+uuvd/xZn/nMZ/L444+np6en488CALjT6lUXAADg3Pi9JEtJxts4839VFMWvlmW51caZVfnfJinaPPPvt3keAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwbrVYrq6urWVpaytLSUpaXl9NsNg/XS0tLaTabWV5ezurqatV1ASBJMjAwkLGxsYyOjmZ0dDRjY2OH+5uvY2NjGR4eTldXV9WVAQAAgFPoySefzJUrV7Kzs9OR+RcuXMjs7GzuvvvujswHADgJ6lUXAADgfCjL8npRFP/vJL/SxrGjSf5ikr/dxpl3XFEUk0l+uc1jXynL8pttngkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAp1pZlllfX0+z2czS0lKWl5eztLSUZrN5uL6RlZWVtFqtqisDcM7V6/WMjY1ldHT0yPVW90ZHR9Pb21t1ZQAAAOAc6O/vz1NPPZXf//3fb+vcoijy2c9+No888ki6u7vbOhsA4KSpV10AAIBz5e8k+ZU2z/z3iqL4r8qyPM2/bfuXkvS1eebfbfM8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADiRyrLM1tZWlpaW0mw2s7y8nKWlpSNZXl4+fG1/f7/qygCcUd3d3env709fX9+R3Lh3u+tb3zswMJDR0dGMjY2l0WikKIqqjwYAAADwNvfee2++//3v580332zLvNHR0czOzmZ6erot8wAATrp61QUAADg/yrL8RlEUX0nyaBvHfiLJ/zTJf9/GmXdMURRDSf5ym8fuJPnv2jwTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO6onZ2dLC0tHcny8nKazebhemlpKc1mM3t7e1XXBeCEK4oifX196e/vT19f32Fu3t9Yv/X6Xt7b19eXrq6uqo8JAAAAcMcURZGnn346V69ePdbn9EVR5MEHH8xDDz3k8xUA4FypV10AAIBz528l+W/aPPM/KYrit8uy3Gnz3DvhryWZbPPM/1dZlsttngkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAx7a3t5fl5eUsLy+n2WxmaWkpy8vLWVpaSrPZPFwvLS1la2ur6roAnAADAwNpNBoZHBzM4ODgkfVb9zevBwYG0tfXl/7+/vT19aWnpydFUVR9HAAAAIAzpdFo5IknnsjFixc/0NePj4/n2WefzcTERJubAQCcfPWqCwAAcO78gyT/aZLpNs68J8lfSfKrbZzZcUVRfCLJr3Rg9H/RgZkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8Da7u7tZW1vL6upq1tbWsra2lmvXrmV1dTUrKytZWlo6zPLycq5du1Z1ZQDukFqtlsHBwSNpNBq33d/utVqtVvVRAAAAAHgH9913X77//e/nypUr7/lrurq68tBDD+Xzn/+8z38AgHOrXnUBAIDzoiiKjyZ5owOj/2JZln+vA3M7oizLvaIo/naSv97m0X+1KIq/U5blT9o8t5P+syQ9bZ75/yvL8tU2zwQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgjGu1WllfX8/a2lpWV1eztrZ2JKurq7l27dqR/draWnZ3d6uuDkAH9Pb2ZnBwMI1GI4ODg7fMza+99X2NRiN9fX0piqLqowAAAADQYUVRZHZ2Nr/5m7+Z69evv+v7p6enMzs7m9HR0TvQDgDg5KpXXQAAgHPpbyX5K0mG2jizkeT/XhTFv1aWZdnGuR1RFMW/meQXOjD6VzswEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBToizL7OzsZG1tLdeuXcvq6mrW1taO5Fb31tfXcwr+LCgA76IoijQajQwODh5e37p+a976vkajke7u7qqPAgAAAMApcuHChTz22GN54YUXbvueer2eRx99NJ/97GdTFMUdbAcAcDLVqy4AAMD5U5blalEUfzPJf9zm0f9Kkn8/yf+tzXPbqiiKTyT59Q6MvliW5cUOzAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAgcHB7l27VrW1tYOs7q6euTe6urqkdfX1tayt7dXdXUAPoDu7u4MDg5mcHAwjUbjlutb7W++39/fn1qtVvVRAAAAADiH7r///rz++uuZm5t722sf+tCHMjs7m6GhoQqaAQCcTPWqCwAAcG7950n+3STDbZ77fy6K4rmyLF9u89y2KIqiN8k/SHKhA+P/jx2YCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAxlWWZ7e3trK2tHcnq6urb7t2c9fX1qqsD8B4NDAxkcHAwg4ODaTQat1y/22s9PT1VHwMAAAAAPrCiKDI7O5vf+q3fysHBQZKku7s7X/ziF/PpT386RVFU3BAA4GSpV10AAIDzqSzL5aIo/k9J/q9tHt2d5DeKoni6LMsftXn2sRR/8unkryd5qAPjf7csy4sdmAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADATfb393Pt2rWsrq7m2rVrWVtby9raWlZXVw/Xb7137dq1XL9+verqANxCrVbL4ODgLdNoNG67f+u6VqtVfRQAAAAAqNzIyEgeeeSRvPzyy/nwhz+cZ555JoODg1XXAgA4kepVFwAA4Fz7m0n+UpKPtnnuh5P886IoZsuy/EmbZ38gRVEUSf7rJL/cgfH7Sf7DDswFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOLPKsszW1lbW1tayurqatbW1d8yN92xublZdHYCf6u3tzeDg4GEajcaR/e1eu3nd29ubP/kTxAAAAABAOzzwwAMZHh7OPffc47M3AIB3UK+6AAAA51dZlrtFUfzvkvzDDoz/eJLfL4ri2bIsFzow//36L5L8Ox2a/V+WZfmdDs0GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOPGuX7+ea9euZW1tLaurq1lbWzuSG/dufs+1a9eyv79fdXWAc6koijQajQwODh7m5v1bX7vV+xqNRur1etVHAQAAAIBjW15ezujoaIqiqLpKW9RqtXz0ox+tugYAwInnp50AAFSqLMt/VBTF7yT51zsw/tNJXi6K4s+XZfm1Dsx/V0VRXEjyd5P8Yoce8eMkf61DswEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADuqLIss7GxkbW1tdtmdXX1bfe2traqrg5wbvT09KTRaGRwcPAwN+/f6bUb6e/vT1EUVR8FAAAAACq1v7+fr33ta/nmN7+Zp556Kvfff3/VlQAAuIPqVRcAAIAk/5skfzrJhQ7M/miSF4qi+JWyLH+9A/NvqyiKzyb5rST3dfAxf7ksy40OzgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4QPb29rK2tnYkq6urh+tr164d2d9Iq9WqujrAmTUwMJDBwcEjaTQa77q+ed/T01P1MQAAAADg1Lt69WouXbqUtbW1JMnLL7+cj3zkIxkcHKy4GQAAd0q96gIAcJ4URfHRJG9U3aMDni2Koqy6RJK/WJbl36u6BO9fWZaXi6L4lSR/t0OP6E3ya0VR/KtJ/oOyLF/r0HOSJEVRNJL8+0n+oyQDHXzU3y3L8nc7OB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgrVYrGxsbWVtbO5LV1dVb3rt27VrW1tayvb1ddXWAM6OrqyuDg4NpNBoZHBy8ZW5+7a3vazQaaTQaqdVqVR8FAAAAAM6169ev58tf/nL++I//+G33L126lD/7Z/9siqKoqB0AAHdSveoCAACQJGVZ/r2iKP61JL/Ywcf8QpJ/pSiKX0vy18uyXGjn8KIo6kn+Z0n+epK72jn7Fl5P8isdfgYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwxuzu7mZtbS2rq6tZW1vL2tparl27dmR/Izfura+vp9VqVV0d4NTq6+vL4OBgGo1GBgcHD/PW/e3uNxqN9Pb2piiKqo8CAAAAABzD5cuXc+nSpWxsbNz29e9973u577777nAzAACqUK+6AAAA3OR/keShJB/r4DPqSf5ykn+nKIp/kuS/TfK7ZVnufdCBRVE8kuSXk/ybSSbb0vKd7Sb5C2VZ3vpTXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODcabVaWVpayvz8/JEsLCwcXldWVrK7u1t1VYBTo1arpdFoZHBw8PB6Izfv3/razRkYGEi9Xq/6KAAAAABAhXZ3d/PSSy/lu9/97ru+90tf+lJ+5md+JgMDA3egGQAAVfKTZAAAToyyLFeKovhzSV5M0ulPJ7uT/Os/zVpRFC8n+UqSryZ5NclykrWyLA+SpCiKIsmFJCNJ7k3yyE/zeJKPdrjrW/2lsiy/coefCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFSk1WpleXk58/PzR7KwsJC5ubksLCxkcXExBwcHVVcFODF6enoyODiYwcHBNBqNW67f7bX+/v78yZ+2BQAAAAD4YH74wx/m+eefz9bW1nt6/+7ubp5//vn8/M//vM8nAQDOuHrVBQAA4GZlWX6jKIq/mOS/T3KnPp0cTvIv/TRHFEWxnmQ/yVCSrjvU55387bIs/07VJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAID2aLVaWVlZyfz8/GEWFhYyNzeXhYWFw/3BwUHVVQHuuEajkfHx8YyPj2dsbCxDQ0MZHBw8TKPRuO26p6en6voAAAAAwDm2vb2dF198Ma+//vr7/tof/vCHeeONN3Lvvfd2oBkAACdFveoCAADwVmVZ/g9FUfxMkv+s6i5JLlRd4Cb/MMmvVF0CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeG9arVZWV1czPz//tiwsLBxe9/f3q64KcMf09vZmYmIi4+PjGR8fz9jYWMbHxzMxMXG4vpHe3t6q6wIAAAAAvC9lWeb111/Piy++mJ2dnQ8854UXXsiHPvSh9PX1tbEdAAAnSb3qAgAAcCtlWf6Noiimk/yHVXc5IS4m+bfKsmxVXQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIyrLMyspKFhYWMj8/f5gb+7m5uSwuLub69etVVwXouO7u7oyNjWV8fDwTExOH61ulv78/RVFUXRkAAAAAoO02Nzfz3HPP5Uc/+tGxZ21vb+dLX/pSfu7nfq4NzQAAOInqVRcAAIDbKcvyPyqKopbkr1TdpWJ/kOR/XJblTtVFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4DwoyzJra2uZn58/koWFhczNzWVhYSELCwvZ29uruipAx9RqtYyNjWV8fPxIxsbGMjExcbgeHx/PhQsXUhRF1ZUBAAAAACpRlmW++93v5qWXXmrrz4++973v5eMf/3g+8pGPtG0mAAAnR73qAgAA8E7KsvwPiqLYSfIfV92lIv/fJP+Tsiy3qy4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ0FZlrl27Vrm5+cPs7CwkLm5ucP1/Px89vb2qq4K0HZFUWRkZCTj4+MZGxvLxMTE4Xp8fDwTExOH6+Hh4dRqtaorAwAAAACcaOvr67l06VKuXLnSkfnPPfdcfumXfik9PT0dmQ8AQHXqVRcAAIB3U5blXyuK4sdJ/nbO179h/x9J/tdlWe5XXQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOg7Iss76+nvn5+bdlYWHhcL27u1t1VYC2Ghoayvj4eMbGxjI+Pp6JiYnD9c0ZHR1NV1dX1XUBAAAAAE69sizzx3/8x/nyl7+c/f39jj1nc3MzL7/8cp555pmOPQMAgGrUqy4AAADvRVmWv14UxRtJ/n6S8ar7dNhBkv99WZb/adVFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4KQoyzLr6+tZWFjI/Pz8kSwsLGRubi4LCwvZ2dmpuipAWwwMDGRiYiJjY2MZHx8/krGxsUxMTGR8fDyjo6Pp6empui4AAAAAwLmxurqaixcvZn5+/o4879vf/nbuvffe3H333XfkeQAA3Bn1qgsAAMB7VZbl7xVF8YUk/yDJE1X36ZArSf5CWZbPVV0EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7pSyLLO5uZn5+fkjWVhYyNzcXBYWFjI/P5/t7e2qqwIcS09PTyYmJjI+Pp7x8fGMjY0d7sfGxjI+Pp6JiYmMjY2lr6+v6roAAAAAANyk1Wrlm9/8Zr72ta/l4ODgjj770qVL+fN//s+nu7v7jj4XAIDOqVddAAAA3o+yLH9cFMVskr+a5K8l6am4Ujv9/SS/UpZls+oiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0E6bm5uZn5+/ZRYWFjI/P5+tra2qawJ8IPV6PWNjY5mYmMj4+HjGxsYyPj6eiYmJw/WNDAwMpCiKqisDAAAAAPA+LS0t5eLFi2k2m5U8f319PV/96lfzxBNPVPJ8AADar151AQAAeL/KstxP8qtFUfzDJP91kmcqrnRcP0zy75Zl+f+puggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8X1tbW5mbm8vCwkLm5+cPc2M/NzeXra2tqmsCvC+1Wi2jo6MZHx+/bcbGxjIxMZELFy6kKIqqKwMAAAAA0AEHBwf5oz/6o3z9619Pq9WqtMurr76ae++9N9PT05X2AACgPepVFwAAgA+qLMtvJZktiuIXk/wnST5RcaX361qS/0uS/7wsy92qywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBbbW1tZWFhIfPz80eysLCQubm5LCwsZGNjo+qaAO/ZyMhIxsfHj2RsbCwTExOH6/Hx8YyMjKRWq1VdFwAAAACACi0sLOTixYtZWVmpukqSpCzLXLx4Mb/4i7+Yrq6uqusAAHBM9aoLAADAcZVl+VtFUfxOkn8ryV9N8umKK72bpSR/M8nfKsvyZHzyCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwLlSlmU2NzezsLCQxcXFLCwsZH5+PgsLC5mbmztcr6+vV10V4F1duHAh4+PjGRsby8TExOF6fHz8SEZHR1Ov16uuCwAAAADACbe/v5+vfOUrefXVV1OWZdV1jlhdXc0rr7ySRx99tOoqAAAck99gAADgTCjLcj/J/7Moiv82yb+c5H+Z5F9N0lVpsaO+muTXk/x3ZVluVl0GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAs2l/fz/NZjMLCwtZXFzM4uLi4frme9vb21VXBbitgYGBjI2NZXx8/B0zNjaWnp6equsCAAAAAHBGXL16NRcvXsy1a9eqrnJbX//61/Oxj30sExMTVVcBAOAYirIsq+4AAAAdURTFXUl+KckvJnk6Sa2CGt9O8ptJfqMsy39RwfM5pYqiGEqy9l7fv7a2lqGhoQ42AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqlaWZdbX17OwsJCFhYUsLi4eXm9er6ysxN+vBk6inp6ejI+P3zJjY2OZmJg4XPf391ddFwAAAACAc2Rvby8vv/xyvv3tb1dd5T0ZHx/Pn/tzfy61Wq3qKgDACXTt2rUMDw+/ny8ZLsvyWqf6cGuFX/ICAOA8KIpiPMnP/TRPJbk/SXebH1MmeSPJS0n+IMnvl2X5RpufwTlRFMVQkrX3+v61tbUMDQ11sBEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANBJe3t7WVxczOLiYhYWFo5cb17v7e1VXRUgSdLT05Ph4eEMDw9naGgoIyMjh/sbuXFvZGQk4+PjaTQaKYqi6uoAAAAAAHDEj3/84zz33HPZ2Niousr78uijj+YLX/hC1TUAgBPo2rVrGR4efj9fMlyW5bVO9eHW6lUXAACAO6Esy6Ukv/nTpCiK3iSfTfKzSe5N8rEkdycZ/2mGkvT8NEWS60l2k2wlWUrSTDKf5I0kP0jy3SRfL8ty7Y4dCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgBOv1WpldXU1i4uLWVxczMLCwpHrjfXamj+HB1SjKIpcuHAhw8PDRzIyMpLh4eEMDQ0d2d9IX19fiqKouj4AAAAAAHxgu7u7efHFF/O9732v6iofyCuvvJKPfvSjGR0drboKAAAfQL3qAgAAUIWyLHeTfO2nAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgPdtZ2cnCwsLWVxcPLy+db24uJj9/f2qqwLnRE9PT0ZGRjI8PHwkt7p3I0NDQ6nValVXBwAAAACAO+qNN97I888/n+3t7aqrfGAHBwe5dOlSfuEXfiFFUVRdBwCA96ledQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICTpNVqZXl5OQsLC1lcXDy8vnW9vr5edVXgjKrVarlw4UKGh4czMjKS4eHhDA0NHdnfnBv3ent7q64OAAAAAAAn2vb2dp5//vm88cYbVVc5trGxsTz55JMpiqLqKgAAfAD1qgsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcKZubm1lcXMzCwsKR683rZrOZVqtVdVXgjOjr68vw8HCGh4czMjJyuL5dRkZGMjg4mFqtVnV1AAAAAAA4M8qyzPe///28+OKL2d3drbrOsdRqtXzhC1/Igw8+mK6urqrrAADwAdWrLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHBc+/v7WVpayuLiYhYWFo5cb15vbW1VXRU4pWq1WoaHhzM0NJTh4eGMjIxkeHj4SG6+NzQ0lJGRkfT09FRdHQAAAAAAzrWNjY0899xz+fGPf1x1lWObnJzM7OxsxsfHq64CAMAx1asuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcDtlWWZ9fT2Li4tZXFzMwsLCkeuN9fLycsqyrLoucEoMDAxkeHj4HTMyMnJk32g0UqvVqq4OAAAAAAC8R2VZ5jvf+U5eeumlXL9+veo6x9LV1ZVHHnkkDzzwgJ9XAACcEfWqCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOfT9evXs7i4mMXFxSwsLNx2vbu7W3VV4ITq6urK8PDw2zIyMnK4Hhoaetu+p6en6uoAAAAAAEAHXbt2LRcvXszVq1errnJsMzMzefbZZzM8PFx1FQAA2qhedQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOBs2t/fz2uvvZbXXnstCwsLWVxcPHJdXV2tuiJwgjQajQwPD78tIyMjt7w3NDSURqORoiiqrg4AAAAAAJwQZVnm1VdfzVe+8pXs7+9XXedYuru789hjj+X+++/38xAAgDOoXnUBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgbNja2srly5fza7/2a7l48WLVdYCK1Ov1DA8PZ3h4OCMjI4froaGhI/ub3zM0NJR63Z9eBwAAAAAAPriVlZVcunQp8/PzVVc5trvvvjuzs7O5cOFC1VUAAOgQvykDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8q1arlWazmbm5uVvm8uXL2draqrom0GaDg4MZHh7O8PBwRkZGDtc33xsaGjqy7+/vT1EUVVcHAAAAAADOiVarlW984xt55ZVXcnBwUHWdY+np6ckTTzyR++67z89bAADOuHrVBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgOptbW1lbm7ulrl69WoWFhZycHBQdU3gGPr6+jI9PZ3x8fGMjIxkeHj4SN56b2hoKF1dXVXXBgAAAAAAuK1ms5mLFy9maWmp6irHds899+Tpp59Oo9GougoAAHdAveoCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAZ7VarTSbzczNzeXq1auZm5t7W9bX16uuCRxDb29vpqenDzM1NZWZmZnD9fT0dC5cuJCiKKquCgAAAAAAcGwHBwd55ZVX8vWvfz1lWVZd51j6+vry1FNP5d577/WzHACAc6RedQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOB4Njc3Mzc3d9vMz8+n1WpVXRP4gHp6ejI9Pf22TE1NHa6HhoZSFEXVVQEAAAAAADpufn4+Fy9ezOrqatVVju3jH/94nnzyyfT391ddBQCAO6xedQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOD2Dg4O0mw2Mzc397ZcvXo1c3Nz2djYqLom8AH19PRkamoq09PTh7mxn5mZydTUVIaHh1MURdVVAQAAAAAAKnX9+vV89atfzauvvpqyLKuucyyNRiNPP/107rnnnqqrAABQkXrVBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4Dzb2NjI3NzcbbOwsJBWq1V1TeAD6O7uztTUVKanpw8zNTWVmZmZw/sjIyMpiqLqqgAAAAAAACfalStX8txzz+XatWtVVzm2T33qU/niF7+Y3t7eqqsAAFChetUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgrDo4OMji4mLm5uZum42NjaprAh9AvV7P1NRUpqenMz09nampqczMzByup6enMzIyklqtVnVVAAAAAACAU2tvby8vvfRSvvOd71Rd5dguXLiQ2dnZ3H333VVXAQDgBKhXXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE6rjY2NzM3NHebq1atH9ouLi2m1WlXXBN6nrq6uTE1NZXp6+khu3JuZmcnIyEhqtVrVVQEAAAAAAM6sN998M88//3w2NzerrnIsRVHk/vvvz2OPPZbu7u6q6wAAcELUqy4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAn0f7+fhYXFzM3N3fbbG5uVl0TeJ9qtVqmpqYyPT19JFNTU5mZmcnU1FTGxsZSq9WqrgoAAAAAAHAu7ezs5MUXX8z3v//9qqsc28jISGZnZzMzM1N1FQAATph61QUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOBOK8syGxsbmZube1uuXr2aubm5NJvNtFqtqqsC70OtVsvk5GSmp6cPMzU1lZmZmcP1+Ph4arVa1VUBAAAAAAB4i7Is88Ybb+SFF17I9vZ21XWOpSiKfP7zn8/DDz+crq6uqusAAHAC1asuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7ba/v5/FxcVcvXo1c3Nzt8zW1lbVNYH3oVarZWJiItPT02/L1NRUpqenMzExkVqtVnVVAAAAAAAA3qetra08//zz+eEPf1h1lWMbHx/P7OxsJicnq64CAMAJVq+6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvB9lWWZ9fT1zc3O3TbPZTKvVqroq8B7VarVMTExkamoq09PTh7mxn5mZyfj4eLq6uqquCgAAAAAAQBuVZZnXXnstL730UnZ3d6uucyy1Wi0PPfRQPv/5z/u5FgAA76pedQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALjZ/v5+FhYWMjc3d9tsbW1VXRN4j4qiyPj4eKanp49kamoqMzMzmZqaysTEROp1f3YbAAAAAADgPNnY2MilS5dy+fLlqqsc29TUVGZnZzM2NlZ1FQAATgm/LQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwB1TlmXW19czNzd32ywuLqYsy6qrAu9BURQZGxvL9PT0YaampjIzM3O4npycTL3uT2oDAAAAAADwJ8qyzLe//e28/PLLuX79etV1jqWrqyuPPvpoHnjggRRFUXUdAABOEb9RBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABA21y/fj2Li4uZm5u7bba2tqquCbxHY2NjmZ6eflumpqYyPT2dycnJdHd3V10TAAAAAACAU2JtbS2XLl3K1atXq65ybHfddVdmZ2czPDxcdRUAAE6hetUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4HcqyzPr6eubm5jI3N5erV68erm+k2WymLMuqqwLvoru7O5OTk5mYmMjU1FSmpqYyOTmZycnJTE1NZWZmJhMTE+np6am6KgAAAAAAAGdAWZb55je/ma9+9as5ODious6xdHd35/HHH89nPvOZFEVRdR0AAE6petUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACoRqvVysbGRlZWVrK6unrkemN9Izfu7ezsVF0beBcjIyOZmprKxMREpqamMjU1lcnJyUxOTh6uh4eHU6vVqq4KAAAAAADAObC8vJyLFy9mcXGx6irH9uEPfzjPPPNMBgcHq64CAMApV6+6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7bG3t5fV1dXDrKysHF5vXt/8nlarVXVt4D3q6enJ1NRUpqamMjExcbienJw8vE5MTKSnp6fqqgAAAAAAAJCDg4N8/etfzx/90R+d+p9N9/b25oknnsgnP/nJFEVRdR0AAM6AetUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4u7Iss7GxkdXV1aysrGR1dfUwKysrh/duvm5tbVVdG/gAiqLI6OhopqamMjU1lcnJyUxOTh6ub1wvXLiQoiiqrgsAAAAAAADvanFxMRcvXszy8nLVVY7tYx/7WJ566qkMDAxUXQUAgDOkXnUBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDzoNVqZWVl5TCrq6uH15vXN9/b39+vujZwTP39/ZmcnMzU1FSmpqYyOTl5uL9xHR8fT73uT04DAAAAAABw+u3v7+drX/tavvnNb6Ysy6rrHEt/f3+eeuqp3HvvvVVXAQDgDPIbYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAx3D9+vUsLS2l2Wym2WxmcXHxcH1zVlZW0mq1qq4LtEmtVsvExEQmJyczOTmZqampI9cb60ajUXVVAAAAAAAAuCPm5uZy8eLFrK2tVV3l2D75yU/miSeeSF9fX9VVAAA4o+pVFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOIm2t7fTbDbfNWtra1VXBdpscHAwU1NTmZyczOTk5OH65nvj4+Op1WpVVwUAAAAAAIDKXb9+PV/+8pfzrW99K2VZVl3nWBqNRp555pl85CMfqboKAABnXL3qAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd0pZlllfX0+z2XzXbG1tVV0XaLOurq5MTk5mamrqyPWt6/7+/qqrAgAAAAAAwKlw+fLlPPfcc1lfX6+6yrF95jOfyeOPP56enp6qqwAAcA7Uqy4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHBcrVYrq6uraTab75q9vb2q6wIdMDw8nMnJyUxNTR253rweGRlJrVaruioAAAAAAACceru7u3nppZfy3e9+t+oqxzY0NJTZ2dl86EMfqroKAADnSL3qAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAt7O/v5/l5eU0m813zNLSUg4ODqquC3RAT09PJicnMzk5mampqSPXm9c9PT1VVwUAAAAAAIBz4c0338zzzz+fzc3NqqscS1EU+exnP5tHHnkk3d3dVdcBAOCcqVddAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4f3Z3d9NsNt81q6urKcuy6rpAh33605/O/fffn8nJyUxNTWVycvJwPTQ0lKIoqq4IAAAAAAAA597169dz6dKlvP7661VXObbR0dHMzs5menq66ioAAJxT9aoLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnQ1mW2dzcTLPZfNdsbGxUXReoQL1ez/7+fp566qn8/M//fL74xS9mYmKi6loAAAAAAADAe1Cv10/9z/uLosiDDz6Yhx56KF1dXVXXAQDgHKtXXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAONnKssza2lqazeZts7i4mKWlpezs7FRdF6jQyMhIZmZmbpuxsbHUarWqawIAAAAAAAAfQFEUefbZZ/Nbv/VbOTg4qLrO+zY+Pp5nn302ExMTVVcBAIDUqy4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFTj4OAgy8vLaTab75ilpaXs7+9XXReoWHd3d6anpzMzM3PLTE9Pp7+/v+qaAAAAAAAAQAeNjIzk4Ycfzpe//OWqq7xnXV1deeihh/L5z38+tVqt6joAAJAkqVddAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABor729vTSbzXfN6upqWq1W1XWBE2JkZCQzMzOHueuuu47sR0dHU6vVqq4JAAAAAAAAVOxzn/tc3njjjSwuLlZd5V1NT09ndnY2o6OjVVcBAIAj6lUXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADem62trTSbzXfNtWvXqq4KnDDd3d2ZmZm5baanp9PX11d1TQAAAAAAAOAUqNVqmZ2dzT/6R/8orVar6jq3VK/X8+ijj+azn/1siqKoug4AALxNveoCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCelWWZ9fX1NJvNd83W1lbVdYETanR0NDMzM7fN6OhoarVa1TUBAAAAAACAM2J8fDwPPvhgXnnllaqrvM2HPvShzM7OZmhoqOoqAABwW/WqCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAWdRqtbKyspJms/mOWVpayt7eXtV1gROsu7s7MzMzmZmZyV133XW4vpGpqan09fVVXRMAAAAAAAA4Z77whS/kjTfeyMrKStVVkvzJz1a/+MUv5tOf/nSKoqi6DgAAvKN61QUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4DS5fv16lpeX02w2s7i4mGazecssLy+n1WpVXRc4BcbGxjIzM3PbjIyMpFarVV0TAAAAAAAA4Iiurq48++yz+Z3f+Z2UZVlpl4985CN55pln0mg0Ku0BAADvVb3qAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwEuzs7KTZbL5rVldXq64KnCI9PT2ZmZm5baanp9Pb21t1TQAAAAAAAIAPZGpqKg888EC++c1vVvL83t7ePPnkk/nEJz6Roigq6QAAAB9EveoCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANApZVlmY2MjzWbzXbO5uVl1XeAUGhsby8zMzG0zOjqaoiiqrgkAAAAAAADQMY888kjefPPNrK2t3dHn3nvvvXnqqafS399/R58LAADtUK+6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8X61WK6urq2k2m++YpaWl7O7uVl0XOKV6enoyMzNz20xPT6e3t7fqmgAAAAAAAACVqtfrmZ2dze/+7u/ekef19/fn6aefzsc+9rE78jwAAOiEetUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOCGg4ODLC0tpdlsvmOWlpZycHBQdV3glBsbG8vMzMxtMzo6mqIoqq4JAAAAAAAAcOLddddduf/++/Otb32ro8+577778sQTT6S3t7ejzwEAgE6rV10AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgLNvb28vzWbzXbOyspKyLKuuC5wBPT09mZmZyczMTO66667D9Y1MT0+np6en6poAAAAAAAAAZ8Zjjz2WH/3oR9nY2Gj77MHBwTzzzDP58Ic/3PbZAABQhXrVBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ncqyzNbWVprN5rtmfX296rrAGTM+Pp6ZmZnbZmRkJEVRVF0TAAAAAAAA4Nzo6enJM888k3/6T/9pW+fef//9eeyxx9LT09PWuQAAUKV61QUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOHnKssza2lquXLmSy5cvZ25uLs1m8zCLi4tpNpvZ2dmpuipwBvX29mZmZuaWueuuuzI1NZWenp6qawIAAAAAAADwFh/+8Idz33335bXXXjv2rOHh4czOzuauu+5qQzMAADhZ6lUXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAaBwcHmZ+fz+XLl4/kypUruXz5cjY3N6uuCJxR4+PjmZmZyV133ZWZmZm3ZXh4OEVRVF0TAAAAAAAAgA/giSeeyI9//ONsb29/oK8viiIPPPBAHnnkkdTr9Ta3AwCAk8G/dAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADOsK2trVy+fDlXrlw5cr18+XKuXr2ag4ODqisCZ0xvb2/uuuuuzMzM3DJTU1Pp6empuiYAAAAAAAAAHdLb25unn346v/d7v/e+v3Z0dDTPPvtspqamOtAMAABOjnrVBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD44MqyzNLSUi5fvpzLly/nypUrR9bLy8tVVwTOiFqtluHh4YyMjGR0dDRjY2OZmZl5W4aHh1MURdV1AQAAAAAAAKjQxz72sdx77735wQ9+8J7eX6vV8uCDD+YLX/hCurq6OtwOAACqV6+6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADvbG9vL1evXs2VK1dy+fLlI7ly5Up2d3errgicQr29vRkdHc3IyMjbrm+9Nzo6mgsXLqRWq1VdGwAAAAAAAIBT4qmnnnpPv9syMTGRZ599NuPj43eoGQAAVK9edQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkmvXruXy5cuHuXLlyuF1fn4+ZVlWXRE44YaGhjI6OpqRkZHbXm9e9/f3V10ZAAAAAAAAgDOsv78/Tz75ZP7gD/7glq93dXXl4Ycfzuc+97nUarU73A4AAKpVr7oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwHnQarUyPz+fy5cv58qVK7l8+fKR9fr6etUVgROku7s7o6OjGRkZycjIyOH65uvNrw8PD6erq6vq2gAAAAAAAABwxCc+8Ym8/vrr+dGPfnTk/vT0dJ599tmMjIxUUwwAACpWr7oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwFmxvb2dn/zkJ7l8+XIuX76cK1euHK5/8pOfZH9/v+qKQIVGRkYyMTFxmLGxsYyOjmZkZOTIdXR0NP39/SmKourKAAAAAAAAAHAsRVHkmWeeyW/8xm9kb28v3d3defTRR/OzP/uzfi4OAMC5Vq+6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBpUZZlVlZWcvny5SO5cuVKLl++nKWlpaorAndYrVbL+Ph4JiYm3jFjY2Pp7u6uui4AAAAAAAAA3HGNRiOPP/54fvCDH2R2djYX/v/s3etvVHee5/FvlcsGzB3bXFzHdUiTyY3OpZN0OsMSGI12tdqVdlej0f6Vq9FII61W+2wNhJAb0Ammk3QunFOnbIO5GjDgS9U+mOnSeDK52uZn4PWSvqqPCK7zftioy6qdO1MnAQBAco3UAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACbydLSUszMzESn04mqqqKqqv7udDrx4MGD1InAYzA0NBSjo6M/eXv27Il6vZ46FwAAAAAAAAA2tZdeeileeumlqNVqqVMAAGBTaKQOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHjc7t27F1VVRVVV0el0Vu3Z2dnodrupE4ENMjw8HKOjoz95O3fujFqtljoXAAAAAAAAgGfQjRs34vPPP48TJ05EvV5PnbMu/H/wAACwWiN1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMB663a7MTc3F1VVRafTiaqqVt38/HzqRGCd7dq1K0ZHR3/yhoeHU6cCAAAAAAAAwL9rZWUlzp8/H3/84x+j2+3G7t2743e/+13qLAAAYAM0UgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/BqPHj2KTqcTVVVFVVWr9vT0dCwtLaVOBNaoXq/H3r17Y3R09EdvZGQkhoaGUucCAAAAAAAAwK929erVOHXqVNy6dav/Z+fPn4/nnnsu9uzZky4MAADYEI3UAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/nl6vF7dv346qqqLT6URVVav23Nxc6kTgV2o0GjEyMhKjo6Pfu7Gxsf7eu3dvDAwMpM4FAAAAAAAAgA2zvLwcH3/8cVy6dCl6vd6q/7ayshKTk5Px3//7f49arZaoEAAA2AiN1AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAs2t5eTlmZ2ej0+lEVVVRVdWqvbCwkDoR+AW2bt0ao6OjP3m7du2Ker2eOhcAAAAAAAAAkpqeno5Tp07F/Pz8D/6dq1evxqVLl+LVV199jGUAAMBGa6QOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ5uCwsLUVXV967T6cTMzEx0u93UicBP2LlzZ4yOjv7kDQ8PR61WS50LAAAAAAAAAJva4uJifPjhh/GnP/3pZ/39jz/+OPI8j127dm1wGQAA8Lg0UgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAT7ZutxvXr1+PTqcTVVVFVVWr9u3bt1MnAj9g7969MTo6GqOjozE2Ntbf//pGRkZiy5YtqVMBAAAAAAAA4KlQlmWcPn067t+//7N/Znl5OU6fPh3/9b/+16jVahtYBwAAPC6N1AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA5re4uBjT09NRVVVUVRWdTmfVXlxcTJ0I/IuBgYEYGRmJ0dHRH719+/ZFo+HrTQEAAAAAAADgcXj48GF88MEH8ec///lX/Xyn04kvv/wyXnrppXUuAwAAUvApXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACB6vV7Mz89HVVXR6XSiqqpVNzc3F71eL3UmPNOGhoZidHT0J2/Pnj1Rr9dT5wIAAAAAAAAA/+Lbb7+N999/Px48eLCm9zl37lxMTEzE9u3b16kMAABIpZE6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHg8VlZW4urVq1FVVVRVFZ1OZ9W+d+9e6kR4Jg0PD8fY2FiMjo7+6O3YsSNqtVrqXAAAAAAAAADgZ1pYWIj3338/vvvuu3V5v8XFxTh9+nT85//8n32GAAAAnnCN1AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA+llYWIhOpxNVVfVf/7Knp6djZWUldSI8M3bv3h2jo6M/edu2bUudCgAAAAAAAACso16vF3/+85/jgw8+iEePHq3re5dlGd988008//zz6/q+AADA49VIHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8fL1eL27cuBGdTieqqoqqqlbtmzdvpk6Ep1q9Xo99+/bF6Ojoj97IyEgMDg6mzgUAAAAAAAAAHrN79+7F6dOno91ub9gzzp49G81mM7Zt27ZhzwAAADZWI3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsNri4mLMzs5GVVWrrtPpRKfTiYcPH6ZOhKfO4OBgjI6O/uTt3bs36vV66lwAAAAAAAAAYJPp9Xrxpz/9KT788MNYWlra0Gc9fPgw3n///fiP//E/buhzAACAjdNIHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPovn5+aiqKjqdTlRVtWpfvXo1er1e6kR4Kmzbti1GR0d/8MbGxmJ0dDR27twZtVotdS4AAAAAAAAA8AS6c+dOnDp1KmZmZh7bM7/99tv47rvv4rnnnntszwQAANZPI3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPI263W5cu3YtqqqKqqqi0+ms2vPz86kT4Ym2a9euGB0d/ckbHh5OnQoAAAAAAAAAPKV6vV58/vnn8cknn8Ty8vJjf/77778f4+PjsWXLlsf+bAAAYG0aqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgSfXw4cPodDpRVVX/9S83MzMTS0tLqRPhiVKr1WLv3r0xOjr6kzc0NJQ6FwAAAAAAAAB4ht26dSsmJyfj2rVryRoWFhbigw8+iL/5m79J1gAAAPw6jdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsFn1er24detWVFXVv06n0983btxInQhPhIGBgRgZGYnR0dEYHR2NsbGx/v7Xt2/fvhgYGEidCwAAAAAAAADwg7rdbly8eDEuXLgQKysrqXPiq6++iiNHjsTExETqFAAA4BdopA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAlJaXl2NmZiaqqopOpxNVVfV3p9OJhYWF1ImwaW3ZsiVGR0d/8nbv3h31ej11LgAAAAAAAADAmly/fj0mJyfjxo0bqVNWOX36dPzP//k/Y3BwMHUKAADwMzVSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBGu3fvXlRVFZ1OJ6qqWrVnZ2ej2+2mToRNaevWrdFsNiPLssiyrL8PHToUY2NjsX379qjVaqkzAQAAAAAAAAA21MrKSnz66afxxz/+MXq9Xuqc77l37158+OGHcfz48dQpAADAz9RIHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABr1e124/r161FV1feu0+nEnTt3UifCprVv377IsmzVNZvNyLIs9u3bF7VaLXUiAAAAAAAAAEAyV69ejcnJybh9+3bqlB91+fLlOHLkSBw6dCh1CgAA8DM0UgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAz/Ho0aPodDpRVdX3Xqenp2NxcTF1ImxKjUYjxsfHo9lsRpZl/dcsy2J8fDyGh4dTJwIAAAAAAAAAbDpLS0vx8ccfx9TUVPR6vdQ5P8upU6fi7//+76PRaKROAQAAfoL/1Q4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMCm0Ov14vbt29HpdKKqqqiqatWem5tLnQib1o4dOyLLssiyLJrN5qp98ODBqNfrqRMBAAAAAAAAAJ4YnU4nTp06FXfv3k2d8ovcuXMnPvnkk3j33XdTpwAAAD+hkToAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAZ8fKykrMzs5GVVXR6XSiqqpVt7CwkDoRNqVarRb79++PZrMZWZZ973bu3Bm1Wi11JgAAAAAAAADAE21xcTHOnTsXX3zxReqUX+3zzz+PI0eOxNjYWOoUAADgRzRSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPB0WVhYiKqqVl2n04mqqmJmZia63W7qRNiUhoaGIsuy/jWbzf4+dOhQDA0NpU4EAAAAAAAAAHhqFUURZ86cifv376dOWbOZmZkYGxtLnQEAAPyIRuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnizdbjdu3LgRVVVFVVXR6XRW7Vu3bqVOhE1r7969kWVZNJvNyLJs1R4ZGYl6vZ46EQAAAAAAAADgmfLw4cM4e/ZsfP3116lT1mzPnj1x8uTJOHDgQOoUAADgJzRSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALD5LC4uxvT0dHQ6naiqKqqqWrUXFxdTJ8KmVK/XY3x8PJrNZmRZ1n/9y96+fXvqRAAAAAAAAAAAIqLX68W3334bZ8+ejQcPHqTOWZNarRZvvPFGvPnmmzEwMJA6BwAA+BkaqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4/Hq9XszPz0en04mqqr53c3Nz0ev1UmfCpjQ8PBxZln3vms1mHDx40Be9AwAAAAAAAABscgsLC3HmzJm4cuVK6pQ1GxkZiZMnT8bo6GjqFAAA4BdopA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgY3S73ZidnY2qqqLT6URVVav2vXv3UifCprV///5oNpuRZVlkWbZq7969O2q1WupEAAAAAAAAAAB+oV6vF1999VWcO3cuHj16lDpnTQYGBuLNN9+M119/Per1euocAADgF2qkDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODXW1hYiOnp6aiqKqqqik6n098zMzOxvLycOhE2paGhoRgfH48syyLLsmg2m/3XZrMZW7ZsSZ0IAAAAAAAAAMA6unv3bpw+fTqqqkqdsmb79++PkydPxt69e1OnAAAAv1IjdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/rNfrxc2bN6OqqqiqKjqdTn9XVRU3b95MnQib1u7duyPLsmg2m5Fl2aobHR2Ner2eOhEAAAAAAAAAgA3W6/Xi8uXL8dFHH8XS0lLqnDVpNBrx+9//Pn77299GrVZLnQMAAKxBI3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAs25paSlmZmaiqqr+dTqd/uvDhw9TJ8KmVK/X4+DBg5FlWWRZFs1mc9XesWNH6kQAAAAAAAAAABK6c+dOTE5OxuzsbOqUNRsfH48TJ07Erl27UqcAAADroJE6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4FkwPz8fnU4nqqrqv/5lX716NbrdbupE2JS2bdsWWZZFlmXRbDZX7UOHDkWj4asZAQAAAAAAAABYrdvtxueffx6ffPJJrKyspM5Zk8HBwXj33XfjpZdeilqtljoHAABYJz4JDwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsA663W5cu3YtqqqKTqcTVVWt2vPz86kTYdMaHR2NZrMZWZZFlmWr9t69e325OgAAAAAAAAAAP9vNmzdjcnIy5ubmUqes2cTERLz33nuxY8eO1CkAAMA6a6QOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeFI8fPgwpqeno6qq793MzEwsLS2lToRNqdFoxPj4eGRZtuqazWY0m83YunVr6kQAAAAAAAAAAJ5wKysrcfHixbhw4UJ0u93UOWuyZcuWOHbsWDz//PNRq9VS5wAAABugkToAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgs+j1enHr1q2oqio6nU5UVbVqX79+PXUibFq7du2KLMui2WxGlmWr9v79+6Ner6dOBAAAAAAAAADgKTU3NxeTk5Nx8+bN1Clr9txzz8Xx48dj27ZtqVMAAIAN1EgdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8DgtLy/HzMxMdDqdqKoqqqrq706nEwsLC6kTYVOq1Wpx4MCByLIssiyLZrO5au/atSt1IgAAAAAAAAAAz5jl5eX49NNP47PPPoter5c6Z022bdsWx48fj+eeey51CgAA8Bg0UgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACst/v370dVVVFVVXQ6nf6uqipmZ2ej2+2mToRNaevWrdFsNiPLsv7rX+7QoUMxODiYOhEAAAAAAAAAACIiYmZmJk6dOhV37txJnbJmf/VXfxXHjh2LLVu2pE4BAAAek0bqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgF+q1+vFrVu3oiiKaLfbUVVVdDqdqKoqqqp6Kr50GjbKvn37Isuy/jWbzf7et29f1Gq11IkAAAAAAAAAAPCDlpaW4qOPPoqpqanUKWu2ffv2OHHiRExMTKROAQAAHrNG6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAf8uDBgyjLMoqi6L/+Zd+7dy91HmxKAwMDMT4+HlmWRbPZjCzL+rvZbMbw8HDqRAAAAAAAAAAA+FWqqorTp0/H3bt3U6es2csvvxx/+MMfYmhoKHUKAACQQCN1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8GxbWVmJ6enpKIoiyrKMoij6+9q1a6nzYFPasWNHZFkWzWYzsixbtQ8cOBADAwOpEwEAAAAAAAAAYN08evQozp07F19++WXqlDXbtWtXnDhxIsbHx1OnAAAACTVSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE+/Xq8XN2/ejKIooiiKKMuyv6uqipWVldSJsKnUarUYGxuLLMu+d81mM3bt2hW1Wi11JgAAAAAAAAAAbLgrV67EmTNnYmFhIXXKmtRqtXj11Vfj7bffjkajkToHAABIzL8KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAdbOwsBBlWUZZlnHlypX+Looi7t+/nzoPNpWhoaHIsiyyLItms7nqdXx8PIaGhlInAgAAAAAAAABAMg8ePIizZ8/GN998kzplzfbu3RsnT56M/fv3p04BAAA2iUbqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4MmyvLwc09PTURRFlGUZRVH099zcXOo82FT27t0bzWYzsiyLLMtW7ZGRkajX66kTAQAAAAAAAABgU+n1evHNN9/E2bNn4+HDh6lz1qRer8frr78eb775ZgwMDKTOAQAANpFG6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGDz6fV6cePGjSjLMq5cuRJlWfZ3p9OJlZWV1ImwKdTr9Th06FBkWRbNZjOyLOtfs9mM7du3p04EAAAAAAAAAIAnxv379+PMmTNRFEXqlDUbHR2NkydPxsjISOoUAABgE2qkDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANJZWFiIoiiiLMsoimLVXlhYSJ0Hm8Lw8HBkWbbqms1mZFkWBw4ciEbDVwMCAAAAAAAAAMBa9Hq9+PLLL+PcuXOxuLiYOmdNBgYG4q233orXXnst6vV66hwAAGCT8psIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwlFteXo5OpxNFUURZllEURX9fv349dR5sCmNjY5FlWWRZFs1mc9Xes2dP1Gq11IkAAAAAAAAAAPBUunv3bpw6dSo6nU7qlDU7cOBAnDx5Mvbs2ZM6BQAA2OQaqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIC16/V6cf369SjLMoqi6F9ZllFVVXS73dSJkNTQ0FCMj49HlmXRbDa/97ply5bUiQAAAAAAAAAA8Ezp9XoxNTUVH330USwvL6fOWZNGoxHvvPNOHD16NGq1WuocAADgCdBIHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPx89+/fj6IooizLKIqiv8uyjIWFhdR5kNTu3buj2WxGlmXfu9HR0ajX66kTAQAAAAAAAACAiLh9+3ZMTk7G1atXU6esWbPZjPfeey927dqVOgUAAHiCNFIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqy0tLUWn04myLKMoiiiKor9v3LiROg+SqdfrcfDgwciyLJrNZmRZtmrv2LEjdSIAAAAAAAAAAPAjut1ufPbZZ/Hpp5/GyspK6pw1GRoainfffTdefPHFqNVqqXMAAIAnTCN1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPIt6vV7Mzc1FURRRlmUURdHfnU4nut1u6kRIYtu2bZFlWTSbzciybNU+dOhQNBq+hg8AAAAAAAAAAJ5EN27ciMnJybh+/XrqlDVrtVrx3nvvxfbt21OnAAAATyi/HQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvo3r17UZZlFEURRVH0d1mW8eDBg9R5kMTIyEhkWRZZlkWz2ezvLMti7969UavVUicCAAAAAAAAAADrZGVlJS5cuBAXL16MbrebOmdNtm7dGseOHYsjR474nBMAALAmjdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwpFtaWoqqqqIsyyiKIoqi6O+bN2+mzoPHrtFoxPj4eGRZ1r9msxlZlsX4+Hhs27YtdSIAAAAAAAAAAPAYXLt2LSYnJ+PWrVupU9bsyJEjcezYMZ9/AgAA1kUjdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwJer1ezM3NxZUrV6IsyyjLsr+np6ej2+2mToTHateuXdFsNiPLssiybNXev39/1Ov11IkAAAAAAAAAAEAiy8vL8cknn8Tnn38evV4vdc6aDA8Px/Hjx+Pw4cOpUwAAgKdII3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsJnfv3o2yLKMoiiiKor/LsoyHDx+mzoPHplarxYEDByLLsmg2m5Fl2aq9a9eu1IkAAAAAAAAAAMAmNDMzE6dOnYo7d+6kTlmzF154If76r/86tmzZkjoFAAB4yjRSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwOO2uLgYVVVFWZZRFEUURdHft27dSp0Hj82WLVsiy7JoNpuRZdmqO3jwYAwNDaVOBAAAAAAAAAAAnhCLi4vx0UcfxeXLl1OnrNmOHTvivffei4mJidQpAADAU6qROgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADZCt9uNubm5KIoiiqKIsiz7e2ZmJrrdbupEeCz27dsXWZZFlmXRbDZX7ZGRkajVaqkTAQAAAAAAAACAJ1y73Y7Tp0/HvXv3Uqes2dGjR+Odd96JwcHB1CkAAMBTrJE6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1mJ+fj7KsoyiKKIoiv4uyzIePXqUOg823MDAQIyPj0ez2YwsyyLLsv5uNpsxPDycOhEAAAAAAAAAAHiKzc7Oxv/5P/8ndcaa7d69O06cOBGHDh1KnQIAADwDGqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgpywuLkZVVVEURRRFEWVZ9vft27dT58GG2759e2RZ1r9ms9nfBw4ciIGBgdSJAAAAAAAAAADAM+rAgQMxMTER7XY7dcqvUqvV4rXXXou33norGo1G6hwAAOAZ4V8fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsCt1uN65duxZFUfSvLMsoiiJmZmai1+ulToQNU6vVYmxsLLIsW3XNZjOyLItdu3ZFrVZLnQkAAAAAAAAAAPA9tVot3nvvvfhf/+t/xdLSUuqcX2Tfvn1x8uTJGBsbS50CAAA8YxqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeLbMz89HURRRFEWUZblqLy4ups6DDTM0NBRZlkWz2Ywsy1bt8fHxGBoaSp0IAAAAAAAAAADwq+zYsSP+8Ic/xJkzZ1Kn/Cz1ej1+97vfxRtvvBEDAwOpcwAAgGdQI3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPn8XFxWi321EURRRFEWVZ9vedO3dS58GG2bNnT2RZFlmWRbPZXLVHR0ejXq+nTgQAAAAAAAAAANgQL7/8cnzzzTcxMzOTOuVHjY2NxcmTJ2Pfvn2pUwAAgGdYI3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPpm63G7Ozs1GWZZRlGVeuXOnvmZmZ6PV6qRNh3dXr9Th06FA0m83IsmzVNZvN2L59e+pEAAAAAAAAAACAJGq1Wpw4cSL+4R/+IZaXl1PnfM/AwEC8/fbb8eqrr0a9Xk+dAwAAPOMaqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANjc7ty5E0VRRFEUUZZlf7fb7VhcXEydB+tueHg4sizrX7PZ7O8DBw5Eo+Fr4AAAAAAAAAAAAP49u3fvjrfffjvOnTuXOmWVgwcPxsmTJ2P37t2pUwAAACIiwm+nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQjx49ina7HWVZxpUrV6Isy/6en59PnQfrbmxsLLIsi2azGVmWrdp79uyJWq2WOhEAAAAAAAAAAOCJ9Oqrr8a3334b165dS50Sg4OD8c4778Qrr7zic2EAAMCm0kgdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA49HtdmN2djaKooiyLKMoiv6enZ2NXq+XOhHWzeDgYDSbzWg2m5FlWf81y7IYHx+PrVu3pk4EAAAAAAAAAAB4KtVqtTh58mT8wz/8Q3S73WQdzWYzTpw4ETt37kzWAAAA8EMaqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFg/vV4v7ty5E0VRRFEUUZZlf1dVFYuLi6kTYd3U6/XIsizyPI9Wq9V/nZiYiLGxsajX66kTAQAAAAAAAAAAnkl79+6NN998Mz755JPH/uyhoaH467/+63jhhReiVqs99ucDAAD8HI3UAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/HIPHz6MdrsdRVFEWZZRFEV/z8/Pp86DdTU6OhqtVisOHz4crVarv8fHx6PR8JVsAAAAAAAAAAAAm9Ebb7wR3333Xdy4ceOxPTPP8zh+/Hhs3779sT0TAADg1/AbMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAm1S3242ZmZkoiiLKsoyiKPp39erV1HmwroaHhyPP82i1WpHn+ao9PDycOg8AAAAAAAAAAIBfqF6vx8mTJ+Mf//Efo9frbeiztm7dGv/hP/yH+M1vfhO1Wm1DnwUAALAeGqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACeZb1eL27fvh1FUURZllEURX+32+1YWlpKnQjrZmBgILIsizzPo9VqRZ7n/T0yMuKLoQEAAAAAAAAAAJ4yo6Oj8frrr8fFixc37BlHjhyJY8eOxbZt2zbsGQAAAOutkToAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOBZ8ODBg2i321EURZRlGUVR9Pfdu3dT58G6Ghsbi1arFXme96/VasX4+Hg0Gr5CDQAAAAAAAAAA4Fny1ltvxZUrV+L27dvr+r7Dw8Px3nvvRZ7n6/q+AAAAj4PfsAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWCfdbjemp6ejLMu4cuVKlGXZ39euXUudB+tqeHg4Dh8+HK1WK/I8jzzPo9VqRavViuHh4dR5AAAAAAAAAAAAbBIDAwNx8uTJ+Kd/+qfo9Xrr8p4vvvhivPvuu7Fly5Z1eT8AAIDHrZE6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgSdLr9eLWrVtRFEWUZRlFUfR3VVWxtLSUOhHWTaPRiCzLotVqRZ7nked5f+/bty9qtVrqRAAAAAAAAAAAAJ4ABw4ciKNHj8alS5fW9D47d+6MEydORLPZXKcyAACANBqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANqMHDx5Eu92OK1euRFmWUZZlf9+7dy91Hqyr/fv3R57n0Wq1Is/z/h4fH4+BgYHUeQAAAAAAAAAAADwFfv/730dRFHH37t1f/LO1Wi1eeeWVeOedd2JwcHAD6gAAAB6vRuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBUVlZWYnp6OsqyjKIooiiK/r527VrqPFhX27dvjzzP+9dqtSLP85iYmIjh4eHUeQAAAAAAAAAAADzlBgcH48SJE/G///f//kU/t3v37jh58mQcPHhwg8oAAAAev0bqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAjdTr9eLmzZtRFEWUZRlFUfR3VVWxvLycOhHWTaPRiImJiWi1WpHneeR53t979+6NWq2WOhEAAAAAAAAAAIBnWLPZjJdeeim++OKLn/y7tVotXnvttXjrrbei0Wg8hjoAAIDHx79yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICnwsLCQpRlGWVZRlEUURRFf9+/fz91Hqyr/fv3x+HDh6PVakWr1ervQ4cOxcDAQOo8AAAAAAAAAAAA+EHvvvtutNvtH/1858jISJw4cSLGxsYeYxkAAMDj00gdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwcy0vL8f09HSUZRlFUURRFP09NzeXOg/W1Y4dOyLP8/61Wq3I8zwmJiZi27ZtqfMAAAAAAAAAAADgVxkaGorjx4/H//2///d7/61er8ebb74Zr7/+egwMDCSoAwAAeDwaqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP61Xq8XN27ciLIsoyiKKIqiv6uqipWVldSJsG4GBwdjYmIiWq1W5HkeeZ5Hq9WKVqsVe/fujVqtljoRAAAAAAAAAAAA1l2e5/H888/H119/3f+z/fv3x4kTJ2Lfvn0JywAAAB6PRuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODZtLCwEEVRRFmWURTFqr2wsJA6D9bVgQMHIs/zyPM8Wq1Wfx86dCjq9XrqPAAAAAAAAAAAAHjsjh07Fp1OJxYXF+P3v/99vPrqq1Gr1VJnAQAAPBaN1AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwNNreXk5pqenoyiKKIoiyrKMK1euRFmWcf369dR5sK527twZeZ73r9VqRZ7nMTExEVu3bk2dBwAAAAAAAAAAAJvK1q1b42//9m9jx44dsXv37tQ5AAAAj1UjdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8GTr9Xpx/fr1KMsyiqKIoij6u9PpxMrKSupEWDeDg4MxMTEReZ5HnufRarX6e/fu3VGr1VInAgAAAAAAAAAA8JTq9Xpx//792LFjR+qUddNsNlMnAAAAJNFIHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBnu378fRVFEWZZRlmVcuXKlvxcWFlLnwbo6ePBg5Hnev1arFXmex8GDB6Ner6fOAwAAAAAAAAAA4Blz69atmJycjEePHsXf//3fR6PRSJ0EAADAGvhXHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQt7S0FNPT01EURRRFEWVZ9veNGzdS58G62rVrV+R5HnmeR6vV6u+JiYnYsmVL6jwAAAAAAAAAAACIlZWVuHjxYly4cCG63W5ERHz66afxhz/8IXEZAAAAa9FIHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPF69Xi/m5uaiLMsoiiKKoujvTqfT/wJbeBoMDQ3FxMRE5HkeeZ5Hq9Xq7927d6fOAwAAAAAAAAAAgB80NzcXp06dihs3bqz6888++yx+85vfxNjYWKIyAAAA1qqROgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2Bj37t2LsiyjKIr+61/2gwcPUufBuqnVanHo0KFotVrRarXi8OHD/X3w4MGo1+upEwEAAAAAAAAAAOBnW15ejk8//TQ+++yz6PV63/vvvV4vJicn4+/+7u9iYGAgQSEAAABr1UgdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8ektLS9HpdKIoiiiKIsqy7O+bN2+mzoN1tXv37sjzPPI8j1ar1d9ZlsWWLVtS5wEAAAAAAAAAAMCazc7OxuTkZNy5c+dH/97Nmzfj4sWL8dZbbz2mMgAAANZTI3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPDjer1ezM3NRVEUURRFlGXZ39PT09HtdlMnwroZGhqKVqsVrVYrDh8+3N95nsfu3btT5wEAAAAAAAAAAMCGWFpaio8++iguX74cvV7vZ/3MhQsX4rnnnot9+/ZtcB0AAADrrZE6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4Z3fv3o2yLKMoiiiKor/LsoyHDx+mzoN1U6vV4tChQ5HnebRarcjzvL8PHDgQ9Xo9dSIAAAAAAAAAAAA8Np1OJ06dOhV37979RT/X7XZjcnIy/sf/+B8+ewcAAPCEaaQOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBnyeLiYnQ6nSiKIsqyjKIo+vvmzZup82Bd7dmzJ/I8jzzPo9Vq9XeWZTE0NJQ6DwAAAAAAAAAAAJJ69OhRnDt3Lr788stf/R5zc3Px+eefx+uvv76OZQAAAGy0RuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHjadLvdmJubi6IooiiKKMuyv2dmZqLb7aZOhHWzZcuWaLVaked5//Uve9euXanzAAAAAAAAAAAAYFMqiiLOnDkT9+/fX/N7ffLJJ3H48OHYvXv3OpQBAADwODRSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAk2p+fj7KsoyyLOPKlSv9XZZlPHz4MHUerJt6vR6HDh2KPM+j1WpFnuf9Gxsbi3q9njoRAAAAAAAAAAAAnggPHjyIs2fPxjfffLNu77myshKTk5Px3/7bf4tarbZu7wsAAMDGaaQOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDNrtvtxpUrV+LSpUsxNTUVX3/9dZRlGbdu3UqdButq7969ked5tFqtyPO8v7Msi6GhodR5AAAAAAAAAAAA8MTq9Xrx7bffxvvvvx8PHz5c9/efnZ2Ny5cvx9GjR9f9vQEAAFh/jdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALCZ9Hq9/pe0Tk1NxaVLl+KLL76IhYWF1GmwLrZs2RJ5nkee59Fqtfp7YmIidu3alToPAAAAAAAAAAAAnjr379+PM2fORFEUG/qcjz76KFqtVuzcuXNDnwMAAMDaNVIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBKd+7ciampqbh8+XJMTU3F1NRU3Lx5M3UWrEm9Xo/x8fFotVpx+PDhaLVa/T06Ohr1ej11IgAAAAAAAAAAADz1er1efPXVV/HBBx/E4uLihj9vaWkpTp8+Hf/lv/yXqNVqG/48AAAAfr1G6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeFwePnwYX375ZUxNTcWlS5fi8uXLUVVV6iz41fbt2xd5nker1Yo8z/u72WzG0NBQ6jwAAAAAAAAAAAB4Zt29ezdOnToVnU7nsT63qqr46quv4sUXX3yszwUAAOCXaaQOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICNsLKyEt9++21MTU317+uvv45ut5s6DX6RrVu3RqvVisOHD0er1erviYmJ2LlzZ+o8AAAAAAAAAAAA4F/p9Xpx+fLl+Oijj2JpaSlJw7lz52JiYiKGh4eTPB8AAICf1kgdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABr1ev1YmZmJi5duhRTU1MxNTUVX3zxRTx8+DB1Gvws9Xo9ms1mtFqtyPM88jzv77GxsajVaqkTAQAAAAAAAAAAgJ9w586dmJycjNnZ2aQdjx49ijNnzsR/+k//yWcQAQAANqlG6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+KVu3boVly9fjqmpqbh06VJMTU3FnTt3UmfBTxoZGYk8z6PVakWe5/3dbDZjcHAwdR4AAAAAAAAAAADwK3S73fj888/jk08+iZWVldQ5ERFx5cqV+Pbbb+PIkSOpUwAAAPh3NFIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMCPWVhYiC+++CIuX74cU1NTMTU1FdPT06mz4Adt27Yt8jyPVqsVeZ73d6vVih07dqTOAwAAAAAAAAAAANbRzZs3Y3JyMubm5lKnfM/Zs2ej2WzG1q1bU6cAAADwbzRSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABARESv14tbt25FVVXx9ddfx9TUVExNTcW3334b3W43dR6sUq/XI8uyaLVaked55Hne36Ojo1Gr1VInAgAAAAAAAAAAABtoZWUlLl68GBcuXNi0n3V98OBBnD17Nv72b/82dQoAAAD/RiN1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPjl6vF9evX492ux1VVUW73V51CwsLqRNhldHR0Wi1WpHneeR53t/NZjMaDV8DBQAAAAAAAAAAAM+iubm5mJycjJs3b6ZO+Ulff/11HDlyJPI8T50CAADAv+K30wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYV91uN65duxbtdjva7XZUVdXf7XY7Hj16lDoRVhkeHo48z6PVakWe5/3darVi+/btqfMAAAAAAAAAAACATWJ5eTk++eST+Pzzz6PX66XO+dnOnDkThw4diqGhodQpAAAA/ItG6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnjwrKysxOzsb7Xa7f1VVRbvdjk6nE4uLi6kTYZWBgYFoNpuR53nkeR6tVisOHz4crVYrRkZGolarpU4EAAAAAAAAAAAANrGZmZk4depU3LlzJ3XKL3b//v04d+5cnDhxInUKAAAA/6KROgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAzWlpaSlmZmai3W6vuqqqotPpxMrKSupE+J6xsbFotVqR53nked7f4+Pj0Wj42iYAAAAAAAAAAADgl1laWoqPPvoopqamUqesyRdffBHPP/98jI+Pp04BAAAgIvy2GwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAz7NGjR9HpdKLdbvevqqpot9sxOzsb3W43dSJ8z/DwcBw+fDharVa0Wq1Ve3h4OHUeAAAAAAAAAAAA8JSoqipOnToV9+7dS52yZq+88kqMjY2lzgAAAOBfNFIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALCxHjx4EFVVRbvd/t5du3YtdR78uwYGBiLLssjzPPI8j1ar1d/79u2LWq2WOhEAAAAAAAAAAAB4Sj169Cg++OCD+Oqrr1KnrNnu3bvjxIkTcejQodQpAAAA/CuN1AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArN29e/ei3W5Hu92OqqpW7evXr6fOgx+0f//+aLVa0Wq14vDhw/3dbDZjYGAgdR4AAAAAAAAAAADwjLly5UqcOXMmFhYWUqesSa1Wi1dffTXefvvtaDQaqXMAAAD4N/xLDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAJ0Ov1Yn5+Ptrtdv+qqurv27dvp06EH7R9+/bI8zzyPI9Wq9XfExMTMTw8nDoPAAAAAAAAAAAAIB48eBDvv/9+fPvtt6lT1mzv3r1x8uTJ2L9/f+oUAAAAfkAjdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/6zX68WdO3eiLMsoyzLa7Xa02+2oqira7XbcvXs3dSL8oEajEVmWRZ7nked5tFqt/t67d2/UarXUiQAAAAAAAAAAAADf0+v14ptvvomzZ8/Gw4cPU+esSb1ejzfeeCN+97vfxcDAQOocAAAAfkQjdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAs2ZhYSHKslx1RVFEu92O+fn51Hnwo/bv3x95nkee59Fqtfr70KFDvswWAAAAAAAAAAAAeKLcv38/Tp8+HWVZpk5Zs7GxsThx4kSMjIykTgEAAOBnaKQOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgaLS4uRlVVUZbl9+769eup8+BH7dixI/I871+r1Yo8z2NiYiK2bduWOg8AAAAAAAAAAABgTXq9XnzxxRfx4YcfxuLiYuqcNRkYGIi33norXnvttajX66lzAAAA+JkaqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnlTdbjdmZmaiKIpot9tRFEWUZRllWcbs7Gx0u93UifCDGo1GTExMRJ7n0Wq1Is/z/t67d2/UarXUiQAAAAAAAAAAAADr7u7du3Hq1KnodDqpU9bswIEDcfLkydizZ0/qFAAAAH6hRuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgM2s1+vF9evXoyzLKIoi2u12FEURZVlGp9OJpaWl1Inwow4cOBB5nkee59Fqtfr74MGDMTAwkDoPAAAAAAAAAAAA4LHo9Xpx6dKl+Pjjj2N5eTl1zpoMDg7G73//+zh69GjUarXUOQAAAPwKjdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJvB/Px8FEURZVn2ryiKaLfb8eDBg9R58KN27twZeZ5Hq9WKw4cPR6vV6t/WrVtT5wEAAAAAAAAAAAAkdfv27ZicnIyrV6+mTlmzZrMZJ06ciJ07d6ZOAQAAYA0aqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHpeFhYWoqiqKooiyLPtXFEXMz8+nzoMfNTg4GBMTE5HnebRarcjzvL/37NkTtVotdSIAAAAAAAAAAADAptLtduOPf/xjnD9/PlZWVlLnrMnQ0FC8++678eKLL/rcKAAAwFOgkToAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYD0tLS1Fp9OJsiyjKIpot9tRFEWUZRlzc3Op8+AnHTx4MFqtVhw+fDharVZ/Hzx4MOr1euo8AAAAAAAAAAAAgCfCjRs3YnJyMq5fv546Zc3yPI/jx4/H9u3bU6cAAACwThqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+qW63G7Ozs1GWZZRlGUVRRLvdjqIoYmZmJrrdbupE+FG7du2KPM+j1WpFnuf9PTExEVu3bk2dBwAAAAAAAAAAAPDEWllZifPnz8cf//jHJ/5zxVu3bo1jx47FkSNHolarpc4BAABgHTVSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8e3q9Xty4cSPKsvzetdvtWFpaSp0IP2poaCgmJiYiz/NotVqR53l/79mzJ3UeAAAAAAAAAAAAwFPn2rVrMTk5Gbdu3UqdsmZHjhyJY8eOxbZt21KnAAAAsAEaqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAZ9v8/Hy02+0oiiLKslx1CwsLqfPgJw0PD8fLL78cR44ciTzPI8/zaLVacfDgwajX66nzAAAAAAAAAAAAAJ56y8vL8fHHH8elS5ei1+ulzlmT4eHhOH78eBw+fDh1CgAAABuokToAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAePo9ePAg2u12tNvtKIoiyrLs3+3bt1Pnwc/WaDTihRdeiFdeeSWOHj0aR48ejcOHD0e9Xk+dBgAAAAAAAAAAAPBMmp6ejlOnTsX8/HzqlDV78cUX4913340tW7akTgEAAGCDNVIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE+HpaWlmJ6ejrIsoyzLKIoi2u12FEUR165dS50Hv0qe53H06NH+vfDCCzE0NJQ6CwAAAAAAAAAAAOCZt7i4GB9++GH86U9/Sp2yZjt37oz33nsvsixLnQIAAMBj0kgdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw5ut1uXL16Ncqy7F9RFNFut6PT6US3202dCL/a2NhYHD16tH8vv/xy7Ny5M3UWAAAAAAAAAAAAAP9Gu92O06dPx71791KnrNnRo0fjnXfeicHBwdQpAAAAPEaN1AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA5tLr9eLWrVtRFEW02+0oiiLKsoyyLKPdbsfi4mLqRFiz7du3x9GjR/v3yiuvxP79+1NnAQAAAAAAAAAAAPAjHj16FGfPno0///nPqVPWbPfu3XHixIk4dOhQ6hQAAAASaKQOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANK4e/dutNvtKMsyyrKMoij6+/79+6nzYN0MDg7Giy++GK+88kr89re/jaNHj8bExETU6/XUaQAAAAAAAAAAAAD8TN99912cOXMmHjx4kDplTWq1Wrz22mvx1ltvRaPRSJ0DAABAIv5FCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE+xR48eRbvdjrIs+1cURbTb7bh582bqPFh3tVotnnvuuTh69Gi88sorcfTo0firv/qrGBwcTJ0GAAAAAAAAAAAAwK/w4MGDOHPmTHz33XepU9Zs3759cfLkyRgbG0udAgAAQGKN1AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA2iwvL8f09HSUZbnqiqKIq1evps6DDXXgwIE4evRo/Pa3v41XXnklXn755di+fXvqLAAAAAAAAAAAAADWqNfrxddffx1nz56NR48epc5Zk3q9Hr/73e/ijTfeiIGBgdQ5AAAAbAKN1AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAT+t2uzE3NxdFUURZlquu0+nEyspK6kTYcDt37oyjR4+uupGRkdRZAAAAAAAAAAAAAKyze/fuxenTp6PdbqdOWbOxsbE4efJk7Nu3L3UKAAAAm0gjdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwz3q9Xty+fTvKsoyiKKLdbkdRFFGWZbTb7Xj06FHqRNhwW7ZsiYmJif5lWdZ/PXjwYNRqtdSJAAAAAAAAAAAAAGyQXq8XX3zxRZw7dy6WlpZS56zJwMBAvP322/Hqq69GvV5PnQMAAMAm00gdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+a+/fvR1mWUZZlFEUR7XY7iqKIsizj3r17qfNgww0PD8fExMSqy7IsJiYmYnR0NGq1WupEAAAAAAAAAAAAAB6z+fn5mJycjJmZmdQpa3bw4ME4efJk7N69O3UKAAAAm1QjdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8jRYXF6OqqiiKIsqy7F9RFHHz5s3UebDhdu7cGRMTE9+7LMti7969UavVUicCAAAAAAAAAAAAsAn0er24dOlSfPzxx7G8vJw6Z00GBwfjnXfeiVdeecXnZQEAAPhRjdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8KRaWVmJ6enpaLfbURRFlGXZv9nZ2ej1eqkTYUPt2bMnJiYmYmJiIrIs6+9WqxW7du1KnQcAAAAAAAAAAADAJnfr1q04depUXL16NXXKmmVZFu+9917s3LkzdQoAAABPgEbqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANjMer1ezM3NRVmWUZZlFEUR7XY7iqKITqcTy8vLqRNhQ42MjMTExET/sizrv/oCVQAAAAAAAAAAAAB+jW63GxcvXowLFy7EyspK6pw12bJlS7z77rvxwgsvRK1WS50DAADAE6KROgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2g16vFzMzM3Hp0qX4+uuvoyzL/j18+DB1Hmyo/fv3x8TExKrLsiyyLIvh4eHUeQAAAAAAAAAAAAA8Ra5fvx6Tk5Nx48aN1Clrdvjw4Th+/LjP3AIAAPCLNVIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAq9Xi+uXLkSFy5ciPPnz8f58+fj2rVrqbNgQ9Tr9Th48GBkWRYTExOrrtlsxpYtW1InAgAAAAAAAAAAAPCUW1lZifPnz8fFixej1+ulzlmTbdu2xbFjx+I3v/lN1Gq11DkAAAA8gRqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOBx6Ha78ec//znOnz8fFy5ciAsXLsStW7dSZ8G6qdfr0Ww2Y2JiIrIsi4mJif4dOnQohoaGUicCAAAAAAAAAAAA8Iy6evVqTE5Oxu3bt1OnrNnzzz8fx44di61bt6ZOAQAA4AnWSB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG2FpaSn+9Kc/xYULF+L8+fNx8eLFuH//fuosWJPBwcFoNpsxMTERExMTkWVZfx88eDAaDV9JAwAAAAAAAAAAAMDmsbS0FB9//HFMTU1Fr9dLnbMm27dvj+PHj0ee56lTAAAAeAr4jVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACeCg8fPoxLly7F+fPn48KFC/HZZ5/Fo0ePUmfBL1av16PZbEar1epfnueRZVkcPHgw6vV66kQAAAAAAAAAAAAA+EkzMzPx//7f/4u7d++mTlmzl156Kf7whz/Eli1bUqcAAADwlGikDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBf4969e/HZZ5/F+fPn4/z583H58uVYXl5OnQU/2/79+yPP82i1Wv3L8zzGx8ej0fDVMgAAAAAAAAAAAAA82RYXF+Pu3bupM9Zk586dceLEiWg2m6lTAAAAeMr4TVIAAP4/e3faHNW57/f7161GIOZ5lLqZBFqr8SB52vYGkQdJ1amcSlInyXkreVPZlZOqpCoPdqVSyLPNloSh1xKjMGAGg82MQEjd/wdJ9M8+29vbtoC7ka6r6ltQqPu+P0+tcvcCAAAAAAAAAAAAAAAAAAAAAAAAAAAAeC3cvXs3JicnY2JiIsbHx+PcuXPRbrdTZ8HP2rhxY9Tr9Wg0GjEwMBCNRiPq9XoMDAzEqlWrUucBAAAAAAAAAAAAwEvTaDTiwIEDcfHixdQpv1qlUolmsxnvvfderFixInUOAAAAS1AtdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8lO+//z4mJiZifHw8JiYm4tKlS6mT4CetXr066vV61Ov1aDQaMTAwsPDn+vXrU+cBAAAAAAAAAAAAQDIfffRRfPfdd/H06dPUKb/Yxo0bY3R0NHbu3Jk6BQAAgCWsljoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOp1OXLt2LSYmJmJiYiLGx8fju+++S50FC3p7e6O/vz/q9fqfrdFoxObNm6NSqaROBAAAAAAAAAAAAICu09fXF7///e/jf/7P/5k65W+qVCrx1ltvxTvvvBM9PT2pcwAAAFjiaqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWH7a7XZMT0/H+Ph4TExMxPj4eNy5cyd1FstctVqN3bt3R71e/4vt3LkzqtVq6kQAAAAAAAAAAAAAeO3s378/Lly4EN9++23qlL9qy5Ytcfz48di6dWvqFAAAAJaJWuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlr75+fk4e/ZsTExMxPj4eExMTMSDBw9SZ7FMbd++PQYGBqLRaES9Xl/Ynj17YsWKFanzAAAAAAAAAAAAAGBJqVQqcfTo0bhx40bMzs6mzvkz1Wo1RkZG4u23345qtZo6BwAAgGWkljoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACApWd2djaKoojx8fGYmJiIU6dOxZMnT1JnsYxs2LAh6vV61Ov1aDQaC3/v7++P1atXp84DAAAAAAAAAAAAgGVlzZo18eGHH8aJEydSpyzYvn17HD9+PDZt2pQ6BQAAgGWoljoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA19/MzEycPn06xsfHY3x8PM6cOROzs7Ops1ji+vr6ol6vL6zRaMTAwEDU6/XYsGFD6jwAAAAAAAAAAAAA4P9x6NChuHDhQnz33XdJO2q1Wrz77rvxxhtvRKVSSdoCAADA8lVLHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDr58GDB3Hq1KmYmJiI8fHxKMsy5ufnU2exBNVqtRgYGIiBgYFoNBpRr9ej0WjEwMBAbN261UNBAQAAAAAAAAAAAOA1UalUYnR0NP7whz/E8+fPkzTs2rUrRkdHY8OGDUnuBwAAgP+rljoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA7vfjjz/GxMREjI+Px8TERJw/fz46nU7qLJaISqUSu3btikajEQMDA9FoNKJer0e9Xo+dO3dGT09P6kQAAAAAAAAAAAAA4AVYt25dvP/++/Hpp5++0ntXrFgRH3zwQWRZFpVK5ZXeDQAAAD+lljoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA7nPz5s0YHx+PiYmJGB8fj2+//TZ1EkvA1q1bo16vL6zRaES9Xo89e/ZEb29v6jwAAAAAAAAAAAAA4BXI8zwuXrwYN2/efCX3DQwMxLFjx2Lt2rWv5D4AAAD4JWqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEhrfn4+bt26FdeuXYsvvvgi/vjHP8aNGzdSZ/GaWrduXTQajajX6wtrNBoxMDAQq1evTp0HAAAAAAAAAAAAACRWqVTi+PHj8Yc//CHm5+df2j0rV66MDz/8MAYHB6NSqby0ewAAAOC3qKUOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4NWbm5uLjz/+OP77f//vMT4+Hg8fPkydxGtk1apVUa/Xf3IbNmzwAE8AAAAAAAAAAAAA4Gdt2LAh3n333fjyyy9fyvn79u2L3//+97F69eqXcj4AAAAsVi11AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC9Xu92Oy5cvR1mW0Wq14osvvogrV66kzqLL9fT0RH9/fzQajajX63+2bdu2RaVSSZ0IAAAAAAAAAAAAALzG3njjjbh06VLcvn37hZ3Z19cXv//972P//v0v7EwAAAB4GWqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHhxOp1OXLt2LcqyjFarFWVZxtTUVDx58iR1Gl2oUqnEzp07o16vR6PRiIGBgWg0GlGv12PXrl3R09OTOhEAAAAAAAAAAAAAWKKq1WqMjo7GP/3TP0W73V70eYODg/Hhhx/GqlWrXkAdAAAAvFy11AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8Np1OJ27duhVFUSysLMt4+PBh6jS6zObNm6PRaES9Xo9GoxEDAwPRaDSiv78/ent7U+cBAAAAAAAAAAAAAMvUli1bYnh4OP70pz/95jPWrFkTx44di3q9/gLLAAAA4OWqpQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgl/nhhx+i1WpFWZYLf969ezd1Fl1i7dq1Ua/Xo9FoRL1e/7OtWbMmdR4AAAAAAAAAAAAAwE96++23Y3p6On788cdf/d4sy+KDDz6I3t7el1AGAAAAL08tdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/6f79+1EURZRlGa1WK8qyjO+//z51FomtXLkyBgYGol6vR6PRiIGBgWg0GlGv12Pjxo1RqVRSJwIAAAAAAAAAAAAA/Co9PT1x/Pjx+K//9b9Gp9P5Re9Zv359jI6Oxu7du19yHQAAALwctdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAy92jR49iamoqiqJY2PXr11NnkUhPT0/s2bMn6vV61Ov1aDQaMTAwEI1GI7Zt2xbVajV1IgAAAAAAAAAAAADAC7Vt27Z444034ptvvvnZ11UqlThy5Ei8++67sWLFildUBwAAAC9eLXUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAcjIzMxNnz56NoiiiLMtotVpx5cqV1FkksHPnzqjX63+x3bt3R63msSIAAAAAAAAAAAAAwPLy7rvvxrfffhv379//yZ9v2rQpRkdHY8eOHa+4DAAAAF48nyYGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4SWZnZ+P8+fNRFEWUZRmtViump6ej3W6nTuMV2bx5c9Tr9b9Yf39/rFq1KnUeAAAAAAAAAAAAAEDXqNVqMTo6Gv/tv/23P/v3SqUSb7/9doyMjERPT0+iOgAAAHixaqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAloK5ubm4dOlSFEWxsAsXLsTc3FzqNF6yNWvWRKPRiIGBgWg0GlGv16Ner8fAwECsW7cudR4AAAAAAAAAAAAAwGtj165dked5FEURERFbtmyJ48ePx9atWxOXAQAAwItVSx0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwumm323H58uUoiiKKooiyLOPs2bMxOzubOo2XZMWKFVGv1xfWaDQW/r5p06aoVCqpEwEAAAAAAAAAAAAAloQPPvggvvvuuzh06FC89dZbUa1WUycBAADAC1fpdDqpGwAAAPhnKpXK+oi4/0tff//+/Vi/fv1LLAIAAAAAAAAAAAAAAAAAAAAAAAAAgOWr0+nEtWvXoiiKKIoiyrKMqampePLkSeo0XqK+vr548803Y2RkJIaHh+PIkSPR29ubOgsAAAAAAAAAAAAAYFmYn5+Pnp6e1BkAAACvpQcPHsSGDRt+zVs2dDqdBy+rh59WSx0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQLTqdTty8eTPKsoyiKKIoiijLMh4+fJg6jZds3bp1MTw8HMPDwzEyMhKHDx+OWs2jPQAAAAAAAAAAAACA7tbpdKLVasWGDRtiYGAgdc4L09PTkzoBAAAAXiqfZAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJatO3fuRFEUUZZltFqtKMsy7t69mzqLV2Dz5s0xMjISIyMjMTw8HAcOHIhqtZo6CwAAAAAAAAAAAADgF7t3716cOHEibt26FWvWrIl//Md/jN7e3tRZAAAAwC9QSx0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwKty7dy/KsoyiKKIoiijLMr7//vvUWbwiu3btiuHh4RgZGYmRkZEYGBiISqWSOgsAAAAAAAAAAAAA4Fdrt9vxzTffxJ/+9KeYn5+PiIjHjx/Hl19+GceOHUtcBwAAAPwStdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL9qjR49iamoqiqJY2PXr11Nn8Qo1Go0YGRmJ4eHhGB4ejl27dqVOAgAAAAAAAAAAAABYtB9++CFOnDgRd+7c+YuflWUZ+/fvjz179iQoAwAAAH6NWuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAxZiZmYmzZ89GURRRlmW0Wq24cuVK6ixeoUqlEoODgzE8PBwjIyMxPDwcmzdvTp0FAAAAAAAAAAAAAPDCzM/Px8TERExOTka73f6rrxsbG4v/+B//Y6xYseIV1gEAAAC/Vi11AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwC81Ozsb58+fj6IoFjY9Pf2zD1hk6alWq5HneYyMjMTw8HC89dZbsX79+tRZAAAAAAAAAAAAAAAvxffffx8nTpyIu3fv/s3XPnz4ME6ePBkffvjhKygDAAAAfqta6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICfMjc3F5cuXYqiKBZ24cKFmJubS53GK9bb2xtHjhyJkZGRGBkZiSNHjsTq1atTZwEAAAAAAAAAAAAAvFRzc3Nx8uTJOH36dHQ6nV/8vjNnzsT+/ftjx44dL7EOAAAAWIxa6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIB2ux2XL1+OoiiiKIooyzLOnj0bs7OzqdNIYPXq1fHWW2/F8PBwjIyMRJ7n0dvbmzoLAAAAAAAAAAAAAOCVuXHjRoyNjcX9+/d/9Xs7nU6MjY3Fv//3/z56enpeQh0AAACwWLXUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwPLS6XTi6tWrUZZlFEURRVHE1NRUzMzMpE4jkfXr18fw8HCMjIzE8PBwHD582IMwAQAAAAAAAAAAAIBlaXZ2Nr766qsoimJR59y9ezfGx8fjvffee0FlAAAAwItUSx0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsXZ1OJ27evBllWUZRFFEURZRlGQ8fPkydRkJbt26NkZGRGB4ejpGRkdi3b19Uq9XUWQAAAAAAAAAAAAAASV29ejU+/vjjePTo0Qs5b3JyMvbt2xdbt259IecBAAAAL04tdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALB03LlzJ4qiWFhZlnH37t3UWSS2Z8+eGBkZieHh4RgeHo7+/v6oVCqpswAAAAAAAAAAAAAAusKzZ8/i888/j3Pnzr3QczudTpw4cSL+4R/+IarV6gs9GwAAAFicWuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg9XTv3r0oiiLKsoyiKKIoirh9+3bqLLrA/v37Y3h4OEZGRmJ4eDi2b9+eOgkAAAAAAAAAAAAAoCtNT0/HJ598EjMzMy/l/B9++CFOnToVw8PDL+V8AAAA4LeppQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC636NHj6IsyyjLMlqtVpRlGdevX0+dRReoVqtx6NChGBkZieHh4Xj77bdj06ZNqbMAAAAAAAAAAAAAALrazMxMfPLJJzE9Pf3S7xofH4+9e/f6f70BAACgi9RSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN1lZmYmzp49G0VRLOzKlSups+gS1Wo1jhw5EiMjIzEyMhJvvvlmrF27NnUWAAAAAAAAAAAAAMBrodPpxIULF+Kzzz6LZ8+evZI75+fnY2xsLP7tv/23UalUXsmdAAAAwM+rpQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADSmZ2djfPnz0er1YqyLKMoipieno52u506jS6zd+/e+E//6T/Fm2++GatWrUqdAwAAAAAAAAAAAADw2nn8+HGMjY3F1atXX/ndt27dijNnzsQbb7zxyu8GAAAA/lItdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBqzM3NxaVLl6LVakVZltFqteLChQsxPz+fOo0utHnz5vj7v//7+Lu/+7s4dOhQVCqV1EkAAAAAAAAAAAAAAK+lTqcTU1NT8eWXX8bs7Gyyjq+//joajUasX78+WQMAAADwv9VSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC9eu92Oy5cvR1EUCzt37lzShxnSnVatWhVDQ0OR5/nC+vv7o1qtpk4DAAAAAAAAAAAAAHjtPXjwIMbGxuL69eupU2Jubi7Gxsbi7//+76NSqaTOAQAAgGWtljoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYnHa7HdeuXYuyLKPVakVZljE1NRUzMzOp0+gyvb29cejQocjzPLIsi2azGXv37o1qtZo6DQAAAAAAAAAAAABgSel0OnHmzJn4+uuvY25uLnXOguvXr8fU1FRkWZY6BQAAAJa1WuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgl+t0OnHz5s0oyzJarVaUZRlFUcSjR49Sp9Flenp64uDBg5Hn+cL2798fK1asSJ0GAAAAAAAAAAAAALCk3b17N8bGxuLWrVupU37SF198EQMDA7F27drUKQAAALBs1VIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf92dO3eiKIqFlWUZd+/eTZ1Fl6lWq7F3795oNpuRZVnkeR6HDh2K3t7e1GkAAAAAAAAAAAAAAMtGu92OU6dOxfj4eMzPz6fO+aueP38eH3/8cfzd3/1dVCqV1DkAAACwLNVSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/bvXv3oiiKKMsyWq1WlGUZt2/fTp1FF6rX65Hn+cIOHToUq1evTp0FAAAAAAAAAAAAALBs3blzJ06cOBE//PBD6pRf5OrVq3HhwoUYHBxMnQIAAADLUi11AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALEePHj2KsiyjLMtotVpRlmVcv349dRZdaPfu3ZFlWeR5Hnmex9DQUKxbty51FgAAAAAAAAAAAAAAETE/Px/j4+MxOTkZnU4ndc6v8tlnn0V/f3/09fWlTgEAAIBlp5Y6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlrqZmZk4e/ZsFEWxsCtXrqTOogtt27YtsiyLZrMZWZZFlmWxadOm1FkAAAAAAAAAAAAAAPyEW7duxYkTJ+LevXupU36TZ8+exSeffBL/6l/9q9QpAAAAsOzUUgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBSMjs7G+fPn49WqxVlWUZRFDE9PR3tdjt1Gl1m48aNkef5wrIsi23btqXOAgAAAAAAAAAAAADgb3j+/HmcPHkyzpw5E51OJ3XOoty6dStmZmair68vdQoAAAAsK7XUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8Lqam5uLixcvRlEUUZZltFqtuHDhQszPz6dOo8usXbs28jyPLMsiz/PI8zx27twZlUoldRoAAAAAAAAAAAAAAL/C9evXY2xsLB48eJA6ZdEOHz4cv/vd72LlypWpUwAAAGDZqaUOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA10G73Y7Lly9HURQLO3fuXMzOzqZOo8v09fXF0NBQZFkWzWYzsiyL/v7+qFarqdMAAAAAAAAAAAAAAPiNZmdn48svv4yyLFOnLNq6devi2LFj0d/fnzoFAAAAlq1a6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOg27XY7rl27FmVZRqvVirIsY2pqKmZmZlKn0WV6e3vj0KFDkef5wvbu3RvVajV1GgAAAAAAAAAAAAAAL8iVK1fi448/jsePH6dOWZRKpRJ5nsf7778fK1asSJ0DAAAAy1otdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKTU6XTi5s2bURRFFEURZVlGURTx6NGj1Gl0mZ6enjh48GA0m83IsizyPI8DBw5ErebxDwAAAAAAAAAAAAAAS9HTp0/js88+iwsXLqROWbQNGzbE8ePHY+fOnalTAAAAgIjwKXUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJaVO3fuRFEUf7Z79+6lzqLLVKvV2Lt3bzSbzciyLJrNZgwODkZvb2/qNAAAAAAAAAAAAAAAXoFLly7Fp59+GjMzM6lTFqVSqcSbb74Z77zzTtRqtdQ5AAAAwP/hv9IBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFiy7t27F0VRRFmW0Wq1oizLuH37duosulC9Xo88zxd26NChWL16deosAAAAAAAAAAAAAABesSdPnsSnn34a09PTqVMWbcuWLTE6Ohrbtm1LnQIAAAD8M7XUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8CI8fPgwpqamoiiKKIoiyrKM69evp86iC+3evTuyLItmsxlZlsXQ0FCsW7cudRYAAAAAAAAAAAAAAAl1Op04f/58fP755/Hs2bPUOYtSrVZjZGQk3nrrrejp6UmdAwAAAPyEWuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4tWZmZuLs2bNRFMXCrly5kjqLLrRt27bIsiyazWZkWRZZlsWmTZtSZwEAAAAAAAAAAAAA0EUePXoUH3/8cVy9ejV1yqJt27Ytjh8/Hps3b06dAgAAAPyMWuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4ObOzs3Hu3LkoiiLKsoxWqxWXL1+OdrudOo0us3HjxsjzfGFZlsW2bdtSZwEAAAAAAAAAAAAA0KU6nU6UZRlffvllPH/+PHXOovT09MS7774bb7zxRlSr1dQ5AAAAwN9QSx0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/19zcXFy8eDGKoljYhQsXYn5+PnUaXWbt2rWR53lkWRbNZjOyLIudO3dGpVJJnQYAAAAAAAAAAAAAwGvg/v37MTY2Fjdu3Eidsmi7du2K0dHR2LBhQ+oUAAAA4BeqpQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGB5arfbcfny5SiKYmHnzp2L2dnZ1Gl0mb6+vhgaGoosy6LZbEaWZdHf3x/VajV1GgAAAAAAAAAAAAAAr5lOpxOnT5+OkydPxtzcXOqcRVmxYkV88MEHkWVZVCqV1DkAAADAr1BLHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwNLXbrfj2rVrURRFFEURZVnG1NRUzMzMpE6jy/T29sahQ4ciz/OF7d27N6rVauo0AAAAAAAAAAAAAABec3fv3o0TJ07E999/nzpl0fr7+2N0dDTWrl2bOgUAAAD4DWqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWFo6nU7cuHEjyrKMoiiiKIooyzIePXqUOo0u09PTEwcPHoxmsxlZlkWz2Yz9+/dHreZxCgAAAAAAAAAAAAAAvDjz8/MxOTkZExMT0W63U+csysqVK+PDDz+MwcHBqFQqqXMAAACA38in6gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWJTbt29HWZZRFMXC7t27lzqLLlOtVmPfvn2R53lkWRbNZjMGBwejt7c3dRoAAAAAAAAAAAAAAEvY7du3Y2xsLH744YfUKYu2d+/eOHr0aKxevTp1CgAAALBItdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8Pu7duxdFUSysLMu4fft26iy6UL1ejzzPF3bo0CEPQQQAAAAAAAAAAAAA4JWZn5+PkydPxjfffBOdTid1zqL09fXF73//+9i3b19UKpXUOQAAAMALUEsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAd3r48GGUZRllWUZRFFEURdy4cSN1Fl1o9+7dked55HkeWZZFlmWxdu3a1FkAAAAAAAAAAAAAACxTN2/ejLGxsbh3717qlEUbHByMDz/8MFatWpU6BQAAAHiBaqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABI78mTJ3H27NkoyzKKooiiKOLKlSups+hC27ZtizzPI8/zyLIs8jyPjRs3ps4CAAAAAAAAAAAAAIB4/vx5fPXVV1EURXQ6ndQ5i7JmzZo4duxY1Ov11CkAAADAS1BLHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwKs1Ozsb586di6IoFnb58uVot9up0+gyGzdujDzPF5ZlWWzbti11FgAAAAAAAAAAAAAA/IXvvvsuxsbG4uHDh6lTFi3Lsvjggw+it7c3dQoAAADwktRSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8PLMzc3FxYsXoyiKhV24cCHm5+dTp9Fl1q5dG3meLyzLsti5c2dUKpXUaQAAAAAAAAAAAAAA8Fc9e/Ysvvjiizh79mzqlEVbt25djI6Oxp49e1KnAAAAAC9ZLXUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvRrvdjsuXL0er1YqyLKMoijh37lzMzs6mTqPL9PX1xdDQUOR5HnmeR5Zl0d/fH9VqNXUaAAAAAAAAAAAAAAD8Yt9++2188skn8fjx49Qpi1KpVOLIkSPx7rvvxooVK1LnAAAAAK9ALXUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC/XrvdjmvXrkVRFAubmpqKp0+fpk6jy/T29sbhw4cjy7LI8zzyPI+9e/dGtVpNnQYAAAAAAAAAAAAAAL/JzMxMfPbZZ3Hx4sXUKYu2cePGOH78eOzYsSN1CgAAAPAK1VIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw8zqdTty4cSPKsoyiKKIoiijLMh49epQ6jS7T09MTg4ODkef5wvbv3x+1mscTAAAAAAAAAAAAAADw+ut0OnHp0qX49NNP4+nTp6lzFqVSqcTbb78dIyMj0dPTkzoHAAAAeMV8CwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQJe5fft2lGUZrVYryrKMoiji3r17AeusDgABAABJREFUqbPoMtVqNfbt2xd5ni9scHAwent7U6cBAAAAAAAAAAAAAMAL9/jx4/jkk0/i22+/TZ2yaFu2bInjx4/H1q1bU6cAAAAAidRSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALGd3796NsiyjKIqF3blzJ3UWXaher0ez2YwsyyLP8zh8+HD09fWlzgIAAAAAAAAAAAAAgJeq0+nEuXPn4vPPP4/Z2dnUOYvS09MTIyMj8dZbb0W1Wk2dAwAAACRUSx0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAALBcPHz4MMqyjLIsoyiKKIoibty4kTqLLrR79+7I8zzyPI8syyLLsli7dm3qLAAAAAAAAAAAAAAAeKUePnwYY2Nj8d1336VOWbQdO3bE6OhobNq0KXUKAAAA0AVqqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJaiJ0+exNmzZ6Msy2i1WlGWZVy5ciV1Fl1o+/btkWVZ5HkeeZ5HlmWxcePG1FkAAAAAAAAAAAAAAJBMp9OJoijiq6++iufPn6fOWZRarRbvvfdeHDlyJCqVSuocAAAAoEvUUgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALzuZmdn49y5c1EUxcIuX74c7XY7dRpdZuPGjZHneTSbzciyLPI8j61bt6bOAgAAAAAAAAAAAACArnH//v04ceJE3Lx5M3XKou3evTtGR0dj/fr1qVMAAACALlNLHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8DqZm5uLixcvRqvVirIsoyiKuHDhQszPz6dOo8usXbs28jxfWJZlsXPnzqhUKqnTAAAAAAAAAAAAAACg67Tb7Th9+nScPHnytf+cxooVK+J3v/tdDA0N+RwBAAAA8JNqqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALpVu92O6enpKIoiyrKMVqsV58+fj9nZ2dRpdJm+vr7IsiyyLIs8zyPP8+jv7/cgQQAAAAAAAAAAAAAA+AV+/PHHOHHiRNy+fTt1yqINDAzEsWPHYu3atalTAAAAgC5WSx0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAN2u12XLt2LYqiWNjU1FQ8ffo0dRpdpre3Nw4fPhxZlkWz2Ywsy2Lv3r1RrVZTpwEAAAAAAAAAAAAAwGtlfn4+JicnY2JiItrtduqcRVm5cmV89NFHcfDgwahUKqlzAAAAgC5XSx0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPCqdTqduHHjRpRlGa1WK8qyjLIs49GjR6nT6DI9PT0xODgYeZ4vbP/+/VGr+bp/AAAAAAAAAAAAAABYjNu3b8eJEyfixx9/TJ2yaPv27YujR49GX19f6hQAAADgNeFbCwAAAAAAAAAAAAAAAAAAAAAAAAAAAACAJe/27dtRFEUURRFlWUZRFHHv3r3UWXSZarUa+/bti2azGVmWRZ7nMTg4GL29vanTAAAAAAAAAAAAAABgyZibm4uTJ0/G6dOno9PppM5ZlL6+vjh69Gjs27cvdQoAAADwmqmlDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeJHu3r0bZVlGURQLu3PnTuosulC9Xo9msxlZlkWz2YxDhw5FX19f6iwAAAAAAAAAAAAAAFjS/vjHP8bVq1dTZyza4OBgfPTRR7Fy5crUKQAAAMBrqJY6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgt3r48GGUZRllWUar1YqyLOPGjRups+hCu3fvjjzPFzY0NBRr165NnQUAAAAAAAAAAAAAAMvO22+/HVevXk2d8ZutXbs2jh07FgMDA6lTAAAAgNdYLXUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAv8eTJkzh79mwURRFFUURZlnHlypXUWXSh7du3R5Zl0Ww2I8uyyLIsNm7cmDoLAAAAAAAAAAAAAACIiF27dkWe51EUReqUXy3P83j//fejt7c3dQoAAADwmqulDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+OdmZ2fj3LlzURTFwqanp6PT6aROo8ts2rQp8jyPPM8jy7LI8zy2bt2aOgsAAAAAAAAAAAAAAPgZ77//fly5ciUePXqUOuUXWb9+fRw/fjx27dqVOgUAAABYImqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAACA5W1ubi4uXLgQRVFEWZbRarXi4sWLMT8/nzqNLrNu3brIsizyPF/Yjh07olKppE4DAAAAAAAAAAAAAAB+hd7e3jh27Fj8j//xP1Kn/KxKpRJvvPFGvPvuu1Gr1VLnAAAAAEuI3zQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK9Mu92O6enpKIpiYefPn4/Z2dnUaXSZvr6+yLIssiyLZrMZWZZFf39/VCqV1GkAAAAAAAAAAAAAAMALMDAwEIcOHYpz586lTvlJmzZtiuPHj8f27dtTpwAAAABLUC11AAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwNLXb7bh27VoURbGwqampePr0aeo0ukxvb28cPnw48jyPPM8jy7LYu3dvVKvV1GkAAAAAAAAAAAAAAMBL9OGHH8bVq1djZmYmdcqCarUab7/9dgwPD0dPT0/qHAAAAGCJqqUOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABef51OJ27cuBFFUURRFFGWZZRlGY8ePUqdRpfp6emJwcHByPN8Yfv3749azdfnAwAAAAAAAAAAAADAcrNy5co4evRo/PGPf0ydEhERW7dujePHj8eWLVtSpwAAAABLnG9ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+tdu3b0dRFFEURZRlGUVRxL1791Jn0WWq1Wrs378/8jyPLMui2WzGwYMHo7e3N3UaAAAAAAAAAAAAAADQJfbt2xf79u2L6enpZA09PT3xzjvvxJtvvhnVajVZBwAAALB81FIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADd7e7du1GWZRRFsbA7d+6kzqILNRqNyPM8siyLZrMZhw4dir6+vtRZAAAAAAAAAAAAAABAlzt69Ghcv349nj179srv3rFjRxw/fjw2btz4yu8GAAAAlq9a6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoHs8fPgwyrKMoiiiKIooyzJu3LiROosutHv37sjzfGFDQ0Oxdu3a1FkAAAAAAAAAAAAAAMBrqK+vLz766KP4X//rf72yO2u1Wrz//vvRbDajUqm8snsBAAAAIiJqqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgDSePHkSZ8+ejaIooiiKKMsyrly5kjqLLrR9+/bIsiyazWZkWRZ5nseGDRtSZwEAAAAAAAAAAAAAAEvIwYMH48KFC3H16tWXfteePXtidHQ01q1b99LvAgAAAPgptdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDLNzs7G2fPno2yLKMoiiiKIqanp6PT6aROo8ts2rQp8jyPPM8jy7LI8zy2bt2aOgsAAAAAAAAAAAAAAFjiKpVKjI6Oxn/+z/85ZmdnX8odvb298bvf/S4OHz4clUrlpdwBAAAA8EvUUgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC/W8+fP4+LFi1EUxcIuXrwY8/PzqdPoMuvWrYssyyLP84Xt2LHDQ/YAAAAAAAAAAAAAAIAk1qxZEx988EF8/PHHL/zsRqMRR48ejTVr1rzwswEAAAB+rVrqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgt2u32zE9PR1FUSzs/PnzMTs7mzqNLtPX1xdZlkWWZdFsNiPLsujv749KpZI6DQAAAAAAAAAAAAAAYMHQ0FBcvHgxrl+//kLOW7VqVXz00Udx4MABn6MAAAAAukYtdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8Mu02+24du1atFqtKMsyiqKIqampePr0aeo0ukxvb28cPnw48jyPPM8jy7LYu3dvVKvV1GkAAAAAAAAAAAAAAAA/q1KpxOjoaPzhD3+Iubm5RZ114MCB+Oijj6Kvr+8F1QEAAAC8GLXUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAADAX+p0OnHjxo0oimJhZVnG48ePU6fRZWq1WgwODkaWZZHneeR5Hvv3749azdfRAwAAAAAAAAAAAAAAr6f169fHe++9F59//vlvev/q1avj6NGjsXfv3hcbBgAAAPCC+FYIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgC33//fZRlGUVRLOz+/fups+gy1Wo19u/fH3meL+zgwYPR29ubOg0AAAAAAAAAAAAAAOCFOnLkSFy6dClu3br1q953+PDh+N3vfhcrV658SWUAAAAAi1dLHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAy83du3ejLMtotVpRlmUURRF37txJnUUXajQakef5wg4dOhR9fX2pswAAAAAAAAAAAAAAAF66SqUSo6Oj8V/+y3+J+fn5v/n6devWxbFjx6K/v/8V1AEAAAAsTi11AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsZQ8fPoyyLKMoioXdvHkzdRZdaPfu3dFsNiPLssjzPIaGhmLt2rWpswAAAAAAAAAAAAAAAJLZtGlTjIyMxNdff/2zr2s2m/H+++/HihUrXlEZAAAAwOLUUgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwFLx5MmTmJqairIsoyiKKIoirl69mjqLLrR9+/bI83xhWZbFhg0bUmcBAAAAAAAAAAAAAAB0nbfeeisuXboUP/zww1/8bMOGDTE6Ohq7du1KUAYAAADw29VSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAADA6+jZs2dx7ty5KMsyWq1WlGUZ09PT0el0UqfRZTZt2hR5ni8sy7LYunVr6iwAAAAAAAAAAAAAAIDXQrVajePHj8c//dM/LXx2p1KpxJtvvhnvvPNO1Gq1xIUAAAAAv57faAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA3/D8+fO4ePFiFEWxsIsXL8b8/HzqNLrMunXrIsuyaDabkWVZ5HkeO3bsiEqlkjoNAAAAAAAAAAAAAADgtbV169Z4++23Y2JiIjZv3hzHjx+Pbdu2pc4CAAAA+M1qqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoJu02+2Ynp6OVqsVZVlGURRx/vz5mJ2dTZ1Gl1m9enUMDQ1FnueR53lkWRb9/f1RqVRSpwEAAAAAAAAAAAAAACw5IyMjsWrVqsjzPHp6elLnAAAAACxKLXUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKTSbrfj2rVr0Wq1oizLaLVacfbs2Xj69GnqNLpMb29vDA0NRZZlked55HkejUYjqtVq6jQAAAAAAAAAAAAAAICfNDMzE6tWrYpKpZI65YXo6emJN954I3UGAAAAwAtRSx0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK9Cp9OJGzduRFEUCyvLMh4/fpw6jS5Tq9VicHAwsiyLZrMZWZbF/v37o1bz9e4AAAAAAAAAAAAAAED363Q6MTU1FV988UUcPXo0BgcHUycBAAAA8M/4FgsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlpxOpxO3b9+Osiyj1WpFWZZRFEXcv38/dRpdplqtxv79+yPP84UdPHgwent7U6cBAAAAAAAAAAAAAAD8ag8ePIgTJ07EjRs3IiLi888/j/7+/ujr60tcBgAAAMD/q5Y6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAW6+7du1EURRRFEWVZRqvVih9++CF1Fl2o0WhEs9mMLMsiz/M4fPhwrFq1KnUWAAAAAAAAAAAAAADAonQ6nThz5kx8/fXXMTc3t/DvT58+jU8//TT+5b/8lwnrAAAAAPjnaqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODXePDgQUxNTUVRFAu7efNm6iy60O7du6PZbEaWZdFsNuPw4cOxdu3a1FkAAAAAAAAAAAAAAAAv1N27d2NsbCxu3br1kz+/dOlSTE9Px759+15xGQAAAAB/TS11AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8NU+ePImpqakoyzJarVaUZRlXr15NnUUX2r59e+R5vrAsy2LDhg2pswAAAAAAAAAAAAAAAF6adrsdp06divHx8Zifn//Z13766aexe/fuWLly5SuqAwAAAODn1FIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBExLNnz+LcuXNRFEUURRFlWcb09HR0Op3UaXSZTZs2RZ7n0Ww2I8uyyPM8tmzZkjoLAAAAAAAAAAAAAADglblz506cOHEifvjhh1/0+idPnsTnn38e/+Jf/IuXGwYAAADAL1JLHQAAAAAAAAAAAAAAAAAAAAAAAAAAAADA8vP8+fO4ePFiFEWxsIsXL8b8/HzqNLrMunXrIsuyaDabkWVZ5HkeO3bsiEqlkjoNAAAAAAAAAAAAAADglZufn4/x8fGYnJyMTqfzq9577ty5OHDgQAwMDLykOgAAAAB+qVrqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACWtvn5+Zieno6iKKIsy2i1WnH+/Pl4/vx56jS6zOrVq2NoaCjyPF/Ynj17olKppE4DAAAAAAAAAAAAAABI7tatW3HixIm4d+/ebz7j448/jn/8x3+MFStWvLgwAAAAAH61WuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJaOdrsdV69ejaIoFnb27Nl4+vRp6jS6TG9vbwwNDUWWZdFsNiPLsmg0GlGtVlOnAQAAAAAAAAAAAAAAdJXnz5/HyZMn48yZM9HpdBZ11qNHj+LLL7+Mo0ePvqA6AAAAAH6LWuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF5PnU4nbty4EUVRLKwsy3j8+HHqNLpMrVaLwcHByLIsms1mZFkW+/fvj1rN16UDAAAAAAAAAAAAAAD8nO+++y4+/vjjePDgwQs7syiKOHDgQOzateuFnQkAAADAr+NbNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4mzqdTty+fTuKooiiKKIsyyiKIu7fv586jS5TrVZj//79kef5wg4ePBi9vb2p0wAAAAAAAAAAAAAAAF4bs7Oz8cUXX8TU1NRLOX9sbCz+w3/4D1Gr1V7K+QAAAAD8PL+VAQAAAAAAAAAAAAAAAAAAAAAAAAAAAOAv/Pjjj1GWZRRFsbAffvghdRZdplKpRKPRiDzPI8uyaDabcejQoVi1alXqNAAAAAAAAAAAAAAAgNfWt99+G5988kk8fvz4pd1x//79OHnyZPzud797aXcAAAAA8NfVUgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkNaDBw9iamoqiqJY2M2bN1Nn0YX27NkTeZ5HlmXRbDZjaGgo1qxZkzoLAAAAAAAAAAAAAABgSXj69Gl89tlnceHChVdy3+nTp+PAgQOxbdu2V3IfAAAAAP+/WuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF6s+fn5uHXrVty8eTNu3rwZjx8//ovXzMzMxNTUVJRlGVevXk1QSbfbvn175Hm+sCzLYsOGDamzAAAAAAAAAAAAAAAAlpxOpxPT09Px6aefxszMzCu998SJE/EP//AP0dPT88ruBQAAACCiljoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgMV58uRJnDlzJiYmJmJycjJOnz4dT58+TZ3Fa2Tz5s2R53nkeR5ZlkWe57Fly5bUWQAAAAAAAAAAAAAAAEvekydP4pNPPonLly8nuf/HH3+MycnJeOedd5LcDwAAALBc1VIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPDr/N8Hf01OTsbExEScPXs22u126ixeE+vXr48syyLP88iyLJrNZmzfvj0qlUrqNAAAAAAAAAAAAAAAgGWj0+nEuXPn4osvvohnz54lbZmYmIi9e/fGli1bknYAAAAALCe11AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/HWdTieuXr0ak5OTC7ty5UrqLF4Tq1evjqGhocjzfGF79uyJSqWSOg0AAAAAAAAAAAAAAGDZevToUYyNjcW1a9dSp0RERLvdjrGxsfh3/+7fRbVaTZ0DAAAAsCzUUgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8P+bn5+Pc+fOxcTERExOTsbk5GT8+OOPqbN4DfT29sbQ0FDkeR55nkeWZdFoNDwYDgAAAAAAAAAAAAAAoEt0Op0oyzK+/PLLeP78eeqcP3P79u04ffp0vPXWW6lTAAAAAJaFWuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgOVsZmYmzpw5E5OTkzExMRGnT5+OmZmZ1Fl0uVqtFoODg5HneeR5HlmWxYEDB6Knpyd1GgAAAAAAAAAAAAAAAD/h/v37MTY2Fjdu3Eid8ledPHky9u7dGxs2bEidAgAAALDk1VIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwnd+/ejVOnTsXExERMTk7G1NRUzM/Pp86ii1Wr1Thw4EBkWRZ5nkee53Hw4MHo7e1NnQYAAAAAAAAAAAAAAMDf0Ol04ptvvomTJ092/eeI5ufn48SJE/Fv/s2/iUqlkjoHAAAAYEmrpQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAWKo6nU5cv349JiYmYnJyMiYmJuLbb79NnUUXq1Qq0Wg0Is/zhR06dChWrVqVOg0AAAAAAAAAAAAAAIBf6ccff4wTJ07E7du3U6f8Yjdv3oyiKKLZbKZOAQAAAFjSaqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJaKdrsd58+fj8nJyZiYmIjJycm4c+dO6iy62J49eyLP84UNDQ3FmjVrUmcBAAAAAAAAAAAAAACwCPPz8wufMWq326lzfrWvvvoq6vV6rFu3LnUKAAAAwJJVSx0AAAAAAAAAAAAAAAAAAAAAAAAAAAAA8Lp69uxZtFqtmJiYiMnJyTh16lQ8efIkdRZdavv27dFsNiPLssjzPPI8j/Xr16fOAgAAAAAAAAAAAAAA4AW6fft2nDhxIn788cfUKb/Z8+fPY2xsLP71v/7XUalUUucAAAAALEm11AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr4v79+/HqVOnYnJyMiYmJqIsy5ibm0udRRfavHlz5HkeeZ5HlmWR53ls2bIldRYAAAAAAAAAAAAAAAAvydzcXPzpT3+Kb775JjqdTuqcRenr64ssy6JSqaROAQAAAFiyaqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAALpRp9OJGzduxOTk5MIuXbqUOosutH79+siyLPI8X9j27ds9hA0AAAAAAAAAAAAAAGCZuHnzZpw4cSLu37+fOmXRBgcH48MPP4xVq1alTgEAAABY0mqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAC6QbvdjosXL8bExERMTk7G5ORkfP/996mz6DKrV6+OoaGhaDabkWVZ5Hkee/bsiUqlkjoNAAAAAAAAAAAAAACAV+z58+fx1VdfRVEU0el0Uucsypo1a+LYsWNRr9dTpwAAAAAsC7XUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAApzM7ORqvVisnJyZiYmIhvvvkmHj16lDqLLtLb2xtDQ0OR53nkeR5ZlkWj0YhqtZo6DQAAAAAAAAAAAAAAgMSuXbsWH3/8cTx8+DB1yqJlWRYffPBB9Pb2pk4BAAAAWDZqqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXoUHDx7EN998ExMTEzE5ORlFUcTz589TZ9ElarVaHDp0KLIsizzPI8/z2L9/f/T09KROAwAAAAAAAAAAAAAAoIs8e/Ysvvjiizh79mzqlEVbv359jI6Oxu7du1OnAAAAACw7tdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC/DzZs3Y3JyMiYnJ2NiYiIuXryYOokuUa1W48CBA5FlWTSbzciyLA4ePBi9vb2p0wAAAAAAAAAAAAAAAOhi3377bXzyySfx+PHj1CmLUqlU4siRI/Huu+/GihUrUucAAAAALEu11AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAi9Vut2N6ejomJiZicnIyJicn4+bNm6mz6AKVSiUajUbkeb6wQ4cOxapVq1KnAQAAAAAAAAAAAAAA8JqYmZmJzz77LC5evJg6ZdE2bdoUo6OjsWPHjtQpAAAAAMtaLXUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwK81OzsbZVnG5ORkTE5OxqlTp+LBgweps+gCe/bsiWazGVmWRZ7nMTQ0FGvWrEmdBQAAAAAAAAAAAAAAwGuo0+nEpUuX4tNPP42nT5+mzlmUSqUSb7/9doyMjERPT0/qHAAAAIBlr5Y6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAOBvefjwYZw+fTomJydjYmIiWq1WzM7Ops4isR07dkSe55FlWTSbzciyLNavX586CwAAAAAAAAAAAAAAgCXg8ePH8cknn8S3336bOmXRtm7dGsePH48tW7akTgEAAADg/6ilDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4577//vuYnJxc2Pnz56PT6aTOIqHNmzdHnucLy7LMQ9EAAAAAAAAAAAAAAAB44TqdTpw7dy4+//zzmJ2dTZ2zKD09PTEyMhJvvfVWVKvV1DkAAAAA/D9qqQMAAAAAAAAAAAAAAAAAAAAAAAAAAACA5a3T6cT09HRMTk4u7Pr166mzSGj9+vWRZVk0m83IsizyPI/t27dHpVJJnQYAAAAAAAAAAAAAAMAS9vDhwxgbG4vvvvsudcqi7dixI0ZHR2PTpk2pUwAAAAD4CbXUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAMDy8vz585iamoqJiYmYnJyMU6dOxf3791Nnkcjq1asjy7LI8zyyLItmsxm7d++OSqWSOg0AAAAAAAAAAAAAAIBlotPpRKvViq+//jqeP3+eOmdRarVavPfee3HkyBGf0QEAAADoYrXUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAMDS9vjx4/jmm29icnIyJicn48yZM/Hs2bPUWSSwcuXKOHz4cOR5vrB6vR7VajV1GgAAAAAAAAAAAAAAAMvUvXv3YmxsLG7evJk6ZdF2794do6OjsX79+tQpAAAAAPwNtdQBAAAAAAAAAAAAAAAAAAAAAADA/8fenT5HdaYJ3r4zlRKIHcyO2XeBIFMnC5tNVLvLFj0TMTET0//l9ETPUlDIS7gkFmM7MyUWYzBgbLDB7EaAsISU+X6YGd6urs1IggdJ1xXxfMlzznP/PmfEcw4AAADA1HLv3r3o7++Pvr6+6O/vj8uXL0e9Xk+dxWtWKBRiy5YtsX379tixY0ds3749NmzYEE1NTanTAAAAAAAAAAAAAAAAIOr1epw9ezaq1WqMjo6mzhmXlpaWeOedd2Lbtm2Ry+VS5wAAAADwKxRSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAACTV6PRiOvXr0dfX1/09/dHf39//PDDD6mzeM3y+Xxs3Lgxtm/fHjt27Ijt27fHpk2boqWlJXUaAAAAAAAAAAAAAAAA/Jn79+9Hb29v3L17N3XKuK1ZsyYOHjwYs2fPTp0CAAAAwEsopA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAJo+RkZG4dOlS9Pf3R19fX/T398fPP/+cOovXKJfLxdq1a6Otre3F2rJlS8ycOTN1GgAAAAAAAAAAAAAAAPxNo6OjL85F1ev11DnjMmPGjNi3b19s2rQpcrlc6hwAAAAAXlIhdQAAAAAAAAAAAAAAAAAAAAAAAAAAAADw5hocHIzz58+/+PDWuXPn4pdffkmdxWu0atWq2LFjR2zfvj127NgRW7dujdmzZ6fOAgAAAAAAAAAAAAAAgJdy586d6OnpiYcPH6ZOGbcNGzbE/v37o7W1NXUKAAAAAGNUSB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAvDkePHgQ/f39L9bFixejXq+nzuI1WbZsWbS1tcX27dtjx44dsX379pg3b17qLAAAAAAAAAAAAAAAABizkZGRqFQqce7cuWg0GqlzxmXWrFmxf//+WL9+feoUAAAAAMapkDoAAAAAAAAAAAAAAAAAAAAAAAAAAAAASKPRaMSNGzeiv7//xbp+/XrqLCbY22+/HcViMdrb26O1tfXPri9YsCAWL14cS5cujQULFrz+QAAAAAAAAAAAAAAAAHhFbt26Fb29vfHo0aPUKeO2ZcuW2Lt3b8yYMSN1CgAAAAAToJA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHg9RkdH45tvvom+vr7o7++P/v7+ePDgQeosJlA+n48tW7ZEsVh8sRYvXpw6CwAAAAAAAAAAAAAAAF6r58+fx+effx4XLlxInTJuc+bMiYMHD8bq1atTpwAAAAAwgQqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAIBX49mzZ3H+/Pno7++Pvr6+OHfuXDx79ix1FhOopaUl2tvbo1gsRqlUivb29pg9e3bqLAAAAAAAAAAAAAAAAEjmxo0bcfz48Xjy5EnqlHFra2uLd955J5qbm1OnAAAAADDBCqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAgInx8OHDOHPmTPT19UV/f39cvHgxRkdHU2cxgebPnx/FYvHF2rZtmw+MAQAAAAAAAAAAAAAAQEQMDQ3FZ599Ft98803qlHGbP39+dHZ2xooVK1KnAAAAAPCKFFIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC+v0WjEzZs3o6+vL/r7+6Ovry++//771FlMsJUrV0axWIxisRilUinWrl0b+Xw+dRYAAAAAAAAAAAAAAAC8Ua5duxYnT56MwcHB1Cnjksvlor29PcrlchQKhdQ5AAAAALxC/v0BAAAAAAAAAAAAAAAAAAAAAAAAAACASaBer8fly5ejv78/+vr6or+/P+7du5c6iwmUy+Vi8+bNUSwWX6ylS5emzgIAAAAAAAAAAAAAAIA31rNnz+LkyZPx7bffpk4Zt4ULF8ahQ4ecKQIAAACYJgqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAIA/NzQ0FF999VX09fVFf39/nDlzJgYHB1NnMYFaWlpi586dUSwWo1gsxq5du2LOnDmpswAAAAAAAAAAAAAAAOCN12g04sqVK/HZZ5/FL7/8kjpnXPL5fBSLxSiVStHU1JQ6BwAAAIDXpJA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgYGBiI/v7+6O/vj76+vvj6669jZGQkdRYTaN68ebF79+4XHwzbtm1btLS0pM4CAAAAAAAAAAAAAACASeXp06dx/PjxuH79euqUcVuyZEl0dnbGW2+9lToFAAAAgNeskDoAAAAAAAAAAAAAAAAAAAAAAAAAAAAApqOBgYHo6+uLarUalUolLl++HI1GI3UWE2j58uVRLBajVCpFsViM9evXRz6fT50FAAAAAAAAAAAAAAAAk1Kj0YiLFy/G559/HsPDw6lzxqWpqSmyLItdu3Y5cwQAAAAwTRVSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAMB08Pjx4+jr64tKpRLVajW++eabaDQaqbOYILlcLjZu3BjFYvHFWr58eeosAAAAAAAAAAAAAAAAmBIGBgait7c3bt68mTpl3JYtWxaHDh2KBQsWpE4BAAAAIKFC6gAAAAAAAAAAAAAAAAAAAAAAAAAAAACYip48eRJ9fX1RrVajUqnEpUuXotFopM5igjQ3N0dbW1sUi8UolUqxa9eumDdvXuosAAAAAAAAAAAAAAAAmFIajUacP38+vvzyyxgZGUmdMy7Nzc2xZ8+eaGtri1wulzoHAAAAgMQKqQMAAAAAAAAAAAAAAAAAAAAAAAAAAABgKnj69Gn09fVFtVqNarUaFy9ejHq9njqLCTJnzpzYvXt3FIvFKBaLsWPHjmhpaUmdBQAAAAAAAAAAAAAAAFPWw4cPo7e3N27fvp06ZdxWrVoVnZ2dMXfu3NQpAAAAALwhCqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAYDIaHByMvr6+qFarUalU4uLFi1Gv11NnMUGWLl0axWIxisVilEql2LhxY+Tz+dRZAAAAAAAAAAAAAAAAMOXV6/U4c+ZM1Gq1GB0dTZ0zLi0tLfHuu+/G1q1bI5fLpc4BAAAA4A1SSB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAk8Hg4GD09/dHpVKJarUaX3/9ddTr9dRZTJANGzZEsVh8sVasWOGjXwAAAAAAAAAAAAAAAPCa3b9/P3p6euLevXupU8Zt7dq1ceDAgZg9e3bqFAAAAADeQIXUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAPAmGhwcjDNnzkSlUolqtRoXLlyIer2eOosJUCgUoq2tLYrFYhSLxdi9e3fMnz8/dRYAAAAAAAAAAAAAAABMW6Ojo1Gr1eLMmTOT/hzXzJkzY//+/bFhw4bI5XKpcwAAAAB4QxVSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAMCb4NmzZ3HmzJmoVqtRqVTiwoULMTo6mjqLCTBr1qzYvXt3FIvFKJVK0dbWFjNnzkydBQAAAAAAAAAAAAAAAPxfuVwurl+/HvV6PXXKuGzcuDH27dsXra2tqVMAAAAAeMMVUgcAAAAAAAAAAAAAAAAAAAAAAAAAAABACs+ePYuzZ89GtVqNSqUSX331VYyOjqbOYgK89dZbUSqVolQqRbFYjM2bN0c+n0+dBQAAAAAAAAAAAAAAAPwV+Xw+Dh06FP/6r/8ajUYjdc5LmzVrVhw8eDDWrl2bOgUAAACASaKQOgAAAAAAAAAAAAAAAAAAAAAAAAAAAABeh19++SXOnj0blUolqtVqfPXVVzEyMpI6iwmwbt26KBaLUSwWo1QqxcqVKyOXy6XOAgAAAAAAAAAAAAAAAF7C4sWLY/fu3dHf35865aVs3bo13n333ZgxY0bqFAAAAAAmkULqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgVhoaG4uzZs1GpVKJarcb58+djZGQkdRbj1NTUFNu2bYtisRilUil2794dCxcuTJ0FAAAAAAAAAAAAAAAATIAsy+K7776Ln3/+OXXK3zV37tw4ePBgvP3226lTAAAAAJiECqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAYCIMDQ3FuXPnolKpRLVajfPnz8fz589TZzFOra2t0d7eHqVSKYrFYuzcuTNaW1tTZwEAAAAAAAAAAAAAAACvQFNTUxw6dCj+1//6X9FoNFLn/EW5XC7a2tpiz5490dzcnDoHAAAAgEmqkDoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmJ4eDjOnTsX1Wo1KpVKnDt3Lp4/f546i3FatGhRFIvFKBaLUSqVYsuWLdHU1JQ6CwAAAAAAAAAAAAAAAHhNli1bFjt27Ijz58+nTvkz8+fPj0OHDsXy5ctTpwAAAAAwyRVSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAMCvMTw8HOfPn49KpRLVajXOnTsXw8PDqbMYpzVr1kSxWHyxVq9eHblcLnUWAAAAAAAAAAAAAAAAkNBvfvOb+P777+Px48epUyIiIpfLxa5duyLLsigUCqlzAAAAAJgC/MsEAAAAAAAAAAAAAAAAAAAAAAAAAADAG2l4eDi++uqrqFQqUa1W4+zZszE8PJw6i3HI5/OxdevWKJVKUSwWo1gsxqJFi1JnAQAAAAAAAAAAAAAAAG+Y5ubm6OzsjCNHjqROiUWLFsWhQ4diyZIlqVMAAAAAmEIKqQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgImJ4eDguXLgQlUolqtVqnDlzJoaHh1NnMQ4zZ86M9vb2KBaLUSqVYufOnTFr1qzUWQAAAAAAAAAAAAAAAMAksGrVqti2bVtcvHgxyfx8Ph+lUimKxWI0NTUlaQAAAABg6iqkDgAAAAAAAAAAAAAAAAAAAAAAAAAAAGB6ev78eVy4cCEqlUpUq9U4c+ZMDA0Npc5iHBYsWBDFYvHFh7e2bt0ahYJXIQMAAAAAAAAAAAAAAABj8+6778aNGzfi6dOnr3XukiVL4tChQ7Fo0aLXOhcAAACA6cObeQAAAAAAAAAAAAAAAAAAAAAAAAAAAHgtnj9/Hl9//XVUKpWoVCpx5syZGBoaSp3FOLz99ttRLBajWCxGqVSKNWvWRC6XS50FAAAAAAAAAAAAAAAATBEtLS1x4MCB6O7ufi3zmpqaolwuR3t7e+Tz+dcyEwAAAIDpqZA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAgKlpZGQkLly4ENVqNarVavT398cvv/ySOosxyufzsXnz5igWi1EqlWL37t2xZMmS1FkAAAAAAAAAAAAAAADAFLd27drYtGlTXLly5ZXOWb58eRw6dCjmz5//SucAAAAAQEREIXUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU8PIyEhcvHgxKpVKVKvV6O/vj2fPnqXOYoxaWlpi586dUSqVolgsxq5du2L27NmpswAAAAAAAAAAAAAAAIBpaN++ffHjjz++kjNrzc3NsWfPnmhra4tcLjfh+wMAAADAX1JIHQAAAAAAAAAAAAAAAAAAAAAAAAAAAMDkNDo6GhcvXoxqtRqVSiX6+/tjcHAwdRZjNG/evCgWi1EsFqNUKsW2bduiubk5dRYAAAAAAAAAAAAAAABAzJw5M/bt2xeffPLJhO779ttvx8GDB2Pu3LkTui8AAAAA/D2F1AEAAAAAAAAAAAAAAAAAAAAAAAAAAABMDqOjo3Hp0qWoVCpRqVSiv78/BgcHU2cxRitXroxisfhirVu3LvL5fOosAAAAAAAAAAAAAAAAgL9ow4YNcfXq1fjuu+/GvdeMGTNi7969sXnz5sjlcuOPAwAAAICXVEgdAAAAAAAAAAAAAAAAAAAAAAAAAAAAwJupXq/HxYsXo1qtRqVSib6+vhgcHEydxRjkcrnYtGlTlEqlKBaLUSwWY+nSpamzAAAAAAAAAAAAAAAAAH61XC4XBw4ciFu3bsXQ0NCY91m3bl0cOHAgZs2aNYF1AAAAAPByCqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAAeDPU6/W4dOlSVKvVqFarUavV4unTp6mzGIOWlpbYsWNHFIvFKJVK0d7eHnPnzk2dBQAAAAAAAAAAAAAAADAus2bNinfffTd6enpe+tnW1tbYv39/rF+/PnK53CuoAwAAAIBfr5A6AAAAAAAAAAAAAAAAAAAAAAAAAAAAgDTq9Xpcvnw5KpVKVKvVqNVq8eTJk9RZjMHcuXOjWCy+WNu3b4+WlpbUWQAAAAAAAAAAAAAAAAATbsuWLXH16tX44YcffvUzmzZtin379sXMmTNfYRkAAAAA/HqF1AEAAAAAAAAAAAAAAAAAAAAAAAAAAAC8HvV6Pa5cuRKVSiUqlUr09fXF48ePU2cxBsuWLYtSqRTFYjFKpVKsX78+8vl86iwAAAAAAAAAAAAAAACAVy6Xy8XBgwfjX/7lX+L58+d/897Zs2fHwYMHY82aNa+pDgAAAAB+nULqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF6Ner0eV65ciWq1GpVKJfr6+mJgYCB1FmOwYcOGKJVKUSqVolgsxvLly1MnAQAAAAAAAAAAAAAAACQzd+7c2LNnT5w8efKv3rN9+/Z45513oqWl5TWWAQAAAMCvU0gdAAAAAAAAAAAAAAAAAAAAAAAAAAAAwMSo1+tx9erVqFarUalUolarxcDAQOosxmDDhg1RLpcjy7IolUqxaNGi1EkAAAAAAAAAAAAAAAAAb5S2tra4evVq/PTTT3/y+9y5c6OzszNWrVqVqAwAAAAA/r5C6gAAAAAAAAAAAAAAAAAAAAAAAAAAAADGpl6vx7fffhvVavXFevToUeosxmD9+vVRLpcjy7Lo6OiIRYsWpU4CAAAAAAAAAAAAAAAAeKPlcrk4dOhQ/Mu//EuMjo5GLpeLHTt2xG9+85tobm5OnQcAAAAAf1MhdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAC/TqPRiGvXrkWlUolKpRK1Wi1+/vnn1FmMwbp16yLLsiiXy5FlWSxatCh1EgAAAAAAAAAAAAAAAMCkM3/+/CiXy3Hp0qU4dOhQLFu2LHUSAAAAAPwquUajkboBAACAfyeXy82LiEe/9v5Hjx7FvHnzXmERAAAAAAAAAAAAAAAAAAAAAACQQqPRiGvXrkW1Wo1KpRK1Wi0ePnyYOosxWLt2bWRZFuVyObIsi7feeit1EgAAAAAAAAAAAAAAAMCUUK/Xo9FoRFNTU+oUAAAAgDfCwMBAzJ8//2Uemd9oNAZeVQ9/WSF1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP9Ho9GI7777LqrV6ov14MGD1FmMwZo1a6JcLkeWZZFlWSxevDh1EgAAAAAAAAAAAAAAAEAMDg7GhQsXIsuyyOVyqXMmRD6fT50AAAAAAC+tkDoAAAAAAAAAAAAAAAAAAAAAAAAAAABgumo0GvH9999HtVqNarUalUolHjx4kDqLMVizZk1kWRZZlkVHR0csXbo0dRIAAAAAAAAAAAAAAADAC41GI7755ps4ffp0DA0NRWtra+zYsSN1FgAAAABMW4XUAQAAAAAAAAAAAAAAAAAAAAAAAAAAANNFo9GI69evR7VajUqlEtVqNe7fv586izF4++23o1wuR5ZlkWVZLF26NHUSAAAAAAAAAAAAAAAAwF/0+PHjOH78ePzwww8vfvviiy9izZo1MXfu3IRlAAAAADB9FVIHAAAAAAAAAAAAAAAAAAAAAAAAAAAATFWNRiNu3LgRlUolqtVqVKvVuHfvXuosxmDVqlWRZVmUy+XIsiyWLVuWOgkAAAAAAAAAAAAAAADgb2o0GnHhwoX44osv4vnz539y7fnz53H8+PH4p3/6p8jlcokKAQAAAGD6KqQOAAAAAAAAAAAAAAAAAAAAAAAAAAAAmCoajUb88MMPUa1Wo1KpRLVajbt376bOYgxWrlwZ5XI5yuVydHR0xPLly1MnAQAAAAAAAAAAAAAAAPxqjx49ip6envjpp5/+6j0//PBDfPPNN7F169bXWAYAAAAAREQUUgcAAAAAAAAAAAAAAAAAAAAAAAAAAABMVo1GI3788ceoVqtRrVajUqnEnTt3UmcxBitXrowsy16sFStWpE4CAAAAAAAAAAAAAAAAeGn1ej3OnTsXlUolRkdH/+79p0+fjtWrV8esWbNeQx0AAAAA8P8UUgcAAAAAAAAAAAAAAAAAAAAAAAAAAABMFo1GI27evBnVajUqlUpUq9W4fft26izGYPny5VEulyPLssiyLFauXJk6CQAAAAAAAAAAAAAAAGBcHjx4ED09PXH37t1f/czQ0FCcOHEi3n///cjlcq+wDgAAAAD4twqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAAN5kN2/ejEqlEtVqNarVavz000+pkxiDZcuWRblcjizLolwux4oVK3wwCwAAAAAAAAAAAAAAAJgSRkdHo7+/P/r6+qJer7/089999118++23sXHjxldQBwAAAAD8JYXUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAG+SW7duRaVSiWq1GtVqNW7dupU6iTFYunRplMvlKJfLkWVZrFy5MnK5XOosAAAAAAAAAAAAAAAAgAl19+7d6OnpiQcPHoxrn1OnTsWqVati5syZE1QGAAAAAPwthdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAKf30009RrVajUqlEtVqNmzdvpk5iDJYsWRLlcjnK5XJkWRarVq2KXC6XOgsAAAAAAAAAAAAAAADglRgZGYlqtRpnz56NRqMx7v2ePXsWp06divfee28C6gAAAACAv6eQOgAAAAAAAAAAAAAAAAAAAAAAAAAAAOB1un37dlSr1ahUKlGpVOLmzZupkxiDxYsXR7lcjizLolwux9tvvx25XC51FgAAAAAAAAAAAAAAAMArd+vWrejt7Y1Hjx5N6L5XrlyJjRs3xtq1ayd0XwAAAADgzxVSBwAAAAAAAAAAAAAAAAAAAAAAAAAAALxKd+7ciUqlEtVqNarVavzwww+pkxiDt956K8rlcmRZFuVyOVavXh25XC51FgAAAAAAAAAAAAAAAMBr8/z58/jiiy/iq6++emUzTpw4EStWrIiWlpZXNgMAAAAAiCikDgAAAAAAAAAAAAAAAAAAAAAAAAAAAJhId+7ciWq1+mLduHEjdRJjsGjRoiiXy1EulyPLslizZk3kcrnUWQAAAAAAAAAAAAAAAABJ/PDDD3H8+PF4/PjxK53z9OnTOH36dHR2dr7SOQAAAAAw3RVSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAIzH3bt3o1qtvljXr19PncQYLFq0KMrlcmRZFlmWxdq1ayOXy6XOAgAAAAAAAAAAAAAAAEhqaGgoTp8+HZcuXXptMy9evBgbN26MVatWvbaZAAAAADDdFFIHAAAAAAAAAAAAAAAAAAAAAAAAAAAAvIx79+5FrVaLSqUSlUolrl+/njqJMVi4cGFkWRblcjmyLIt169ZFLpdLnQUAAAAAAAAAAAAAAADwxvjuu+/ixIkTMTg4+Npn9/b2xj//8z9Hc3Pza58NAAAAANNBIXUAAAAAAAAAAAAAAAAAAAAAAAAAAADA33L//v2oVqtRrVajUqnE999/nzqJMViwYEFkWRZZlkW5XI7169dHLpdLnQUAAAAAAAAAAAAAAADwxnn27FmcOnUqrl69mqzh8ePH8eWXX8a+ffuSNQAAAADAVFZIHQAAAAAAAAAAAAAAAAAAAAAAAAAAAPBvPXjwIKrV6ot17dq11EmMwfz58yPLsiiXy5FlWaxfvz7y+XzqLAAAAAAAAAAAAAAAAIA3VqPRiKtXr8apU6fil19+SZ0TX331VWzYsCGWL1+eOgUAAAAAppxC6gAAAAAAAAAAAAAAAAAAAAAAAAAAAGB6e/DgQdRqtahWq1GtVuPbb79NncQYzJs3L8rlcmRZFlmWxYYNGyKfz6fOAgAAAAAAAAAAAAAAAJgUnj59GidOnIjvv/8+dcoLjUYjent747/+1/8aTU1NqXMAAAAAYEoppA4AAAAAAAAAAAAAAAAAAAAAAAAAAACml4cPH0atVotqtRqVSiW+/fbb1EmMwbx586KjoyPK5XJkWRYbN26MfD6fOgsAAAAAAAAAAAAAAABgUmk0GnHp0qU4ffp0DA8Pp875Mz///HNUq9XYs2dP6hQAAAAAmFIKqQMAAAAAAAAAAAAAAAAAAAAAAAAAAICp7eeff45arRaVSiWq1WpcvXo1dRJjMHfu3Ojo6IhyuRxZlsWmTZsin8+nzgIAAAAAAAAAAAAAAACYtB4/fhy9vb3x448/pk75m86cORMbNmyIxYsXp04BAAAAgCmjkDoAAAAAAAAAAAAAAAAAAAAAAAAAAACYWh49ehS1Wi2q1WpUKpW4cuVK6iTGYM6cOdHR0RHlcjnK5XJs2rQp8vl86iwAAAAAAAAAAAAAAACASa/RaMRXX30VX3zxRYyMjKTO+bsajUb09PTEf/kv/8U5MwAAAACYIIXUAQAAAAAAAAAAAAAAAAAAAAAAAAAAwOQ2MDAQtVotqtVqVKvVuHz5cjQajdRZvKQ5c+ZER0dHZFkWWZbFli1bfCwKAAAAAAAAAAAAAAAAYIL9/PPP0dPTE7dv306d8lLu378f/f390dHRkToFAAAAAKaEQuoAAAAAAAAAAAAAAAAAAAAAAAAAAABgchkYGIi+vr6oVqtRqVTi8uXL0Wg0UmfxkmbPnh0dHR2RZVlkWRZbt26NfD6fOgsAAAAAAAAAAAAAAABgSqrX63H27NmoVqsxOjqaOmdM+vr6Yv369bFw4cLUKQAAAAAw6RVSBwAAAAAAAAAAAAAAAAAAAAAAAAAAAG+2Bw8eRF9fX9Rqtejr64vLly9Ho9FIncVLmjVrVpRKpSiXy5FlWWzdujWamppSZwEAAAAAAAAAAAAAAABMeffv34+enp64d+9e6pRxGR0djcuXL8eePXtSpwAAAADApFdIHQAAAAAAAAAAAAAAAAAAAAAAAAAAALxZfvrpp6jVatHX1xe1Wi2+//771EmMwaxZs6JYLEa5XI5yuRxbt26Npqam1FkAAAAAAAAAAAAAAAAA08bo6Gj09fVFf39/1Ov11DnjMnPmzNi7d29s2rQpdQoAAAAATAmF1AEAAAAAAAAAAAAAAAAAAAAAAAAAAEA6jUYjbty4EbVaLWq1WvT19cWtW7dSZzEGra2tUSqVIsuyKJfLsW3btmhqakqdBQAAAAAAAAAAAAAAADAt3blzJ3p6euLhw4epU8Ztw4YNsX///mhtbU2dAgAAAABTRiF1AAAAAAAAAAAAAAAAAAAAAAAAAAAA8PrU6/W4evVq9PX1Ra1Wi1qtFg8ePEidxRi0trZGsViMLMuiXC7Htm3bolDwylkAAAAAAAAAAAAAAACAlEZGRqJSqcS5c+ei0WikzhmXWbNmxYEDB2LdunWpUwAAAABgyvHGKAAAAAAAAAAAAAAAAAAAAAAAAAAAmMJGRkbi0qVLUavVoq+vL/r7+2NgYCB1FmMwc+bMKBaLkWVZZFkWbW1tUSh4xSwAAAAAAAAAAAAAAADAm+LWrVvR29sbjx49Sp0yblu2bIm9e/fGjBkzUqcAAAAAwJTkDVIAAAAAAAAAAAAAAAAAAAAAAAAAADCFDA8Px/nz56Ovry9qtVqcPXs2nj17ljqLMZgxY0bs3r07yuVylMvl2L59ezQ3N6fOAgAAAAAAAAAAAAAAAODfGR4eji+++CIuXLiQOmXc5syZEwcPHozVq1enTgEAAACAKa2QOgAAAAAAAAAAAAAAAAAAAAAAAAAAABi7wcHBOHv2bNRqtejr64vz58/H8+fPU2cxBjNmzIjdu3dHuVyOLMuira0tmpubU2cBAAAAAAAAAAAAAAAA8DfcuHEjjh8/Hk+ePEmdMm5tbW3xzjvvONsGAAAAAK9BIXUAAAAAAAAAAAAAAAAAAAAAAAAAAADw6w0MDER/f3/UarWo1Wpx8eLFqNfrqbMYg5aWlti9e3dkWRblcjna2tqipaUldRYAAAAAAAAAAAAAAAAAv8LQ0FCcOnUqLl++nDpl3ObPnx+dnZ2xYsWK1CkAAAAAMG0UUgcAAAAAAAAAAAAAAAAAAAAAAAAAAAB/3b1796Kvry/6+vqiVqvFlStXUicxRi0tLbFr167IsizK5XLs2LEjWlpaUmcBAAAAAAAAAAAAAAAA8JKuXbsWJ06ciGfPnqVOGZdcLvfi3FuhUEidAwAAAADTin/kAAAAAAAAAAAAAAAAAAAAAAAAAADgDdFoNOLWrVvR19cXtVot+vr64vr166mzGKOWlpZob2+PLMuiXC7Hzp07o6WlJXUWAAAAAAAAAAAAAAAAAGP07NmzOHHiRFy7di11yrgtXLgwfvvb38aSJUtSpwAAAADAtFRIHQAAAAAAAAAAAAAAAAAAAAAAAAAAANNVo9GI77//Pmq1WvT19UWtVovbt2+nzmKMmpubo729PcrlcmRZFu3t7dHS0pI6CwAAAAAAAAAAAAAAAIBxajQaceXKlTh16lQMDQ2lzhmXfD4fxWIxSqVSNDU1pc4BAAAAgGmrkDoAAAAAAAAAAAAAAAAAAAAAAAAAAACmk0ajEefOnYtjx45FT09P3L59O3USY1QoFKK9vT3K5XJkWRbt7e0xY8aM1FkAAAAAAAAAAAAAAAAATKAnT57E8ePH48aNG6lTxm3JkiXR2dkZb731VuoUAAAAAJj2CqkDAAAAAAAAAAAAAAAAAAAAAAAAAABgqms0GnH58uXo7u6ODz/8MG7dupU6iTEoFAqxc+fOyLIsyuVytLe3x8yZM1NnAQAAAAAAAAAAAAAAAPAKNBqNuHjxYpw+fTqeP3+eOmdcmpqaXpyLy+fzqXMAAAAAgIgopA4AAAAAAAAAAAAAAAAAAAAAAAAAAICp6saNG9Hd3R3d3d1x7dq11Dm8pKampti5c2dkWRblcjl27doVM2fOTJ0FAAAAAAAAAAAAAAAAwCs2MDAQvb29cfPmzdQp47Z8+fI4dOhQzJ8/P3UKAAAAAPBvFFIHAAAAAAAAAAAAAAAAAAAAAAAAAADAVHL37t346KOP4tixY3HhwoXUObyEpqam2LFjR5TL5ciyLHbt2hWtra2pswAAAAAAAAAAAAAAAAB4TRqNRpw/fz6+/PLLGBkZSZ0zLs3NzbFnz55oa2uLXC6XOgcAAAAA+HcKqQMAAAAAAAAAAAAAAAAAAAAAAAAAAGCye/ToUXzyySfR3d0dtVotGo1G6iR+haamptixY0dkWRZZlsXu3bujtbU1dRYAAAAAAAAAAAAAAAAACTx8+DB6e3vj9u3bqVPGbdWqVdHZ2Rlz585NnQIAAAAA/BWF1AEAAAAAAAAAAAAAAAAAAAAAAAAAADAZDQ4ORm9vbxw7diw+++yzGB0dTZ3E35HP56OtrS3K5XJkWRa7d++OWbNmpc4CAAAAAAAAAAAAAAAAIKF6vR5nzpyJWq026c8KtrS0xN69e2PLli2Ry+VS5wAAAAAAf0MhdQAAAAAAAAAAAAAAAAAAAAAAAAAAAEwWw8PD8dlnn0V3d3f09PTE0NBQ6iT+hnw+H9u3b48sy6JcLkexWIxZs2alzgIAAAAAAAAAAAAAAADgDXHv3r3o6emJ+/fvp04Zt7Vr18aBAwdi9uzZqVMAAAAAgF+hkDoAAAAAAAAAAAAAAAAAAAAAAAAAAADeZPV6PSqVShw7diw+/fTTePz4ceok/op8Ph/btm2LcrkcWZZFsVj0MSUAAAAAAAAAAAAAAAAA/szo6GjUarXo7++PRqOROmdcZs6cGfv3748NGzZELpdLnQMAAAAA/EqF1AEAAAAAAAAAAAAAAAAAAAAAAAAAAPCmaTQacf78+eju7o6PPvoo7t+/nzqJvyCfz8e2bdsiy7LIsiyKxWLMmTMndRYAAAAAAAAAAAAAAAAAb7Dbt29HT09P/Pzzz6lTxm3jxo2xb9++aG1tTZ0CAAAAALykQuoAAAAAAAAAAAAAAAAAAAAAAAAAAAB4U1y9ejWOHTsW3d3dcfPmzdQ5/Du5XC62bdsWWZZFlmVRKpVizpw5qbMAAAAAAAAAAAAAAAAAmASeP38elUolzp8/H41GI3XOuMyaNSsOHjwYa9euTZ0CAAAAAIxRIXUAAAAAAAAAAAAAAAAAAAAAAAAAAACk9OOPP0Z3d3d0d3fH1atXU+fwb+RyudiyZUuUy+XIsixKpVLMnTs3dRYAAAAAAAAAAAAAAAAAk8yPP/4Yx48fj4GBgdQp47Z169Z49913Y8aMGalTAAAAAIBxKKQOAAAAAAAAAAAAAAAAAAAAAAAAAACA1+3evXvx0UcfRXd3d5w/fz51Dv9XLpeLzZs3R7lcjnK5HMViMebNm5c6CwAAAAAAAAAAAAAAAIBJanh4OD7//PP4+uuvU6eM29y5c6OzszNWrVqVOgUAAAAAmACF1AEAAAAAAAAAAAAAAAAAAAAAAAAAAPA6DAwMxKeffhrd3d1RqVSiXq+nTiIitmzZElmWRblcjlKpFPPmzUudBAAAAAAAAAAAAAAAAMAUcP369Th+/Hg8ffo0dcq45HK5aGtriz179kRzc3PqHAAAAABgghRSBwAAAAAAAAAAAAAAAAAAAAAAAAAAwKvy7NmzOH78eBw7dixOnToVIyMjqZOmvc2bN0eWZZFlWXR0dMT8+fNTJwEAAAAAAAAAAAAAAAAwhfzyyy9x6tSpuHLlSuqUcZs/f34cOnQoli9fnjoFAAAAAJhghdQBAAAAAAAAAAAAAAAAAAAAAAAAAAAwkZ4/fx6nT5+O7u7u6OnpiWfPnqVOmtY2bdoUWZZFlmXR0dERCxYsSJ0EAAAAAAAAAAAAAAAAwBTUaDTi2rVrcfLkyUl/tjCXy8WuXbsiy7IoFAqpcwAAAACAV8A/fwAAAAAAAAAAAAAAAAAAAAAAAAAATHr1ej1qtVp0d3fHJ598EgMDA6mTpq0NGzZEuVyOcrkcpVIpFi5cmDoJAAAAAAAAAAAAAAAAgClucHAwTpw4Ed99913qlHF76623orOzM5YsWZI6BQAAAAB4hQqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAYCwajUZ8/fXXcezYsfjoo4/i7t27qZOmnXw+H1u2bImOjo4olUpRLBZj4cKFqbMAAAAAAAAAAAAAAAAAmCYajUZcvnw5PvvssxgaGkqdMy75fD46Ojpi9+7d0dTUlDoHAAAAAHjFCqkDAAAAAAAAAAAAAAAAAAAAAAAAAADgZXz77bfR3d0dH374Ydy4cSN1zrRSKBSira0tOjo6oqOjI3bt2hVz5sxJnQUAAAAAAAAAAAAAAADANPTkyZM4fvz4lDhruGTJkjh06FAsWrQodQoAAAAA8JoUUgcAAAAAAAAAAAAAAAAAAAAAAAAAAMDfc+vWrfjwww/j2LFjcfny5dQ508aMGTNi165dUSqVoqOjI3bu3BkzZ85MnQUAAAAAAAAAAAAAAADANNZoNOLrr7+Ozz//PJ4/f546Z1yampqiXC5He3t75PP51DkAAAAAwGtUSB0AAAAAAAAAAAAAAAAAAAAAAAAAAAB/yYMHD+Ljjz+OY8eOxdmzZ1PnTAuzZ8+OYrEYHR0dUSqVYvv27dHc3Jw6CwAAAAAAAAAAAAAAAAAiIuLRo0fR29sbt27dSp0ybitWrIjOzs6YP39+6hQAAAAAIIFC6gAAAAAAAAAAAAAAAAAAAAAAAAAAAPh/njx5Ep9++mkcO3Ysvvzyy6jX66mTprQFCxZER0dHlEql6OjoiM2bN0c+n0+dBQAAAAAAAAAAAAAAAAB/otFoxNmzZ6NSqcTo6GjqnHFpbm6Od955J7Zv3x65XC51DgAAAACQSCF1AAAAAAAAAAAAAAAAAAAAAAAAAAAA09vQ0FAcP348uru74+TJkzE8PJw6acpaunRpdHR0REdHR5RKpVi3bp0PGAEAAAAAAAAAAAAAAADwRnv48GH09PTEnTt3UqeM2+rVq+PgwYMxZ86c1CkAAAAAQGKF1AEAAAAAAAAAAAAAAAAAAAAAAAAAAEw/IyMj8cUXX8SxY8fij3/8YwwODqZOmpJWr14dpVIpOjo6oqOjI1asWBG5XC51FgAAAAAAAAAAAAAAAAD8Knfv3o3/+T//Z9Tr9dQp4zJjxozYu3dvbN682Tk/AAAAACAiIgqpAwAAAAAAAAAAAAAAAAAAAAAAAAAAmB7q9Xr09/dHd3d3fPzxx/Ho0aPUSVPOxo0bo6OjI0qlUpRKpViyZEnqJAAAAAAAAAAAAAAAAAAYs8WLF8fSpUvjp59+Sp0yZuvWrYsDBw7ErFmzUqcAAAAAAG+QQuoAAAAAAAAAAAAAAAAAAAAAAAAAAACmrkajEZcuXYpjx47Fhx9+GHfu3EmdNGXk8/nYtm1blEql6OjoiGKxGPPnz0+dBQAAAAAAAAAAAAAAAAATJpfLRWdnZ/z3//7fY3R0NHXOS2ltbY39+/fH+vXrI5fLpc4BAAAAAN4whdQBAAAAAAAAAAAAAAAAAAAAAAAAAABMPd9//310d3fHsWPH4vr166lzpoTm5ubYsWNHdHR0RKlUil27dsXs2bNTZwEAAAAAAAAAAAAAAADAK7VgwYIol8vx+eefp0751TZv3hx79+6NmTNnpk4BAAAAAN5QhdQBAAAAAAAAAAAAAAAAAAAAAAAAAABMDbdv347u7u7o7u6OS5cupc6Z9JqamqKjoyOyLIuOjo7YsWNHzJgxI3UWAAAAAAAAAAAAAAAAALx27e3t8e2338bdu3dTp/xNs2fPjoMHD8aaNWtSpwAAAAAAb7hC6gAAAAAAAAAAAAAAAAAAAAAAAAAAACavhw8fxieffBLd3d3R19eXOmfSy+VyUSqV4vDhw/Hee+/FggULUicBAAAAAAAAAAAAAAAAQHL5fD46OzvjX//1X6Ner6fO+Yu2b98e77zzTrS0tKROAQAAAAAmgULqAAAAAAAAAAAAAAAAAAAAAAAAAAAAJpenT5/GH//4x+ju7o7Tp0+/sR/zmUy2b98eXV1d8cEHH8TSpUtT5wAAAAAAAAAAAAAAAADAG+ett96KYrEYtVotdcqfmDt3bnR2dsaqVatSpwAAAAAAk0ghdQAAAAAAAAAAAAAAAAAAAAAAAAAAAG++4eHhOHHiRHR3d8fx48djeHg4ddKkt3bt2jh8+HB0dXXFmjVrUucAAAAAAAAAAAAAAAAAwBuvVCrFd999Fw8ePEidErlcLnbu3Bnlcjmam5tT5wAAAAAAk0whdQAAAAAAAAAAAAAAAAAAAAAAAAAAAG+m0dHR+OKLL6K7uzs+/fTTePr0aeqkSW/ZsmXR1dUVXV1dsWXLlsjlcqmTAAAAAAAAAAAAAAAAAGDSaGpqikOHDsX/+B//IxqNRrKOhQsXRmdnZyxbtixZAwAAAAAwuRVSBwAAAAAAAAAAAAAAAAAAAAAAAAAA8Oao1+tx7ty56O7ujo8//jgePHiQOmnSW7BgQbz//vvR1dUVu3btinw+nzoJAAAAAAAAAAAAAAAAACatJUuWRHt7e5w9e/a1z87lclEsFqOjoyOamppe+3wAAAAAYOoopA4AAAAAAAAAAAAAAAAAAAAAAAAAACCtRqMRly9fjmPHjsWHH34YP/30U+qkSW/WrFnxD//wD9HV1RV79uyJQsFrQAEAAAAAAAAAAAAAAABgopTL5fj+++/j0aNHr23mW2+9FYcOHYrFixe/tpkAAAAAwNTl7WQAAAAAAAAAAAAAAAAAAAAAAAAAANPUjRs3oru7O7q7u+PatWupcya9lpaWOHDgQBw+fDj2798fM2bMSJ0EAAAAAAAAAAAAAAAAAFNSoVCIzs7O+N//+3+/8llNTU3R0dERu3fvjnw+/8rnAQAAAADTQyF1AAAAAAAAAAAAAAAAAAAAAAAAAAAAr8+dO3fio48+iu7u7rhw4ULqnEkvn8/HO++8E11dXfHb3/425syZkzoJAAAAAAAAAAAAAAAAAKaFFStWRFtb2ys9L7ls2bLo7OyMhQsXvrIZAAAAAMD0VEgdAAAAAAAAAAAAAAAAAAAAAAAAAADAq/Xo0aP45JNPoru7O2q1WjQajdRJk16xWIyurq74x3/8x1i0aFHqHAAAAAAAAAAAAAAAAACYlt555524fv16PHnyZEL3LRQK8Zvf/CZ27twZuVxuQvcGAAAAAIiIKKQOAAAAAAAAAAAAAAAAAAAAAAAAAABg4g0ODkZPT090d3fHZ599FqOjo6mTJr0tW7bE4cOH44MPPojly5enzgEAAAAAAAAAAAAAAACAaa+5uTkOHjwYf/jDHyZsz5UrV0ZnZ2fMmzdvwvYEAAAAAPj3CqkDAAAAAAAAAAAAAAAAAAAAAAAAAACYGM+fP49Tp05Fd3d39PT0xNDQUOqkSW/NmjXR1dUVXV1dsW7dutQ5AAAAAAAAAAAAAAAAAMC/s3r16tiyZUt8880349qnubk53n333di2bVvkcrkJqgMAAAAA+MsKqQMAAAAAAAAAAAAAAAAAAAAAAAAAABi7RqMR58+fj6NHj0Z3d3cMDAykTpr0li5dGu+//34cPnzYh4QAAAAAAAAAAAAAAAAAYBLYu3dv/PDDDzE4ODim51evXh0HDx6MOXPmTHAZAAAAAMBfVkgdAAAAAAAAAAAAAAAAAAAAAAAAAADAy7t582YcPXo0jh49GtevX0+dM+nNmzcvfve738Xhw4ejWCxGPp9PnQQAAAAAAAAAAAAAAAAA/EozZsyIAwcOxIcffvjSz+3bty82bdoUuVzuFdUBAAAAAPy5QuoAAAAAAAAAAAAAAAAAAAAAAAAAAAB+ncePH8fHH38cR48ejb6+vtQ5k15ra2v89re/jcOHD8c777wThYJXdQIAAAAAAAAAAAAAAADAZLVu3brYsGFDfPvtt7/q/g0bNsT+/fujtbX1FZcBAAAAAPw5bz4DAAAAAAAAAAAAAAAAAAAAAAAAAHiDjYyMxGeffRZHjhyJ3t7eGB4eTp00qTU3N8f+/fujq6srDh48GDNnzkydBAAAAAAAAAAAAAAAAABMkP3798fNmzfjl19++av3tLa2xoEDB2L9+vWvsQwAAAAA4E8VUgcAAAAAAAAAAAAAAAAAAAAAAAAAAPCnGo1GfP3113H06NHo7u6Ohw8fpk6a1PL5fJTL5Th8+HD8wz/8Q8ydOzd1EgAAAAAAAAAAAAAAAADwCrS2tsbevXvj008//YvXN2/eHPv27YsZM2a85jIAAAAAgD9VSB0AAAAAAAAAAAAAAAAAAAAAAAAAAMD/8dNPP8Uf/vCHOHLkSHz33Xepcya9Xbt2RVdXV/zud7+Lt956K3UOAAAAAAAAAAAAAAAAAPAabNq0Ka5evRrXr19/8ducOXPi4MGDsXr16oRlAAAAAAD/v0LqAAAAAAAAAAAAAAAAAAAAAAAAAACA6ezp06fxySefxNGjR6NarUaj0UidNKlt3rw5urq64oMPPoiVK1emzgEAAAAAAAAAAAAAAAAAXrNcLhcHDx6M//bf/lsMDw9HW1tb7NmzJ1paWlKnAQAAAAC8UEgdAAAAAAAAAAAAAAAAAAAAAAAAAAAw3YyOjsbnn38eR44ciT/+8Y8xNDSUOmlSW7VqVXR1dcXhw4djw4YNqXMAAAAAAAAAAAAAAAAAgMRmz54dnZ2d0draGitWrEidAwAAAADwZwqpAwAAAAAAAAAAAAAAAAAAAAAAAAAApoNGoxGXL1+O3//+93Hs2LF48OBB6qRJbfHixfHBBx9EV1dXtLW1RS6XS50EAAAAAAAAAAAAAAAAAJPa8+fPo7m5OXXGhNmwYUPqBAAAAACAv6qQOgAAAAAAAAAAAAAAAAAAAAAAAAAAYCq7c+dOHDt2LI4cORJXr15NnTOpzZs3L9577704fPhwdHR0RD6fT50EAAAAAAAAAAAAAAAAAJPes2fP4uTJkzEwMBD/+T//Z+f3AAAAAABeg0LqAAAAAAAAAAAAAAAAAAAAAAAAAACAqWZwcDD++Mc/xpEjR+KLL76IRqOROmnSmjlzZhw6dCi6urpi79690dzcnDoJAAAAAAAAAAAAAAAAAKaERqMRV69ejVOnTsUvv/wSERFnzpyJUqmUuAwAAAAAYOorpA4AAAAAAAAAAAAAAAAAAAAAAAAAAJgK6vV6VCqV+P3vfx+ffvppPHv2LHXSpFUoFGLfvn1x+PDhOHjwYLS2tqZOAgAAAAAAAAAAAAAAAIAp5enTp3H8+PG4fv36n/xeq9Vi3bp1sXDhwkRlAAAAAADTQyF1AAAAAAAAAAAAAAAAAAAAAAAAAADAZHb16tU4cuRI/OEPf4i7d++mzpm0crlclMvl6Orqivfeey/mzZuXOgkAAAAAAAAAAAAAAAAAppxGoxEXL16Mzz//PIaHh//s+ujoaPT29sZ/+k//KXK5XIJCAAAAAIDpoZA6AAAAAAAAAAAAAAAAAAAAAAAAAABgsrl//350d3fH73//+/jmm29S50xqO3bsiMOHD8f7778fixcvTp0DAAAAAAAAAAAAAAAAAFPWwMBA9Pb2xs2bN//mfbdv347z589He3v7ayoDAAAAAJh+CqkDAAAAAAAAAAAAAAAAAAAAAAAAAAAmg19++SV6enriyJEjcfr06ajX66mTJq0NGzbE4cOH44MPPoi33347dQ4AAAAAAAAAAAAAAAAATGmNRiPOnz8fX375ZYyMjPyqZ7788stYu3ZtzJs37xXXAQAAAABMT4XUAQAAAAAAAAAAAAAAAAAAAAAAAAAAb6p6vR61Wi2OHj0aH3/8cQwODqZOmrRWrlwZXV1d0dXVFZs2bUqdAwAAAAAAAAAAAAAAAADTws8//xw9PT1x+/btl3puZGQkent74z/+x/8YuVzuFdUBAAAAAExfhdQBAAAAAAAAAAAAAAAAAAAAAAAAAABvmmvXrsXRo0fjD3/4Q/z000+pcyatRYsWxfvvvx9dXV3R3t7uI0QAAAAAAAAAAAAAAAAA8JrU6/U4c+ZM1Gq1GB0dHdMeN2/ejIsXL8b27dsnuA4AAAAAgELqAAAAAAAAAAAAAAAAAAAAAAAAAACAN8HDhw/jww8/jCNHjsSFCxdS50xac+bMiffeey8OHz4cWZZFU1NT6iQAAAAAAAAAAAAAAAAAmFbu378fPT09ce/evXHvdfr06VizZk3Mnj17AsoAAAAAAPh/CqkDAAAAAAAAAAAAAAAAAAAAAAAAAABSGR4ejt7e3jh69GicPHkyRkdHUydNSjNmzIjOzs7o6uqKffv2RUtLS+okAAAAAAAAAAAAAAAAAJh2RkdHo1arxZkzZ6Jer0/Ins+fP4/jx49HV1dX5HK5CdkTAAAAAICIQuoAAAAAAAAAAAAAAAAAAAAAAAAAAIDXqdFoRH9/fxw9ejQ++uijePLkSeqkSampqSn27t0bXV1dcejQoZg1a1bqJAAAAAAAAAAAAAAAAACYtu7cuRM9PT3x8OHDCd/7+vXrceXKldi8efOE7w0AAAAAMF0VUgcAAAAAAAAAAAAAAAAAAAAAAAAAALwO169fj6NHj8bRo0fj5s2bqXMmpVwuF6VSKQ4fPhz/+I//GPPnz0+dBAAAAAAAAAAAAAAAAADT2sjISHz55Zdx/vz5aDQar2zOqVOn4u23347W1tZXNgMAAAAAYDoppA4AAAAAAAAAAAAAAAAAAAAAAAAAAHhVHj16FB999FEcOXIkzp07lzpn0mpra4uurq54//33Y+nSpalzAAAAAAAAAAAAAAAAAICIuHnzZvT29sbAwMArnzU0NBQnT56M3/3ud698FgAAAADAdFBIHQAAAAAAAAAAAAAAAAAAAAAAAAAAMJGGh4fj5MmTceTIkThx4kSMjIykTpqU1q1bF11dXdHV1RVr1qxJnQMAAAAAAAAAAAAAAAAA/F/Dw8Px+eefx9dff/1a53777bdx7dq1WL9+/WudCwAAAAAwFRVSBwAAAAAAAAAAAAAAAAAAAAAAAAAAjFej0Yhz587F0aNH48MPP4yBgYHUSZPS8uXL44MPPojDhw/H5s2bI5fLpU4CAAAAAAAAAAAAAAAAAP6NGzduxPHjx+PJkydJ5p88eTJWrlwZM2bMSDIfAAAAAGCqKKQOAAAAAAAAAAAAAAAAAAAAAAAAAAAYqx9//DGOHj0aR48ejRs3bqTOmZQWLlwYv/vd7+Lw4cPR3t4e+Xw+dRIAAAAAAAAAAAAAAAAA8O8MDQ3FqVOn4vLly0k7BgcH47PPPovf/va3STsAAAAAACa7QuoAAAAAAAAAAAAAAAAAAAAAAAAAAICX8fjx4/joo4/i6NGj0d/fnzpnUpo1a1a899570dXVFXv27ImmpqbUSQAAAAAAAAAAAAAAAADAX3Ht2rU4ceJEPHv2LHVKRER88803sXHjxli9enXqFAAAAACASauQOgAAAAAAAAAAAAAAAAAAAAAAAAAA4O8ZGRmJU6dOxZEjR+L48eMxPDycOmnSyefzsW/fvvgP/+E/xKFDh2LGjBmpkwAAAAAAAAAAAAAAAACAv2FwcDBOnjwZ165dS53yZ44fPx7//M//HC0tLalTAAAAAAAmpULqAAAAAAAAAAAAAAAAAAAAAAAAAACA/4+9e3uPqkwXvf1UpRIIW9kIAm3QgCggIsg+JNGgIom22kIy/8B1YMJOWwO0NtFsxAgyQRRakK2AsmmQbYCEVH0Ha35zzbWms9s2wFuV3Pdh1RjP8zse1zXG+2sKhUL87W9/i/b29vjLX/4S165dS51Ukp577rloamqK9evXx+TJk1PnAAAAAAAAAAAAAAAAAAD/RKFQiOPHj8eePXvi3r17qXN+1a1bt2Lv3r2xdu3a1CkAAAAAACUplzoAAAAAAAAAAAAAAAAAAAAAAAAAAOC/unDhQuzYsSN27NgRp0+fTp1TkqZNmxaNjY3R2NgY1dXVqXMAAAAAAAAAAAAAAAAAgN/o1q1b0d3dHWfPnk2d8k8dOXIk5syZEzNmzEidAgAAAABQcnKpAwAAAAAAAAAAAAAAAAAAAAAAAAAAbt++Hbt374729vbYv39/6pySNGbMmGhoaIimpqZ46aWXIpvNpk4CAAAAAAAAAAAAAAAAAH6jQqEQ33//ffT29sbAwEDqnN+sq6sr3nvvvcjlcqlTAAAAAABKiqeqAAAAAAAAAAAAAAAAAAAAAAAAAEASg4OD8dVXX8XHH38cn3/+efT396dOKjnZbDZWrlwZjY2N8fLLL0dlZWXqJAAAAAAAAAAAAAAAAADgX3Tjxo3o7OyMn3/+OXXKv+z69evx9ddfx6pVq1KnAAAAAACUlFzqAAAAAAAAAAAAAAAAAAAAAAAAAABg5CgUCnHs2LFob2+PXbt2xdWrV1MnlaR58+ZFY2NjvPHGGzF16tTUOQAAAAAAAAAAAAAAAADA71AoFOK7776Lffv2xf3791Pn/G7ffvttVFdXx7Rp01KnAAAAAACUjFzqAAAAAAAAAAAAAAAAAAAAAAAAAABg+Lt06VLs2rUr2tvb48SJE6lzStLUqVNjw4YN0djYGM8880zqHAAAAAAAAAAAAAAAAABgCH755Zfo6uqKixcvpk4ZspkzZ0ZlZWXqDAAAAACAkpJLHQAAAAAAAAAAAAAAAAAAAAAAAAAADE99fX3x2WefRXt7e+zbty8KhULqpJIzevToeOWVV6KpqSlWrFgR2Ww2dRIAAAAAAAAAAAAAAAAAMAT5fD4OHjwYBw4ciMHBwdQ5QzJq1KhYtWpVzJs3LzKZTOocAAAAAICSkksdAAAAAAAAAAAAAAAAAAAAAAAAAAAMH/l8Pvbt2xft7e3R0dERd+/eTZ1UcjKZTCxfvjwaGxujoaEhxowZkzoJAAAAAAAAAAAAAAAAAHgA/v73v0dnZ2dcuXIldcqQPfXUU7F27VrvQQIAAAAA/E651AEAAAAAAAAAAAAAAAAAAAAAAAAAQOk7fvx47NixI3bu3BmXL19OnVOSqquro6mpKTZs2BDTpk1LnQMAAAAAAAAAAAAAAAAAPCCDg4Oxf//++Oabb6JQKKTOGZLKyspYs2ZNVFdXRyaTSZ0DAAAAAFCycqkDAAAAAAAAAAAAAAAAAAAAAAAAAIDSdOXKldi1a1e0t7fHsWPHUueUpMmTJ8cbb7wRjY2N8eyzzzqMBwAAAAAAAAAAAAAAAACGmYsXL0ZnZ2dcu3YtdcqQzZ07N9asWROjR49OnQIAAAAAUPJyqQMAAAAAAAAAAAAAAAAAAAAAAAAAgNJx9+7d+Pzzz2PHjh3R29sb+Xw+dVLJqaioiJdffjmamppi5cqVkcv5PCQAAAAAAAAAAAAAAAAADDcDAwOxb9++OHz4cBQKhdQ5QzJ27NhYu3ZtzJ49O3UKAAAAAMCw4St0AAAAAAAAAAAAAAAAAAAAAAAAAMA/lM/n49///d+jvb09du/eHX19famTStLSpUujqakp1q1bF+PGjUudAwAAAAAAAAAAAAAAAAA8JOfPn4+urq64efNm6pQhe+6552LlypUxatSo1CkAAAAAAMNKLnUAAAAAAAAAAAAAAAAAAAAAAAAAAFCcTp06FTt27IgdO3bExYsXU+eUpNmzZ0dTU1O88cYbMXPmzNQ5AAAAAAAAAAAAAAAAAMBD1N/fH729vfH999+nThmy8ePHR11dXcyaNSt1CgAAAADAsJRLHQAAAAAAAAAAAAAAAAAAAAAAAAAAFI+rV6/GJ598Eu3t7fG3v/0tdU5JmjhxYqxfvz6amppiwYIFkclkUicBAAAAAAAAAAAAAAAAAA/ZmTNnoqenJ27fvp06ZUgymUwsXLgwli9fHuXl5alzAAAAAACGrVzqAAAAAAAAAAAAAAAAAAAAAAAAAAAgrf7+/ujs7IwdO3bEF198Efl8PnVSySkvL4/a2tp48803Y/Xq1Q7dAQAAAAAAAAAAAAAAAIAR4u7du7Fnz544fvx46pQhe+yxx6Kuri6eeOKJ1CkAAAAAAMNeLnUAAAAAAAAAAAAAAAAAAAAAAAAAAPDo5fP5+Oabb6K9vT3++te/xq1bt1InlaTFixdHU1NTvPrqqzFhwoTUOQAAAAAAAAAAAAAAAADAI1IoFOLkyZOxZ8+euHPnTuqcIclkMrF48eJ46aWXoqysLHUOAAAAAMCIkEsdAAAAAAAAAAAAAAAAAAAAAAAAAAA8Oj/++GO0t7fHzp0746effkqdU5L+8Ic/RGNjYzQ2NsYf/vCH1DkAAAAAAAAAAAAAAAAAwCPW19cXPT09cfr06dQpQzZlypSor6+PqVOnpk4BAAAAABhRcqkDAAAAAAAAAAAAAAAAAAAAAAAAAICH6/r16/HJJ59Ee3t7fPfdd6lzStKECRPitddei6ampli0aFFkMpnUSQAAAAAAAAAAAAAAAADAI1YoFOLYsWPR29sb9+7dS50zJNlsNpYuXRovvvhiZLPZ1DkAAAAAACNOLnUAAAAAAAAAAAAAAAAAAAAAAAAAAPDg9ff3R09PT+zYsSN6enri/v37qZNKTi6Xi7Vr10ZjY2OsXbs2KioqUicBAAAAAAAAAAAAAAAAAIncvHkzuru749y5c6lThmzatGlRX18fkyZNSp0CAAAAADBi5VIHAAAAAAAAAAAAAAAAAAAAAAAAAAAPRqFQiG+//Tba29vj008/jRs3bqROKknPP/98NDU1xeuvvx4TJ05MnQMAAAAAAAAAAAAAAAAAJFQoFOLIkSOxd+/eGBgYSJ0zJLlcLpYtWxaLFi2KTCaTOgcAAAAAYETLpQ4AAAAAAAAAAAAAAAAAAAAAAAAAAIbm/Pnz0d7eHjt27Ihz586lzilJM2fOjA0bNkRTU1NUVVWlzgEAAAAAAAAAAAAAAAAAisD169ejq6srfv7559QpQzZjxoyoq6uLiRMnpk4BAAAAACAicqkDAAAAAAAAAAAAAAAAAAAAAAAAAIB/TaFQiCNHjsT/+l//Kzo6OmJwcDB1UkkaO3ZsvPbaa9HU1BSLFy+ObDabOgkAAAAAAAAAAAAAAAAAKAL5fD6+/fbb+Prrr0v+Pc7y8vJYuXJlzJ8/PzKZTOocAAAAAAD+Qy51AAAAAAAAAAAAAAAAAAAAAAAAAADwz92+fTu6u7vj888/j927d0ehUEidVJKy2WzU1NREY2Nj1NXVxahRo1InAQAAAAAAAAAAAAAAAABF5OrVq9HZ2RmXL19OnTJkTz75ZNTW1sa4ceNSpwAAAAAA8P/IpQ4AAAAAAAAAAAAAAAAAAAAAAAAAAH7d9evXo7OzMzo6OuKrr76KgYGB1Ekla/78+dHU1BSvv/56TJ48OXUOAAAAAAAAAAAAAAAAAFBkBgcH4+DBg3HgwIHI5/Opc4Zk1KhRsXr16njmmWcik8mkzgEAAAAA4FfkUgcAAAAAAAAAAAAAAAAAAAAAAAAAAP/H1atX47PPPovdu3fH119/XfKH2KQ0bdq0aGxsjMbGxqiurk6dAwAAAAAAAAAAAAAAAAAUqcuXL0dnZ2dcvXo1dcqQPf3001FTUxNjxoxJnQIAAAAAwD+QSx0AAAAAAAAAAAAAAAAAAAAAAAAAACPdxYsXo6OjIzo6OuLgwYNRKBRSJ5WsMWPGxLp166KpqSmWLl0a2Ww2dRIAAAAAAAAAAAAAAAAAUKTu378f+/fvj0OHDpX8+52VlZVRU1MT1dXVqVMAAAAAAPgNcqkDAAAAAAAAAAAAAAAAAAAAAAAAAGAkOnfuXHR0dMTu3bvj8OHDqXNKWjabjVWrVkVjY2O8/PLLMXr06NRJAAAAAAAAAAAAAAAAAECRu3DhQnR2dsb169dTpwzZM888E6tXr/aOJQAAAABACcmlDgAAAAAAAAAAAAAAAAAAAAAAAACAkeLkyZPR0dERHR0dcezYsdQ5JW/evHnR1NQU69evj6lTp6bOAQAAAAAAAAAAAAAAAABKwMDAQOzduzeOHDkShUIhdc6QjB07Nmpra6Oqqip1CgAAAAAA/6Jc6gAAAAAAAAAAAAAAAAAAAAAAAAAAGK4KhUIcO3Ysdu/eHR0dHXH69OnUSSVv6tSpsWHDhmhsbIxnnnkmdQ4AAAAAAAAAAAAAAAAAUELOnTsX3d3dcfPmzdQpQzZ//vxYuXJlVFRUpE4BAAAAAOB3yKUOAAAAAAAAAAAAAAAAAAAAAAAAAIDhJJ/Px+HDh6OjoyM6Ojri/PnzqZNK3ujRo6OhoSGamppi+fLlkc1mUycBAAAAAAAAAAAAAAAAACXk3r170dvbG0ePHk2dMmQTJkyIurq6mDlzZuoUAAAAAACGIJc6AAAAAAAAAAAAAAAAAAAAAAAAAABKXT6fj4MHD8bu3bvjs88+i0uXLqVOKnmZTCaWL18eTU1N8corr8SYMWNSJwEAAAAAAAAAAAAAAAAAJej06dPR09MTfX19qVOGJJPJxPPPPx/Lli2L8vLy1DkAAAAAAAxRLnUAAAAAAAAAAAAAAAAAAAAAAAAAAJSi+/fvx9dffx0dHR3x+eefx9WrV1MnDQvV1dXx5ptvxhtvvBHTpk1LnQMAAAAAAAAAAAAAAAAAlKg7d+7Enj174sSJE6lThmzSpElRV1cX06dPT50CAAAAAMADkksdAAAAAAAAAAAAAAAAAAAAAAAAAAClor+/P3p7e6OjoyO6urrixo0bqZOGhcmTJ8cbb7wRTU1NMW/evMhkMqmTAAAAAAAAAAAAAAAAAIASVSgU4uTJk/HFF1/E3bt3U+cMSSaTiRdffDGWLl0aZWVlqXMAAAAAAHiAcqkDAAAAAAAAAAAAAAAAAAAAAAAAAKCY3blzJ/bs2RO7d++Onp6e6OvrS500LFRUVMTLL78cb775ZqxcudLBOAAAAAAAAAAAAAAAAADAkN2+fTt6enrizJkzqVOGbOrUqVFfXx9TpkxJnQIAAAAAwEOQSx0AAAAAAAAAAAAAAAAAAAAAAAAAAMXm1q1b0d3dHR0dHbFnz564d+9e6qRh46WXXoqmpqZYt25djB07NnUOAAAAAAAAAAAAAAAAADAMFAqFOHr0aPT29kZ/f3/qnCEpKyuLpUuXxuLFiyObzabOAQAAAADgIcmlDgAAAAAAAAAAAAAAAAAAAAAAAACAYnD9+vXo7OyM3bt3x969e2NgYCB10rDx1FNPRWNjY2zYsCFmzJiROgcAAAAAAAAAAAAAAAAAGEZu3rwZXV1dcf78+dQpQzZ9+vSoq6uLSZMmpU4BAAAAAOAhy6UOAAAAAAAAAAAAAAAAAAAAAAAAAIBUrly5Ep999ll0dHTE119/Hfl8PnXSsPHYY4/F+vXro6mpKebPnx+ZTCZ1EgAAAAAAAAAAAAAAAAAwjBQKhTh8+HDs27cvBgYGUucMSS6Xi+XLl8fzzz/vnUwAAAAAgBEilzoAAAAAAAAAAAAAAAAAAAAAAAAAAB6lCxcuREdHR3R0dMQ333wThUIhddKwUV5eHnV1ddHU1BRr1qyJXM5nDwEAAAAAAAAAAAAAAACAB+/atWvR1dUVFy5cSJ0yZDNnzoy6urqYMGFC6hQAAAAAAB4hX+sDAAAAAAAAAAAAAAAAAAAAAAAAYNg7e/ZsdHR0xO7du+PIkSOpc4adF198MRobG+PVV191AA4AAAAAAAAAAAAAAAAA8NBdvnw5Lly4kDpjSCoqKmLlypXx3HPPRSaTSZ0DAAAAAMAjlksdAAAAAAAAAAAAAAAAAAAAAAAAAAAPWqFQiFOnTsXu3bujo6Mjfvjhh9RJw86TTz4ZjY2N0djYGLNmzUqdAwAAAAAAAAAAAAAAAACMIHPnzo3jx4/H2bNnU6f8LlVVVVFbWxtjx45NnQIAAAAAQCK51AEAAAAAAAAAAAAAAAAAAAAAAAAA8CAUCoU4evRodHR0xO7du+PMmTOpk4adCRMmxOuvvx6NjY2xaNGiyGQyqZMAAAAAAAAAAAAAAAAAgBEok8lEXV1dbN68Ofr7+1Pn/GajR4+O1atXx9y5c72nCQAAAAAwwuVSBwAAAAAAAAAAAAAAAAAAAAAAAADAUFy7di0+/PDD2LZtW5w/fz51zrCTy+Vi7dq10dTUFDU1NVFRUZE6CQAAAAAAAAAAAAAAAAAgxo4dGytXrozu7u7UKb9JdXV11NTURGVlZeoUAAAAAACKQC51AAAAAAAAAAAAAAAAAAAAAAAAAAD8Ht9//320tbXFrl27or+/P3XOsLNo0aJoamqK1157LSZOnJg6BwAAAAAAAAAAAAAAAADgv3nuuefixIkT8dNPP6VO+R+NGTMmampq4umnn06dAgAAAABAEcmlDgAAAAAAAAAAAAAAAAAAAAAAAACA32pgYCA6OjqitbU1Dh06lDpn2Jk5c2Y0NjZGY2NjVFVVpc4BAAAAAAAAAAAAAAAAAPiHMplM1NXVxZYtW+L+/fupc/6befPmxerVq2PUqFGpUwAAAAAAKDK51AEAAAAAAAAAAAAAAAAAAAAAAAAA8M9cvnw5tm/fHlu3bo0rV66kzhlWxo0bF6+99lo0NjbG4sWLI5vNpk4CAAAAAAAAAAAAAAAAAPjNJkyYEMuXL48vv/wydcp/GjduXNTW1saTTz6ZOgUAAAAAgCKVSx0AAAAAAAAAAAAAAAAAAAAAAAAAAL+mUCjEoUOHorW1NXbv3h2Dg4Opk4aNsrKyqKmpicbGxqirq4uKiorUSQAAAAAAAAAAAAAAAAAAv9vzzz8fJ0+ejIsXL6ZOiQULFsTKlSujvLw8dQoAAAAAAEUslzoAAAAAAAAAAAAAAAAAAAAAAAAAAP6re/fuxV/+8pd4//3349ixY6lzhpUFCxZEU1NTvP766zFp0qTUOQAAAAAAAAAAAAAAAAAAD0Qmk4m6urrYtm1bDA4OJmmYOHFi1NXVxYwZM5LsBwAAAACgtORSBwAAAAAAAAAAAAAAAAAAAAAAAABARMRPP/0UW7ZsiQ8++CBu3LiROmfYmD59ejQ2NkZjY2M8/fTTqXMAAAAAAAAAAAAAAAAAAB6KSZMmxdKlS2Pfvn2PdG8mk4lFixbFsmXLIpfLPdLdAAAAAACULk+UAQAAAAAAAAAAAAAAAAAAAAAAAEimUCjEvn374v3334/u7u4oFAqpk4aFGTNmxKpVq+KNN96IJUuWRDabTZ0EAAAAAAAAAAAAAAAAAPDQLV68OE6ePBlXrlx5JPsmTZoU9fX1MW3atEeyDwAAAACA4SOXOgAAAAAAAAAAAAAAAAAAAAAAAACAkaevry8+/vjjaGtri9OnT6fOGRYWLFgQa9asiQ0bNkRVVVVkMpnUSQAAAAAAAAAAAAAAAAAAj1Q2m436+vrYvn17FAqFh7rnxRdfjCVLlkRZWdlD2wMAAAAAwPCVSx0AAAAAAAAAAAAAAAAAAAAAAAAAwMhx5syZaG1tjY8//jj6+vpS55S0J554IhoaGmLdunWxaNGiyGazqZMAAAAAAAAAAAAAAAAAAJKbOnVqvPjii3HgwIGHMv/xxx+Purq6mDJlykOZDwAAAADAyJBLHQAAAAAAAAAAAAAAAAAAAAAAAADA8JbP56OnpydaW1vjq6++Sp1T0qqqqqKhoSEaGhpi/vz5kclkUicBAAAAAAAAAAAAAAAAABSdpUuXxqlTp+LatWsPbGZZWVksW7YsFi1aFNls9oHNBQAAAABgZMqlDgAAAAAAAAAAAAAAAAAAAAAAAABgeLpx40Z8+OGHsXnz5vjpp59S55Ss6urqePXVV6OhoSHmzJkTmUwmdRIAAAAAAAAAAAAAAAAAQFErKyuL+vr6+POf/xyFQmHI86ZPnx719fXx2GOPDT0OAAAAAAAiIpc6AAAAAAAAAAAAAAAAAAAAAAAAAIDh5dixY9HW1hY7d+6Me/fupc4pSfPnz4+GhoZoaGiI2bNnp84BAAAAAAAAAAAAAAAAACg506dPj+effz6+/fbb3z2jvLw8VqxYEQsWLIhMJvMA6wAAAAAAGOlyqQMAAAAAAAAAAAAAAAAAAAAAAAAAKH3379+Pzz77LNra2uLAgQOpc0rSCy+8EA0NDdHQ0BAzZ85MnQMAAAAAAAAAAAAAAAAAUPKWLVsWZ86ciRs3bvzL986aNSvq6upi/PjxD6EMAAAAAICRLpc6AAAAAAAAAAAAAAAAAAAAAAAAAIDSdeXKldi+fXts3bo1Ll++nDqnpGSz2ViyZEmsW7cuXn755Zg2bVrqJAAAAAAAAAAAAAAAAACAYaW8vDxqa2ujvb39N99TUVERq1evjnnz5kUmk3mIdQAAAAAAjGS51AEAAAAAAAAAAAAAAAAAAAAAAAAAlJZCoRDfffddtLW1xaeffhr3799PnVQyysrKYsWKFdHQ0BAvv/xyTJo0KXUSAAAAAAAAAAAAAAAAAMCwNmvWrHjuuefi+++//6fXzp49O9auXRtjx459BGUAAAAAAIxkudQBAAAAAAAAAAAAAAAAAAAAAAAAAJSG/v7++OSTT6KtrS2OHDmSOqdkVFRUxKpVq2LdunVRW1sbEyZMSJ0EAAAAAAAAAAAAAAAAADCirFq1Ks6ePRu3b9/+1f9Hjx4dNTU1UV1dHZlM5hHXAQAAAAAwEuVSBwAAAAAAAAAAAAAAAAAAAAAAAABQ3C5cuBBbt26N7du3x7Vr11LnlITKysqoqamJhoaGWLt2bYwZMyZ1EgAAAAAAAAAAAAAAAADAiFVRURG1tbWxa9eu//bfnDlzYs2aNVFZWZmgDAAAAACAkSqXOgAAAAAAAAAAAAAAAAAAAAAAAACA4lMoFGL//v3R1tYWn3/+eeTz+dRJRW/cuHFRV1cXDQ0NsXr16hg1alTqJAAAAAAAAAAAAAAAAAAA/kNVVVXMnTs3jh8/HhERY8aMidra2pg9e3biMgAAAAAARqJc6gAAAAAAAAAAAAAAAAAAAAAAAAAAikdfX1/s3LkzWltb4+TJk6lzit7EiRPj5ZdfjnXr1sXy5cujvLw8dRIAAAAAAAAAAAAAAAAAAP+DNWvWxPnz56OqqipWrVoVo0aNSp0EAAAAAMAIlSkUCqkbAAAA+H9kMpkJEXH9t15//fr1mDBhwkMsAgAAAAAAAAAAAAAAAAAAAIa7H3/8MbZs2RJ//vOf49atW6lzitrUqVPjlVdeiYaGhli6dGmUlZWlTgIAAAAAAAAAAAAAAAAA4De6e/dujB49OnUGAAAAAMBDc+PGjZg4ceK/csvEQqFw42H18OtyqQMAAAAAAAAAAAAAAAAAAAAAAAAASCOfz8eXX34Zra2tsWfPntQ5Re2JJ56IhoaGWLduXSxatCiy2WzqJAAAAAAAAAAAAAAAAACAh+7HH3+MUaNGxfTp01OnPDCjR49OnQAAAAAAAJFLHQAAAAAAAAAAAAAAAAAAAAAAAADAo3Xz5s346KOPoq2tLc6dO5c6p2hVVVVFQ0NDNDQ0xPz58yOTyaROAgAAAAAAAAAAAAAAAAB4JO7evRtffvll/PDDDzFx4sR47733IpfLpc4CAAAAAIBhw1N3AAAAAAAAAAAAAAAAAAAAAAAAgBHi+PHj0dbWFjt27Ii7d++mzilKc+bMiXXr1kVDQ0PMmTMnMplM6iQAAAAAAAAAAAAAAAAAgEfq5MmT8cUXX8SdO3ciIuL69euxf//+WLlyZeIyAAAAAAAYPnKpAwAAAAAAAAAAAAAAAAAAAAAAAAB4eAYHB6OzszNaW1tj//79qXOK0vz586OhoSHWrVsXVVVVqXMAAAAAAAAAAAAAAAAAAJLo6+uLL774Ik6dOvXf/jt06FBUV1fH448/nqAMAAAAAACGn1zqAAAAAAAAAAAAAAAAAAAAAAAAAAAevKtXr8YHH3wQW7ZsiUuXLqXOKTovvPBCrFu3Ll555ZWYOXNm6hwAAAAAAAAAAAAAAAAAgGQKhUL88MMP8eWXX8a9e/f+x2s6Ozvj3XffjbKyskdcCAAAAAAAw08udQAAAAAAAAAAAAAAAAAAAAAAAAAAD86RI0eitbU1PvnkkxgYGEidU1SmT58emzZtiqampnj88cdT5wAAAAAAAAAAAAAAAAAAJHfr1q3o7u6Os2fP/tNrr169GgcPHoyXXnrpEZQBAAAAAMDwlksdAAAAAAAAAAAAAAAAAAAAAAAAAMDQ9Pf3x1//+tdoa2uL7777LnVO0Vm+fHm0tLREbW1tlJWVpc4BAAAAAAAAAAAAAAAAAEiuUCjE3/72t/jqq69iYGDgN9934MCBeOqpp2LKlCkPsQ4AAAAAAIa/XOoAAAAAAAAAAAAAAAAAAAAAAAAAAH6fS5cuxdatW2P79u1x9erV1DlFpbKyMpqamqK5uTmqq6tT5wAAAAAAAAAAAAAAAAAAFI3r169HV1dX/Pzzz//yvfl8Prq6uuLtt9+ObDb7EOoAAAAAAGBkyKUOAAAAAAAAAAAAAAAAAAAAAAAAAOC3KxQKceDAgWhra4uOjo7I5/Opk4pKVVVVbNq0Kd56660YN25c6hwAAAAAAAAAAAAAAAAAgKJRKBTi22+/ja+//jru37//u+dcvnw5vv3221i8ePEDrAMAAAAAgJEllzoAAAAAAAAAAAAAAAAAAAAAAAAAgH/uzp07sWvXrmhra4sffvghdU5RyWQyUVNTEy0tLbFy5crIZrOpkwAAAAAAAAAAAAAAAAAAisovv/wSnZ2dcenSpQcy7+uvv46nnnoqJk6c+EDmAQAAAADASJNLHQAAAAAAAAAAAAAAAAAAAAAAAADA/+z8+fOxefPm+PDDD+PmzZupc4rK+PHj449//GNs2rQp/vCHP6TOAQAAAAAAAAAAAAAAAAAoOvl8Pg4ePBgHDhyIwcHBBzZ3cHAwOjs746233opMJvPA5gIAAAAAwEiRSx0AAAAAAAAAAAAAAAAAAAAAAAAAwP8tn8/HV199FW1tbdHT0xOFQiF1UlGZO3dutLS0xBtvvBGVlZWpcwAAAAAAAAAAAAAAAAAAitLf//736OzsjCtXrjyU+RcuXIgjR47EwoULH8p8AAAAAAAYznKpAwAAAAAAAAAAAAAAAAAAAAAAAAD4327duhUff/xxtLW1xY8//pg6p6hks9l45ZVXoqWlJZYsWRKZTCZ1EgAAAAAAAAAAAAAAAABAURocHIz9+/fHN998E4VC4aHu2rt3b1RVVcX48eMf6h4AAAAAABhucqkDAAAAAAAAAAAAAAAAAAAAAAAAAEa6kydPxubNm6O9vT36+vpS5xSVSZMmxbvvvhsbN26MadOmpc4BAAAAAAAAAAAAAAAAAChqFy5ciK6urrh27doj2TcwMBBdXV3R2NgYmUzmkewEAAAAAIDhIJc6AAAAAAAAAAAAAAAAAAAAAAAAAGAkyufz0dXVFW1tbbF3797UOUVn4cKF0dLSEq+++mpUVFSkzgEAAAAAAAAAAAAAAAAAKGoDAwOxb9++OHz4cBQKhUe6+/z583Hs2LF49tlnH+leAAAAAAAoZbnUAQAAAAAAAAAAAAAAAAAAAAAAAAAjyfXr1+ODDz6IzZs3x4ULF1LnFJXy8vJ47bXXoqWlJRYuXJg6BwAAAAAAAAAAAAAAAACgJJw/fz66urri5s2byRq+/PLL+MMf/hBjx45N1gAAAAAAAKUklzoAAAAAAAAAAAAAAAAAAAAAAAAAYCT4/vvvo62tLXbt2hX9/f2pc4rKtGnTYuPGjfHOO+/E5MmTU+cAAAAAAAAAAAAAAAAAAJSE/v7+6O3tje+//z51SvT390dPT0+8/vrrkclkUucAAAAAAEDRy6UOAAAAAAAAAAAAAAAAAAAAAAAAABiuBgYGoqOjI1pbW+PQoUOpc4rO0qVL49/+7d+ivr4+ysrKUucAAAAAAAAAAAAAAAAAAJSMM2fORE9PT9y+fTt1yn86c+ZMnDx5MubMmZM6BQAAAAAAil4udQAAAAAAAAAAAAAAAAAAAAAAAADAcHP58uXYvn17bN26Na5cuZI6p6iMHj06Ghsbo7m5OebOnZs6BwAAAAAAAAAAAAAAAACgpNy9ezf27NkTx48fT53yq7744ouYOXNmVFZWpk4BAAAAAICilksdAAAAAAAAAAAAAAAAAAAAAAAAADAcFAqFOHToULS2tsbu3btjcHAwdVJRmTVrVjQ3N8dbb70VEyZMSJ0DAAAAAAAAAAAAAAAAAFBSCoVCnDx5Mvbs2RN37txJnfM/unv3buzZsyfWrVuXOgUAAAAAAIpaLnUAAAAAAAAAAAAAAAAAAAAAAAAAQCm7d+9e/OUvf4nW1tY4evRo6pyis2bNmmhubo41a9ZENptNnQMAAAAAAAAAAAAAAAAAUHL6+vqip6cnTp8+nTrlNzlx4kTMnTs3Zs+enToFAAAAAACKVi51AAAAAAAAAAAAAAAAAAAAAAAAAEAp+umnn2LLli3xwQcfxI0bN1LnFJWxY8fGH//4x9i0aVNUVVWlzgEAAAAAAAAAAAAAAAAAKEmFQiGOHTsWvb29ce/evdQ5/5Lu7u544oknYtSoUalTAAAAAACgKOVSBwAAAAAAAAAAAAAAAAAAAAAAAACUikKhEPv27YvW1tbo7u6OfD6fOqmoVFdXR3NzczQ2NsaYMWNS5wAAAAAAAAAAAAAAAAAAlKybN29Gd3d3nDt3LnXK79LX1xe9vb1RX1+fOgUAAAAAAIpSLnUAAAAAAAAAAAAAAAAAAAAAAAAAQLHr6+uLjz/+ONra2uL06dOpc4pKNpuN+vr6aGlpiZdeeikymUzqJAAAAAAAAAAAAAAAAACAklUoFOLIkSOxd+/eGBgYSJ0zJCdOnIhly5bF2LFjU6cAAAAAAEDRyaUOAAAAAAAAAAAAAAAAAAAAAAAAAChWZ86ciba2tvjoo4+ir68vdU5RmThxYrz77ruxcePGeOKJJ1LnAAAAAAAAAAAAAAAAAACUvOvXr0dnZ2dcuHAhdcqQzZgxI+rq6mLs2LGpUwAAAAAAoCjlUgcAAAAAAAAAAAAAAAAAAAAAAAAAFJN8Ph89PT3R1tYWvb29qXOKznPPPRctLS2xfv36qKioSJ0DAAAAAAAAAAAAAAAAAFDy8vl8fPvtt/H111/H4OBg6pwhKS8vj1WrVsVzzz0XmUwmdQ4AAAAAABStXOoAAAAAAAAAAAAAAAAAAAAAAAAAgGJw48aN+PDDD2Pz5s3x008/pc4pKrlcLl599dVobm6ORYsWORAGAAAAAAAAAAAAAAAAAOABuXr1anR2dsbly5dTpwzZk08+GbW1tTFu3LjUKQAAAAAAUPRyqQMAAAAAAAAAAAAAAAAAAAAAAAAAUjp27Fi0tbXFzp074969e6lzisrUqVPjvffeiz/96U8xZcqU1DkAAAAAAAAAAAAAAAAAAMPG4OBgHDx4MA4cOBD5fD51zpCMGjUq1qxZE3Pnzo1MJpM6BwAAAAAASkIudQAAAAAAAAAAAAAAAAAAAAAAAADAo3b//v347LPPoq2tLQ4cOJA6p+i8+OKL0dzcHA0NDZHL+WwdAAAAAAAAAAAAAAAAAMCDdPny5ejs7IyrV6+mThmyp59+OmpqamLMmDGpUwAAAAAAoKT42iMAAAAAAAAAAAAAAAAAAAAAAAAwYly9ejW2bdsWW7dujcuXL6fOKSoVFRWxYcOGaGlpiXnz5qXOAQAAAAAAAAAAAAAAAAAYdu7fvx/79++PQ4cORaFQSJ0zJJWVlbF27dp4+umnU6cAAAAAAEBJyqUOAAAAAAAAAAAAAAAAAAAAAAAAAHiYCoVCfPfdd9HW1haffvpp3L9/P3VSUZk5c2Zs3Lgx3nnnnZgwYULqHAAAAAAAAAAAAAAAAACAYennn3+Orq6uuH79euqUIXvmmWdizZo1MWrUqNQpAAAAAABQsnKpAwAAAAAAAAAAAAAAAAAAAAAAAAAehv7+/vjkk0+ira0tjhw5kjqn6KxcuTJaWlpi7dq1kc1mU+cAAAAAAAAAAAAAAAAAAAxLAwMDsXfv3jh8+HDqlCEbO3Zs1NbWRlVVVeoUAAAAAAAoebnUAQAAAAAAAAAAAAAAAAAAAAAAAAAP0sWLF2PLli2xffv2uHbtWuqcojJmzJh48803o7m5OZ566qnUOQAAAAAAAAAAAAAAAAAAw9q5c+eiq6srbt26lTplyObPnx8rV66MioqK1CkAAAAAADAs5FIHAAAAAAAAAAAAAAAAAAAAAAAAAAxVoVCI/fv3R1tbW3z++eeRz+dTJxWV2bNnR0tLSzQ1NcXYsWNT5wAAAAAAAAAAAAAAAAAADGv37t2L3t7eOHr0aOqUIZswYULU1dXFzJkzU6cAAAAAAMCwkksdAAAAAAAAAAAAAAAAAAAAAAAAAPB79fX1xc6dO6O1tTVOnjyZOqeoZDKZqK2tjZaWllixYkVkMpnUSQAAAAAAAAAAAAAAAAAAw97p06ejp6cn+vr6UqcMSSaTieeffz6WL18euVwudQ4AAAAAAAw7nr4DAAAAAAAAAAAAAAAAAAAAAAAAJefHH3+MLVu2xJ///Oe4detW6pyiMmHChHjnnXdi48aNMXPmzNQ5AAAAAAAAAAAAAAAAAAAjwp07d2LPnj1x4sSJ1ClDNmnSpKirq4vp06enTgEAAAAAgGErlzoAAAAAAAAAAAAAAAAAAAAAAAAA4LfI5/Px5ZdfRmtra+zZsyd1TtGZN29etLS0xPr162P06NGpcwAAAAAAAAAAAAAAAAAARoRCoRAnTpyIPXv2xN27d1PnDEk2m43FixfH0qVLo6ysLHUOAAAAAAAMa7nUAQAAAAAAAAAAAAAAAAAAAAAAAAD/yM2bN+Ojjz6Ktra2OHfuXOqcolJWVhbr1q2L5ubmWLx4cWQymdRJAAAAAAAAAAAAAAAAAAAjxu3bt6O7uzt+/PHH1ClDNnXq1Kivr48pU6akTgEAAAAAgBEhlzoAAAAAAAAAAAAAAAAAAAAAAAAA4NecOHEiWltbY8eOHXH37t3UOUVl8uTJ8d5778Wf/vSnePzxx1PnAAAAAAAAAAAAAAAAAACMKIVCIY4ePRq9vb3R39+fOmdIysrKYunSpbF48eLIZrOpcwAAAAAAYMTIpQ4AAAAAAAAAAAAAAAAAAAAAAAAA+P8NDg5GZ2dntLa2xv79+1PnFJ0XXnghmpubY926dVFeXp46BwAAAAAAAAAAAAAAAABgxLl582Z0dXXF+fPnU6cM2fTp06O+vj4ee+yx1CkAAAAAADDi5FIHAAAAAAAAAAAAAAAAAAAAAAAAAPzyyy+xffv22LJlS1y6dCl1TlGpqKiI9evXR3Nzc8yfPz91DgAAAAAAAAAAAAAAAADAiFQoFOLw4cOxd+/euH//fuqcIcnlcrFixYpYuHBhZDKZ1DkAAAAAADAi5VIHAAAAAAAAAAAAAAAAAAAAAAAAACPXkSNHorW1NT755JMYGBhInVNUpk+fHps2bYq33347Jk2alDoHAAAAAAAAAAAAAAAAAGDEunbtWnR2dsbFixdTpwzZzJkzo66uLiZMmJA6BQAAAAAARrRc6gAAAAAAAAAAAAAAAAAAAAAAAABgZOnv74+//vWv0dbWFt99913qnKKzfPnyaG5ujrq6uigrK0udAwAAAAAAAAAAAAAAAAAwYuXz+Th06FDs378/BgcHU+cMSUVFRaxatSqeffbZyGQyqXMAAAAAAGDEy6UOAAAAAAAAAAAAAAAAAAAAAAAAAEaGS5cuxdatW2P79u1x9erV1DlFpbKyMpqamqK5uTmqq6tT5wAAAAAAAAAAAAAAAAAAjHhXrlyJzs7O+Pvf/546ZciqqqqitrY2xo4dmzoFAAAAAAD4D7nUAQAAAAAAAAAAAAAAAAAAAAAAAMDwVSgU4uDBg9Ha2hodHR2Rz+dTJxWVqqqq2LRpU7z11lsxbty41DkAAAAAAAAAAAAAAAAAACPe4OBgHDhwIA4ePFjy78aOHj061qxZE3PmzIlMJpM6BwAAAAAA+C9yqQMAAAAAAAAAAAAAAAAAAAAAAACA4efu3buxc+fOaGtrix9++CF1TlHJZDJRU1MTzc3NsWrVqshms6mTAAAAAAAAAAAAAAAAAACIiEuXLkVnZ2f88ssvqVOGrLq6OmpqaqKysjJ1CgAAAAAA8CtyqQMAAAAAAAAAAAAAAAAAAAAAAACA4eP8+fOxefPm+PDDD+PmzZupc4rK+PHj449//GNs3LgxnnzyydQ5AAAAAAAAAAAAAAAAAAD8h/v378e+ffviu+++i0KhkDpnSMaMGRNr166Np556KnUKAAAAAADwD+RSBwAAAAAAAAAAAAAAAAAAAAAAAAClLZ/Px969e6O1tTV6enpK/uCVB23OnDnR0tISGzZsiMrKytQ5AAAAAAAAAAAAAAAAAAD8Fz///HN0dnbGjRs3UqcM2bx582L16tUxatSo1CkAAAAAAMA/kUsdAAAAAAAAAAAAAAAAAAAAAAAAAJSm27dvx0cffRRtbW3x448/ps4pKtlsNl555ZVoaWmJJUuWRCaTSZ0EAAAAAAAAAAAAAAAAAMB/0d/fH1999VX87W9/S50yZOPGjYva2tp48sknU6cAAAAAAAC/US51AAAAAAAAAAAAAAAAAAAAAAAAAFBaTp06FW1tbdHe3h59fX2pc4rKpEmT4t13342NGzfGtGnTUucAAAAAAAAAAAAAAAAAAPArzp49G93d3XHr1q3UKUO2cOHCWLFiRZSXl6dOAQAAAAAA/gW51AEAAAAAAAAAAAAAAAAAAAAAAABA8cvn89HV1RVtbW2xd+/e1DlFZ+HChdHS0hKvvvpqVFRUpM4BAAAAAAAAAAAAAAAAAOBX3Lt3L/bs2RM//PBD6pQhmzhxYtTV1cWMGTNSpwAAAAAAAL9DLnUAAAAAAAAAAAAAAAAAAAAAAAAAULyuX78eH3zwQWzZsiV+/vnn1DlFpby8PF577bVoaWmJhQsXps4BAAAAAAAAAAAAAAAAAOAfOHXqVPT09MSdO3dSpwxJJpOJF154IV566aXI5XKpcwAAAAAAgN/JU34AAAAAAAAAAAAAAAAAAAAAAADgvzl69Gi0trbGrl27or+/P3VOUZk2bVps3Lgx3nnnnZg8eXLqHAAAAAAAAAAAAAAAAAAA/oE7d+5ET09PnDp1KnXKkE2ePDnq6+vj8ccfT50CAAAAAAAMUS51AAAAAAAAAAAAAAAAAAAAAAAAAFAcBgYG4rPPPov3338/Dh06lDqn6CxdujRaWlqivr4+cjmfcgMAAAAAAAAAAAAAAAAAKGaFQiGOHz8ee/bsiXv37qXOGZJsNhtLliyJF198McrKylLnAAAAAAAAD4AvWwIAAAAAAAAAAAAAAAAAAAAAAMAI9/e//z22bdsWW7dujStXrqTOKSqjRo2Kpqam2LRpUzzzzDOpcwAAAAAAAAAAAAAAAAAA+A1u3boV3d3dcfbs2dQpQ/b4449HXV1dTJkyJXUKAAAAAADwAOVSBwAAAAAAAAAAAAAAAAAAAAAAAACPXqFQiG+//Tbef//92L17dwwODqZOKiqzZs2K5ubmeOutt2LChAmpcwAAAAAAAAAAAAAAAAAA+A0KhUJ8//330dvbGwMDA6lzhqSsrCyWLVsWixYtimw2mzoHAAAAAAB4wHKpAwAAAAAAAAAAAAAAAAAAAAAAAIBH5969e/GXv/wlWltb4+jRo6lzis6aNWuiubk51qxZ47AWAAAAAAAAAAAAAAAAAIAS89lnn8Xx48dTZwzZE088EfX19TFx4sTUKQAAAAAAwEOSSx0AAAAAAAAAAAAAAAAAAAAAAAAAPHw///xzbNmyJT744IO4fv166pyiMnbs2PjjH/8YmzZtiqqqqtQ5AAAAAAAAAAAAAAAAAAD8TnPmzInjx4+nzvjdysvLY8WKFbFgwYLIZDKpcwAAAAAAgIcolzoAAAAAAAAAAAAAAAAAAAAAAAAAeDgKhULs27cvWltbo7u7O/L5fOqkolJdXR3Nzc3R2NgYY8aMSZ0DAAAAAAAAAAAAAAAAAMAQzZ49O+bOnRvHjx9PnfIvmzVrVtTV1cX48eNTpwAAAAAAAI9ALnUAAAAAAAAAAAAAAAAAAAAAAAAA8GD19fVFe3t7tLW1xalTp1LnFJVsNhv19fXR3Nwcy5Yti0wmkzoJAAAAAAAAAAAAAAAAAIAHaM2aNXH+/Pm4c+dO6pTfpKKiIlavXh3z5s3z7isAAAAAAIwgudQBAAAAAAAAAAAAAAAAAAAAAAAAwINx5syZaGtri48++ij6+vpS5xSViRMnxrvvvhvvvfdezJgxI3UOAAAAAAAAAAAAAAAAAAAPyejRo2PNmjWxe/fu1Cn/1OzZs2Pt2rUxduzY1CkAAAAAAMAjlksdAAAAAAAAAAAAAAAAAAAAAAAAAPx++Xw+vvjii2htbY3e3t7UOUXnueeei5aWlli/fn1UVFSkzgEAAAAAAAAAAAAAAAAA4BGorq6OEydOxOnTp1On/KrRo0dHTU1NVFdXRyaTSZ0DAAAAAAAkkEsdAAAAAAAAAAAAAAAAAAAAAAAAAPzrbty4ER9++GFs3rw5fvrpp9Q5RSWXy8Wrr74azc3NsWjRIgezAAAAAAAAAAAAAAAAAACMMJlMJtauXRs///xz3Lt3L3XO/2XOnDmxZs2aqKysTJ0CAAAAAAAklEsdAAAAAAAAAAAAAAAAAAAAAAAAAPx2P/zwQ7S2tsbOnTuL7kCU1KZOnRrvvfde/OlPf4opU6akzgEAAAAAAAAAAAAAAAAAIKExY8bEqlWrorOzM3VKRPzvntra2pg9e3bqFAAAAAAAoAjkUgcAAAAAAAAAAAAAAAAAAAAAAAAA/9j9+/fj888/j9bW1jhw4EDqnKKzePHiaGlpiVdeeSXKy8tT5wAAAAAAAAAAAAAAAAAAUCTmzZsXJ06ciHPnziXtePbZZ2PVqlUxatSopB0AAAAAAEDxyKUOAAAAAAAAAAAAAAAAAAAAAAAAAH7d1atXY9u2bbF169a4fPly6pyiUlFRERs2bIjm5uZ49tlnU+cAAAAAAAAAAAAAAAAAAFCEMplM1NbWxpYtW2JgYOCR7x8/fnzU1dXFrFmzHvluAAAAAACguOVSBwAAAAAAAAAAAAAAAAAAAAAAAAD/R6FQiMOHD0dra2t8+umncf/+/dRJRWXmzJmxcePGePvtt2PixImpcwAAAAAAAAAAAAAAAAAAKHLjx4+PFStWxBdffPHIdmYymViwYEGsWLEiysvLH9leAAAAAACgdORSBwAAAAAAAAAAAAAAAAAAAAAAAAAR/f398emnn0Zra2scOXIkdU7RWblyZbS0tMTatWsjm82mzgEAAAAAAAAAAAAAAAAAoIQsWLAgTpw4ERcuXHjoux577LGoq6uLJ5544qHvAgAAAAAASlcudQAAAAAAAAAAAAAAAAAAAAAAAACMZBcvXoytW7fGtm3b4tq1a6lzisqYMWPizTffjObm5njqqadS5wAAAAAAAAAAAAAAAAAAUKIymUzU19fHli1bYnBw8KHtWLx4cbz00ktRVlb2UHYAAAAAAADDRy51AAAAAAAAAAAAAAAAAAAAAAAAAIw0hUIh/v3f/z1aW1vj888/j3w+nzqpqMyePTtaWlqiqakpxo4dmzoHAAAAAAAAAAAAAAAAAIBhYOLEibFs2bL46quvHvjsKVOmRF1dXTz++OMPfDYAAAAAADA85VIHAAAAAAAAAAAAAAAAAAAAAAAAwEhx586d2LlzZ7S2tsaJEydS5xSVTCYTtbW10dLSEitWrIhMJpM6CQAAAAAAAAAAAAAAAACAYWbRokVx8uTJuHz58gOZl81mY+nSpbF48eIoKyt7IDMBAAAAAICRIZc6AAAAAAAAAAAAAAAAAAAAAAAAAIa7s2fPxubNm+PPf/5z3Lp1K3VOUZkwYUK88847sXHjxpg5c2bqHAAAAAAAAAAAAAAAAAAAhrFsNhv19fWxbdu2yOfzQ5o1bdq0qKuri8mTJz+gOgAAAAAAYCTJpQ4AAAAAAAAAAAAAAAAAAAAAAACA4Sifz0dvb2+8//77sWfPntQ5RWfevHnR0tIS69evj9GjR6fOAQAAAAAAAAAAAAAAAABghJg8eXIsWbIk9u/f/7vuLysri+XLl8eiRYsik8k84DoAAAAAAGCkyKUOAAAAAAAAAAAAAAAAAAAAAAAAgOHk5s2b8dFHH8XmzZvj7NmzqXOKSllZWaxbty6am5tj8eLFDl0BAAAAAAAAAAAAAAAAACCJF198MU6dOhVXr179l+6bMWNG1NXVxcSJEx9SGQAAAAAAMFLkUgcAAAAAAAAAAAAAAAAAAAAAAADAcHDixIlobW2NHTt2xN27d1PnFJXJkyfHe++9F++++25MmzYtdQ4AAAAAAAAAAAAAAAAAACNcWVlZ1NfXxwcffBCFQuGfXl9eXh4rV66M+fPnRyaTeQSFAAAAAADAcJdLHQAAAAAAAAAAAAAAAAAAAAAAAAClanBwMDo7O6O1tTX279+fOqfoLFq0KFpaWmLdunVRXl6eOgcAAAAAAAAAAAAAAAAAAP7T448/Hi+88EJ88803//C6J598Mmpra2PcuHGPqAwAAAAAABgJcqkDAAAAAAAAAAAAAAAAAAAAAAAAoNT88ssv8cEHH8SWLVvi4sWLqXOKSkVFRaxfvz42bdoUCxYsSJ0DAAAAAAAAAAAAAAAAAAD/o5deeilOnz4d169f/2//jRo1KlavXh3PPPNMZDKZBHUAAAAAAMBwlksdAAAAAAAAAAAAAAAAAAAAAAAAAKXiyJEj0draGp988kkMDAykzikq06dPj02bNsXbb78dkyZNSp0DAAAAAAAAAAAAAAAAAAD/VC6Xi7q6uvjoo4/+r9+ffvrpqKmpiTFjxiQqAwAAAAAAhrtc6gAAAAAAAAAAAAAAAAAAAAAAAAAoZv39/bF79+5obW2N7777LnVO0Vm2bFm0tLREXV1dlJWVpc4BAAAAAAAAAAAAAAAAAIB/yYwZM2LhwoVx+PDhqKysjJqamqiurk6dBQAAAAAADHO51AEAAAAAAAAAAAAAAAAAAAAAAABQjC5duhTbtm2Lbdu2xdWrV1PnFJXKyspoamqK5uZmB6wAAAAAAAAAAAAAAAAAAFDyVqxYEdlsNpYsWRKjR49OnQMAAAAAAIwAudQBAAAAAAAAAAAAAAAAAAAAAAAAUCwKhUIcPHgw2traoqOjIwYHB1MnFZUnn3wympub480334zx48enzgEAAAAAAAAAAAAAAAAAIJHBwcEoKytLnfHAlJeXx+rVq1NnAAAAAAAAI0gudQAAAAAAAAAAAAAAAAAAAAAAAACkdvfu3di1a1e0tbXFsWPHUucUlUwmEzU1NdHc3ByrVq2KbDabOgkAAAAAAAAAAAAAAAAAgITOnz8fXV1dUVNTE1VVValzAAAAAAAASlIudQAAAAAAAAAAAAAAAAAAAAAAAACkcv78+diyZUt8+OGHcePGjdQ5RWXcuHHx9ttvx8aNG+PJJ59MnQMAAAAAAAAAAAAAAAAAQGL37t2L3t7eOHr0aEREdHd3x6ZNm6KioiJxGQAAAAAAQOnJpQ4AAAAAAAAAAAAAAAAAAAAAAACARymfz8fevXujra0turu7o1AopE4qKnPmzImWlpbYsGFDVFZWps4BAAAAAAAAAAAAAAAAAKAInDlzJnp6euL27dv/+dvt27ejt7c36urqEpYBAAAAAACUplzqAAAAAAAAAAAAAAAAAAAAAAAAAHgUbt++HR9//HG0trbGjz/+mDqnqGSz2XjllVeipaUllixZEplMJnUSAAAAAAAAAAAAAAAAAABF4M6dO7Fnz544ceLEr/7//fffx5w5c2LWrFmPuAwAAAAAAKC05VIHAAAAAAAAAAAAAAAAAAAAAAAAwMN06tSp2Lx5c3z88cfR19eXOqeoTJo0Kd5999147733Yvr06alzAAAAAAAAAAAAAAAAAAAoEoVCIU6ePBlffPFF3L179x9e29XVFRs3bozy8vJHVAcAAAAAAFD6cqkDAAAAAAAAAAAAAAAAAAAAAAAA4EHL5/PR3d0dra2tsXfv3tQ5RWfBgv+PvXv9rro8E/9/7Z2dBAIEOQgDFDQiYhFEKSACSWw9lHpAOe1tO13jql1r/p+ZWTOrD2Yy2uV8Fwko4oFasa0JJznIoShYEKimSIMKEiGQ096/B9/vmt8celADuXeS1+vhXp/Pdb2f73Xfn3nx9NNPx0MPPRRVVVWpcwAAAAAAAAAAAAAAAAAAKCNXrlyJnTt3xkcfffSVnv/yyy9j//79sXz58htcBgAAAAAAMHzkUgcAAAAAAAAAAAAAAAAAAAAAAADA9XLp0qXYunVrbNq0Kc6dO5c6p6xUVlbGww8/HIVCIe66667UOQAAAAAAAAAAAAAAAAAAlJlSqRQnTpyIPXv2RE9Pz9d69/3334/Zs2fH1KlTb1AdAAAAAADA8JJLHQAAAAAAAAAAAAAAAAAAAAAAAAAD9bvf/S6am5vjjTfe+NofPBnupkyZEuvXr4+nnnoqJk6cmDoHAAAAAAAAAAAAAAAAAIAy9OWXX0ZbW1ucPXv2G71fKpWitbU11q1bFxUVFde5DgAAAAAAYPjJpQ4AAAAAAAAAAAAAAAAAAAAAAACAb6K3tzd+85vfxMaNG+O3v/1t6pyys2jRoigUCtHY2Bi5nGvHAAAAAAAAAAAAAAAAAAD430qlUhw7diz27dsXvb29A5r1xRdfxMGDB2PJkiXXqQ4AAAAAAGD4clsoAAAAAAAAAAAAAAAAAAAAAAAAQ8pnn30WL730Urz00kvx2Wefpc4pK9XV1fHoo49GPp+POXPmpM4BAAAAAAAAAAAAAAAAAKCMXbp0KVpbW+OPf/zjdZt5+PDhqKuri8mTJ1+3mQAAAAAAAMNRLnUAAAAAAAAAAAAAAAAAAAAAAAAA/DWlUimOHj0azc3N8dZbb0V/f3/qpLIyY8aMyOfz8cQTT0RtbW3qHAAAAAAAAAAAAAAAAAAAylixWIyjR4/GgQMHrvu53VKpFK2trbFmzZrIZrPXdTYAAAAAAMBwkksdAAAAAAAAAAAAAAAAAAAAAAAAAH9Od3d3/PKXv4yWlpb44IMPUueUnfvvvz8KhUIsX77cR1oAAAAAAAAAAAAAAAAAAPirPv/882hra4tPP/30hu44cuRI3HvvvTdsBwAAAAAAwFCXSx0AAAAAAAAAAAAAAAAAAAAAAAAA/9O5c+di8+bN8fLLL8elS5dS55SVMWPGxOrVq2PDhg0xa9as1DkAAAAAAAAAAAAAAAAAAAwB/f39cfjw4Th06FAUi8Ubvu/gwYNx6623xoQJE274LgAAAAAAgKEolzoAAAAAAAAAAAAAAAAAAAAAAAAAIiJKpVLs378/Wlpaoq2tbVA+bjKU3HbbbZHP5+PRRx+Nmpqa1DkAAAAAAAAAAAAAAAAAAAwRn376abS2tsaFCxcGbWd/f3+0trbGk08+GZlMZtD2AgAAAAAADBW51AEAAAAAAAAAAAAAAAAAAAAAAACMbF1dXfH6669HS0tLnDlzJnVOWclms9HY2Bj5fD4WL17sAywAAAAAAAAAAAAAAAAAAHxlfX19ceDAgTh69GiUSqVB33/+/Pl47733YsGCBYO+GwAAAAAAoNzlUgcAAAAAAAAAAAAAAAAAAAAAAAAwMn388cfR0tISr776aly5ciV1TlkZP358rFmzJtatWxfTpk1LnQMAAAAAAAAAAAAAAAAAwBBz7ty5aGtri0uXLiXt2L9/f8yaNSvGjx+ftAMAAAAAAKDc5FIHAAAAAAAAAAAAAAAAAAAAAAAAMHIUi8XYtWtXtLS0xJ49e1LnlJ0777wzCoVCPPLII1FdXZ06BwAAAAAAAAAAAAAAAACAIaa3tzf27t0bx44dS50SERF9fX3R1tYWjz/+eGQymdQ5AAAAAAAAZSOXOgAAAAAAAAAAAAAAAAAAAAAAAIDhr7OzM1555ZXYtGlTnD17NnVOWamoqIiHHnooCoVCLFiwwMdVAAAAAAAAAAAAAAAAAAD4Rtrb22PHjh1x+fLl1Cn/zblz5+KDDz6Ib3/726lTAAAAAAAAykYudQAAAAAAAAAAAAAAAAAAAAAAAADD18mTJ6OlpSW2bdsW3d3dqXPKyuTJk2PdunWxZs2amDx5cuocAAAAAAAAAAAAAAAAAACGqO7u7tizZ0+cOHEidcqf9c4778TMmTNj7NixqVMAAAAAAADKQi51AAAAAAAAAAAAAAAAAAAAAAAAAMNLX19fvP3229HS0hIHDx5MnVN2Fi5cGIVCIb773e9GZWVl6hwAAAAAAAAAAAAAAAAAAIawM2fOxK5du6Krqyt1yl/U29sbO3bsiFWrVkUmk0mdAwAAAAAAkFwudQAAAAAAAAAAAAAAAAAAAAAAAADDw4ULF2LLli3x4osvxvnz51PnlJWqqqpYtWpVFAqFmDt3buocAAAAAAAAAAAAAAAAAACGuKtXr8auXbvi9OnTqVO+svb29vjwww9jzpw5qVMAAAAAAACSy6UOAAAAAAAAAAAAAAAAAAAAAAAAYGh77733oqWlJbZv3x69vb2pc8rK9OnTY/369fHkk0/G+PHjU+cAAAAAAAAAAAAAAAAAADDElUql+PDDD2PPnj1x7dq11Dlf2+7du2PGjBlRU1OTOgUAAAAAACCpXOoAAAAAAAAAAAAAAAAAAAAAAAAAhp6enp7Yvn17NDc3x7Fjx1LnlJ2lS5fG008/HStXroxsNps6BwAAAAAAAAAAAAAAAACAYeDKlSuxY8eO+Pjjj1OnfGPd3d2xa9euePjhh1OnAAAAAAAAJJVLHQAAAAAAAAAAAAAAAAAAAAAAAMDQ0dHRES+++GJs2bIlLl68mDqnrNTU1MTjjz8eGzZsiLq6utQ5AAAAAAAAAAAAAAAAAAAME6VSKT744IPYu3dv9PT0pM4ZkIqKirj55pujVCpFJpNJnQMAAAAAAJBMLnUAAAAAAAAAAAAAAAAAAAAAAAAA5a1UKsXBgwejubk53n777SgWi6mTysott9wShUIhHnvssRgzZkzqHAAAAAAAAAAAAAAAAAAAhpHOzs5oa2uLTz75JHXKgE2dOjUaGxvjpptuSp0CAAAAAACQXC51AAAAAAAAAAAAAAAAAAAAAAAAAOXp6tWr8Ytf/CKam5vj1KlTqXPKSiaTifr6+igUCrFkyZLIZrOpkwAAAAAAAAAAAAAAAAAAGEZKpVK89957sX///ujr60udMyCVlZWxdOnSmDdvXmQymdQ5AAAAAAAAZSGXOgAAAAAAAAAAAAAAAAAAAAAAAIDy0t7eHps2bYpXXnklLl++nDqnrNTW1sZTTz0V69evj+nTp6fOAQAAAAAAAAAAAAAAAABgGLp48WK0tbVFR0dH6pQBmzFjRjQ0NMS4ceNSpwAAAAAAAJSVXOoAAAAAAAAAAAAAAAAAAAAAAAAA0isWi/HOO+9Ec3Nz7N69O0qlUuqksnLHHXdEoVCI73//+zFq1KjUOQAAAAAAAAAAAAAAAAAADEPFYjGOHDkSBw8ejP7+/tQ5A1JVVRXLli2LuXPnRiaTSZ0DAAAAAABQdnKpAwAAAAAAAAAAAAAAAAAAAAAAAEjnyy+/jFdffTU2bdoU7e3tqXPKSkVFRTz44IORz+dj4cKFPn4CAAAAAAAAAAAAAAAAAMAN8/nnn0dra2t89tlnqVMG7JZbbomVK1fGmDFjUqcAAAAAAACUrVzqAAAAAAAAAAAAAAAAAAAAAAAAAAbfqVOnoqWlJbZt2xZXr15NnVNWJk6cGOvWrYs1a9bElClTUucAAAAAAAAAAAAAAAAAADCM9ff3x8GDB+PIkSNRLBZT5wzIqFGjYsWKFXHbbbdFJpNJnQMAAAAAAFDWcqkDAAAAAAAAAAAAAAAAAAAAAAAAGBz9/f3R2toaLS0tceDAgdQ5ZWfBggVRKBTie9/7XlRVVaXOAQAAAAAAAAAAAAAAAABgmOvo6Ii2tra4ePFi6pQBmz17dixfvjxGjx6dOgUAAAAAAGBIyKUOAAAAAAAAAAAAAAAAAAAAAAAA4Ma6ePFivPzyy7F58+bo6OhInVNWqqqq4pFHHol8Ph/z5s1LnQMAAAAAAAAAAAAAAAAAwAjQ19cX+/fvj/feey9KpVLqnAGpqamJ+vr6uOWWW1KnAAAAAAAADCm51AEAAAAAAAAAAAAAAAAAAAAAAADcGMeOHYuWlpZ48803o6enJ3VOWZk6dWqsX78+nnrqqZgwYULqHAAAAAAAAAAAAAAAAAAARohPPvkk2traorOzM3XKgM2dOzeWLVsW1dXVqVMAAAAAAACGnFzqAAAAAAAAAAAAAAAAAAAAAAAAAK6f3t7eeOutt6KlpSWOHj2aOqfsLF68OAqFQjQ0NERFRUXqHAAAAAAAAAAAAAAAAAAARoienp7Yu3dvHD9+PHXKgI0bNy7q6+vjW9/6VuoUAAAAAACAISuXOgAAAAAAAAAAAAAAAAAAAAAAAICBO3/+fLz00kvx0ksvxYULF1LnlJVRo0bFY489FoVCIW677bbUOQAAAAAAAAAAAAAAAAAAjDAff/xx7NixI65cuZI6ZcDuuuuuWLp0aVRWVqZOAQAAAAAAGNJyqQMAAAAAAAAAAAAAAAAAAAAAAAD4ZkqlUhw+fDhaWlri17/+dfT396dOKiszZ86MfD4fjz/+eIwbNy51DgAAAAAAAAAAAAAAAAAAI8y1a9diz549cfLkydQpAzZ+/PhobGyMv/mbv0mdAgAAAAAAMCzkUgcAAAAAAAAAAAAAAAAAAAAAAADw9Vy7di3eeOONaGlpiRMnTqTOKSuZTCaWL18ehUIhli1bFtlsNnUSAAAAAAAAAAAAAAAAAAAj0JkzZ2Lnzp1x9erV1CkDkslk4u67747vfOc7kcvlUucAAAAAAAAMG/55AQAAAAAAAAAAAAAAAAAAAAAAGCI++eST2LRpU2zdujU6OztT55SVsWPHxurVq2PDhg0xc+bM1DkAAAAAAAAAAAAAAAAAAIxQXV1dsWvXrjhz5kzqlAGbOHFiNDY2xs0335w6BQAAAAAAYNjJpQ4AAAAAAAAAAAAAAAAAAAAAAADgzysWi7Fv375oaWmJHTt2RKlUSp1UVmbPnh2FQiF+8IMfxOjRo1PnAAAAAAAAAAAAAAAAAAAwQpVKpTh58mTs2bMnuru7U+cMSDabjXvvvTfuueeeqKioSJ0DAAAAAAAwLOVSBwAAAAAAAAAAAAAAAAAAAAAAAPC/XblyJV577bVoaWmJjz76KHVOWclms/HAAw/E008/Hffee29kMpnUSQAAAAAAAAAAAAAAAAAAjGCXL1+OHTt2RHt7e+qUAbv55pujsbExJk6cmDoFAAAAAABgWMulDgAAAAAAAAAAAAAAAAAAAAAAAOD/d+bMmdi0aVO89tpr0dXVlTqnrNx0002xdu3aWLduXUydOjV1DgAAAAAAAAAAAAAAAAAAI1ypVIrjx4/H3r17o7e3N3XOgFRUVMTixYtjwYIFkc1mU+cAAAAAAAAMe7nUAQAAAAAAAAAAAAAAAAAAAAAAACNdsViMHTt2RHNzc+zbty91TtmZN29ePP300/HQQw9FVVVV6hwAAAAAAAAAAAAAAAAAAIhLly5FW1tbnDt3LnXKgP3N3/xNNDY2xvjx41OnAAAAAAAAjBi51AEAAAAAAAAAAAAAAAAAAAAAAAAj1aVLl2Lr1q2xadOmYfHxkespl8vFI488EoVCIe66667UOQAAAAAAAAAAAAAAAAAAEBERpVIpjh49GgcOHIi+vr7UOQNSWVkZS5cujXnz5kUmk0mdAwAAAAAAMKLkUgcAAAAAAAAAAAAAAAAAAAAAAACMNL/73e+iubk53njjjejp6UmdU1amTJkS69atizVr1sTEiRNT5wAAAAAAAAAAAAAAAAAAwH+6ePFitLa2xvnz51OnDNi3vvWtqK+vj3HjxqVOAQAAAAAAGJFyqQMAAAAAAAAAAAAAAAAAAAAAAABGgr6+vvj1r38dzc3NceTIkdQ5ZWfRokWRz+fjgQceiFzOFVkAAAAAAAAAAAAAAAAAAJSPYrEYhw8fjkOHDkV/f3/qnAGprq6OZcuWxR133BGZTCZ1DgAAAAAAwIjlBlYAAAAAAAAAAAAAAAAAAAAAAIAb6PPPP48XX3wxXnrppfjss89S55SV6urqePTRRyOfz8ecOXNS5wAAAAAAAAAAAAAAAAAAwP/y2WefRWtra3z++eepUwbs1ltvjZUrV0ZNTU3qFAAAAAAAgBEvlzoAAAAAAAAAAAAAAAAAAAAAAABguCmVSnH06NFobm6OX/3qV9HX15c6qaxMnz498vl8rF69Ompra1PnAAAAAAAAAAAAAAAAAADA/9Lf3x/vvvtuHDlyJEqlUuqcARk9enSsWLEi6urqIpPJpM4BAAAAAAAgInKpAwAAAAAAAAAAAAAAAAAAAAAAAIaL7u7u+OUvfxktLS3xwQcfpM4pO/fff38UCoVYvnx5ZLPZ1DkAAAAAAAAAAAAAAAAAAPAndXR0RGtra3zxxRepUwbs9ttvj+XLl8eoUaNSpwAAAAAAAPBf5FIHAAAAAAAAAAAAAAAAAAAAAAAADHXnzp2LzZs3x8svvxyXLl1KnVNWampqYvXq1ZHP52PWrFmpcwAAAAAAAAAAAAAAAAAA4M/q7e2N/fv3x/vvvx+lUil1zoCMGTMmVq5cGbfcckvqFAAAAAAAAP6EXOoAAAAAAAAAAAAAAAAAAAAAAACAoahUKsWBAweiubk52traolgspk4qK3V1dZHP5+Oxxx6Lmpqa1DkAAAAAAAAAAAAAAAAAAPAXnT17Ntra2uLLL79MnTJgd955ZyxbtiyqqqpSpwAAAAAAAPBn5FIHAAAAAAAAAAAAAAAAAAAAAAAADCVdXV3x+uuvR0tLS5w5cyZ1TlnJZrPR0NAQ+Xw+lixZEplMJnUSAAAAAAAAAAAAAAAAAAD8RT09PfHOO+/EBx98kDplwMaNGxcNDQ0xY8aM1CkAAAAAAAD8FbnUAQAAAAAAAAAAAAAAAAAAAAAAAEPBxx9/HC0tLfHqq6/GlStXUueUldra2lizZk2sX78+pk2bljoHAAAAAAAAAAAAAAAAAAC+ko8++ih27tw55M8PZzKZuOuuu2LJkiVRWVmZOgcAAAAAAICvIJc6AAAAAAAAAAAAAAAAAAAAAAAAoFwVi8XYtWtXtLS0xJ49e1LnlJ25c+dGoVCI73//+1FdXZ06BwAAAAAAAAAAAAAAAAAAvpJr167F7t2748MPP0ydMmA33XRTNDY2xtSpU1OnAAAAAAAA8DXkUgcAAAAAAAAAAAAAAAAAAAAAAACUm87OznjllVdi06ZNcfbs2dQ5ZaWioiIeeuihKBQKsWDBgshkMqmTAAAAAAAAAAAAAAAAAADgKymVSnH69OnYvXt3XL16NXXOgGQymVi4cGF85zvfiYqKitQ5AAAAAAAAfE251AEAAAAAAAAAAAAAAAAAAAAAAADl4uTJk9HS0hLbtm2L7u7u1DllZdKkSbFu3bpYu3ZtTJ48OXUOAAAAAAAAAAAAAAAAAAB8LV1dXbFz5874/e9/nzplwCZNmhSNjY3O/QIAAAAAAAxhudQBAAAAAAAAAAAAAAAAAAAAAAAAKfX19cXbb78dLS0tcfDgwdQ5ZWfhwoVRKBTiu9/9blRWVqbOAQAAAAAAAAAAAAAAAACAr6VUKsWJEyfinXfeie7u7tQ5A1JRURGLFi2KhQsXRjabTZ0DAAAAAADAAORSBwAAAAAAAAAAAAAAAAAAAAAAAKRw4cKF2LJlS7z44otx/vz51DllpaqqKlatWhWFQiHmzp2bOgcAAAAAAAAAAAAAAAAAAL6xYrEYhw8fju7u7tQpAzJlypRobGyMCRMmpE4BAAAAAADgOsilDgAAAAAAAAAAAAAAAAAAAAAAABhM77//fjQ3N8f27dujt7c3dU5ZmTZtWmzYsCGefPLJGD9+fOocAAAAAAAAAAAAAAAAAAAYsIqKimhoaIhXX301dco3ksvlYvHixbFgwYLIZDKpcwAAAAAAALhOcqkDAAAAAAAAAAAAAAAAAAAAAAAAbrSenp7Yvn17NDc3x7Fjx1LnlJ2lS5dGoVCI+vr6yGazqXMAAAAAAAAAAAAAAAAAAOC6mjZtWsybN2/InTWeNm1aNDQ0xPjx41OnAAAAAAAAcJ3lUgcAAAAAAAAAAAAAAAAAAAAAAADcKB0dHfHiiy/Gli1b4uLFi6lzykpNTU08/vjjsWHDhqirq0udAwAAAAAAAAAAAAAAAAAAN9R9990XH3/8cVy+fDl1yl9VWVkZy5YtizvvvDMymUzqHAAAAAAAAG6AXOoAAAAAAAAAAAAAAAAAAAAAAACA66lUKsWhQ4di48aN8fbbb0exWEydVFZmzZoVhUIhHn/88RgzZkzqHAAAAAAAAAAAAAAAAAAAGBSVlZVRX18fv/jFL1Kn/EUzZ86M+vr6GDt2bOoUAAAAAAAAbqBc6gAAAAAAAAAAAAAAAAAAAAAAAIDr4erVq/GLX/wimpub49SpU6lzykomk4n6+vooFAqxZMmSyGazqZMAAAAAAAAAAAAAAAAAAGDQzZw5M+644444ceJE6pT/pbq6OpYvXx633357ZDKZ1DkAAAAAAADcYLnUAQAAAAAAAAAAAAAAAAAAAAAAAAPxhz/8IVpaWuKVV16Jy5cvp84pK7W1tfHkk0/Ghg0bYvr06alzAAAAAAAAAAAAAAAAAAAgufvvvz/a29vj6tWrqVP+U11dXaxYsSJqampSpwAAAAAAADBIcqkDAAAAAAAAAAAAAAAAAAAAAAAAvq5isRjvvPNONDc3x+7du6NUKqVOKitz5syJQqEQq1atilGjRqXOAQAAAAAAAAAAAAAAAACAslFdXR0rV66M7du3p06J0aNHx8qVK6Ouri51CgAAAAAAAIMslzoAAAAAAAAAAAAAAAAAAAAAAADgq7p8+XK88sorsWnTpmhvb0+dU1ay2Ww8+OCDkc/n45577olMJpM6CQAAAAAAAAAAAAAAAAAAylJdXV3cdtttcfr06WQNc+bMieXLl0d1dXWyBgAAAAAAANLJpQ4AAAAAAAAAAAAAAAAAAAAAAAD4a06fPh3Nzc2xbdu2uHr1auqcsjJx4sRYu3ZtrF27NqZMmZI6BwAAAAAAAAAAAAAAAAAAhoQVK1bE2bNno7u7e1D3jhkzJurr62PWrFmDuhcAAAAAAIDykksdAAAAAAAAAAAAAAAAAAAAAAAA8Kf09/dHW1tbNDc3x4EDB1LnlJ0FCxZEPp+PBx98MKqqqlLnAAAAAAAAAAAAAAAAAADAkDJ69OhYvnx5/OY3vxm0nd/+9rfjvvvucz4YAAAAAACAyKUOAAAAAAAAAAAAAAAAAAAAAAAA+K+++OKL2LJlS2zevDk6OjpS55SVqqqqeOSRRyKfz8e8efNS5wAAAAAAAAAAAAAAAAAAwJB2++23x6lTp+Ljjz++oXtqa2ujoaEhpk+ffkP3AAAAAAAAMHTkUgcAAAAAAAAAAAAAAAAAAAAAAABERBw/fjyam5vjzTffjJ6entQ5ZWXq1Kmxfv36eOqpp2LChAmpcwAAAAAAAAAAAAAAAAAAYFjIZDJRX18fmzZtuiFnnDOZTMyfPz+WLFkSuVzuus8HAAAAAABg6PLvEQAAAAAAAAAAAAAAAAAAAAAAkExvb2/86le/iubm5jh69GjqnLKzePHiyOfz0djYGBUVFalzAAAAAAAAAAAAAAAAAABg2BkzZkzcd999sWPHjus6d8KECdHQ0BBTp069rnMBAAAAAAAYHnKpAwAAAAAAAAAAAAAAAAAAAAAAgJHn008/jRdffDFeeumluHDhQuqcsjJq1Kh47LHHIp/Px+zZs1PnAAAAAAAAAAAAAAAAAADAsHfnnXfGqVOn4pNPPhnwrGw2GwsXLoxFixZFRUXFdagDAAAAAABgOMqlDgAAAAAAAAAAAAAAAAAAAAAAAEaGUqkUR44ciebm5vj1r38d/f39qZPKysyZM2PDhg3xxBNPxLhx41LnAAAAAAAAAAAAAAAAAADAiJHJZKKhoSE2b94cfX1933jO5MmTo7GxMSZNmnQd6wAAAAAAABiOcqkDAAAAAAAAAAAAAAAAAAAAAACA4e3atWvxxhtvREtLS5w4cSJ1TtlZsWJFFAqFWLZsWWSz2dQ5AAAAAAAAAAAAAAAAAAAwItXW1saSJUtiz549X/vdioqKWLRoUSxcuNCZYQAAAAAAAL6SXOoAAAAAAAAAAAAAAAAAAAAAAABgePrkk09i06ZNsXXr1ujs7EydU1bGjh0bq1evjg0bNsTMmTNT5wAAAAAAAAAAAAAAAAAAABExf/78OH36dHR0dHzld6ZOnRoNDQ0xYcKEG1gGAAAAAADAcJNLHQAAAAAAAAAAAAAAAAAAAAAAAAwfpVIp9u3bF83NzbFjx44olUqpk8rK7Nmzo1AoxA9+8IMYPXp06hwAAAAAAAAAAAAAAAAAAOC/yGQy0dDQEC+99FL09/f/xWdzuVwsWbIk5s+fH5lMZpAKAQAAAAAAGC5yqQMAAAAAAAAAAAAAAAAAAAAAAICh78qVK/H6669Hc3NzfPTRR6lzyko2m40HHnggCoVCLFq0yAdGAAAAAAAAAAAAAAAAAACgjE2YMCEWLVoU+/fv/7PPTJ8+PRoaGqK2tnYQywAAAAAAABhOcqkDAAAAAAAAAAAAAAAAAAAAAACAoev3v/99tLS0xGuvvRZdXV2pc8rKTTfdFGvXro1169bF1KlTU+cAAAAAAAAAAAAAAAAAAABf0cKFC+P06dPx+eef/7ffq6qq4r777os777wzMplMojoAAAAAAACGg1zqAAAAAAAAAAAAAAAAAAAAAAAAYGgpFouxc+fO2LhxY+zbty91TtmZN29eFAqFePjhh6Oqqip1DgAAAAAAAAAAAAAAAAAA8DVls9l44IEHYsuWLVEsFiMiYtasWVFfXx9jxoxJXAcAAAAAAMBwkEsdAAAAAAAAAAAAAAAAAAAAAAAADA2XLl2KrVu3xubNm+OTTz5JnVNWcrlcPPLII5HP52P+/PmpcwAAAAAAAAAAAAAAAAAAgAGaNGlSLFy4MI4fPx73339/3H777ZHJZFJnAQAAAAAAMExkSqVS6gYAAAD+h0wmUxsRl77q85cuXYra2tobWAQAAAAAAAAAAAAAAAAAwEh24sSJ2LhxY7zxxhvR09OTOqes3HzzzbF+/fpYs2ZNTJw4MXUOAAAAAAAAAAAAAAAAAABwHfX390dPT0+MHj06dQoAAAAAAMBX1tnZGePHj/86r4wvlUqdN6qHPy2XOgAAAAAAAAAAAAAAAAAAAAAAACg/fX198etf/zqam5vjyJEjqXPKzqJFiyKfz8cDDzwQuZzrnAAAAAAAAAAAAAAAAAAAoK+vLz788MOYO3duZDKZ1DnXRUVFRYwePTp1BgAAAAAAAMOQW20BAAAAAAAAAAAAAAAAAAAAAID/9Pnnn8dLL70UL774Ynz22Wepc8pKdXV1PProo7Fhw4a44447UucAAAAAAAAAAAAAAAAAAEDZOHfuXLS1tcWlS5eioqIi5syZkzoJAAAAAAAAyloudQAAAAAAAAAAAAAAAAAAAAAAAJBWqVSKo0ePRnNzc/zqV7+Kvr6+1EllZfr06ZHP52P16tVRW1ubOgcAAAAAAAAAAAAAAAAAAMpGT09P7Nu3L44dO/afv+3evTu+9a1vxejRoxOWAQAAAAAAQHnLpQ4AAAAAAAAAAAAAAAAAAAAAAADS6O7ujjfffDOam5vjgw8+SJ1Tdu6///7I5/OxYsWKyGazqXMAAAAAAAAAAAAAAAAAAKCstLe3x44dO+Ly5cv/7ffu7u7YuXNnPPzww4nKAAAAAAAAoPzlUgcAAAAAAAAAAAAAAAAAAAAAAACD69y5c7F58+Z4+eWX49KlS6lzykpNTU2sXr06NmzYELfcckvqHAAAAAAAAAAAAAAAAAAAKDvd3d2xZ8+eOHHixJ995syZM3HmzJmoq6sbxDIAAAAAAAAYOnKpAwAAAAAAAAAAAAAAAAAAAAAAgBuvVCrFgQMHorm5Odra2qJYLKZOKit1dXWRz+fjsccei5qamtQ5AAAAAAAAAAAAAAAAAABQls6cORM7d+6Mq1ev/tVnd+7cGdOnT4/q6upBKAMAAAAAAIChJZc6AAAAAAAAAAAAAAAAAAAAAAAAuHG6urpi27Zt0dLSEqdPn06dU1ay2Ww0NDREPp+PJUuWRCaTSZ0EAAAAAAAAAAAAAAAAAABl6erVq7Fz5844c+bM13pnz5498cADD9y4MAAAAAAAABiicqkDAAAAAAAAAAAAAAAAAAAAAACA6+/jjz+OTZs2xSuvvBJXrlxJnVNWamtrY82aNbFu3bqYPn166hwAAAAAAAAAAAAAAAAAAChbpVIpPvzww9i9e3d0d3d/7fdPnDgRs2fPjpkzZ96AOgAAAAAAABi6cqkDAAAAAAAAAAAAAAAAAAAAAACA66NYLMbu3bujpaUldu/enTqn7MydOzcKhUJ8//vfj+rq6tQ5AAAAAAAAAAAAAAAAAABQ1q5cuRJtbW3R3t4+oDk7duyI9evXR1VV1XUqAwAAAAAAgKEvlzoAAAAAAAAAAAAAAAAAAAAAAAAYmM7Oznj11VejpaUlzp49mzqnrFRUVMRDDz0UhUIhFixYEJlMJnUSAAAAAAAAAAAAAAAAAACUtVKpFB988EHs3bs3enp6Bjzv8uXLsW/fvli5cuV1qAMAAAAAAIDhIZc6AAAAAAAAAAAAAAAAAAAAAAAA+GZOnjwZmzZtim3btsW1a9dS55SVSZMmxbp162Lt2rUxefLk1DkAAAAAAAAAAAAAAAAAADAkdHZ2RltbW3zyySfXde6xY8di9uzZMW3atOs6FwAAAAAAAIaqXOoAAAAAAAAAAAAAAAAAAAAAAADgq+vr64vW1tZobm6OgwcPps4pOwsXLoxCoRDf/e53o7KyMnUOAAAAAAAAAAAAAAAAAAAMCaVSKd57773Yv39/9PX13ZAdbW1tsW7dusjlcjdkPgAAAAAAAAwl/jUDAAAAAAAAAAAAAAAAAAAAAIAh4MKFC/Hyyy/H5s2b4/z586lzykpVVVWsWrUq8vl83HnnnalzAAAAAAAAAAAAAAAAAABgSLl48WK0tbVFR0fHDd1z6dKlOHDgQCxbtuyG7gEAAAAAAIChIJc6AAAAAAAAAAAAAAAAAAAAAAAA+PPef//9aG5uju3bt0dvb2/qnLIybdq02LBhQzz55JMxfvz41DkAAAAAAAAAAAAAAAAAADCkFIvFOHLkSBw8eDD6+/sHZefRo0fjtttuiylTpgzKPgAAAAAAAChXudQBAAAAAAAAAAAAAAAAAAAAAADAf9fT0xNvvfVWbNy4MY4dO5Y6p+wsXbo0CoVC1NfXRzabTZ0DAAAAAAAAAAAAAAAAAABDzmeffRatra3x+eefD+reUqkUra2tsXbt2qioqBjU3QAAAAAAAFBOcqkDAAAAAAAAAAAAAAAAAAAAAACA/+v8+fOxefPm2LJlS1y8eDF1TlmpqamJxx9/PDZs2BB1dXWpcwAAAAAAAAAAAAAAAAAAYEjq7++PgwcPxuHDh6NUKiVpuHjxYhw6dCgWL16cZD8AAAAAAACUg1zqAAAAAAAAAAAAAAAAAAAAAAAAGMlKpVIcOnQoNm7cGG+//XYUi8XUSWVl1qxZUSgU4vHHH48xY8akzgEAAAAAAAAAAAAAAAAAgCGro6MjWltb44svvkidEocPH466urqYNGlS6hQAAAAAAABIIpc6AAAAAAAAAAAAAAAAAAAAAAAARqJisRjbt2+P5557Lk6ePJk6p6xkMpmor6+PfD4fS5cujWw2mzoJAAAAAAAAAAAAAAAAAACGrN7e3jhw4EC89957USqVUudExP89b93W1hZPPvmk88QAAAAAAACMSLnUAQAAAAAAAAAAAAAAAAAAAAAAMJL09vbGtm3b4rnnnov29vbUOWWltrY2nnzyyVi/fn3MmDEjdQ4AAAAAAAAAAAAAAAAAAAx5n3zySbS1tUVnZ2fqlP/l008/jd/+9rdxzz33pE4BAAAAAACAQZdLHQAAAAAAAAAAAAAAAAAAAAAAACNBd3d3bN26NZ5//vno6OhInVNW5syZE4VCIVatWhWjRo1KnQMAAAAAAAAAAAAAAAAAAENeT09P7N27N44fP5465S96991349Zbb42bbropdQoAAAAAAAAMqlzqAAAAAAAAAAAAAAAAAAAAAAAAGM66urpi8+bN8cILL8SFCxdS55SNbDYbDz74YOTz+bjnnnsik8mkTgIAAAAAAAAAAAAAAAAAgGHh448/jh07dsSVK1dSp/xV/f390draGqtXr3bmGAAAAAAAgBEllzoAAAAAAAAAAAAAAAAAAAAAAACGo87Ozti4cWNs3LgxOjs7U+eUjYkTJ8batWtj7dq1MWXKlNQ5AAAAAAAAAAAAAAAAAAAwbFy7di327NkTJ0+eTJ3ytXR0dMT7778f8+fPT50CAAAAAAAAgyaXOgAAAAAAAAAAAAAAAAAAAAAAAIaTCxcuxAsvvBCbN2+Orq6u1DllY8GCBZHP5+PBBx+Mqqqq1DkAAAAAAAAAAAAAAAAAADCsnD59Onbt2hVXr15NnfKN7N+/P2655ZYYN25c6hQAAAAAAAAYFLnUAQAAAAAAAAAAAAAAAAAAAAAAMBx0dHTEz3/+89iyZUv09PSkzikLlZWV8f3vfz/y+XzMmzcvdQ4AAAAAAAAAAAAAAAAAAAw7XV1dsWvXrjhz5kzqlAHp7e2NI0eOxMqVK1OnAAAAAAAAwKDIpQ4AAAAAAAAAAAAAAAAAAAAAAIChrL29PZ577rl4/fXXo6+vL3VOWZg6dWqsX78+nnrqqZgwYULqHAAAAAAAAAAAAAAAAAAAGHZKpVKcPHky9uzZE93d3alzBiSbzcaiRYti4cKFqVMAAAAAAABg0ORSBwAAAAAAAAAAAAAAAAAAAAAAwFB0+vTpaGpqijfffDOKxWLqnLKwePHiyOfz0djYGBUVFalzAAAAAAAAAAAAAAAAAABgWLp8+XLs2LEj2tvbU6cM2JQpU6KxsTEmTJiQOgUAAAAAAAAGVS51AAAAAAAAAAAAAAAAAAAAAAAADCXHjh2LpqamePvtt1OnlIVRo0bFY489Fvl8PmbPnp06BwAAAAAAAAAAAAAAAAAAhq1SqRTHjx+PvXv3Rm9vb+qcAamoqIglS5bEggULIpPJpM4BAAAAAACAQZdLHQAAAAAAAAAAAAAAAAAAAAAAAEPBoUOHoqmpKfbs2ZM6pSzMnDkzNmzYEE888USMGzcudQ4AAAAAAAAAAAAAAAAAAAxrly5dira2tjh37lzqlAGbNm1aNDQ0xPjx41OnAAAAAAAAQDK51AEAAAAAAAAAAAAAAAAAAAAAAFCuSqVS7N27N5qamuLgwYOpc8rC8uXL4+mnn45ly5ZFNptNnQMAAAAAAAAAAAAAAAAAAMNaqVSKo0ePxoEDB6Kvry91zoBUVlbGfffdF9/+9rcjk8mkzgEAAAAAAICkcqkDAAAAAAAAAAAAAAAAAAAAAACg3BSLxWhra4umpqY4duxY6pzkxo4dG6tXr44NGzbEzJkzU+cAAAAAAAAAAAAAAAAAAMCIcPHixWhtbY3z58+nThmwmTNnRn19fYwdOzZ1CgAAAAAAAJSFXOoAAAAAAAAAAAAAAAAAAAAAAAAoF8ViMbZv3x5NTU1x6tSp1DnJ3XbbbfH000/HqlWroqamJnUOAAAAAAAAAAAAAAAAAACMCMViMQ4fPhwHDx6MYrGYOmdAqqur4/777485c+ZEJpNJnQMAAAAAAABlI5c6AAAAAAAAAAAAAAAAAAAAAAAAUuvt7Y1t27bFc889F+3t7alzkspms/HAAw9EoVCIRYsW+dAHAAAAAAAAAAAAAAAAAAAMok8//TTa2tri888/T50yYHV1dbFixYqoqalJnQIAAAAAAABlJ5c6AAAAAAAAAAAAAAAAAAAAAAAAUunu7o6tW7fG888/Hx0dHalzkrrpppti7dq1sW7dupg6dWrqHAAAAAAAAAAAAAAAAAAAGFH6+/vj3XffjSNHjkSpVEqdMyCjR4+OFStWxG233ZY6BQAAAAAAAMpWLnUAAAAAAAAAAAAAAAAAAAAAAAAMtq6urti8eXO88MILceHChdQ5Sc2bNy8KhUI8/PDDUVVVlToHAAAAAAAAAAAAAAAAAABGnD/+8Y/R1tYWX3zxReqUAZszZ07cf//9MWrUqNQpAAAAAAAAUNZyqQMAAAAAAAAAAAAAAAAAAAAAAGCwdHZ2xsaNG2Pjxo3R2dmZOieZXC4XjzzySOTz+Zg/f37qHAAAAAAAAAAAAAAAAAAAGJF6e3tj//798f7770epVEqdMyBjxoyJ+vr6mDVrVuoUAAAAAAAAGBJyqQMAAAAAAAAAAAAAAAAAAAAAAOBGu3DhQrzwwguxefPm6OrqSp2TzM033xzr16+PNWvWxMSJE1PnAAAAAAAAAAAAAAAAAADAiHX27Nloa2uLL7/8MnXKgH3729+O++67L6qqqlKnAAAAAAAAwJCRSx0AAAAAAAAAAAAAAAAAAAAAAAA3SkdHR/z85z+PLVu2RE9PT+qcZBYtWhT5fD4eeOCByOVcPQQAAAAAAAAAAAAAAAAAAKl0d3fHO++8E7/73e9SpwxYbW1tNDQ0xPTp01OnAAAAAAAAwJDjpmAAAAAAAAAAAAAAAAAAAAAAAIad9vb2eP755+O1116Lvr6+1DlJVFdXx6OPPhobNmyIO+64I3UOAAAAAAAAAAAAAAAAAACMeB999FHs3Lkzrly5kjplQDKZTMyfPz8WL14clZWVqXMAAAAAAABgSMqlDgAAAAAAAAAAAAAAAAAAAAAAgOvl9OnT0dTUFG+++WYUi8XUOUlMnz498vl8rF69Ompra1PnAAAAAAAAAAAAAAAAAADAiHft2rXYtWtXnDp1KnXKgE2YMCEaGhpi6tSpqVMAAAAAAABgSMulDgAAAAAAAAAAAAAAAAAAAAAAgIE6fvx4NDU1xW9+85vUKcksW7YsCoVCrFixIrLZbOocAAAAAAAAAAAAAAAAAAAY8UqlUpw+fTp2794dV69eTZ0zIJlMJu65555YtGhRVFRUpM4BAAAAAACAIS+XOgAAAAAAAAAAAAAAAAAAAAAAAL6pQ4cORVNTU+zZsyd1ShI1NTWxevXq2LBhQ9xyyy2pcwAAAAAAAAAAAAAAAAAAgP/nypUrsXPnzvjoo49SpwzYpEmTorGxMSZPnpw6BQAAAAAAAIaNXOoAAAAAAAAAAAAAAAAAAAAAAAD4OkqlUuzduzeampri4MGDqXOSqKuri3w+H4899ljU1NSkzgEAAAAAAAAAAAAAAAAAAP6fUqkUJ06ciD179kRPT0/qnAGpqKiIRYsWxcKFCyObzabOAQAAAAAAgGEllzoAAAAAAAAAAAAAAAAAAAAAAAC+imKxGDt27Ih/+7d/i2PHjqXOSWLFihXxt3/7t7FkyZLIZDKpcwAAAAAAAAAAAAAAAAAAgP/iyy+/jLa2tjh79mzqlAGbOnVqNDQ0xIQJE1KnAAAAAAAAwLCUSx0AAAAAAAAAAAAAAAAAAAAAAAB/SbFYjO3bt0dTU1OcOnUqdc6gy2Qy8b3vfS+effbZmDt3buocAAAAAAAAAAAAAAAAAADgfyiVSnHs2LHYt29f9Pb2ps4ZkFwuF0uWLIn58+dHJpNJnQMAAAAAAADDVi51AAAAAAAAAAAAAAAAAAAAAAAA/Cm9vb2xbdu2eO6556K9vT11zqDLZrOxatWq+MlPfhJ1dXWpcwAAAAAAAAAAAAAAAAAAgD/h0qVL0draGn/84x9TpwzY9OnTo6GhIWpra1OnAAAAAAAAwLCXSx0AAAAAAAAAAAAAAAAAAAAAAAD/VXd3d2zdujWef/756OjoSJ0z6CorK+OJJ56IZ555JmbMmJE6BwAAAAAAAAAAAAAAAAAA+BOKxWIcPXo0Dhw4EP39/alzBqSysjKWLVsWd955Z2QymdQ5AAAAAAAAMCLkUgcAAAAAAAAAAAAAAAAAAAAAAEBERFdXV2zevDleeOGFuHDhQuqcQVddXR3r1q2LH//4xzFlypTUOQAAAAAAAAAAAAAAAAAAwJ9x4cKFaG1tjU8//TR1yoDNnDkz6uvrY+zYsalTAAAAAAAAYETJpQ4AAAAAAAAAAAAAAAAAAAAAAGBk6+zsjI0bN8bGjRujs7Mzdc6gGzNmTBQKhfjhD38YEyZMSJ0DAAAAAAAAAAAAAAAAAAD8Gf39/XH48OE4dOhQFIvF1DkDUl1dHcuXL4/bb789MplM6hwAAAAAAAAYcXKpAwAAAAAAAAAAAAAAAAAAAAAAGJkuXLgQ//Ef/xGbNm2Krq6u1DmDbvz48fGjH/0o8vl8jBs3LnUOAAAAAAAAAAAAAAAAAADwF3z66afR2toaFy5cSJ0yYLfddlusWLEiRo8enToFAAAAAAAARqxc6gAAAAAAAAAAAAAAAAAAAAAAAEaWjo6O+PnPfx5btmyJnp6e1DmDbtKkSfF3f/d3sWbNmqipqUmdAwAAAAAAAAAAAAAAAAAA/AV9fX3x7rvvxm9/+9solUqpcwZk9OjRsXLlyqirq0udAgAAAAAAACNeLnUAAAAAAAAAAAAAAAAAAAAAAAAjQ3t7ezz//PPx2muvRV9fX+qcQTdt2rR45plnYvXq1VFVVZU6BwAAAAAAAAAAAAAAAAAA+CvOnTsXbW1tcenSpdQpAzZnzpxYvnx5VFdXp04BAAAAAAAAIiKXOgAAAAAAAAAAAAAAAAAAAAAAgOHt9OnT0dTUFG+++WYUi8XUOYNu1qxZ8eyzz8aqVasil3PtDwAAAAAAAAAAAAAAAAAAlLve3t7Yt29fvP/++6lTBmzs2LFRX18fM2fOTJ0CAAAAAAAA/BduKwYAAAAAAAAAAAAAAAAAAAAA4IY4fvx4NDU1xW9+85vUKUnMmTMnnn322XjwwQcjm82mzgEAAAAAAAAAAAAAAAAAAL6CP/zhD9HW1haXL19OnTJg8+bNi6VLl0ZVVVXqFAAAAAAAAOB/yKUOAAAAAAAAAAAAAAAAAAAAAABgeDl06FA0NTXFnj17UqckMX/+/PjpT38aK1eujEwmkzoHAAAAAAAAAAAAAAAAAAD4Crq7u+Odd96J3/3ud6lTBqy2tjYaGxtj2rRpqVMAAAAAAACAPyOXOgAAAAAAAAAAAAAAAAAAAAAAgKGvVCrF3r17o6mpKQ4ePJg6J4nFixfHs88+G0uWLIlMJpM6BwAAAAAAAAAAAAAAAAAA+Ip+//vfx86dO6Orqyt1yoBkMplYsGBBLF68OHK5XOocAAAAAAAA4C/wjx4AAAAAAAAAAAAAAAAAAAAAAN9YsViMHTt2xL/927/FsWPHUucksWLFivjpT38ad999d+oUAAAAAAAAAAAAAAAAAADga7h69Wrs3r07Tp06lTplwCZMmBCNjY0xZcqU1CkAAAAAAADAV5BLHQAAAAAAAAAAAAAAAAAAAAAAwNBTLBZj+/bt0dTUNCw+uPF1ZTKZ+N73vhfPPvtszJ07N3UOAAAAAAAAAAAAAAAAAADwNV24cCFee+21uHbtWuqUAclms3HPPffEvffeGxUVFalzAAAAAAAAgK8olzoAAAAAAAAAAAAAAAAAAAAAAICho7e3N7Zt2xbPPfdctLe3p84ZdNlsNlatWhU/+clPoq6uLnUOAAAAAAAAAAAAAAAAAADwDd10000xZsyYuHbtWuqUb2zy5MnR2NgYkyZNSp0CAAAAAAAAfE251AEAAAAAAAAAAAAAAAAAAAAAAJS/7u7u2Lp1azz//PPR0dGROmfQVVZWxhNPPBHPPPNMzJgxI3UOAAAAAAAAAAAAAAAAAAAwQNlsNhobG2PLli1RKpVS53wtFRUV8Z3vfCfuvvvuyGazqXMAAAAAAACAbyCXOgAAAAAAAAAAAAAAAAAAAAAAgPLV1dUVmzdvjhdeeCEuXLiQOmfQVVdXx7p16+LHP/5xTJkyJXUOAAAAAAAAAAAAAAAAAABwHU2ePDnuueeeOHToUOqUr2zq1KnR2NgYN910U+oUAAAAAAAAYAByqQMAAAAAAAAAAAAAAAAAAAAAACg/165dixdeeCH+z//5P9HZ2Zk6Z9CNGTMmCoVC/PCHP4wJEyakzgEAAAAAAAAAAAAAAAAAAG6QRYsWxZkzZ+KLL75InfIX5XK5WLp0adx1112RyWRS5wAAAAAAAAADlEsdAAAAAAAAAAAAAAAAAAAAAABAeXn11VfjZz/7WXR0dKROGXTjx4+PH/3oR5HP52PcuHGpcwAAAAAAAAAAAAAAAAAAgBusoqIiGhsb45VXXolSqZQ650+aMWNG1NfXR21tbeoUAAAAAAAA4DrJpQ4AAAAAAAAAAAAAAAAAAAAAAKA8nD9/Pv7+7/8+/vCHP6ROGXSTJk2Kv/u7v4s1a9ZETU1N6hwAAAAAAAAAAAAAAAAAAGAQTZ06NebPnx9Hjx5NnfLfVFVVxbJly2Lu3LmRyWRS5wAAAAAAAADXUS51AAAAAAAAAAAAAAAAAAAAAAAAaV25ciWef/75aGpqSp0y6KZNmxbPPPNMrF69OqqqqlLnAAAAAAAAAAAAAAAAAAAAiSxevDg++uij6OzsTJ0SERG33HJLrFy5MsaMGZM6BQAAAAAAALgBcqkDAAAAAAAAAAAAAAAAAAAAAABIo7e3N1588cX413/91/jiiy9S5wyqWbNmxU9+8pP4wQ9+ELmcq3gAAAAAAAAAAAAAAAAAAGCkq6ysjPr6+nj99deTdowaNSqWL18es2fPjkwmk7QFAAAAAAAAuHHcjAwAAAAAAAAAAAAAAAAAAAAAMMIUi8V466234p//+Z/j7NmzqXMG1Zw5c+LZZ5+NBx98MLLZbOocAAAAAAAAAAAAAAAAAACgjMyYMSPuvPPO+OCDD5Lsnz17dixfvjxGjx6dZD8AAAAAAAAweHKpAwAAAAAAAAAAAAAAAAAAAAAAGDz79++Pf/zHf4zjx4+nThlU8+fPj5/+9KexcuXKyGQyqXMAAAAAAAAAAAAAAAAAAIAytWzZsmhvb48rV64M2s6amppYuXJl3HrrrYO2EwAAAAAAAEgrlzoAAAAAAAAAAAAAAAAAAAAAAIAb7+TJk/FP//RPsXv37tQpg2rx4sXx7LPPxpIlSyKTyaTOAQAAAAAAAAAAAAAAAAAAylxVVVXU19fHG2+8MSj75s6dG8uWLYvq6upB2QcAAAAAAACUh1zqAAAAAAAAAAAAAAAAAAAAAAAAbpxz587Fz372s9i2bVuUSqXUOYNmxYoV8dOf/jTuvvvu1CkAAAAAAAAAAAAAAAAAAMAQM2vWrLj99tvjww8/vGE7xo4dGw0NDfGtb33rhu0AAAAAAAAAylcudQAAAAAAAAAAAAAAAAAAAAAAANdfZ2dnNDU1RUtLS/T09KTOGRSZTCa+973vxbPPPhtz585NnQMAAAAAAAAAAAAAAAAAAAxhy5cvj7Nnz8bVq1ev++y77rorli5dGpWVldd9NgAAAAAAADA05FIHAAAAAAAAAAAAAAAAAAAAAABw/XR3d0dzc3P8+7//e3z55ZepcwZFNpuNVatWxU9+8pOoq6tLnQMAAAAAAAAAAAAAAAAAAAwDo0aNihUrVsRbb7113WaOHz8+GhoaYtq0addtJgAAAAAAADA05VIHAAAAAAAAAAAAAAAAAAAAAAAwcMViMV5//fX42c9+Fh0dHalzBkVlZWU88cQT8cwzz8SMGTNS5wAAAAAAAAAAAAAAAAAAAMNMXV1d3HrrrfH73/9+QHMymUzcfffd8Z3vfCdyudz1iQMAAAAAAACGNP8cAgAAAAAAAAAAAAAAAAAAAAAMYaVSKXbv3h3/9E//FB9++GHqnEFRXV0d69atix//+McxZcqU1DkAAAAAAAAAAAAAAAAAAMAwlclkYuXKlXHu3Lno7u7+RjMmTpwYjY2NcfPNN1/nOgAAAAAAAGAoy6UOAAAAAAAAAAAAAAAAAAAAAADgmzl27Fj8wz/8Q7z77rupUwbFmDFjIp/Pxw9/+MOYOHFi6hwAAAAAAAAAAAAAAAAAAGAEqKmpifvvvz/efvvtr/VeNpuNe++9N+65556oqKi4MXEAAAAAAADAkJVLHQAAAAAAAAAAAAAAAAAAAAAAwNfT3t4e//Iv/xLbt29PnTIoxo8fHz/60Y8in8/HuHHjUucAAAAAAAAAAAD8f+zd6ZeV1Znw4fucOlXIWAKCggqCgkIAERFkqoqz4kSVGdpOjBETY8dEY6/V/0Yny2QlMR0QbW1drV1VRNE4JFpFWRYog4ighkFRRgWZhxrOeb+8b7r7jUnU4tQ+Bdf18TzPc+/f97P23gAAAAAAwElmzJgxsXHjxvjwww8/1/tDhgyJ6urqGDRoUJHLAAAAAAAAgJ4qlzoAAAAAAAAAAAAAAAAAAAAAAIDPZ8+ePfHb3/42/uu//is6OztT5xTd4MGD47bbbova2tro06dP6hwAAAAAAAAAAAAAAAAAAOAklclkYs6cOfHkk09Ge3v7X32vrKwspk6dGhMnToxsNtuNhQAAAAAAAEBPk0sdAAAAAAAAAAAAAAAAAAAAAADA33b48OF47LHH4t///d/j8OHDqXOKbtiwYXH77bfHTTfdFBUVFalzAAAAAAAAAAAAAAAAAAAAol+/fjFt2rR49dVXP/P5GWecEdXV1VFZWdnNZQAAAAAAAEBPlEsdAAAAAAAAAAAAAAAAAAAAAADAZ+vo6IjFixfHgw8+GHv27EmdU3QjRoyIO+64I6677rrI5RyPAwAAAAAAAAAAAAAAAAAAlJbx48fHpk2bYvv27X/+rby8PKZNmxbjx4+PTCaTsA4AAAAAAADoSZzCDAAAAAAAAAAAAAAAAAAAAABQYgqFQrz88svxi1/8IrZs2ZI6p+jGjBkT8+fPjyuuuCKy2WzqHAAAAAAAAAAAAAAAAAAAgM+UyWSiqqoqnnrqqejs7Iwzzzwzqqqqon///qnTAAAAAAAAgB4mlzoAAAAAAAAAAAAAAAAAAAAAAID/tnr16njggQdizZo1qVOKbsKECTF//vyYM2dOZDKZ1DkAAAAAAAAAAAAAAAAAAAB/V2VlZcyYMSPKyspi7Nix9koDAAAAAAAAX0oudQAAAAAAAAAAAAAAAAAAAAAAABGbNm2KX/ziF9HU1JQ6peimTp0a8+fPj0suucSFGwAAAAAAAAAAAAAAAAAAcBIoFAon1N7i8ePHp04AAAAAAAAAerhc6gAAAAAAAAAAAAAAAAAAAAAAgJPZrl274je/+U387ne/i3w+nzqnqGbNmhV33nlnTJo0KXUKAAAAAAAAAAAAAAAAAADQDTo7O2PFihWxa9euuP766yOTyaROAgAAAAAAACgJudQBAAAAAAAAAAAAAAAAAAAAAAAno4MHD8bDDz8c//Ef/xHHjh1LnVM0mUwmLrvsspg/f35ccMEFqXMAAAAAAAAAAAAAAAAAAIBusnPnzmhsbIy9e/dGRMS6deviK1/5StooAAAAAAAAgBKRSx0AAAAAAAAAAAAAAAAAAAAAAHAyaWtri6eeeioWLFgQ+/btS51TVHPnzo077rgjRo0alToFAAAAAAAAAAAAAAAAAADoJu3t7fH666/H22+/HYVC4c+/L1++PEaMGBH9+/dPWAcAAAAAAABQGnKpAwAAAAAAAAAAAAAAAAAAAAAATgb5fD5eeOGF+OUvfxnbtm1LnVNUp556ajz88MNx5plnpk4BAAAAAAAAAAAAAAAAAAC60datW6OpqSkOHDjwF8/a29ujqakp5s6dG5lMJkEdAAAAAAAAQOnIpQ4AAAAAAAAAAAAAAAAAAAAAADjRLV++PB544IF45513UqcU1bBhw+Jf/uVfoqqqKnUKAAAAAAAAAAAAAAAAAADQjdra2qK1tfXv7qneunVrvPfee3H++ed3UxkAAAAAAABAacqlDgAAAAAAAAAAAAAAAAAAAAAAOFG999578cADD0Rra2vqlKIaNGhQ3HXXXTFv3rzI5RxrAwAAAAAAAAAAAAAAAAAAJ5MPPvggmpub49ChQ5/r/ddeey3OOuus6Nu3b5HLAAAAAAAAAEqX05wBAAAAAAAAAAAAAAAAAAAAAI6zbdu2xa9+9at47rnnUqcUVe/eveO2226Lb3/729GnT5/UOQAAAAAAAAAAAAAAAAAAQDc6evRotLS0xIYNG77Qd21tbdHc3BxXX311ZDKZItUBAAAAAAAAlLZc6gAAAAAAAAAAAAAAAAAAAAAAgBPFvn37YsGCBfHkk09Ge3t76pyiKSsri9ra2vj+978fgwYNSp0DAAAAAAAAAAAAAAAAAAB0o0KhEJs2bYqWlpY4cuTIl5rxwQcfxKZNm+Lcc889znUAAAAAAAAAPUMudQAAAAAAAAAAAAAAAAAAAAAAQE937NixePzxx2PRokVx8ODB1DlFdcUVV8Q999wTI0aMSJ0CAAAAAAAAAAAAAAAAAAB0s8OHD0dzc3O8//77XZ7V0tISw4cPj969e3c9DAAAAAAAAKCHyaUOAAAAAAAAAAAAAAAAAAAAAADoqfL5fDzzzDPx61//Onbt2pU6p6imTJkS9957b0yYMCF1CgAAAAAAAAAAAAAAAAAA0M0KhUK899570draGseOHTsuM48cORItLS1xxRVXHJd5AAAAAAAAAD1JLnUAAAAAAAAAAAAAAAAAAAAAAEBPUygUorm5OX7+85/Hpk2bUucU1ejRo+Pee++NWbNmRSaTSZ0DAAAAAAAAAAAAAAAAAAB0swMHDsTSpUvjo48+Ou6zN27cGOedd16MHDnyuM8GAAAAAAAAKGW51AEAAAAAAAAAAAAAAAAAAAAAAD3J2rVr44EHHoiVK1emTimqoUOHxt133x033HBDZLPZ1DkAAAAAAAAAAAAAAAAAAEA3KxQKsW7duli+fHm0t7cXbZ3m5uY444wzolevXkVbAwAAAAAAAKDU5FIHAAAAAAAAAAAAAAAAAAAAAAD0BBs2bIgHH3wwXn755dQpRdWvX7+444474h/+4R9c4gEAAAAAAAAAAAAAAAAAACepffv2RWNjY+zYsaPoax06dChaW1ujurq66GsBAAAAAAAAlIpc6gAAAAAAAAAAAAAAAAAAAAAAgFK2ZcuWePDBB+OFF16IQqGQOqdoysvL4xvf+EbMnz8/KisrU+cAAAAAAAAAAAAAAAAAAAAJ5PP5eOutt+KNN96Izs7Oblv33XffjfPOOy/OPPPMblsTAAAAAAAAIKVc6gAAAAAAAAAAAAAAAAAAAAAAgFK0bdu2+O1vfxvPPPNM5PP51DlFk8lk4rrrrou77747hg8fnjoHAAAAAAAAAAAAAAAAAABIZM+ePdHY2Bgff/xxkvWbmpria1/7WpSXlydZHwAAAAAAAKA75VIHAAAAAAAAAAAAAAAAAAAAAACUkl27dsXChQujoaEhOjo6UucU1aWXXhr33ntvjB07NnUKAAAAAAAAAAAAAAAAAACQSGdnZ6xevTpWrVoV+Xw+WceBAwfi9ddfj5kzZyZrAAAAAAAAAOguudQBAAAAAAAAAAAAAAAAAAAAAAClYM+ePfHwww/Hk08+GW1tbalziur888+P++67L6ZNm5Y6BQAAAAAAAAAAAAAAAAAASOjjjz+OxsbG2LNnT+qUiIh4++23Y/To0XHGGWekTgEAAAAAAAAoqlzqAAAAAAAAAAAAAAAAAAAAAACAlPbv3x+PPvpoPP7443HkyJHUOUU1fPjwuOeee+Kqq66KbDabOgcAAAAAAAAAAAAAAAAAAEiko6MjVqxYEWvWrIlCoZA6588KhUI0NTXFLbfcEmVlZalzAAAAAAAAAIomlzoAAAAAAAAAAAAAAAAAAAAAACCFQ4cOxeOPPx6PPvpoHDx4MHVOUVVWVsb3vve9uOWWW6KioiJ1DgAAAAAAAAAAAAAAAAAAkNCOHTuisbEx9u3blzrlM+3duzdWrFgR06ZNS50CAAAAAAAAUDS51AEAAAAAAAAAAAAAAAAAAAAAAN3p6NGj8Z//+Z/x8MMPl+ylGcdLr1694lvf+lZ85zvfiX79+qXOAQAAAAAAAAAAAAAAAAAAEmpvb4/ly5fHunXrolAopM75m958880YNWpUDBkyJHUKAAAAAAAAQFHkUgcAAAAAAAAAAAAAAAAAAAAAAHSHtra2aGhoiAULFsTu3btT5xRVNpuNm266Ke66664YOnRo6hwAAAAAAAAAAAAAAAAAACCxjz76KJYuXRoHDhxInfK5FAqFaGpqinnz5kVZWVnqHAAAAAAAAIDjLpc6AAAAAAAAAAAAAAAAAAAAAACgmDo6OuKZZ56Jf/u3f4udO3emzim6qqqq+NGPfhSjR49OnQIAAAAAAAAAAAAAAAAAACR27NixaG1tjXfffTd1yhe2e/fuePPNN2PKlCmpUwAAAAAAAACOu1zqAAAAAAAAAAAAAAAAAAAAAACAYsjn8/H73/8+fvOb38RHH32UOqfoJk2aFPfee29Mnjw5dQoAAAAAAAAAAAAAAAAAAFAC3n///Whubo7Dhw+nTvnSVq5cGaNGjYqBAwemTgEAAAAAAAA4rnKpAwAAAAAAAAAAAAAAAAAAAAAAjrfW1tb46U9/Ghs3bkydUnQjRoyIH//4x/HVr341MplM6hwAAAAAAAAAAAAAAAAAACCxI0eOREtLywmx37qysjI6OztTZwAAAAAAAAAcd7nUAQAAAAAAAAAAAAAAAAAAAAAAx8umTZviZz/7WbS0tKROKbpBgwbFD37wg7j55psjl3OUDAAAAAAAAAAAAAAAAAAAnOwKhUJs3LgxWlpa4ujRo6lzuiSTycTkyZNjypQpUVZWljoHAAAAAAAA4LhzsjQAAAAAAAAAAAAAAAAAAAAA0OPt2bMnHnzwwaivr498Pp86p6j69OkT3/nOd+If//Efo0+fPqlzAAAAAAAAAAAAAAAAAACAEnDo0KFobm6ODz74IHVKl5122mlRXV0dgwcPTp0CAAAAAAAAUDS51AEAAAAAAAAAAAAAAAAAAAAAAF9WW1tbPP7447FgwYI4fPhw6pyiKisri1tuuSW+973vxaBBg1LnAAAAAAAAAAAAAAAAAAAAJaBQKMS7774bra2t0dbWljqnS8rKymLKlClx4YUXRjabTZ0DAAAAAAAAUFS51AEAAAAAAAAAAAAAAAAAAAAAAF9UoVCIF198MX7+85/H9u3bU+cU3VVXXRU//OEP4+yzz06dAgAAAAAAAAAAAAAAAAAAlIgDBw5EU1NTbN26NXVKl51++ulRVVUVAwcOTJ0CAAAAAAAA0C1yqQMAAAAAAAAAAAAAAAAAAAAAAL6INWvWxE9/+tN46623UqcU3cUXXxz33XdfjB8/PnUKAAAAAAAAAAAAAAAAAABQIgqFQrz99tvx+uuvR3t7e+qcLsnlcnHJJZfEhAkTIpPJpM4BAAAAAAAA6Da51AEAAAAAAAAAAAAAAAAAAAAAAJ/Htm3b4he/+EW88MILqVOK7txzz4177703Zs6c6SINAAAAAAAAAAAAAAAAAADgz/bu3RuNjY2xc+fO1CldNnz48KiqqooBAwakTgEAAAAAAADodrnUAQAAAAAAAAAAAAAAAAAAAAAAf8vBgwfjoYceiscffzza2tpS5xTV0KFD45/+6Z/i+uuvj2w2mzoHAAAAAAAAAAAAAAAAAAAoEfl8PtasWRMrVqyIzs7O1DldUlFREdOnT48LLrggMplM6hwAAAAAAACAJHKpAwAAAAAAAAAAAAAAAAAAAAAAPktnZ2fU19fHr3/969i7d2/qnKLq379/3HHHHfHNb34zevXqlToHAAAAAAAAAAAAAAAAAAAoIbt3747Gxsb45JNPUqd02YgRI2LOnDnRt2/f1CkAAAAAAAAASeVSBwAAAAAAAAAAAAAAAAAAAAAA/E+FQiFee+21+OlPfxqbN29OnVNUFRUV8c1vfjPuuOOOGDBgQOocAAAAAAAAAAAAAAAAAACghHR2dsaqVati9erVkc/nU+d0ySmnnBIzZsyI8847LzKZTOocAAAAAAAAgORyqQMAAAAAAAAAAAAAAAAAAAAAAP6fDRs2xM9+9rNobW1NnVJUmUwm5s6dG3fffXcMGzYsdQ4AAAAAAAAAAAAAAAAAAFBidu3aFY2NjfHpp5+mTumy0aNHx6xZs6J3796pUwAAAAAAAABKRi51AAAAAAAAAAAAAAAAAAAAAADA7t2749e//nUsXrw48vl86pyimjlzZvzoRz+KsWPHpk4BAAAAAAAAAAAAAAAAAABKTEdHR7zxxhvx1ltvRaFQSJ3TJX369IlZs2bFqFGjUqcAAAAAAAAAlJxc6gAAAAAAAAAAAAAAAAAAAAAA4OR17NixeOyxx2LRokVx+PDh1DlFNW7cuLj33nvjkksuSZ0CAAAAAAAAAAAAAAAAAACUoO3bt0dTU1Ps27cvdUqXjR07NmbMmBG9evVKnQIAAAAAAABQknKpAwAAAAAAAAAAAAAAAAAAAACAk08+n48XXnghfv7zn8fOnTtT5xTVWWedFT/84Q/jyiuvjGw2mzoHAAAAAAAAAAAAAAAAAAAoMe3t7bFs2bJYt25d6pQu69evX8yZMyfOPvvs1CkAAAAAAAAAJS2XOgAAAAAAAAAAAAAAAAAAAAAAOLmsXr06/vVf//WEuCDjbznjjDPi+9//flx//fWRyznqBQAAAAAAAAAAAAAAAAAA+EsffvhhLF26NA4ePJg6pcvGjx8f06dPj/Ly8tQpAAAAAAAAACXPydUAAAAAAAAAAAAAAAAAAAAAQLf46KOP4uc//3n84Q9/SJ1SVIMHD44777wz5s2bFxUVFalzAAAAAAAAAAAAAAAAAACAEnTs2LF47bXX4r333kud0mWVlZVRVVUVw4YNS50CAAAAAAAA0GPkUgcAAAAAAAAAAAAAAAAAAAAAACe2AwcOxMKFC+OJJ56I9vb21DlFU1lZGd/97nfj61//epxyyimpcwAAAAAAAAAAAAAAAAAAgBK1efPmaG5ujiNHjqRO6ZJMJhMTJ06MqVOnRi6XS50DAAAAAAAA0KP4lxUAAAAAAAAAAAAAAAAAAAAAKIqOjo6oq6uLBx98MPbt25c6p2j69esXt912W9x6663Rp0+f1DkAAAAAAAAAAAAAAAAAAECJOnLkSDQ3N8fmzZtTp3TZwIEDo7q6OoYOHZo6BQAAAAAAAKBHyqUOAAAAAAAAAAAAAAAAAAAAAABOLIVCIZqbm+NnP/tZfPDBB6lziqZ3795x6623xre//e0YMGBA6hwAAAAAAAAAAAAAAAAAAKBEFQqF2LBhQ7S0tMSxY8dS53RJNpuNyZMnx0UXXRRlZWWpcwAAAAAAAAB6rFzqAAAAAAAAAAAAAAAAAAAAAADgxPHee+/Fz372s1i+fHnqlKKpqKiIb3zjG3H77bfHwIEDU+cAAAAAAAAAAAAAAAAAAAAl7NChQ7F06dLYsmVL6pQuGzJkSFRVVcXgwYNTpwAAAAAAAAD0eLnUAQAAAAAAAAAAAAAAAAAAAABAz/fJJ5/EL3/5y3j66aejUCikzimKXC4XNTU1cccdd8TQoUNT5wAAAAAAAAAAAAAAAAAAACWsUCjEO++8E8uWLYu2trbUOV1SVlYWU6dOjYkTJ0Y2m02dAwAAAAAAAHBCyKUOAAAAAAAAAAAAAAAAAAAAAAB6rqNHj8ajjz4aDz/8cBw5ciR1TlFks9m44YYb4nvf+14MHz48dQ4AAAAAAAAAAAAAAAAAAFDi9u/fH01NTbFt27bUKV12+umnR3V1dZx66qmpUwAAAAAAAABOKLnUAQAAAAAAAAAAAAAAAAAAAABAz5PP5+P3v/99/OIXv4hdu3alzimKTCYT11xzTdx1110xYsSI1DkAAAAAAAAAAAAAAAAAAECJKxQKsXbt2nj99dejo6MjdU6XlJeXx7Rp02L8+PGRyWRS5wAAAAAAAACccHKpAwAAAAAAAAAAAAAAAAAAAACAniOfz0dra2v86le/ivXr16fOKZrLLrss7r777jj33HNTpwAAAAAAAAAAAAAAAAAAAD3Ap59+Gk1NTbFz587UKV125plnRlVVVfTv3z91CgAAAAAAAMAJK5c6AAAAAAAAAAAAAAAAAAAAAAAofbt27Yqnn346GhoaYvv27alzimbatGnx4x//OMaNG5c6BQAAAAAAAAAAAAAAAAAA6AHy+Xy8+eabsXLlyujs7Eyd0yUVFRUxY8aMGDt2bGQymdQ5AAAAAAAAACe0XOoAAAAAAAAAAAAAAAAAAAAAAKA05fP5aGlpibq6umhubo58Pp86qWhGjRoV999/f8yYMcNlGQAAAAAAAAAAAAAAAAAAwOfyySefRGNjY+zevTt1SpeNHDkyZs+eHX379k2dAgAAAAAAAHBSyKUOAAAAAAAAAAAAAAAAAAAAAABKy86dO2Px4sWxePHi2LlzZ+qcojr11FPj7rvvjpqamigrK0udAwAAAAAAAAAAAAAAAAAA9ACdnZ2xcuXKWL16dRQKhdQ5XXLKKafErFmzYvTo0ZHJZFLnAAAAAAAAAJw0cqkDAAAAAAAAAAAAAAAAAAAAAID0Ojs749VXX436+vp49dVXI5/Pp04qqvLy8rj11ltj/vz50a9fv9Q5AAAAAAAAAAAAAAAAAABAD7Fz585obGyMvXv3pk7psnPPPTdmzpwZvXv3Tp0CAAAAAAAAcNLJpQ4AAAAAAAAAAAAAAAAAAAAAANLZsWNHLF68OBYvXhy7du1KndMtrr766vjRj34Uw4cPT50CAAAAAAAAAAAAAAAAAAD0EO3t7fHGG2/E2rVro1AopM7pkj59+sScOXNi5MiRqVMAAAAAAAAATlq51AEAAAAAAAAAAAAAAAAAAAAAQPfq7OyM5ubmqKuri5aWlh5/AcbnNXHixLj//vtj0qRJqVMAAAAAAAAAAAAAAAAAAIAeZNu2bdHU1BT79+9PnQ6LNx8AAQAASURBVNJl559/flx66aXRq1ev1CkAAAAAAAAAJ7Vc6gAAAAAAAAAAAAAAAAAAAAAAoHts27YtGhoa4ne/+1188sknqXO6zbBhw+LHP/5xXHXVVZHJZFLnAAAAAAAAAAAAAAAAAAAAPURbW1ssW7Ys1q9fnzqly/r37x9z5syJs846K3UKAAAAAAAAABGRSx0AAAAAAAAAAAAAAAAAAAAAABRPR0dHNDU1RX19fbS2tkahUEid1G369OkTd955Z9x6661RUVGROgcAAAAAAAAAAAAAAAAAAOhBtmzZEkuXLo1Dhw6lTumSTCYT48ePj2nTpkV5eXnqHAAAAAAAAAD+r1zqAAAAAAAAAAAAAAAAAAAAAADg+Nu6dWs0NDTE4sWLY8+ePalzulU2m42ampr4wQ9+EIMGDUqdAwAAAAAAAAAAAAAAAAAA9CBHjx6NlpaW2LBhQ+qULqusrIzq6uo444wzUqcAAAAAAAAA8P/JpQ4AAAAAAAAAAAAAAAAAAAAAAI6P9vb2aGpqirq6uli2bFnqnCRmzpwZP/nJT2L06NGpUwAAAAAAAAAAAAAAAAAAgB5o8+bNsWHDhtQZXZLJZGLSpElx8cUXRy6XS50DAAAAAAAAwGfwby4AAAAAAAAAAAAAAAAAAAAA9HAffvhhNDQ0xNNPPx179uxJnZPE6NGj4/77748ZM2akTgEAAAAAAAAAAAAAAAAAAHqwCy64IP70pz/Fjh07Uqd8KYMHD46qqqoYMmRI6hQAAAAAAAAA/oZc6gAAAAAAAAAAAAAAAAAAAAAA4Itra2uLV155JRoaGmL58uWpc5IZNGhQ3H333XHzzTdHWVlZ6hwAAAAAAAAAAAAAAAAAAKCHy2QyUV1dHU899VR0dnamzvncstlsXHTRRTF58mR7rwEAAAAAAAB6gFzqAAAAAAAAAAAAAAAAAAAAAADg89uyZUvU19fH008/HXv37k2dk0xFRUV8+9vfjttvvz369u2bOgcAAAAAAAAAAAAAAAAAADiBVFZWxtSpU2PZsmWpUz6XIUOGRHV1dQwaNCh1CgAAAAAAAACfUy51AAAAAAAAAAAAAAAAAAAAAADwt7W1tcXLL78cdXV1sWLFitQ5yV177bVxzz33xLBhw1KnAAAAAAAAAAAAAAAAAAAAJ6iJEyfGpk2b4uOPP06d8leVlZXF1KlTY+LEiZHNZlPnAAAAAAAAAPAF5FIHAAAAAAAAAAAAAAAAAAAAAACf7f3334/6+vp45plnYt++falzkrvwwgvjn//5n+MrX/lK6hQAAAAAAAAAAAAAAAAAAOAEl81mo7q6Ourq6iKfz6fO+QvDhg2LqqqqqKysTJ0CAAAAAAAAwJeQSx0AAAAAAAAAAAAAAAAAAAAAAPy3tra2+MMf/hD19fWxcuXK1DklYfjw4XHffffF5ZdfHplMJnUOAAAAAAAAAAAAAAAAAABwkhg0aFBcdNFFsWLFitQpf1ZeXh7Tp0+PcePG2X8NAAAAAAAA0IPlUgcAAAAAAAAAAAAAAAAAAAAAABGbNm2KhoaGeOaZZ2L//v2pc0pCv3794s4774xvfvObUVFRkToHAAAAAAAAAAAAAAAAAAA4CU2ePDk2b94ce/bsSZ0SZ511VsyZMyf69++fOgUAAAAAAACALsqlDgAAAAAAAAAAAAAAAAAAAACAk9WxY8fipZdeirq6unjzzTdT55SMbDYbX/va1+Kuu+6KU089NXUOAAAAAAAAAAAAAAAAAABwEisrK4vq6upoaGiIQqGQpKFXr14xY8aMGDNmTGQymSQNAAAAAAAAABxfudQBAAAAAAAAAAAAAAAAAAAAAHCy2bhxY9TV1cWzzz4bBw4cSJ1TUubMmRP33XdfnHPOOalTAAAAAAAAAAAAAAAAAAAAIiJiyJAhMWnSpHjzzTe7fe1zzjknZs+eHX369On2tQEAAAAAAAAonlzqAAAAAAAAAAAAAAAAAAAAAAA4GRw9ejRefPHFqK+vjzVr1qTOKTljxoyJ+++/P6ZNm5Y6BQAAAAAAAAAAAAAAAAAA4C9cfPHF8f7778e+ffu6Zb3evXvHrFmzYtSoUZHJZLplTQAAAAAAAAC6Ty51AAAAAAAAAAAAAAAAAAAAAACcyN57771oaGiIZ599Ng4ePJg6p+QMHjw47rnnnrjhhhsim82mzgEAAAAAAAAAAAAAAAAAAPhMuVwuqqqq4umnny76WmPGjIkZM2bEKaecUvS1AAAAAAAAAEgjlzoAAAAAAAAAAAAAAAAAAAAAAE40R44ciRdffDHq6upi7dq1qXNKUq9eveK2226L73znO9GnT5/UOQAAAAAAAAAAAAAAAAAAAH/XsGHD4itf+Uq8/fbbRZnft2/fmDNnTowYMaIo8wEAAAAAAAAoHbnUAQAAAAAAAAAAAAAAAAAAAABwonj33Xejrq4unnvuuTh8+HDqnJI1d+7cuOeee+L0009PnQIAAAAAAAAAAAAAAAAAAPCFTJs2LbZs2RIHDhw4rnPHjRsX06dPj4qKiuM6FwAAAAAAAIDSlEsdAAAAAAAAAAAAAAAAAAAAAAA92eHDh+P555+P+vr6WLduXeqckjZlypT4yU9+EuPHj0+dAgAAAAAAAAAAAAAAAAAA8KWUl5fHnDlz4tlnnz0u8/r37x9VVVVx5plnHpd5AAAAAAAAAPQMudQBAAAAAAAAAAAAAAAAAAAAANATrV+/Purr6+P3v/99HD58OHVOSRs/fnzceeedUVVVFZlMJnUOAAAAAAAAAAAAAAAAAABAl5x11llx/vnnx7vvvvulZ2QymZgwYUJMnTo1ysvLj2MdAAAAAAAAAD1BLnUAAAAAAAAAAAAAAAAAAAAAAPQUhw4diueffz7q6urinXfeSZ1T0ioqKuLKK6+MmpqamDx5cmQymdRJAAAAAAAAAAAAAAAAAAAAx82ll14aH374YRw+fPgLf3vqqadGdXV1nH766UUoAwAAAAAAAKAnyKUOAAAAAAAAAAAAAAAAAAAAAIBSVigUYv369VFXVxfPP/98HDlyJHVSSRs9enTU1tbG3LlzY8CAAalzAAAAAAAAAAAAAAAAAAAAiqJXr14xe/bseOGFFz73N5lMJiZPnhxTpkyJsrKyItYBAAAAAAAAUOpyqQMAAAAAAAAAAAAAAAAAAAAAoBQdPHgwnnvuuaivr4/33nsvdU5Jq6ioiKuvvjpqa2tj4sSJkclkUicBAAAAAAAAAAAAAAAAAAAU3TnnnBPnnntubNy48e++O3jw4Kiuro7TTjutG8oAAAAAAAAAKHW51AEAAAAAAAAAAAAAAAAAAAAAUCoKhUKsXbs26uvr44UXXoijR4+mTipp5513XtTW1sa1114bAwYMSJ0DAAAAAAAAAAAAAAAAAADQ7WbOnBlbt279q/vTy8rKYsqUKXHhhRdGNpvt5joAAAAAAAAASlUudQAAAAAAAAAAAAAAAAAAAAAApHbgwIF47rnnoq6uLjZs2JA6p6T16tUrrrnmmqipqYkJEyZEJpNJnQQAAAAAAAAAAAAAAAAAAJBM7969Y+bMmfHHP/7xL56dfvrpUVVVFQMHDkxQBgAAAAAAAEApy6UOAAAAAAAAAAAAAAAAAAAAAIAUCoVCvPXWW1FXVxcvvvhiHDt2LHVSSRs7dmzU1tbGtddeG/369UudAwAAAAAAAAAAAAAAAAAAUDLOPffc2LhxY3zwwQcREZHL5eKSSy6JCRMmRCaTSVwHAAAAAAAAQCnKpQ4AAAAAAAAAAAAAAAAAAAAAgO60f//+ePbZZ6Ouri42bdqUOqek9e7dO6655pqora2NcePGufwCAAAAAAAAAAAAAAAAAADgM2QymZg9e3Zs3749TjvttKiqqooBAwakzgIAAAAAAACghOVSBwAAAAAAAAAAAAAAAAAAAABAsRUKhVi9enXU19fHSy+9FG1tbamTStr5558ft9xyS1xzzTXRt2/f1DkAAAAAAAAAAAAAAAAAAAAlr2/fvjFv3ryorKyMTCaTOgcAAAAAAACAEpdLHQAAAAAAAAAAAAAAAAAAAAAAxbJv375YsmRJ1NXVxfvvv586p6T16dMnrr322qipqYlx48alzgEAAAAAAAAAAAAAAAAAAE5we/bsiYiIQYMGJS45fk499dTUCQAAAAAAAAD0ELnUAQAAAAAAAAAAAAAAAAAAAABwPBUKhVi1alXU1dXFH//4x2hra0udVNLGjx8fNTU1cc0110SfPn1S5wAAAAAAAAAAAAAAAAAAACe4zs7OWL16daxatSoGDhwYNTU1kc1mU2cBAAAAAAAAQLfKpQ4AAAAAAAAAAAAAAAAAAAAAgONh79698cwzz0R9fX188MEHqXNKWp8+fWLu3LlRU1MT559/fuocAAAAAAAAAAAAAAAAAADgJPHxxx9HY2Nj7NmzJyIidu/eHatXr44pU6YkLgMAAAAAAACA7pVLHQAAAAAAAAAAAAAAAAAAAAAAX1ahUIgVK1ZEXV1dvPzyy9He3p46qaRNmDAhamtr48orr4w+ffqkzgEAAAAAAAAAAAAAAAAAAE4SHR0dsWLFilizZk0UCoX/9WzVqlUxatSoGDhwYKI6AAAAAAAAAOh+udQBAAAAAAAAAAAAAAAAAAAAAPBF7dmzJ5555ploaGiILVu2pM4paX379o3rr78+5s2bF2PHjk2dAwAAAAAAAAAAAAAAAAAAnGS2b98eTU1NsW/fvs983tnZGY2NjXHzzTdHJpPp5joAAAAAAAAASCOXOgAAAAAAAAAAAAAAAAAAAAAAPo98Ph9vvPFG1NfXx8svvxwdHR2pk0rapEmToqamJq688sro3bt36hwAAAAAAAAAAAAAAAAAAOAk097eHsuXL4+333777767a9eueOutt2LSpEndUAYAAAAAAAAA6eVSBwAAAAAAAAAAAAAAAAAAAADA37J79+54+umno76+PrZu3Zo6p6T1798/5s6dGzU1NXHeeeelzgEAAAAAAAAAAAAAAAAAAE5SH330UTQ1NcXBgwc/9zdvvPFGjBw5MiorK4tYBgAAAAAAAAClIZc6AAAAAAAAAAAAAAAAAAAAAAD+f/l8PpYvXx51dXXR2NgYnZ2dqZNK2uTJk6O2tjauuOKK6NWrV+ocAAAAAAAAAAAAAAAAAADgJHXs2LFobW2Nd9999wt/29HREU1NTXHDDTdEJpMpQh0AAAAAAAAAlI5c6gAAAAAAAAAAAAAAAAAAAAAA+H8++eST+N3vfhcNDQ2xbdu21DklbcCAAXHDDTfEvHnzYvTo0alzAAAAAAAAAAAAAAAAAACAk9z7778fzc3Ncfjw4S89Y/v27fHOO+/EuHHjjmMZAAAAAAAAAJSeXOoAAAAAAAAAAAAAAAAAAAAAAE5u+Xw+Wltbo76+PhobGyOfz6dOKmlTpkyJmpqauOKKK6KioiJ1DgAAAAAAAAAAAAAAAAAAcJI7cuRItLS0xMaNG4/LvNbW1jj77LOjX79+x2UeAAAAAAAAAJSiXOoAAAAAAAAAAAAAAAAAAAAAAE5Ou3btiqeffjoaGhpi+/btqXNKWmVlZdxwww1RU1MT55xzTuocAAAAAAAAAAAAAAAAAACAKBQKsXHjxmhpaYmjR48et7nt7e2xdOnSuPbaayOTyRy3uQAAAAAAAABQSnKpAwAAAAAAAAAAAAAAAAAAAAA4eeTz+WhpaYm6urpobm6OfD6fOqmkXXzxxVFbWxuXXXZZVFRUpM4BAAAAAAAAAAAAAAAAAACIiIhDhw7F0qVLY8uWLUWZ/+GHH8aGDRtizJgxRZkPAAAAAAAAAKnlUgcAAAAAAAAAAAAAAAAAAAAAcOLbuXNnLF68OBYvXhw7d+5MnVPSTj311Ljxxhtj3rx5MXLkyNQ5AAAAAAAAAAAAAAAAAAAAf1YoFOLdd9+N1tbWaGtrK+paLS0tcdZZZ0Xv3r2Lug4AAAAAAAAApJBLHQAAAAAAAAAAAAAAAAAAAADAiamzszNeffXVqK+vj1dffTXy+XzqpJJ2ySWXRE1NTXz1q1+NioqK1DkAAAAAAAAAAAAAAAAAAAD/y4EDB6KpqSm2bt3aLesdO3Ysmpub46qrruqW9QAAAAAAAACgO+VSBwAAAAAAAAAAAAAAAAAAAABwYtmxY0csXrw4Fi9eHLt27UqdU9IGDRoUN954Y8ybNy/OPvvs1DkAAAAAAAAAAAAAAAAAAAB/oVAoxNtvvx3Lly+Pjo6Obl178+bNsXnz5hg1alS3rgsAAAAAAAAAxZZLHQAAAAAAAAAAAAAAAAAAAABAz9fZ2RnNzc1RV1cXLS0tUSgUUieVtOnTp0dtbW1UVVVFeXl56hwAAAAAAAAAAAAAAAAAAIDPtHfv3mhsbIydO3cma2hubo7hw4dHr169kjUAAAAAAAAAwPGWSx0AAAAAAAAAAAAAAAAAAAAAQM+1c+fOqKuri8WLF8cnn3ySOqekDRo0KG6++ea4+eab46yzzkqdAwAAAAAAAAAAAAAAAAAA8Ffl8/lYs2ZNrFixIjo7O5O2HDlyJFpaWuKyyy5L2gEAAAAAAAAAx1MudQAAAAAAAAAAAAAAAAAAAAAAPc+HH34YixYtiiVLlkRHR0fqnJKVyWTi0ksvjZqamqiqqopcznEfAAAAAAAAAAAAAAAAAABAadu9e3c0NjbGJ598kjrlz/70pz/FeeedF2effXbqFAAAAAAAAAA4LpxaDgAAAAAAAAAAAAAAAAAAAMDntnHjxli4cGG8+OKLkc/nU+eUrNNOOy1uuummmDdvXgwfPjx1DgAAAAAAAAAAAAAAAAAAwN/V2dkZq1atitWrV5fkfvKmpqb4+te/HhUVFalTAAAAAAAAAKDLcqkDAAAAAAAAAAAAAAAAAAAAACh969ati4ULF8Yrr7ySOqVkZTKZmDlzZtTU1MTs2bMjl3O0BwAAAAAAAAAAAAAAAAAA0DPs2rUrGhsb49NPP02d8lcdOnQoli1bFnPmzEmdAgAAAAAAAABd5iRzAAAAAAAAAAAAAAAAAAAAAP6qlStXxsKFC6O1tTV1SskaOnRo3HzzzXHTTTfFsGHDUucAAAAAAAAAAAAAAAAAAAB8bh0dHfH666/H2rVro1AopM75u9avXx/nnntuDB8+PHUKAAAAAAAAAHRJLnUAAAAAAAAAAAAAAAAAAAAAAKWlUChEa2trLFy4MFatWpU6pyRls9mYNWtW1NTUxKxZs6KsrCx1EgAAAAAAAAAAAAAAAAAAwBeyffv2aGxsjP3796dO+UKampria1/7WuRyudQpAAAAAAAAAPCl+dcbAAAAAAAAAAAAAAAAAAAAgIiIyOfz0djYGAsXLoz169enzilJQ4cOjXnz5sXNN98cp59+euocAAAAAAAAAAAAAAAAAACAL6ytrS2WL18e69atS53ypezfvz9ef/31mDFjRuoUAAAAAAAAAPjScqkDAAAAAAAAAAAAAAAAAAAAAEirs7MzXnzxxVi4cGFs2rQpdU7JyWazMXv27KitrY2ZM2dGNptNnQQAAAAAAAAAAAAAAAAAAPClfPjhh7F06dI4ePBg6pQuWbt2bUyYMCH69++fOgUAAAAAAAAAvpRc6gAAAAAAAAAAAAAAAAAAAAAA0mhvb48lS5bEokWL4qOPPkqdU3LOOOOMmDdvXtx0000xdOjQ1DkAAAAAAAAAAAAAAAAAAABf2rFjx6KlpSX+9Kc/pU7pssrKyqiqqor+/funTgEAAAAAAACALy2XOgAAAAAAAAAAAAAAAAAAAACA7nXs2LFoaGiIRx55JHbu3Jk6p6Rks9morq6OmpqauPTSSyObzaZOAgAAAAAAAAAAAAAAAAAA6JLNmzdHc3NzHDlyJHVKl2QymZg0aVJcfPHFkcvlUucAAAAAAAAAQJf45xsAAAAAAAAAAAAAAAAAAADgJHHo0KF46qmn4rHHHos9e/akzikpw4cPj3nz5sVNN90Up512WuocAAAAAAAAAAAAAAAAAACALjty5Eg0NzfH5s2bU6d02aBBg6K6ujqGDBmSOgUAAAAAAAAAjotc6gAAAAAAAAAAAAAAAAAAAAAAimv//v3xxBNPxOOPPx4HDhxInVMyysrKorq6Ompra2PatGmRzWZTJwEAAAAAAAAAAAAAAAAAAHRZoVCIDRs2REtLSxw7dix1Tpdks9m46KKLYvLkyVFWVpY6BwAAAAAAAACOm1zqAAAAAAAAAAAAAAAAAAAAAACKY/fu3fHYY4/FU089FYcPH06dUzLOPPPMqKmpiRtvvDEGDx6cOgcAAAAAAAAAAAAAAAAAAOC4OXjwYCxdujQ+/PDD1CldNmTIkKiuro5BgwalTgEAAAAAAACA4y6XOgAAAAAAAAAAAAAAAAAAAACA42vHjh3xyCOPRENDQ7S1taXOKQm5XC6++tWvRm1tbUydOjWy2WzqJAAAAAAAAAAAAAAAAAAAgOOmUCjEO++8E62trdHe3p46p0vKyspi6tSpMXHiRHvDAQAAAAAAADhh5VIHAAAAAAAAAAAAAAAAAAAAAHB8bNmyJRYtWhRLliyJzs7O1Dkl4eyzz46ampq44YYbYtCgQalzAAAAAAAAAAAAAAAAAAAAjrv9+/dHY2NjbN++PXVKl51xxhlRXV0dlZWVqVMAAAAAAAAAoKhyqQMAAAAAAAAAAAAAAAAAAAAA6JqNGzfGwoUL48UXX4x8Pp86J7lcLheXX3551NbWxpQpUyKbzaZOAgAAAAAAAAAAAAAAAAAAOO4KhUKsXbs2Xn/99ejo6Eid0yXl5eUxbdq0GD9+fGQymdQ5AAAAAAAAAFB0udQBAAAAAAAAAAAAAAAAAAAAAHw569atiwULFkRjY2PqlJIwYsSIqK2tjeuvvz4GDhyYOgcAAAAAAAAAAAAAAAAAAKBoPv3002hqaoqdO3emTumys846K+bMmRP9+/dPnQIAAAAAAAAA3SaXOgAAAAAAAAAAAAAAAAAAAACAL2blypWxcOHCaG1tTZ2SXHl5eVxxxRVRW1sbF110UWQymdRJAAAAAAAAAAAAAAAAAAAARZPP5+PNN9+MlStXRmdnZ+qcLunVq1dceumlMXbsWHvFAQAAAAAAADjp5FIHAAAAAAAAAAAAAAAAAAAAAPD3FQqFeO2112LhwoWxevXq1DnJnXPOOVFbWxvXX399VFZWps4BAAAAAAAAAAAAAAAAAAAouk8++SQaGxtj9+7dqVO6bOTIkTF79uzo27dv6hQAAAAAAAAASCKXOgAAAAAAAAAAAAAAAAAAAACAvy6fz0djY2MsXLgw1q9fnzonqYqKirjyyiujtrY2LrzwwshkMqmTAAAAAAAAAAAAAAAAAAAAiq6zszNWrlwZq1evjkKhkDqnS3r37h0zZ86M0aNH2zMOAAAAAAAAwEktlzoAAAAAAAAAAAAAAAAAAAAAgL/U2dkZL7zwQjz00EOxadOm1DlJjR49Ompra2Pu3LkxYMCA1DkAAAAAAAAAAAAAAAAAAADdZufOndHY2Bh79+5NndJl5513XsycOTNOOeWU1CkAAAAAAAAAkFwudQAAAAAAAAAAAAAAAAAAAAAA/629vT2WLFkSixYtio8++ih1TjIVFRVx9dVXR21tbUycODEymUzqJAAAAAAAAAAAAAAAAAAAgG7T3t4eb7zxRqxduzYKhULqnC7p27dvzJ49O0aOHJk6BQAAAAAAAABKRi51AAAAAAAAAAAAAAAAAAAAAAARR48ejYaGhnjkkUdi165dqXOSOffcc+OWW26Ja6+9NgYMGJA6BwAAAAAAAAAAAAAAAAAAoNtt3bo1li5dGvv370+d0mUXXHBBTJ8+PXr16pU6BQAAAAAAAABKSi51AAAAAAAAAAAAAAAAAAAAAMDJ7NChQ/HUU0/FY489Fnv27Emdk0SvXr3immuuiZqampgwYUJkMpnUSQAAAAAAAAAAAAAAAAAAAN2ura0tWltb45133kmd0mX9+/ePqqqqOPPMM1OnAAAAAAAAAEBJyqUOAAAAAAAAAAAAAAAAAAAAADgZ7du3L5544ol44okn4sCBA6lzkhgzZkzU1tbGddddF/369UudAwAAAAAAAAAAAAAAAAAAkMwHH3wQzc3NcejQodQpXZLJZOIrX/lKXHLJJVFeXp46BwAAAAAAAABKVi51AAAAAAAAAAAAAAAAAAAAAMDJZPfu3fHYY4/Fk08+GUeOHEmd0+1OOeWUuOaaa6K2tjbGjx8fmUwmdRIAAAAAAAAAAAAAAAAAAEAyR48ejZaWltiwYUPqlC479dRTo6qqKs4444zUKQAAAAAAAABQ8nKpAwAAAAAAAAAAAAAAAAAAAABOBjt27IhHHnkkGhoaoq2tLXVOtzvttNPitttui3nz5kXfvn1T5wAAAAAAAAAAAAAAAAAAACRVKBRi8+bN8eqrr8aRI0dS53RJJpOJCy+8MC6++OIoKytLnQMAAAAAAAAAPUIudQAAAAAAAAAAAAAAAAAAAADAiWzLli2xaNGiWLJkSXR2dqbO6XbDhg2L7373u3HjjTdGRUVF6hwAAAAAAAAAAAAAAAAAAIDkDh8+HM3NzfH++++nTumywYMHR1VVVQwZMiR1CgAAAAAAAAD0KLnUAQAAAAAAAAAAAAAAAAAAAAAnog0bNsTChQvjpZdeinw+nzqn240cOTLuuOOOuPbaayOXc8QFAAAAAAAAAAAAAAAAAABAoVCI9957L1pbW+PYsWOpc7okm83GlClT4sILL4yysrLUOQAAAAAAAADQ4zjBHQAAAAAAAAAAAAAAAAAAAOA4WrduXSxYsCAaGxtTpyQxduzYmD9/flx++eWRzWZT5wAAAAAAAAAAAAAAAAAAAJSEgwcPRlNTU3z00UepU7ps6NChUV1dHQMHDkydAgAAAAAAAAA9Vi51AAAAAAAAAAAAAAAAAAAAAMCJYOXKlbFgwYJYtmxZ6pQkJk6cGPPnz4/Zs2dHJpNJnQMAAAAAAAAAAAAAAAAAAFASCoVCrF+/PpYtWxbt7e2pc7okl8vF1KlTY+LEifaVAwAAAAAAAEAX5VIHAAAAAAAAAAAAAAAAAAAAAPRUhUIhXnvttVi4cGGsXr06dU4SU6dOjTvvvDOmTp3qEgkAAAAAAAAAAAAAAAAAAID/Yd++fdHU1BTbt29PndJlw4YNi6qqqqisrEydAgAAAAAAAAAnhFzqAAAAAAAAAAAAAAAAAAAAAICeJp/PxyuvvBIPPfRQrF+/PnVOErNnz4758+fHpEmTUqcAAAAAAAAAAAAAAAAAAACUlEKhEGvWrIk33ngjOjs7U+d0SXl5eUyfPj3GjRsXmUwmdQ4AAAAAAAAAnDByqQMAAAAAAAAAAAAAAAAAAAAAeorOzs544YUX4qGHHopNmzalzul2mUwmrrjiipg/f36MHTs2dQ4AAAAAAAAAAAAAAAAAAEDJ2bNnTzQ2NsbHH3+cOqXLzj777JgzZ07069cvdQoAAAAAAAAAnHByqQMAAAAAAAAAAAAAAAAAAAAASl1bW1ssWbIkFi1aFFu3bk2d0+2y2Wxcd9118d3vfjdGjRqVOgcAAAAAAAAAAAAAAAAAAKDkdHZ2xurVq2PVqlWRz+dT53RJr169YsaMGTFmzJjIZDKpcwAAAAAAAADghJRLHQAAAAAAAAAAAAAAAAAAAABQqo4ePRoNDQ3xyCOPxK5du1LndLvy8vK46aab4vbbb4/hw4enzgEAAAAAAAAAAAAAAAAAAChJH3/8cTQ1NcXu3btTp3TZqFGjYtasWdGnT5/UKQAAAAAAAABwQsulDgAAAAAAAAAAAAAAAAAAAAAoNYcOHYonn3wyHnvssfj0009T53S7U045JWpra+Pb3/52DB06NHUOAAAAAAAAAAAAAAAAAABASero6IgVK1bEmjVrolAopM7pkt69e8esWbNi9OjRqVMAAAAAAAAA4KSQSx0AAAAAAAAAAAAAAAAAAAAAUCr27dsXTzzxRDzxxBNx4MCB1Dndrm/fvvHNb34zbr311hg4cGDqHAAAAAAAAAAAAAAAAAAAgJK1Y8eOaGxsjH379qVO6bIxY8bEjBkz4pRTTkmdAgAAAAAAAAAnjVzqAAAAAAAAAAAAAAAAAAAAAIDUdu/eHY8++mg89dRTceTIkdQ53a6ysjK+9a1vxde//vXo379/6hwAAAAAAAAAAAAAAAAAAICS1d7eHsuXL49169ZFoVBIndMlffv2jTlz5sSIESNSpwAAAAAAAADASSeXOgAAAAAAAAAAAAAAAAAAAAAglR07dsQjjzwSDQ0N0dbWljqn25122mnxne98J2pqaqJ3796pcwAAAAAAAAAAAAAAAAAAAEra1q1bo6mpKQ4cOJA6pcvGjRsX06dPj4qKitQpAAAAAAAAAHBSyqUOAAAAAAAAAAAAAAAAAAAAAOhuW7ZsiUWLFsWSJUuis7MzdU63Gz58eNx+++1x4403ujACAAAAAAAAAAAAAAAAAADgc2htbY01a9akzuiyAQMGRFVVVQwfPjx1CgAAAAAAAACc1HKpAwAAAAAAAAAAAAAAAAAAAAC6y4YNG2LhwoXx0ksvRT6fT53T7c4555y444474pprrolczrETAAAAAAAAAAAAAAAAAAAAn9fgwYNTJ3RJJpOJCRMmxNSpU6O8vDx1DgAAAAAAAACc9JwWDwAAAAAAAAAAAAAAAAAAAJzw3n777ViwYEE0NTWlTkli7NixMX/+/Lj88ssjm82mzgEAAAAAAAAAAAAAAAAAAOhxzjvvvNi4cWNs2bIldcoXNnDgwKiqqorTTz89dQoAAAAAAAAA8H/lUgcAAAAAAAAAAAAAAAAAAAAAFEOhUIhVq1bFggULYtmyZalzkpg4cWLceeedMWvWrMhkMqlzAAAAAAAAAAAAAAAAAAAAeqxMJhNz5syJJ598Mtra2lLnfC6ZTCYmT54cU6ZMibKystQ5AAAAAAAAAMD/kEsdAAAAAAAAAAAAAAAAAAAAAHA8FQqFeO2112LBggXx5ptvps5J4pJLLon58+fH1KlTI5PJpM4BAAAAAAAAAAAAAAAAAAA4IfTt2zemT58eS5cuTZ3yd5122mlRXV0dgwcPTp0CAAAAAAAAAHyGXOoAAAAAAAAAAAAAAAAAAAAAgOMhn8/HK6+8EgsXLox33nkndU4Sc+bMifnz58fEiRNTpwAAAAAAAAAAAAAAAAAAAJyQLrjggti4cWNs27YtdcpnKisriylTpsSFF14Y2Ww2dQ4AAAAAAAAA8FfkUgcAAAAAAAAAAAAAAAAAAAAAdEVnZ2c8//zzsWjRoti0aVPqnG6XyWTiiiuuiPnz58fYsWNT5wAAAAAAAAAAAAAAAAAAAJzQMplMVFVVxVNPPRUdHR2pc/6X008/PaqqqmLgwIGpUwAAAAAAAACAvyOXOgAAAAAAAAAAAAAAAAAAAADgy2hra4slS5bEokWLYuvWralzul02m425c+fGd7/73TjnnHNS5wAAAAAAAAAAAAAAAAD/h70/j7KrLPD9/89TqUwQqogQhiCjMojMQ5AhidooqIgiiqJBGdQe7Mu1aezb3bf7fvt233v7ftuA4DwBKoioKI6tKLYmQEDmSRGRUSAQxqqQgSRVz+8P+fav7UY7IXvXrqq8XmudhSuc83nem01I1vKcHAAANhh9fX058MADc9VVV3WdkiTp7e3NgQcemD322COllK5zAAAAAAAAAIC10Nt1AAAAAAAAAAAAAAAAAAAAAMC6WLlyZS655JKcf/75WbJkSdc5I27ixIk5+uij8653vSszZ87sOgcAAAAAAAAAAAAAAAAAAGCDtMcee+Tuu+/OI4880mnHzJkzM2fOnPT19XXaAQAAAAAAAACsm96uAwAAAAAAAAAAAAAAAAAAAADWxrJly/LVr341X/ziF/Pkk092nTPipkyZkmOPPTbz5s3LjBkzus4BAAAAAAAAAAAAAAAAAADYoJVSMmfOnHz961/P0NDQiJ8/adKkHHTQQdltt91SShnx8wEAAAAAAACA9dPbdQAAAAAAAAAAAAAAAAAAAADA7zMwMJAvfelL+fKXv5ylS5d2nTPiNt5447z1rW/N29/+9my66aZd5wAAAAAAAAAAAAAAAAAAAPCs6dOnZ7/99su11147oudut912mT17djbeeOMRPRcAAAAAAAAAaE5v1wEAAAAAAAAAAAAAAAAAAAAAz+Xxxx/PBRdckIsvvjgrVqzoOmfE9ff35x3veEeOO+64TJs2rescAAAAAAAAAAAAAAAAAAAAnsPee++de+65J4899ljrZ02ePDmHHHJIXvziF6eU0vp5AAAAAAAAAEB7ersOAAAAAAAAAAAAAAAAAAAAAPi3Fi9enC984Qv55je/mVWrVnWdM+JmzJiRE044Icccc0ymTp3adQ4AAAAAAAAAAAAAAAAAAAC/R09PT+bOnZtLLrkkw8PDrZ2z00475dBDD/U5dAAAAAAAAAAYJ3q7DgAAAAAAAAAAAAAAAAAAAABIkvvvvz+f+9zn8t3vfjdDQ0Nd54y4mTNn5sQTT8xRRx2VSZMmdZ0DAAAAAAAAAAAAAAAAAADAWtpss82y995758Ybb2x8e6ONNsqhhx6aHXfcsfFtAAAAAAAAAKA7vV0HAAAAAAAAAAAAAAAAAAAAABu2O++8M+edd14uu+yyDA8Pd50z4nbYYYecdNJJOeKII9Lb64+CAAAAAAAAAAAAAAAAAAAAGIv222+/3HvvvXnyyScb29xll11y8MEHZ/LkyY1tAgAAAAAAAACjgz+ZHgAAAAAAAAAAAAAAAAAAAOjEbbfdlnPPPTcLFy7sOqUTu+yyS0455ZS84hWvSE9PT9c5AAAAAAAAAAAAAAAAAAAArIcJEyZkzpw5+da3vpVa63ptTZs2LbNnz862227bUB0AAAAAAAAAMNr0dh0AAAAAAAAAAAAAAAAAAAAAbDhqrbnxxhvz2c9+Ntdcc03XOZ3Ya6+9cvLJJ+fQQw9NKaXrHAAAAAAAAAAAAAAAAAAAABqy5ZZbZo899sitt976vDd23333HHTQQZk4cWKDZQAAAAAAAADAaNPbdQAAAAAAAAAAAAAAAAAAAAAw/tVac9VVV+Wcc87JzTff3HVOJw488MCccsop2X///VNK6ToHAAAAAAAAAAAAAAAAAACAFhx44IG57777Mjg4uE6v6+/vz5w5c7L11lu3VAYAAAAAAAAAjCa9XQcAAAAAAAAAAAAAAAAAAAAA49fw8HB+8pOf5Nxzz80vfvGLrnM6MXv27Jx88snZc889u04BAAAAAAAAAAAAAAAAAACgZb29vZkzZ06+853vrNXzSynZc889c8ABB6S3t7flOgAAAAAAAABgtPAuAQAAAAAAAAAAAAAAAAAAAKBxQ0NDufTSS3Peeeflnnvu6TpnxJVScvjhh+ekk07KLrvs0nUOAAAAAAAAAAAAAAAAAAAAI2jmzJl5yUtekttvv/33Pm/69OmZO3dutthiixEqAwAAAAAAAABGi96uAwAAAAAAAAAAAAAAAAAAAIDxY9WqVfnOd76Tz3/+83nwwQe7zhlxPT09ee1rX5sTTzwxO+ywQ9c5AAAAAAAAAAAAAAAAAAAAdOSggw7K/fffn2XLlv2Hv9fT05N99tkn++67byZMmNBBHQAAAAAAAADQtd6uAwAAAAAAAAAAAAAAAAAAAICxb+XKlbnkkkty/vnnZ8mSJV3njLiJEyfm6KOPzrve9a7MnDmz6xwAAAAAAAAAAAAAAAAAAAA6NmnSpMyePTvf//73f+vHZ8yYkTlz5mSzzTbrqAwAAAAAAAAAGA16uw4AAAAAAAAAAAAAAAAAAAAAxq5ly5blK1/5Si688MI8+eSTXeeMuClTpuTYY4/NvHnzMmPGjK5zAAAAAAAAAAAAAAAAAAAAGEW222677LzzzrnzzjszYcKE7L///tlrr73S09PTdRoAAAAAAAAA0LHergMAAAAAAAAAAAAAAAAAAACAsWdgYCBf+tKXctFFF+Xpp5/uOmfETZs2LW9961tz/PHHZ9NNN+06BwAAAAAAAAAAAAAAAAAAgFHq4IMPzurVqzNr1iyfTwcAAAAAAAAA/lVv1wEAAAAAAAAAAAAAAAAAAADA2PHYY4/lggsuyNe+9rWsWLGi65wRt+mmm+btb397jjvuuEybNq3rHAAAAAAAAAAAAAAAAAAAgHGn1ppSStcZjZkyZUpe/epXd50BAAAAAAAAAIwyvV0HAAAAAAAAAAAAAAAAAAAAAKPf4sWL84UvfCHf/OY3s2rVqq5zRtyMGTNywgkn5JhjjsnUqVO7zgEAAAAAAAAAAAAAAAAAABiXnnzyySxcuDCzZs3K1ltv3XUOAAAAAAAAAEBrersOAAAAAAAAAAAAAAAAAAAAAEav+++/P+edd17++Z//OUNDQ13njLiZM2fmxBNPzFFHHZVJkyZ1nQMAAAAAAAAAAAAAAAAAADAuDQ8P5+abb84NN9yQoaGhLFy4MMcee2x6e3u7TgMAAAAAAAAAaIV3RQAAAAAAAAAAAAAAAAAAAAD/wZ133pnzzjsvP/zhD1Nr7TpnxO2www45+eSTc8QRR2TChAld5wAAAAAAAAAAAAAAAAAAAIxbjz/+eBYsWJDHHnvsX39sYGAg1113XV72spd1WAYAAAAAAAAA0J7ergMAgJFRStksyUuTvCjJTklemGTzZx99SSYlmZxkQpJVSZ5JsiLJE0keS7IkyT1J7kpyZ5I7aq1DI3sV0IxSylZJdk0yM8lWSbZ+9q9bJtk4yZT85ufDlGcfJcnKZx/PPPvX5UkeTbI4ycPP/nVxkjtrrfeP4OUAAAAAAAAAAAAAAAAANOq2227Lueeem4ULF3ad0olddtklp5xySl7xilekp6en6xwAAAAAAAAAAAAAAAAAAIBxa2hoKDfccENuvvnmDA8P/4e/f+utt2annXbKFlts0UEdAAAAAAAAAEC7ersOAACaV0rpSbJ3klcmmZ1kvyTbNnzMilLKrUmuSfLjJD+ptT7R8BmwXkopJcnuSeYk2TPJS599bNbyuUuT/OzZx61JrkxyY611qM1zAQAAAAAAAAAAAAAAAJ6vWmtuuOGGnHPOObnmmmu6zunEXnvtlVNOOSWHHHJIfvPxNAAAAAAAAAAAAAAAAAAAANryyCOPZOHChXnyySd/53NqrVmwYEHe9KY3ZcKECSNYBwAAAAAAAADQvlJr7boBAGhAKWViksOTHJvkDUk2H+GE4SRXJ/lakq/XWu8d4fMhSVJK2THJa5K8/NnHjC57/o3BJJcn+XGSH9Rab+24h1GulNKXZGBtnz8wMJC+vr4WiwAAAAAAAAAAAAAAABiPaq1ZtGhRzjnnnNxyyy1d53Ri1qxZOfnkk7P//vunlNJ1DgAAAAAAAAAAAAAAAAAAwLi2Zs2aXHvttbnttttSa12r1+y333454IADWi4DAAAAAAAAgPFjcHAw/f396/KS/lrrYFs9PLeytm+eAABGp1LKzknek+TEJDO6rflXNcmPk3w6ySW11lUd9zDOlVK2TnJckuOTHNRxztr6eZILk1xUa72r6xhGn1JKX5KBtX3+wMBA+vr6WiwCAAAAAAAAAAAAAABgPBkeHs5PfvKTnHPOObnjjju6zunEnDlzctJJJ2XPPffsOgUAAAAAAAAAAAAAAAAAAGCD8NBDD2XhwoUZHBxcp9f19PTkmGOOyWabbdZSGQAAAAAAAACML4ODg+nv71+Xl/TXWtft/9BnvZVaa9cNAMDzUEqZleSvkxydpHSc8/s8lOTMJJ+qtT7ddQzjSynliCSnJTk8SU/HOevj6iRnJbm41jrUcQujRCmlL8nA2j5/YGAgfX19LRYBAAAAAAAAAAAAAAAwHgwNDeXSSy/Neeedl3vuuafrnBFXSsnhhx+ek046KbvsskvXOQAAAAAAAAAAAAAAAAAAABuEVatW5ac//Wluv/32570xY8aMvOENb0hPz1j+ClMAAAAAAAAAGBmDg4Pp7+9fl5f011oH2+rhuZVaa9cNAMA6KKW8NMkHk7ym65Z19ESSf0jysVrr6q5jGLtKKROTvC3J6Un26jinafckOTPJubXW5V3H0K1SSl+SgbV9/sDAQPr6+losAgAAAAAAAAAAAAAAYCxbvnx5vv3tb+eLX/xiHnrooa5zRtyECRPy2te+NieeeGK23377rnMAAAAAAAAAAAAAAAAAAAA2GPfff38uv/zyLFu2bL23Zs2alX322Wf9owAAAAAAAABgnBscHEx/f/+6vKS/1jrYVg/PrdRau24AANZCKaU/yf9J8odJJnScsz7uTPJfaq2Xdh3C2FNKOSbJGUl27LqlZY8m+e9Jzqm1DncdQzdKKX1JBtb2+QMDA+nr62uxCAAAAAAAAAAAAAAAgLHosccey1e+8pVcfPHFGRzc8P5Mh0mTJuXoo4/OO9/5zsycObPrHAAAAAAAAAAAAAAAAAAAgA3GypUrc9VVV+XOO+9sbHPChAk59thjs+mmmza2CQAAAAAAAADj0eDgYPr7+9flJf211g3vD7TvWKm1dt0AAPwnSilHJflkkm26bmnQ55P8Wa31ya5DGP1KKS9NcnaSP+i6ZYTdkOS/1FoXdR3CyCul9CUZWNvnDwwMpK+vr8UiAAAAAAAAAAAAAAAAxpK77747F1xwQb73ve9l9erVXeeMuClTpuTNb35z5s2bl80337zrHAAAAAAAAAAAAAAAAAAAgA3KPffckyuuuCIrVqxofHvLLbfM0UcfnVJK49sAAAAAAAAAMF4MDg6mv79/XV7SX2sdbKuH51ZqrV03AAC/QyllcpKzkvxRxylteSDJW2uti7oOYXQqpUxI8ndJ/jJJb7c1nfpMkvfXWpd3HcLIKaX0JRlY2+cPDAykr6+vxSIAAAAAAAAAAAAAAABGu1prrrvuupx//vlZtGjD/OjetGnT8ta3vjXHH398Nt10065zAAAAAAAAAAAAAAAAAAAANijLly/PlVdemXvuuafVcw455JDssccerZ4BAAAAAAAAAGPZ4OBg+vv71+Ul/bXWwbZ6eG69XQcAAM+tlLJjkq8l2bfrlha9MMmCUspf1lrP6DqG0aWUsl2SC5Mc2nXLKPCeJIeWUt5aa72t6xgAAAAAAAAAAAAAAABgdFmzZk0uu+yynH/++bnjjju6zunEpptumne84x15y1vekmnTpnWdAwAAAAAAAAAAAAAAAAAAsEGptebOO+/MVVddlWeeeab186699tpsv/322WSTTVo/CwAAAAAAAACgLaXW2nUDAPDvlFIOTvLNJDO6bhlB5yb5o1rr6q5D6F4p5Q1JPpdk025LRp0VSU6ttX626xDaV0rpSzKwts8fGBhIX19fi0UAAAAAAAAAAAAAAACMNsuWLcs3vvGNXHjhhXnkkUe6zunEjBkzcsIJJ+SYY47J1KlTu84BAAAAAAAAAAAAAAAAAADY4Dz99NO5/PLL8+tf/3pEz91mm23y2te+NqWUET0XAAAAAAAAAMaCwcHB9Pf3r8tL+mutg2318Nx6uw4AAH5bKeWNSb6UZErHKSPt5CTblVLeWGtd1nUM3SmlvC/Jh5P0dN0yCk1N8plSyg611r/pOgYAAAAAAAAAAAAAAADoxiOPPJKLLrooX//617Ns2Yb5kbyZM2fmxBNPzFFHHZVJkyZ1nQMAAAAAAAAAAAAAAAAAALDBqbXm9ttvz09/+tOsXr16xM9/8MEHc8cdd2S33XYb8bMBAAAAAAAAAJrQ23UAAPD/V0p5S5ILs+H+Gn14ku+VUl5ba3266xhGXinl75P8bdcdY8B/L6XMSPLHtdbhrmMAAAAAAAAAAAAAAACAkfHLX/4yF1xwQS699NIMDQ11ndOJHXfcMSeddFKOOOKITJgwoescAAAAAAAAAAAAAAAAAACADdLAwEAWLlyYxYsXd9px9dVXZ9ttt83GG2/caQcAAAAAAAAAwPPR23UAAPAbpZQ3J/lSkg39G3FmJ7m0lPKqWuvyrmMYOaWUjyT50647xpD3Jtm0lHJ8rXW46xgAAAAAAAAAAAAAAACgHbXWXH311Tn//PNzzTXXdJ3TmV133TWnnHJKXv7yl6enp6frHAAAAAAAAAAAAAAAAAAAgA1SrTW33nprrrvuuqxZs6brnKxatSpXXHFFXv3qV6eU0nUOAAAAAAAAAMA66e06AABISimvSPLFJBO6bhklDknylVLKG2ut3b9blNaVUv46yZ923TEGHZfkkSSndh0CAAAAAAAAAAAAAAAANGvVqlW59NJLc8EFF+Suu+7qOqcze+21V0455ZQccsghvhACAAAAAAAAAAAAAAAAAACgQ08++WQWLFiQJUuWdJ3yW+67777cddddefGLX9x1CgAAAAAAAADAOuntOgAANnSllD2TfCPJpI5TRpvXJflUklO6DqFdpZR3JPnfXXeMYf+llHJPrfVDXYcAAAAAAAAAAAAAAAAA629wcDBf//rXc9FFF+Wxxx7rOqczs2bNyimnnJL99tsvpZSucwAAAAAAAAAAAAAAAAAAADZYw8PDuemmm3LjjTdmaGio65zntGjRomyzzTaZOnVq1ykAAAAAAAAAAGutt+sAANiQlVKmJ/lGkr4RPLYm+WWS65Jcm+TmJE8keTLJU0lWJulPMj3Jpkm2TXJgkgOS7P/sj4+Uk0spN9daPzyCZzKCSimHJDm3w4ThJHfmNz8Pbkpyb5KHkjyYZDDJivzm58RwkqnPPqYlmZlkmyTbJ9n72cdu6e731/NLKb+qtX67o/MBAAAAAAAAAAAAAACA9fTQQw/lS1/6Ur7xjW9kxYoVXed0Zs6cOTn55JOzxx57dJ0CAAAAAAAAAAAAAAAAAACwwXvssceyYMGCPP74412n/F4rV67MokWL8gd/8AddpwAAAAAAAAAArLVSa+26AQA2SKWUniT/nOSIETryZ0nOT/LFWusDz2eglFKSvCLJCUmOTbJJc3m/05okf1BrXTgCZzGCSinTktycZKcRPvqpJJckuTTJD2utTzQxWkrpS/LK/Obn9JuSbNHE7jp4NMketdYlI3wuLXn236mBtX3+wMBA+vr6WiwCAAAAAAAAAAAAAACgDT//+c9zwQUX5LLLLsvw8HDXOZ0opeRVr3pVTjrppOy8885d5wAAAAAAAAAAAAAAAAAAAGzwhoaGcv311+fmm29OrbXrnLX26le/OjvssEPXGQAAAAAAAADQucHBwfT396/LS/prrYNt9fDcylh6YwYAjCellL9O8r9H4KgfJ/mrWutPmxwtpUxNckqS/5FkRpPbz+HBJHvVWp9o+RxGUCnl00neM4JHXp7kE0kuqbWubPOgUsrEJK9L8odJjmzzrH/nklrrm0bwPFpUSulLMrC2zx8YGEhfX1+LRQAAAAAAAAAAAAAAADRleHg4V1xxRS644ILccMMNXed0ZsKECXnta1+bE088Mdtvv33XOQAAAAAAAAAAAAAAAAAAACR55JFHsmDBgjz11FNdp6yzjTbaKG95y1syefLkrlMAAAAAAAAAoFODg4Pp7+9fl5f011oH2+rhuZVaa9cNALDBKaXsn+SqJBNbPOb2JH9Ra/1Oi2eklNKX5C+TvD/J1BaP+lqt9c0t7jOCSilHJvneCB23KMn/qLX+aITO+y2llFlJ/meSI0foyBNqrReM0Fm06Nn/vg6s7fMHBgbS19fXYhEAAAAAAAAAAAAAAADra9WqVfnud7+bCy64IPfdd1/XOZ2ZNGlS3vCGN+Sd73xntt56665zAAAAAAAAAAAAAAAAAAAASLJ69epce+21+dnPfpZaa9c5z9uuu+6auXPndp0BAAAAAAAAAJ0aHBxMf3//urykv9Y62FYPz62M5TdpAMBYVEqZnOSmJLu1eMwnk7y/1vpMi2f8llLKHkm+lmSXFo95V631Cy3uMwJKKT1Jbk2ye8tHDST5iySfqaPgN72llDcn+UiSrVo+anGSF9VaV7R8Di0rpfTlN/8er5WBgYH09fW1WAQAAAAAAAAAAAAAAMDzNTw8nG984xv57Gc/myVLlnSd05mpU6fm2GOPzbx587L55pt3nQMAAAAAAAAAAAAAAAAAAMCzHnzwwSxcuDBLly7tOmW97bbbbpk9e3ZKKV2nAAAAAAAAAEBnBgcH09/fvy4v6a+1DrbVw3Pr7ToAADZAf51kt5a2lyf5o1rr+S3t/0611ttKKQckOTfJm1s65oxSyndrrY+3tM/ImJdk95bPuC7JMbXWB1o+Z63VWi8upfwoyYVJjmzxqK2TvC/J/BbPAAAAAAAAAAAAAAAAANbS9ddfn/nz5+fOO+/sOqUz06ZNy9ve9rYcf/zx6/oHUQAAAAAAAAAAAAAAAAAAANCiVatW5eqrr84vfvGLrlPW2yabbJI5c+Zkm2226ToFAAAAAAAAAGCtlFpr1w0AsMEopeyW5OYkk1qYH0jyqlrrtS1sr5NSyj8l+UBL85+rtZ7U0jYtK6VMTHJHkh1bPOaiJCfVWle2eMbzVkrpSfJ/097PkSR5LMlOtdalLZ5By0opffnNf9vXysDAQPr6+losAgAAAAAAAAAAAAAAYF0sXrw4Z511Vn70ox91ndKZ6dOn5+1vf3ve8pa3ZNq0aV3nAAAAAAAAAAAAAAAAAAAA8G/cd999ueKKK7Js2bKuU9ZLKSUvfelLc+CBB2bixIld5wAAAAAAAADAqDA4OJj+/v51eUl/rXWwrR6eW2/XAQCwgTkryaQWdp9O8tpa67UtbK+zWutflFImJzm1hfl3lVI+UWu9poVt2nd8kh1b3P9CkpNqrcMtnrFenm37i1LK00n+Z0vHbJ7kj5J8sKV9AAAAAAAAAAAAAAAA4HdYsWJFPv/5z+cLX/hCVq1a1XVOJ7bYYouccMIJOeaYYzJlypSucwAAAAAAAAAAAAAAAAAAAPg3Vq5cmUWLFuVXv/pV1ynrbdNNN83cuXOz5ZZbdp0CAAAAAAAAALDOersOAIANRSnliCRHtDC9Isnra62LWth+3mqt/7WUMiXJexueLknOSDK74V1Gxsktbn8tycm11uEWz2hMrfXvn/058lctHXFykg+2tA0AAAAAAAAAAAAAAAD8O7XW/OAHP8jZZ5+dJUuWdJ3TiZkzZ+bEE0/MUUcdlUmTJnWdAwAAAAAAAAAAAAAAAAAAwL9Ra83dd9+dRYsWZcWKFV3nrJdSSvbee+/sv//+mTBhQtc5AAAAAAAAAADPS6m1dt0AAONeKaUnyU1J9mxh/j211s+2sLveSikTkvwkyWEtzL+p1npJC7u0pJTyoiR3JiktzN+eZFat9ekWtltTSilJvp3kdS0dcXCt9eqWtmlZKaUvycDaPn9gYCB9fX0tFgEAAAAAAAAAAAAAAPC73H777Zk/f35uvvnmrlM6seOOO+akk07KEUcc4csbAAAAAAAAAAAAAAAAAAAARqHly5fniiuuyL333tt1ynrbbLPNMnfu3Gy++eZdpwAAAAAAAADAqDU4OJj+/v51eUl/rXWwrR6eW2/XAQCwgXhzkj1b2P1SrfWzLew2otY6VEo5PslNSTZreP7vSinfqLXWhndpz4lJSgu7zyQ5ttb6dAvbraq11lLKvCS3JNm2hSNOSnJ1C7sAAAAAAAAAAAAAAABAkieeeCIf+9jH8q1vfSsb4sfddt1115xyyil5+ctfnp6enq5zAAAAAAAAAAAAAAAAAAAA+HdqrfnlL3+Zq6++Os8880zXOetlwoQJ2XfffbPPPvv4jDsAAAAAAAAAMC6UDfGLDgBgJJVSSpKbk+zZ8PSvkuxXa13a8G7jSilHJflWktLw9JtqrZc0vElLSim3Jtmjhel/qLX+jxZ2R0wp5ZgkX29h+tEkW1a/6R+TSil9SQbW9vkDAwPp6+trsQgAAAAAAAAAAAAAAID/z+rVq3PRRRflM5/5TJYvX951zojbe++9c8opp+Tggw/Obz5GCQAAAAAAAAAAAAAAAAAAwGizdOnSXH755XnggQe6TllvW2yxRebOnZvp06d3nQIAAAAAAAAAY8Lg4GD6+/vX5SX9tdbBtnp4bqXW2nUDAIxrpZRjkny9hem5tdaFLey2opRyXpITG569sda6X8ObtKCUMiPJI0ma/rapXyfZtda6ouHdEVdK+X6SI1qY3rPWelsLu7SslNKXZGBtnz8wMJC+vr4WiwAAAAAAAAAAAAAAAKi15sorr8yZZ56Z+++/v+ucETdr1qy8+93vzr777ptSmv64GAAAAAAAAAAAAAAAAAAAAE2otebnP/95rrnmmqxevbrrnPXS29ubAw44IHvuuafPuQMAAAAAAADAOhgcHEx/f/+6vKS/1jrYVg/PrbfrAADYAJzWwuZXa60LW9ht018neXOSaQ1u7ltKeXmt9ScNbtKOVyRp4524Z9ZaV7Sw24V/SHJEC7uvSHJbC7sAAAAAAAAAAAAAAACwQbn33ntz5plnZtGiRV2njLg5c+bk5JNPzh577NF1CgAAAAAAAAAAAAAAAAAAAL/HwMBAFixYkIcffrjrlPW29dZbZ86cOenv7+86BQAAAAAAAACgFb1dBwDAeFZK2S/JYQ3PrkzyFw1vtq7WuriU8r+T/GPD0+9P8pOGN2neK1rYfCrJZ1vY7USt9cpSypVJDm14+hVJPtLwJgAAAAAAAAAAAAAAAGwwli5dms985jP58pe/nKGhoa5zRsyECRNyxBFH5IQTTsjOO+/cdQ4AAAAAAAAAAAAAAAAAAAC/x/DwcG699dZcd911Y/6z8RMnTsxBBx2Ul7zkJSmldJ0DAAAAAAAAANCa3q4DAGCcO7WFzTNrrfe2sDsSPpTkvUl2bHDz9aWUHWut9zS4SfP2aWHza7XWp1vY7dLnkhza8OYBDe8BAAAAAAAAAAAAAADABmF4eDjf/OY38/GPfzxPPvlk1zkjZuONN86xxx6bt73tbdliiy26zgEAAAAAAAAAAAAAAAAAAOA/8cQTT2TBggV59NFHu05Zb9tuu21mz56dadOmdZ0CAAAAAAAAANC63q4DAGC8KqX0JTmu4dkVSc5seHPE1FqfKaXMT/KxBmd7kpyU5H80uEnzdmlh86stbHbt60k+kWZ/n/7CUsqUWuvKBjcBAAAAAAAAAAAAAABgXLvhhhsyf/78/PKXv+w6ZcRsueWWefvb3543vvGN2XjjjbvOAQAAAAAAAAAAAAAAAAAA4D8xNDSUm266KTfeeGOGh4e7zlkvkydPziGHHJIXv/jFKaV0nQMAAAAAAAAAMCJ6uw4AgHHs+CRTG978fK318YY3R9rnkvxDkhc0uPmuUsrf1VrH9rtZx6lSygvS7P1OkuVJ/qXhzc7VWp8opVyR5OUNzpYkL0ryswY3AQAAAAAAAAAAAAAAYFx6+OGHc/bZZ+eHP/xh1ykjZtddd80JJ5yQww8/PL29/ggCAAAAAAAAAAAAAAAAAACAseDRRx/NggUL8sQTT3Sdst523HHHHHroodloo426TgEAAAAAAAAAGFG+IQAA2nNSw3s1yYca3hxxtdblpZRPJvnrBme3S/LKJJc1uElzdm5h89pa6+oWdkeDRUle3vDmzkl+1vAmAAAAAAAAAAAAAAAAjBsrV67MF77whXzuc5/LqlWrus4ZEYceemhOOOGE7L///imldJ0DAAAAAAAAAAAAAAAAAADAWlizZk2uv/763HLLLam1dp2zXqZOnZpDDz00O+20U9cpAAAAAAAAAACd6O06AADGo1LKjkkOanj227XWXza82ZWPJjk9yaQGN49PclmDezRnZgubV7ewOVosamFz2xY2AQAAAAAAAAAAAAAAYMyrteaHP/xhzj777DzyyCNd57Ru4sSJec1rXpN58+b5kgYAAAAAAAAAAAAAAAAAAIAxZvHixVm4cGEGBga6TllvO++8cw4++OBMmTKl6xQAAAAAAAAAgM70dh0AAOPUW1rY/GwLm52otS4upXw3yTENzr6xlPJHtdbVDW7SjGktbP6ihc3R4vYWNjdpYRMAAAAAAAAAAAAAAADGtF/84heZP39+brrppq5TWtfX15c3v/nNOe6447L55pt3nQMAAAAAAAAAAAAAAAAAAMA6WL16da655pr87Gc/6zplvW288caZPXt2tttuu65TAAAAAAAAAAA619t1AACMU8c1vPdkkksb3uzal5Ic0+DeC5IcnuR7DW7SjGktbN7TwuZocX+SoSQTGtxs4x4AAAAAAAAAAAAAAADAmPTEE0/k4x//eL75zW+m1tp1TqtmzpyZefPm5fWvf32mTp3adQ4AAAAAAAAAAAAAAAAAAADr6IEHHsjll1+epUuXdp2y3l7ykpfkoIMOyqRJk7pOAQAAAAAAAAAYFXq7DgCA8aaUsm2S/Rue/VqtdVXDm137TpKnk0xrcPOYJN9rcI9mbNzC5v0tbI4KtdY1pZSHkmzb4Gwb9wAAAAAAAAAAAAAAAADGlNWrV+crX/lKPv3pT2fZsmVd57TqpS99ad75znfmFa94RXp6errOAQAAAAAAAAAAAAAAAAAAYB0988wzufrqq3PHHXd0nbLe+vr6MmfOnMycObPrFAAAAAAAAACAUaW36wAAGIde28Lml1rY7FStdUUp5RtJ5jU4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L3/5y9PX19c6BwAAAAAAAAAA4AXrtA4AAAAAAAAAAAAAAAAAAIDn4+mnn85Xv/rVfOMb38iqVata5/TcIYcckhNOOCHbb7996xQAAAAAAAAAAAAAAAAAAABGueXLl2fRokV5+OGHW6cM21ZbbZUFCxZk+vTprVMAAAAAAAAAAABetE7rAAAAAAAAAAAAAAAAAAAA+HOeeeaZfOc738n555+fgYGB1jk9t/322+fEE0/MvHnzWqcAAAAAAAAAAAAAAAAAAAAwytVac+utt+a6667LunXrWucMy/jx43PAAQdkt912SymldQ4AAAAAAAAAAMCwdFoHAAAAAAAAAAAAAAAAAADAc1m7dm1+8IMf5LzzzsuyZcta5/TcjBkzctRRR+Wtb31rOh23AQMAAAAAAAAAAAAAAAAAADA8TzzxRBYuXJhHH320dcqwbbPNNpk/f3423njj1ikAAAAAAAAAAABd4ekkAAAAAAAAAAAAAAAAAACMKENDQ7n44ovzuc99Lg8++GDrnJ6bMmVK3vve9+bd7353pkyZ0joHAAAAAAAAAAAAAAAAAACAUW5oaCg33XRTbrzxxgwODrbOGZaJEyfmoIMOys4775xSSuscAAAAAAAAAACArum0DgAAAAAAAAAAAAAAAAAAgCSptWbRokU555xzcs8997TO6bkJEybkHe94R97//vdn+vTprXMAAAAAAAAAAAAAAAAAAAAYA5YtW5aFCxfmsccea50ybNttt10OPfTQTJkypXUKAAAAAAAAAABA13VaBwAAAAAAAAAAAAAAAAAAwHXXXZezzz47t956a+uUnhs3blze9KY35UMf+lC22GKL1jkAAAAAAAAAAAAAAAAAAACMAYODg7n++utz8803p9baOmdYJk+enHnz5mXOnDkppbTOAQAAAAAAAAAA6IlO6wAAAAAAAAAAAAAAAAAAADZct99+e84666xcc801rVN6rpSS1772tTn66KMze/bs1jkAAAAAAAAAAAAAAAAAAACMEY888kgWLlyYJ598snXKsO24446ZN29eJk2a1DoFAAAAAAAAAACgpzqtAwAAAAAAAAAAAAAAAAAA2PAsWbIk5557bn75y1+2Tlkv+vv7c+yxx2annXZqnQIAAAAAAAAAAAAAAAAAAMAYsXbt2lx77bX59a9/nVpr65xhmTp1ag499NC89KUvbZ0C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hy7PUillpyTbdphclOTKDnsAAAAAAAAAQMfmz5+fww47LHPnzm09Zdhxxx2XXXbZpfUMAAAAAAAAAAAAAAAAAGCcuf/++zN79uw8/vjjraeM2I477ph99903a665ZuspAAAAAAAAAAAAAAAAAAAw6Q22HgAAE0EppSR5ccfZyzvujWW3JXkiyfodNndJck6HPVbfqzruXV5rXdZxEwAAAAAAAADoyPLly/PhD384d955Z+spw/70T/80r3nNa1rPAAAAAAAAAAAAAAAAAADGkaVLl+aSSy7JDTfckFpr6zkjss466+TAAw/MNtts03oKAAAAAAAAAAAAAAAAAACwwmDrAQAwQWyXZN2Om1d23Buzaq21lHJVkoM6zO7SYYuROaDj3sUd9wAAAAAAAACADp122mm56KKLWs8Y9upXvzp/9md/1noGAAAAAAAAAAAAAAAAADCO/OIXv8js2bMzb9681lNG7EUvelH22WefTJs2rfUUAAAAAAAAAAAAAAAAAADgKQZbDwCACeIlPTRv6aE5lt2S5KAOe7t02GJk9u+4d1HHPQAAAAAAAACgI1//+tfz7//+761nDNt5551z/PHHZ2BgoPUUAAAAAAAAAAAAAAAAAGAcWLx4cS666KLcdNNNraeM2HrrrZcZM2Zkq622aj0FAAAAAAAAAAAAAAAAAAB4GoOtBwDABPHCHpq39NAcy7q+3xd03GM1lFK2TLJtx9mLO+4BAAAAAAAAAB245JJL8tnPfrb1jGGbbLJJTj311Ky55pqtpwAAAAAAAAAAAAAAAAAA48Bdd92V8847LwsWLGg9ZURKKXnJS16SvfbaK1OnTm09BwAAAAAAAAAAAAAAAAAAeAaDrQcAwASxY8e9J2qtD3XcHOtu7bi3billi1rrfR13eXb27rj3RK11TsdNAAAAAAAAAGCE7rrrrhxzzDEZGhpqPSVJssYaa+S0007LJpts0noKAAAAAAAAAAAAAAAAADDGLVq0KBdccEFuu+221lNGbIMNNshBBx2UzTbbrPUUAAAAAAAAAAAAAAAAAABgJQZbDwCACWLHjnvj/1lInr1be2jukOS+Hrqsut077t3Sce+/KaVslGS3/PL7esckWyXZNMnGSdZKskaSgSQLf+1akOTeJHclufNXV631/r43AwAAAAAAAEBLc+fOzWGHHZZ58+a1njLsk5/8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ePzxx1On1AsVFRUxceLEmDt3buqU9+Woo46Ks84669Dzg759+8Zxxx0XuVyuVncOHDgQK1eujGXLlh06li5dGn/6059qdedIUF1dHVdffXW8/PLLqVP+pqZNm8bAgQNj8ODBccYZZ8TgwYPjtNNOi4KCglo5/9atWw89/5wxY0YsXrw4qqqqauXcteHNN9+M8ePHx/Tp06NJkyapcwAAAAAAAACA96EodQAAAAAAAIcvn8/H4sWLM90cMGBApnsAANDY5XK5GD58eGzevLleXVzn78nlctG/f/8YNGhQFBV5+QkAAAAAAAAAAAAAAAAAAAAAAAAA78/8+fOjuro6082OHTtG//79M92E+u6pp56KO++8s043evToER/5yEfi6quvjpKSkjrZ6NChQ4wfPz7Gjx8fERHLly+PBx54IB588MHYsGFDnWx+UF/5yldizJgx0bRp09QpjUrr1q1j8ODBcfbZZ8fZZ58dQ4YMiQ4dOmTekcvl4oQTTogTTjghxo4dGxH/530kli9fHtOmTYupU6fGc889FxUVFZm3/S1VVVVx3XXXRVlZWbRs2TJ1TqO1a9eumDBhQuzbt6/ONpo3bx5jx46Nq666KsaOHRstWrSo9Y0mTZoc+vfstttuix07dsQjjzwSDz74YEyfPr3W9w7HE088ES+//HJ86EMfSp2SVD6fj0984hMxderU1Cl/1+DBg+PKK6+MD33oQzFgwIAoLCys883mzZvHwIEDY+DAgX/2+Q0bNsSMGTMOHStXrqzzlobui1/8YjzxxBOpM/5C+/btY8yYMTFu3Li46KKLonXr1nW21alTp7j88svj8ssvj4iILVu2xMMPPxwPPvhgzJ8/v852P4hXXnklvvzlL8dPfvKT1CkAAAAAAAAAwPtQkDoAAAAAAIDD9/bbb8eWLVsy3RwwYECmewAAcCRo2bJlDBkyJHXG+9K+ffsYP358nHXWWVFUVJQ6BwAAAAAAAAAAAAAAAAAAAAAAAIAGZO7cuZlvDh06NPNNqM+2bNkSn/jEJyKfz9f6uZs0aRLXX399zJw5M95888343ve+FyUlJbW+87f07ds3/v3f/z3WrVsX9957b5x00kmZbf8ta9asibvuuit1RoPXsmXLGDt2bPz0pz+NxYsXx44dO+LFF1+M22+/PcaOHRsdOnRInXhILpeLfv36xec+97mYMmVKbN68OX7+85/HyJEjI5fLpc6LiIjVq1fHN77xjdQZjdrNN98ca9asqZNzn3HGGXH//ffHli1bYtKkSTFx4sRo0aJFnWz9d+3atYtPfepTMW3atCgtLY1x48ZlsvuPfOELX4iqqqrUGUn967/+azzwwAOpM/6qfv36xe233x5r1qyJ+fPnx5e+9KUoKSmJwsLCpF3du3ePa665Jn7xi1/EihUrYsuWLXH//ffH5ZdfHq1atUraVh/ddddd9eo5TVFRUUyYMCGef/752LJlS/z2t7+NK664Ilq3bp1pxzHHHBOf//znY968efH666/HF7/4xWjZsmWmDX/NXXfdFZMmTUqdAQAAAAAAAAC8DwWpAwAAAAAAOHxLlizJfHPAgAGZbwIAwJHg1FNPjW7duqXO+JsKCgpi0KBBcdlll0WnTp1S5wAAAAAAAAAAAAAAAAAAAAAAAADQAM2bNy/zzWHDhmW+CfXZJz7xidiyZUutnrNly5Zx8803x9q1a+O+++6L4cOHRy6Xq9WND6KoqCg+/vGPx6pVq+IXv/hFtGvXLllLRMTtt98eu3btStrQEJ188snx+c9/PqZOnRrvvfdeTJkyJT7zmc9E//79o6Cg4bwlb4cOHeLTn/50TJs2LZYvXx4f//jHo2nTpqmz4u67746lS5emzmiUJk2aFPfff3+tn/fcc8+NZ599Nl599dW49tpro3Xr1rW+8UEUFxfHE088EQsWLIizzz47acuSJUvigQceSNqQ0mOPPRa333576ow/k8vlYvz48TF//vxYunRpfP3rX4+ePXumzvq7OnXqFNdee208+uij8e6778aUKVPiU5/6lGtyR8TLL78ct956a+qMiIjo0qVL/M//+T/jzTffjEmTJsX5558fhYWFqbMi4v88d/nhD38Yb7zxRtx2221x1FFHJe355Cc/GRs2bEjaAAAAAAAAAAD8Yw3nFZEAAAAAAPyFxYsXZ7rXrl276NGjR6abAABwpMjlcnHOOedEkyZNUqf8hU6dOsXll18egwYNqjcX2gAAAAAAAAAAAAAAAAAAAAAAAACg4SktLc18c9iwYZlvQn31y1/+Mp566qlaO19BQUHcdNNN8eabb8Zdd90V3bt3r7Vz14aioqK48cYbY9myZTF69OhkHTt37oz/+q//SrbfkPTs2TO++c1vxsqVK+P111+Pn/zk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joqKioJe01atWlWwswEAAAAAAACAN1ea9QAAAAAAAP62urq6pL2ampooKSlJ2gQAoH3bunVrPPHEE7F+/fqsp7zB6tWrY+nSpTF06NCspwAAAAAAAAAAAAAAAAAAAAAAAABAUevSpUvy5q5du5I3oRj069cv6wlFp6KiouCNvXv3FrzRltXX18fTTz8ds2fPjueffz7mzp0bK1euzHpWm7Fz586sJxQd19p3xnX2z1588cUknaOOOspr07RTCxcuTNI57LDDknTaqwMOOKCg9/Vft25dwc4GAAAAAAAAAN5cadYDAAAAAAB4czt27Ijly5cnbVZXVyftAQDQfrW0tMS8efPi+eefj+bm5qznvKknn3wy+vfvH5WVlVlPAQAAAAAAAAAAAAAAAAAAAAAAAICi1bVr1+TNnTt3Jm9CMejXr1/WE4pOeXl5wRt79+4teKMtaWpqiqeeeioeeeSR+P3vfx9z586NxsbGrGe1Wbt37458Ph8lJSVZTykKpaWl0adPn6xnFBXX2T9f11atWpWkNXLkyCQdWpd169bF5s2bC97p2bNnVFVVFbzTnnXq1Kmg569fv76g5wMAAAAAAAAAf6006wEAAAAAALy5+fPnRz6fT9ocNWpU0h4AAO3Tpk2bYsaMGbFhw4asp7ylvXv3xuzZs+OMM87IegoAAAAAAAAAAAAAAAAAAAAAAAAAFK0uXbokb+7YsSN5E4pBr169sp5QdMrLywveaGpqKnij2O3atSsefvjhuPfee+Phhx+O7du3Zz2p3WhpaYn6+vqorKzMekpR6N69e+RyuaxnFBXX2YiVK1dGc3NzktaIESOSdGhdli1blqQzcODAJJ32rFOnTgU9f/PmzdHU1BSlpaUF7QAAAAAAAAAA/8N/pQcAAAAAaKXq6uqS9srLy+PII49M2gQAoH1pbm6OF154IWpra6OlpSXrOW/LihUrYvny5TFkyJCspwAAAAAAAAAAAAAAAAAAAAAAAABAUeratWvy5saNG5M3oRh07Ngx6wlFp6SkpOCNfD5f8EYxam5ujt///vfxy1/+Mh544IHYs2dP1pParb1790ZlZWXWM4qC6+w75zobsXz58mStkSNHJmvReqR6jA0cODBJpz3r1KlTQc/P5/OxadOm6NOnT0E7AAAAAAAAAMD/KM16AAAAAAAAb66uri5p76ijjoqysrKk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crkolUpx1113xZVXXpk6BwAAAAAAAAAAAAAAAAAAAAAAAACAUWbRokXxta99LU6cOBH33Xdf3HHHHdHQ0JA6q2ZMmDAhPvzhD8ePfvSjOHbsWPzt3/6tn8MO48Btt90WPT098bd/+7cxderU1Dkj7rLLLosvfelLsX///vjUpz4VdXV1qZMA3tK1114bDz74YDz11FPxiU98IpqamlInjSp1dXXxvve9L77//e/HiRMn4lvf+lasXLkydVbNaW5uji9+8Ytx6NCh+O53vxtr165NnVQz6uvr45Zbbol77703Dhw4EFu3bo3PfvazMWfOnNRpAAAAAAAAAMAlKKQOAAAAAAAYC55//vk4depUppvFYjHTPQCAt+PChQuxefPmeOaZZ1KnDNlll10WHR0dMWvWrNQpAAAAAAAAAAAAAAAAAAAAAAAAAACMco2NjXHXXXfFXXfdFadOnYof/OAHcf/998fGjRujv78/dd6oMnHixHj/+98fd999d9x+++0xefLk1ElAAo2NjfGZz3wm/vAP/zC++tWvxte//vV45ZVXUmcNq5kzZ8Zf/MVfxKc//elobm5OnQPwjpRKpfjWt74V99xzT3z729+Ob3/727F3797UWUnk8/m44YYb4s4774zf/d3fjdmzZ6dOGjMaGhri4x//eHz84x+PPXv2xD//8z/Hv/7rv8YLL7yQOm1UmT17drz//e+PD37wg/He9743pkyZkjoJAAAAAAAAABiiQuoAAAAAAICxoFKpZL5ZLBYz3wQA+HWq1WocPHgwNm/eHOfPn0+dMyS5XC5WrFgRq1evjrq6utQ5AAAAAAAAAAAAAAAAAAAAAAAAAADUmMsvvzw+9alPxac+9ano7e2NRx99NB5++OF49NFH4/Tp06nzkpg/f3584AMfiFtvvTXe/e53R1NTU+okYJRobm6Or3zlK/GFL3whvvvd78Y3v/nNJNeAGC75fD7e+973xh/90R/FHXfcEfX19amTAIZFa2trfP7zn4/Pf/7zsXXr1vjud78b//Zv/xYnT55MnTaiJk6cGO95z3vijjvuiNtvvz1mzJiROmnMW758efyf//N/4t57743HHnssfvCDH8QDDzwQL730Uuq0zE2dOjXWrl0b69evj/e85z2xcuXK1EkAAAAAAAAAwDDLVavV1A0AAAD8ilwu1xwRvW/3/r29vdHc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V69eUVFRUal3L7744pg2bVrUr1+/Uu8CwP/Iy2QyqRsAAAD4X/Ly8hpHRPGm/vji4uJo3LhxFosAILeef/75uO2223K6+fLLL8d2222X002AqmTBggXxyiuvbPKPb926dfTp0ye22mqrLFYBAAAAAAAAAAAAAAAAAAAAAABV2UcffbTZL9qUn58fnTt3zlIRAAAAAFVZeXl5TJo0Kd5///344IMPYuzYsTF79uyoDq+tWqdOnejRo0fsu+++se+++0bv3r2jS5cuqbPge61atSree++9mDBhQkycODEmTpwYH3/8ceqszdagQYPYfffdY88994y99tor9t13Xz8H4Tv861//imOPPbbS73bv3j0mT54cderUqfTbAEB6X3755dceP0yYMCEWLVqUOmuzNWrUKPbYY4/Ya6+9Ys8994zevXtH27ZtU2cBANVYJpOJKVOmxJtvvhkffPBBTJo0KafPb9SrVy+6d+8evXr1igMOOCAOPfTQaN26dU62gW+2atWq+OCDD2LatGkxffr0jf9aUlKStKt+/frRpUuX2HXXXWPXXXeN7t27xz777BMtW7ZM2gXwXSoqKmLmzJkxduzYGDduXIwdOzamTJkSpaWlqdO+VV5eXrRt2zZ69+4dhx9+eBx++OGx8847p87i/7rgggvioYceqvS7N954YwwYMKDS78IP4fs62RwlJSXRpEmTzXmXJplMJu2Dm1oorzp8IS0AAEBtk5eX1zgiijf1xxcXF0fjxo2zWAQAuXXTTTfF8OHDc7a3ww47xNChQ3O2B1BVvfXWWzF79uzv/DH16tWL/fffPzp27Bh5eXk5KgMAAAAAAAAAAAAAAAAAAAAAAKoiL2YDAAAAwPeZPXt2vP766zFixIh466234quvvkqdVGl23HHHOOKIIza+4HzLli1TJ0EUFxfHmDFjYuTIkTFy5MiYOHFilJWVpc7KihYtWkSfPn2ib9++ccghh0SPHj1SJ0GVsH79+ujatWt88sknlX77X//6Vxx99NGVfhcASOOLL77Y+Nhh5MiRMXXq1MhkMqmzsmLnnXeOvn37Rt++fePQQw+Njh07pk4CAKq4FStWxNChQ2Po0KHx1ltvxfLly1MnfU2HDh3isMMOixNPPDEOO+ywKCwsTJ0ENdqqVavinXfeibfeeivefvvtmDBhQrV6/qVr165x8MEHx0EHHRQHH3yw5zWBpNatWxfvvvtuvPHGG/Huu+/GhAkTYuXKlamztljnzp03fv3IIYccEk2aNEmdVGstXrw4OnbsGOvWravUu/Xq1YsZM2ZE+/btK/Uu/BC+r5PNUVJSsrn/XGqSyWRKstXDN8urqU/SAQAAVGd5eXmNI6J4U398cXFxNG7cOItFAJBbxx9/fCxevDhne0ceeWT84Q9/yNkeQFW1bt26GDJkSKxdu/Yb//P27dvHAQccEA0aNMhxGQAAAAAAAAAAAAAAAAAAAAAAUBV5MRsAAAAq28EHHxwjR45MnZFzeXl5UVBQEHXq1ImCgoIoLCyMhg0bxlZbbRUNGzaMrbfeOpo1axbNmzeP5s2bx7bbbhs77LBDtGrVKlq1ahU77bRTNGvWLPWHARuNHz8+nn322Xjuuedizpw5qXNyZu+9945+/fpFv379vCA5OTV79uwYOnRovPTSS/HOO+9EWVlZ6qQkdtxxxzjyyCPjqKOOiiOOOMLrelFr3XrrrXHDDTdU+t0DDjggxowZU+l3qXx//OMf47e//W2S7aZNm8bSpUujfv36Sfb5buecc048+uijOdlq06ZNzJs3LydbfL958+ZFu3btcrY3aNCgOOecc3K2x+YpKiqKoUOHxtChQ2PcuHGRyWRSJyXRsWPHOOqoo+LII4+MQw45xOtyAQAREbF69ep4+umn45lnnok333wzSktLUydtkqZNm8axxx4bp59+evz4xz+O/Pz81ElQIyxYsCCeeuqpePHFF2PcuHE16vmXLl26xNFHHx2nn3567LnnnqlzqGJKS0tj2rRpMX78+Bg/fnxMmDAhpk6dGhs2bMjJvs8t1jxlZWUxduzYePPNN+PNN9+M9957L9atW5c6K6vq1q0bxxxzTJx11llx9NFHR2FhYeqkWufKK6+Mu+66q9LvnnDCCfHCCy9U+l3YXL6vk81RUlISTZo02Zx3aZLJZEqy1cM3y6utT9oBAABUZXl5eY0jonhTf3xxcbFvZgKgxli+fHn8+Mc/zunmtddeGyeffHJONwGqqrlz58brr7/+tb/XsGHDOOCAA3L6jYIAAAAAAAAAAAAAAAAAAAAAAEDV58VsAAAAqGwHH3xwjBw5MnVGtdSsWbPo2LFjdOjQIbp06RLdu3ePHj16RMeOHSM/Pz91HrXA1KlT49FHH41nn3025s+fnzonuV69esUpp5wS/fv3j1atWqXOoQaaOnVqPPHEE/HCCy/ERx99lDqnyqlbt24cfvjh0a9fvzj++OOjefPmqZMgJxYvXhydO3eO1atXV/rtUaNGRZ8+fSr9LpWvc+fOMWvWrGT7TzzxRJx++unJ9vl255xzTjz66KM52WrTpk3MmzcvJ1t8v3nz5uX0tYcGDRoU55xzTs72+H7vv/9+PPHEE/HPf/4zFixYkDqnytlqq63iqKOOin79+sXRRx8dW2+9deokACDHJk2aFA888EA88cQTsXLlytQ5W6RNmzZx/vnnx/nnn+/5CfgBPvvssxgyZEg8+eST8e6770Ymk0mdlHUdO3aM0047LU4//fTo1q1b6hxyrKysLGbMmBHjx4/f+DZlypRYv359siafW6wZlixZEv/6179i6NChMXLkyGr/e6wtsc0228Rpp50W/fv3j3322Sd1Tq3xxRdfRPv27bPy/73XX389DjvssEq/C5vD93WyOUpKSqJJkyab8y5NMplMSbZ6+GZ5teEBKAAAQHWTl5fXOCKKN/XHFxcXR+PGjbNYBAC58+abb8Y111yT080nnngiOnXqlNNNgKpsxIgR8cknn0RERKdOnaJ3795Rr169xFUAAAAAAAAAAAAAAAAAAAAAAEBV48VsAAAAqGwHH3xwjBw5MnVGjdKgQYPYY489Yt99941999039t9//9hpp51SZ1FDlJSUxFNPPRV///vfY9y4calzqqQ6derEUUcdFeeff34cc8wxUVBQkDqJamzx4sXxxBNPxD/+8Y+YMmVK6pxqo6CgIA4//PDo379/nHDCCdGgQYPUSZA1Z555ZjzxxBOVfveoo46K4cOHV/pdKt+YMWOiT58+SRuOOOKIeO2115I28M3OOeecePTRR3Oy1aZNm5g3b15Otvh+8+bNi3bt2uVsb9CgQXHOOefkbI9vNmfOnPjHP/4Rjz/+eMyZMyd1TrVRv379OProo+Pss8+Oo446yuN4AKjhRowYEbfddlu8/fbbqVMqXWFhYfzsZz+La6+91tftwiZ49dVX429/+1uMGDEiysvLU+cks9tuu8XFF18c/fv3j/r166fOoZJVVFTEzJkzY/z48RvfioqKYu3atanTvsbnFquvSZMmxdChQ+Oll16KiRMnRiaTSZ1U5XTr1i2uvvrqOPPMM6OwsDB1To138803x4AB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11+fldvnnHNO7LLLLlm5TeV7+OGHUydsNHfu3Bg5cmTqDIAaa+7cufEf//Ef0aFDhxg4cGCsX78+dVKt8emnn8YNN9wQrVu3jiuuuCIWLlyYOgkA+B7Dhw+PXXfdNe6///6oqKhInZNccXFxXHLJJXHQQQfFrFmzUudAzkyaNCn69OkTp59+eixatCh1TrWzZs2auPnmm6Nr164xZMiQ1Dm1yvz58+O5556L6667Lo444oho3rx5dOjQIU499dT4y1/+Em+99VYUFxenzqSGWrRoUfzhD3+ITp06xZ577hl/+ctfYsGCBamzaqQlS5bEaaedFkcccYTfo1WyBg0axA033JCV2w888EBMnTo1K7cBqH3yUwcAAAAAAPyPoqKinO7l5+dH9+7dc7oJ1Axr166NESNGxIgRI2Lt2rUREbFixYqYNGlS4jIAAAAAAAAAAAAAAAAAAAAAAAAAAACALffFF1/En/70p+jYsWOceeaZXlC5llm6dGn87Gc/iz333DNefvnl1Dk13oYNG+Lee++NDh06xK233hrr169PnUQOrVq1Km666aZo37593HHHHbF69erUSbXWhg0b4qGHHoquXbvGaaedFh9++GHqJNgkt956a3z++eeVfregoCCuv/76Sr9LdsyZMydGjx6dOuNrBg0alDoBoMb54osv4pJLLonOnTvHgw8+GKWlpamTaq1Vq1bFX//61+jQoUNceOGFsWjRotRJAMD/smbNmjjvvPPi6KOPjoULF6bOqXJGjx4dPXv2jHvvvTd1CmRVSUlJXHjhhbHXXnvFmDFjUudUe/Pnz49TTjklDj744Jg9e3bqnBpn0aJF8eKLL8YNN9wQRx55ZGy33XbRtm3b6NevX9x+++3x+uuvx4oVK1JnUsOtX78+nnnmmTjyyCOjTZs2ceONN/r5nkOvv/569OjRI2688cZYu3Zt6pwa4/zzz4+ddtqp0u+Wl5fH1VdfXel3Aaid8lMHAAAAAAD8j6Kiopzu7bLLLtGwYcOcbgLVWyaTidmzZ8czzzwTn3zyyb/955MnT47ly5cnKAMAAAAAAAAAAAAAAAAAAAAAAAAAAACofOXl5fHEE09Ez54948QTT4wPP/wwdRJZVFZWFnfeeWd07tw5Hn/88chkMqmTapXVq1fHDTfcED169IhXXnkldQ5ZVlFREX//+99jl112id///vexZs2a1En8X5lMJp5++uno3r17nH322fHxxx+nToJvtXDhwrj33nuzcvuss86Ktm3bZuU2lW/QoEGpE/7Ns88+GytXrkydAVAjrF+/Pv785z9Hx44dY+DAgVFWVpY6if+rtLQ0HnjggejYsWP8+te/jk8//TR1EgAQETNmzIi99967Sj5erkrWrVsXl156afTr1y+Ki4tT50ClGzduXOyxxx7xwAMPREVFReqcGmXkyJGxxx57xODBg1OnVFtLly6NoUOHxs033xxHH310bL/99rHzzjvHiSeeGLfeemu8+uqr8cUXX6TOpBaZPHlyXHrppdGqVas49dRT49VXX/VrZyIbNmyIP/zhD9GzZ88oKipKnVMj1K1bN6655pqs3H711VfjjTfeyMptAGqX/NQBAAAAAAAR/+ebn3P9RGXPnj1zugdUb6tWrYpXXnkl3nrrrVi/fv03/piKiooYNWqUL34BAAAAAAAAAAAAAAAAAAAAAAAAAAAAapRMJhMvvvhi9OjRIy688ML44osvUidRycaMGRM9e/aMq666KlauXJk6p1abPXt2HHXUUXHSSSfFkiVLUueQBe+8807svvvu8fOf/zw+/fTT1Dl8i/Ly8hg8eHB07do1Lrvssvjyyy9TJ8G/ueGGG2LdunWVfrdOnTrx29/+ttLvkh0VFRUxePDg1Bn/Zs2aNfH000+nzgCo9l566aXo0qVLXHvttVFcXJw6h2+xfv36uOeee6Jjx44xYMCAWLNmTeokAKi1nnzyydh7771jxowZqVOqjeeeey722GOPmDJlSuoUqBSZTCbuuOOOOOCAA+Ljjz9OnVNjrVq1Ks4+++w466yzPL+8CV599dUYMGBAHHfccdGqVato1apVHHfccTFgwIAYPnx4LFu2LHUitVRFRUXsscce0atXr7j33ns9J1qFzJ49O/bbb7/4+9//njqlRvj5z38e22+/fVZuX3vttZHJZLJyG4DaIz91AAAAAABARMT8+fOjpKQkp5s9e/bM6R5QPWUymZg5c2YMGTIkFi5c+L0//vPPP/eFsQAAAAAAAAAAAAAAAAAAAAAAAAAAAECNVFZWFg888EB07tw5HnroIS+wXAOsW7currzyyjjooINixowZqXP4f7zwwgvRvXv3eOKJJ1KnUEmKi4vjl7/8ZfTp0yemTp2aOodNVFpaGnfffXd07Ngx/va3v0VpaWnqJIiIiClTpsQ//vGPrNw+/fTTo2PHjlm5TeV77bXXYtGiRakzvtGgQYNSJwBUW0uXLo2TTz45jj/++Jg3b17qHDbR6tWr4+abb45OnTrFY4895nNnAJBjt9xyS5xxxhmxZs2a1CnVzty5c+PAAw+MV155JXUKbJHPPvssjjrqqLj66qt9Pj9H/vGPf8Qee+wREyZMSJ1SpZ166qlx8803x9ChQ2Pp0qWpc2CjioqKmDRpUuoMvsW6devi5z//eZx99tl+j7uF6tevH1dddVVWbk+YMCGeeuqprNwGoPbITx0AAAAAABDxf75pMdd69uyZ802geikpKYlhw4bF6NGjN+sLAydMmBBfffVV9sIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEvryyy/jggsuiEMPPTQWLFiQOocfaNy4cbHHHnvEXXfdFRUVFalz+AYrVqyIM888M/r16xeff/556hy2wAsvvBDdunWL//qv/4pMJpM6hx9gxYoVcfnll8duu+0Wb7/9duociGuuuSYr//zOz8+PG264odLvkj2DBg1KnfCt3n333Zg1a1bqDIBqJZPJxH//939H165d49lnn02dww+0ePHi6N+/f/Tu3TsmT56cOgcAarwNGzbE2WefHb/73e9Sp1RrK1eujGOOOSb+67/+K3UK/CDTp0+PvffeO1599dXUKbXOnDlzok+fPvHcc8+lTgGokQYPHhz77LNPfPjhh6lTqrULL7wwtt1226zcvuGGG2LDhg1ZuQ1A7ZCfOgAAAAAAICKiqKgop3stWrSI7bffPqebQPWRyWRi6tSp8eyzz8aSJUs2+/3Ly8tj5MiR/nAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAoEZ7++23o2fPnvHUU0+lTmEzZDKZuP3226N3794xc+bM1Dlsgueeey569OgRb775ZuoUNtPKlSvj7LPPjpNOOukH/dn3VD0ffvhhHHLIIdG/f//4/PPPU+dQS73xxhvx6quvZuX2KaecEp07d87KbSrfl19+Gf/85z9TZ3ynhx9+OHUCQLWxbNmy+MlPfhK/+MUvori4OHUOleCDDz6IvfbaK6644opYtWpV6hwAqJHWr18fJ554YgwePDh1So1QXl4ev/zlL+OPf/xj6hTYLG+88UYccMABsWDBgtQptdbatWvj5JNPjjvvvDN1CkCNNH369Nh///1j1KhRqVOqra222iquuOKKrNyeO3du/Nd//VdWbgNQO+SnDgAAAAAAiIiYPHlyTvd23333nO4B1ceKFSvipZdeivfeey/Kysp+8J1ly5bF9OnTK7EMAAAAAAAAAAAAAAAAAAAAAAAAAAAAoOr56quv4vTTT49LL710i/5sZ3Ljyy+/jGOPPTauu+66KC8vT53DZli2bFn86Ec/ittuuy0ymUzqHDbB2LFjo1evXjF48ODUKWTBY489Fp07d45HHnkkdQq1TCaTiWuvvTYrt/Py8uKGG27Iym2y44knnoj169enzvhOjz32mN93AmyC4cOHx2677RavvPJK6hQqWXl5efz1r3+Nrl27xrBhw1LnAECNsnbt2jjuuONi+PDhqVNqnN/+9rcxYMCA1BmwSV566aU4+uijo7i4OHVKrZfJZOKqq66Km2++OXUKQI20YsWK+NGPfhTPPfdc6pRq65JLLolmzZpl5fbvf//7KCkpycptAGq+/NQBAAAAAAArVqyIBQsW5HRzt912y+keUPVVVFTEpEmT4vnnn49ly5ZVys1x48bFypUrK+UWAAAAAAAAAAAAAAAAAAAAAAAAAAAAQFV27733xmGHHRZffvll6hS+xfjx42OPPfaIYcOGpU7hByovL4/rr78+jj32WD/XqrBMJhO33357HHDAAfHxxx+nziGLVqxYEeeee24cc8wxsWTJktQ51BJPPfVUTJgwISu3TzjhhNh1112zcpvsePjhh1MnfK8lS5bEq6++mjoDoMoqLS2Nyy67LI4++uj47LPPUueQRYsWLYpjjjkmzj333CguLk6dAwDV3rp16+LYY4+N1157LXVKjXXzzTfH7373u9QZ8J2ee+656NevX6xfvz51Cv+PAQMGxG9+85vUGQA10vr16+PUU0+Nxx9/PHVKtdSoUaP41a9+lZXbX3zxRfz5z3/Oym0Aar781AEAAAAAAFOmTMn5Zs+ePXO+CVRdX3zxRbzwwgsxbty4KC8vr7S7paWlMWrUqMhkMpV2EwAAAAAAAAAAAAAAAAAAAAAAAAAAAKCqGjVqVBx44IGxcOHC1Cn8L08//XT06dMn5s+fnzqFSjBs2LDYb7/9Yvbs2alT+F9WrVoVP/3pT+O6666LsrKy1DnkyLBhw2LXXXeN4cOHp06hhisvL4+bbropa/evueaa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+MfRvXv3yMvL+873qVOnTtStWzcaN24cLVu2/LfXWS4tLY3x48fHv/71r3j++efjww8/zOaHsFmWLVsWP/3pT2PkyJEbn4OBXLvyyitjwoQJqTO+08477xxHHHFEHHHEEbHPPvtEu3btvvfXhv/X1ltvHVtvvfXGf9+1a9dv/HHz58+PsWPHxogRI2LEiBExb968LU3PmuXLl8fpp58eo0aNioKCgtQ5QA1Qt27daN++fXTq1CnatGkTO+6449eey27WrFk0bdo06tatu/FzUaWlpbF27dqNb8XFxbFw4cKNz1vPmzcvJk2aFHPmzKl2z/+vWLEiTjjhhHj//fe/9s8QvttVV10VL730UlZu33///XH11VdHy5Yts3IfgJrHIyUAAAAAIKnJkyfndC8vL+/fvngOqPk2bNgQH3zwQcycOTNpx7vvvhs77rijPwQHAAAAAAAAAAAAAAAAAAAAAAAAAAAAqDXGjRsXZ511Vjz77LOpU2qF4uLi+MlPfhLvvvtu6pRN1qxZszjyyCPj2GOPjSOOOCK23XbbnO43aNAg9t5779h7773jggsuiIiIJUuWxCuvvBJDhw6NESNGxOrVq3Pa9ENdd911sWbNmhgwYEDqlFrhuuuui9tvvz11RqVo2bJl7LnnnrHnnntGr169olOnTtGxY8eoV6/eD7pXWFgYhYWFsdVWW238e+3atfvO91mzZk3MnDkzZsyYETNmzIgJEybE2LFjo7i4+Ac1QE0yaNCgmDdvXlZub7fddnH22Wdn5TbZsWTJknj11VdTZ/wggwYNil69eqXOAMi5srKyOPfcc+Mf//hH6pRKsfPOO298/LD77rtHp06don379lFQUPCD7tWtWzfq1q278d+3bNkyOnTo8J3vU1JSsvGxw/Tp02P8+PExYcKEavP4HQDYPGvXro0TTzwxvvrqq9QpERHRokWLOO+88+IXv/hFtG3btlJvFxYWRu/evaN3795x6623xqRJk+L++++PJ554okr8XueDDz6ISy+9NB544IHUKdRCL730UgwcODB1xjdq06ZN9O/fP84444zo0qVLzjbbtGkTJ598ckREzJkzJ5588sl49NFH4+OPP85Jw+Z477334pZbbonf//73qVOAaqZVq1axzz77RM+ePaNnz56x2267Rbt27SI/P3+z7tSrVy/q1asXTZs23fj3vuk5i5KSkpg4cWJ88MEH8fLLL8c777wTZWVlW/phZN306dPj3HPPjSFDhqROqTb69OkT++yzT4wdO7bSb69ZsyZuv/32+Otf/1rptwGomfIymUzqBgAAAP6XvLy8xhGxyd/VVFxcHI0bN85iEQBkz1VXXRVvv/12zvY6duwYTz31VM72gPQWLFgQo0ePrhJfDBsR0aFDhzjssMNSZwAAAAAAAAAAAAAAAAAAAAAAAGyxjz76KCoqKjbrffLz86Nz585ZKgIAAKC6O/jgg2PkyJGpM8iSu+66Ky6//PLUGTXaypUr47DDDotx48alTvleW221VZx44onRv3//OOSQQ6KgoCB10rdav359vPLKK/Hoo4/GsGHDYsOGDamTvtdvf/vbuPXWW1Nn1GiXX355/O1vf0ud8YO1b98+Dj744I1vO++8c+qkb5TJZGLmzJnxwQcfxKhRo+L111+PRYsWpc76Vr/+9a+r9f8vqJo2bNgQu+yySyxYsCAr92+55Za46aabsnKb7Lj99tvjuuuuS53xg2yzzTaxZMmSqFu3buqUWumcc86JRx99NCdbbdq0iXnz5uVki+83b968aNeuXc72Bg0aFOecc07O9qq6srKyOP300+PZZ59NnfKDdevWbeNjh4MOOihatGiROukblZeXx5QpU+KDDz6IkSNHxhtvvBGff/556qxv9de//jUuu+yy1BkAUC1cdNFFcf/996fOiO233z6uvfbauPDCC6N+/fo53V6+fHnccccdcd9998WqVatyuv1NXnjhhTjhhBNSZ1CLrFixIrp16xaffvpp6pSN8vLy4vjjj49f/epXccghh0ReXl7qpI1GjRoVAwcOjGeffXazv94/mwoKCmLs2LHRq1ev1Ck517Rp0yguLk6dUS343GJulZWVRWFhYeqMr9l1113j0EMPjQMOOCB69+4drVu3TtpTXFwcr776ajz33HPx4osvVvmvGXnwwQfjggsuSJ1RbQwZMiROOeWUrNyuX79+zJ07N3bYYYes3Kd2832dbI6SkpJo0qTJ5rxLk0wmU5KtHr5Z1f0KWgAAAACgxstkMlFUVJTTzZ49e+Z0D0hn3bp18d5778Xs2bNTp3zNxx9/HB06dIi2bdumTgEAAAAAAAAAAAAAAAAAAAAAAAAAAADImWuvvTYOOOCA2GeffVKn1Ehr166NY489NsaNG5c65Tvttttucemll8app54aW2+9deqcTVKvXr04/vjj4/jjj48vv/wyBg8eHPfcc0988sknqdO+1W233RZNmzaNq6++OnVKjXTllVfG3/72t9QZm6VOnTpxwAEHxHHHHRfHH398dOzYMXXSJsnLy4tu3bpFt27d4txzz42IiJkzZ8brr78ew4YNizfffDNKS0sTV0J2PfTQQ7FgwYKs3K5Xr1788pe/zMptsueRRx5JnfCDLV++PP75z3/GySefnDoFICfKy8vjzDPPjGeffTZ1ymapV69eHHLIIXHcccfFcccdFzvuuGPqpE1Sp06d6NWrV/Tq1SsuvPDCyGQyMXny5BgxYkT861//infeeScqKipSZwIAm2nYsGFx//33J22oW7duXH755XHjjTfGVlttlaRhm222iT/+8Y9x2WWXxdVXXx2PPfZYko7/ccEFF8S+++4bO+ywQ9IOao8rr7wyPv3009QZEfF/nrs46aST4qabborddtstdc436tu3b/Tt2zdmzpwZf/jDH+Lpp5+O8vLy1FlRVlYW559/fowbNy7q1KmTOgeoIrbddts46qij4sgjj4zDDjssWrZsmTrpa5o0aRKnnHJKnHLKKfHZZ5/FoEGD4sEHH4yPP/44ddo3uuyyy+Kggw6KXXbZJXVKtXDSSSdF69ats/J87Lp16+L222+Pu+++u9JvA1Dz5KcOAAAAAABqr4ULF8aKFStyutmzZ8+c7gFpzJ07N4YMGRKzZ89OnfKNxowZE+vXr0+dAQAAAAAAAAAAAAAAAAAAAAAAAAAAALXWqaeeGplMpkq8lZWVxapVq2L58uWxePHimDt3bowfPz6GDRsWDz30UNx6661x8cUXxyGHHFLlXoh7c5SWlsbZZ5/tz2jOgtLS0ujXr1+MHDkydcq3Ouqoo+KNN96IoqKiOP/882PrrbdOnfSDNG/ePC677LKYM2dOvPDCC9G7d+/USd/qmmuuif/+7/9OnVHjXHPNNXHXXXelzthke+21V9xzzz2xdOnSGDlyZFx55ZXRsWPH1FlbpGvXrvGrX/0qXnnllfjss8/i0UcfjeOPPz7q16+fOg0qXVlZWfz5z3/O2v1TTjkltttuu6zdp/K988478dFHH6XO2CKDBg1KnQCQE+Xl5XHWWWfFM888kzplk+Tl5cXBBx8cDz30UHz++efx8ssvxy9/+cvYcccdU6f9YHl5edGrV6+45pprYtSoUbFkyZK4//7744gjjog6deqkzgMANsFnn30W5513XtKGPfbYIyZPnhy33357bLXVVklbIiJatmwZgwcPjrfffjtat26drGP58uVx9tlnJ9undvnggw/ikUceSZ0RERG77rprvPPOO/Hss8/Gbrvtljrne3Xt2jUef/zxGDt2bOyxxx6pcyIiYtKkSZ7DBKJjx47xm9/8Jt55551YtmxZDB48OM4444wq/3VRLVq0iGuvvTZmz54djz/+eJV87n316tXx85//PDKZTOqUaqFOnTrxi1/8Imv3H3zwwfj888+zdh+AmiM/dQAAAAAAUHsVFRXlfLNnz5453wRyZ82aNTFixIh4/fXXY+3atalzvtWaNWvi/fffT50BAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAF16tSJrbbaKpo3bx6tWrWKdu3axZ577hk/+clP4rzzzovf/va3cd9998Wbb74Zn376aSxfvjxGjhwZf/jDH+Lwww+Phg0bpv4QNtmHH34Yv/vd71Jn1CiZTCb69+8fw4cPT53yjQ4//PB47733Yvjw4XHooYemzqk0+fn5ccIJJ8S7774bw4YNiz333DN10jf65S9/GU8//XTqjBrjd7/7XfzlL39JnfG9GjduHL/+9a9j5syZMW7cuPjVr34V2223XeqsrGjatGn0798/XnzxxViyZEkMHDgw9t5779RZUGmefvrpmDdvXtbuX3zxxVm7TXYMGjQodcIWe+2112Lx4sWpMwCy7oILLognn3wydcb3atGiRdx4440xb968eOutt+K8886LRo0apc7KipYtW8aFF14Yr732WixcuDD+9Kc/RdeuXVNnAQDf4bLLLovPPvss2f4VV1wR7733XpX8PcNBBx0URUVF0a9fv2QNI0aMqBGfq6Dqu/zyyyOTySRtKCwsjAEDBsSkSZOid+/eSVt+iD322CPGjh0bd955ZzRo0CB1Ttx8881RUlKSOgPIsfbt28d1110XEydOjNmzZ8cf//jH2H///SM/Pz912mbLy8uLM844I2bOnBkPPvhgtGrVKnXS14wcOTIeeuih1BnVxgUXXBB169bNyu21a9fGvffem5XbANQs1e93RAAAAABAjVFUVJTTvW222abKPckKVI5MJhOzZs2KIUOGxCeffJI6Z5N89NFHsWjRotQZAAAAAAAAAAAAAAAAAAAAAAAAAAAAQDXTvHnz6Nu3b1x//fUxYsSI+Oqrr2LkyJFx0UUXxXbbbZc673vdcccdMWPGjNQZNcZ1110XTz31VOqMf9OtW7d4/fXXY8SIEbHffvulzsmqn/zkJzF+/Ph44oknqtxrIlRUVMTZZ58d7733XuqUau/vf/973HLLLakzvlO7du3i7rvvjkWLFsXf/va36NKlS+qknGrWrFlcdNFFMXbs2Jg2bVr86le/iq233jp1FmyRP/3pT1m7veeee8a+++6btftUvtWrV8czzzyTOmOLlZeXx+DBg1NnAGTVDTfcEI888kjqjO/Uo0ePGDRoUCxYsCAGDBgQrVu3Tp2UUzvssENcc801MWPGjHj//fejf//+Ubdu3dRZAMD/49VXX40nn3wyyXa9evXiscceizvvvLNK/x6hadOmMWTIkLjlllsiLy8vScPVV18dX3zxRZJtaod//vOfyZ/natmyZbz55ptx4403RmFhYdKWLVGnTp244oor4t1334127dolbfn888/jzjvvTNrAd9tpp53i+OOPj9///vcxfPjwGDJkSOokqqkmTZrEBRdcEKNGjYo5c+bEbbfdFr169UqdVWkKCgriggsuiOnTp8e5556bOudrrr322vjqq69SZ1QLLVq0iH79+mXt/sCBA2P16tVZuw9AzZCfOgAAAAAAqL2mTJmS072ePXsm+4I3IHtWrVoVr7zySrz99tuxfv361DmbZfTo0VFaWpo6AwAAAAAAAAAAAAAAAAAAAAAAAAAAAKjGCgsLo2/fvjFw4MBYsmRJvPzyy3HiiSdW2T+bvaysLK644orUGTXCI488En/6059SZ3xNo0aN4s4774yioqI47LDDUufk1Omnnx4fffRRXHvttVFQUJA6Z6P169fHCSecEPPnz0+dUm0NGzYsLrzwwtQZ36pt27bx4IMPxqxZs+LSSy+NRo0apU5Kbtddd4177rknFi1aFHfccUe0bds2dRJstuHDh8fUqVOzdv/iiy/O2m2y49lnn42VK1emzqgUjzzySOoEgKx54IEH4tZbb02d8a169OgRQ4YMiaKiojjnnHOiXr16qZOS23fffePRRx+NBQsWxE033RQtWrRInQQAtd6aNWvil7/8ZZLtRo0axYgRI+JnP/tZkv0f4qabbop//OMfSZ6bWL58uef9yKo//OEPSff32muvGD9+fBx44IFJOyrT7rvvHuPHj48jjjgiacc999wTJSUlSRv4P1q1ahXHHXdc3HLLLTFs2LBYtmxZLFy4MF588cW44YYb4qijjoptt902dSbVzIEHHhiDBw+OTz/9NB588MHo06dPlf06psrQtGnTePjhh+OVV16JnXfeOXVORER8+eWXyf85Wp1k87nTL7/8Mh588MGs3QegZshPHQAAAAAA1E4lJSUxd+7cnG7uvvvuOd0DsiuTycSMGTNiyJAhsXDhwtQ5P8jKlStj7NixqTMAAAAAAAAAAAAAAAAAAAAAAAAAAACAGqKgoCCOPPLIeP7552PGjBlx3nnnRd26dVNn/ZtXX301Xn755dQZ1dqoUaPiF7/4ReqMrznkkENiypQpccUVV0RBQUHqnCS23nrruP322+P999+Pbt26pc7Z6LPPPotjjjkmVq5cmTql2hk3blyceuqpUV5enjrl32yzzTYxcODAmDVrVlxwwQW19ufdd2nSpElceeWV8fHHH8fjjz8eXbt2TZ0Em+z222/P2u3mzZvHaaedlrX7ZMfDDz+c9Y1GjRrF6aefnvWdWbNmxTvvvJP1HYBcGzp0aFx88cWpM75R69at48knn4yioqLo169f5OXlpU6qclq2bBm33HJLLFiwIAYOHBg777xz6iQAqLX++Mc/xieffJLz3aZNm8brr78effr0yfn2ljrjjDPi6aefTvK84GOPPRajR4/O+S4132uvvRbjx49Ptn/AAQfEW2+9FTvttFOyhmxp3rx5DBs2LE488cRkDV999VX853/+Z7L92mqHHXaIY445Jn73u9/F0KFDY+nSpbF48eL45z//GTfddFP85Cc/iRYtWqTOpJpq0qRJXHbZZTFjxowYPXp0nHXWWVG/fv3UWTn14x//OCZMmBB9+/ZNnRIREffdd1/Mnz8/dUa1sP/++8fuu++etft33XVXlJaWZu0+ANVffuoAAAAAAKB2mjJlSs43e/bsmfNNIDuKi4vjX//6V4wZM6baPyn+5ZdfRkVFReoMAAAAAAAAAAAAAAAAAAAAAAAAAAAAoIbp0qVLPPTQQzFz5sz4yU9+kjrn3/zud79LnVBtzZ8/P0466aTYsGFD6pSIiKhXr17cfffd8cYbb0Tbtm1T51QJe+65Z0ycODGuuOKKyMvLS50TERHTpk2LM888MzKZTOqUauPTTz+NE044IVavXp065WsKCgriV7/6VcyePTsuuuiiKCwsTJ1U5eXn58cZZ5wR06ZNiyeffDJ23XXX1Enwnd57770YPXp01u6fd9550aBBg6zdp/J9/PHHWf3/xP/o169fXHjhhVnfiYh4+OGHc7IDkCszZsyIM844I8rLy1OnfE3Dhg3jd7/7XXz44Ydx2mmnVZnHqFVZvXr14qKLLoo5c+bE/fffH23atEmdBAC1yqJFi+LOO+/M+W6DBg1i+PDhsc8+++R8u7KcdNJJMXjw4MjPz8/59pVXXun5ByrdPffck2x7//33j1deeSW23nrrZA3ZVlhYGE8//XScdNJJyRr+67/+y+s6Z9H2228fRx99dNx0003x0ksvxZIlS2LJkiUxdOjQuPnmm+OYY46J7bffPnUmNUCXLl3ivvvui0WLFsVf//rX6Nq1a+qkpLbbbrt4/fXXc/Z8y3dZv3593H777akzqo2LLrooa7cXLlwYTz75ZNbuA1D95f6zOQAAAAAAEVFUVJTTvbp160anTp1yuglUvkwmE1OmTInnnnsuli5dmjpnixQWFsaBBx4YxxxzTJIvwAUAAAAAAAAAAAAAAAAAAAAAAAAAAABqh/bt28ewYcPi+eefj5133jl1zkZjx46NV155JXVGtbNhw4Y45ZRTYvny5alTIiKiXbt28c4778Sll14aeXl5qXOqlHr16sWdd94ZL7zwQjRt2jR1TkREDB06NP785z+nzqgWSktL4+STT44lS5akTvmaXr16xfjx4+Oee+6JZs2apc6pdvLz8+O0006LKVOmxMMPPxytWrVKnQTf6Pbbb8/a7by8vPjlL3+Ztftkx6BBgyKTyWR9p3///tGnT59o165d1reeeeaZWL16ddZ3AHKhuLg4TjzxxFi1alXqlK859NBDY9q0aXHzzTdHgwYNUudUO3Xr1o0LL7wwZs2aFXfccYfHYACQI9dff32sXbs2p5t16tSJZ555Jnr37p3T3Ww49dRT4+6778757rhx4+LJJ5/M+S4117x58+Lll19Ost2lS5d4+eWXY+utt06yn0uFhYXx9NNPx6GHHppkf/78+TFs2LAk2zVNixYt4qijjoobb7wxXnzxxVi0aFEsXbo0/vWvf8Utt9wSxx57bOywww6pM6lhDjrooBg+fHjMmDEjLr744lrx6+amKiwsjPvvvz/uvPPO1CkxaNCgWLp0aeqMauHMM8/M6tf3/PnPf87J830AVE/5qQMAAAAAgNqpqKgop3vdu3ePwsLCnG4ClWvFihXxz3/+M95///0oKytLnbNFdt555zj55JOjW7du/rAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAICdOPPHEmDx5cvz4xz9OnbLR7bffnjqh2rnqqqti7NixqTMiIuKoo46KCRMmxJ577pk6pUo7/vjjY8KECbHbbrulTomIiBtuuCFGjx6dOqPKu/zyy2PMmDGpMzaqW7duDBgwIMaOHRs9e/ZMnVPt5efnx7nnnhuzZ8+OW265JbbaaqvUSbDRzJkzY+jQoVm7f9hhh0X79u2zdp/KV1FREYMHD876Tps2beKggw6KvLy8OOuss7K+t2rVqnj22WezvgOQbZlMJs4666yYNWtW6pSNGjVqFPfff3+8/vrr0a5du9Q51V7dunXjyiuvjDlz5sSvf/1rr4kIAFk0efLk+Mc//pHz3T/+8Y9xzDHH5Hw3Wy655JL4j//4j5zvXnfddbFu3bqc71IzPfLII1FRUZHz3UaNGsXzzz8fjRs3zvl2KgUFBfH0009HmzZtkuw/+uijSXars+222y6OPPLIuP766+OFF16IBQsWxLJly2L48OExYMCAOP7442PHHXdMnUkNlZ+fHz/96U9j7Nix8fbbb8dRRx3lNdq/wxVXXBF//etfkzasX78+7r777qQN1UXDhg3jjDPOyNr96dOnx7Bhw7J2H4DqLT91AAAAAABQ+5SVlcW0adNyuukbpKH6qqioiIkTJ8Zzzz0Xn332WeqcLVKvXr04+OCD48gjj4ytt946dQ4AAAAAAAAAAAAAAAAAAAAAAAAAAABQyzRv3jyGDx8eN954Y5V4kfCRI0fm/M+ur86effbZuPfee1NnRETERRddFEOHDo1mzZqlTqkW2rdvH2PGjIkf/ehHqVOirKwsTjvttGr/Z79n0+DBg2PgwIGpMzZq165dvPPOO3HjjTdGQUFB6pwapWHDhnHTTTfFrFmzol+/fqlzICIi7rnnnshkMlm7f+6552btNtkxYsSIWLhwYdZ3zjrrrI2PEfr375/1vYiIhx9+OCc7ANn0+9//PoYOHZo6Y6NevXrFpEmT4sILL6wSn/upSZo3bx5/+9vfYtq0aXHooYemzgGAGunGG2+MioqKnG6efPLJcfXVV+d0Mxfuvffe2HfffXO6uWDBgnjwwQdzuknN9eSTTybZffjhh6Nr165JtlPadttt44UXXoh69erlfHvYsGFRUlKS893qYptttokf/ehH8dvf/jaee+65mD9/fnz22Wfx8ssvxx/+8Ic44YQTYuedd06dSS1Qp06d+NnPfhYzZsyIZ599Nvbee+/USdXGZZddFn/961+TNjz88MOxYcOGpA3VRbafS7377ruzeh+A6is/dQAAAAAAUPt89NFHOX8isWfPnjndAyrH559/Hi+88EKMHz8+51/oW9natm0bJ598cnTq1Mk3XgEAAAAAAAAAAAAAAAAAAAAAAAAAAADJ5Ofnx4ABA+KBBx6oEn9m8n333Zc6oVpYsGBBXHDBBakzIi8vL+64444YOHBg1KlTJ3VOtdKoUaMYNmxY1l/QfFMsWbKkSnRURXPmzImLL744dcZGJ554YkycODH22muv1Ck1WqtWrWLIkCExfPjwaNeuXeocarHi4uJ47LHHsna/adOmcdJJJ2XtPtkxaNCgnOz0799/41936NAhDjjggKxvjh49Oj7++OOs7wBkyzvvvBMDBgxInbHRhRdeGO+991506NAhdUqN1qlTp3jjjTdi8ODBsd1226XOAYAaY+LEifGvf/0rp5utW7eOv//97zndzJW6devGk08+GY0aNcrp7p/+9KdYv359TjepeSZPnhyzZs3K+W6/fv2iX79+Od+tKnr16hW/+c1vcr67bt26eOmll3K+WxU1b948jjjiiPjNb34Tzz77bHzyySfxxRdfxKuvvhq33nprnHTSSdG6devUmdQyBQUFce6558aHH34Yjz32WHTu3Dl1UrV02WWXxeWXX55s//PPP49nn3022X51stdee0WPHj2ydv/111+PmTNnZu0+ANVXfuoAAAAAAKD2KSoqyvnmbrvtlvNN4IcrLy+PsWPHxosvvhjLly9PnbNFGjRoEIcffngcccQR0bBhw9Q5AAAAAAAAAAAAAAAAAAAAAAAAAAAAABER8fOf/zweeOCByMvLS9rx1FNPxbp165I2VHWZTCbOO++8KC4uTtqRn58fDz30UFx55ZVJO6qzgoKCePjhh+PSSy9NnRLDhw+Pv//976kzqpSysrL42c9+FqtWrUqdEnl5eXHLLbfE888/H02bNk2dU2scddRRMX369Lj66qsjP99LP5N7Dz30UKxevTpr90877bSoX79+1u5T+VasWBEvvvhi1nf222+/2GWXXb729/r375/13UwmE4888kjWdwCyoaSkJH72s59FeXl56pQoLCyMv//973H//fdHvXr1UufUGmeddVZ89NFHcfbZZ6dOAYAaYcCAATndy8/Pj0cffTQaN26c091cateuXdxzzz053Vy8eHE89NBDOd2k5hk2bFjON7feeuv429/+lvPdqua6666LTp065Xx3+PDhOd9MrVmzZnHYYYfFNddcE88880zMnTs3li9fHq+99lr88Y9/jJ/+9KfRtm3b1JnUYvn5+XHGGWfEhx9+GA8//HB07NgxdVK195e//CUOP/zwZPuPPvposu3q5txzz83q/XvvvTer9wGonnylGgAAAACQc5MnT87pXrt27Wr0F+xBTfPpp5/Gc889F5MnT45MJpM6Z4vssssucfLJJ0f79u2T/wE7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/bz3/+87jjjjuSNhQXF8ewYcOSNlR1AwcOjDfeeCNpQ506dWLw4MFZfyHu2uLuu++Oq666KnVGXHHFFTF//vzUGVXGLbfcEh988EHqjKhXr148/vjjcdNNN6VOqZUaNGgQf/7zn2PkyJHRvn371DnUIhUVFTFw4MCsbpx33nlZvU/le+KJJ2L9+vVZ3+nfv/+//b1TTjkl6tevn/XtRx99NCoqKrK+A1DZLr744pg3b17qjGjatGm88sorcf7556dOqZWaNWsWjzzySLzwwgvRokWL1DkAUG1NmTIlXnrppZxuXnjhhXHwwQfndDOFc845J4488sicbt5+++1RWlqa001qluHDh+d888Ybb4wdd9wx57tVTb169eKee+7J+e5rr71W4z9HePDBB8fVV18dTz31VMyZMye+/PLLeP311+NPf/pTnHzyydGuXbvUibDRCSecEEVFRfH4449Hhw4dUufUGHXq1Imnn3462c/3N998Mz7//PMk29XNz372sygsLMza/cGDB0dxcXHW7gNQPeWnDgAAAAAAapdMJhNFRUU53ezZs2dO94AfprS0NN59990YOnRofPXVV6lztshWW20VRx55ZBxyyCE5+WZZAAAAAAAAAAAAAAAAAAAAAAAAAAAAgB/qiiuuiFNPPTVpwxNPPJF0vyqbM2dOXHvttUkb8vLy4tFHH40zzzwzaUdN85e//CUuv/zypA0rV66M8847LzKZTNKOquC9996LP/7xj6kzonHjxvH666/H6aefnjql1jvwwAOjqKgo/uM//iN1CrXE8OHDY+7cuVm7v+uuu8bee++dtftkx8MPP5z1jbp168Zpp532b3+/adOmcdxxx2V9f+HChfH6669nfQegMj3zzDPxj3/8I3VGtGrVKt5999049NBDU6fUeieccEJMmzYtTjzxxNQpAFAt3XXXXTn9PHXLli3j1ltvzdleavfdd19OX1t14cKF8cwzz+Rsj5pl9erV8cEHH+R0s1mzZnHRRRfldLMq+/GPfxz77LNPTjeXL18eU6ZMyelmrr344ovx5z//OU499dTo0KFD6hz4RgceeGC899578cILL0T37t1T59RIzZs3j4ceeijJdllZWfx/7P13mFaFnf//v+8p9CpSZGgSe8MaRSyxYu/YHdaUTTS996+mZ5PspqjJZhMZayzYjRU1ir1GxI4FhQEFpfdpvz/2t/tJsiZRmft97pl5PK6LK9eVyHm+cuYMzplzM/fVV19dSLujGTx4cBx22GFlO/7KlStTngEC0LFUFT0AAAAAAOha5s+fH2+//XZqc9y4cak94L1rbGyMq666Kp5++ukO/wMottxyy5g0aVKMGjWq6CkAAAAAAAAAAAAAAAAAAAAAAAAAAAAA78r5558fW221VWH92267LdauXVtYv5J97GMfi1WrVhW64Ze//GWccsophW7orP793/89Tj311EI33HXXXfH73/++0A1Fa2pqio9+9KPR0tJS6I6BAwfGHXfcEXvssUehO/h/+vTpE7/97W/jqquuiv79+xc9h07uV7/6VVmP/+EPf7isx6f9PfXUU/HEE0+UvXPYYYfFwIED3/F/mzx5ctn7ERENDQ0pHYD2sHjx4vj0pz9d9IwYPXp0TJ8+Pbbccsuip/D/N3jw4Ljmmmvi3HPPje7duxc9BwA6jAULFsTll1+e2vy3f/u3GDBgQGqzSB/4wAfiq1/9amrzl7/8ZWqPzuPhhx9Of15z5plnRp8+fVKble7rX/96evOBBx5IbwL/bYsttohrr7027r333thtt92KntPp7bPPPvGRj3ykkPaNN95YSLcjKvez1fPOOy9aW1vL2gCgY6kqegAAAAAA0LU8+eST6c1x48alN4F3Z926dTF9+vS46aabYvny5UXPWS99+/aNQw89NPbcc8/o1q1b0XMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3rXevXvHlClTolQqFdJfuXJl3HXXXYW0K9mll14ad999d6EbvvWtb8WnP/3pQjd0ZqVSKRoaGuKggw4qdMfXv/71ePvttwvdUKR/+7d/i2effbbQDYMGDYo//elPscsuuxS6g3d27LHHxhNPPBE77bRT0VPopJ5//vm44447ynb8mpqaOPXUU8t2fMpjypQpKZ36+vq/+79NnDgxhg4dWvYN1113XSxevLjsHYD28OUvfzkWLFhQ6IaxY8fG9OnT4wMf+EChO3hnn/zkJ+OBBx7w8QGAd+k///M/Y+3atWm97bbbLk477bS0XqX40pe+lHKP/z8effTReOCBB9J6dB4PPvhgaq+mpsaz0Hdw5JFHxqabbpra9GcGFKOmpiZmzpwZRx11VNFTupSf/exnqV+b/Y+777479Wvvjuzggw+OYcOGle34L7/8ctx8881lOz4AHU9V0QMAAAAAgK5lxowZqb2BAwfGyJEjU5vAu/Paa6/F1KlT4/nnny96ynoplUqx7bbbxnHHHRd1dXVFzwEAAAAAAAAAAAAAAAAAAAAAAAAAAAB4X3bdddf48Ic/XFj/pptuKqxdiZYtWxZf+tKXCt1wwgknxPe+971CN3QFNTU1ccUVV8RWW21V2Ia33347vva1rxXWL9KsWbPiBz/4QaEb+vTpE7fcckuMGzeu0B38Y2PHjo37778/zjzzzKKn0An9+te/jra2trIdf7/99oshQ4aU7fi0v6amprj00kvL3tlwww3jkEMO+bv/e3V1dZxyyill37FmzZq47LLLyt4BWF/Tp0+PKVOmFLpho402imnTpsWoUaMK3cE/tuOOO8YTTzwRxxxzTNFTAKCiNTU1xW9+85vU5r/9279FVVVVarMS9OnTJ84666zU5i9/+cvUHp3Dn//859TevvvuG0OHDk1tdgSlUilOPPHE1OZTTz2V2gP+n5qamqIndDkDBgyIr3/96+ndVatWxb333pve7Yiqq6tj0qRJZW2cd955ZT0+AB1L1/tuFQAAAABQqBkzZqT2tttuuyiVSqlN4B9bs2ZN3HXXXXHbbbfFypUri56zXgYOHBhHHHFEjB8/Pmpra4ueAwAAAAAAAAAAAAAAAAAAAAAAAAAAALBefvzjH8fAgQMLad9zzz2FdCvVt7/97XjjjTcK6++0007R0NBQWL+r6devX1x//fWxwQYbFLbh/PPPj4ceeqiwflE+8YlPxJo1awrrd+vWLa699trYZZddCtvAu9e9e/c477zz4r/+67+8RwHtZs2aNXHJJZeUtXHiiSeW9fi0vxtuuCHeeuutsndOOumkf/rnWX19fdl3RISvPYGKt27duvjXf/3XaGtrK2zDgAED4rbbbouxY8cWtoF3r1+/fnHVVVfFWWed5f0UAeDvuOGGG1KfhYwfPz4OOuigtF6l+ehHPxojR45M61177bUp39+gc3n66adTeyeccEJqryPJPjcvvPBCNDc3pzYBivTxj388Ntpoo/Tufffdl97sqMr9jPX222+P119/vawNADqOqqIHAAAAAABdx/Lly+Pll19ObY4bNy61B/x9bW1t8fLLL8fUqVPjpZdeKnrOeimVSrHDDjvEMcccE0OHDi16DgAAAAAAAAAAAAAAAAAAAAAAAAAAAEC72HDDDePMM88spP3MM8/EokWLCmlXmmeffTbOO++8wvqDBw+O66+/Pnr27FnYhq5ok002icsvvzyqqop5u9m2trb49Kc/HW1tbYX0i3DttdfGXXfdVeiGCy64IPbff/9CN/DefexjH4s77rgjBg8eXPQUOoFrrrkmFi9eXLbjd+/ePY4++uiyHZ/yaGhoSOnU19f/039m3LhxKe8D9dhjj8XTTz9d9g7A+3XeeefFCy+8UFi/trY2rr/++th2220L28B7VyqV4uyzz46pU6dG7969i54DABVnypQpqb1vfOMbqb1KU1tbG1/60pfSek1NTXHJJZek9ej4mpqaUt/zuLq62vdO/4Gtt946ttpqq7TeunXr4uWXX07rARStR48e8ZWvfCW9++CDD6Y3O6rx48fH6NGjy3b81tbWtGeCAFS+Yl41CgAAAAB0SU8//XT6XybffvvtU3vAO1u1alXcfvvtceedd8bq1auLnrNeBg0aFEcffXTssssuUV1dXfQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAgHb1qU99Krp165bebWtri/vvvz+9W4m+/vWvR0tLSyHtUqkUF198cdTV1RXS7+oOOOCA+NrXvlZY/7HHHourrrqqsH6mpqam+OpXv1rohq9//etx0kknFbqB92+vvfaKRx99NLbZZpuip9DBnX/++WU9/kEHHRT9+/cva4P2NX/+/Lj11lvL3tlqq61i5513flf/bH19fZnX/LcpU6akdADeq0WLFsX3vve9Qjece+65sddeexW6gffv2GOPjfvvvz9GjBhR9BQAqBjz5s2L2267La237bbbxmGHHZbWq1Qf+9jHYvDgwWm9hoaGtBYd35w5c1KfkW633XYxcODAtF5H9KEPfSi199prr6X2AIr2kY98JHr27JnafPjhh1N7HVmpVIrjjz++rI2GhoZoa2srawOAjqGq6AEAAAAAQNcxY8aM1F63bt1iiy22SG0Cf62trS1eeOGFmDp1aod/kVZ1dXXssssucfTRR8eGG25Y9BwAAAAAAAAAAAAAAAAAAAAAAAAAAACAshg2bFiccsophbQff/zxQrqV5P77748bbrihsP5XvvKVmDhxYmF9Ir7zne/E7rvvXlj/W9/6VjQ3NxfWz/LrX/86Zs2aVVj/8MMPj+9///uF9Wkfo0ePjnvvvTf22muvoqfQQb366qvxpz/9qayNE088sazHp/1ddNFF0dLSUvbOaaed9q7/2VNOOSVqamrKuOa/XXLJJdHU1FT2DsB79b3vfS8WL15cWP+Tn/xk/Ou//mthfdrHuHHj4oEHHoitttqq6CkAUBGy7n//x2c+85m0ViXr2bNnfPSjH03rPfXUU/HYY4+l9ejYst/7ePz48am9jij7mWVHf/9rgPeqb9++cdRRR6U2ly5dGq+//npqsyM76aSTynr81157LaZNm1bWBgAdQ1XRAwAAAACArmPGjBmpvS233DK6deuW2gT+n+XLl8ctt9wS99xzT6xdu7boOetl6NChccwxx8QOO+wQVVUerwAAAAAAAAAAAAAAAAAAAAAAAAAAAACd2+mnn15I94knniikW0m++tWvFtbeZZdd4vvf/35hff5bTU1N/OEPf4i+ffsW0n/xxRfj/PPPL6SdZcmSJfHd7363sP6YMWPi4osv9rPvO4kBAwbE7bffHscdd1zRU+iAzj///Ghrayvb8Xv16hWHH3542Y5PeTQ0NJS9UVVVFaeeeuq7/ueHDh0aBx54YBkX/beFCxfGH//4x7J3AN6Ll19+Oc4777zC+h/84Afj5z//eWF92tfIkSPjvvvuiz333LPoKQBQuEsvvTStNXDgwDjllFPSepXujDPOiOrq6rTeH/7wh7QWHVtjY2Nqb/fdd0/tdUQTJkxI7WVfAwCV4L08r2kvTz/9dHqzo9phhx1i8803L2ujs79GB4B3xysJAQAAAIAULS0t6Q8Mx40bl9oD/ltbW1s888wzcdVVV8XcuXOLnrNeampqYvz48XHEEUfEwIEDi54DAAAAAAAAAAAAAAAAAAAAAAAAAAAAkGLChAkxdOjQ9O6f//zn9GYluemmm+L+++8vpN2tW7doaGiImpqaQvr8tdGjR8dPfvKTwvrf+c53Ys2aNYX1y+3f//3fY9GiRYW0a2pq4g9/+EP079+/kD7l0b1797jiiivi5JNPLnoKHUhLS0tccMEFZW0cfvjh0bt377I2aF8PPPBAvPDCC2Xv7LPPPjFixIj39HsmT55cpjV/raGhIaUD8G6dffbZ0dTUVEi7b9++cdlll0VtbW0hfcpj4MCBcfvtt8eHPvShoqcAQGGee+651Pc5Pv3006Nnz55pvUo3cuTIOOKII9J6V111VbS1taX16Ljefvvt1N52222X2uuIxowZE/369UvrFfX8DqBIBx54YAwcODC1+eyzz6b2OroTTjihrMe/7rrr0r8OAqDyVBU9AAAAAADoGl588cVYvXp1anPcuHGpPSBi6dKlceONN8b9999f2F+Kai/Dhw+P4447LrbddtsolUpFzwEAAAAAAAAAAAAAAAAAAAAAAAAAAABIU1VVFUceeWR6d+7cubFq1ar0bqX4/ve/X1j7rLPOiq233rqwPv/Xxz/+8dh3330Lac+fPz+mTJlSSLvclixZEuecc05h/bPPPjvGjx9fWJ/yqaqqig9+8INFz6ADue2226KxsbGsjeOPP76sx6f9NTQ0pHTq6+vf8+854ogjYsCAAe0/5m/ccsst8eabb5a9A/BuvPTSS3HZZZcV1v/Nb34TY8eOLaxP+fTo0SO23377omcAQGGmTp2a2jv99NNTex3Bv/zLv6S15syZEw8++GBaj45r0aJFqb0xY8ak9jqqjTfeOK21ePHitBZApaipqYk999wztTl79uzUXkdX7meu69ati4svvrisDQAqX1XRAwAAAACAruGpp55Kb2633XbpTeiqWltbY8aMGXHVVVfFG2+8UfSc9VJbWxt77rlnHHroodGvX7+i5wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU4ogjjiik+9JLLxXSLdrdd98dDz30UCHtcePGxVe+8pVC2vx9pVIpfve730WPHj0K6f/0pz+N5ubmQtrl9Ktf/SqWLl1aSHvnnXeOr33ta4W0gcpz4YUXlvX43bt3j4kTJ5a1QftatWpVXHHFFWXv9OnTJ4499tj3/Pt69OgRxx9/fBkW/bXm5ua46KKLyt4BeDd++MMfRktLSyHto48+Ok455ZRC2gAA5TZ16tS01o477hjbbLNNWq+jOPjgg2Pw4MFpvcyPOR3XsmXL0lqDBg2Kvn37pvU6so033jittXz58rQWQCXZe++9U3uvv/56aq+j23rrreMDH/hAWRsXXHBBWY8PQOWrKnoAAAAAANA1zJgxI7U3atSoGDhwYGoTuqpFixbF9ddfHw8//HBhfxmqvYwcOTImTZoUW265ZZRKpaLnAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRmt912K6Q7a9asQrpF+9GPflRY+9xzz42amprC+vx9Y8eOjS996UuFtGfPnh2XX355Ie1yWb58efziF78opF1bWxvnn39+VFdXF9IHKsuKFSvixhtvLGtjv/32i969e5e1Qfu66qqrYvny5WXvHHPMMe/72qivr2/nNe+soaEhpQPwj8yePTsuvvjiQtoDBgyI8847r5A2AEC5vfjii/H000+n9bLuZTua2traOPHEE9N6V199dVqLjmvt2rVprdGjR6e1OrqNN944rbVu3bq0FkAl2XvvvVN7r7/+emqvMzjyyCPLevwZM2bEc889V9YGAJWtqugBAAAAAEDX8OSTT6b2tt9++9QedEUtLS3x+OOPxzXXXBMLFy4ses566d69e+yzzz5x0EEHRZ8+fYqeAwAAAAAAAAAAAAAAAAAAAAAAAAAAAFC4QYMGxQc+8IH0bld8I+wnnngibr/99kLap556auyxxx6FtHl3vv71r8fIkSMLaf/4xz+Otra2Qtrl8Jvf/CYWL15cSPvLX/5ybLfddoW0gcpz/fXXx+rVq8vaOOKII8p6fNrflClTUjr19fXv+/dOmDAhNtlkk3Zc886ee+65ePjhh8veAfhHfvKTn0Rzc3Nh7Y022qiQNgBAuf3xj39Ma5VKpTjuuOPSeh3NpEmT0lpz5syJp556Kq1Hx7Ru3bq0Vv/+/dNaHV2/fv3SWpnXAEAl2XbbbaO6ujqt99Zbb6W1Oosjjzyy7I0//OEPZW8AULmqih4AAAAAAHR+b7zxRixYsCC16S9WQ3ktXLgwrr322nj88cejtbW16DnrZezYsXH88cfHpptuGqVSqeg5AAAAAAAAAAAAAAAAAAAAAAAAAAAAABVj1113TW/OmzcvvVm0n//854V0e/fuHT/5yU8KafPu9erVq7CP0zPPPBPTpk0rpN3eWlpa4rzzziukPWLEiPjmN79ZSBuoTJdddllZj18qleLwww8va4P29corr8T06dPL3hk5cmTss88+63WM0047rZ3W/GNTpkxJ6QC8kyVLlsRFF11USHvnnXeOj370o4W0AQAy3HzzzWmtXXfdNerq6tJ6Hc2ECRNi2LBhab3Mjz0dU1tbW1qrV69eaa2Ornfv3mkt7y0NdFXdunWLkSNHpvUWL16c1uosJkyYEIMGDSpr4/LLLy/r8QGobFVFDwAAAAAAOr8ZM2akN8eNG5fehK6gubk5Hn744bjuuuti0aJFRc9ZLz179owDDjgg9t9//+jZs2fRcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqznbbbZfenD9/fnqzSAsXLoypU6cW0v7sZz8bG220USFt3psTTjghtt9++0Lav/71rwvptrfrrrsuXn/99ULaP/7xj6NXr16FtIHKs2jRorj99tvL2th5551j+PDhZW3QvhoaGqKtra3snVNOOSWqqtbvre3r6+ujVCq106K/74orrojVq1eXvQPwTs4///xYuXJlIe2f//znKX/OAgAUYcWKFXHvvfem9Y499ti0VkdUVVUVxxxzTFrv5ptvTmvRMfXo0SOt5bnNu5d5rrzHNNCVbbLJJmmtVatWxdq1a9N6nUF1dXUcdthhZW289NJL8cgjj5S1AUDlWr9XcgAAAAAAvAszZsxI7fXr1y9Gjx6d2oSuYP78+XH11VfHjBkzUv5Sajltuummcfzxx8fGG29c9BQAAAAAAAAAAAAAAAAAAAAAAAAAAACAijVq1Kj05htvvJHeLNL5559fyBt/Dxw4ML785S+nd3l/SqVS/OAHPyik/cc//jHmzJlTSLs9nXPOOYV0d9111zj55JMLaQOV6eqrr46mpqayNo488siyHp/21draGhdeeGFKq76+fr2PMWbMmNhzzz3bYc0/tnTp0rjmmmvK3gH4W62trXHeeecV0p40aVLssccehbQBADLccccdsW7durTe4YcfntbqqA499NC01oMPPhhLlixJ69Hx9OzZM63Vo0ePtFZHl3muevXqldYCqDSbbLJJam/16tWpvc4g4xnsZZddVvYGAJWpqugBAAAAAEDnN2PGjNTeuHHjoqrKtz+hvTQ1NcX9998fN954YyxdurToOeulT58+cfDBB8c+++wT3bt3L3oOAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEUbNWpUerOj/zzs96K1tTV++9vfFtL+yle+EgMGDCikzftzyCGHxIQJE9K7LS0t8V//9V/p3fY0c+bMuOeeewpp/+hHP4pSqVRIG6hMl112WdkbRxxxRNkbtJ877rgj5syZU/bOzjvvHFtuuWW7HGvy5Mntcpx/pqGhIaUD8JduuummePXVV9O71dXV8YMf/CC9CwCQadq0aWmtjTfeODbffPO0Xke1zz77RI8ePVJazc3N8ac//SmlRcfUs2fPtNaaNWvSWh1d5rnKvAYAKs0GG2yQ2lu3bl1qrzM48MADy/6185VXXhmtra1lbQBQmaqKHgAAAAAAdG6rVq2KWbNmpTbHjRuX2oPObO7cuXHVVVfFM888U/SU9bbVVlvFcccdFyNHjix6CgAAAAAAAAAAAAAAAAAAAAAAAAAAAECHMHr06PTmsmXL0ptFufXWW2P27Nnp3QEDBsQnP/nJ9C7r7+tf/3oh3d///vfR3NxcSLs9/Pa3vy2ku/fee8c+++xTSBuoTPPnz4977rmnrI26urrYdttty9qgfTU0NKR0Jk+e3G7HmjRpUvTs2bPdjvf33HXXXfHaa6+VvQPwl4q6fzjllFNi0003LaQNAJCl3N8X+UsHH3xwWqsj69mzZ+y9995pvbvvvjutRcfTu3fvtNaqVavSWh1d5rnq169fWgug0mT+ezAiYt26dam9zqB3796x1157lbUxb948XzMDdFFVRQ8AAAAAADq3p59+OlpbW1Ob2223XWoPOqO1a9fGPffcEzfffHMsX7686DnrpX///nH44YfHHnvsEd26dSt6DgAAAAAAAAAAAAAAAAAAAAAAAAAAAECHMXTo0PTm0qVL05tFueiiiwrpnnnmmdG3b99C2qyfQw45JLbZZpv07htvvBHTpk1L77aHdevWxeWXX15I+6yzziqkC1Su6667ruzv5XPAAQeU9fi0r8WLF8d1111X9k5tbW2cdNJJ7Xa8vn37xtFHH91ux/t72tra4oILLih7B+B/LFiwIG677bb0bnV1dXz7299O7wIAZFq4cGE8++yzaT3fI3n3DjzwwLTW3Xffndai4xk+fHhaa9WqVWmtjm7lypVprREjRqS1ACpNnz59UnttbW2pvc4i42vna665puwNACpPVdEDAAAAAIDO7cknn0zt1dTUxNZbb53ahM5m9uzZMXXq1HjhhReKnrJeSqVSbLfddnHsscfGRhttVPQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAgA6ntrY2ampqUptr1qxJ7RVl+fLlccMNN6R3e/bsGZ/97GfTu7SPUqkUX/7ylwtpX3LJJYV019dNN90Ub7/9dnp3woQJsc8++6R3gcp2/fXXl71xwAEHlL1B+7nssstSvv495JBDYtCgQe16zPr6+nY93t9z4YUXRltbW0oL4NJLL43m5ub07oknnhibbLJJehcAINP06dPT7u9KpVLstddeKa3OYO+9905rzZw5MxYtWpTWo2MZOXJkWmvp0qVprY5u2bJlaa3MawCg0vTu3Tu1161bt9ReZ5HxLLaI15MBULyqogcAAAAAAJ3bU089ldrbYostonv37qlN6CxWr14dd955Z9x+++2xatWqouesl4EDB8aRRx4Zu+22W/oPrgEAAAAAAAAAAAAAAAAAAAAAAAAAAADoTHr27Jnaa2pqSu0V5ZprronVq1end0855ZQYMmRIepf2c9JJJ8XQoUPTu9dff32sXLkyvbu+LrzwwkK6n/vc5wrpApVr+fLl8ac//amsjVKpFPvvv39ZG7SvKVOmpHTq6+vb/Zj7779/DB8+vN2P+7deffXVsn/uAPwP9w8AAOVzzz33pLW23Xbb2GCDDdJ6Hd32228f/fv3T2m1tbXF9OnTU1p0PCNHjkxrvfbaa2mtjm727NlprcxrAKDSNDc3p/a6deuW2usstttuuxg2bFhZG3PmzIknnniirA0AKk9V0QMAAAAAgM6rra0tnn/++dTmuHHjUnvQGbS1tcVLL70UU6dOjZdffrnoOeulqqoqdtxxxzjmmGP8cBMAAAAAAAAAAAAAAAAAAAAAAAAAAACAdtCzZ8/UXlNTU2qvKJdeemkh3TPOOKOQLu2ntrY2PvKRj6R3V65cGddee216d328/fbbcfPNN6d3R48eHUcffXR6F6hst956a6xbt66sje222877dXQgM2fOjMcff7zsnQ022CAOO+ywdj9udXV1nHLKKe1+3HfS0NCQ0gG6tpkzZ8aMGTPSuxMmTIidd945vQsAkO3BBx9Ma+29995prc6guro69thjj7Re5rVAxzJixIgolUoprbfffjtWrFiR0uroXnnllbTWxhtvnNYCqDRr1qxJ7fXq1Su115nsv//+ZW9cf/31ZW8AUFmqih4AAAAAAHRey5YtiyVLlqQ2x40bl9qDjm7lypVx++23x1133ZX+AoL2tuGGG8bRRx8dO++8c1RXVxc9BwAAAAAAAAAAAAAAAAAAAAAAAAAAAKBT6N69e2qvpaUltVeEhQsXxl133ZXe/eAHPxg77rhjepf296//+q9RVZX/trSXX355enN9XH/99dHU1JTe/dSnPuVn5gP/x/XXX1/2xgEHHFD2Bu1nypQpKZ0TTjghunXrVpZjT548uSzH/VvXXHNNLFu2LKUFdF1Tp04tpPu5z32ukC4AQKa1a9fGU089ldYbP358Wquz2G233dJajzzySFqLjqVHjx6x6aabpvVeffXVtFZHlnWehgwZEsOHD09pAVSizOcgvXv3Tn89WGdy4IEHlr2R8WwZgMqS/2pQAAAAAKDLaGxsTG+OGzcuvQkdUVtbWzz//PMxderUeO2114qes16qq6vjgx/8YBx11FExaNCgoucAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdCqrV69O7XXr1i21V4Q//vGP0dLSkt79+Mc/nt6kPEaPHh0HHXRQevfOO++MlStXpnffr2uvvTa9WVtbG5MnT07vApWtubk5br755rJ3DjjggLI3aB9NTU1x6aWXprTq6+vLduytt946dtxxx7Id/3+sWrUqLr/88rJ3gK6tiPuHIUOGxJFHHpneBQDI9uSTT8a6devServuumtaq7PIPGePP/54tLa2pvXoWDK+1/Q/nnrqqbRWRzV79uxYtmxZSivzYw9QiebPn5/W2mCDDdJanVHGM9kZM2bE7Nmzy94BoHJUFT0AAAAAAOi8GhsbU3t1dXUxaNCg1CZ0RMuXL4+bb745pk+fnvoi23IYOnRoHHvssbH99ttHVZXHHgAAAAAAAAAAAAAAAAAAAAAAAAAAAADtbdWqVam97t27p/aKcP3116c3e/bsGZMmTUrvUj6nnXZaenPNmjVx++23p3ffjxUrVsQdd9yR3j388MNj8ODB6V2gst17772xePHisja6desWe+65Z1kbtJ8bb7wxFi5cWPbOZpttFrvttltZG5MnTy7r8f9HQ0NDSgfoml566aV4+umn07unnnpq1NbWpncBALI9/PDDaa0NN9wwxo4dm9brLHbZZZcolUopreXLl8dzzz2X0qLj2WGHHdJaDz74YFqro3rggQfSWjvttFNaC6ASzZ8/P601ZMiQtFZnNGzYsNhmm23K3ini9WUAFKeq6AEAAAAAQOc1b9681N64ceNSe9ARtbW1xU033RSNjY1FT1kvNTU1sfvuu8cRRxwRAwYMKHoOAAAAAAAAAAAAAAAAAAAAAAAAAAAAQKe1Zs2a1F6PHj1Se9lWr14d06ZNS+8eccQR0bdv3/Qu5XPEEUdEnz590rs33HBDevP9uOWWW9L//IqIOP3009ObQOW78cYby97Yeeedo2fPnmXv0D4aGhpSOvX19WVvnHTSSVFbW1v2zkMPPRTPP/982TtA13TttdcW0nX/AAB0FY8++mhaa5dddklrdSYDBgyITTfdNK2XeU3QsWR+Dj/wwANprY7q/vvvT2vttttuaS2ASvTCCy+ktUaNGpXW6qz23HPPsjc6yutzAGgfVUUPAAAAAAA6r8bGxtTe1ltvndqDjqhUKsUHP/jBomesl7q6upg0aVJss802USqVip4DAAAAAAAAAAAAAAAAAAAAAAAAAAAA0GmtXr06WltbU5s9evRI7WW74447YtWqVendU089Nb1JefXq1SuOPvro9O5NN92U/ufC+3HdddelNwcPHhwHHXRQeheofLfffnvZG3vssUfZG7SPN954I2699dayd0qlUpx22mll7wwePDgOPvjgsnciIqZMmZLSAbqeIu4fdthhh9hmm23SuwAARXjyySfTWuPGjUtrdTbbb799WivzmqBj2X333aNXr14praeeeioWL16c0uqo7r777pRO9+7dY5999klpAVSi5ubmeOmll9J6o0ePTmt1VhnPZu+///5CXmMGQDGqih4AAAAAAHRejY2Nqb0RI0ak9qCj2njjjWPMmDFFz3jPunXrFnvttVcccsgh0bdv36LnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHR62T9zPiI6/c+hvuWWW9KbAwYMiIkTJ6Z3Kb8TTzwxvblw4cJ49NFH07vvRVtbW0ybNi29e/TRR0dNTU16F6hs8+fPj2eeeabsnQkTJpS9Qfu46KKLorm5ueydvffeO0aNGlX2TkREfX19Sufiiy+OlpaWlBbQdSxdujQefvjh9O6kSZPSmwAARWhqaooXXnghrTdu3Li0VmeTee5mzpyZ1qJj6d69e+y7774prZaWlrj22mtTWh3Rs88+G88++2xKa6+99orevXuntAAq0XPPPRdNTU1pvbFjx6a1Oqs999yz7I21a9fGvffeW/YOAJWhqugBAAAAAEDnlf0DI4YPH57ag46qVCrFHnvsEd27dy96yrs2evTomDRpUmyxxRZRKpWKngMAAAAAAAAAAAAAAAAAAAAAAAAAAADQJbz++uvpzaFDh6Y3M915553pzUMPPTRqa2vTu5TffvvtF3369Env3nXXXenN92LGjBmxcOHC9O6xxx6b3gQq3x133FH2RqlUigkTJpS9Q/toaGhI6dTX16d0IiIOP/zw2GCDDcreeeONN+KWW24pewfoWv70pz9FS0tLetf9AwDQVTz//PPR1NSU1hs3blxaq7PJPHczZ85Ma9HxHHLIIWmtK6+8Mq3V0VxxxRVprYMPPjitBVCJHnjggdTe1ltvndrrjEaOHBmjRo0qe2fatGllbwBQGaqKHgAAAAAAdE6tra0xf/781Obw4cNTe9CR9erVK8aPH1/0jH+qR48ese+++8aBBx4YvXv3LnoOAAAAAAAAAAAAAAAAAAAAAAAAAAAAQJfy+uuvpzeHDRuW3szS2NgYL774Ynr3yCOPTG+So3v37jFx4sT07l133ZXefC/uuOOO9ObAgQNjn332Se8ClS/jz6TNN988Bg0aVPYO6+/BBx+M559/vuydXr16xXHHHVf2zv/o1q1bnHDCCSmtKVOmpHSArqOI+4dtttkmNttss/QuAEARZs6cmdbq1q2br7PWw7bbbpvWWrhwYbz55ptpPTqWww47LKqqqlJad955ZyxYsCCl1ZG0tbXFZZddltKqqqqKY489NqUFUKkeeOCB1N4222yT2uus9thjj7I3pk2bVvYGAJUh5y4YAAAAAOhy3nzzzWhpaUnrDR48OLp3757Wg85g0003jZEjRxY94+/6wAc+EJMmTYpNNtkkSqVS0XMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAupzZs2enN4cNG5bezHLXXXelN7t37x4HH3xwepc8Rx55ZHrz/vvvj3Xr1qV3360777wzvXnIIYdEbW1teheofBl/Ju2xxx5lb9A+pkyZktI56qijom/fvimt/zF58uSUzh//+MdYuHBhSgvoGoq4fyjiPg4AoCgzZ85Ma22yySZRXV2d1utsRo4cGb169UrrPfXUU2ktOpaRI0fGvvvum9Jqbm6Oc845J6XVkdxwww0xa9aslNb+++8fo0aNSmkBVKK2traYNm1aWm/YsGExZMiQtF5nlvGMdubMmfHmm2+WvQNA8aqKHgAAAAAAdE7z5s1L7Q0fPjy1B51BqVSKPffcs+J+UEGvXr3iwAMPjP322y969uxZ9BwAAAAAAAAAAAAAAAAAAAAAAAAAAACALuuJJ55Ib2600UbpzSx/+tOf0psTJkyIPn36pHfJM3HixCiVSqnN1atXx0MPPZTafLeampri3nvvTe8edNBB6U2g8j333HPR2NhY9s4ee+xR9gbrb9WqVXHllVemtOrr61M6f2nXXXeNzTffvOydpqamuPTSS8veAbqGefPmxfPPP5/edf8AAHQlzz33XFpriy22SGt1RqVSKTbbbLO0XhFfi9NxfPjDH05rnXfeebFixYq0Xkfwox/9KK31kY98JK0FUIn+/Oc/x/z589N648ePT2t1dhnPaNva2uKOO+4oeweA4lUVPQAAAAAA6Jwy/nLjX6qrq0vtQWfRp0+f2HXXXYue8b8233zzmDRpUowZM6boKQAAAAAAAAAAAAAAAAAAAAAAAAAAAABd3iOPPJLe3GyzzdKbWaZPn57e3H///dOb5BoyZEhss8026d0irud348knn4yVK1emNkulUhx44IGpTaBjuOOOO1I648ePT+mwfq6++upYtmxZ2TvDhw8v7GvA+vr6lE5DQ0NKB+j87r///vRmv379YrfddkvvAgAUZdasWWmtLbbYIq3VWW2++eZprcxrg47n6KOPjoEDB6a0Fi9eHL/5zW9SWh3BtGnT4uGHH05pDR48OI488siUFkCluuGGG1J7u+++e2qvM9tmm22iX79+Ze9kPXMGoFhVRQ8AAAAAADqnxsbG1F5dXV1qDzqTLbfcMjbaaKNCN/Tt2zcOOeSQ2HvvvaN79+6FbgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAg4rXXXos333wzvbvVVlulNzO8/fbb8fLLL6d3999///Qm+fbbb7/05iOPPJLefDceeuih9Ob2228fQ4YMSe8Cle/uu+8ue6Nv376x6aablr3D+psyZUpK55RTTonq6uqU1t869dRTo1Qqlb3z1FNPxeOPP172DtD5FXH/sN9++0VNTU16FwCgCG1tbfHKK6+k9TbbbLO0Vme1+eabp7VmzZqV1qLj6dGjR5xxxhlpve9973sxb968tF6lWrduXXz6059O633hC1/wXtZAl3fZZZel9vbYY4/UXmdWKpVihx12KHvnrrvuKnsDgOJVFT0AAAAAAOicGhsbU3t1dXWpPehMSqVS7LXXXoX95dCtt946jjvuuBgxYkQhfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+r/vuuy+92aNHj9h4443TuxkeeeSR9ObAgQNjp512Su+Sb7/99ktvPvroo+nNd+Phhx9Ob+67777pTaBjeOCBB8re2H777aNUKpW9w/p59dVX45577klp1dfXp3TeyahRo2KfffZJaTU0NKR0gM7N/QMAQHnNmTMn1qxZk9brrM+YMmWew5deeimtRcf0hS98Ifr06ZPSWr58eXz+859PaVWyH//4x/HCCy+ktAYNGhSf+tSnUloAleqxxx6LF198Ma03cODA2GWXXdJ6XcGOO+5Y9sbrr78ejY2NZe8AUKyqogcAAAAAAJ3TvHnzUnvDhw9P7UFn079///QH+/3794/DDz88JkyYELW1taltAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP6xa6+9Nr25+eabR1VV53yrzUceeSS9ufvuu3fa88lf23333aNUKqU233jjjXj99ddTm+/GQw89lN6cMGFCehOofK+++mq88cYbZe/suOOOZW+w/hoaGqKtra3snR122CG22Wabsnf+kfr6+pTOH/7wh1i7dm1KC+icmpqa4oknnkjvun8AALqSWbNmpfY23njj1F5nlHkOZ8+eHc3NzWk9Op5BgwbFmWeemda78sor45prrknrVZonn3wyfvjDH6b1vvCFL0SfPn3SegCV6He/+11qb7/99ovq6urUZme30047pXQeeOCBlA4AxfFKXwAAAACgLObOnZvaGzFiRGoPOqNtt902hgwZUvZOqVSKcePGxbHHHhsbbbRR2XsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvDdr1qyJW2+9Nb27yy67pDezPPzww+nN8ePH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o62tLWbMmFH2DgDFqCp6AAAAAADQuSxevDhWr16d1uvbt2/07ds3rQdd0Qc/+MG/+3k2ZsyYmDRpUmy++eZRKpWSlwEAAAAAAAAAAAAAAAAAAAAAAAAAAACwvpqbm+P444+PBQsWFNLffPPNY7/99iukneH111+P1tbW1ObYsWOjuro6tUll2HTTTdObr776anrznbzyyivpzc022yy9CVS+Z555Jpqbm8ve2WKLLbxXSAX74x//GAsXLix7p1QqxWmnnVb2zvs1aNCgOPTQQ1NaU6ZMSekAnYP7BwCA8st+7jR48ODUXmc2ZMiQtNa6detiyZIlaT06j/333z8uuOCCqKqqSm+3trbGFVdcEdtuu20cd9xxMX369Ghra0vf8Y888MADcfLJJ8dWW20VF110UbS0tKRvGDJkSNx2220xevTo9DZApWltbY0zzjgj/c/jvfbaKz70oQ+lNruqrbbaKqXz5JNPpnQAyJd/dwsAAAAAdGrz5s1L7dXV1aX2oCuqra2NPffc86/+u549e8Z+++0XBxxwQPTq1augZQAAAAAAAAAAAAAAAAAAAAAAAAAAAACsr89//vNx//33F9Y/44wzolQqFdYvt1dffTW9uemmm6Y3qQxFfOxnz56d3nwnRXyubbbZZulNoPLNmDEjpbPlllumdHh/GhoaUjoTJkyIsWPHprTer/r6+pTOfffdF7NmzUppAR2f+wcAgPJbsGBBam/QoEGpvc5sww03TO1lXyt0HieffHJcdtllUVtbW0i/ra0trr766th7771jk002ie985zvxwgsvFLIlIuLll1+OH/zgB7HZZpvFhAkT4rLLLovW1tZCtowaNSruvffe2HbbbQvpA1SaX/3qV/Hggw+md7/73e+mN7uqrGe3Wc+iAchXVfQAAAAAAKBzaWxsTO0NHz48tQdd1YgRI2LzzTePiIhNNtkkJk2aFB/4wAc69Q9sAQAAAAAAAAAAAAAAAAAAAAAAAAAAAOjsvv71r8e5555bWL9v377xL//yL4X1M8yePTu9OXbs2PQmlWGDDTaIAQMGpDbnzZsX69atS22+k1dffTW9OXr06PQmUPlmzJiR0tliiy1SOrx3b7zxRtxyyy0prcmTJ6d01sehhx4aG264YUrrggsuSOkAHZ/7BwCA8lu4cGFaq2fPntGtW7e0XmfXv3//1F7mtULnc/zxx8d1110XPXv2LHTHK6+8EmeffXZsscUWMWbMmPjYxz4WU6dOjddee61szTlz5sQ111wTZ5xxRnzgAx+ITTbZJL71rW/FrFmzytZ8NzbbbLO47777YrPNNit0B0CleOWVV+Kb3/xmene//faLvffeO73bVW211VYpnSeffDKlA0C+mqIHAAAAAACdS2NjY2pvxIgRqT3oynbbbbfYeOONY9SoUUVPAQAAAAAAAAAAAAAAAAAAAAAAAAAAAGA9ffOb34wf//jHhW74whe+EP379y90Q7nNmTMnvenn+HdtdXV1sWTJkrRea2trzJs3L8aMGZPWfCdz585Nb44cOTK9CVS+p556KqUzduzYlA7v3cUXXxzNzc1l7/To0SMmTZpU9s76qq2tjRNPPDHOPffcsrcuuuii+N73vhdVVVVlbwEdV0tLS7zxxhupzX79+kW/fv1SmwAARcv8PvWAAQPSWl1B9vnMvFbonA455JCYNm1aHHvssfHmm28WPSdee+21+P3vfx+///3vIyKif//+se2228Z2220Xo0aNiuHDh//vr759+0aPHj3+91epVIo1a9b876/ly5fH/PnzY968eTFv3rx4/fXXY+bMmfHUU0/F4sWLC/5/+n8dfPDBcemll8bAgQOLngJQEVpbW+PDH/5wrFq1KrVbVVUVP/3pT1ObXd3GG2+c0nn66aejra0tSqVSSg+APDVFDwAAAAAAOpfGxsbU3vDhw1N78F4sWbKkU73QtHv37jFq1KiiZwAAAAAAAAAAAAAAAAAAAAAAAAAAAACwHtasWROf+MQn4sILLyx0xwYbbBBf+MIXCt2Q4c0330xvjhw5Mr1J5airq4tnnnkmtfnmm2/GmDFjUpvvtCFT7969Y+DAgalNoGN48cUXUzpF/7nL39fQ0JDSOfLII6N///4prfU1efLkOPfcc8vemTt3btx+++1x0EEHlb0FdFwLFy6M1tbW1Kb7dACgK1q6dGlaqzO9d2wl6NGjR3Tv3j3Wrl2b0su8Vui8JkyYEE888UQcd9xx8eCDDxY9568sXbo07rvvvrjvvvuKnlI2pVIpvvWtb8XZZ58dVVVVRc8BqBg//elP45577knvTp48OXbYYYf0blc2YsSIqKmpiebm5rJ2Vq9eHXPmzIlRo0aVtQNAPndSAAAAAEC7mjdvXmqvrq4utQfvxrp162L69Olx5ZVXxty5c4ueAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAREfHaa6/FhAkT4sILLyx6Snz1q1+Nfv36FT2j7N5888305ogRI9KbVI4iPv5FXOd/aenSpbF27drU5siRI1N7QMewatWqtPfvGTNmTEqH9+ahhx6K5557LqVVX1+f0mkPO++8c2y11VYprYaGhpQO0HEVcf/i/gEA6IqWLl2a1howYEBaq6vIPKeZ1wqd2/Dhw+Puu++OT37yk0VP6VKGDx8ef/zjH+O73/1uVFVVFT0HoGI88cQT8e1vfzu926dPn/jBD36Q3u3qqqur016vM2vWrJQOALncTQEAAAAA7aqxsTG1V1dXl9qDf+a1116LqVOnxvPPPx8REffee280NTUVvAoAAAAAAAAAAAAAAAAAAAAAAAAAAACArqytrS3+67/+K3bYYYd44oknip4Tm266aXzmM58pekaKBQsWpDez3vSaylTE+zi8+eab6c2i+xtttFF6E6h8L730UrS1tZW907179xg2bFjZO7x3U6ZMSekMHTo0Jk6cmNJqL/X19Smd66+/PhYtWpTSAjom9w8AADmWLFmS1urXr19aq6vo27dvWivzWqHz69atW5x77rkxbdq0GDNmTNFzOr3TTz89nnnmmTjkkEOKngJQUVauXBmnnHJKNDU1pbfPOuss348sSNbXHrNmzUrpAJCrqugBAAAAAEDn0dzcHG+88UZar1Qq+cuOVIw1a9bEXXfdFbfddlusXLnyf//75cuXxyOPPFLgMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAC6shkzZsSECRPi4x//eCxevLjoOVEqleK//uu/okePHkVPSfHmm2+mNwcPHpzepHIU8fFfsGBBevMvFfF5tuGGG6Y3gco3a9aslM6oUaOiVCqltHj3Vq9eHVdccUVK6+STT47q6uqUVns59dRTo6qqquydtWvXxh/+8Ieyd4COy/0DAECOpUuXprV69+6d1uoqMs9p5rVC17H//vvHzJkz41Of+lTK96S6mi233DJuv/32mDJlSgwYMKDoOQAV54wzzojnn38+vbvddtvF5z73ufQu/23MmDEpnRdffDGlA0Aud64AAAAAQLt58803o7W1Na03ZMiQ6NatW1oP3klbW1u8/PLLMXXq1HjppZfe8Z959tln44033kheBgAAAAAAAAAAAAAAAAAAAAAAAAAAAEBX9vjjj8dxxx0XO+64Yzz44INFz/lfH/nIR+JDH/pQ0TPSLFy4MLXXvXv36N27d2qTyjJo0KD05ptvvpne/EsLFixIb2644YbpTaDyzZo1K6UzZsyYlA7vzVVXXRXLli1LadXX16d02lNdXV3st99+Ka2GhoaUDtAxuX8AAMiRdY8cEZ6LlEGfPn3SWpnXCl1Lnz594pxzzok///nPMXHixKLndAobbbRR/Pa3v42ZM2fGAQccUPQcgIp0/vnnx8UXX5zeLZVK8Z//+Z9RU1OT3ua/ZT3DzXomDUCuqqIHAAAAAACdR2NjY2qvrq4utQd/a9WqVTFt2rS48847Y/Xq1X/3n2tra4t77rknmpubE9cBAAAAAAAAAAAAAAAAAAAAAAAAAAAA0NWsXbs2rrnmmpg4cWLsvPPOcfXVV0dra2vRs/7XmDFj4qc//WnRM9K0tLTE8uXLU5uDBg1K7VF5Ntxww/TmkiVL0ptF94s4z0DlmzVrVkpnzJgxKR3em4aGhpTOdtttF9tvv31Kq73V19endJ544ol46qmnUlpAx+P+AQAgx6pVq9JavXv3Tmt1FZnnNPNaoWvabrvt4tZbb4077rgjdt5556LndEjDhw+PH/3oRzFr1qz413/916iuri56EkBFeuqpp+LTn/50Ie0zzzwzxo8fX0ib/5b1DDfrmTQAuWqKHgAAAAAAdB6NjY2pvbq6utQe/I+2trZ48cUX46GHHoq1a9e+q9+zdOnSePzxx2PXXXct8zoAAAAAAAAAAAAAAAAAAAAAAACAiNNOOy3efvvtomcAAFSEQYMGxcUXX1z0DICyWbNmTUyfPj2uuOKKuPrqq2Pp0qVFT3pH3bt3j6uuuioGDBhQ9JQ0y5YtS28OGjQovUllKeIaWL58eXqz6L7PNeCdzJo1K6UzatSolA7v3uzZs+Puu+9OadXX16d0yuGYY46JM888M+Xf3VOmTIlf/OIXZe8AHY/7BwCAHKtXr05r9e7dO63VVWSe08xrha5tv/32i0cffTTuuuuu+PnPfx433XRTtLW1FT2rom2//fbx+c9/Pk466aSora0teg5ARVu8eHEcc8wxhXxts/HGG8e//du/pXf5a6NHj07pvPLKK9HS0hLV1dUpPQBy1BQ9AAAAAADoPObNm5faGz58eGoPIiJWrFgR06dPj7lz577n3/vUU0/F2LFjY/DgwWVYBgAAAAAAAAAAAAAAAAAAAAAAAPD/vP3227FgwYKiZwAAAFAGb731VsycOTPuvffeuOuuu+Khhx6KtWvXFj3rnzrnnHNip512KnpGquXLl6c3Bw4cmN6kshRxDRRxrf+lZcuWpTf79++f3gQq3+zZs1M6w4YNS+nw7jU0NERbW1vZO9XV1XHKKaeUvVMuvXr1imOPPTYuuOCCsrcuvfTS+OlPfxq1tbVlbwEdi/sHAIAca9asSWt17949rdVVZJ7TzGsFIiL23Xff2HfffePFF1+Mc889Ny6//PJYuHBh0bMqxqBBg+L444+P0047LcaPH1/0HIAOobW1NU4++eR4+eWX09ulUinOP//86N27d3qbvzZ06NCUTlNTUzQ2NsaoUaNSegDkqCl6AAAAAADQeTQ2Nqb26urqUnt0bW1tbfHss8/GI488Ek1NTe/7GNOnT4+jjjoqqqur23khAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1Ra2trrFmzJtauXfu//7lo0aJ44403/vdXY2NjPPfcc/HMM8/EggULip78np1xxhnxsY99rOgZ6ZYvX57e9KbjFHENFHGtF933uQb8rba2tpg/f35Ka+jQoSkd3p22tra48MILU1oHHHBADBs2LKVVLpMnT44LLrig7J233norbrjhhjj22GPL3gI6FvcPAAA5Vq9endbq3r17WquryDynmdcK/KXNNtssfvWrX8V//Md/xG233RaXXHJJ3HDDDbFq1aqip6UbMmRITJw4MY477rg4+OCDo7a2tuhJAB3Kt7/97bj11lsLaX/yk5+MffbZp5A2fy3zGe68efNi1KhRaT0Ayq+m6AEAAAAAQOfR2NiY2qurq0vt0XUtXbo0pk+f3i5/kfftt9+OJ598Mnbaaad2WAYAAAAAAAAAAAAAAAAAAAAAAAAAAADA+3HFFVfEFVdcUfSMLuGEE06Ic889t+gZhVi+fHl6s0+fPulNKkvv3r3Tm0Vc639p2bJl6U2fa8DfWrBgQTQ3N6e0hgwZktLh3bnzzjvjtddeS2nV19endMpp7733jtGjR6ecs4aGhjj22GPL3gE6FvcPAADl19TUFC0tLWm9bt26pbW6isxzunr16rQWvJOampo49NBD49BDD43Vq1fH3XffHbfddlvceuut8cIL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3qSytLW1xapVq1KbRVzrRfezzzFQ2VasWJHW6tmzZ1qL/+vhhx+OZ599NqV10kknRU1N13gb+lNOOSW+9rWvRUtLS9lbDQ0Nsf/++5e9A1Suou4fBg0alN4FAChKdXV1aq+5uTm11xVk3KP/j+zrhc6hpaUlPvGJT8Tvf//7oqf8H926dYs99tgjdtlll9hxxx1jxx13jA984ANRKpXardHY2BhPPPFEPPHEE/H444/H3XffHcuXL2+347eH+fPnx/777x/XXHNNTJw4seg5AO/aypUr45BDDomnnnqqsA1nnnlmnH322YX1ef969eqV1qq0f/cDsH66xqtDAAAAAICyamxsTO0NHz48tUfH0dbWFi+88EI89NBDsW7duqLnvG+rV6+Ohx56KD70oQ8VPQUAAAAAAAAAAAAAAAAAAAAAAAAAAACALuK5556Lm266KUaOHBmHHXZYlEqloid1eH369Elvrly5Mr1JZVm1alW0tbWlNou41v9S796905srVqxIbwKVa+3atWmtmhpvS16kKVOmpLXq6+vTWkXbaKON4oADDohbb7217K1rr702li5dGv379y97C6hM7h8AAMqvtrY2tdeR38O2Uvl+F5Vs7dq1cfLJJ8c111xT9JT/NWzYsDjssMPikEMOiQMOOKDsz87q6uqirq4uDj/88IiIaGpqinvvvTduvvnmuOmmm+L5558va//dWrVqVRxxxBFxySWXxKRJk4qeA/BPrV27No466qh48MEHC9tw0kknxTnnnFNYn/WTeS/kPgigc6kqegAAAAAA0PE1Njam9kaMGJHao2NYvnx53HzzzTF9+vQO/1Bz6NChMW7cuKJnAAAAAAAAAAAAAAAAAAAAAAAAAAAAANCFtLS0xM033xxHHHFEjBs3Lq666qqiJ3V4ffv2TW+uWLEivUllWblyZXqziGu96H4R5xmoXE1NTWmt2tratBZ/bfXq1XHFFVektLbeeuvYaaedUlqVYvLkySmd1atXx2WXXZbSAiqT+wcAgPLr0aNHam/t2rWpva4g85z27NkzrUXHt2LFijj00EPjmmuuKXpKVFVVxcEHHxzXXXddzJ07N373u9/F0UcfHX369EnfUltbG/vuu2/87Gc/i+eeey7uv//+mDx5ckV8fq1bty5OPPHEaGhoKHoKwD/U3Nwcxx9/fNxxxx2FbTj00EPjwgsvjKqqqsI2sH5qamrSWpnPqAEoP//2BwAAAADWW2NjY2qvrq4utUdla2tri6effjquuuqq9GuxvdXU1MT48ePjiCOOiIEDBxY9BwAAAAAAAAAAAAAAAAAAAAAAAAAAAIAuaubMmTFp0qTYe++9Y+bMmUXP6bD69u2b3ly5cmV6k8pSxDVQxLX+l/r165feXLFiRXoTqFxNTU1prZqamrQWf+3qq6+OpUuXprROO+20lE4lOeqoo9L+nd7Q0JDSASqT+wcAgPKrqalJ/R7GunXr0lpdReY57dmzZ1qLjm3t2rVx+OGHx5133lnoju7du8dnP/vZeOWVV+Lmm2+OI488Mqqrqwvd9Ld23333uOCCC2LevHnx05/+NDbccMNC97S2tsbHPvaxuO666wrdAfD3tLa2xuTJk+OGG24obMPee+8dV111VdTW1ha2gfWX+fFzHwTQuVQVPQAAAAAA6NiamppiwYIFab2qqqoYOnRoWo/KtmTJkrjxxhvjgQceSP3LtuUwfPjwOO6442LbbbeNUqlU9BwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiOnTp8eOO+4YZ511VjQ3Nxc9p8Pp169fenPJkiXpTSpLEddA375905tF95cvX57eBCpX5vum1NbWprX4aw0NDSmdqqqqOPXUU1NalaRHjx5x/PHHp7QeeeSRePbZZ1NaQOVx/wAAkKNnz55prXXr1qW1uorMc5p5rdBxtba2ximnnBJ33313YRuqq6vj9NNPjxdffDF+8YtfxOjRowvb8m4NGDAgvvSlL8Urr7wSZ511VqHP9FpaWuKkk06K+++/v7ANAH/PJz7xifjDH/5QWH/nnXeOG2+8MXr06FHYBtpHTU1NWivzGTUA5VdV9AAAAAAAoGObP39+tLW1pfWGDRuW+nCMytTa2hpPPvlkXH311fHGG28UPWe91NbWxp577hmHHnpoIT8kBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+kebm5vjud78bu+22W7z88stFz+lQ+vbtm958++2305tUliKugaJ/1n4R/bfeeiu9CVSudevWpbW8d08xZs+eHX/6059SWvvuu2/U1dWltCpNfX19WmvKlClpLaCyuH8AAMjRo0ePtNaaNWvSWl1F5jnNvFbouD71qU/F1VdfXVh/5513jieffDKmTJkSo0aNKmzH+9W3b984++yz45VXXokTTjihsB1r1qyJww8/PJ599tnCNgD8rc997nPxu9/9rrD+NttsE7feemshrzGi/dXW1qa1mpqa0loAlF9V0QMAAAAAgI5t3rx5qb3hw4en9qg8b7/9dlx//fXxyCOPREtLS9Fz1suoUaPi+OOPjy233DJKpVLRcwAAAAAAAAAAAAAAAAAAAAAAAAAAAADg73r88cdjl112idtuu63oKR1GbW1t9OrVK7X59ttvp/aoPG+99VZ6s3///unNovtFnGegcjU1NaW1amtr01r8PxdccEG0tbWltCZPnpzSqUR77LFHjB07NqV1ySWXRHNzc0oLqCzuHwAAcvTs2TOttXLlyrRWV7FixYq0Vua1Qsf0H//xH/Gb3/ymkHZtbW1873vfiwcffDC22WabQja0pw033DAuv/zymDp1agwePLiQDYsXL46jjz46li9fXkgf4C9985vfjF/+8peF9TfZZJOYNm1aDBo0qLANtK/MZ7nr1q1LawFQflVFDwAAAAAAOrbGxsbUXl1dXWqPytHS0hKPPfZYXHvttbFw4cKi56yX7t27xz777BMTJ06M3r17Fz0HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN6VxYsXxyGHHBLnnHNO0VM6jMGDB6f2Vq9eHatWrUptUlnefvvt9OaQIUPSm0X333rrrfQmULmamprSWjU1NWkt/ltbW1tceOGFKa0+ffrEMccck9KqRKVSKU477bSU1ptvvhk333xzSguoLO4fAAByZL5f68qVK9NaXUXmOe3Vq1dai47ngQceiK9+9auFtMeMGROPPvpofOtb3+p035c97rjj4plnnol99tmnkP6LL74YH//4xwtpA/yPH/zgB/HDH/6wsP7IkSPjzjvvjGHDhhW2gfZXW1ub1sp8Rg1A+VUVPQAAAAAA6NgaGxtTe3V1dak9KsOCBQvimmuuiSeeeCJaW1uLnrNexo4dG8cff3xsuummUSqVip4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO9Ja2trfOYzn4lvfvObRU/pEIYOHZrefOutt9KbVI4iPv5FXOdF932eAX8p8z1I2tra0lr8t7vuuitmz56d0jr22GOjV69eKa1KVV9fn/Y5NWXKlJQOUFncPwAA5OjXr19aa+XKlWmtriLznPbv3z+tRcfy9ttvxwknnBDNzc3p7fHjx8fDDz8c48aNS29nGTx4cNx2223xkY98pJD+ZZddFr/73e8KaQP84he/iG9961uF9YcOHRp33HFHjBo1qrANlEdra2taK/MZNQDlV1X0AAAAAACgY2tsbEzt1dXVpfYoVnNzczz00ENx/fXXx+LFi4ues1569uwZBxxwQOy///7Rs2fPoucAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwHr54Q9/GGeeeWbRMyrekCFD0ptz585Nb1I5ivj4Dx06NL1ZdH/+/PnpTaBy1dbWprWamprSWvy3hoaGtFZ9fX1aq1KNHTs2JkyYkNK66aabYsGCBSktoHK4fwAAyNG/f/+01sqVK9NaXUXmOc28VuhY6uvrC3nudeKJJ8af/vSnQp7zZqutrY3f//738ZOf/CRKpVJ6/7Of/Wy8+OKL6V2ga/vtb38bn//85wvrb7DBBjFt2rTYbLPNCttA+WQ+y+3WrVtaC4Dyqyl6AAAAAADQsc2bNy+1N3z48NQexZk/f35Mnz49li5dWvSU9bbZZpvF+PHjo3v37kVPAQAAAAAAAAAAAAAAAAAAAAAAAAAAACAiTjjhhLj88svTu21tbbFu3bpYu3ZtrF27NtasWRNvvfVWLFiwIBYuXBjz5s2LF154IV588cV48cUXY8GCBekb34vf/OY3UV1dHeecc07RUyrW0KFD05tz585Nb1I5ivj4F3Gd/6WBAwdGt27dYt26dWnNOXPmpLWAytetW7e0VnNzc1qLiKVLl8Y111yT0ho5cmTss88+Ka1KN3ny5LjvvvvK3mlubo5LLrkkvvCFL5S9BVSOIu5f3D8AAF1R//7901rLli1La3UVmec081qh47j44ovj5ptvTu+edNJJcckll0RVVVV6u0hf/vKXo3v37vHZz342tbt69eo488wz44477kjtAl3XhRdeGGeccUZh/X79+sVtt90W2267bWEbKK/MZ7m1tbVpLQDKr6boAQAAAABAx9bY2Jjaq6urS+2Rr6mpKR5++OF49tlni56y3vr06RN77rlnjBw5sugpAAAAAAAAAAAAAAAAAAAAAAAAQBczaNCgoicAAFQMXxsBlaRUKkX37t2je/fu//vf/aOfZT137tx48MEH46GHHoo//elP8ec//zlj5nty7rnnRo8ePeKnP/1p0VMq0tChQ9Obc+fOTW9SObLfRyIiYsiQIenNd9qQee2vWLEilixZEgMGDEhrApWrtrY2rdXU1JTWIuLyyy+P1atXp7ROPfXUKJVKKa1KN2nSpPj0pz8da9asKXuroaEhvvCFL5S9A1SOIUOGRKlUira2trTmnDlz0loAAJUi83unixcvTmt1FUuXLk1r+T47f2vRokXxxS9+Mb17xBFHxEUXXRRVVVXp7Urwmc98JpYtWxbf/va3U7t33nlnXHrppXHKKaekdoGu5/LLL48Pf/jDqd8X/Eu9evWKm266KXbeeedC+uTIfJab+YwagPKrKXoAAAAAANBxLV++PJYtW5bW69GjRwwcODCtR745c+bEvffeGytWrCh6ynrbaqutYtddd/WAFQAAAAAAAAAAAAAAAAAAAAAAACjExRdfXPQEAAAA2sGIESNi0qRJMWnSpIj475/nfeONN8aVV14Z99xzT8Hr/p+f/exnMXz48Pj85z9f9JSKU1dXl96cM2dOepPK0djYmNorlUqFXOd/q66uLubOnZvanDNnTgwYMCC1CVSmzPcnaW5uTmsRMWXKlLRWfX19WqvS9e/fP4466qi4/PLLy956+umn49FHH41ddtml7C2gMtTU1MSQIUPizTffTGsuXbo0li9fHn379k1rAgAUrX///mmtJUuWpLW6glWrVsW6devSepnXCh3DV7/61Vi4cGFqc6+99oorr7wyampqUruV5lvf+lYsWrQofv7zn6d2v/jFL8ahhx7quRtQNtdee22cdtpp0draWki/e/fucf3118cee+xRSJ88mc9yu3XrltYCoPyqih4AAAAAAHRc8+bNS+3V1dVFqVRKbZJj7dq1cffdd8ctt9wSK1asKHrOeunfv38cfvjhsccee6T+BWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOr+RI0fGmWeeGXfffXe88MIL8cUvfjEGDhxY9KyIiPjiF78YV155ZdEzKs7GG2+c3nz11VfTm1SGpUuXxqJFi1Kbw4YNix49eqQ230kRn2uvvfZaehOoTJnvUdLc3JzW6uqeffbZeOSRR1JaH/zgB2OLLbZIaXUU9fX1aa2Ghoa0FlAZ3D8AAJRf5vOrJUuWpLW6guzzWSnPOqkMjz32WJx//vmpzaFDh8YVV1wR3bt3T+1Wqp/+9Kex1157pTbffPPN+MlPfpLaBLqOm266KU488cTCnrHV1tbGVVdd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22+/7aQLAABgU7Vq1ZQrVy5rvWXLlllrZRXLly+31qpXr561FoLXhQsXrPZC5Z7docLmn+m2nysA7Lp48aI6duyo+fPnO9uQN29ezZw5U7Vr13a2AaFv165d8jzP906ePHlUokQJ3zsAAPvCXA8AAAAAAAAAEFp27dpltRcfH2+1l91FR0frhhtucD3jD0VHR6tp06a6+eablSdPHtdzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgCwnNjZWDz30kNVmZmamhgwZYrXpUmJiopPuhx9+6KSLwElPT9dnn31mvRsTE6OuXbta716NIkWK6Oabb7be3bVrlyZNmmS9CyA41KhRw0pn27ZtVjpZ0eHDhzVt2jTXMxBiMjIyNGLECNczrlrlypWt9tauXWu1h19LT0/Xhg0brPViYmJC+r5ztWrV0rXXXmu9+91332nVqlXWuwAAADaFh4erbt261nrff/+9tVZWYfMxq1+/vrUWgldGRobrCbgKmZmZricAyAJSUlLUuXNnzZkzx9mGXLlyafr06apXr56zDcgabF27tXUtGgBgX5jrAQAAAAAAAABCy+7du6324uLirPYglSlTRuXLl3c94zeVKVNG3bt3V6VKlWSMcT0HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyLKefvpp5c6d22pz/PjxWr9+vdWmKz179lRkZKT17siRI3X06FHrXQTOV199pQMHDljvduzYUXny5LHevVp33HGHk+6bb77ppAvAvVq1alnpbNmyxUonKxo1apTS0tJcz0AIGj58uOsJV61KlSpWe2vWrLHaw69t2bJFFy9etNarVKmSwsLCrPX84Or1wxtvvOGkCwAAYFOjRo2stRYsWGCtlRWkpKRo6dKl1noJCQnWWghetq+Tnj9/3movq7P5eLq4pg7Af6mpqerWrZtmzpzpbENMTIymTp1q9etUZF2bN2+20qlZs6aVDgDAvtC+ygoAAAAAAADAqszMTO3Zs8dqMy4uzmoP/5aQkKAcOXK4nvGLmJgYtWzZUq1atVLOnDldzwEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACyvMKFC6t///5Wm57naciQIVabrhQqVEitW7e23j1//rzeeecd610EziuvvOKke9tttznpXq0OHTqo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UNIBSeMl3SrJ7pWhf4uQ1FLSh5L2GWMmGWPaGmP4OhwAAIScU6dOWf2hkbCwMJUqVcpaD1emdu3aKlCgwH/989KlS6t79+6qUqWKjDEOlgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwU+HChdWvXz+rTc/zNHjwYKtNV1555RVn7czMTN12223av3+/sw3Z2bx58/Tiiy8669etW1c9evRw1rcpKipKQ4cOdbrh5Zdf1pdfful0A67cokWLVK9ePW3YsMH1FASxli1bWul8//33VjqhZsuWLVq6dKm1Xvv27ZU3r4tbZ+L/atKkiUqXLm2tN2zYMGutQOvZs6fVnud5ev311602s4uMjAy9/fbb1ru9evWy3nShUKFCeu6555xu6NevnxYuXOh0A67chAkT1KhRI+3du9f1FAAAgkavXr2UM2dOa733339fqamp1nrB6siRI/riiy+s9Zo1a6ayZcta6yG0GGNUu3Ztq80JEyYoIyPDajOrGDt2rNVepUqVrP49AeDKfPTRR3rkkUecbrjjjjv08ccfyxjjdAeyn9WrV+vChQu+d1q1auV7AwDgXpjrAQAA4MoYY+obYyZJ+lHSU5KKuF30K0ZSc0ljJO0wxjxhjMnteBOyAWNMK2PMfEmrJd0vKZjeXR0uqZOkaZK2GGPuNcZEOd4EAABwyXbv3m21V7JkSUVGRlpt4vKFh4eradOmv1w0j46O1o033qg2bdood25eBgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZ2ZNPPqmcOXNabU6ePFmrV6+22nShfv36uuOOO5z1Dx06pC5duujixYvONmRHO3bsUI8ePZSZmemkb4zRO++888s9CLKDbt26qVmzZk433H333Zo7d67TDbh8n376qVq0aKEjR464noIgV7p0aVWqVMn3zuLFi31vhKJhw4ZZ7fXu3dtqD7/PGKNbb73VWm/UqFFKS0uz1gukHj16KCIiwmrz888/144dO6w2s4ORI0dq27ZtVpu1a9dWlSpVrDZdevjhh3XNNdc466elpalTp05av369sw24fJ7naciQIerevbvOnTvneg4AAEElT548uuWWW6z19u3bp88//9xaL1i9+eabunDhgrXePffcY62F0NSwYUOrvX379mnixIlWm1nBTz/9pOnTp1ttJiQkWO0BuHzDhg3Tgw8+6HRDr169NGzYMIWFhTndgezpu+++871hjFGLFi187wAA3OOrGQAAQowxppoxZrqkZZI6SQr2n8IoKek1SbuMMY8aYyJdD0LWY4xJMMYskTRLUjPHcy5FRUmfSdpmjLnDZKefpgIAACFr586dVntxcXFWe7hyRYsW1bXXXquyZcuqe/fuqlixYrb6DwYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2VWRIkWc3Gx8yJAh1psuvPrqq8qfP7+z/vLly/WXv/zFWT+7OXv2rDp27Khjx44523D33XcrISHBWd+Vjz76SNHR0c76KSkp6ty5s1asWOFsAy5damqq+vXrpz59+igtLc31HISIli1b+t5YvHix741Qk5GRoZEjR1rr5c+fX23btrXWw5/r3bu3tdaRI0c0bdo0a71AKlKkiFq1amW1mZaWphdeeMFqM6tz9ZgmJiZab7oUFRWljz76yOmGkydPqnXr1tqxY4fTHbg0p0+f1i233KLBgwfL8zzXcwAACEr33HOP1d4///lPZWRkWG0Gk1OnTumDDz6w1subN6+6detmrYfQ1LRpU+vNN954w3oz1L3xxhvWX9c0a9bMag/A5Rk1apTuu+8+p9/z6Nq1q0aOHKnw8HBnG5C92bhGW6NGDRUpUsT3DgDAvTDXAwAAwKUxxuQzxrwvaa2km13vuQIFJb0paaMxprXrMcgajDEljDFjJC2W1ND1nitQStIIScuNMfVdjwEAAPgju3fvttorU6aM1R6uToMGDdSqVSvlzJnT9RQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFj311FPW/zvlkydP1urVq602XShatKheeOEFpxu++OIL/f3vf3e6ITtIT0/Xrbfeqg0bNjjbULBgQQ0dOtRZ36VKlSppwIABTjecPXtWN998s9atW+d0B/7Y9u3blZCQoA8++MD1FISYli1b+t44ePCgtm3b5nsnlEyfPl0HDx601rvlllsUHR1trYc/V7NmTVWrVs1ab9iwYdZagXbnnXdabw4fPlxr1qyx3s2q3n77bet/D0REROjWW2+12gwGN954o+666y6nGw4cOKBWrVppz549Tnfgj61atUp16tRRcnKy6ykAAAS1pk2bqmrVqtZ627ZtU1JSkrVesHnllVd06tQpa7077rhDMTEx1noITTfccIMiIiKsNpcsWaJly5ZZbYayo0eP6vPPP7febdq0qfUmgEvz1Vdf6a677lJmZqazDR06dNCYMWOs/x0C/G+LFy/2vdGqVSvfGwCA4BDmegAAAPhzxpj2kjZKelBSuOM5V6uipG+MMcONMQVcj0HoMsbcLWmTpJ6utwTAdZK+N8a8aozhKicAAAhKu3fvttqLi4uz2rPpwIEDWrp0qesZAWWMcT0BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgANFixbV/fffb707ePBg600XHnjgAdWpU8fphrwRq34AAQAASURBVEGDBumjjz5yuiEr8zxP9913n6ZOnep0x0svvaTChQs73eDSgAEDVLlyZacbjh49qhtvvFErVqxwugO/LTk5WXXq1NHKlStdT0EIuvHGGxUe7v+tSL/77jvfG6EkKSnJai8xMdFqD5fG5udlxowZOnTokLVeIHXp0kXFihWz2szMzFT//v2tNrOqQ4cO6R//+If1bqdOnVSyZEnr3WDw2muvqUiRIk43bNu2TU2aNNH27dud7sBv++CDD5SQkKBt27a5ngIAQEiw/dpg8ODBunDhgtVmMNi/f7/eeustaz1jjB555BFrPYSuPHnyqEGDBta7gwYNst4MVS+++KL1PzerVKmiUqVKWW0CuDQTJ05UYmKiMjIynG1o06aNxo0bp8jISGcbgJ9//lkHDx70vdOyZUvfGwCA4BDmegAAAPh9xphoY8yHkr6WFOt6T4DdKWmdMSbB9RCEFmNMfmPMREnDJOV3PCeQwiU9KWmFMaaK6zEAAAD/186dO6324uLirPZsSEtL0+LFi/X1119r3bp12rFjh+tJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHDVnnrqKcXExFhtTpkyRatXr7badCEsLEyfffaZ8xur9+vXT2PHjnW6Iav661//quHDhzvd0KxZM/Xp08fpBteioqL02WefKSzM7a1+jx8/rhYtWmjx4sVOd+D/O3v2rO6//35169ZNp06dcj0HISpfvnyqV6+e753vvvvO90aoOHLkiKZOnWqtV6pUKTVp0sRaD5eud+/eMsZYaaWnp2vkyJFWWoEWFRWle++913p30aJF+vjjj613s5p+/frp9OnT1rsPPvig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KlWq5Kw/ZcoU3XHHHcrMzHS2waUnn3xSn3zyibN+bGysunXr5qwP4N9+/PFHtWzZUseOHXO2oWLFipo3b56KFi3qbAPwe1avXq2jR4/62oiNjVXdunV9bQAAgk+Y6wEAAGRnxpgCkiZJymsx60n6UdIXkh6VdKOkmpLi/mdHlKQikq6RVF9SN0n/lDRHku13sNxjjOlvuQnHjDHlJI2VFGkxmyFpvaRhkh6U1ETStZJKScotKVpSMUmVJTWUdKukNyQtlHTW4k5JGmKM6WS5CQAAsrGUlBQdPHjQarN06dJWe1fqzJkzmj59uhYuXKjU1NSrPu/06dP64YcfArAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANx55plnFBUVZbU5depUrVixwmrTpapVq+qLL75QWFhw3Jb04sWL6tevn1q3bq09e/a4nhMU1qxZo+uuu05Dhw6V53mu50iSqlWrptGjR8sY43pKyChRooQmTZqknDlzup7yK2lpaXrzzTdVsWJFffzxx0pPT3c9KehlZmbqyy+/VPXq1dWrVy9t3LjR9SRkU506+X8rwtmzZ/veCEa7d+/W3LlzrfUiIiLUo0cPaz1cvcTERGstz/M0fPhwa71AK1u2rB555BFn/czMTD333HO65ZZbdPas7dvGBp+ffvpJDRo00OTJk53ueO211xQeHu50Q7CrXr26Ro8eHXSP07lz5/T888+rSpUqGjduXNC8Rg1mKSkp+vDDD1WhQgXdf//92rVrl+tJAABkK08//bSKFy9uvfvMM89oxIgR1ruB9vzzz+uzzz6z3u3atasaN25svYusxRijv/71r043fPnll0pMTFRKSorTHTZlZGSof//+ev31153uePrppxUREeF0A5Ddbdu2Tc2bN9ehQ4ecbShbtqzmzZunEiVKONsA/BEb12I7duzIe3sAIBsKjncDAwCQDRljwiR9KamcpeRGSc9IivM8r7Lnebd5nve253kLPM9b53neHs/zzniel+Z53lHP87Z6nveD53nJnucN8DyvlaRCklpIGi7pjKXdrxtjmlhqwTFjTE5JEyUVtJRcLulhScU8z6vhed69nud96HneIs/zNniet8/zvHOe56V6nnfY87wfPc9b5nneGM/znvA8r+n/bO0oabwkG1d5jKTPjTGVLLQAAAC0d+9eqz8I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1tGjR13P+10ZGRlau3atPvnkE/Xu3VvFihVT7dq19fTTT2vhwoXO7ksIAACuXHR0tL744gvlyJHD2Ybjx4+rd+/eatmyZVC87liwYIFq166tp556SikpKc52VK1aVa+++qqzPrKHN954Q7Gxsa5n/CIjI0P/+te/VLFiRT322GPavXu360l/6sCBA3ruuedUvnx5vfvuu0pNTXU96ReFCxfWu+++63oGAACX5LvvvtPx48d9bfTq1cvX8wEAwS3C9QAAALKZtyRF+XDuWUltPc8Lip9o8jzvaWNMtCQ/fvLhTmPMh57nLffhbFhmjAmX5Nd37A9Kau553nafzr9knudlGGPukBQtyY939D1jjEnyPC/4ryABAICQcurUKZ06dcpaLywsTKVKlbLW+y3p6en64YcftGHDBnme53SLJK1atUply5ZV/vz5XU8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgMtWpkwZ3XHHHfrXv/5ltTt48GBNmzbNajMYFC5cWPPnz1erVq20fv1613P+0NmzZzVixAiNGDFChQoVUtu2bdWhQwe1aNFCBQsWdD1PBw8e1KxZs/T1119r5syZOnPmjOtJl2zgwIF68cUXXc/I8t5++21FR0fr1VdfdT3limzdulVbt27Vp59+KkkqWbKk6tSpo7p166pWrVqqXLmyypUrp6goP26/+NsuXLigLVu2aOPGjdq0aZNWrlyp5cuX6+TJk9Y2ALa0bt1aBQsW1PHjx31rTJ48WQMHDvTt/GAxbNgwq70ePXooIoJbw4eyypUrq06dOlq1apWV3tKlS7VlyxZVrlzZSs8vL7zwglatWqWZM2e6nvJftm/frueee07PPfecKlasqC5duqhz585q2LChjDGu50mSUlJSNHfuXE2cOFFTpkzR4cOHXU/6Qy+88IJat27tekaWERERoTFjxuiuu+7S6NGjXc+5bJ7naf369Vq/fr3efffft6IuU6aM6tatqzp16qhWrVq65pprVLZsWYWHh1vbdebMGW3evFkbN27Uxo0btWLFCq1YsULnzp2ztgEAANhRvXp1/fOf/9Sjjz7qdMfcuXN17bXX6tZbb9Vzzz1n/XXed999pyFDhmjOnDlWu78lKipKX3zxhWJiYlxPQRaXL18+ffrpp2rbtq3rKb+SkpKit956S++8847atGmjvn37ql27dlZfE/0Rz/M0Z84cffTRR5oyZYrS09NdT/pNH3zwgYoUKeJ6BgAAl2Ty5Mm+N2699VbfGwCA4MU7UQAAsMQY01qSH++MuiCpg+d53/tw9hXzPO8RY0wOSX0CfLSR9LqkxgE+F278RVI1H849Jqml53lbfTj7iniel26M6SVpoqR2AT4+h6SXJN0W4HMBAEA2t2vXLqu9EiVKWP3B4v/rwIED+vbbb3X69GlnG/6vjIwMffvtt+rYsWPQ/KASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFyOgQMHasSIEUpPT7fWnD59upYvX6769etbawaLYsWKacGCBWrTpo1++OEH13MuybFjxzRy5EiNHDlSxhhVq1ZNjRs31vXXX6+aNWuqSpUqioyM9K1/8eJFbdy4UWvXrtXixYu1aNEibd0aNLfAuiwvvviiBg4c6HpGtvHKK6+oePHievLJJ+V5nus5V2X//v3av3+/pk6d+ss/Cw8PV5kyZVS+fHnFxsYqNjZWJUuWVPHixZU/f37ly5dP+fLlU968eRUVFaXIyEhFRkYqIiJCGRkZSktLU2pqqlJTU3X+/HkdP378l49jx45pz5492r17968+MjMzHT4KgD2RkZHq1q2bPv30U98aP/zwgw4cOKASJUr41nDtxx9/1JIlS6w2ExMTrfbgj8TERK1atcpaLykpSUOHDrXW80NYWJi+/PJL1atXT9u2bXM953dt3bpVr7zyil555RXly5dPderUUb169XTdddepXr16KlOmjO8bMjMztWXLFv3www/64YcftGLFCq1Zs0YpKSm+twOhe/fuGjBggOsZWU5kZKRGjRqlokWL6q233nI956rt3LlTO3fu1IQJE375Z1FRUSpXrpzKlSv3y2uHkiVLqlixYr96/ZAnT55fXj9ERET88vrhP68dUlNTde7cuV+9fjh69Ogvrxn27NmjXbt2ae/evQ4fAQAAYFv//v01Z86cX33/0oXMzEx98cUXGj16tFq2bKm+ffuqXbt2ypEjhy+9EydOaNy4cfroo4+0evVqXxpX4pVXXlGtWrVcz0A2cfPNN+vxxx/XG2+84XrKf8nMzNT06dM1ffp0lShRQu3bt1e7du3UsmVL5cqVy+qWixcvav78+Zo2bZq+/vpr7d6922r/cvXt21fdu3d3PQMAgEs2ZcoUX8+vWrWqatSo4WsDABDcIlwPAAAgOzDGhEl61afj+3uet8Cns6/Wg5KqSrohwOfeYIzp4nnexACfC4uMMbkkDfHhaE9Sb8/zNvpw9lXxPC/NGNNL0ipJFQN8fG9jzJue560M8LkAACAbs/0mkPj4eKu9/0hNTdWyZcu0efNmJ/0/c+jQIW3cuFHVq1d3PQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALlu5cuV0++23KykpyWp38ODBmj59utVmsChYsKDmzp2rdu3aadGiRa7nXBbP87RhwwZt2LBBH374oSQpMjJSlStXVvny5VWmTBmVLVtWpUqVUsGCBVWoUCEVLFhQOXPmVFRUlKKiohQREaG0tDSlpqYqNTVV58+f17Fjx3T8+HEdPXpUe/bs0c6dO7Vz505t3bpVW7duVUZGhuNf+dV766239Mgjj7ieke08/vjjKlq0qO655x6lpaW5nhNQGRkZ2rZtm7Zt2+Z6CpAl3Xnnnfr00099O9/zPH399dfq06ePbw3Xhg0bZrVXrlw5XX/99Vab8EevXr301FNPKTMz00pv5MiReumllxQeHm6l55cCBQpo6tSpuuGGG3Ts2DHXc/7UqVOnNH/+fM2fP/+Xf1awYEGVLVtWcXFxKl269C8fsbGxyp07t2JiYv7rw/M8Xbhw4b8+Tp8+rT179vzysXv3bu3Zs0fbtm3TuXPnHP7Kr1yDBg2sv3bPTowxevPNN1WsWDENGDDA9ZyAS01N1ZYtW7RlyxbXUwAAQBZkjNGoUaNUr149bd261fUceZ6n2bNna/bs2cqdO7duvvlmtW7dWk2aNFHFihWv+NyMjAytXbtWCxcu1PTp0zV//nylp6cHcPnVu+2227gWAev++c9/avHixVq2bJnrKb/rwIED+vTTT/Xpp58qOjpaN9xwg+rXr686deqoTp06KleuXEB7e/bs0cqVK7Vq1Sr98MMPWrhwoc6fPx/Qhl9q1qypt956y/UMAAAu2caNG31/38Sdd97p6/kAgOAX4XoAAADZxC2SrvXh3C89z/vMh3MDwvO8DGPMrZLWSCoU4OMHG2MmeZ7nBfhc2NNPUjEfzv2n53mzfDg3IDzPO2uM6SFpqaToAB5tJA2W1CGAZwIAgGxu9+7dVntxcXFWe9K/3wizaNEinT171nr7cixfvlxxcXHKmzev6ykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcNmeffZZff7558rIyLDWnDFjhpYvX6769etbawaTPHnyaObMmbrtttuUnJzses5VSUtL0/r167V+/XrXU4JSVFSU/vWvf+m2225zPSXbuu2221SsWDH16NFDJ0+edD0HQIho1KiRKlWqpB9//NG3xrhx49SnTx/fzncpIyNDI0eOtNq89dZbrfbgn5IlS6pZs2aaN2+eld6BAwc0Y8YMtW/f3krPT5UrV9a0adPUokULnTt3zvWcy3b8+HEdP35cK1eudD0l6Pznc5srVy7XU7K8Z555RqVKldJf/vIXpaSkuJ4DAAAQMvLly6dJkyapQYMGQXUv4rNnz2rcuHEaN26cJKlw4cKqXr26qlatqri4OJUoUUKFCxdWjhw5lCNHDmVmZurixYs6f/68Dh8+rAMHDmjHjh3auHGjNm3aFFS/tv+rdu3a+uSTT1zPQDYUGRmp5ORk1a9fX/v27XM950+lpKRo7ty5mjt37i//LH/+/CpXrpxKlSql0qVLq1SpUipevLhiYmJ+9WGM0YULF3ThwoVf/Vmxd+9e7dmzR3v37tX27dt17Ngxh7/CK1e0aFFNnjxZOXLkcD0FAIBL9p+v9f0SERGhO+64w9cGACD4RbgeAABAVmeMMZKe8+HonyX19eHcgPI8b68x5i5JUySZAB5dQ1JnSRMDeCYsMcbklPSED0cvlvQ3H84NKM/z1hhjnpD0XoCPbm+MqeN53qoAnwsAALKpnTt3Wu3Fx8dba6WkpOj777/X1q1brTWvRnp6uhYtWqS2bdvq3y8zAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACB0lC9fXrfddptGjBhhtTto0CDNmDHDajOYxMTEaPz48Xr66af12muvuZ4DHxQsWFATJ05UkyZNXE/J9lq1aqXly5erc+fO2rRpk+s5AELEvffeq6efftq38+fPn6/Dhw+raNGivjVcmTFjhg4cOGC1mZiYaLUHfyUmJmrevHnWeklJSWrfvr21np8aNGig8ePHq1OnTkpNTXU9BwFQqlQpzZw5U4UKFXI9Jdu47bbbdM0116hr167at2+f6zkAAAAho2rVqvriiy/UtWtXZWRkuJ7zm44ePaoFCxZowYIFrqcEVPHixTVx4kTFxMS4noJsqmTJkvr666/VuHFjnTt3zvWcy3by5EmtWrVKq1atcj3FmejoaE2aNMnqvewBAAiEsWPH+np+u3btVLx4cV8bAIDgF+Z6AAAA2UBnSdf6cO69nued8eHcgPM8b6okP36q63kfzoQdfSUF+l3mqZLu8jwvPcDn+sLzvPclLfDh6Od8OBMAAGRTu3fvttqz9caOHTt26KuvvtLWrVut9AJl3759+vHHH13PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAr8uyzzyo8PNxq85tvvtGyZcusNoONMUavvvqqPv74Y0VERLiegwAqX768lixZoiZNmriegv9RsWJFLV26VJ06dXI9BQ40bdpU/fv3dz0DIebOO+9UZGSkb+dnZGRo3Lhxvp3vUlJSktVe7dq1VaVKFatN+Ktbt26Kjo621vv666919OhRaz2/tWnTRsnJyVYfQ/gjPj5e3377reLi4lxPyXbq16+vFStWKCEhwfUUONCtWzclJia6ngEAQEjq2LGj3n//fdczspW8efNqxowZ1u4/Dfye2rVra/z48YqKinI9BZcpIiJCY8aM0fXXX+96CgAAl2XNmjXasmWLr417773X1/MBAKEhzPUAAACygcd9OHOc53kLfTjXTwMlnQ3wmbWNMc0CfCZ8ZowJl+THTz+87Xnezz6c66dHJWUG+MxOxphyAT4TAABkQ5mZmdq9e7fVpt8/XHLhwgXNnj1bs2fP1oULF3xt+WXp0qU6d+6c6xkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcNkqVqyo3r17W+8OHjzYejMY9enTR7Nnz1bx4sVdT0EA3HzzzVq2bJmuueYa11Pwf+TJk0cTJ07UCy+8oIiICNdzYEHOnDn1zjvvaP78+SpXjtvI4fIULVpU7du397UxZswYX8934ejRo/r666+tNhMTE6324L98+fL5/vvvf0tLS9OoUaOs9Wxo166dpkyZopiYGNdTcIXKly+vhQsX8jWMQ8WLF9f8+fP18MMPu54CSwoVKqQvv/xS48ePV5EiRVzPAQAgZPXt25frP5ZER0dr0qRJqlWrluspgCSpTZs2GjNmDNdgQkhYWJhGjBihzp07u54CAMBl8/taa4kSJdS2bVtfGwCA0BDmegAAAFmZMaaOpBsCfOxFSU8H+EzfeZ53QNKLPhz9qA9nwl+dJJUJ8JmHJb0Q4DN953neWkmfBvjYMEn9A3wmAADIhg4dOqTU1FRrvejoaBUtWtSXsz3P09atW/XVV19px44dvjRsSU9P18GDB13PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAr8txzzyk8PNxq85tvvtGyZcusNoNVs2bNtHr1ajVr1sz1FFyhsLAw/f3vf9e0adNUqFAh13PwO4wxevbZZ7Vo0SKVK1fO9Rz4qEWLFlq3bp0efvhhGWNcz0GIuvfee309f/Hixdq7d6+vDdtGjRqltLQ0a72wsDD16tXLWg/2JCYmWu0lJSVZ7dlw0003aebMmSpYsKDrKbhMtWvX1sKFCxUXF+d6SrYXFRWld955R1OnTlWRIkVcz4GPevTooU2bNvF1BQAAATJo0CA99thjrmdkaZGRkRozZoxuvPFG11OAX+nSpYtGjx6tqKgo11PwJ8LDw5WUlKTevXu7ngIAwBUZO3asr+ffeeed1t9LBwAITmGuBwAAkMX19+HMNzzP2+nDuTa8KWlHgM/sYIwpG+Az4S8/fl8853neaR/OteF5SYHefrcxJneAzwQAANnM7t27rfbi4uIUFhb4b1eePXtW33zzjebPn6+UlJSAn29TkSJF1KVLF5UvX971FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4Itdcc4169eplvTto0CDrzWBVvHhxzZkzRwMGDJAxxvUcXIaiRYtq1qxZev755/nchYiGDRtq9erVSkxMdD0FAVa8eHF98cUXmjNnDvcSwVVr06aNYmNjfTvf8zyNHTvWt/NdSEpKstpr2rSpr58juNO2bVvlz5/fWm/dunVauXKltZ4tjRs31tKlS1WhQgXXU3CJ2rdvr0WLFqlkyZKup+B/adeundatW6ebbrrJ9RQEWIUKFfTNN99o7NixKlq0qOs5AABkKW+88Yaefvpp1zOypOjoaCUnJ6tz586upwC/qXv37poyZYpy5szpegp+R3R0tMaPH6877rjD9RQAAK7I0qVLtXPnTl8b9957r6/nAwBCR5jrAQAAZFXGmLySegT42AuS3gjwmdZ4npci6bUAHxsm6e4AnwmfGGMqSmoa4GP3SRoe4DOt8TzviKSPA3ysH3/+AACAbGbXrl1We3FxcQE9z/M8bd68WePGjdOePXsCerZt4eHhatCggTp16qRChQq5ngMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+W5555TWJjd22nOnDlTS5cutdoMZuHh4XrppZc0f/58lS1b1vUcXIIuXbpo/fr1atGihespuEx58+bVqFGjNH78eJUoUcL1HFyl8PBw9evXT1u2bFHv3r1dz0EWER4errvv9ve2nGPGjPH1fJtWrlypdevWWW0mJiZa7cGe6OhodevWzWozKSnJas+WihUraunSpWrevLnrKfgTjz32mCZNmqRcuXK5noLfULx4cX3zzTf68MMPlS9fPtdzcJVy5Mihv/3tb1q/fr1at27teg4AAFnW0KFD9dxzz7mekaXkyJFDEydOVPv27V1PAf5Q69atNX/+fJUqVcr1FPwfxYoV0+zZs9W5c2fXUwAAuGJ+X2Nt2rSpKlSo4GsDABA67L6rGgCA7OVWSTEBPnOE53nHAnymbcMlHQ/wmXcaY/i6JjTc48OZ73qel+bDuTa9Iyk9wGf6+1MCAAAgy9u1a5fVXnx8fMDOOn36tKZOnapFixYpLS20v1QsXry4brnlFtWsWdP6fyQDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPxQuXJl9ezZ03p38ODB1pvBrmnTplq3bp369Onjegp+R/78+fX5558rOTlZRYsWdT0HV6Fbt27atGmT7rvvPhljXM/BFWjVqpXWrFmj9957T/ny5XM9B1lMnz59FB4e7tv5K1as0NatW30736Zhw4ZZ7UVHR6tbt25Wm7ArMTHRam/06NFKSUmx2rSlUKFCmjVrlp599lm+3glCefPm1YQJE/TGG2/4+ncOrp4xRvfff782bdqkLl26uJ6DK9SzZ09t2bJFQ4YMUY4cOVzPAQAgy/vHP/6h9957j691A6BIkSKaN2+ebr75ZtdTgEtSv359rVq1Ss2bN3c9Bf8jISFBq1atUuPGjV1PAQDgimVmZmrcuHG+Nvr16+fr+QCA0BLmegAAAFnY3QE+z5P0ZoDPtM7zvPOSPgrwsXGS+G59kDPGhEm6I8DHnpX0cYDPtM7zvL2SvgrwsTcYYyoG+EwAAJCN7N6922ovPj7+qs/wPE/r16/X+PHjdeDAgQCscicyMlKNGjVShw4d+KFiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFnO888/r7Awu7fUnDlzppYsWWK1GQpy586tjz/+WDNnzlS5cuVcz8H/0rFjR23YsEG333676ykIkPz58+uTTz7RggULVK1aNddzcImqVKmiqVOnatasWapevbrrOciiSpcurc6dO/vaGDFihK/n25CSkqIvv/zSarNdu3bKnz+/1Sbsatq0qWJjY631Tpw4oUmTJlnr2RYeHq4XXnhB06dPV7FixVzPwf+47rrrtGrVKnXt2tX1FFyGkiVLKjk5WcnJyYqLi3M9B5eoQYMG+v777zVmzJiA3KMRAABcun79+mny5MnKnTu36ykhq1KlSlq6dKmuv/5611OAy1KkSBHNmjVLTz/9tOsp2d5DDz2kBQsWqGTJkq6nAABwVWbNmqX9+/f7dn6pUqXUpUsX384HAIQeu++oBgAgmzDGlJXUIMDHfu153k8BPtOV9ySlBvjMWwN8HgKvqaRAfxd/mOd5JwN8piuv+3BmLx/OBAAA2cTGjRut9q72BxdOnDihKVOmaMmSJUpPTw/QKjdiY2N1yy23qFq1ajLGuJ4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFXpUoVde/e3Xp38ODB1puh4qabbtLGjRs1ZMgQxcTEuJ6TrZUvX17Tpk3T5MmTFRsb63oOfNCkSROtXbtWH374oYoWLep6Dn5HuXLlNHz4cK1fv17t2rVzPQfZQP/+/X09f8SIEcrMzPS14beJEyfqxIkTVpu9e/e22oN9YWFh6tXL7u0/k5KSrPZcaNOmjTZu3Gj9scWvRUVF6R//+IeWLFmi8uXLu56DK9SlSxf9+OOPevHFF5UnTx7Xc/A7atasqUmTJmnp0qW6/vrrXc8BACDbateunb777jtVqFDB9ZSQ07ZtWy1ZskTlypVzPQW4IuHh4Ro6dKiSk5OVN29e13OynZw5c2rUqFF69913FRkZ6XoOAABXze9rOQ888IAiIiJ8bQAAQkuY6wEAAGRRfvzU0mc+nOmE53kHJE0L8LGdjTF8lzi48fviD3iet0rS6gAf2yPA5wEAgGwiNTVVp0+fttqMj4+/ov9fZmamVq9ereTkZB06dCjAq+yKiopS06ZN1bZtW36AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECW9/zzz8sYY7U5a9YsLVmyxGozlOTIkUN/+9vftHnzZnXp0sX1nGwnZ86cGjJkiDZs2KC2bdu6ngOfhYeH6/7779fPP/+sgQMHKiYmxvUk/I+4uDh99NFH2rJli+68806Fh4e7noRsokmTJqpRo4Zv5+/du1ezZ8/27XwbkpKSrPby5cun9u3bW23CjcTERKu92bNna+/evVabLhQqVEhffvmlkpOTFRsb63pOtlO/fn2tWLFCzz33nCIiIlzPwVXKkSOHBg4cqJ9//ln3338/X6MGkapVq2rMmDFavXq1OnXq5HoOAACQVLNmTa1cuVI9evRwPSUkRERE6J///KemTp2qAgUKuJ4DXLUuXbpo48aN6tq1q+sp2Ua7du20ceNG699jAwDAL8ePH9fkyZN9Oz86Olr33Xefb+cDAEJTmOsBAABkUYG+WnRC0swAn+nalwE+r6CklgE+EwFijAmXFOgrKBs9z1sf4DNdC/Tvi+rGmCoBPhMAAGQD/4+9Ow+zu67vv//6nslkm0kCBEgghFVAQFBARFQQEa1iXVjdbtfLX2u12qK0qChLQUVxuVFpXW5Bf7/WihtqtXWhKlYRZRGRRZAtArI4QzaW7J/7DzW/UhWSyec731kej+s6F3FyzvPz/ubkncwkOZ5bbrllVM/bbLPNMnv27I1+3NDQUC644IJceumlWbt2bQuTjZ4ddtghxx57bHbfffdR/z/BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADowl577ZVjjjlm1M899dRTR/3M8WaHHXbIl770pVx88cV52tOe1vU4E15/f39e97rX5aabbsrJJ5+c6dOndz0So2jWrFl55zvfmZtuuinHH398Zs6c2fVIk9aee+6ZT33qU7nxxhvzl3/5l+nv7+96JCahN7zhDa32zzvvvFb7bbrtttty4YUXjuqZRx99dKZNmzaqZ9KNfffdN3vsMXpv/7lu3bp8+tOfHrXzunbkkUfm+uuvz1ve8hY7NQrmzZuXT37yk7nkkkuy9957dz0OlW299db5p3/6p1x//fV59atf7XPWDj3xiU/MBRdckKuvvjovfOELvQchAIwxs2fPzvnnn5+PfvSjGRwc7HqcMWuXXXbJ9773vZx44ok+n2FC2W677fLFL34x//7v/56dd96563EmrIULF+ZLX/pSvva1r2XHHXfsehwAqOYzn/lMVq5c2Vr/RS96UbbaaqvW+gCMT72uBwCAiaZpmoVJ9q+c/WIpZVXlZte+luS+ys0jK/eo56Ak8yo3/7Vybyz4bJJSuWkvAICN9q1vfWtUz9t+++036v5r167NpZdemgsuuCDDw8MtTTU6pk+fnqc//el55jOfmYGBga7HAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYVe94xzvSNM2onvmtb30rF1988aieOV4ddNBB+c53vpNvfetbecITntD1OBNOr9fLy172slx//fU555xzMn/+/K5HokPbbLNNPvCBD+TWW2/NiSeemFmzZnU90qRxyCGH5Mtf/nKuvvrqvOIVr0h/f3/XIzGJvfSlL80WW2zRWv/LX/5yFi9e3Fq/TZ/+9Kezbt26UT3zpS996aieR7dG+/n+1Kc+NarndW1gYCDvfve7c8011+TYY48d9a8DJ4OZM2fmxBNPzA033JBXv/rVfownuF122SWf/OQn88tf/jKvfe1rM23atK5HmhR6vV6e85zn5Lvf/W5+9KMf5QUveIFdA4Ax7i//8i/z85//PM94xjO6HmVM6fV6Of7443PVVVflyU9+ctfjQGue/exn55prrsnb3/72TJ06tetxJowpU6bkzW9+c6699toceeSRXY8DANWdd955rfbf+MY3ttoHYHzqdT0AAExAR7TQ/NcWmp0qpTyY5MuVs8+u3KOe57TQ/GwLzU6VUm5L8sPK2TZ+TQIAJrgf//jHo3rejjvuuMH3vfvuu/PFL34xP/3pT1NKaW+oUbDLLrvk2GOPzS677OLFAQAAAAAAAAAAAAAAAAAAAAAAAAAAAADApLT33nvnqKOOGvVzTz311FE/czx7xjOekR//+Mf59re/nWc961ldjzPuzZw5M6973etyww035H//7/+dnXbaqeuRGEO22mqrnHnmmfnVr36V97///XnUox7V9UgT0sDAQP7iL/4iV111VS666KI8//nP9/4hjAkzZszIa17zmtb6K1euzGc+85nW+m0ppeRTn/rUqJ657bbb5tBDDx3VM+nWS17yklE978Ybb8x//dd/jeqZY8Euu+ySz33uc7nyyivzghe8oOtxJoTp06fnb//2b3PzzTfnzDPPzOzZs7seiVG0ww475J/+6Z9y66235pRTTsk222zT9UgT0hZbbJETTjghv/zlL/O1r33N5wgAMM7suOOO+da3vpXzzjsv8+bN63qczu2333754Q9/mA984AOZOXNm1+NA66ZPn57TTz891157bV7zmtdk6tSpXY80bk2ZMiUvf/nL8/Of/zzve9/7Mjg42PVIAFDdVVddlSuuuKK1/pOe9KTst99+rfUBGL96XQ8AABPQEZV7dyf5XuXmWPHZyr3tmqbZp3KTOmrvxWWllJsqN8eK2nvxxKZpNq/cBAAmuO23337Mnbd69er86Ec/yle/+tUsWbKk/aFaNDAwkD/7sz/L05/+9MyYMaPrcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOnXyySenaZpRPfPb3/52Lr744lE9cyI4/PDD8x//8R+5+uqr86pXvSrTp0/veqRxZd68eTnttNPyq1/9Kuecc0522WWXrkdiDNtss83ypje9KTfccEO+/vWv54gjjkiv562IN9XjH//4nHPOObnjjjvysY99LHvvvXfXI8EfeP3rX58pU6a01j/vvPNaa7fl+9//fm66aXTfwvJFL3qRX3cnmZ122ikHHXTQqJ557rnnjup5Y8k+++yTCy64ID/72c/yyle+MtOmTet6pHFnyy23zEknnZRbbrklH/zgBzNv3ryuR6JD8+fPz6mnnppFixbls5/9bA4++OCuRxr3mqbJoYcemk9/+tO5/fbbc9ZZZ2XnnXfueiwAYBO88pWvzI033piTTjppUr6n8IIFC/KpT30ql112WZ74xCd2PQ6Mul122SWf+MQncvPNN+f444/PwMBA1yONGzNmzMjrX//63Hjjjfn0pz+dRz/60V2PBACtafvvUv/mb/6m1T4A45d/oQIAFTVN05/ksMrZb5dS1lVujhXfTbKqcvNZlXtsoqZptk2yT+XsNyr3xpJvVu71JXlG5SYAMMHdcccdo3re9ttv/7Dff8cdd+SLX/xifv7zn6eUMkpTtWP33XfPMccckx122KHrUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxoR99tknL3jBC0b93FNOOWXUz5wo9tprr5x77rn59a9/nQ996EN57GMf2/VIY1ZfX1+OOOKIfOlLX8ptt92Wk08+OXPnzu16LMaRpmlyxBFH5Otf/3p+9atf5T3veU/23nvvrscaV7bbbruccMIJueaaa3LppZfmda97XebMmdP1WPAnbb/99nnhC1/YWv/yyy/PT3/609b6bTj33HNH/cyXvvSlo34m3Rvt5/3zn/987rvvvlE9c6zZZ599ct5552XRokU55ZRTsnDhwq5HGvMe97jH5WMf+1h+9atf5Ywzzsj8+fO7HokxpL+/Py984Qvz/e9/PzfccEPe8Y53ZOedd+56rHFlt912y6mnnpqbb7453/3ud/Pyl788M2bM6HosAKCSwcHBnHHGGbnhhhvyute9LtOnT+96pNbNnz8/Z511Vm644Ya84hWvSNM0XY8EnVqwYEE+8IEPZNGiRf7e7hFsttlmOfHEE3PrrbfmIx/5iPdlB2DCW7lyZf75n/+5tf7OO++co48+urU+AONbr+sBAGCCOSDJYOXmf1bujRmllAeSXFI5e1jlHpvu0BaaE3kvbkzyq8pZewEAbJShoaFRPW/HHXf8ox9ftWpVvv/97+frX/96li1bNqoz1TZr1qw85znPyVOf+tRMmzat63EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMaUk08+edTPvPDCC/PDH/5w1M+dSDbffPO84Q1vyJVXXpnLLrssf/3Xf51tt92267HGhL333jtnnHFGFi1alK9//es58sgj09/f3/VYjHMLFizI3//93+eqq67KlVdemb/7u7/Lrrvu2vVYY9LChQtz/PHH5+KLL86vfvWrnHXWWdlzzz27Hgs22Iknnthq/x//8R9b7de0fPnyfOELXxjVMx/96Ednv/32G9UzGRuOO+64TJkyZdTOu//++/P5z39+1M4by+bNm5dTTz01t956a775zW/mRS96UaZPn971WGPGlltumTe+8Y356U9/mp/+9Kf5i7/4i8yYMaPrsRjjdt111/zDP/xDbrrppvzgBz/I6173umy33XZdjzUm7b777jnppJNy5ZVX5vrrr88pp5zyJ99jEQCYGLbbbrucc845ufXWW/P3f//3mTNnTtcjVbfzzjvnH//xH3PrrbfmhBNOyMyZM7seCcaUuXPn5rTTTsudd96Zr3zlKznuuON8rZ1k6tSpecELXpAvfOELueuuu3LmmWdm66237nosABgV559/foaGhlrrn3DCCenr62utD8D41ut6AACYYJ7aQvPCFppjSe3re3LTNKP3rzHZELX34oEkF1dujjW19+LQyj0AYAIrpWR4eHhUz/xjLzZYtGhRPv/5z+cXv/jFqM5SW9M02WuvvXLMMcdkwYIFXY8DAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAmPe5xj8vzn//8UT/31FNPHfUzJ6r9998/H/7wh3P77bfnhz/8Yd70pjdlxx137HqsUbXffvvlXe96V2644YZcddVVOemkk7xXAa157GMfm/e+97254YYbct111+W9731vDj744En7hvZ9fX056KCDcvrpp+fyyy/PokWL8oEPfCAHHXRQmqbpejzYaHvvvXeOOOKI1vqf+cxnsmTJktb6NX3uc5/LAw88MKpnvuQlLxnV8xg7ttpqqzzzmc8c1TPPPffcUT1vrOv1ennmM5+Zf/3Xf81vfvObfPazn81xxx2XwcHBrkcbdfPnz89rX/vafOtb38qdd96Zs88+O4973OO6Hotx6slPfnLOOeec3Hbbbbniiity2mmnZf/995+0nytPnTo1T3/60/P+978/v/jFL/KLX/wiZ5xxRh772Md2PRoAMMrmzZuX97znPfn1r3+dT37ykznwwAO7HmmT9Pf356ijjso3vvGN3Hjjjfmrv/qrTJs2reuxYEzr7+/P8573vJx//vm56667ct555+Xwww9Pr9frerRR0zRNDj744HzsYx/LXXfdlQsuuCBHH320Xz8AmHTOOeec1tpbb711XvWqV7XWB2D8a0opXc8AABNG0zTfTFLzXwJeX0p5dMXemNM0zUFJLq6cPaiUcknlJiPUNM31SXarmPxmKeVZFXtjTtM0L07ymcrZbUopd1Vu0qKmaWYnWbqh91+6dGlmz57d4kQATBbLli3LYYcdNqpnXnbZZeu/vWLFilx88cW58cYbR3WGNmy22WY55JBDMn/+/K5HAQAAAAAAAAAAAAAAAAAAAAAAAGjF9ddfn3Xr1m3UY3q9XnbfffeWJgIAAABgrLn22mtz4YUX5tvf/nYuuuiiLF++vOuRqpk/f34OP/zwPOMZz8gznvGMbLPNNl2PBFmyZEn+67/+K9/73vdy0UUX5corr8zatWu7Hqu6pmmy995756lPfWqe+tSn5mlPe1q22GKLrseCqr7//e/nqU99amv9D3zgAzn++ONb6wPUtHLlylx00UXrv7b42c9+llJK12NVNXXq1Bx00EHrv8Y44IAD0uv1uh6LCe6ee+7JRRddlIsuuijf+973cu2110643UqSvr6+7Lfffjn00EPXfw0xODjY9VgAwBh1zTXX5Pzzz88XvvCFXHfddV2P84h6vV4OPvjgHH300TnuuOMyb968rkeCCeE3v/lNvvOd76y/TYT3XP/vdthhhxx22GE57LDD8vSnP93fcwIw6V1++eV5/OMf31r/jDPOyEknndRan8nH6zrZGMuWLcucOXM25iFzSinL2pqHP66ZiH9JBwBdaJqml2RJklkVs+eUUv66Ym/MaZqmL8m9SWZXzP5dKeV9FXuMUNM0WyW5p3J2wj+/v/txuztJUzF7bCnlCxV7tKxpmtlJlm7o/ZcuXZrZs2v+UgrAZHXzzTfnuOOOG9UzL7vsspRScsstt+SHP/xhHnzwwVE9v7amafLYxz42+++/f/r6+roeBwAAAAAAAAAAAAAAAAAAAAAAAKA13swGAAAAgI2xZs2aXHrppbnkkkvyk5/8JD/5yU9y8803dz3WBunr68uee+6ZJzzhCTnwwAPzpCc9KXvttVfXY8EjWrZsWX70ox/l8ssvz+WXX54rrrgit956a9djbbStt946j3/843PAAQfkgAMOyEEHHZQtttii67GgdU960pPyox/9qJX2rrvumuuvvz5NU/NtEwFGx9DQUH74wx/mkksuySWXXJLLLrss9913X9djbZStttoqBx54YJ74xCeuvw0MDHQ9FpPc0NBQLr744vVfO1xxxRX59a9/3fVYG2277bZb/7XDAQcckAMPPDCzZtV863kAYLK47rrr8m//9m/57ne/mx/84Adj5uuO+fPn59BDD83hhx+e5z73udl66627HgkmvNtuuy3/+Z//me985zu55JJLctNNN230v6PvStM02XHHHXPggQfmsMMOy2GHHZZddtml67EAYEx59atfnfPOO6+V9qxZs7Jo0aJsvvnmrfSZnLyuk42xbNmyzJkzZ2MeMqeUsqytefjjmlJK1zMAwITQNM1eSa6unP1/Sin/Urk55jRNc2GSp1dMfq6U8sKKPUaoaZrnJPla5exTSik/rNwcc5qmuTFJzb9VeW8p5cSKPVrWNM3sJEs39P5Lly7N7NmzW5wIgMni0ksvzV/91V+N2nmzZ8/O1772tfzgBz8Yly9A/p/mzp2bQw45JFtttVXXowAAAAAAAAAAAAAAAAAAAAAAAAC0zpvZAAAAALCphoaGcuWVV+baa6/Ntddem+uuuy7XXXddfvOb33Q203bbbZc999wze+yxR/bcc8/sueee2XfffTMwMNDZTFDT4sWL87Of/Sy/+MUvcsMNN6y/3XLLLVmzZk1nczVNk2233TY777xzHv3oR6/fv7322isLFizobC7o0le+8pW84AUvaK3/jW98I3/2Z3/WWh9gtKxbty433nhjrr766lx99dW55ppr1n9+s3TpBr81aCu22mqr7LTTTtl9993zmMc8JnvvvXce85jHZOHChZ3OBRvqnnvuyc9+9rNcf/31D/n6YdGiRRv9b0Zq6uvry3bbbZedd975IV+/P+Yxj/FeggBAK1avXp1LL700P/7xj3PFFVfkiiuuyPXXX5+1a9e2eu7MmTOzzz77ZN99981+++2XJz/5ydljjz1aPRN4ZA8++GCuvfba9X8W8fvb7bff3ulc8+fPz2Me85iH3Pbaa68MDg52OhcAjGWLFy/OggUL8uCDD7bSf/Ob35z3ve99rbSZvLyuk42xbNmyzJkzZ2MeMqeUsqytefjjmlJK1zMAwITQNM2rkpxbObtnKeW6ys0xp2ma9yb5u4rJW0spO1XsMUJN05yW5OSKyXVJZpdS7q/YHJOapvlckmMrJr9XSnlaxR4ta5pmdpIN/pfIS5cuzezZs1ucCIDJ4hvf+Ebe/va3j9p5hxxySB772Mdm5cqVo3ZmG3q9Xvbbb7889rGPTV9fX9fjAAAAAAAAAAAAAAAAAAAAAAAAAIwKb2YDAAAAQFuWL1+e2267Lbfffvv6/959991ZvHhxlixZksWLF2fx4sW57777smrVqqxevXr9f9esWZMpU6Zk6tSp6e/vT39/f6ZNm5ZZs2Zl8803f8ht/vz5WbhwYRYuXJjtttsuCxcuzPTp07u+fOjE2rVrc9ddd+XXv/71Q26/+c1vsnTp0ixZsiRLly7N0qVLs2zZsvU7999vpZT09fWlv79//R4ODAxk9uzZ629bbLFF5s2bt/627bbbZscdd8wOO+yQadOmdf3DAGNKKSV77bVXrruunbc2fd7znpevfOUrrbQBxop77703t9xyS2677bbcddddueeee3L33XfnnnvuyZIlS7J8+fIsX748y5YtywMPPLD+a4rf35JkypQp6z+/6e/vX//5zaxZs9Z/nTFv3rxsvfXWmTdvXubPn58ddtghO+20UwYHBzv+EYB2rF69Onfeeef6rxvuuOOO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i5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQi5IdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALUo2QEAAAAAAAAAAAAAAAAAAAAA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AAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGYtI7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMZi0jsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxmLSOwAAAAAAAAAA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AAAAAAAAAABeZB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAF1kHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4EXWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHiRdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeZB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAF1kHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4EXWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHiRdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeZB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAF1kHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4EXWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHiRdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeZB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAF1kHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4EXWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHiRdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeZB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAFwWdQ9NyvgeOpgAAAABJRU5ErkJggg==" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/logistic_regression/numeric_columns.pickle b/logistic_regression/numeric_columns.pickle new file mode 100755 index 0000000..9228b54 Binary files /dev/null and b/logistic_regression/numeric_columns.pickle differ diff --git a/multilayer_perceptron/1_mlp_preprocessing.ipynb b/multilayer_perceptron/1_mlp_preprocessing.ipynb new file mode 100755 index 0000000..470599f --- /dev/null +++ b/multilayer_perceptron/1_mlp_preprocessing.ipynb @@ -0,0 +1,1140 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Preprocess data for a multi layer perceptron model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "vars_to_remove = [\n", + " \"cdtype\",\n", + " \"claims_hh\",\n", + " \"claims_hs\",\n", + " \"claims_ip\",\n", + " \"claims_op\",\n", + " \"claims_range\",\n", + " \"claims_sn\",\n", + " \"clms_alc_ip\",\n", + " \"clms_alc_op\",\n", + " \"clms_alc_sn\",\n", + " \"clms_cad_ip\",\n", + " \"clms_cad_op\",\n", + " \"clms_cad_sn\",\n", + " \"clms_cvd_ip\",\n", + " \"clms_cvd_op\",\n", + " \"clms_cvd_sn\",\n", + " \"clms_dia_ip\",\n", + " \"clms_dia_op\",\n", + " \"clms_dia_sn\",\n", + " \"clms_drg_ip\",\n", + " \"clms_drg_op\",\n", + " \"clms_drg_sn\",\n", + " \"clms_flr_ip\",\n", + " \"clms_flr_op\",\n", + " \"clms_flr_sn\",\n", + " \"clms_hyp_ip\",\n", + " \"clms_hyp_op\",\n", + " \"clms_hyp_sn\",\n", + " \"clms_kid_ip\",\n", + " \"clms_kid_op\",\n", + " \"clms_kid_sn\",\n", + " \"clms_neo_ip\",\n", + " \"clms_neo_op\",\n", + " \"clms_neo_sn\",\n", + " \"clms_pad_ip\",\n", + " \"clms_pad_op\",\n", + " \"clms_pad_sn\",\n", + " \"clms_pne_ip\",\n", + " \"clms_pne_op\",\n", + " \"clms_pne_sn\",\n", + " \"clms_smo_ip\",\n", + " \"clms_smo_op\",\n", + " \"clms_smo_sn\",\n", + " \"range_hh\",\n", + " \"range_hs\",\n", + " \"range_ip\",\n", + " \"range_op\",\n", + " \"range_sn\",\n", + " \"stay_alc_ip\",\n", + " \"stay_alc_op\",\n", + " \"stay_alc_sn\",\n", + " \"stay_cad_ip\",\n", + " \"stay_cad_op\",\n", + " \"stay_cad_sn\",\n", + " \"stay_cvd_ip\",\n", + " \"stay_cvd_op\",\n", + " \"stay_cvd_sn\",\n", + " \"stay_dia_ip\",\n", + " \"stay_dia_op\",\n", + " \"stay_dia_sn\",\n", + " \"stay_drg_ip\",\n", + " \"stay_drg_op\",\n", + " \"stay_drg_sn\",\n", + " \"stay_flr_ip\",\n", + " \"stay_flr_op\",\n", + " \"stay_flr_sn\",\n", + " \"stay_hh\",\n", + " \"stay_hs\",\n", + " \"stay_hyp_ip\",\n", + " \"stay_hyp_op\",\n", + " \"stay_hyp_sn\",\n", + " \"stay_ip\",\n", + " \"stay_kid_ip\",\n", + " \"stay_kid_op\",\n", + " \"stay_kid_sn\",\n", + " \"stay_neo_ip\",\n", + " \"stay_neo_op\",\n", + " \"stay_neo_sn\",\n", + " \"stay_op\",\n", + " \"stay_pad_ip\",\n", + " \"stay_pad_op\",\n", + " \"stay_pad_sn\",\n", + " \"stay_pne_ip\",\n", + " \"stay_pne_op\",\n", + " \"stay_pne_sn\",\n", + " \"stay_smo_ip\",\n", + " \"stay_smo_op\",\n", + " \"stay_smo_sn\",\n", + " \"stay_sn\"\n", + " ]" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "categoryVars=[ \n", + " 'dial_train_time',\n", + " 'race',\n", + " 'sex',\n", + " 'hispanic',\n", + " 'como_chf',\n", + " 'como_ashd',\n", + " 'como_othcard',\n", + " 'como_cvatia',\n", + " 'como_pvd',\n", + " 'como_htn',\n", + " 'como_amp',\n", + " 'como_dm_ins',\n", + " 'como_dm_oral',\n", + " 'como_dm_nomeds',\n", + " 'como_dm_ret',\n", + " 'como_copd',\n", + " 'como_tobac',\n", + " 'como_canc',\n", + " 'como_toxneph',\n", + " 'como_alcho',\n", + " 'como_drug',\n", + " 'como_inamb',\n", + " 'como_intrans',\n", + " 'como_needasst',\n", + " 'como_inst',\n", + " 'como_nrc',\n", + " 'como_none',\n", + " 'como_inst_al',\n", + " 'como_inst_nurs',\n", + " 'como_inst_oth',\n", + " 'disgrpc',\n", + " 'nephcare',\n", + " 'nephcarerange',\n", + " 'accesstype',\n", + " 'avfmaturing',\n", + " 'avgmaturing',\n", + " 'epo',\n", + " 'eporange',\n", + " 'dietcare',\n", + " 'dietcarerange',\n", + " 'patinformed',\n", + " 'pattxop_medunfit',\n", + " 'pattxop_unsutage',\n", + " 'pattxop_physunfit',\n", + " 'pattxop_decline',\n", + " 'pattxop_other',\n", + " 'pattxop_unassesssed',\n", + " 'trcert',\n", + " 'typtrn',\n", + " 'empprev',\n", + " 'empcur',\n", + " 'medcov_mdcd',\n", + " 'medcov_mdcr',\n", + " 'medcov_advantage',\n", + " 'medcov_group',\n", + " 'medcov_dva',\n", + " 'medcov_other',\n", + " 'medcov_none',\n", + " 'dialtyp',\n", + " 'dialset',\n", + " 'waitlist_status',\n", + " 'has_neo',\n", + " 'has_smo',\n", + " 'has_alc',\n", + " 'has_drg',\n", + " 'has_pne',\n", + " 'has_kid',\n", + " 'has_dia',\n", + " 'has_hyp',\n", + " 'has_flr',\n", + " 'has_cad',\n", + " 'has_cvd',\n", + " 'has_pad',\n", + " 'prior_ip_care',\n", + "'prior_op_care',\n", + "'prior_hh_care',\n", + "'prior_hs_care',\n", + "'prior_sn_care']" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 13, + "source": [ + "# if you don't already have the following libraries, you can install them here (or run the environment.yml file at the terminal to create a conda environment with the required libraries)\n", + "!pip install --upgrade pip\n", + "!pip install --upgrade scikit-learn\n", + "!pip install pandas\n", + "!pip install psycopg2-binary\n", + "!pip install sqlalchemy\n", + "!pip install seaborn" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: pip in /usr/local/lib/python3.6/dist-packages (21.0.1)\n", + "Requirement already satisfied: scikit-learn in /usr/local/lib/python3.6/dist-packages (0.24.1)\n", + "Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.6/dist-packages (from scikit-learn) (1.0.1)\n", + "Requirement already satisfied: threadpoolctl>=2.0.0 in /usr/local/lib/python3.6/dist-packages (from scikit-learn) (2.1.0)\n", + "Requirement already satisfied: numpy>=1.13.3 in /usr/local/lib/python3.6/dist-packages (from scikit-learn) (1.19.4)\n", + "Requirement already satisfied: scipy>=0.19.1 in /usr/local/lib/python3.6/dist-packages (from scikit-learn) (1.5.4)\n", + "Requirement already satisfied: pandas in /usr/local/lib/python3.6/dist-packages (1.1.5)\n", + "Requirement already satisfied: numpy>=1.15.4 in /usr/local/lib/python3.6/dist-packages (from pandas) (1.19.4)\n", + "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas) (2021.1)\n", + "Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.6/dist-packages (from pandas) (2.8.1)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/dist-packages (from python-dateutil>=2.7.3->pandas) (1.15.0)\n", + "Requirement already satisfied: psycopg2-binary in /usr/local/lib/python3.6/dist-packages (2.8.6)\n", + "Requirement already satisfied: sqlalchemy in /usr/local/lib/python3.6/dist-packages (1.3.23)\n", + "Collecting seaborn\n", + " Downloading seaborn-0.11.1-py3-none-any.whl (285 kB)\n", + "\u001b[K |████████████████████████████████| 285 kB 704 kB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: scipy>=1.0 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.5.4)\n", + "Requirement already satisfied: numpy>=1.15 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.19.4)\n", + "Requirement already satisfied: pandas>=0.23 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.1.5)\n", + "Requirement already satisfied: matplotlib>=2.2 in /usr/local/lib/python3.6/dist-packages (from seaborn) (3.3.3)\n", + "Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (2.8.1)\n", + "Requirement already satisfied: pillow>=6.2.0 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (8.1.0)\n", + "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (2.4.7)\n", + "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (0.10.0)\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (1.3.1)\n", + "Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from cycler>=0.10->matplotlib>=2.2->seaborn) (1.15.0)\n", + "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.23->seaborn) (2021.1)\n", + "Installing collected packages: seaborn\n", + "Successfully installed seaborn-0.11.1\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 14, + "source": [ + "import psycopg2\n", + "from sqlalchemy import create_engine\n", + "\n", + "# other libraries\n", + "import numpy as np\n", + "import pandas as pd\n", + "import sys\n", + "import pickle\n", + "\n", + "#plotting\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "%matplotlib inline\n", + "\n", + "# Make numpy values easier to read.\n", + "np.set_printoptions(precision=3, suppress=True)\n", + "\n", + "print('python-' + sys.version)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n" + ] + } + ], + "metadata": { + "id": "dzLKpmZICaWN" + } + }, + { + "cell_type": "code", + "execution_count": 8, + "source": [ + "# your credentials for the posgreSQL database connection\n", + "con = create_engine('postgresql://username:password@location/dbname')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "## Import the dataset from postgreSQL into a pandas dataframe" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 9, + "source": [ + "df = pd.read_sql_query('''SELECT * FROM medxpreesrd;''', con)\n", + "\n", + "df.shape" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(1150195, 199)" + ] + }, + "metadata": {}, + "execution_count": 9 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Pivot and view the totals for each class " + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [ + "pd.pivot_table(df, index='died_in_90',aggfunc='sum',fill_value=0, dropna=True)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 58, + "source": [ + "df.describe()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id subset inc_age race sex \\\n", + "count 1.150195e+06 1.150195e+06 1.150195e+06 1.150195e+06 1.150189e+06 \n", + "mean 3.381473e+06 4.501024e+00 6.319905e+01 1.466191e+00 1.424851e+00 \n", + "std 3.746422e+05 2.871549e+00 1.478916e+01 8.534629e-01 4.943206e-01 \n", + "min 2.794000e+04 0.000000e+00 1.800000e+01 1.000000e+00 1.000000e+00 \n", + "25% 3.062570e+06 2.000000e+00 5.400000e+01 1.000000e+00 1.000000e+00 \n", + "50% 3.403969e+06 5.000000e+00 6.400000e+01 1.000000e+00 1.000000e+00 \n", + "75% 3.702194e+06 7.000000e+00 7.400000e+01 2.000000e+00 2.000000e+00 \n", + "max 4.056879e+06 9.000000e+00 9.000000e+01 9.000000e+00 2.000000e+00 \n", + "\n", + " disgrpc days_on_waitlist died_in_90 wasna_height \\\n", + "count 1.150195e+06 1.150195e+06 1.150195e+06 1.150195e+06 \n", + "mean 2.306556e+00 1.868329e+01 7.484209e-02 1.728316e-02 \n", + "std 1.848746e+00 1.348302e+02 2.631365e-01 1.303245e-01 \n", + "min 1.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "25% 1.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "50% 2.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "75% 2.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "max 8.000000e+00 7.754000e+03 1.000000e+00 1.000000e+00 \n", + "\n", + " wasna_weight ... has_flr has_cad has_cvd \\\n", + "count 1.150195e+06 ... 615813.000000 615813.000000 615813.000000 \n", + "mean 1.729185e-02 ... 0.322754 0.074428 0.219421 \n", + "std 1.303567e-01 ... 0.467530 0.262467 0.413854 \n", + "min 0.000000e+00 ... 0.000000 0.000000 0.000000 \n", + "25% 0.000000e+00 ... 0.000000 0.000000 0.000000 \n", + "50% 0.000000e+00 ... 0.000000 0.000000 0.000000 \n", + "75% 0.000000e+00 ... 1.000000 0.000000 0.000000 \n", + "max 1.000000e+00 ... 1.000000 1.000000 1.000000 \n", + "\n", + " has_pad prior_hh_care prior_hs_care prior_ip_care \\\n", + "count 615813.000000 1.150195e+06 1.150195e+06 1.150195e+06 \n", + "mean 0.113366 1.949861e-01 1.085207e-02 4.814001e-01 \n", + "std 0.317039 3.961902e-01 1.036065e-01 4.996541e-01 \n", + "min 0.000000 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "25% 0.000000 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "50% 0.000000 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "75% 0.000000 0.000000e+00 0.000000e+00 1.000000e+00 \n", + "max 1.000000 1.000000e+00 1.000000e+00 1.000000e+00 \n", + "\n", + " prior_op_care prior_sn_care has_preesrd_claim \n", + "count 1.150195e+06 1.150195e+06 1.150195e+06 \n", + "mean 4.476858e-01 1.220810e-01 5.595086e-01 \n", + "std 4.972559e-01 3.273795e-01 4.964463e-01 \n", + "min 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "25% 0.000000e+00 0.000000e+00 0.000000e+00 \n", + "50% 0.000000e+00 0.000000e+00 1.000000e+00 \n", + "75% 1.000000e+00 0.000000e+00 1.000000e+00 \n", + "max 1.000000e+00 1.000000e+00 1.000000e+00 \n", + "\n", + "[8 rows x 197 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_idsubsetinc_ageracesexdisgrpcdays_on_waitlistdied_in_90wasna_heightwasna_weight...has_flrhas_cadhas_cvdhas_padprior_hh_careprior_hs_careprior_ip_careprior_op_careprior_sn_carehas_preesrd_claim
count1.150195e+061.150195e+061.150195e+061.150195e+061.150189e+061.150195e+061.150195e+061.150195e+061.150195e+061.150195e+06...615813.000000615813.000000615813.000000615813.0000001.150195e+061.150195e+061.150195e+061.150195e+061.150195e+061.150195e+06
mean3.381473e+064.501024e+006.319905e+011.466191e+001.424851e+002.306556e+001.868329e+017.484209e-021.728316e-021.729185e-02...0.3227540.0744280.2194210.1133661.949861e-011.085207e-024.814001e-014.476858e-011.220810e-015.595086e-01
std3.746422e+052.871549e+001.478916e+018.534629e-014.943206e-011.848746e+001.348302e+022.631365e-011.303245e-011.303567e-01...0.4675300.2624670.4138540.3170393.961902e-011.036065e-014.996541e-014.972559e-013.273795e-014.964463e-01
min2.794000e+040.000000e+001.800000e+011.000000e+001.000000e+001.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00...0.0000000.0000000.0000000.0000000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00
25%3.062570e+062.000000e+005.400000e+011.000000e+001.000000e+001.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00...0.0000000.0000000.0000000.0000000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00
50%3.403969e+065.000000e+006.400000e+011.000000e+001.000000e+002.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00...0.0000000.0000000.0000000.0000000.000000e+000.000000e+000.000000e+000.000000e+000.000000e+001.000000e+00
75%3.702194e+067.000000e+007.400000e+012.000000e+002.000000e+002.000000e+000.000000e+000.000000e+000.000000e+000.000000e+00...1.0000000.0000000.0000000.0000000.000000e+000.000000e+001.000000e+001.000000e+000.000000e+001.000000e+00
max4.056879e+069.000000e+009.000000e+019.000000e+002.000000e+008.000000e+007.754000e+031.000000e+001.000000e+001.000000e+00...1.0000001.0000001.0000001.0000001.000000e+001.000000e+001.000000e+001.000000e+001.000000e+001.000000e+00
\n", + "

8 rows × 197 columns

\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 58 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 59, + "source": [ + "df[df.subset <= 6].shape" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(804890, 199)" + ] + }, + "metadata": {}, + "execution_count": 59 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "## remove columns of non-binary claims data that have missing values\n", + "- for example the counts for number of claims for a specific type \n", + "- keep the claims features that indicate the presence /absence/ or missing (this will be considered a categorical variable and encoded in the next step" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 10, + "source": [ + "# drop features with too many missing values\n", + "df.drop(columns=vars_to_remove,inplace=True)\n", + "df.shape" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(1150195, 110)" + ] + }, + "metadata": {}, + "execution_count": 10 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# get positive and negative class imbalance" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 15, + "source": [ + "#get counts for each class (this gets used lated when we train the model)\n", + "neg_class_count, positive_class_count = np.bincount(df['died_in_90'])\n", + "\n", + "total = neg_class_count + positive_class_count\n", + "print('Examples:\\n Total: {}\\n Survived: {}({:.2f}% of total)\\n Deceased: {} ({:.2f}% of total)\\n'.format(\n", + " total, neg_class_count, 100 * neg_class_count / total, positive_class_count, 100 * positive_class_count / total))\n", + "\n", + "\n", + "plt.figure(figsize = (8, 8))\n", + "class_plot = sns.countplot(x = 'died_in_90', data = df);\n", + "for p in class_plot.patches:\n", + " class_plot.annotate(p.get_height(), \n", + " (p.get_x() + p.get_width() / 2.0, \n", + " p.get_height()), \n", + " ha = 'center', \n", + " va = 'center', \n", + " xytext = (0, 5),\n", + " textcoords = 'offset points');\n", + "\n", + "plt.title(\"Number of patients for each class ('died_in_90') \\n Positive/Deceased: {} ({:.2f}% of total)\\n\".format(\n", + " positive_class_count, 100 * positive_class_count / total));\n", + "\n", + "plt.xlabel(\"Class\");\n", + "plt.xticks([0,1],['survived', 'deceased']);\n", + "plt.ylabel(\"Number of patients\");\n", + "plt.savefig('class_imbalance_bar.png')" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Examples:\n", + " Total: 1150195\n", + " Survived: 1064112(92.52% of total)\n", + " Deceased: 86083 (7.48% of total)\n", + "\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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Ucayfg74e0TcSQn16xdh+SRJWuiWiOr0zJxFCeh3A0SxeZ19HuUqnIhYk1K9fs8AFFOSpIWqkSEeEb8C/gy8OiKmRcTBwH7AwRFxMzAJ2LsufhHwcERMBi4DPpWZDw9EuSVJWpga+RMzSZLU0CtxSZJkiEuS1FiNa52+5ppr5nrrrTfQxZAkaZG44YYb/pWZQ3ua17gQX2+99Zg4ceJAF0OSpEUiIu7rbZ7V6ZIkNZQhLklSQxnikiQ1lCEuSVJDGeKSJDWUIS5JUkMZ4pIkNZQhLklSQxnikiQ1lCGuXh100EEMGzaMTTbZZO60Rx55hN12240NN9yQ3XbbjZkzZ86dd/nll7PFFlswZswY3vjGN863reeff54tt9ySt73tbXOnff/732eDDTYgIvjXv/41d/rtt9/O9ttvzworrMB3vvOdudOnTp3KzjvvzMYbb8yYMWM44YQTOnHYktQYhrh6deCBB3LhhRfON+3YY49l11135a677mLXXXfl2GOPBeDRRx/lv/7rvxg/fjyTJk3inHPOmW+9E044gdGjR8837fWvfz0XX3wx66677nzTV199dU488USOPPLI+aYPGjSI4447jsmTJ3Pttddy0kknMXny5IV1uJLUOIa4erXjjjuy+uqrzzft/PPP5/3vfz8A73//+znvvPMAOOOMMxg3bhyjRo0CYNiwYXPXmTZtGhdccAGHHHLIfNvacsst6Wkwm2HDhrHNNtuw3HLLzTd9+PDhbLXVVgAMHjyY0aNHM3369Jd0jJLUZIa4FsgDDzzA8OHDAXjFK17BAw88AMCdd97JzJkz2Wmnndh666057bTT5q7z8Y9/nG9961sss8zCe7nde++93HTTTbz2ta9daNuUpKZp3ChmWnxEBBEBwJw5c7jhhhu45JJLeOqpp9h+++3ZbrvtuPPOOxk2bBhbb701l19++ULZ7+zZs3nXu97F9773PYYMGbJQtilJTWSIa4GstdZazJgxg+HDhzNjxoy51eYjR45kjTXWYOWVV2bllVdmxx135Oabb+bGG29k/PjxTJgwgaeffppZs2ax//77c/rpp7+o/T/33HO8613vYr/99mPcuHEL89AkqXGsTtcC2Wuvvfj5z38OwM9//nP23ntvAPbee2+uuuoq5syZw5NPPsl1113H6NGj+cY3vsG0adO49957OfPMM9lll11e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DWXmyZk5NjPHDh06tCOFlSSpaToZ4tcDG0bE+hGxPPBeYHzrAhGxJfBjSoA/2MGySJK0xOlYiGfmHOAjwEXAbcDZmTkpIr4SEXvVxb4NrAKcExF/jYjxvWxOkiR109F74pk5AZjQbdrRLY/f1Mn9S5K0JLPHNkmSGsoQlySpoQxxSZIayhCXJKmhDHFJkhrKEJckqaEMcUmSGsoQlySpoQxxSZIayhCXJKmhDHFJkhrKEJckqaEMcUmSGsoQlySpoQxxSZIayhCXJKmhDHFJkhrKEJckqaEMcUmSGsoQlySpoQxxSZIayhCXJKmhDHFJkhrKEJckqaEMcUmSGsoQlySpoQxxSZIayhCXJKmhDHFJkhrKEJckqaEMcUlqkOOPP54xY8awySabsO+++/L000+TmXzuc59jo402YvTo0Zx44okAZCZHHHEEG2ywAZttthk33njj3O18+tOfZsyYMYwePZojjjiCzARg9913Z/PNN2fMmDEcfvjhPP/88wNynGrPoIEugCSpPdOnT+fEE09k8uTJvOxlL+M973kPZ555JpnJ1KlTuf3221lmmWV48MEHAfj973/PXXfdxV133cV1113Hhz70Ia677jquueYarr76am655RYAdthhB6644gp22mknzj77bIYMGUJmss8++3DOOefw3ve+dyAPW30wxCWpQebMmcNTTz3Fcsstx5NPPsnaa6/N5z//ec444wyWWaZUrg4bNgyA888/nwMOOICIYLvttuPRRx9lxowZRARPP/00zz77LJnJc889x1prrQXAkCFD5u7n2WefJSIG5kDVFqvTJakhRowYwZFHHsmoUaMYPnw4q666Km9+85u5++67Oeussxg7dix77LEHd911F1Cu3NdZZ525648cOZLp06ez/fbbs/POOzN8+HCGDx/OW97yFkaPHj13ube85S0MGzaMwYMHs88++yzy41T7DHFJaoiZM2dy/vnn8/e//53777+fJ554gtNPP51nnnmGFVdckYkTJ3LooYdy0EEH9bmdKVOmcNtttzFt2jSmT5/OpZdeyp/+9Ke58y+66CJmzJjBM888w6WXXtrpw9JLYIhLUkNcfPHFrL/++gwdOpTllluOcePGcc011zBy5EjGjRsHwDvf+c6597pHjBjB1KlT564/bdo0RowYwbnnnst2223HKquswiqrrMIee+zB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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + " The *labels* are 2 integers, 0 (survived) or 1 (deceased). These correspond to the *class*. We also note that we have a class imbalance with deceased being the minority class. \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
LabelClassCount
0survived1064112
1deceased86083
" + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# get dummy variables for categorical features" + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "dial_train_time is calculated based on the difference between 2 dates. There are a large number of missing values for this feature, but we don't want to drop it, so all positive values are changed to 1, 0=0 and missing is nan. Thus, the feature is then turned into a categorical rather than numberic to retain some (though not all) information" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 16, + "source": [ + "df.dial_train_time = df.dial_train_time.fillna(-1)\n", + "df.dial_train_time=df.dial_train_time.astype(int).clip(lower=-1,upper=1)\n", + "df.dial_train_time=df.dial_train_time.astype(str).replace(\"-1\",\"na\")" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Use dummy variables for categorical variables\n", + "- get a list of categorical variables that have more then 2 levels" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 18, + "source": [ + "dummy_list = []\n", + "for col in categoryVars:\n", + " u = len(df[col].unique())\n", + " if u>2:\n", + " dummy_list.append(col)\n", + "\n", + "df = pd.concat([df, pd.get_dummies(df.loc[:,dummy_list].astype('str'))],axis=1).drop(columns=dummy_list,axis=1)\n", + "\n", + "df.shape" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(1150195, 297)" + ] + }, + "metadata": {}, + "execution_count": 18 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### look at numeric missing - ensure it's only the labvars we are about to replace" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 19, + "source": [ + "cols = df.columns\n", + "nu_cols = []\n", + "for c in cols:\n", + " if c in categoryVars:\n", + " pass\n", + " elif c in ['usrds_id','subset','died_in_90']:\n", + " pass\n", + " elif c in dummy_list:\n", + " pass\n", + " else:\n", + " nu_cols.append(c)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 20, + "source": [ + "with open('numeric_columns.pickle', 'wb') as picklefile: \n", + " pickle.dump(nu_cols, picklefile)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 21, + "source": [ + "len(nu_cols)+len(categoryVars)" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "367" + ] + }, + "metadata": {}, + "execution_count": 21 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 22, + "source": [ + "df[nu_cols].isna().sum()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "inc_age 0\n", + "days_on_waitlist 0\n", + "wasna_height 0\n", + "wasna_weight 0\n", + "wasna_bmi 0\n", + " ..\n", + "has_cvd_1.0 0\n", + "has_cvd_nan 0\n", + "has_pad_0.0 0\n", + "has_pad_1.0 0\n", + "has_pad_nan 0\n", + "Length: 289, dtype: int64" + ] + }, + "metadata": {}, + "execution_count": 22 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 23, + "source": [ + "features_unique = df[nu_cols].nunique(axis=0,dropna=False).reset_index()\n", + "features_unique.head(5)" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " index 0\n", + "0 inc_age 73\n", + "1 days_on_waitlist 2557\n", + "2 wasna_height 2\n", + "3 wasna_weight 2\n", + "4 wasna_bmi 2" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
index0
0inc_age73
1days_on_waitlist2557
2wasna_height2
3wasna_weight2
4wasna_bmi2
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 23 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Imputations\n", + "1. import the imputations from postgresql into a pandas dataframe\n", + "2. replace the original labvar cols in df with the imputed ones\n", + "3. save as 5 separate sets of data (in pickle format)" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 25, + "source": [ + " imp = pd.read_sql_query('''SELECT *, row_number() \n", + " OVER(PARTITION BY usrds_id) AS impnum \n", + " FROM micecomplete_pmm\n", + "''', con)\n", + "\n", + "# remove labvars (imputed columns) from original dataset\n", + "df.drop(columns=[\"height\", \"weight\", \"bmi\", \"sercr\", \"album\", \"gfr_epi\", \"heglb\"],inplace=True)\n", + "df.shape" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(1150195, 290)" + ] + }, + "metadata": {}, + "execution_count": 25 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 28, + "source": [ + "imp1 = imp[imp.impnum==1]\n", + "imp2 = imp[imp.impnum==2]\n", + "imp3 = imp[imp.impnum==3]\n", + "imp4 = imp[imp.impnum==4]\n", + "imp5 = imp[imp.impnum==5]\n", + "\n", + "# create 5 datasets, one for each imputation run by merging our medxpreesrd and the imputations\n", + "complete1 = pd.merge(df, imp1, how='left', on=[\"usrds_id\",\"subset\"])\n", + "complete2 = pd.merge(df, imp2, how='left', on=[\"usrds_id\",\"subset\"])\n", + "complete3 = pd.merge(df, imp3, how='left', on=[\"usrds_id\",\"subset\"])\n", + "complete4 = pd.merge(df, imp4, how='left', on=[\"usrds_id\",\"subset\"])\n", + "complete5 = pd.merge(df, imp5, how='left', on=[\"usrds_id\",\"subset\"])\n", + "\n", + "\n", + "complete5.shape" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(1150195, 298)" + ] + }, + "metadata": {}, + "execution_count": 28 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 29, + "source": [ + "with open('complete1.pickle', 'wb') as picklefile: \n", + " pickle.dump(complete1, picklefile)\n", + "with open('complete2.pickle', 'wb') as picklefile: \n", + " pickle.dump(complete2, picklefile)\n", + "with open('complete3.pickle', 'wb') as picklefile: \n", + " pickle.dump(complete3, picklefile)\n", + "with open('complete4.pickle', 'wb') as picklefile: \n", + " pickle.dump(complete4, picklefile)\n", + "with open('complete5.pickle', 'wb') as picklefile: \n", + " pickle.dump(complete5, picklefile)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 30, + "source": [ + "all_data = [complete1, complete2, complete3, complete4, complete5]\n", + "\n", + "with open('all_data_dl_model.pickle', 'wb') as picklefile: \n", + " pickle.dump(all_data, picklefile)" + ], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/multilayer_perceptron/2_mlp_cross_val.ipynb b/multilayer_perceptron/2_mlp_cross_val.ipynb new file mode 100755 index 0000000..b99a5bd --- /dev/null +++ b/multilayer_perceptron/2_mlp_cross_val.ipynb @@ -0,0 +1,347 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Find the optimal hyperparameters for the multi layer perceptron model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "#install libraries (if not already in environment)\n", + "!pip install --upgrade scikit-learn\n", + "!pip install pandas\n", + "!pip install pyyaml h5py \n", + "!pip install seaborn\n" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting scikit-learn\n", + " Downloading scikit_learn-0.24.1-cp36-cp36m-manylinux2010_x86_64.whl (22.2 MB)\n", + "\u001b[K |████████████████████████████████| 22.2 MB 982 kB/s eta 0:00:01\n", + "\u001b[?25hCollecting threadpoolctl>=2.0.0\n", + " Downloading threadpoolctl-2.1.0-py3-none-any.whl (12 kB)\n", + "Collecting joblib>=0.11\n", + " Downloading joblib-1.0.1-py3-none-any.whl (303 kB)\n", + "\u001b[K |████████████████████████████████| 303 kB 1.6 MB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied, skipping upgrade: numpy>=1.13.3 in /usr/local/lib/python3.6/dist-packages (from scikit-learn) (1.19.5)\n", + "Collecting scipy>=0.19.1\n", + " Downloading scipy-1.5.4-cp36-cp36m-manylinux1_x86_64.whl (25.9 MB)\n", + "\u001b[K |████████████████████████████████| 25.9 MB 1.2 MB/s eta 0:00:01\n", + "\u001b[?25hInstalling collected packages: threadpoolctl, joblib, scipy, scikit-learn\n", + "Successfully installed joblib-1.0.1 scikit-learn-0.24.1 scipy-1.5.4 threadpoolctl-2.1.0\n", + "\u001b[33mWARNING: You are using pip version 20.2.4; however, version 21.0.1 is available.\n", + "You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.\u001b[0m\n", + "Collecting pandas\n", + " Downloading pandas-1.1.5-cp36-cp36m-manylinux1_x86_64.whl (9.5 MB)\n", + "\u001b[K |████████████████████████████████| 9.5 MB 831 kB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.6/dist-packages (from pandas) (2.8.1)\n", + "Collecting pytz>=2017.2\n", + " Downloading pytz-2021.1-py2.py3-none-any.whl (510 kB)\n", + "\u001b[K |████████████████████████████████| 510 kB 1.2 MB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: numpy>=1.15.4 in /usr/local/lib/python3.6/dist-packages (from pandas) (1.19.5)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/dist-packages (from python-dateutil>=2.7.3->pandas) (1.15.0)\n", + "Installing collected packages: pytz, pandas\n", + "Successfully installed pandas-1.1.5 pytz-2021.1\n", + "\u001b[33mWARNING: You are using pip version 20.2.4; however, version 21.0.1 is available.\n", + "You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.\u001b[0m\n", + "Collecting pyyaml\n", + " Downloading PyYAML-5.4.1-cp36-cp36m-manylinux1_x86_64.whl (640 kB)\n", + "\u001b[K |████████████████████████████████| 640 kB 617 kB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: h5py in /usr/local/lib/python3.6/dist-packages (2.10.0)\n", + "Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from h5py) (1.15.0)\n", + "Requirement already satisfied: numpy>=1.7 in /usr/local/lib/python3.6/dist-packages (from h5py) (1.19.5)\n", + "Installing collected packages: pyyaml\n", + "Successfully installed pyyaml-5.4.1\n", + "\u001b[33mWARNING: You are using pip version 20.2.4; however, version 21.0.1 is available.\n", + "You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.\u001b[0m\n", + "Collecting seaborn\n", + " Downloading seaborn-0.11.1-py3-none-any.whl (285 kB)\n", + "\u001b[K |████████████████████████████████| 285 kB 616 kB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: scipy>=1.0 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.5.4)\n", + "Requirement already satisfied: pandas>=0.23 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.1.5)\n", + "Requirement already satisfied: matplotlib>=2.2 in /usr/local/lib/python3.6/dist-packages (from seaborn) (3.3.3)\n", + "Requirement already satisfied: numpy>=1.15 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.19.5)\n", + "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.23->seaborn) (2021.1)\n", + "Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.23->seaborn) (2.8.1)\n", + "Requirement already satisfied: pillow>=6.2.0 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (8.1.0)\n", + "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (0.10.0)\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (1.3.1)\n", + "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (2.4.7)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/dist-packages (from python-dateutil>=2.7.3->pandas>=0.23->seaborn) (1.15.0)\n", + "Installing collected packages: seaborn\n", + "Successfully installed seaborn-0.11.1\n", + "\u001b[33mWARNING: You are using pip version 20.2.4; however, version 21.0.1 is available.\n", + "You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.\u001b[0m\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "# TensorFlow and tf.keras\n", + "import tensorflow as tf\n", + "from tensorflow.keras import layers\n", + "from tensorflow.keras.wrappers.scikit_learn import KerasClassifier\n", + "from tensorflow.keras.optimizers import Adam, SGD, Adamax\n", + "\n", + "import sklearn.metrics as metrics\n", + "from sklearn.metrics import auc, plot_roc_curve, roc_curve, mean_squared_error, accuracy_score, roc_auc_score, classification_report, confusion_matrix, log_loss\n", + "from sklearn.model_selection import GridSearchCV\n", + "from sklearn.preprocessing import StandardScaler\n", + "import sklearn\n", + "\n", + "#add path to the functions folder\n", + "import sys\n", + "sys.path.append('../onc_functions')\n", + "\n", + "# load custom function for building the NN\n", + "from build_mlp import build_mlp \n", + "\n", + "# other libraries\n", + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "import pickle\n", + "\n", + "#plotting\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "%matplotlib inline\n", + "\n", + "# Make numpy values easier to read.\n", + "np.set_printoptions(precision=3, suppress=True)\n", + "\n", + "print('tensorflow-' + tf.__version__)\n", + "print('python-' + sys.version)\n", + "print('sklearn-' + sklearn.__version__)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "tensorflow-2.4.1\n", + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n", + "sklearn-0.24.1\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 4, + "source": [ + "with open('numeric_columns.pickle', 'rb') as f: \n", + " nu_cols = pickle.load(f)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Create Model Layers\n", + "\n", + "- trying different weights (to handle the class imbalance) requires that you rerun the grid search with each weight" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 8, + "source": [ + "\n", + "def mlp_cv(selected_class_weight, weight_name, imputation):\n", + " # fix random seed for reproducibility\n", + " seed = 78\n", + " np.random.seed(seed)\n", + "\n", + " #import an imputed dataset\n", + " with open('complete' + str(imputation) + '.pickle', 'rb') as f:\n", + " dataset = pickle.load(f)\n", + "\n", + " #keep only the training data subsets\n", + " X_train = dataset[dataset.subset <= 6].copy().sort_values(by = 'usrds_id')\n", + " del dataset\n", + "\n", + " y_train = np.array(X_train.pop('died_in_90'))\n", + "\n", + " #scale the numeric columns\n", + " scaler = StandardScaler()\n", + " X_train[nu_cols] = scaler.fit_transform(X_train[nu_cols])\n", + " X_train = np.array(X_train.drop(columns=['subset','usrds_id','impnum'])) \n", + " print('scaled shape train ' + str(X_train.shape))\n", + "\n", + "\n", + " # Create a MirroredStrategy (can take advantage of a GPU if you have some, otherwise it just uses a single threaded approach)\n", + " strategy = tf.distribute.MirroredStrategy()\n", + " print(\"Number of devices: {}\".format(strategy.num_replicas_in_sync))\n", + "\n", + " # Open a strategy scope.\n", + " with strategy.scope():\n", + " # Everything that creates variables should be under the strategy scope.\n", + " # In general this is only model construction & `compile()`.\n", + " # Wrap Keras model so it can be used by scikit-learn\n", + "\n", + " # grid search epochs, batch size and optimizer\n", + " neurons = [16,32, 64, 128]\n", + " layers = [1, 2]\n", + " kernel_regularizer = ['l2']\n", + " dropout_rate = [ 0.1, 0.2, 0.4, 0.5, 0.6]\n", + " learn_rate = [.001, .0001, .0002]\n", + " activation = ['relu', 'sigmoid', 'tanh']\n", + " optimizer = ['Adam']\n", + " epochs = [10, 20] # 1mill/256=4000 steps for one pass thru dataset\n", + " batches = [512, 256]\n", + " output_bias = [None]\n", + "\n", + " params = dict(neurons=neurons, \n", + " layers=layers,\n", + " kernel_regularizer=kernel_regularizer, \n", + " dropout_rate=dropout_rate,\n", + " learn_rate=learn_rate, \n", + " activation=activation,\n", + " optimizer = optimizer,\n", + " epochs=epochs, \n", + " batch_size=batches, \n", + " output_bias=output_bias)\n", + " \n", + " # early stopping for the epochs based on the auc under the precision recall curve\n", + " early_stopping = tf.keras.callbacks.EarlyStopping(\n", + " monitor='auc_pr' ,\n", + " verbose=1,\n", + " patience=10,\n", + " mode='max',\n", + " restore_best_weights=True)\n", + " \n", + " # use the Keras wrapper for scikitlearn and our custom build_mlp function imported above\n", + " weighted_model_skl = KerasClassifier(build_fn=build_mlp, \n", + " verbose=0)\n", + "\n", + " # evaluate using 5-fold cross validation\n", + " grid = GridSearchCV(\n", + " weighted_model_skl,\n", + " param_grid=params, \n", + " cv=2,\n", + " scoring='average_precision',\n", + " return_train_score=True,\n", + " n_jobs=-1\n", + " )\n", + "\n", + "\n", + " print('fit model')\n", + " grid_result = grid.fit(\n", + " X_train, \n", + " y_train, \n", + " class_weight=selected_class_weight,\n", + " callbacks=[early_stopping]\n", + " )\n", + "\n", + " # summarize results\n", + " means = grid_result.cv_results_['mean_test_score']\n", + " stds = grid_result.cv_results_['std_test_score']\n", + " params = grid_result.cv_results_['params']\n", + "\n", + " for mean, stdev, param in zip(means, stds, params):\n", + " print(\"%f (%f) with: %r\" % (mean, stdev, param))\n", + " print(\"Best: %f using %s\" % (grid_result.best_score_, grid_result.best_params_))\n", + " \n", + " #save results\n", + " with open('./results/2021_grid_best_params_imp_' + str(imputation) + '_weight_' + str(weight_name) + '.pickle', 'wb') as f: \n", + " pickle.dump(grid_result.best_params_, f)\n", + "\n", + " with open('./results/2021_grid_best_auc_imp_' + str(imputation) + '_weight_' + str(weight_name) + '.pickle','wb') as f: \n", + " pickle.dump(grid_result.best_score_, f)\n", + "\n", + " with open('./results/2021_grid_cv_results_imp_' + str(imputation) + '_weight_' + str(weight_name) + '.pickle','wb') as f: \n", + " pickle.dump(grid_result.cv_results_, f)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 12, + "source": [ + "total = 1150195\n", + "positive_class_count = 86083 #(7.48% of total)\n", + "neg_class_count = 1064112 #(92.52% of total)\n", + "# Scaling by total/2 helps keep the loss to a similar magnitude.\n", + "# The sum of the weights of all examples stays the same.\n", + "weight_for_0 = (1 / neg_class_count)*(total)/2.0 \n", + "weight_for_1 = (1 / positive_class_count)*(total)/2.0\n", + "\n", + "class_weight_m = {0: weight_for_0, 1: weight_for_1}\n", + "class_weight_5 = {0: 1, 1: 5}\n", + "class_weight_10 = {0: 1, 1: 10}\n", + "class_weight_20 = {0: 1, 1: 20}\n", + "\n", + "#run the cross validation with the amount of weighting for each class \n", + "mlp_cv(class_weight_20, weight_name=20, imputation=5)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "scaled shape train (804890, 294)\n", + "WARNING:tensorflow:There are non-GPU devices in `tf.distribute.Strategy`, not using nccl allreduce.\n", + "INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:CPU:0',)\n", + "Number of devices: 1\n", + "fit model n/\n", + "Best: 0.235455 using {'activation': 'relu', 'batch_size': 256, 'dropout_rate': 0.2, 'epochs': 15, 'kernel_regularizer': 'l2', 'layers': 2, 'learn_rate': 0.0002, 'neurons': 32, 'optimizer': 'Adam', 'output_bias': None}\n", + "0.234318 (0.009525) with: {'activation': 'relu', 'batch_size': 256, 'dropout_rate': 0.2, 'epochs': 10, 'kernel_regularizer': 'l2', 'layers': 2, 'learn_rate': 0.0002, 'neurons': 16, 'optimizer': 'Adam', 'output_bias': None}\n", + "0.233863 (0.008253) with: {'activation': 'relu', 'batch_size': 256, 'dropout_rate': 0.2, 'epochs': 10, 'kernel_regularizer': 'l2', 'layers': 2, 'learn_rate': 0.0002, 'neurons': 32, 'optimizer': 'Adam', 'output_bias': None}\n", + "0.235408 (0.007534) with: {'activation': 'relu', 'batch_size': 256, 'dropout_rate': 0.2, 'epochs': 15, 'kernel_regularizer': 'l2', 'layers': 2, 'learn_rate': 0.0002, 'neurons': 16, 'optimizer': 'Adam', 'output_bias': None}\n", + "0.235455 (0.010428) with: {'activation': 'relu', 'batch_size': 256, 'dropout_rate': 0.2, 'epochs': 15, 'kernel_regularizer': 'l2', 'layers': 2, 'learn_rate': 0.0002, 'neurons': 32, 'optimizer': 'Adam', 'output_bias': None}\n", + "params n/\n", + "{'activation': 'relu', 'batch_size': 256, 'dropout_rate': 0.2, 'epochs': 15, 'kernel_regularizer': 'l2', 'layers': 2, 'learn_rate': 0.0002, 'neurons': 32, 'optimizer': 'Adam', 'output_bias': None}\n", + "best score n/\n", + "0.23545548460762972\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/multilayer_perceptron/3_mlp_final_model.ipynb b/multilayer_perceptron/3_mlp_final_model.ipynb new file mode 100644 index 0000000..8d388d6 --- /dev/null +++ b/multilayer_perceptron/3_mlp_final_model.ipynb @@ -0,0 +1,944 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Create, train, and test the multi layer perceptron model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "#install python libraries (optional)\n", + "!pip install --upgrade scikit-learn\n", + "!pip install pandas\n", + "!pip install pyyaml h5py \n", + "!pip install seaborn" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting scikit-learn\n", + " Downloading scikit_learn-0.24.1-cp36-cp36m-manylinux2010_x86_64.whl (22.2 MB)\n", + "\u001b[K |████████████████████████████████| 22.2 MB 982 kB/s eta 0:00:01\n", + "\u001b[?25hCollecting threadpoolctl>=2.0.0\n", + " Downloading threadpoolctl-2.1.0-py3-none-any.whl (12 kB)\n", + "Collecting joblib>=0.11\n", + " Downloading joblib-1.0.1-py3-none-any.whl (303 kB)\n", + "\u001b[K |████████████████████████████████| 303 kB 1.6 MB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied, skipping upgrade: numpy>=1.13.3 in /usr/local/lib/python3.6/dist-packages (from scikit-learn) (1.19.5)\n", + "Collecting scipy>=0.19.1\n", + " Downloading scipy-1.5.4-cp36-cp36m-manylinux1_x86_64.whl (25.9 MB)\n", + "\u001b[K |████████████████████████████████| 25.9 MB 1.2 MB/s eta 0:00:01\n", + "\u001b[?25hInstalling collected packages: threadpoolctl, joblib, scipy, scikit-learn\n", + "Successfully installed joblib-1.0.1 scikit-learn-0.24.1 scipy-1.5.4 threadpoolctl-2.1.0\n", + "\u001b[33mWARNING: You are using pip version 20.2.4; however, version 21.0.1 is available.\n", + "You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.\u001b[0m\n", + "Collecting pandas\n", + " Downloading pandas-1.1.5-cp36-cp36m-manylinux1_x86_64.whl (9.5 MB)\n", + "\u001b[K |████████████████████████████████| 9.5 MB 831 kB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.6/dist-packages (from pandas) (2.8.1)\n", + "Collecting pytz>=2017.2\n", + " Downloading pytz-2021.1-py2.py3-none-any.whl (510 kB)\n", + "\u001b[K |████████████████████████████████| 510 kB 1.2 MB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: numpy>=1.15.4 in /usr/local/lib/python3.6/dist-packages (from pandas) (1.19.5)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/dist-packages (from python-dateutil>=2.7.3->pandas) (1.15.0)\n", + "Installing collected packages: pytz, pandas\n", + "Successfully installed pandas-1.1.5 pytz-2021.1\n", + "\u001b[33mWARNING: You are using pip version 20.2.4; however, version 21.0.1 is available.\n", + "You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.\u001b[0m\n", + "Collecting pyyaml\n", + " Downloading PyYAML-5.4.1-cp36-cp36m-manylinux1_x86_64.whl (640 kB)\n", + "\u001b[K |████████████████████████████████| 640 kB 617 kB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: h5py in /usr/local/lib/python3.6/dist-packages (2.10.0)\n", + "Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from h5py) (1.15.0)\n", + "Requirement already satisfied: numpy>=1.7 in /usr/local/lib/python3.6/dist-packages (from h5py) (1.19.5)\n", + "Installing collected packages: pyyaml\n", + "Successfully installed pyyaml-5.4.1\n", + "\u001b[33mWARNING: You are using pip version 20.2.4; however, version 21.0.1 is available.\n", + "You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.\u001b[0m\n", + "Collecting seaborn\n", + " Downloading seaborn-0.11.1-py3-none-any.whl (285 kB)\n", + "\u001b[K |████████████████████████████████| 285 kB 616 kB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: scipy>=1.0 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.5.4)\n", + "Requirement already satisfied: pandas>=0.23 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.1.5)\n", + "Requirement already satisfied: matplotlib>=2.2 in /usr/local/lib/python3.6/dist-packages (from seaborn) (3.3.3)\n", + "Requirement already satisfied: numpy>=1.15 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.19.5)\n", + "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.23->seaborn) (2021.1)\n", + "Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.23->seaborn) (2.8.1)\n", + "Requirement already satisfied: pillow>=6.2.0 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (8.1.0)\n", + "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (0.10.0)\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (1.3.1)\n", + "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn) (2.4.7)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/dist-packages (from python-dateutil>=2.7.3->pandas>=0.23->seaborn) (1.15.0)\n", + "Installing collected packages: seaborn\n", + "Successfully installed seaborn-0.11.1\n", + "\u001b[33mWARNING: You are using pip version 20.2.4; however, version 21.0.1 is available.\n", + "You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.\u001b[0m\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "# TensorFlow and tf.keras\n", + "import tensorflow as tf\n", + "from tensorflow.keras.layers import Dense, Dropout\n", + "from tensorflow.keras.optimizers import Adam\n", + "\n", + "import sklearn\n", + "from sklearn.metrics import auc, average_precision_score, roc_curve, precision_recall_curve, roc_auc_score, confusion_matrix\n", + "from sklearn.preprocessing import StandardScaler\n", + "\n", + "\n", + "# other libraries\n", + "import numpy as np\n", + "import pandas as pd\n", + "import sys\n", + "import pickle\n", + "\n", + "#plotting\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "%matplotlib inline\n", + "\n", + "# Make numpy values easier to read.\n", + "np.set_printoptions(precision=3, suppress=True)\n", + "\n", + "print('tensorflow-' + tf.__version__)\n", + "print('python-' + sys.version)\n", + "print('sklearn-' + sklearn.__version__)\n", + "print('numpy-' + np.__version__)\n", + "print('pandas-' + pd.__version__)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "tensorflow-2.4.1\n", + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n", + "sklearn-0.24.1\n", + "numpy-1.19.5\n", + "pandas-1.1.5\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 53, + "source": [ + "#load numeric column names for scaling\n", + "with open('numeric_columns.pickle', 'rb') as f: \n", + " nu_cols = pickle.load(f)\n", + " \n", + "def onc_plot_cm(y_true, y_predictions, proba_threshold=0.5):\n", + " '''\n", + " Plot the confusion matrix\n", + " '''\n", + " cm = confusion_matrix(y_true, y_predictions > proba_threshold)\n", + " sns.heatmap(cm, annot=True, fmt=\"d\")\n", + " plt.title('Confusion matrix @{:.2f}'.format(proba_threshold))\n", + " plt.ylabel('Actual label')\n", + " plt.xlabel('Predicted label')\n", + "\n", + " print('Legitimate Survival Detected (True Negatives): ', cm[0][0])\n", + " print('Legitimate Survival Incorrectly Detected (False Positives): ', cm[0][1])\n", + " print('Deceased Missed (False Negatives): ', cm[1][0])\n", + " print('Deceased Detected (True Positives): ', cm[1][1])\n", + " print('Total Deceased: ', np.sum(cm[1]))\n", + " print('Total Survived: ', np.sum(cm[0]))\n", + " plt.show()\n", + "\n", + "def onc_plot_roc(train_y, train_predictions, test_y, test_predictions, **kwargs):\n", + " '''\n", + " Plot the training and test set roc curves and return the test ROC curve results\n", + " '''\n", + " train_false_positives, train_true_positives, _ = roc_curve(train_y, train_predictions)\n", + " train_roc_auc_score = auc(train_false_positives, train_true_positives)\n", + "\n", + " test_false_positives, test_true_positives, _ = roc_curve(test_y, test_predictions)\n", + " test_roc_auc_score = auc(test_false_positives, test_true_positives)\n", + " \n", + " plt.plot(\n", + " 100*train_false_positives, 100*train_true_positives, \n", + " label=r'Train ROC MLP model (AUC = %0.3f)' % (train_roc_auc_score), \n", + " linewidth=2, \n", + " linestyle='--'\n", + " )\n", + " plt.plot(\n", + " 100*test_false_positives, 100*test_true_positives, \n", + " label=r'Test ROC MLP model (AUC = %0.3f)' % (test_roc_auc_score), \n", + " linewidth=2,\n", + " **kwargs)\n", + "\n", + " plt.xlabel('False positives [%]')\n", + " plt.ylabel('True positives [%]')\n", + " #plt.xlim([-0.5,20])\n", + " #plt.ylim([80,100.5])\n", + " plt.grid(False)\n", + " ax = plt.gca()\n", + " ax.set_aspect('equal')\n", + " plt.show()\n", + " \n", + " return(test_false_positives, test_true_positives, test_roc_auc_score)\n", + "\n", + "def onc_plot_precision_recall(train_y, train_predictions, test_y, test_predictions, **kwargs):\n", + " '''\n", + " Plot the training and test set pr curves and return the test pr curve results\n", + " '''\n", + " train_precision, train_recall, _ = precision_recall_curve(train_y, train_predictions)\n", + " train_ap_score = average_precision_score(train_y, train_predictions)\n", + " \n", + " test_precision, test_recall, _ = precision_recall_curve(test_y, test_predictions)\n", + " test_ap_score = average_precision_score(test_y, test_predictions)\n", + " \n", + " \n", + " plt.plot(\n", + " 100*train_recall,100*(1-train_precision),\n", + " label=r'Train Precision-Recall Curve MLP model (AUC = %0.3f)' % (train_ap_score), \n", + " linewidth=2, \n", + " linestyle='--'\n", + " )\n", + " plt.plot(\n", + " 100*test_recall, 100*(1-test_precision),\n", + " label=r'Test Precision-Recall Curve MLP model (AUC = %0.3f)' % (test_ap_score), \n", + " linewidth=2,\n", + " **kwargs)\n", + "\n", + " plt.ylabel('Precision (PPV) [%]')\n", + " plt.xlabel('Recall (Sensitivity) [%]')\n", + " #plt.xlim([-0.5,20])\n", + " #plt.ylim([80,100.5])\n", + " plt.grid(False)\n", + " ax = plt.gca()\n", + " ax.set_aspect('equal')\n", + " plt.show()\n", + " \n", + " return(test_precision, test_recall, test_ap_score)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# final model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 54, + "source": [ + "METRICS = [\n", + " tf.keras.metrics.TruePositives(name='tp'),\n", + " tf.keras.metrics.FalsePositives(name='fp'),\n", + " tf.keras.metrics.TrueNegatives(name='tn'),\n", + " tf.keras.metrics.FalseNegatives(name='fn'), \n", + " tf.keras.metrics.BinaryAccuracy(name='accuracy'),\n", + " tf.keras.metrics.Precision(name='precision'),\n", + " tf.keras.metrics.Recall(name='recall'),\n", + " tf.keras.metrics.AUC(name='auc'),\n", + " tf.keras.metrics.AUC(name='auc_pr',\n", + " num_thresholds=200,\n", + " curve=\"PR\",\n", + " summation_method=\"interpolation\",\n", + " dtype=None,\n", + " thresholds=None,\n", + " multi_label=False,\n", + " label_weights=None)\n", + "]\n", + "\n", + "# put in the best hyperparameters from the cross validation tuning\n", + "def final_build_mlp(\n", + " layers=2,\n", + " neurons=16,\n", + " output_bias=None, \n", + " optimizer='Adam',\n", + " activation='relu',\n", + " learn_rate=.0002,\n", + " dropout_rate=0.2,\n", + " kernel_regularizer='l2',\n", + " metrics=METRICS\n", + "):\n", + " \n", + " if output_bias is not None:\n", + " output_bias = tf.keras.initializers.Constant(output_bias)\n", + " \n", + " model = tf.keras.Sequential()\n", + " \n", + " #add one or more dense layers\n", + " for i in range(layers):\n", + " model.add(Dense(\n", + " neurons, \n", + " activation=activation,\n", + " input_shape=(294,),\n", + " kernel_regularizer=kernel_regularizer)\n", + " ) \n", + " model.add(Dropout(dropout_rate))\n", + " model.add(Dense(\n", + " 1, \n", + " activation='sigmoid',\n", + " bias_initializer=output_bias))\n", + " opt = Adam(lr=learn_rate)\n", + " model.compile(\n", + " optimizer=opt,\n", + " loss=tf.keras.losses.BinaryCrossentropy(),\n", + " metrics=metrics)\n", + "\n", + " return model" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 55, + "source": [ + "def get_data(imp):\n", + " with open('complete' + str(imp) + '.pickle', 'rb') as f:\n", + " dataset = pickle.load(f)\n", + " \n", + " ##Training set = subsets 0-6\n", + " X_train = dataset[dataset.subset <= 4].copy().sort_values(by = 'usrds_id')\n", + " y_train = np.array(X_train.pop('died_in_90'))\n", + "\n", + " ##validation set = subsets 5-6\n", + " X_val = dataset[(dataset.subset == 6) | (dataset.subset == 5)].copy().sort_values(by = 'usrds_id')\n", + " y_val = np.array(X_val.pop('died_in_90'))\n", + " print('shape val ' + str(X_val.shape))\n", + " \n", + " # test set = subsets 7 8 9\n", + " # sorting by usrds_id is important so that we can calculate the fairness (or you could just run the predictions again.)\n", + " X_test = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id')\n", + " y_test = np.array(X_test.pop('died_in_90'))\n", + " \n", + " # scale the numeric features by fitting on the training set \n", + " scaler = StandardScaler()\n", + " X_train[nu_cols] = scaler.fit_transform(X_train[nu_cols])\n", + " X_train = np.array(X_train.drop(columns=['subset','usrds_id','impnum'])) \n", + " print('scaled shape train ' + str(X_train.shape))\n", + "\n", + " # use the model from scaling on the training data to transform val and test sets\n", + " X_val[nu_cols] = scaler.transform(X_val[nu_cols])\n", + " X_val = np.array(X_val.drop(columns=['subset','usrds_id','impnum'])) \n", + " print('scaled shape val ' + str(X_val.shape))\n", + " \n", + " X_test[nu_cols] = scaler.transform(X_test[nu_cols])\n", + " X_test = np.array(X_test.drop(columns=['subset','usrds_id','impnum'])) \n", + " print('scaled shape test ' + str(X_test.shape))\n", + " \n", + " return(X_train, y_train, X_val, y_val, X_test, y_test)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Train model and test" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 56, + "source": [ + "date_final = 2021\n", + "imp = 0\n", + "y_test_all = []\n", + "y_pred_proba_all = []\n", + "fpr_list=[]\n", + "tpr_list=[]\n", + "roc_auc_list=[]\n", + "seed = 78\n", + "np.random.seed(seed)\n", + "\n", + "prec_list = []\n", + "rec_list = []\n", + "thresh_list = []\n", + "ap_score_list = []\n", + " \n", + "#for each imputed set\n", + "for i in range(5):\n", + " imp = imp + 1\n", + " \n", + " X_train, y_train, X_val, y_val, X_test, y_test = get_data(imp)\n", + " \n", + " #optimal params for the .fit\n", + " class_weight_10 = {0: 1, 1: 10}\n", + " epochs_final = 10\n", + " batches = 256\n", + " \n", + " #instantiate model defined above\n", + " final_model = final_build_mlp()\n", + " \n", + " #train the final model on the train/validation sets\n", + " final_history = final_model.fit(\n", + " X_train,\n", + " y_train,\n", + " batch_size=batches,\n", + " epochs=epochs_final,\n", + " validation_data=(X_val, y_val),\n", + " class_weight=class_weight_10)\n", + " \n", + " #results from training\n", + " train_predictions_final = final_model.predict(\n", + " X_train, \n", + " batch_size=batches\n", + " )\n", + " \n", + " #test the model on new data (test set)\n", + " test_predictions_final = final_model.predict(\n", + " X_test, \n", + " batch_size=batches\n", + " )\n", + " final_eval = final_model.evaluate(\n", + " X_test, \n", + " y_test,\n", + " batch_size=batches, \n", + " verbose=1\n", + " )\n", + " \n", + " #print results of test set\n", + " res = {}\n", + " for name, value in zip(final_model.metrics_names, final_eval):\n", + " print(name, ': ', value)\n", + " res = {name : value}\n", + " \n", + " #plot confusion matrix results\n", + " onc_plot_cm(y_test, test_predictions_final)\n", + " \n", + " #plot roc auc results\n", + " test_false_positives, test_true_positives, test_roc_auc_score = onc_plot_roc(\n", + " y_train.ravel(), \n", + " train_predictions_final, \n", + " y_test.ravel(),\n", + " test_predictions_final\n", + " )\n", + " #collect results of the test roc_curve for saving\n", + " fpr_list.append(test_false_positives)\n", + " tpr_list.append(test_true_positives)\n", + " roc_auc_list.append(test_roc_auc_score)\n", + " \n", + " #collect results of the test precision recall curve for saving\n", + " test_precision, test_recall, test_ap_score = onc_plot_precision_recall(\n", + " y_train.ravel(), \n", + " train_predictions_final, \n", + " y_test.ravel(),\n", + " test_predictions_final)\n", + " \n", + " prec_list.append(test_precision)\n", + " rec_list.append(test_recall)\n", + " ap_score_list.append(test_ap_score)\n", + " \n", + " #collect results\n", + " y_test_all.append(y_test.ravel())\n", + " y_pred_proba_all.append(test_predictions_final)\n", + " \n", + " #save dicts of results\n", + " with open(str(date_final)+'_MLP_final_results_imp_' + str(imp) + '.pickle', 'wb') as f: \n", + " pickle.dump(res, f)\n", + "\n", + " # Save the entire model to a HDF5 file.\n", + " # The '.h5' extension indicates that the model should be saved to HDF5.\n", + " final_model.save(str(date_final)+'_MLP_final_model_imp_' + str(imp) + '.h5') \n", + " \n", + " with open(str(date_final)+'_MLP_final_eval_imp_' + str(imp) + '.pickle','wb') as f: \n", + " pickle.dump(final_eval, f)\n", + "\n", + "# save metrics from all imputations for plotting\n", + "with open(str(date_final)+'_MLP_final_ytest_all.pickle', 'wb') as f: \n", + " pickle.dump(y_test_all, f)\n", + "with open(str(date_final)+'_MLP_final_ypred_all.pickle', 'wb') as f: \n", + " pickle.dump(y_pred_proba_all, f)\n", + " \n", + "#save roc auc data\n", + "with open(str(date_final)+'_MLP_final_fpr.pickle', 'wb') as f: \n", + " pickle.dump(fpr_list, f)\n", + "with open(str(date_final)+'_MLP_final_tpr.pickle', 'wb') as f: \n", + " pickle.dump(tpr_list, f)\n", + "with open(str(date_final)+'_MLP_final_auc.pickle', 'wb') as f: \n", + " pickle.dump(roc_auc_list, f)\n", + "\n", + "#save precision recall curve AUC data\n", + "with open(str(date_final)+'_MLP_final_prec.pickle', 'wb') as f: \n", + " pickle.dump(prec_list, f)\n", + "with open(str(date_final)+'_MLP_final_recall.pickle', 'wb') as f: \n", + " pickle.dump(rec_list, f)\n", + "with open(str(date_final)+'_MLP_final_avgprec_thresh.pickle', 'wb') as f: \n", + " pickle.dump(thresh_list, f)\n", + "with open(str(date_final)+'_MLP_final_avgprec_score.pickle', 'wb') as f: \n", + " pickle.dump(ap_score_list, f)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "shape val (230143, 297)\n", + "scaled shape train (574747, 294)\n", + "scaled shape val (230143, 294)\n", + "scaled shape test (345305, 294)\n", + "Epoch 1/10\n", + "2246/2246 [==============================] - 8s 3ms/step - loss: 1.4851 - tp: 9643.9599 - fp: 42908.6929 - tn: 223251.2755 - fn: 11939.7539 - accuracy: 0.8277 - precision: 0.1850 - recall: 0.3727 - auc: 0.6961 - auc_pr: 0.1701 - val_loss: 0.6039 - val_tp: 11071.0000 - val_fp: 42236.0000 - val_tn: 170508.0000 - val_fn: 6328.0000 - val_accuracy: 0.7890 - val_precision: 0.2077 - val_recall: 0.6363 - val_auc: 0.8032 - val_auc_pr: 0.2514\n", + "Epoch 2/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 1.0413 - tp: 13500.2790 - fp: 56064.2234 - tn: 210110.4855 - fn: 8068.6943 - accuracy: 0.7776 - precision: 0.1948 - recall: 0.6232 - auc: 0.7907 - auc_pr: 0.2281 - val_loss: 0.5196 - val_tp: 11766.0000 - val_fp: 47303.0000 - val_tn: 165441.0000 - val_fn: 5633.0000 - val_accuracy: 0.7700 - val_precision: 0.1992 - val_recall: 0.6762 - val_auc: 0.8077 - val_auc_pr: 0.2563\n", + "Epoch 3/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9576 - tp: 14127.1139 - fp: 59888.1749 - tn: 206343.4464 - fn: 7384.9470 - accuracy: 0.7666 - precision: 0.1915 - recall: 0.6548 - auc: 0.7993 - auc_pr: 0.2344 - val_loss: 0.4945 - val_tp: 11898.0000 - val_fp: 47916.0000 - val_tn: 164828.0000 - val_fn: 5501.0000 - val_accuracy: 0.7679 - val_precision: 0.1989 - val_recall: 0.6838 - val_auc: 0.8092 - val_auc_pr: 0.2588\n", + "Epoch 4/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9284 - tp: 14513.0490 - fp: 61853.0494 - tn: 204387.0579 - fn: 6990.5260 - accuracy: 0.7616 - precision: 0.1898 - recall: 0.6722 - auc: 0.8022 - auc_pr: 0.2370 - val_loss: 0.5108 - val_tp: 12733.0000 - val_fp: 55520.0000 - val_tn: 157224.0000 - val_fn: 4666.0000 - val_accuracy: 0.7385 - val_precision: 0.1866 - val_recall: 0.7318 - val_auc: 0.8094 - val_auc_pr: 0.2585\n", + "Epoch 5/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9211 - tp: 14640.1820 - fp: 63199.5812 - tn: 203064.2029 - fn: 6839.7161 - accuracy: 0.7569 - precision: 0.1888 - recall: 0.6825 - auc: 0.8021 - auc_pr: 0.2373 - val_loss: 0.4987 - val_tp: 12618.0000 - val_fp: 54555.0000 - val_tn: 158189.0000 - val_fn: 4781.0000 - val_accuracy: 0.7422 - val_precision: 0.1878 - val_recall: 0.7252 - val_auc: 0.8094 - val_auc_pr: 0.2579\n", + "Epoch 6/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9192 - tp: 14769.7721 - fp: 64206.4860 - tn: 202012.4486 - fn: 6754.9755 - accuracy: 0.7530 - precision: 0.1871 - recall: 0.6863 - auc: 0.8011 - auc_pr: 0.2378 - val_loss: 0.4827 - val_tp: 12337.0000 - val_fp: 51539.0000 - val_tn: 161205.0000 - val_fn: 5062.0000 - val_accuracy: 0.7541 - val_precision: 0.1931 - val_recall: 0.7091 - val_auc: 0.8104 - val_auc_pr: 0.2599\n", + "Epoch 7/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9082 - tp: 14861.4290 - fp: 64424.1455 - tn: 201860.9444 - fn: 6597.1633 - accuracy: 0.7532 - precision: 0.1881 - recall: 0.6951 - auc: 0.8052 - auc_pr: 0.2381 - val_loss: 0.4886 - val_tp: 12450.0000 - val_fp: 52527.0000 - val_tn: 160217.0000 - val_fn: 4949.0000 - val_accuracy: 0.7503 - val_precision: 0.1916 - val_recall: 0.7156 - val_auc: 0.8101 - val_auc_pr: 0.2601\n", + "Epoch 8/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9134 - tp: 15013.3734 - fp: 64943.4575 - tn: 201275.6048 - fn: 6511.2466 - accuracy: 0.7519 - precision: 0.1877 - recall: 0.6963 - auc: 0.8022 - auc_pr: 0.2385 - val_loss: 0.4899 - val_tp: 12622.0000 - val_fp: 53863.0000 - val_tn: 158881.0000 - val_fn: 4777.0000 - val_accuracy: 0.7452 - val_precision: 0.1898 - val_recall: 0.7254 - val_auc: 0.8105 - val_auc_pr: 0.2594\n", + "Epoch 9/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9147 - tp: 15009.2577 - fp: 65637.5763 - tn: 200599.0320 - fn: 6497.8162 - accuracy: 0.7486 - precision: 0.1865 - recall: 0.6991 - auc: 0.8020 - auc_pr: 0.2367 - val_loss: 0.4802 - val_tp: 12512.0000 - val_fp: 53021.0000 - val_tn: 159723.0000 - val_fn: 4887.0000 - val_accuracy: 0.7484 - val_precision: 0.1909 - val_recall: 0.7191 - val_auc: 0.8105 - val_auc_pr: 0.2603\n", + "Epoch 10/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9018 - tp: 15134.6631 - fp: 65372.5915 - tn: 200910.4428 - fn: 6325.9849 - accuracy: 0.7517 - precision: 0.1888 - recall: 0.7071 - auc: 0.8069 - auc_pr: 0.2410 - val_loss: 0.5030 - val_tp: 12879.0000 - val_fp: 56583.0000 - val_tn: 156161.0000 - val_fn: 4520.0000 - val_accuracy: 0.7345 - val_precision: 0.1854 - val_recall: 0.7402 - val_auc: 0.8106 - val_auc_pr: 0.2601\n", + "1349/1349 [==============================] - 2s 1ms/step - loss: 0.5030 - tp: 19052.0000 - fp: 85073.0000 - tn: 234494.0000 - fn: 6686.0000 - accuracy: 0.7343 - precision: 0.1830 - recall: 0.7402 - auc: 0.8105 - auc_pr: 0.2535\n", + "loss : 0.5030018091201782\n", + "tp : 19052.0\n", + "fp : 85073.0\n", + "tn : 234494.0\n", + "fn : 6686.0\n", + "accuracy : 0.7342668175697327\n", + "precision : 0.18297238647937775\n", + "recall : 0.7402284741401672\n", + "auc : 0.8104646801948547\n", + "auc_pr : 0.2534569501876831\n", + "Legitimate Survival Detected (True Negatives): 234494\n", + "Legitimate Survival Incorrectly Detected (False Positives): 85073\n", + "Deceased Missed (False Negatives): 6686\n", + "Deceased Detected (True Positives): 19052\n", + "Total Deceased: 25738\n", + "Total Survived: 319567\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "shape val (230143, 297)\n", + "scaled shape train (574747, 294)\n", + "scaled shape val (230143, 294)\n", + "scaled shape test (345305, 294)\n", + "Epoch 1/10\n", + "2246/2246 [==============================] - 7s 3ms/step - loss: 1.4342 - tp: 35157.7966 - fp: 190930.2764 - tn: 394866.4593 - fn: 12094.1500 - accuracy: 0.6797 - precision: 0.1559 - recall: 0.7450 - auc: 0.7756 - auc_pr: 0.1971 - val_loss: 0.6550 - val_tp: 12961.0000 - val_fp: 59848.0000 - val_tn: 152896.0000 - val_fn: 4438.0000 - val_accuracy: 0.7207 - val_precision: 0.1780 - val_recall: 0.7449 - val_auc: 0.8027 - val_auc_pr: 0.2456\n", + "Epoch 2/10\n", + "2246/2246 [==============================] - 5s 2ms/step - loss: 1.0258 - tp: 15649.8794 - fp: 73454.5915 - tn: 192790.1019 - fn: 5849.1095 - accuracy: 0.7222 - precision: 0.1743 - recall: 0.7299 - auc: 0.7970 - auc_pr: 0.2345 - val_loss: 0.5533 - val_tp: 12519.0000 - val_fp: 54246.0000 - val_tn: 158498.0000 - val_fn: 4880.0000 - val_accuracy: 0.7431 - val_precision: 0.1875 - val_recall: 0.7195 - val_auc: 0.8069 - val_auc_pr: 0.2550\n", + "Epoch 3/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9489 - tp: 15567.2452 - fp: 69984.2261 - tn: 196300.5719 - fn: 5891.6391 - accuracy: 0.7362 - precision: 0.1810 - recall: 0.7253 - auc: 0.8032 - auc_pr: 0.2419 - val_loss: 0.5098 - val_tp: 12293.0000 - val_fp: 51407.0000 - val_tn: 161337.0000 - val_fn: 5106.0000 - val_accuracy: 0.7544 - val_precision: 0.1930 - val_recall: 0.7065 - val_auc: 0.8084 - val_auc_pr: 0.2576\n", + "Epoch 4/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9309 - tp: 15541.8474 - fp: 69648.9466 - tn: 196580.3689 - fn: 5972.5194 - accuracy: 0.7360 - precision: 0.1821 - recall: 0.7215 - auc: 0.8038 - auc_pr: 0.2446 - val_loss: 0.5196 - val_tp: 12736.0000 - val_fp: 55347.0000 - val_tn: 157397.0000 - val_fn: 4663.0000 - val_accuracy: 0.7392 - val_precision: 0.1871 - val_recall: 0.7320 - val_auc: 0.8101 - val_auc_pr: 0.2602\n", + "Epoch 5/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9086 - tp: 15538.7187 - fp: 68932.0565 - tn: 197435.1540 - fn: 5837.7530 - accuracy: 0.7418 - precision: 0.1841 - recall: 0.7267 - auc: 0.8081 - auc_pr: 0.2483 - val_loss: 0.5281 - val_tp: 12988.0000 - val_fp: 57900.0000 - val_tn: 154844.0000 - val_fn: 4411.0000 - val_accuracy: 0.7293 - val_precision: 0.1832 - val_recall: 0.7465 - val_auc: 0.8098 - val_auc_pr: 0.2582\n", + "Epoch 6/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9117 - tp: 15483.1615 - fp: 68829.3400 - tn: 197496.9733 - fn: 5934.2074 - accuracy: 0.7405 - precision: 0.1834 - recall: 0.7231 - auc: 0.8051 - auc_pr: 0.2491 - val_loss: 0.5141 - val_tp: 12849.0000 - val_fp: 56676.0000 - val_tn: 156068.0000 - val_fn: 4550.0000 - val_accuracy: 0.7340 - val_precision: 0.1848 - val_recall: 0.7385 - val_auc: 0.8102 - val_auc_pr: 0.2610\n", + "Epoch 7/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9087 - tp: 15630.1478 - fp: 69556.6569 - tn: 196674.4842 - fn: 5882.3934 - accuracy: 0.7367 - precision: 0.1830 - recall: 0.7263 - auc: 0.8069 - auc_pr: 0.2482 - val_loss: 0.4940 - val_tp: 12477.0000 - val_fp: 52382.0000 - val_tn: 160362.0000 - val_fn: 4922.0000 - val_accuracy: 0.7510 - val_precision: 0.1924 - val_recall: 0.7171 - val_auc: 0.8107 - val_auc_pr: 0.2619\n", + "Epoch 8/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9056 - tp: 15533.3689 - fp: 68689.4188 - tn: 197621.9079 - fn: 5898.9866 - accuracy: 0.7412 - precision: 0.1846 - recall: 0.7227 - auc: 0.8069 - auc_pr: 0.2503 - val_loss: 0.4994 - val_tp: 12657.0000 - val_fp: 54404.0000 - val_tn: 158340.0000 - val_fn: 4742.0000 - val_accuracy: 0.7430 - val_precision: 0.1887 - val_recall: 0.7275 - val_auc: 0.8110 - val_auc_pr: 0.2605\n", + "Epoch 9/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9022 - tp: 15676.8865 - fp: 69222.3881 - tn: 197014.4709 - fn: 5829.9368 - accuracy: 0.7402 - precision: 0.1848 - recall: 0.7276 - auc: 0.8083 - auc_pr: 0.2503 - val_loss: 0.4851 - val_tp: 12407.0000 - val_fp: 52038.0000 - val_tn: 160706.0000 - val_fn: 4992.0000 - val_accuracy: 0.7522 - val_precision: 0.1925 - val_recall: 0.7131 - val_auc: 0.8111 - val_auc_pr: 0.2622\n", + "Epoch 10/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9071 - tp: 15663.2546 - fp: 68605.7067 - tn: 197581.2345 - fn: 5893.4864 - accuracy: 0.7403 - precision: 0.1860 - recall: 0.7285 - auc: 0.8066 - auc_pr: 0.2469 - val_loss: 0.4936 - val_tp: 12523.0000 - val_fp: 52622.0000 - val_tn: 160122.0000 - val_fn: 4876.0000 - val_accuracy: 0.7502 - val_precision: 0.1922 - val_recall: 0.7198 - val_auc: 0.8117 - val_auc_pr: 0.2619\n", + "1349/1349 [==============================] - 2s 1ms/step - loss: 0.4938 - tp: 18498.0000 - fp: 79341.0000 - tn: 240226.0000 - fn: 7240.0000 - accuracy: 0.7493 - precision: 0.1891 - recall: 0.7187 - auc: 0.8112 - auc_pr: 0.2542\n", + "loss : 0.49380770325660706\n", + "tp : 18498.0\n", + "fp : 79341.0\n", + "tn : 240226.0\n", + "fn : 7240.0\n", + "accuracy : 0.749262273311615\n", + "precision : 0.18906570971012115\n", + "recall : 0.7187038660049438\n", + "auc : 0.8111752271652222\n", + "auc_pr : 0.25416985154151917\n", + "Legitimate Survival Detected (True Negatives): 240226\n", + "Legitimate Survival Incorrectly Detected (False Positives): 79341\n", + "Deceased Missed (False Negatives): 7240\n", + "Deceased Detected (True Positives): 18498\n", + "Total Deceased: 25738\n", + "Total Survived: 319567\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "shape val (230143, 297)\n", + "scaled shape train (574747, 294)\n", + "scaled shape val (230143, 294)\n", + "scaled shape test (345305, 294)\n", + "Epoch 1/10\n", + "2246/2246 [==============================] - 7s 3ms/step - loss: 1.3539 - tp: 33861.7125 - fp: 173489.9186 - tn: 412342.3298 - fn: 13354.7214 - accuracy: 0.7055 - precision: 0.1637 - recall: 0.7175 - auc: 0.7827 - auc_pr: 0.2240 - val_loss: 0.6002 - val_tp: 12431.0000 - val_fp: 54946.0000 - val_tn: 157798.0000 - val_fn: 4968.0000 - val_accuracy: 0.7397 - val_precision: 0.1845 - val_recall: 0.7145 - val_auc: 0.8017 - val_auc_pr: 0.2461\n", + "Epoch 2/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9930 - tp: 15469.7664 - fp: 70157.3142 - tn: 196142.2069 - fn: 5974.3947 - accuracy: 0.7353 - precision: 0.1797 - recall: 0.7204 - auc: 0.7986 - auc_pr: 0.2336 - val_loss: 0.5232 - val_tp: 12331.0000 - val_fp: 52040.0000 - val_tn: 160704.0000 - val_fn: 5068.0000 - val_accuracy: 0.7519 - val_precision: 0.1916 - val_recall: 0.7087 - val_auc: 0.8084 - val_auc_pr: 0.2573\n", + "Epoch 3/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9337 - tp: 15424.2216 - fp: 67911.9337 - tn: 198400.9381 - fn: 6006.5888 - accuracy: 0.7436 - precision: 0.1850 - recall: 0.7185 - auc: 0.8053 - auc_pr: 0.2415 - val_loss: 0.5292 - val_tp: 13025.0000 - val_fp: 58413.0000 - val_tn: 154331.0000 - val_fn: 4374.0000 - val_accuracy: 0.7272 - val_precision: 0.1823 - val_recall: 0.7486 - val_auc: 0.8095 - val_auc_pr: 0.2580\n", + "Epoch 4/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9197 - tp: 15505.5474 - fp: 68000.6604 - tn: 198280.7263 - fn: 5956.7481 - accuracy: 0.7418 - precision: 0.1850 - recall: 0.7225 - auc: 0.8053 - auc_pr: 0.2417 - val_loss: 0.4993 - val_tp: 12527.0000 - val_fp: 53438.0000 - val_tn: 159306.0000 - val_fn: 4872.0000 - val_accuracy: 0.7466 - val_precision: 0.1899 - val_recall: 0.7200 - val_auc: 0.8103 - val_auc_pr: 0.2599\n", + "Epoch 5/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9110 - tp: 15511.2608 - fp: 67283.0583 - tn: 198919.1624 - fn: 6030.2007 - accuracy: 0.7455 - precision: 0.1874 - recall: 0.7196 - auc: 0.8075 - auc_pr: 0.2475 - val_loss: 0.4959 - val_tp: 12527.0000 - val_fp: 53135.0000 - val_tn: 159609.0000 - val_fn: 4872.0000 - val_accuracy: 0.7480 - val_precision: 0.1908 - val_recall: 0.7200 - val_auc: 0.8098 - val_auc_pr: 0.2580\n", + "Epoch 6/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9047 - tp: 15442.2991 - fp: 67123.8104 - tn: 199168.8362 - fn: 6008.7365 - accuracy: 0.7457 - precision: 0.1870 - recall: 0.7202 - auc: 0.8081 - auc_pr: 0.2458 - val_loss: 0.4888 - val_tp: 12407.0000 - val_fp: 51779.0000 - val_tn: 160965.0000 - val_fn: 4992.0000 - val_accuracy: 0.7533 - val_precision: 0.1933 - val_recall: 0.7131 - val_auc: 0.8103 - val_auc_pr: 0.2583\n", + "Epoch 7/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9060 - tp: 15512.3502 - fp: 67631.3373 - tn: 198542.4139 - fn: 6057.5808 - accuracy: 0.7443 - precision: 0.1869 - recall: 0.7188 - auc: 0.8077 - auc_pr: 0.2480 - val_loss: 0.4840 - val_tp: 12341.0000 - val_fp: 50884.0000 - val_tn: 161860.0000 - val_fn: 5058.0000 - val_accuracy: 0.7569 - val_precision: 0.1952 - val_recall: 0.7093 - val_auc: 0.8101 - val_auc_pr: 0.2594\n", + "Epoch 8/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9022 - tp: 15438.9582 - fp: 67061.0343 - tn: 199210.9012 - fn: 6032.7886 - accuracy: 0.7466 - precision: 0.1874 - recall: 0.7195 - auc: 0.8076 - auc_pr: 0.2462 - val_loss: 0.5041 - val_tp: 12822.0000 - val_fp: 55858.0000 - val_tn: 156886.0000 - val_fn: 4577.0000 - val_accuracy: 0.7374 - val_precision: 0.1867 - val_recall: 0.7369 - val_auc: 0.8106 - val_auc_pr: 0.2598\n", + "Epoch 9/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9045 - tp: 15559.8291 - fp: 67454.2007 - tn: 198754.0530 - fn: 5975.5995 - accuracy: 0.7445 - precision: 0.1867 - recall: 0.7225 - auc: 0.8064 - auc_pr: 0.2454 - val_loss: 0.4806 - val_tp: 12217.0000 - val_fp: 49856.0000 - val_tn: 162888.0000 - val_fn: 5182.0000 - val_accuracy: 0.7609 - val_precision: 0.1968 - val_recall: 0.7022 - val_auc: 0.8104 - val_auc_pr: 0.2599\n", + "Epoch 10/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.8994 - tp: 15532.0214 - fp: 67263.2101 - tn: 198981.0191 - fn: 5967.4317 - accuracy: 0.7457 - precision: 0.1876 - recall: 0.7229 - auc: 0.8089 - auc_pr: 0.2461 - val_loss: 0.5000 - val_tp: 12667.0000 - val_fp: 54413.0000 - val_tn: 158331.0000 - val_fn: 4732.0000 - val_accuracy: 0.7430 - val_precision: 0.1888 - val_recall: 0.7280 - val_auc: 0.8098 - val_auc_pr: 0.2565\n", + "1349/1349 [==============================] - 2s 1ms/step - loss: 0.4999 - tp: 18713.0000 - fp: 81950.0000 - tn: 237617.0000 - fn: 7025.0000 - accuracy: 0.7423 - precision: 0.1859 - recall: 0.7271 - auc: 0.8101 - auc_pr: 0.2494\n", + "loss : 0.4998798072338104\n", + "tp : 18713.0\n", + "fp : 81950.0\n", + "tn : 237617.0\n", + "fn : 7025.0\n", + "accuracy : 0.7423292398452759\n", + "precision : 0.18589749932289124\n", + "recall : 0.7270572781562805\n", + "auc : 0.8101412057876587\n", + "auc_pr : 0.24943037331104279\n", + "Legitimate Survival Detected (True Negatives): 237617\n", + "Legitimate Survival Incorrectly Detected (False Positives): 81950\n", + "Deceased Missed (False Negatives): 7025\n", + "Deceased Detected (True Positives): 18713\n", + "Total Deceased: 25738\n", + "Total Survived: 319567\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAQ8AAAEGCAYAAAB7IBD2AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAAAgy0lEQVR4nO3deXwU9f3H8debhEMOuaUg0KDSAvUAiYiirXcVD7SieONJa623VbRVEa2lnsV6ldaDWm9AwftArNWfF5cCIoqKFYqQKgrKlex+fn/MBNeQZDebnd3N5vN8PPLIzHe+O/PJQD6Z+c73+x2ZGc45V1dNch2Ac65h8uThnEuLJw/nXFo8eTjn0uLJwzmXluJcB1AfnTp1spKSklyH4VxBmzVr1v/MrHPV8gadPEpKSpg5c2auw3CuoEn6tLpyv21xzqXFk4dzLi2ePJxzafHk4ZxLiycP51xaIkseku6WtFLS/ISyDpJekPRh+L19WC5Jt0haLOldSTtHFZdzLjOivPK4FziwStloYLqZ9Qamh+sABwG9w69RwB0RxuWcy4DIkoeZvQJ8WaV4GDAxXJ4IHJ5Q/g8LvAG0k9Q1I4GMaQs39s3Irpxz38l2m0cXM1seLn8OdAmXtwY+S6i3NCzbjKRRkmZKmllWVlb70daGuWvNf9OP2DlXrZw1mFowC1GdZyIyswlmVmpmpZ07b9Zj9vvisTSjc84lk+3ksaLydiT8vjIsXwb0SKjXPSxzzuWpbCePacDIcHkkMDWh/KTwqctg4OuE2xvnXB6KbGCcpAeBvYBOkpYCVwLjgEcknQZ8ChwdVn8aGAosBtYCp0QVl3MuMyJLHmZ2bA2b9q2mrgFnRRWLcy7zvIepcy4tnjycc2nx5OGcS4snD+dcWjx5OOfS4snDOZcWTx7OubR48nCusYmVQ8XGeu/Gk4dzjUzswxfhms7wxHn12o8nD+caEzNWPv47ABZ8Ub9R5548nGtEyh6/lK7rPwJg447H12tfDfqNcc65FK1ezid/PYZe384F4I4fXM2ZOw+u1y49eThXyMzYMPdhmk/9Jb3Cor+1GsWpp9d/HKonD+cK1ccvY/cdQXOLbyq6v8+tnD7iBCTVe/eePJwrNN+UEXvwOIqWvUVlinicvWh9xJ85fqdetX60Ljx5OFcovvyYVQ+fRfsV/0dRZVn7Ehh+D8O6DcjI1UYiTx7ONXD2ySto4qEAtA/LYiYWDrmZ7Q8IJuXLbNoIePJwriGKx9n4zKU0e/vO7yWGmIm/tDyLI0+/jO07too0BE8ezjUg5WUfUfz8pejD52iWUL7MOjJxu1sYdcT+nNe6eVZi8eThXL6LlbP0iT9Q/O4D/CC+4nub/l28G6/+5CouOmwXLivKbp9PTx7O5aOKjXzz2Lm0XvAAELzIKJHtfi7a93L2LGrKntmPDvDk4Vz+2LgW5vwTmz4WbVxD64RNq6w1n1oX1u5/PbvtsU/Gn5ykw5OHc7m09ks2PH0pzec/tKmoalq4rsW5nH3BlfRvVkQ+8eThXLat/5o1Uy+mzcIgYWzWvNlle77Z/RIqtvs57Vo15+KsB5gaTx7OZcNX/4HHfgWfvgZAmyqbX47txFvdT+akY47jB21bfO+WJV958nAuIvG1q1gxfh+6bvi4xjoXt72Bs0cez14dWrJX9kLLCE8ezmWKGTbnPr59/lpar19OE6Br1Sqd+zB/8I102m4gXdtuwXW5iDNDPHk4Vx/rVsGTF8CCKUDQ2Fn1luOeip+zzYg/ssdPtqGoidgh60FGw5OHc3Vhhi14DCafgayi2ioL4z15u8Vguu1zJvvuOoBT8uCxahQ8eThXm4oNMG8S9u+b0JeLgRoGmZXsCftfxbz4NvTt1pa+We7tmQuePJyr6tPX4e2/wfzJm4qqSxgL4z04t/hybvvlUHp3CZ6fFMotSSpykjwknQ+cDhgwDziFoG3pIaAjMAs40czq/3IJ55JZ9Sk8ejL8d3at1T6Ld+b88jNp03sP7jyplL7FRTyfnQjzUtaTh6StgXOAfma2TtIjwDHAUOBmM3tI0p3AacAd2Y7PNQLrvoJ/XQdv3FZrtYcr9uK22DBe+eOpmBndgUkF2n6RjlzdthQDW0gqB1oCy4F9gOPC7ROBMXjycJlgBnMfwJ4djTasrrbKRiuimWJcUT6S+2P7cfUR/RmxSw9GNAmSRT6MJck3WU8eZrZM0g3Af4B1wPMEtylfmW1qvl4KbF3d5yWNAkYB9OzZM/qAXcO0ZgXcWgoJyaK6X//1g86mxQGXM+2dMgaVdGBsx5aMzV6UDVoublvaA8OAXsBXwKPAgal+3swmABMASktLLYIQXUO0/mt47ExY9FSt1dbYFhy68RqWWFfGH9OfYf2Dv1HDB1Yd9O6SycVty37AJ2ZWBiBpCjAEaCepOLz66A4sy0FsrqGIlcOCx2HK6Umrvjrods54vQO/O7gfxw3qyctN/BYkE3KRPP4DDJbUkuC2ZV9gJjADGE7wxGUkMDUHsbl8tX41TBkFHzyTtOo/KvZn6cBLuOjQgTQrbsIewMKh0YfY2OSizeNNSZOA2UAFMIfgNuQp4CFJ14Rld2U7NpdH1nwOb/8dXrk+pepHbbiCZtsO4ZTde3FSvy4RB+cgR09bzOxK4MoqxR8Dg3IQjss1M/joJXj2UvjfoqTVF8Z7snboLQwcvDdr1pfTunkxj/rTkKzzHqYuN1YsgDt2T1rtldgOvBHvy5Px3fiPdeG+0waxx3adNj06bdOiadSRuhp48nDRi8dh9r3w5PlJq74X/yFvaEdOPe8PWLueNP/kSy4q6cDF3siZdzx5uMxb+yVMOQMWv5hS9cmxPRhdPopyitm1VwfuPnkXaF6MgF236RhtrC5tnjxc/cXK4eETU3oSArByv1tY1n0oR9z5Fjt2b8v9p+/KkX770eB48nB1ZwbLZsPL1ya9ung7/iMuLz+V960HrZoVc+nQvhy/a0+2klgy7uAsBeyi4MnDJRePwRt3wPK5MO/RWqsujPek+6+ncMLklbzz2Vfs3LMd/zyplE5ZegWiyx5PHm5zG7+FtybAi2NSqv5sbBfOLT+LDTTj7pNL6fuDLkw9q3e0MbqcqzV5SOqQwj7iZvZVZsJxObPoGXjwmKTVYiZ0wNVctnQ3HpoTvDf16XP2ZFG3LaOO0OWZZFce/w2/antOVgT48NaGJFYBb9wOL1yeUvUbyo/i1tgRAJsGk40Dxo2IMEaX95Ilj4VmNqC2CpLmZDAeFwUzmDcppUFkX1gbOu5yFB8PGstBt7zKY78ewkXdtuSiLITpGpZkyWO3FPaRSh2XbZ+8AhMPTanqrzeew9PxXQHx4gU/peNWbdgGWHTNQZGG6Bq2WpOHma1PXJfUAjgB2AJ4wMy+qFrH5UisHMb3h9VLa632SbwLPYb/kakbBzF5zjLuPnkXbm+aXy9Qdg1DXZ+2jAdeA9YDjwN7ZjogV0drv4TretVa5YANf+ID607r5k35y3ED6NVnK44EjiztkZ0YXUFK9rTlQeD3ZvZRWNSBYOYvgNFRBuZqEKuApy+EWffWWGVNj72Zv+NlHDu5jL1/3JlJxw5gS+/B6TIs2ZXH74BrJC0HrgZuAB4DWhBMUOyi9k0ZPHQsLH07adV+6+9mLS2Ye+z+7NayGUt2yUJ8rtFK1ubxMXCcpD2Ahwkm7DnYzGLZCK7RisdgbCpdbGDg+jv4grb89cSBvPeTH0QcmHPfSXbb0p7gdQjlwFEEExc/J2m8mT2Rhfgaj7JFcFvyuZBurRjGjRVHsWOPDkw9awizshCac9VJdtvyOMEUgS2B+8xsWDiF4G8ljTKz1J4FuuqVfQC31X5vMaH3nVw7rw0grjtyR36zSw9+k53onKtVsuTREZhE8Gj2lwBmtg4YK6lrxLEVphXvwR3Ju8b0WX8P62nOkuMPDl5S41yeSZY8rgSeBWJUebpiZsujCqogxeMwtn2Nm8fHjuLm8qAL+D0n78L7fbbKVmTOpSVZg+lkYHJtdfLZtxsraJXLAGbfB9Nqv8nYaf0ENjTdkoVjD+Rcn8TXNSDJGkzHmNmY+tbJlaJczXtpBle1q3bTsibdGLL2BgDmXrE/77RslsXAnMucZLctp0uq/s3AARG84X5MxiLKoKz/IU9ya/KT9Xdx/E9/wpKhfbMYlHPRSJY8/ga0SaFO/otVQFGEcx+NaVttccn6BzYt33nCzhy4vbczu8KQrM3jqmwFEgVLfA12PMLkUU3i+Czemev6Psql3bbklz/bNprjOpdDjWcawrL3oVv/zO6zmqSx74br+ci2ZtKvduMvJan1EnWuISro5FGc2GC6YkHmkkcNDaIl6+8HfFZw1zgUePJosmnZYuW1zqWYspeu2ezly+usGX033Mt1w3fkaB/m7hqJpMkjnADoEIK5O7oB64D5wFNmtiDa8DLHYhvrlzy+/Bhu2XxGxpL1D3DfaYNY0rtzffbuXIOTrJ/HVcChwAzgTWAlwXD8HwHjwsRyoZm9G3Wg6YiZsWmOrHhF2vspHz+QpqsWb1Zesv4BZl++Px1aeV8N1/gku/J4y8yurGHbTZK2Io2Z0yW1A/4ObA8YcCqwiGDYfwmwBDjazFbVdd+JKuLxTcnDYuXp7WRMW6pOo/PK8Nns3rcXS4qaVPsR5xqDZMmjpaTmZrahuo1mtpLgaqSuxgPPmtlwSc0IRu1eBkw3s3GSRhOMpbkkjX1Xr67Jo4Z+G/ErvuKn/sZ250j2p/M44DNJ90kaKqneM+VKagv8FLgLwMw2hi+NGgZMDKtNBA6v77ESFaU6f9GGNdUmjvcOngJjvqaJJw7ngOSdxI6QtCVwBHA2cJekqcCDZvavNI/ZCygD7pG0EzALOBfokjBS93OgS3UfljQKglHqPXvW4Y5p6VvJ69zYB9ZsPlh47egV9GvRIvVjOdcIJL1pN7PVZjbRzA4iaKOYA9wi6bM0j1kM7AzcEb5Q6ls2H+5vBG0h1cUzwcxKzay0c+c6POGo7W3un74eXG1USRzbrf8HFZevoqUnDuc2k3KLXzgl4S+AEQSzqE9K85hLgaVm9ma4PokgmayonGAo/J5OW0rdLZ4O9xy4WfEVA15j8bhhFHujqHPVSvaotjXBLcuxwABgGsEs6i+HVwd1ZmafS/pM0o/NbBGwL/Be+DUSGBd+n5rO/uukmraN68uPJr7nhYw9sE/kh3euIUv2tGUJwUxitwPPmVmazzs3czZwf/ik5WPgFIKroEcknQZ8Chxd34M0q3rV8O3/oFWnYDm+eQNq5QjYJZ44nEsqWfLoAfQBtg2/3s/EQc1sLlBazaZ9M7H/Sps9F3nmYj7f/3Yem7OMM1/e+Xubhm+4gt8f3JfT9qj97WvOuUCy5HERwbtpZwPXS7rWzBrG/B3VmT+ZwTOPBODMhDbQgzs8ybTf7JG7mceca4CSJY9jgAFmtlZSR4JbmAaTPDZWxKmu4/hALdq0XGFNeOocf+Wuc3WV7FHCBjNbC2BmX6RQP69Y9U97mdz8uzmOin9xZ7bCca6gJLvy2EbStHBZwLYJ65jZYZFFFpElLY77fsFOI3ITiHMNXLLkMazK+g1RBZITv89OVxLnClGy7un/ktQf2A5YYGYLsxJVthQ3z3UEzjVYtbZhSLoCeAQ4EnhK0hlZiSobLtp8fg7nXOqS3baMAPo31KcttWrtM385Vx/Jksf3nrZIalBPW5okvPXp3XgvfjzqHzT/+HkYeHLugnKuQBT005amCZ2+mmA0774jdN8xhxE5VzgazdOWq8pP4tFcB+FcAUn6tCVbgUQhbrapRfht88FuzmVSsqctT0g6VFLVOYCRtI2ksZJOjS68+imPxzctnzC4zvM0O+dqkey25QzgAuDPkr4kmD6wBcEM5x8Bt5pZ9PNuZMA1h++Q6xCcKyjJbls+By4GLpZUAnQleOnTB5VPYZxzjVPKr5s0syUEkwM551zDGiXrnMsfnjycc2nx5OGcS0tKbR6ShgBjgB+GnxHB61W2iS60+mvaxHOjc1FJtcH0LuB8gre7pfjextzzKUmdi06qyeNrM3sm0kiccw1KqsljhqTrgSnAhspCM5sdSVQZUhGLp/4s2jlXJ6n+bu0afk9814oB+2Q2nMyKmXnycC4iKf1umdneUQfinGtYUnocIamtpJskzQy/bpS0+YtenXONRqrPMu8G1hC8P/ZoYDVwT1RBOefyX6pNAtua2ZEJ61dJmhtBPM65BiLVK491kvaoXAk7ja2LJiTnXEOQ6pXHmcDEsJ1DwJfAyVEFlSnCe4k5F5VUn7bMBXaStGW4vjrKoDKlWZEnD+eiUmvykHSCmf1T0gVVygEws5vSPbCkImAmsMzMDpHUC3gI6EjQDf5EM9uY7v6dc9FK1ubRKvzepoav+jgXSHx95Z+Am81sO2AVcFo99++ci1CyaQj/Gn6/KpMHldQdOBj4A3CBgkuZfYDKV9hPJBjFe0d9jrMhFsPfRutcNFLtJHadpC0lNZU0XVKZpBPqcdw/E8yNWjm9eUfgKzOrCNeXAlvXEMuoys5qZWVl9QjBOVcfqT6qPSBsJD2EYB7T7YDfpnNASYcAK81sVjqfN7MJZlZqZqWdO/v7Zp3LlVQf1VbWOxh41My+ltJ+kjEEOEzSUILXOGwJjAfaSSoOrz66A8vSPYBzLnqpXnk8Kel9YCAwXVJnYH06BzSzS82su5mVAMcAL5nZ8cAMYHhYbSTQIN4H41xjlVLyMLPRwO5AqZmVA9+y+Xts6+sSgsbTxQRtIHdleP/OuQxK1s9jHzN7SdIvEsoSq0ypz8HN7GXg5XD5Y2BQffbnnMueZG0ePwNeAg6tZptRz+QRtaJcB+BcAUvWz+PK8Psp2Qkns4qLfPZ056KSaj+PayW1S1hvL+mayKJyzuW9VP80H2RmX1WumNkqYGgkEWVQLG65DsG5gpVq8iiStKmnt6QtIP97flfE48krOefSkmonsfsJ+ndUTj14CsH4E+dcI5XqfB5/kvQOsF9YdLWZPRddWM65fFeX15osBCrM7EVJLSW1MbM1UQXmnMtvqT5tOQOYBPw1LNoaeDyimJxzDUCqDaZnEQxoWw1gZh8CW0UVlHMu/6WaPDYkTgkoqZigh6lzrpFKNXn8S9JlwBaS9gceBZ6ILqzM8AmQnYtOqsnjEqAMmAf8Enga+H1UQWWKv3rBuegkfdoSznK+wMz6AH+LPiTnXEOQ9MrDzGLAIkk9sxBPRm2MeQ9T56KSaj+P9sACSW8RTAQEgJkdFklUGWLeputcZFJNHpdHGoVzrsFJNpNYC+BXBLOlzwPuSng9gnOuEUvW5jERKCVIHAcBN0YekXOuQUh229LPzHYAkHQX8Fb0ITnnGoJkVx7llQt+u+KcS5TsymMnSavDZRH0MF0dLpuZbRlpdPXkM5g6F51kEyA36AnIm/oEyM5Fxn+7nHNpKejkEfcJkJ2LTEEnj3KfANm5yBR08nDORceTh3MuLZ48nHNp8eThnEtL1pOHpB6SZkh6T9ICSeeG5R0kvSDpw/B7+2zH5pxLXS6uPCqAC82sHzAYOEtSP2A0MN3MegPTw3XnXJ7KevIws+VmNjtcXkPwMqmtgWF89wrLicDh9T1W0yY+h6lzUclpm4ekEmAA8CbQxcyWh5s+B7rU8JlRkmZKmllWVlbr/pvIk4dzUclZ8pDUGpgMnGdmqxO3mZlRw3thzGyCmZWaWWnnzp2zEKlzrjo5SR6SmhIkjvvNbEpYvEJS13B7V2BlfY9T4T1MnYtMLp62CLgLWGhmNyVsmgaMDJdHAlPre6yYD21xLjKpToCcSUOAE4F5kuaGZZcB44BHJJ0GfAocnYPYnHMpynryMLNXocZXue2bzVicc+nzHqbOubR48nDOpcWTh3MuLQWdPGT+uMW5qBR08mhWXNA/nnM55b9dzrm0ePJwzqWloJPHhgrvnu5cVAo6eTjnouPJwzmXFk8ezrm0ePJwzqXFk4dzLi0Fnjy8h6lzUSno5FHkc5g6F5mCTh7FPnu6c5Ep6OThnItOQSePmI+qdS4yBZ08KuKePJyLSkEnD+dcdDx5OOfS4snDOZcWTx7OubQUdvLwpy3ORaawk4dzLjIFnTyaFXkPU+eiUtDJQz62xbnIFHTycM5Fp6CTx8YKbzB1LioFnTzM5/NwLjIFnTycc9HJq+Qh6UBJiyQtljQ61/E452qWN8lDUhFwG3AQ0A84VlK/3EblnKtJ3iQPYBCw2Mw+NrONwEPAsHrt0R/VOheZfEoeWwOfJawvDcu+R9IoSTMlzSwrK6t1h8233CqzETrnNinOdQB1ZWYTgAkApaWltT9OadYKxnydjbCca3Ty6cpjGdAjYb17WOacy0P5lDzeBnpL6iWpGXAMMC3HMTnnapA3ty1mViHpN8BzQBFwt5ktyHFYzrka5E3yADCzp4Gncx2Hcy65fLptcc41IJ48nHNp8eThnEuLJw/nXFpkDXiSYEllwKcpVO0E/C/icNKVz7GBx1cf+RwbpB7fD82sc9XCBp08UiVpppmV5jqO6uRzbODx1Uc+xwb1j89vW5xzafHk4ZxLS2NJHhNyHUAt8jk28PjqI59jg3rG1yjaPJxzmddYrjyccxnmycM5l5aCTh75NqGypB6SZkh6T9ICSeeG5R0kvSDpw/B7+xzGWCRpjqQnw/Vekt4Mz+HD4XQJuYqtnaRJkt6XtFDSbvly7iSdH/6bzpf0oKQWuTx3ku6WtFLS/ISyas+VAreEcb4raedUjlGwySNPJ1SuAC40s37AYOCsMKbRwHQz6w1MD9dz5VxgYcL6n4CbzWw7YBVwWk6iCowHnjWzPsBOBHHm/NxJ2ho4Byg1s+0JppQ4htyeu3uBA6uU1XSuDgJ6h1+jgDtSOoKZFeQXsBvwXML6pcCluY6rSoxTgf2BRUDXsKwrsChH8XQP/1PtAzwJiKAHYnF15zTLsbUFPiFs5E8oz/m547v5dzsQTHPxJPDzXJ87oASYn+xcAX8Fjq2uXm1fBXvlQYoTKueKpBJgAPAm0MXMloebPge65CisPwMXA/FwvSPwlZlVhOu5PIe9gDLgnvC26u+SWpEH587MlgE3AP8BlgNfA7PIn3NXqaZzldbvSiEnj7wlqTUwGTjPzFYnbrMg9Wf9+bmkQ4CVZjYr28dOUTGwM3CHmQ0AvqXKLUoOz117gteE9AK6Aa3Y/JYhr2TiXBVy8sjLCZUlNSVIHPeb2ZSweIWkruH2rsDKHIQ2BDhM0hKCd+bsQ9DG0E5S5YxzuTyHS4GlZvZmuD6JIJnkw7nbD/jEzMrMrByYQnA+8+XcVarpXKX1u1LIySPvJlSWJOAuYKGZ3ZSwaRowMlweSdAWklVmdqmZdTezEoJz9ZKZHQ/MAIbnMrYwvs+BzyT9OCzaF3iPPDh3BLcrgyW1DP+NK2PLi3OXoKZzNQ04KXzqMhj4OuH2pmbZblzKcoPRUOAD4CPgd3kQzx4El4rvAnPDr6EEbQvTgQ+BF4EOOY5zL+DJcHkb4C1gMfAo0DyHcfUHZobn73Ggfb6cO+Aq4H1gPnAf0DyX5w54kKD9pZzgqu20ms4VQcP4beHvyTyCp0ZJj+Hd051zaSnk2xbnXIQ8eTjn0uLJwzmXFk8ezrm0ePJwzqXFk0eekRSTNDccnfmEpHYZ3v8SSZ3C5W9qqLOFpH+FI2ybhCMu50uaJ+ltSb0yGE83SZPC5f6ShiZsOyzZaGhJYyXtFy6fJ6llkvrNJL2S0HkrcVuJpHWS5obrnSW9Gv7shyfUmyqpW8L69ZI+l3RRaj91YfDkkX/WmVl/C0ZnfgmclYMYTgWmmFkMGEHQ5XpHM9sBOAL4KlMHMrP/mlllR6r+BP1eKrdNM7NxST5/hZm9GK6eB9SaPMxsI0FfhxE1VPnIzPqHy8cCdwKDwn0j6VBgjpn9N2Gfvw3rNSqePPLb64QDlCRtK+lZSbMk/VtSn7C8i6THJL0Tfu0elj8e1l0gaVQdj3s83/U+7AosN7M4gJktNbNV4TEOkPS6pNmSHg3H7FRe3VwVls9LiPVn4VXV3HBwW5vwr/38sBfwWGBEuH2EpJMl3SqpraRPJTUJ99NK0meSmkq6V9JwSecQJLkZCuZMOVXSnyt/IElnSLo5XH08/BmTKSdIRs2BWHi1ch5wXR3PZ2HKVW9B/6qxZ+A34fcigl6JB4br04He4fKuBN3HAR4mGGBX+Zm24XJl78EtCHo9dgzXlwCdEo9V5fjNgM8T1ruHn5kL3AgMCMs7Aa8ArcL1S4ArEo5xdrj8a+Dv4fITwJBwuTXBYLcSwmHjwMnArQnH3rROkMz2DpdHJOzzXmB4NT9ba4Iek03D9f8Ddkg4T2XV/OybYgnX2wJPEfRq3Zdgzo6Ta/h3GwNclOv/P9n82uy+z+XcFuE999YEk928EP5F3x14NBg6AQR/DSEYwHYSgAW3GV+H5edIOiJc7kEw0csXKRy/Ewm3JWa2NBxPsk/4NV3SUQRJqR/wWhhTM4IrpUqVg/5mAb8Il18DbpJ0P8Ft0dKEnyeZhwmSxgyCsTe311bZzL6R9BJwiKSFBElkXrgtJmmjpDZmtqaWfXwNHAybRs6OBo6Q9DeCrvE3mtnrNX2+0HnyyD/rzKx/2PD3HEGbx70Ec0P0T2UHkvYiGOm5m5mtlfQy0CLV41eta2YbgGeAZyStAA4HngdeMLNja9jPhvB7jPD/mZmNk/QUQbvGa5J+DqxPMa5pwLWSOgADgZdS+MzfgcsIxpzcU2Vb8zocG+By4A8E7SCvEozqnUIw6U+j5G0eecrM1hJcJl8IrAU+Cf/iV845uVNYdTpwZlheJKktweX2qjBx9CGY8jDV464CiiS1CPe5c+WThbDNYUeC9wO/AQyRtF24rZWkH9W2b0nbmtk8M/sTwajnPlWqrAHa1BDXN+FnxhMM2otVU+17n7dg+H4P4DiCgWKVcXQE/mfB8PmkJPUGupvZywRtIHGCAY5bpPL5QuXJI4+Z2RyCEaTHEjTwnSbpHWABweQzEMw5urekeQS3CP2AZ4Hi8HJ9HMEvel08TzACGGAr4AkFE+m+SzAP661mVkbQJvGgpHcJblmqJoOqzgsbR98laIx8psr2GUC/ygbTaj7/MHBC+L06E4BnJc1IKHsEeC1MipX2JmjLSNUfgN+Fyw8SJOvKRNZo+ahatxkFs2efb2Yn5jqW+lIwC/zNZjY9oWwKMNrMPqhSt4Tgqmb7NI4zhqAB+ob6Rdxw+JWH24yZzSZ45FmU61jSpeA1DR8QtCElJo5mwONVE0coBrQNG6zrcqzrCa6Ivq1HyA2OX3k459LiVx7OubR48nDOpcWTh3MuLZ48nHNp8eThnEvL/wMFbDgsUf5T+AAAAABJRU5ErkJggg==" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "shape val (230143, 297)\n", + "scaled shape train (574747, 294)\n", + "scaled shape val (230143, 294)\n", + "scaled shape test (345305, 294)\n", + "Epoch 1/10\n", + "2246/2246 [==============================] - 7s 3ms/step - loss: 1.3776 - tp: 34115.3044 - fp: 176003.4206 - tn: 409824.1949 - fn: 13105.7623 - accuracy: 0.7024 - precision: 0.1630 - recall: 0.7222 - auc: 0.7820 - auc_pr: 0.2213 - val_loss: 0.6407 - val_tp: 12820.0000 - val_fp: 58629.0000 - val_tn: 154115.0000 - val_fn: 4579.0000 - val_accuracy: 0.7254 - val_precision: 0.1794 - val_recall: 0.7368 - val_auc: 0.8022 - val_auc_pr: 0.2474\n", + "Epoch 2/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 1.0168 - tp: 15719.7370 - fp: 72788.8923 - tn: 193430.1842 - fn: 5804.8687 - accuracy: 0.7250 - precision: 0.1768 - recall: 0.7331 - auc: 0.8005 - auc_pr: 0.2353 - val_loss: 0.5515 - val_tp: 12768.0000 - val_fp: 56427.0000 - val_tn: 156317.0000 - val_fn: 4631.0000 - val_accuracy: 0.7347 - val_precision: 0.1845 - val_recall: 0.7338 - val_auc: 0.8074 - val_auc_pr: 0.2557\n", + "Epoch 3/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9488 - tp: 15653.2354 - fp: 70231.3818 - tn: 195964.5590 - fn: 5894.5060 - accuracy: 0.7350 - precision: 0.1815 - recall: 0.7255 - auc: 0.8031 - auc_pr: 0.2399 - val_loss: 0.5195 - val_tp: 12517.0000 - val_fp: 53430.0000 - val_tn: 159314.0000 - val_fn: 4882.0000 - val_accuracy: 0.7466 - val_precision: 0.1898 - val_recall: 0.7194 - val_auc: 0.8094 - val_auc_pr: 0.2585\n", + "Epoch 4/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9189 - tp: 15391.5238 - fp: 68418.0405 - tn: 197956.2372 - fn: 5977.8807 - accuracy: 0.7425 - precision: 0.1828 - recall: 0.7180 - auc: 0.8054 - auc_pr: 0.2420 - val_loss: 0.5167 - val_tp: 12813.0000 - val_fp: 56608.0000 - val_tn: 156136.0000 - val_fn: 4586.0000 - val_accuracy: 0.7341 - val_precision: 0.1846 - val_recall: 0.7364 - val_auc: 0.8096 - val_auc_pr: 0.2589\n", + "Epoch 5/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9159 - tp: 15560.5438 - fp: 68682.4139 - tn: 197553.4170 - fn: 5947.3075 - accuracy: 0.7396 - precision: 0.1842 - recall: 0.7235 - auc: 0.8054 - auc_pr: 0.2458 - val_loss: 0.5077 - val_tp: 12717.0000 - val_fp: 55244.0000 - val_tn: 157500.0000 - val_fn: 4682.0000 - val_accuracy: 0.7396 - val_precision: 0.1871 - val_recall: 0.7309 - val_auc: 0.8099 - val_auc_pr: 0.2595\n", + "Epoch 6/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9137 - tp: 15558.6453 - fp: 68705.0134 - tn: 197486.0730 - fn: 5993.9506 - accuracy: 0.7394 - precision: 0.1847 - recall: 0.7222 - auc: 0.8057 - auc_pr: 0.2435 - val_loss: 0.4896 - val_tp: 12354.0000 - val_fp: 51851.0000 - val_tn: 160893.0000 - val_fn: 5045.0000 - val_accuracy: 0.7528 - val_precision: 0.1924 - val_recall: 0.7100 - val_auc: 0.8102 - val_auc_pr: 0.2596\n", + "Epoch 7/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9054 - tp: 15588.4784 - fp: 67818.7824 - tn: 198412.0151 - fn: 5924.4063 - accuracy: 0.7438 - precision: 0.1867 - recall: 0.7250 - auc: 0.8076 - auc_pr: 0.2455 - val_loss: 0.4872 - val_tp: 12360.0000 - val_fp: 51537.0000 - val_tn: 161207.0000 - val_fn: 5039.0000 - val_accuracy: 0.7542 - val_precision: 0.1934 - val_recall: 0.7104 - val_auc: 0.8103 - val_auc_pr: 0.2592\n", + "Epoch 8/10\n", + "2246/2246 [==============================] - 5s 2ms/step - loss: 0.9040 - tp: 15651.3574 - fp: 68430.1736 - tn: 197755.9510 - fn: 5906.2003 - accuracy: 0.7417 - precision: 0.1861 - recall: 0.7268 - auc: 0.8080 - auc_pr: 0.2462 - val_loss: 0.4952 - val_tp: 12543.0000 - val_fp: 53283.0000 - val_tn: 159461.0000 - val_fn: 4856.0000 - val_accuracy: 0.7474 - val_precision: 0.1905 - val_recall: 0.7209 - val_auc: 0.8107 - val_auc_pr: 0.2613\n", + "Epoch 9/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9031 - tp: 15525.0276 - fp: 68251.3311 - tn: 198013.5136 - fn: 5953.8100 - accuracy: 0.7415 - precision: 0.1850 - recall: 0.7244 - auc: 0.8069 - auc_pr: 0.2456 - val_loss: 0.4850 - val_tp: 12286.0000 - val_fp: 50941.0000 - val_tn: 161803.0000 - val_fn: 5113.0000 - val_accuracy: 0.7564 - val_precision: 0.1943 - val_recall: 0.7061 - val_auc: 0.8103 - val_auc_pr: 0.2617\n", + "Epoch 10/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9030 - tp: 15547.1389 - fp: 67682.2523 - tn: 198544.2256 - fn: 5970.0654 - accuracy: 0.7445 - precision: 0.1867 - recall: 0.7208 - auc: 0.8070 - auc_pr: 0.2441 - val_loss: 0.4823 - val_tp: 12364.0000 - val_fp: 51852.0000 - val_tn: 160892.0000 - val_fn: 5035.0000 - val_accuracy: 0.7528 - val_precision: 0.1925 - val_recall: 0.7106 - val_auc: 0.8102 - val_auc_pr: 0.2616\n", + "1349/1349 [==============================] - 2s 1ms/step - loss: 0.4819 - tp: 18277.0000 - fp: 78016.0000 - tn: 241551.0000 - fn: 7461.0000 - accuracy: 0.7525 - precision: 0.1898 - recall: 0.7101 - auc: 0.8110 - auc_pr: 0.2550\n", + "loss : 0.48192790150642395\n", + "tp : 18277.0\n", + "fp : 78016.0\n", + "tn : 241551.0\n", + "fn : 7461.0\n", + "accuracy : 0.7524594068527222\n", + "precision : 0.18980611860752106\n", + "recall : 0.7101173400878906\n", + "auc : 0.8110336065292358\n", + "auc_pr : 0.2549568712711334\n", + "Legitimate Survival Detected (True Negatives): 241551\n", + "Legitimate Survival Incorrectly Detected (False Positives): 78016\n", + "Deceased Missed (False Negatives): 7461\n", + "Deceased Detected (True Positives): 18277\n", + "Total Deceased: 25738\n", + "Total Survived: 319567\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAQ8AAAEGCAYAAAB7IBD2AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAAAh/klEQVR4nO3deZgU1fX/8fdnFhbZZBMRVEBQf8QV0ahoFFDjviQG3FExxGjiEpfgjkaNxrj+TDQoKon7Lu4LoiYmLoBEwA0VFYjIqAgqDMx0n+8fVYPNMDPddHd199Sc1/P0M11Vt6vOFPSZW7fuvSUzwznn1lZZsQNwzjVPnjycc1nx5OGcy4onD+dcVjx5OOeyUlHsAHLRrVs369OnT7HDcC7Wpk2b9qWZda+/vlknjz59+jB16tRih+FcrEn6tKH1ftninMuKJw/nXFY8eTjnsuLJwzmXFU8ezrmsRJY8JN0maZGkWSnrukh6XtKc8GfncL0k3SDpQ0lvSxoUVVzOufyIsuZxB7B3vXVjgclmNgCYHC4D7AMMCF9jgJsijMs5lweRJQ8zewX4ut7qg4CJ4fuJwMEp6/9ugdeAdSX1zEsg4zrx/R8H5GVXzrkfFLrNo4eZfR6+Xwj0CN/3AuallJsfrluDpDGSpkqaWlVV1eTBlnz1BQDtVizKJWbnXAOK1mBqwSxEaz0TkZmNN7PBZja4e/c1esyupra2JtvwnHNpFDp5fFF3ORL+rKsSLAA2TCnXO1yXk1YVfjPJuagU+ts1CRgVvh8FPJay/pjwrsuOwJKUy5uslZcp11045xoR2cA4SfcAuwPdJM0HLgKuAO6XNBr4FBgRFn8K2Bf4EFgGHBdVXM65/IgseZjZ4Y1sGt5AWQNOjioW51z+xbpRQPhli3NRiXXycM5FJ9bJI+nPpHEuMrFOHitqEsUOwbnYinXycM5Fx5OHcy4rnjycc1mJdfJo06q82CE4V3oStcErR7FOHs65NX09ezI1l/WCJ8/IaT+ePJxrYar+dTuVyWo++ya32ocnD+dakEUv3Uz/Rc8AsKDfiDSlm9asnxiXjndPdy6UqGXhrSNY//PJANzZcTRH7rhzTruMdfJwzsF3j5xO2xm3s76CHtf3lO3HASdeiZTbH9dYJ4+VtQnaFjsI54rlq4/g/w+iPVBXCb+91yUcfuxvaFOZ+53IWCePRNLHtriWx5YsoPaOg6hcPGfVuqe1K51H3shxm/fJ23FinTyca1Gql/LJ3afR57OHqKxb17U/HH4f+3Trn/fDxTp5aOW3xQ7Bucgl5kxm2YMn0WHFQvqkrP946F/pt9uRkR031smjYu0nZ3eueVjxLYm7D6P8039RDnRI2fRIp2MY9qur6bdOq0hDiHfy8NnTXcxUL5pL2WMn0mrBa6Q2eX5pHbmj21mMOOIEDum6TkFiiXXyIMdbUc6VAqtewjsPXs6PPryZNvW2zey6NxM6nMTVx/yEMwv8tIBYJw8zTx6uebLvFrFs/N5ULp1HK1byo5Rty6w13xxwGxtstx9bSlxXpBhjnTzKynxUrWtG/jcD3ryF5KevUfb1h7Srt3lKm+F0/fk1bDWgD4W5MGlarJOHX7a4krf4U5Y+cjodP5u8alVqS90H6sOc3W9in113YmiJPcQs1snDPHm4UrR8MfNeHM+Gb14OQMf623cYg+1yOta+J5uWiU0LHmBmYp08qmuS3j3dlYYF0+DVG7BPXkXLqlZ7MDPAF9aF2cNvZ/dddqOsLBjSWep/+mKdPEr/9LvYSiZITL2dD1+4jc1Wzl61OvV/5HOJ7fhs0O/5xd7D6NG2kh6FjzIn8U4eftniCmnemySfGUvZgqkAlAOb1S+z1UiWDzmLFR02Zq+IO3FFLdbJw+SdxFyEqpfCnOfgqbNg+dfAmrNrvZfckEcSu7DrEWez8//rS1mZaAuxuJyOdfJonYdhx86tUr0EXr2BFbMm0XrxB40Wm53cmMs4gV2G7cuvd9uEc2JaA4518lhtshMzv4xxa++dx2Dmg/DupFWrWtcrMjfZgz5Dj0U/PpFEm878qEzcXdgoiyLWyWM1njxcJr5bFCSLZ89pstilNUfyRofhHDFsew7drjcqDy5YWlJdtyjJQ9LpwAmAATOB44CewL1AV2AacLSZrczpOKtdgfoIW9cAM/hoMslHf0PZd583WmzmoEv4wwcbM2LoYA7cegPO90GXhU8eknoBpwADzWy5pPuBw4B9gWvN7F5JNwOjgZtyO1bO4bo4WjAdXr4SPnhm1ar6qWBusgfX1h7K0Seczvb9urMlcH9Bgyx9xbpsqQDaSqoB1gE+B4YBR4TbJwLjyDF5UL/Nw7VMZvDlHPjL9k0WeyvZn+NXnslhu2/L7/bclBvKvXbRlIInDzNbIOnPwGfAcuA5gsuUb8ys7ik084FeDX1e0hhgDMBGG23U5LFqE8nUI+cWuGte5k+FFy+Fj6c0WqR23b5UHPwXanrvyPLaJNu2qeStAobY3BXjsqUzcBDQF/gGeADYO9PPm9l4YDzA4MGDm8wINYmUzZZsvKBr/mpXwitXwSt/arLYg4mfcG7NaCaMHsKuA7oDUAlUVrSkps78KMZlyx7AXDOrApD0MDAEWFdSRVj76A0syOtR/bIlfr6eCzduD8maJotdWnMkCwcez/n7b8GhndpwaIHCi7tiJI/PgB0lrUNw2TIcmApMAQ4luOMyCngsr0f1mkfz910VTPotfPB0k8WeTOzAfhc9CRVB9+/zCxFbC1SMNo/XJT0ITAdqgbcILkOeBO6VdGm4bkKux1p9+gOveTQ7ySS89zjcf0yTxV5IbMt1tT9nlvXjjuO2Z7/N1itQgC1bUe62mNlFwEX1Vn8M7JDP41Sm3ov3y5bSl0zC9InwxGnpy7Zfn6d3vpu3l7bjmJ025olOcRgt0ry0oB6mftlSkua+AhMPSFvsucR2jKsZxbet12f6hXtSWV7GPsA+0UfoGhHr5LF6ZcNrHiVhyQK4ewR8MavJYh8le3Jczdl8Zj3o0LqCV8YO5d/tmvcQ9riJdfIoL/NOYkW38nt46myYcWfaoufUjOaIEy9go27t+WLBEl7s24UK76hVsmKdPEisSFnw5FEw86fClMvho8lNFruk5mhuS+xN3fxab5w3nPU6BE8m2bl/t6ijdDmKdfLQyu9/WPCaR7QmXwL/vDp9uXPmM+vLJJc++Q7n7zeQC3t1ij42F4lYJ4/qGvth7gVPHvljBu89CU+fDUsb78v3RGJHLqoZxVcECeKfZw9lw9brsEUvuHfMToWK1kUk1slj9UcvePLI2fJvsFuHo68+bLRIYvfz+NEz/akO0/Yb5w5nvY71H5Lo4qDJ5CGpSwb7SJrZN/kJJ9+8wTRn894gee9RlH3/BbDmfPRzkr24sPZY/pMcyFOn/ISBG3Tkvd0LHqUrgnQ1j/+Fr6ZmxigHmh7eWiyrVTy8n0dayQT8+wZ4Ydxqq+vf73g+MYiTa05lJZWcOnwAf9u1Lx3bVBYsTFca0iWPd81s26YKSCrZUcyr3ebz5LGm5d/AXYfC/DczK7/9CazY6wr2qKjgA59pqcVLlzwyadUq2ZYvM2/zWMP3X8HDv0x7GzVh4piasXzQekueO3NPOocdtOpP/utariaTh5lVpy5LagMcRfDYibvN7Kv6ZUrJytqU2kZLb/OY/vdgRGpTjnuGc6e146X3q3jopJ25y8eLuCas7d2W64FXgWrgUWDXfAeUT6sNjGuJNY/aFXBp4yNMz6kZzT2J4QBcM2JrfrZxby7fuFDBueYu3d2We4DzzeyjcFUXgpm/AMZGGVheqOW1edjKZbx88yns/vUDDW6vGXIGAyZvB8A7l/yUP7aK9d16F6F0/3POAy6V9DnwB+DPwCNAG4IJiktbS5kAeeUykv84hLJ5ryFg9waKnF9zHH+49FoqJT7Zs8DxuVhK1+bxMXCEpF2A+wgm7NnPzBKFCC5XK2pSwoxTzeOrj+CZscFzUkMNDR/7e+2etDvgCg7ZfhMuLfO7Iy6/0l22dCZ4HEIN8AuCiYuflXS9mT1egPhyEqsJkOe9ARMyqDIccD1sdywATc+/5Vxu0l22PEowReA6wD/M7KBwCsGzJI0xs/SzuBRReeof22SzqCz9oKY6GGz22l/SFr205kgO/vXlbNF73ejjci6ULnl0BR4kuDX7KwAzWw5cIqlnxLHlTM2xh+kDx8LsR5ou8+NfM2fQefTr3p7yMvkEv64o0iWPi4BngAT17q6YWeMP9ixFJZw8qmsSXDnuVC6q/EejZYavuIqdfrwTlx68JQADChWcc41I12D6EPBQgWLJu8pS757+1l3w2Em0AS6qNzRkAd15Z8Sr9Fq3LQM36EjT/UGdK7x0DabjzGxcrmVKQgndIJp/8eb0bqTi9mJiG1qPeogh/bs1/LxN50pEusuWEyQtbWK7CJ5wPy5vEeVRSdU8FkyHW4YCwePw1vCrf0LPrRhW0KCcy1665HEL0CGDMiWpoqwEkseKb+GPDaYLLq85nHMvu7nAATmXH+naPC4uVCBRWK2DaTLZ5KQkebd8MVzZp8FNE/tdxahjxnBuIeNxLs9iPbChJpFcNYTckonCJY9xDU/q+/GJc+m3fhdGFSoO5yIU64diVKd0T7eIL1vmfvk9B59zfYOJo1/1nTBuCf3Wz2RWR+eah1jXPJKpg+FWLovsODuPnci/25zCo/Vmyjll5W84+6zz+LjzOpEd27liSZs8wgmA9ieYu2MDYDkwC3jSzGZHG17+lM/7D2y6R173+bv7ZnDNu7vx74YmBx+3hBvyejTnSku6fh4XAwcAU4DXgUUEw/E3Ba4IE8sZZvZ21IHmLI/9PFbWJhl0/kPManPCmhsv+ArKY12hcw5IX/N4w8wuamTbNZLWI4uZ0yWtC9wKbEEwxdfxwPsEw/77AJ8AI8xs8druO1VZyjB0W6dbXhpMq95/je73/JRZ9Wsbh90Dm++bhyM41zykSx7rSGptZisa2mhmiwhqI2vreuAZMztUUiuCUbvnApPN7ApJYwnG0vw+i32vUpnSz6O28ybk9HCAsCG0e4PbluSyZ+eapXR3W44A5kn6h6R9JZXnekBJnYCfABMAzGxl+NCog4CJYbGJwMG5Hms1uVy2TPhpw+uPftQTh2ux0nUSO0RSR+AQ4LfABEmPAfeY2ctZHrMvUAXcLmlrYBpwKtAjZaTuQqBHQx+WNAYYA7DRRk1fMbWp/CHXWSKL5GEGF6+72qqECUbeSfnA/dd+f87FSNp+Hma21Mwmmtk+BG0UbwE3SJqX5TErgEHATeEDpb5nzeH+RiPTnZvZeDMbbGaDu3dv8CJildaps6evbc3j3cfXSBwjVlyALlrsicM51qKTWDgl4c+AkQSzqD+Y5THnA/PN7PVw+UGCZPJF3QRD4c9s2lIal6jJvGwyAfcdtdqqftV3cs9lZ6zWCOtcS5buVm17gkuWw4FtgUkEs6i/FNYO1pqZLZQ0T9JmZvY+MBx4J3yNAq4Ifz6Wzf5XOxa26g5Lq8fGwLYjmwpsjZpGnRt2ncrHw336HedSpbvb8gnBTGJ/BZ41s7X4892k3wJ3hXdaPgaOI6gF3S9pNPApMCLXg1TXJMn4mWeNJI7XjvmYU/p1zTUU52InXfLYENgc2CR8vZePg5rZDGBwA5uG52P/a2PkBTdwX/kFDW57+4RP2dEnFXauQemSx5kEz6adDlwl6XIzK9n5O9JK1K7q/VmzYhmVf+zJffVuPm9WfQcraMXcP+7LVv4keOcalS55HAZsa2bLJHUluIRpvslj0WzouTXJ+dOpvHXoGpu/GHo17/3kYORJw7m00iWPFWa2DMDMvpLUvIfwf/gCL37ZmWEPrZk4GLek4Y4lzrkGpUse/SRNCt8L2CRlGTM7MLLIIjDj/Y8ZNn/L1dY91/1Y9jr5+iJF5FzzlS55HFRv+c9RBVII28y/c7Xl9454g7023axI0TjXvKXrnv6ypG2A/sBsM3u3IFHlyWqzpzdgc08czmWtyW+XpAuB+4GfA09K+mVBosqTiqZ6g+55SeECcS6G0l22jAS2ic3dllRDTi12BM41a+nunqx2tyWD8iWlJtlID/ozPyxsIM7FUKzvttQmkg1PANS+6dG4zrn0Wszdlq2qb+GOk/Zk0Eadix2Kc7GQ9m5LoQKJ2lLa0b196/QFnXMZSXe35XFJB0hao/YvqZ+kSyQdH114+bVhF39+inP5ku6y5ZfA74DrJH1NMH1gG4IZzj8CbjSznOfdcM41P+kuWxYCZwNnS+oD9CR46NMHdXdhnHMtU8ZPJzKzTwgmB2qWyn36QOfyqln121hbbVNmT5943A5FjMS5+Il18ki1y4BuxQ7BuVhpMcnDOZdfGbV5SBoCjAM2Dj8jgser9IsutNxV1yRp6AH2zrncZdpgOgE4neDpbvl73HzErOHnRjnn8iDT5LHEzJ6ONBLnXLOSafKYIukq4GFgRd1KM5seSVTOuZKXafL4cfgz9VkrBgzLbzjOueYio+RhZg1MN+6ca8kyulUrqZOkayRNDV9XS+oUdXDOudKVaT+P24BvCZ4fOwJYCtweVVD54k+0dy46mbZ5bGJmP09ZvljSjAjiyavWaWZPd85lL9Nv13JJu9QthJ3GlkcTknOuOci05vFrYGLYziHga+DYqILKl4QZ5emLOeeykOndlhnA1pI6hstLowwqX1bWJmlb7CCci6kmk4eko8zsTkm/q7ceADO7JtsDSyoHpgILzGx/SX2Be4GuBN3gjzazldnu3zkXrXRtHu3Cnx0aeeXiVCD18ZVXAteaWX9gMTA6x/075yKUbhrCv4U/L87nQSX1BvYDLgN+p6AqMww4IiwykWAU7035PK5zLn8y7ST2J0kdJVVKmiypStJRORz3OoK5UZPhclfgGzOrDZfnA70aiWVMXWe1qqqqHEJwzuUi01u1e4WNpPsTzGPaHzgrmwNK2h9YZGbTsvm8mY03s8FmNrh7d3/ym3PFkumt2rpy+wEPmNmSukbTLAwBDpS0L8FjHDoC1wPrSqoIax+9gQXZHsA5F71Max5PSHoP2A6YLKk7UJ3NAc3sHDPrbWZ9gMOAF83sSGAKcGhYbBSQ8/NgWld4D1PnopLRt8vMxgI7A4PNrAb4njWfY5ur3xM0nn5I0AYyIdcd+tAW56KTrp/HMDN7UdLPUtalFnk4l4Ob2UvAS+H7jwF/PoJzzUS6No/dgBeBAxrYZuSYPKK2ojaJP9rauWik6+dxUfjzuMKEk19J8wmQnYtKpv08Lpe0bspyZ0mXRhaVc67kZXo7Yh8z+6ZuwcwWA/tGEpFzrlnINHmUS1rVfCCpLXhzgnMtWaadxO4i6N9RN/XgcQTjT5xzLVSm83lcKem/wB7hqj+Y2bPRheWcK3WZ1jwgGD5fa2YvSFpHUgcz+zaqwPKhLPsu9M65NDK92/JL4EHgb+GqXsCjEcWUN9493bnoZPrtOplgQNtSADObA6wXVVDOudKXafJYkToloKQKKP1H0Jt3EnMuMpkmj5clnQu0lbQn8ADweHRh5Ud1bTJ9IedcVjJNHr8HqoCZwK+Ap4DzowrKOVf60t5tCWc5n21mmwO3RB+Sc645SFvzMLME8L6kjQoQj3Oumci0n0dnYLakNwgmAgLAzA6MJCrnXMnLNHlcEGkUzrlmJ91MYm2AEwlmS58JTEh5PIJzrgVL1+YxERhMkDj2Aa6OPKI8qizzHqbORSXdZctAM9sSQNIE4I3oQ8qfinIf2+JcVNL9aa6pe+OXK865VOlqHltLWhq+F0EP06XhezOzjpFGl6OahFFZ7CCci6l0EyCXFyqQKNQmk548nIuItyg657LiycM5lxVPHs65rHjycM5lxZOHcy4rnjycc1mJdfJoW9ms7zQ7V9IKnjwkbShpiqR3JM2WdGq4vouk5yXNCX92LnRszrnMFaPmUQucYWYDgR2BkyUNBMYCk81sADA5XHbOlaiCJw8z+9zMpofvvyV4mFQv4CB+eITlRODgXI9VXeMTIDsXlaK2eUjqA2wLvA70MLPPw00LgR6NfGaMpKmSplZVVTW5fyv9p0M412wVLXlIag88BJxmZktTt1nwwJUGv/lmNt7MBpvZ4O7duxcgUudcQ4qSPCRVEiSOu8zs4XD1F5J6htt7AouKEZtzLjPFuNsiYALwrpldk7JpEjAqfD8KeKzQsTnnMpfpBMj5NAQ4GpgpaUa47lzgCuB+SaOBT4ERRYjNOZehgicPM/sXwWRCDRleyFicc9mLdQ/TMvkcps5FJdbJo3VFrH8954rKv13OuazEOnkkkt5JzLmoxDp5rEx493TnohLr5OGci44nD+dcVjx5OOey4snDOZcVTx7Ouax48nDOZSXWyaN1eax/PeeKKtbfrrIyH9viXFRinTycc9GJdfJYUes9TJ2LSqyTR9J8bItzUYl18nDORceTh3MuK548nHNZ8eThnMuKJw/nXFZinTx8AmTnohPr5OETIDsXHf92OeeyEuvkYd5JzLnIxDp5VHv3dOciE+vk4ZyLjicP51xWPHk457LiycM5lxVPHs65rJRU8pC0t6T3JX0oaWyx43HONa5kkoekcuAvwD7AQOBwSQNz2WdlWcn8es7FTil9u3YAPjSzj81sJXAvcFAuO6zw2dOdi0wpfbt6AfNSlueH61YjaYykqZKmVlVVNb3Hdt3yGqBz7gcVxQ5gbZnZeGA8wODBg5vuf96qHYxbUoiwnGtxSqnmsQDYMGW5d7jOOVeCSil5vAkMkNRXUivgMGBSkWNyzjWiZC5bzKxW0m+AZ4Fy4DYzm13ksJxzjSiZ5AFgZk8BTxU7DudceqV02eKca0Y8eTjnsuLJwzmXFU8ezrmsqDnP8ympCvg0g6LdgC8jDidbpRwbeHy5KOXYIPP4Njaz7vVXNuvkkSlJU81scLHjaEgpxwYeXy5KOTbIPT6/bHHOZcWTh3MuKy0leYwvdgBNKOXYwOPLRSnHBjnG1yLaPJxz+ddSah7OuTzz5OGcy0qsk0epTagsaUNJUyS9I2m2pFPD9V0kPS9pTvizcxFjLJf0lqQnwuW+kl4Pz+F94XQJxYptXUkPSnpP0ruSdiqVcyfp9PDfdJakeyS1Kea5k3SbpEWSZqWsa/BcKXBDGOfbkgZlcozYJo8oJlTOg1rgDDMbCOwInBzGNBaYbGYDgMnhcrGcCrybsnwlcK2Z9QcWA6OLElXgeuAZM9sc2JogzqKfO0m9gFOAwWa2BcGUEodR3HN3B7B3vXWNnat9gAHhawxwU0ZHMLNYvoCdgGdTls8Bzil2XPVifAzYE3gf6Bmu6wm8X6R4eof/qYYBTwAi6IFY0dA5LXBsnYC5hI38KeuLfu74Yf7dLgTTXDwB/LTY5w7oA8xKd66AvwGHN1SuqVdsax5kOKFysUjqA2wLvA70MLPPw00LgR5FCus64GwgGS53Bb4xs9pwuZjnsC9QBdweXlbdKqkdJXDuzGwB8GfgM+BzYAkwjdI5d3UaO1dZfVfinDxKlqT2wEPAaWa2NHWbBam/4PfPJe0PLDKzaYU+doYqgEHATWa2LfA99S5RinjuOhM8JqQvsAHQjjUvGUpKPs5VnJNHSU6oLKmSIHHcZWYPh6u/kNQz3N4TWFSE0IYAB0r6hOCZOcMI2hjWlVQ341wxz+F8YL6ZvR4uP0iQTErh3O0BzDWzKjOrAR4mOJ+lcu7qNHausvquxDl5lNyEypIETADeNbNrUjZNAkaF70cRtIUUlJmdY2a9zawPwbl60cyOBKYAhxYztjC+hcA8SZuFq4YD71AC547gcmVHSeuE/8Z1sZXEuUvR2LmaBBwT3nXZEViScnnTuEI3LhW4wWhf4APgI+C8EohnF4Kq4tvAjPC1L0HbwmRgDvAC0KXIce4OPBG+7we8AXwIPAC0LmJc2wBTw/P3KNC5VM4dcDHwHjAL+AfQupjnDriHoP2lhqDWNrqxc0XQMP6X8Hsyk+CuUdpjePd051xW4nzZ4pyLkCcP51xWPHk457LiycM5lxVPHs65rHjyKDGSEpJmhKMzH5e0bp73/4mkbuH77xop01bSy+EI27JwxOUsSTMlvSmpbx7j2UDSg+H7bSTtm7LtwHSjoSVdImmP8P1pktZJU76VpFdSOm+lbusjabmkGeFyd0n/Cn/3g1PKPSZpg5TlqyQtlHRmZr91PHjyKD3LzWwbC0Znfg2cXIQYjgceNrMEMJKgy/VWZrYlcAjwTb4OZGb/M7O6jlTbEPR7qds2ycyuSPP5C83shXDxNKDJ5GFmKwn6OoxspMhHZrZN+P5w4GZgh3DfSDoAeMvM/peyz7PCci2KJ4/S9h/CAUqSNpH0jKRpkv4pafNwfQ9Jj0j6b/jaOVz/aFh2tqQxa3ncI/mh92FP4HMzSwKY2XwzWxweYy9J/5E0XdID4ZidutrNxeH6mSmx7hbWqmaEg9s6hH/tZ4W9gC8BRobbR0o6VtKNkjpJ+lRSWbifdpLmSaqUdIekQyWdQpDkpiiYM+V4SdfV/UKSfinp2nDx0fB3TKeGIBm1BhJhbeU04E9reT7jqVi9Bf3VaM/A78Kf5QS9EvcOlycDA8L3PyboPg5wH8EAu7rPdArf1/UebEvQ67FruPwJ0C31WPWO3wpYmLLcO/zMDOBqYNtwfTfgFaBduPx74MKUY/w2fH8ScGv4/nFgSPi+PcFgtz6Ew8aBY4EbU469apkgmQ0N349M2ecdwKEN/G7tCXpMVobL/wa2TDlPVQ387qtiCZc7AU8S9GodTjBnx7GN/LuNA84s9v+fQr7WuO5zRdc2vObuRTDZzfPhX/SdgQeCoRNA8NcQggFsxwBYcJmxJFx/iqRDwvcbEkz08lUGx+9GymWJmc0Px5MMC1+TJf2CICkNBF4NY2pFUFOqUzfobxrws/D9q8A1ku4iuCyan/L7pHMfQdKYQjD25q9NFTaz7yS9COwv6V2CJDIz3JaQtFJSBzP7tol9LAH2g1UjZ8cCh0i6haBr/NVm9p/GPh93njxKz3Iz2yZs+HuWoM3jDoK5IbbJZAeSdicY6bmTmS2T9BLQJtPj1y9rZiuAp4GnJX0BHAw8BzxvZoc3sp8V4c8E4f8zM7tC0pME7RqvSvopUJ1hXJOAyyV1AbYDXszgM7cC5xKMObm93rbWa3FsgAuAywjaQf5FMKr3YYJJf1okb/MoUWa2jKCafAawDJgb/sWvm3Ny67DoZODX4fpySZ0IqtuLw8SxOcGUh5kedzFQLqlNuM9BdXcWwjaHrQieD/waMERS/3BbO0mbNrVvSZuY2Uwzu5Jg1PPm9Yp8C3RoJK7vws9cTzBoL9FAsdU+b8Hw/Q2BIwgGitXF0RX40oLh82lJGgD0NrOXCNpAkgQDHNtm8vm48uRRwszsLYIRpIcTNPCNlvRfYDbB5DMQzDk6VNJMgkuEgcAzQEVYXb+C4Iu+Np4jGAEMsB7wuIKJdN8mmIf1RjOrImiTuEfS2wSXLPWTQX2nhY2jbxM0Rj5db/sUYGBdg2kDn78POCr82ZDxwDOSpqSsux94NUyKdYYStGVk6jLgvPD9PQTJui6RtVg+qtatQcHs2aeb2dHFjiVXCmaBv9bMJqesexgYa2Yf1Cvbh6BWs0UWxxlH0AD959wibj685uHWYGbTCW55lhc7lmwpeEzDBwRtSKmJoxXwaP3EEUoAncIG67U51lUENaLvcwi52fGah3MuK17zcM5lxZOHcy4rnjycc1nx5OGcy4onD+dcVv4PS0GPYbhL5zIAAAAASUVORK5CYII=" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "shape val (230143, 297)\n", + "scaled shape train (574747, 294)\n", + "scaled shape val (230143, 294)\n", + "scaled shape test (345305, 294)\n", + "Epoch 1/10\n", + "2246/2246 [==============================] - 7s 3ms/step - loss: 1.3834 - tp: 33451.3053 - fp: 171035.0988 - tn: 414834.6173 - fn: 13727.6609 - accuracy: 0.7085 - precision: 0.1639 - recall: 0.7096 - auc: 0.7815 - auc_pr: 0.2124 - val_loss: 0.6305 - val_tp: 12651.0000 - val_fp: 56573.0000 - val_tn: 156171.0000 - val_fn: 4748.0000 - val_accuracy: 0.7336 - val_precision: 0.1828 - val_recall: 0.7271 - val_auc: 0.8043 - val_auc_pr: 0.2522\n", + "Epoch 2/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 1.0107 - tp: 15519.3841 - fp: 69722.8919 - tn: 196490.0574 - fn: 6011.3489 - accuracy: 0.7366 - precision: 0.1812 - recall: 0.7186 - auc: 0.7988 - auc_pr: 0.2373 - val_loss: 0.5413 - val_tp: 12642.0000 - val_fp: 54863.0000 - val_tn: 157881.0000 - val_fn: 4757.0000 - val_accuracy: 0.7409 - val_precision: 0.1873 - val_recall: 0.7266 - val_auc: 0.8077 - val_auc_pr: 0.2539\n", + "Epoch 3/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9414 - tp: 15540.7143 - fp: 68639.0080 - tn: 197625.3231 - fn: 5938.6368 - accuracy: 0.7401 - precision: 0.1844 - recall: 0.7237 - auc: 0.8045 - auc_pr: 0.2438 - val_loss: 0.5238 - val_tp: 12739.0000 - val_fp: 55505.0000 - val_tn: 157239.0000 - val_fn: 4660.0000 - val_accuracy: 0.7386 - val_precision: 0.1867 - val_recall: 0.7322 - val_auc: 0.8096 - val_auc_pr: 0.2590\n", + "Epoch 4/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9195 - tp: 15553.4050 - fp: 68365.0650 - tn: 197901.9337 - fn: 5923.2786 - accuracy: 0.7416 - precision: 0.1848 - recall: 0.7235 - auc: 0.8056 - auc_pr: 0.2438 - val_loss: 0.5060 - val_tp: 12643.0000 - val_fp: 54495.0000 - val_tn: 158249.0000 - val_fn: 4756.0000 - val_accuracy: 0.7425 - val_precision: 0.1883 - val_recall: 0.7267 - val_auc: 0.8101 - val_auc_pr: 0.2598\n", + "Epoch 5/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9109 - tp: 15504.5999 - fp: 68042.6320 - tn: 198226.6248 - fn: 5969.8255 - accuracy: 0.7426 - precision: 0.1853 - recall: 0.7221 - auc: 0.8067 - auc_pr: 0.2456 - val_loss: 0.4874 - val_tp: 12267.0000 - val_fp: 50891.0000 - val_tn: 161853.0000 - val_fn: 5132.0000 - val_accuracy: 0.7566 - val_precision: 0.1942 - val_recall: 0.7050 - val_auc: 0.8103 - val_auc_pr: 0.2606\n", + "Epoch 6/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9071 - tp: 15513.4780 - fp: 68104.5038 - tn: 198169.9283 - fn: 5955.7721 - accuracy: 0.7433 - precision: 0.1856 - recall: 0.7219 - auc: 0.8068 - auc_pr: 0.2461 - val_loss: 0.4853 - val_tp: 12380.0000 - val_fp: 51400.0000 - val_tn: 161344.0000 - val_fn: 5019.0000 - val_accuracy: 0.7549 - val_precision: 0.1941 - val_recall: 0.7115 - val_auc: 0.8104 - val_auc_pr: 0.2604\n", + "Epoch 7/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9115 - tp: 15620.2755 - fp: 67864.2047 - tn: 198268.4464 - fn: 5990.7557 - accuracy: 0.7426 - precision: 0.1872 - recall: 0.7227 - auc: 0.8062 - auc_pr: 0.2500 - val_loss: 0.4904 - val_tp: 12420.0000 - val_fp: 52132.0000 - val_tn: 160612.0000 - val_fn: 4979.0000 - val_accuracy: 0.7518 - val_precision: 0.1924 - val_recall: 0.7138 - val_auc: 0.8107 - val_auc_pr: 0.2614\n", + "Epoch 8/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9018 - tp: 15528.4263 - fp: 67076.0263 - tn: 199183.0725 - fn: 5956.1571 - accuracy: 0.7465 - precision: 0.1882 - recall: 0.7227 - auc: 0.8086 - auc_pr: 0.2491 - val_loss: 0.4903 - val_tp: 12471.0000 - val_fp: 52618.0000 - val_tn: 160126.0000 - val_fn: 4928.0000 - val_accuracy: 0.7500 - val_precision: 0.1916 - val_recall: 0.7168 - val_auc: 0.8108 - val_auc_pr: 0.2608\n", + "Epoch 9/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.9020 - tp: 15509.3778 - fp: 67386.0979 - tn: 198884.7713 - fn: 5963.4352 - accuracy: 0.7454 - precision: 0.1866 - recall: 0.7211 - auc: 0.8071 - auc_pr: 0.2485 - val_loss: 0.4896 - val_tp: 12466.0000 - val_fp: 51817.0000 - val_tn: 160927.0000 - val_fn: 4933.0000 - val_accuracy: 0.7534 - val_precision: 0.1939 - val_recall: 0.7165 - val_auc: 0.8113 - val_auc_pr: 0.2628\n", + "Epoch 10/10\n", + "2246/2246 [==============================] - 4s 2ms/step - loss: 0.8995 - tp: 15575.3912 - fp: 67437.5692 - tn: 198801.3685 - fn: 5929.3534 - accuracy: 0.7449 - precision: 0.1877 - recall: 0.7246 - auc: 0.8091 - auc_pr: 0.2475 - val_loss: 0.5027 - val_tp: 12771.0000 - val_fp: 55180.0000 - val_tn: 157564.0000 - val_fn: 4628.0000 - val_accuracy: 0.7401 - val_precision: 0.1879 - val_recall: 0.7340 - val_auc: 0.8110 - val_auc_pr: 0.2613\n", + "1349/1349 [==============================] - 2s 1ms/step - loss: 0.5028 - tp: 18788.0000 - fp: 83015.0000 - tn: 236552.0000 - fn: 6950.0000 - accuracy: 0.7395 - precision: 0.1846 - recall: 0.7300 - auc: 0.8104 - auc_pr: 0.2526\n", + "loss : 0.5028111338615417\n", + "tp : 18788.0\n", + "fp : 83015.0\n", + "tn : 236552.0\n", + "fn : 6950.0\n", + "accuracy : 0.7394621968269348\n", + "precision : 0.18455252051353455\n", + "recall : 0.7299712300300598\n", + "auc : 0.8103958368301392\n", + "auc_pr : 0.2526211142539978\n", + "Legitimate Survival Detected (True Negatives): 236552\n", + "Legitimate Survival Incorrectly Detected (False Positives): 83015\n", + "Deceased Missed (False Negatives): 6950\n", + "Deceased Detected (True Positives): 18788\n", + "Total Deceased: 25738\n", + "Total Survived: 319567\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAQ8AAAEGCAYAAAB7IBD2AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAAAi+UlEQVR4nO3deXwU9f3H8debhBAuQQEpghoPLFJbRaln+1PxRvGq9bZoVaz687aeVcGqRatYrdYWT+rP23qfVcRaLyyoFe8TARWJF6hAkt39/P6YCSwh2V12d3Y3k8/z8dhHdma+O/PJwH4y871GZoZzzq2oTuUOwDnXPnnycM7lxZOHcy4vnjycc3nx5OGcy0t1uQMoRN++fa2urq7cYTgXa9OnT//CzPq1XN+uk0ddXR3Tpk0rdxjOxZqkj1tb77ctzrm8ePJwzuXFk4dzLi+ePJxzefHk4ZzLS2TJQ9INkuZJej1t3SqSnpD0Xvhz5XC9JF0p6X1Jr0naOKq4nHPFEeWVx03Azi3WnQFMNrPBwORwGWAXYHD4GgNcE2FczrkiiCx5mNkzwFctVu8BTArfTwL2TFv/dwu8CPSWNKAogYztBZetX5RdOeeWKnWdR38z+yx8PxfoH74fCMxOKzcnXLccSWMkTZM0rb6+PvPRvvow+Pntp/lH7JxrVdkqTC2YhWiFZyIys4lmNtzMhvfrt1yP2WUsWvh9vuE557IodfL4vPl2JPw5L1z/CbB6WrlB4bqCJH2WNOciU+rk8QAwOnw/Grg/bf2vwlaXzYH5abc3eWtKpArdhXOuDZENjJN0G7AN0FfSHOA8YDxwp6TDgY+BfcPijwAjgfeBhcBhRQqiKLtxzi0vsuRhZge0sWm7VsoacGxUsTjnis97mDrn8hLz5OG3Lc5FJdbJo7q6Xc915FxFi3fyiPVv51x5xfrrVdu5qtwhOBdbsU4eiZR3EnMuKp48nHN5iXXyaEh48nCuVYvnF7yLWCcP87Etzi0n9cmrcOl68PjZBe0n3slDsf71nFtxZvz7prMhsZj3P/2yoF35t8u5jsKM+ntOY+umZwGo36CwIWTei8q5DsC+mUXTFcPpZw0AjO10LGN/ullB+/Tk4VycmdF47U7UfDqVmnDVzQPO5uwjTi1417FOHrWdY/3rOZfZC1dj/76MmoVB3UaTVTG2z6VcMOYwVITpKmL97arq5APjXMdjs17EbtqNTqmmJUND7+kzhiF7n82FA3sX7TixTh5dfHCL60jefgRuPwCxdDx5qt8QOo1+iL17ZJ7vNx+xTh4NiRRdyh2Ec1FKNpF8+mISz/+FLsllJ/y+et1rOeagX0Y2o16sk0fC5MnDxVPDt3DjLjB3BlVA8xDQaan1uKTmWK48bn+O7VUbaQixTh4NiRTdyx2Ec0XUMGs6XW4Ysdz6R5Kb8tz653LCqJ9yZ89ok0azWCcP5+IgtWg+bzwxiTWn/4GVtHDZjduPY/rAg9ilri8jSzzhd8yTh7e2uHaq4TsWTrmMbi9OoBPwY1jy33mO9eWxgcdzxJHHg8QmZQox5snDuXYk0cCXz0ykzzO/A6Bbi82vpAbzxc/PZ4cdRnJE6aNbjicP58opleSbf/+VhueuoX/jbPq02Px2902ZPfxMRmy9LcMqrN9SrJOHdxJzFSmZ4KMn/8ZaL5wFQO/WyhxyL6wzgiHAkBKGtiJinTxqvHu6qxTz55CYcgnVb9wFTQtZq8XmF1Pr8/qao9l9n0NZtVfXsoS4omL97aqp9gmQXZkkGmHaDTQ8dzVdvp0FtP5le2iDK9h8p/3ZvGctm5c2woLFOnn4TYsrqcUL4MmxMO36JatadlJ8c/UDGDrqBFh1fQB2K110RRfr5NGQSNI+LgBdu1X/Dg33n0CXOS+0unlmqj+31uzDF4N25A8H/5yhMboajnXyaErKk4crrtkvwd2/pjElasLbkZZXFx9235AjvzqYQ/fYiQM3XYOzYlpxH+vkkUilyh2Ca+8+fxOenQBffgCfvrxkdU2LYg+mtmSbQ8+n59o/ZW1gckmDLI9YJw/nVtgX78NVufXZPLdpNN022oejd92CUd06RxxY5SlL8pB0EnAEYMAM4DBgAHA70AeYDhxiZo0FHqiwQF38mcGb98NdozMWa1h7J/70xSbcOG8w434xnL2GDeL8Dj5fTMmTh6SBwPHAUDNbJOlOYH9gJHC5md0u6a/A4cA1hRzLvL3FtSbRADftBnNeyljstKYjeaZ2BI+dsj29u9VwOnB6aSJsF8p121INdJXURNCF/zNgBHBguH0SMJYCk4fnDrfErKlww44Zi3xvXdiy4c/Mpwen7zyEcVvW0bUmPq0jxVby5GFmn0i6FJgFLAL+SXCb8o2ZJcJic4CBrX1e0hhgDMAaa6yR8Vhdqjr2ZWWHlUrB7Bdh+k3w2h0ZizbtOZHOP9mHWV830KtrZ/7bAesu8lWO25aVgT2AtYBvgLuAnXP9vJlNBCYCDB8+POPzJKs6+V+NDmPaDfDQSTkV3bXhIt60NbjjqK3YdK1VAFijT8sxrC6bcty2bA98ZGb1AJLuAbYCekuqDq8+BgGfFHogv+SMsW/nwjOXwn+uzVjM1ImTG3/DfcktOXCzOsbt/iMe9ivSoihH8pgFbC6pG8Fty3bANGAKsA9Bi8to4P5CD9SQSPocpnFhBi9cBf/8XcZir6fqOKnpGObW1PH8mSPoWduZy4HLSxNlh1KOOo+pku4GXgYSwCsEtyEPA7dLuiBcd33be8lNMpV2V2PmTbftiRnUvwN/yfxIxJmp/pybOJSpqfXp1q07h2xVx8PbrktNB29GLYWytLaY2XnAeS1WfwhsWszjLGpKLTcbk6tQZvDh0/DOo/DS3zIWvTGxE/ue8me69V6Vd9/8nGt/2I8uMRoz0l7Eu4epX2lUru/q4d4x8MFTORU/ufE33Jf6GSk6ccGeG9B95f4A7PijH0QZpcsg3skjnd+2lJcZvHA1/PPsnIp/s+5ebPL63iSp4pebDOKsXYYwoYfXYFWSjpM8XOklm2DSKJjV+nD1ZlcndueWxPZ8Sh9GbTiQK/ffiN4SH5QoTJcfTx6uuL6dC0+cB6/d3maRB2r34JL52zLHVgXgByvVcubIIey+4WpFeXq7K41YJw//b1gCX38MdxwEc2dkLHZlYk8mJH7JEydtzc96dGHBjM/YfaPVWKnWe3S2V7FOHrWd02vgM3ZGdbn6rh4ePB7eeSRr0cubfsEVyb1pTuM3HfZTBvfvCcDBm68ZZZSuBGKdPKo7eVt/wczgo2fg77vnVPzr/e5j2KTgkYgnbj+Yj7Yb7LciMZUxeUhaJYd9pMzsm+KEU1w+e3qeHjgOXv571mKvpNbl+KZjmW1Bs+lzZ4xgYO+uzBwfdYCuEmS78vg0fGX601EFZB7eWiYLm5LeSSwXqWTQjPrEORmL2dA9WLDzn9nwomcB6F5TxfTzd2hxe+g6imzJ4y0zG5apgKRXihhPUSWtRfd0t1TjwmB+iwwVnS+m1ufUpqOYY/0A8fZeO9OrcxUzx+9aujhdxcqWPLbIYR+5lCmLxoRPgLychV/BJS2fV7bUXxOjuDixH8bS+qJbj9yMLdbu43UXbhkZk4eZLU5fllQLHAx0BW41sy9blnEVJpUKHkL0yKltFrmg6SDW2/NM9hw2kIanP+CqVXuw8wY/8Gf9uoxWtLXlCuA5YDFwH/DzYgcUnQ502/LKLXD/MRmL3J38H05tOoq+Pbrwh31/wvbrr4okTth+cImCdO1dttaW24DfmVlzT+FVCGb+AjgjysDcCkgl4dHTYfqNkEpkLHpQ45m81XUTnjpta2Z2a/n0Eedyl+3K42zgAkmfAb8HLgXuBWoJJih2pZZogLcfgqfHwxfvZi1+XOP/8mBqC47ddl1+u9MQbilBiK5jyFbn8SFwoKSfAXcQTNizq5klSxFcoTpXxagJ8asP4cqMDV8A/KHpAG5K7kQDNRyy+ZpMGDWUP/u0ey4C2W5bViZ4HEIT8EuCiYsfl3SFmT1YgvgKUp3+pWlvTbVNi+CJc+GliVmLTk0N4aDGs3h//B6cCZwZfXTOZb1tuY9gisBuwM1mtkc4heBvJY0xs1FRB1iIru2x81IOjzu8bPPn+fPTMwF4+tRt2Kxvd94vQWjOpcuWPPoAdxM0zR4FYGaLgPMlDYg4toIlUka7GLP56q1w39EZixzZeDJPpIbz0HE/45SBvThl5x+VKDjnWpcteZwHPAYkadG6YmafRRVUsTQlU5WbPMzg/Sfhln3aLLJNw2XMtAH84+gtuXbNlUsYnHPZZasw/QfwjxLFUnQNifQJkCugzqPxe7hotYxFTmo8mntTP2fm+F15ujRROZeXbBWmY81sbKFlyiVVKZWkZjCud8YidYtv5aDN1uDyvX7szxhx7UK225YjJC3IsF0ET7gfW7SIiqrM3avNSI5bhSqWH2NzWdM+3JDchWfP2Z2Vu9cws/TROVeQbMnjWqBnDmUqU/pArhJehTQkknx4/oas32k2Ldt7RjVcwAxbm+fPGMEpvbuWLCbnii1bnce4UgUSF4n6D+hy9cas36Jf1gmNx3D5BRfxoA82czER62kIS2psL2D5E/rFwU/Rd91NuKL0ETkXKU8eBUpduQmdvmqji9Y5X9K3yk+xi6dY/89e5vmlTQuhc23xdn7LvvDe47QcNTKzxzDqTn4KfPJlF3NZk0c4AdBuBHN3rAYsAl4HHjazN6INrzBdqtPqF+rfhjW3LHynqRSc33qHrXknzaWul1eCuo4hWz+PccAoYAowFZhHMBx/PWB8mFhOMbPXog40H4ub0nqYvvtY4clj9n/g+u2XWfVWanXWP/91AFYtbO/OtSvZrjxeMrPz2tg2QdKq5DFzuqTewHXABgRdP38NvEMw7L8OmAnsa2Zfr+i+0y0zhelzV8AO5+e/s7BCNF3d4lu495it8t+nc+1YthvzbpLafDS5mc0zs2l5HPcK4DEzGwJsCLxFMHZmspkNBiZThJnKGpNF6tvRauK4lfcuHMmwNXzMieuYsiWPA4HZkm6WNFJSwWPcJfUC/ge4HsDMGsOHRu0BTAqLTQL2LPRYxaizTC6Yu8zyqav9nXmnfM7M8bvS2SfZcR1Yxv/9ZrYXsC7wJHAcMEfSXyVtXcAx1wLqgRslvSLpOkndgf5pI3XnAv1b+7CkMZKmSZpWX1+f8UCdCnhUwCffLGLtMx6kasIPl6xbZ/HN/P7Q3Vi1ZxFbbZxrp7L+6TSzBWY2ycx2IaijeAW4UtLsPI9ZDWwMXBM+UOp7lh/ub7QxDNbMJprZcDMb3q9fvzxDyOy6f3/I3uPv5sPag5dZ/8bvd6VrTTucYMi5COR83R1OSbg3sB/BLOp353nMOcAcM5saLt9NkEw+b55gKPw5L8/95y+Vgjt/xRGThzG19n+X3XbOl/5YRefSZGuq7QHsBRwADAMeIJhF/enw6mCFmdlcSbMl/dDM3gG2A94MX6OB8eHP+/PZf7qqFbltaaVSdOm2+YWG4lzsZGuqnUkwk9hfgMfNrKlIxz0OuEVSDfAhcBjBVdCdkg4HPgb2LfQgNZ1bXFh9+QH0WWfp8oJPYcL6mXdy3jeFhuFcLGVLHqsDQ4B1wtfbxTiomb0KDG9l03bF2H+zmpaPXph2A+x04dLlTInjwLtgvR2LGY5zsZIteZxK8Gzal4E/SrrIzCp3/o4WFjYlWSl9xQtXLU0eN+yyXPlFp86ia48Mty/OuSWyVZjuDwwzswMIrhTGRB9S8aRSbVTLvPJ/MOv5JYvrLL6ZxDlfe+JwbgVkSx4NZrYQwMy+zKF8RWlqLXnMfBbuP3aZVX1X6rbsA6Kcc1llu21ZW9ID4XsB66QtY2a7RxZZEbR65XHTrsss1i2+lZljt1++nHMuo2zJY48Wy5dGFUgUmrKMbalbfAs/H9y3RNE4Fy/Z5jD9l6SNCLqov2Fmb5UkqhJ5bexOrFRbsY+Fcq6iZbzRl3QucCfwC+BhSUeWJKoiyTQwrmGvGz1xOFeAbLct+wEbmdlCSX0IOoy1m6ba9P6lDVbNXcmtGVk1lVVO+y9duvvtinOFiHVrS01aC8ppTWP4XeJwEqd+AJ44nCtYrFtbqtPuW1Jh3vPh9M4VR6xbW2prlk8ezrniyNraUqpAopA+7teAzdZapWyxOBc32VpbHpQ0StJyzRKS1pZ0vqRfRxdeYVJp2aNvz1ruOGqLMkbjXLxku205EjgZ+JOkrwimD6wlmOH8A+AqMyt43o2oLGxM0i18P3rLtcsai3Nxk+22ZS5wGnCapDpgAMFDn95tboWpZMm0K49VV2pzEnjnXB5yftykmc0kmByo3UimjW2pbTkxkHOuIB3oG5X/TOrOueV1mORR1dmfIetcMcU6eaRfayzu9oOyxeFcHOVU5yFpK2AssGb4GRE8XqWimzBqq9PmMC3gAVDOueXlWmF6PXASMB1IRhdOcVVXLU0YjYnUkmZb51zhck0e883s0UgjiUD6s2SbegwsYyTOxU+uyWOKpD8C9wANzSvN7OVIoiqS9B6myU41ZYzEufjJNXlsFv5Mf9aKASOKG05xJdL6eVjrj751zuUpp+RhZttGHUgUGhOpJe/zezimc64tOTXVSuolaYKkaeHrMkkV/5CTpuTS5FFTHetWaedKLtdv1A3AtwTPj90XWADcGFVQxZJ+sdHZn8viXFHlWuexjpn9Im15nKRXI4gnMlWdvJ+Hc8WU65/jRZJ+1rwQdhpbFE1I0ehRk/MYQOdcDnL9Rh0NTArrOQR8BRwaVVDFkt5JDG9tca6ocm1teRXYUNJK4fKCKIMqls5Ku7Dy5hbniipj8pB0sJn9n6STW6wHwMwm5HtgSVXANOATM9tN0lrA7UAfgm7wh5hZY777B+haU5W9kHMuL9nqPLqHP3u28SrECUD64ysvBi43s3WBr4HDC9y/cy5C2aYh/Fv4c1wxDyppELArcCFwsoJLmRHAgWGRSQSjeK8p5Dgpv1VxLjK5dhK7RNJKkjpLmiypXtLBBRz3TwRzozb34uoDfGNmiXB5DtDqSDZJY5o7q9XX12c8yOKmVMbtzrn85dpUu2NYSbobwTym6wK/zeeAknYD5pnZ9Hw+b2YTzWy4mQ3v169fxrIJ8+ThXFRybaptLrcrcJeZzVf+k+tsBewuaSTBYxxWAq4AekuqDq8+BgGf5HuAZolk+m2L38I4V0y5Xnk8JOltYBNgsqR+wOJ8DmhmZ5rZIDOrA/YHnjKzg4ApwD5hsdFAcZ8H43OYOldUOSUPMzsD2BIYbmZNwPcs/xzbQp1OUHn6PkEdyPXF2vFC82e2OFds2fp5jDCzpyTtnbYuvcg9hRzczJ4Gng7ffwhsWsj+nHOlk63OY2vgKWBUK9uMApNH1JaZANk5V1TZ+nmcF/48rDThFJePpHUuOrn287hIUu+05ZUlXRBZVEXSxScAci4yuX67djGzb5oXzOxrYGQkERVRcwdTf2SLc8WXa/KokrSkyUJSV6DimzCSYfbwXurOFV+uncRuIejf0Tz14GEE408q2uKmJD3KHYRzMZXrfB4XS/ovsH246vdm9nh0YRVHIuXd052LyorMzfcWkDCzJyV1k9TTzL6NKrBiSHrucC4yuba2HAncDfwtXDUQuC+imJxz7UCuFabHEgxoWwBgZu8Bq0YVlHOu8uWaPBrSpwSUVE07GKZa7Z3EnItMrsnjX5LOArpK2gG4C3gwurCKwx/05Fx0cv12nQ7UAzOAo4BHgN9FFVSxeA9T56KTtbUlnOX8DTMbAlwbfUjF0zy2xXuYOld8Wf80m1kSeEfSGiWIp6hS3sPUucjk2s9jZeANSS8RTAQEgJntHklURdKU8KzhXFRyTR7nRBpFRBq9h6lzkck2k1gt8BuC2dJnANenPR6h4jUmPHk4F5VsdR6TgOEEiWMX4LLII3LOtQvZbluGmtmPASRdD7wUfUjOufYg25VHU/Ob9nS74pyLXrYrjw0lLQjfi6CH6YLwvZnZSpFGV6Aa7yTmXGSyTYDcrqcfr/beYc5FJtZ/mrvWtOvc51xFi3Xy8AmQnYtOvJMH3j3duajEOnksbEyWOwTnYivWySPplxzORSbWySOR9OThXFRinTycc9EpefKQtLqkKZLelPSGpBPC9atIekLSe+HPlUsdm3Mud+W48kgAp5jZUGBz4FhJQ4EzgMlmNhiYHC4XxJtonYtOyZOHmX1mZi+H778leJjUQGAPlj7CchKwZ6HHqq32TmLORaWsdR6S6oBhwFSgv5l9Fm6aC/Rv4zNjJE2TNK2+vj7j/qur/NLDuaiULXlI6gH8AzjRzBakbzMzo43nwpjZRDMbbmbD+/Xrl/EYNf7oBeciU5Zvl6TOBInjFjO7J1z9uaQB4fYBwLxCj9M8AbLXfThXfOVobRFwPfCWmU1I2/QAMDp8Pxq4v9BjJVLePd25qOQ6AXIxbQUcAsyQ9Gq47ixgPHCnpMOBj4F9Cz2Qz2HqXHRKnjzM7FmCyYRas10xj9XgycO5yMS6RtFvV5yLTqyTh3MuOp48nHN5iXXy6FztbbTORSXWycMnQHYuOrFOHj4BsnPRiXXyUNgi7BcgzhVfrJOHT4DsXHRinTwWN3knMeeiEuvkkUh58nAuKrFOHo0Jv19xLiqxTh7Oueh48nDO5cWTh3MuL7FOHrWdY/3rOVdWsf52VXfy3mHORSXWyaOLP3rBucjEOnk09zD17unOFV+sk0c4/7F3T3cuArFOHoubkuUOwbnYinXyaEp693TnohLr5OG5w7noxDp5OOei48nDOZeXWCcP7+bhXHRinTw6d4r1r+dcWcX629Wls196OBeVWCePKvkEyM5FJdbJwydAdi46sU4eTT4NoXORiXXyaPQJkJ2LTEUlD0k7S3pH0vuSzih0fw3+6AXnIlMxyUNSFXA1sAswFDhA0tDyRuWca0vFJA9gU+B9M/vQzBqB24E9Ctmht7I4F51KSh4Dgdlpy3PCdcuQNEbSNEnT6uvrM+5wtV61fFvVi4aa3kUN1DkH1eUOYEWZ2URgIsDw4cMzNqeoSw96njOrJHE519FU0pXHJ8DqacuDwnXOuQpUScnjP8BgSWtJqgH2Bx4oc0zOuTZUzG2LmSUk/S/wOFAF3GBmb5Q5LOdcGyomeQCY2SPAI+WOwzmXXSXdtjjn2hFPHs65vHjycM7lxZOHcy4vsnY82YWkeuDjHIr2Bb6IOJx8VXJs4PEVopJjg9zjW9PM+rVc2a6TR64kTTOz4eWOozWVHBt4fIWo5Nig8Pj8tsU5lxdPHs65vHSU5DGx3AFkUMmxgcdXiEqODQqMr0PUeTjniq+jXHk454rMk4dzLi+xTh7FnlC5CPGsLmmKpDclvSHphHD9KpKekPRe+HPlMsZYJekVSQ+Fy2tJmhqewzvC6RLKFVtvSXdLelvSW5K2qJRzJ+mk8N/0dUm3Saot57mTdIOkeZJeT1vX6rlS4MowztckbZzLMWKbPCp0QuUEcIqZDQU2B44NYzoDmGxmg4HJ4XK5nAC8lbZ8MXC5ma0LfA0cXpaoAlcAj5nZEGBDgjjLfu4kDQSOB4ab2QYEU0rsT3nP3U3Azi3WtXWudgEGh68xwDU5HcHMYvkCtgAeT1s+Eziz3HG1iPF+YAfgHWBAuG4A8E6Z4hkU/qcaATwEiKAHYnVr57TEsfUCPiKs5E9bX/Zzx9L5d1chmObiIWCncp87oA54Pdu5Av4GHNBauUyv2F55kOOEyuUiqQ4YBkwF+pvZZ+GmuUD/MoX1J+A0oPmBN32Ab8wsES6X8xyuBdQDN4a3VddJ6k4FnDsz+wS4FJgFfAbMB6ZTOeeuWVvnKq/vSpyTR8WS1AP4B3CimS1I32ZB6i95+7mk3YB5Zja91MfOUTWwMXCNmQ0DvqfFLUoZz93KBI8JWQtYDejO8rcMFaUY5yrOyaMiJ1SW1JkgcdxiZveEqz+XNCDcPgCYV4bQtgJ2lzST4Jk5IwjqGHpLap5xrpzncA4wx8ymhst3EySTSjh32wMfmVm9mTUB9xCcz0o5d83aOld5fVfinDwqbkJlSQKuB94yswlpmx4ARofvRxPUhZSUmZ1pZoPMrI7gXD1lZgcBU4B9yhlbGN9cYLakH4artgPepALOHcHtyuaSuoX/xs2xVcS5S9PWuXoA+FXY6rI5MD/t9qZtpa5cKnGF0UjgXeAD4OwKiOdnBJeKrwGvhq+RBHULk4H3gCeBVcoc5zbAQ+H7tYGXgPeBu4AuZYxrI2BaeP7uA1aulHMHjAPeBl4Hbga6lPPcAbcR1L80EVy1Hd7WuSKoGL86/J7MIGg1ynoM757unMtLnG9bnHMR8uThnMuLJw/nXF48eTjn8uLJwzmXF08eFUZSUtKr4ejMByX1LvL+Z0rqG77/ro0yXSX9Kxxh2ykccfm6pBmS/iNprSLGs5qku8P3G0kambZt92yjoSWdL2n78P2JkrplKV8j6Zm0zlvp2+okLZL0arjcT9Kz4e++Z1q5+yWtlrb8R0lzJZ2a228dD548Ks8iM9vIgtGZXwHHliGGXwP3mFkS2I+gy/VPzOzHwF7AN8U6kJl9ambNHak2Iuj30rztATMbn+Xz55rZk+HiiUDG5GFmjQR9HfZro8gHZrZR+P4A4K/ApuG+kTQKeMXMPk3b52/Dch2KJ4/K9gLhACVJ60h6TNJ0Sf+WNCRc31/SvZL+G762DNffF5Z9Q9KYFTzuQSztfTgA+MzMUgBmNsfMvg6PsaOkFyS9LOmucMxO89XNuHD9jLRYtw6vql4NB7f1DP/avx72Aj4f2C/cvp+kQyVdJamXpI8ldQr3013SbEmdJd0kaR9JxxMkuSkK5kz5taQ/Nf9Cko6UdHm4eF/4O2bTRJCMugDJ8GrlROCSFTyf8VSu3oL+arNn4HfhzyqCXok7h8uTgcHh+80Iuo8D3EEwwK75M73C9829B7sS9HrsEy7PBPqmH6vF8WuAuWnLg8LPvApcBgwL1/cFngG6h8unA+emHeO48P0xwHXh+weBrcL3PQgGu9URDhsHDgWuSjv2kmWCZLZt+H6/tH3eBOzTyu/Wg6DHZOdw+Xngx2nnqb6V331JLOFyL+Bhgl6t2xHM2XFoG/9uY4FTy/3/p5Sv5e77XNl1De+5BxJMdvNE+Bd9S+CuYOgEEPw1hGAA268ALLjNmB+uP17SXuH71Qkmevkyh+P3Je22xMzmhONJRoSvyZJ+SZCUhgLPhTHVEFwpNWse9Dcd2Dt8/xwwQdItBLdFc9J+n2zuIEgaUwjG3vwlU2Ez+07SU8Bukt4iSCIzwm1JSY2SeprZtxn2MR/YFZaMnD0D2EvStQRd4y8zsxfa+nzcefKoPIvMbKOw4u9xgjqPmwjmhtgolx1I2oZgpOcWZrZQ0tNAba7Hb1nWzBqAR4FHJX0O7An8E3jCzA5oYz8N4c8k4f8zMxsv6WGCeo3nJO0ELM4xrgeAiyStAmwCPJXDZ64DziIYc3Jji21dVuDYAOcAFxLUgzxLMKr3HoJJfzokr/OoUGa2kOAy+RRgIfBR+Be/ec7JDcOik4Gjw/VVknoRXG5/HSaOIQRTHuZ63K+BKkm14T43bm5ZCOscfkLwfOAXga0krRtu6y5pvUz7lrSOmc0ws4sJRj0PaVHkW6BnG3F9F37mCoJBe8lWii3zeQuG768OHEgwUKw5jj7AFxYMn89K0mBgkJk9TVAHkiIY4Ng1l8/HlSePCmZmrxCMID2AoILvcEn/Bd4gmHwGgjlHt5U0g+AWYSjwGFAdXq6PJ/iir4h/EowABlgVeFDBRLqvEczDepWZ1RPUSdwm6TWCW5aWyaClE8PK0dcIKiMfbbF9CjC0ucK0lc/fARwc/mzNROAxSVPS1t0JPBcmxWbbEtRl5OpC4Ozw/W0Eybo5kXVYPqrWLUfB7Nknmdkh5Y6lUApmgb/czCanrbsHOMPM3m1Rto7gqmaDPI4zlqAC+tLCIm4//MrDLcfMXiZo8qwqdyz5UvCYhncJ6pDSE0cNcF/LxBFKAr3CCusVOdYfCa6Ivi8g5HbHrzycc3nxKw/nXF48eTjn8uLJwzmXF08ezrm8ePJwzuXl/wFkKOkd7sD49QAAAABJRU5ErkJggg==" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": { + "scrolled": true + } + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [ + "final_model.save(str(date_final)+'_MLP_final_model_imp_' + str(imp) + '.h5') " + ], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/multilayer_perceptron/4_pool_results_from_imputations_mlp.ipynb b/multilayer_perceptron/4_pool_results_from_imputations_mlp.ipynb new file mode 100644 index 0000000..0c3600d --- /dev/null +++ b/multilayer_perceptron/4_pool_results_from_imputations_mlp.ipynb @@ -0,0 +1,579 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Pool results from the multilayer perceptron for all 5 sets of data\n", + "- Calculate a single predicted probability for each patient via averaging the score for each patient (usrds_id) across the restulst for the 5 (imputations) sets of the model results" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "import pickle\n", + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "import psycopg2\n", + "from sqlalchemy import create_engine\n", + "\n", + "con = create_engine('postgresql://username:password@location/dbname')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Import the imputed predicted probabilities" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [ + "with open('./results/2021_MLP_final_ytest_all.pickle', 'rb') as f: \n", + " y_true_mlp = pickle.load(f)\n", + " \n", + "with open('./results/2021_MLP_final_ypred_all.pickle', 'rb') as picklefile: \n", + " y_pred_proba_mlp = pickle.load(picklefile)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Reformat into a pandas dataframe to make it easier to work with\n", + "The index for the values is zero here b/c we only saved it for the positive class, otherwise it would be 1" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 5, + "source": [ + "pooled = pd.DataFrame()\n", + "pooled['imp1']=y_pred_proba_mlp[0][:,0] \n", + "pooled['imp2']=y_pred_proba_mlp[1][:,0] \n", + "pooled['imp3']=y_pred_proba_mlp[2][:,0] \n", + "pooled['imp4']=y_pred_proba_mlp[3][:,0] \n", + "pooled['imp5']=y_pred_proba_mlp[4][:,0] \n", + "pooled.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " imp1 imp2 imp3 imp4 imp5\n", + "0 0.677572 0.764768 0.582416 0.796379 0.646979\n", + "1 0.657155 0.718089 0.527093 0.748711 0.641911\n", + "2 0.457672 0.350533 0.513291 0.560138 0.505401\n", + "3 0.515523 0.605403 0.402248 0.716361 0.562594\n", + "4 0.165916 0.199461 0.176441 0.313378 0.225053" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
imp1imp2imp3imp4imp5
00.6775720.7647680.5824160.7963790.646979
10.6571550.7180890.5270930.7487110.641911
20.4576720.3505330.5132910.5601380.505401
30.5155230.6054030.4022480.7163610.562594
40.1659160.1994610.1764410.3133780.225053
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 5 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Calculate the mean and standard deviation of the predicted probability for the positive class (died_in_90) for each patient/row " + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 6, + "source": [ + "pooled['score'] = pooled.mean(axis=1)\n", + "pooled['std_'] = pooled.std(axis=1)\n", + "pooled.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " imp1 imp2 imp3 imp4 imp5 score std_\n", + "0 0.677572 0.764768 0.582416 0.796379 0.646979 0.693623 0.078001\n", + "1 0.657155 0.718089 0.527093 0.748711 0.641911 0.658592 0.076464\n", + "2 0.457672 0.350533 0.513291 0.560138 0.505401 0.477407 0.071277\n", + "3 0.515523 0.605403 0.402248 0.716361 0.562594 0.560426 0.103325\n", + "4 0.165916 0.199461 0.176441 0.313378 0.225053 0.216050 0.052747" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
imp1imp2imp3imp4imp5scorestd_
00.6775720.7647680.5824160.7963790.6469790.6936230.078001
10.6571550.7180890.5270930.7487110.6419110.6585920.076464
20.4576720.3505330.5132910.5601380.5054010.4774070.071277
30.5155230.6054030.4022480.7163610.5625940.5604260.103325
40.1659160.1994610.1764410.3133780.2250530.2160500.052747
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 6 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Import the details from the original data from step 1" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [ + "dataset = pd.read_sql_query('''SELECT usrds_id, died_in_90, subset FROM medxpreesrd;''', con)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### sort the values so they are in the same order as when the LR was calculated and keep only the test set" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 8, + "source": [ + "dataset = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id').reset_index(drop=True)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### merge the details with the pooled predictions" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 9, + "source": [ + "pooled = pooled.merge(dataset, left_index=True, right_index=True)\n", + "pooled" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " imp1 imp2 imp3 imp4 imp5 score std_ \\\n", + "0 0.677572 0.764768 0.582416 0.796379 0.646979 0.693623 0.078001 \n", + "1 0.657155 0.718089 0.527093 0.748711 0.641911 0.658592 0.076464 \n", + "2 0.457672 0.350533 0.513291 0.560138 0.505401 0.477407 0.071277 \n", + "3 0.515523 0.605403 0.402248 0.716361 0.562594 0.560426 0.103325 \n", + "4 0.165916 0.199461 0.176441 0.313378 0.225053 0.216050 0.052747 \n", + "... ... ... ... ... ... ... ... \n", + "345300 0.415212 0.422961 0.319098 0.561852 0.374703 0.418765 0.080472 \n", + "345301 0.080883 0.088186 0.061374 0.078658 0.069855 0.075791 0.009283 \n", + "345302 0.084520 0.100569 0.087491 0.083803 0.108473 0.092971 0.009834 \n", + "345303 0.110417 0.076165 0.102096 0.069300 0.090053 0.089606 0.015377 \n", + "345304 0.151570 0.140597 0.146142 0.146630 0.176061 0.152200 0.012427 \n", + "\n", + " usrds_id died_in_90 subset \n", + "0 31089.0 1.0 9 \n", + "1 34521.0 0.0 8 \n", + "2 46751.0 0.0 8 \n", + "3 50506.0 0.0 9 \n", + "4 54985.0 0.0 8 \n", + "... ... ... ... \n", + "345300 4056286.0 0.0 8 \n", + "345301 4056351.0 0.0 7 \n", + "345302 4056356.0 0.0 9 \n", + "345303 4056511.0 0.0 7 \n", + "345304 4056879.0 0.0 7 \n", + "\n", + "[345305 rows x 10 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
imp1imp2imp3imp4imp5scorestd_usrds_iddied_in_90subset
00.6775720.7647680.5824160.7963790.6469790.6936230.07800131089.01.09
10.6571550.7180890.5270930.7487110.6419110.6585920.07646434521.00.08
20.4576720.3505330.5132910.5601380.5054010.4774070.07127746751.00.08
30.5155230.6054030.4022480.7163610.5625940.5604260.10332550506.00.09
40.1659160.1994610.1764410.3133780.2250530.2160500.05274754985.00.08
.................................
3453000.4152120.4229610.3190980.5618520.3747030.4187650.0804724056286.00.08
3453010.0808830.0881860.0613740.0786580.0698550.0757910.0092834056351.00.07
3453020.0845200.1005690.0874910.0838030.1084730.0929710.0098344056356.00.09
3453030.1104170.0761650.1020960.0693000.0900530.0896060.0153774056511.00.07
3453040.1515700.1405970.1461420.1466300.1760610.1522000.0124274056879.00.07
\n", + "

345305 rows × 10 columns

\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 9 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### save as a pickle file" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 10, + "source": [ + "with open('./results/2021_final_MLP_model_test_pred_proba_pooled.pickle', 'wb') as picklefile: \n", + " pickle.dump(pooled, picklefile)" + ], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/multilayer_perceptron/5_plot_mlp_roc_auc.ipynb b/multilayer_perceptron/5_plot_mlp_roc_auc.ipynb new file mode 100644 index 0000000..240e81d --- /dev/null +++ b/multilayer_perceptron/5_plot_mlp_roc_auc.ipynb @@ -0,0 +1,341 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Plot the pooled results of multilayer perceptron model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 5, + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import pickle\n", + "\n", + "import sys\n", + "#path to the functions folder\n", + "sys.path.append('../onc_functions')\n", + "#import custom plotting functions\n", + "from plot_functions import onc_calc_cm, onc_plot_roc, onc_plot_roc_no_threshold" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "#import the pooled results from the MLP model\n", + "with open('./results/2021_final_MLP_model_test_pred_proba_pooled.pickle', 'rb') as f:\n", + " results = pickle.load(f)\n", + "\n", + "#keep the columns we need for calibration\n", + "results = results.loc[:,['score','died_in_90','subset','usrds_id']]\n", + "results = results.rename(columns={'died_in_90':'y'})\n", + "results.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y subset usrds_id\n", + "0 0.693623 1.0 9 31089.0\n", + "1 0.658592 0.0 8 34521.0\n", + "2 0.477407 0.0 8 46751.0\n", + "3 0.560426 0.0 9 50506.0\n", + "4 0.216050 0.0 8 54985.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreysubsetusrds_id
00.6936231.0931089.0
10.6585920.0834521.0
20.4774070.0846751.0
30.5604260.0950506.0
40.2160500.0854985.0
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 2 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Plot the ROC AUC with points at 20% and 50% thresholds" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 3, + "source": [ + "onc_plot_roc(\n", + " y_true=results.y, \n", + " y_pred=results.score, \n", + " model_name='mlp');" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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AAAAAAAAulFGBwAAAAAAAAAAAAAAAAAAoBtldAAAAAAAAAAAAAAAAAAAALpRRgcAAAAAAAAAAAAAAAAAAKAbZXQAAAAAAAAAAAAAAAAAAAC6UUYHAAAAAAAAAAAAAAAAAACgG2V0AAAAAAAAAAAAAAAAAAAAulFGBwAAAAAAAAAAAAAAAAAAoBtldAAAAAAAAAAAAAAAAAAAALpRRgcAAAAAAAAAAAAAAAAAAKAbZXQAAAAAAAAAAAAAAAAAAAC6UUYHAAAAAAAAAAAAAAAAAACgG2V0AAAAAAAAAAAAAAAAAAAAulFGBwAAAAAAAAAAAAAAAAAAoBtldAAAAAAAAAAAAAAAAAAAALpRRgcAAAAAAAAAAAAAAAAAAKAbZXQAAAAAAAAAAAAAAAAAAAC6UUYHAAAAAAAAAAAAAAAAAACgG2V0AAAAAAAAAAAAAAAAAAAAulFGBwAAAAAAAAAAAAAAAAAAoBtldAAAAAAAAAAAAAAAAAAAALpRRgcAAAAAAAAAAAAAAAAAAKAbZXQAAAAAAAAAAAAAAAAAAAC6UUYHAAAAAAAAAAAAAAAAAACgG2V0AAAAAAAAAAAAAAAAAAAAulFGBwAAAAAAAAAAAAAAAAAAoBtldAAAAAAAAAAAAAAAAAAAALpRRgcAAAAAAAAAAAAAAAAAAKAbZXQAAAAAAAAAAAAAAAAAAAC6UUYHAAAAAAAAAAAAAAAAAACgG2V0AAAAAAAAAAAAAAAAAAAAulFGBwAAAAAAAAAAAAAAAAAAoBtldAAAAAAAAAAAAAAAAAAAALpRRgcAAAAAAAAAAAAAAAAAAKAbZXQAAAAAAAAAAAAAAAAAAAC6UUYHAAAAAAAAAAAAAAAAAACgG2V0AAAAAAAAAAAAAAAAAAAAulFGBwAAAAAAAAAAAAAAAAAAoBtldAAAAAAAAAAAAAAAAAAAALpRRgcAAAAAAAAAAAAAAAAAAKAbZXQAAAAAAAAAAAAAAAAAAAC6UUYHAAAAAAAAAAAAAAAAAACgG2V0AAAAAAAAAAAAAAAAAAAAulFGBwAAAAAAAAAAAAAAAAAAoBtldAAAAAAAAAAAAAAAAAAAALpRRgcAAAAAAAAAAAAAAAAAAKAbZXQAAAAAAAAAAAAAAAAAAAC6UUYHAAAAAAAAAAAAAAAAAACgG2V0AAAAAAAAAAAAAAAAAAAAulFGBwAA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AAAAAAAAAAA9yP79+/O+972v3jFq6v3vf38OHTqUhx56KB/4wAcycODAekcCAAAAgLpra2vLihUrsn///prMK5fLmTt3bh566KE0NDTUZCYAKKMDAAAAAAAAAEAdHThwIO9973vrHaPm/uN//I/5gR/4gZTL5XpHAQAAAIAepSiKvPjii1mzZk06OjpqMnPEiBFZunRphg8fXpN5APAqZXQAAAAAAAAAALiFOjs78/GPfzyf+cxn6h2lZj7xiU9kzpw59Y4BAAAAAD3e2bNns3z58hw+fLgm8xoaGjJ//vw8+OCD3hgSgJtCGR0AAAAAAAAAAG6SoiiycuXK/PRP/3S9o9TUvHnz8r/+1//KwIED6x0FAAAAAHqFoiiyZcuWrF27Nl1dXTWZOXr06CxdujRDhw6tyTwAuBxldAAAAAAAAAAAqKGXX345X//61/Pxj3+83lFqYujQofnYxz6W7/iO70ipVKp3HAAAAADodU6dOpXly5fn6NGjNZnX1NSURx55JA888ICf2QFw0ymjAwAAAAAAAADADVi1alV+6qd+qt4xauL7v//78xM/8RPp169fvaMAAAAAQK9XrVazadOmrF+/PpVKpSYzx48fn5aWlgwaNKgm8wDgrSijAwAAAAAAAADANSiKIl/60pfyS7/0S/WOcsN+/dd/PXPmzMmYMWPqHQUAAAAAbisnT57MsmXLcuLEiZrMa25uzsKFCzN9+nS7oQNwSymjAwAAAAAAAADAW9izZ0++7/u+r94xrtuHP/zhvOc978nEiRNTLpfrHQcAAAAAbluVSiXr16/Ppk2bUq1WazLz7rvvzuLFizNgwICazAOAa6GMDgAAAAAAAAAA+ecdzzdv3pw1a9bkmWeeyfPPP1/vSNfliSeeyH/9r/81/fv3r3cUAAAAALjjHD58OBs2bKjJrL59+2bRokWZNm2a3dABqBtldAAAAAAAAAAA7ljVajUf/ehHs3LlynpHuS733HNP3vOe92ThwoWZPHmyX0gFAAAAgDqbOHFipk6dmt27d9/QnGnTpmXRokXp169fjZIBwPVRRgcAAAAAAAAA4I5QrVbzyU9+Ml/84hezZ8+eese5LkuWLMl/+S//JWPGjKl3FAAAAADgCh5//PEcPnw47e3t13xt//79s2TJktx99903IRkAXDtldAAAAAAAAAAAbltnzpzJT/7k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oAqFQlRVVeVdAwAAAACgU2lpaYklS5bEAw88EM3NzQf93OLFi2P48OHRv3//ErYDALJmjA4AAAAAAAAAvKilpSXe+MY3xpYtW/KuckBf/vKX49xzz827BgAAAABAp7R58+YoFAqxadOm1/xsS0tL1NXVxQUXXBBlZWUlaAcAFIMxOgAAAAAAAAAQ+/fvj8mTJ+dd44DKy8vjnnvuiV69euVdBQAAAACgU2pubo5FixbF4sWLo6Wl5ZC/99xzz8WSJUvirLPOKl45AKCojNEBAAAAAAAAoJNqamqK7373u3HTTTflXeUl3vjGN8a1114b5eXleVcBAAAAAOj0nn322airq4utW7e26vsPPPBAnHDCCXHUUUdlWwwAKAljdAAAAAAAAADoBHbu3Bl33XVXfPWrX827ykv06tUrPvGJT8T5558fZWVledcBAAAAAOB/7N+/PxoaGuLhhx+ONE1bndPc3Bx1dXXx1re+NZIkybAhAFAKxugAAAAAAAAA0EFt2rQp/uu//it+/vOf513lJd761rfG29/+9jj99NPzrgIAAAAAwAGsX78+CoVCbNu2LZO8HTt2xPbt26NPnz6Z5AEApWOMDgAAAAAAAAAdSEtLS0ycODHvGq9wwQUXxOc+97m8awAAAAAA8Cqamppi/vz5sXTp0swyTzrppJgyZUpUVlZmlgkAlI4xOgAAAAAAAAC0Y2316ecREZdffnlcddVVUVZWlncVAAAAAABew1NPPRWzZs2KnTt3ZpLXs2fPqK6ujiFDhmSSBwDkwxgdAAAAAAAAANqR9evXx2c/+9lYsmRJ3lUO6D/+4z9i8uTJedcAAAAAAOAQNTY2xty5c2P58uWZZY4ePTomTZoUFRUVmWUCAPkwRgcAAAAAAACANm7fvn3x5S9/Of7whz/kXeWg6uvro1u3bnnXAAAAAADgMKxevTrq6+tjz549meT16dMnampq4rjjjsskDwDInzE6AAAAAAAAALRRt99+e1x77bV51zigvn37xtvf/va44oorokePHnnXAQAAAADgMOzZsydmz54dq1atyiQvSZI444wzYty4cdGli8kaAHQk/j87AAAAAAAAALQhTz75ZFx00UV51ziou+++O/r165d3DQAAAAAAWiFN03jiiSdizpw50djYmElm3759o7a2No455phM8gCAtsUYHQAAAAAAAADa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5cknn0xnZ2deeumlWvZNmDAh8+fPz5QpU2rZBwAAAAAAADASDOcyeleSR17jnjOz9zT0at+fG5Ls6Mczy775zUleSHJfktuS/Gsp5cV+7AUAABrwoz/6ow3Nvfe97605CQAAAABQl507d2b58uW5//77a9t5/vnnZ86cORk7dmxtOwEAAAAAAABGgmFbRi+ldCY569Xuqaqqu8el/1JKWTFwqQAAgMFy9913NzS3atWqmpMAAAAAAHV59NFHs3DhwmzdurWWfZMmTcqCBQty2mmn1bIPAAAAAAAAYKQZtmV0AABg5Cql5N3vfnef537kR35kANIAAAAAAP21ffv2LF26NA899FBtOy+66KLMmjUro0ePrm0nAAAAAAAAwEgzEsro1VAHAAAA6jVz5syG5j70oQ/VnAQAAAAA6K+1a9dm8eLF6erqqmXfUUcdlba2tpxyyim17AMAAAAAAAAYyZq9jN6zafL4kKQAAABqs3HjxobmZsyYkZaWlprTAAAAAACN2rZtWxYvXpx169bVsq+qqlx66aW58sorM2pUs/84BAAAAAAAAMDgaOpPX0spjj0EAIAmc9111zU096lPfarmJAAAAABAI0opeeihh7J06dLs2LGjlp3HHnts2tvbc8IJJ9SyDwAAAAAAAIC9mrqMDgAANJfu7u6G5v7P//k/qaqq5jQAAAAAQF9t2bIlCxcuzGOPPVbLvpaWllx++eW57LLL0traWstOAAAAAAAAAH5IGR0AABg2Zs2a1dDc7Nmza04CAAAAAPRFKSX3339/li9fnl27dtWy84QTTkh7e3uOPfbYWvYBAAAAAAAA8ErK6AAAwLBwxx13NDT3ne98p+YkAAAAAEBfbNq0KZ2dnXnqqadq2dfa2poZM2bkkksuSUtLSy07AQAAAAAAAOidMjoAADAs/OIv/mKfZ6699tocffTR9YcBAAAAAA7Jhg0bcuutt2b37t217Dv55JPT3t6eo446qpZ9AAAAAAAAALw6ZXQAAOCwd9NNNzU09+EPf7jmJAAAAABAX5xwwgk56qij8txzz/Vrz+jRozNr1qxceOGFqaqqpnQAAAAAAAAAvJZhVUavquo/erlcSinX9OH+gXbQPAAAQGPWrl3b55nXv/71A5AEAAAAAOiLlpaWtLe356tf/WpKKQ3tOO2007JgwYJMmjSp5nQAAAAAAAAA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LImKioq092zdujV+//vfx1tvvRXPP/98tuMDADQIhtEBqDPJZLKuIzQYgwcPjscff7xGH/NEIhH9+vWL/v37R35+fhbTAQAAAAAAAAAAAAANzfz582P06NGxYMGCtNeLiorizDPPjNNPPz1GjBgR7du3T7tu06ZNMX369HjuuefiH//4RyxatChlTXl5eVazAwA0JHl1HQCAhqm0tDSj9b17985RkoZhzz33rNHHsH379nH66afHwIEDDaIDAAAAAAAAAAAAADWycuXKOOqoo9IOoufn58d//dd/xaJFi+Kee+6JU089tdJB9IiIpk2bxlFHHRXXX399LFiwIB599NEYNGhQLuMDADQohtEBqBOPPfZYRutPOOGEHCVpOAYNGhQtWrTI6J78/PwYOHBgnHrqqdGuXbscJQMAAAAAAAAAAAAAGoqysrI45ZRT0p5gvtdee8XkyZPjf//3f2OPPfbIuHcikYgxY8bE9OnT4+677462bdtmIzIAQINmGB2AOvHkk09mtP7000/PUZKGo7CwMA4//PAqr+/YsWOcfvrpceihh0Zenm8ZAAAAAAAAAAAAAICa+/nPfx7Tp09PqXfu3DmmTJkSQ4cOrfEeiUQiLrjggnjjjTdixIgRNe4HANCQFdR1AAAapk8++SSj9Y0aNcpRkoalc+fOccABB8R7771X6ZqCgoIYOHBgHHzwwZFIJGoxHQAAAAAAAAAAAACwO5s3b1784he/SKnn5+fHQw89FD169Mjqfp07d47nn38+7rzzzqz2BQBoSAyjA1Anli5dWtcRGqwhQ4bEhx9+GJs2bUq5tvfee8fIkSOjZcuWdZAMAAAAAAAAAAAAANid/fjHP47S0tKU+tVXXx2DBg3KyZ6NGjWKr371q1nrN3/+/Hj99dfjww8/jOLi4mjdunXsscce0bdv3zjwwAOzts/2Pvnkk3j33Xdj/vz5sXbt2tiwYUM0adIk2rZtG23bto0+ffpkfZi/qpYsWRIzZ86MhQsXxoYNG6JFixaxxx57xIEHHhj9+vWrlUPS5s6dG++88058+OGHsWHDhigvL4/mzZtHmzZtYr/99otevXpF69ats77vxx9/HLNmzYqFCxfGmjVroqysLNq3bx8dOnSI/fbbLw466KCs7wkAtc0wOgC1LplMZrR+5MiROUrSMDVu3DhGjBgRzz333Ge1wsLCGDJkSBx44IFOQwcAAAAAAAAAAAAAsm7JkiXxwAMPpNS7d+8e1157bR0kqrrNmzfHn//857jlllvi7bffrnRd165d46KLLorvfOc70bx58xrtuXz58nj88cdjwoQJMWHChCodCLf33nvH0UcfHVdeeWUceuih1d574cKFsc8++2xT69atWyxcuPCz31dUVMS9994bf/jDH+LVV1+ttFeHDh3ivPPOix/96EfRvn37amdK54UXXoi77747nnzyyVi1atVO1/fp0yeOPfbYOPfcc2PAgAHV3nfFihVx++23xwMPPBCzZ8/e4douXbrECSecEFdddVXsv//+1d4TAOpSXl0HAKDh+fjjjzNaf+655+YoScPVvXv36NmzZ0R8+j88zj777OjVq5dBdAAAAAAAAAAAAAAgJ+64444oLy9PqV966aVRWFhYB4mq5pVXXolDDjkkLr/88h0OokdELF68OH7yk5/EvvvuG1OmTKnWfhMnToyjjz46OnXqFJdeemncd999VRpEj4hYunRp/PWvf43+/fvHiSeeWOX7MvX+++/HkCFD4oILLtjhIHpExMqVK+P3v/999OzZMx5++OGs7P/SSy/FwIED4+ijj4577rmnSoPoERFvvfVW3HjjjTFw4MDo379/xvtu2rQpfvCDH0T37t3jmmuu2ekgekTEhx9+GLfddlscdNBBcfnll8e6desy3hcA6pphdABq3fLlyzNa36NHjxwladiGDRsWRx11VHzuc5+LZs2a1XUcAAAAAAAAAAAAAGA3lm4QubCwMC6++OI6SFM1Dz/8cIwaNSref//9jO5bsWJFHHvssTF+/PiM9xw3bly88MILUVFRkfG9/+mpp56KAQMGxPTp02vUZ3svvfRSDBkyZKdD6Ntbv359nH322fHXv/612ntXVFTEj370oxg5cmTMmDGj2n0iIl5//fWM1r/33nsxYMCAuP7662Pz5s0Z71dWVhb/93//F4cffnjOHhIAALlSUNcBAGh4Mv2hr3379jlKsmsoKyuLGTNmRMuWLaN3795Z61tUVBT77rtv1voBAAAAAAAAAAAAAKSzbNmymDVrVkr9iCOOiA4dOtR+oCp4/vnn47zzzoutW7duU99zzz2jU6dO0apVq1i9enW89957UVJSknJ/SUlJfPGLX4y333472rZtm5VMHTp0iI4dO0arVq2icePG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9NqInTPl5eUptaKiopzvu3bt2pzv8Z/SvU4AqE8MowNQa+64444qr23ZsmU0atQoh2lyp6KiIt5444147bXXsvZDYadOnWLkyJHRokWLrPQDAAAAAAAAAAAAoGHq169f9OnTp65j7FBeXl5W+gwfPjyGDh2alV65sv0A8e6qsoHzV199NS677LJaTlN/ffe7340NGzak1E899dT48Y9/HP37969yrw8++CCb0epE69at45NPPtmmtn79+pzvW1Bg5A4A/pOvjADUmvnz51d57YEHHpjDJLmzatWqmDhxYsoPvNXVqFGjGDp0aOy///5OQwcAAAAAAAAAAACgxvLz8xvMALSB0vqjf//+0apVq1i3bt029YkTJ0YymfRvpSPi448/jvvvvz+lfvXVV8cvf/nLjPutWbMmG7HqVNu2bVP+bX5tnFresmXLlFqHDh1ixYoVOd8bAOqj7DwqCgCyrEOHDnUdISPl5eXx6quvxj//+c+sDaJ369YtzjrrrDjggAP8zxUAAAAAAAAAAAAAYJdVWFgYn/vc51Lq8+fPj+eff74OEtU/TzzxRFRUVGxT6927d/z85z+vVr9s/bv2utS+ffuU2ty5c3O+b5cuXVJqq1evzvm+AFBfGUYHoFZs/0PxzixcuDA3QXJgxYoV8fDDD8frr7+e8etMp0mTJnH00UfHscceG82aNctCQgAAAAAAAAAAAACAunX++eenrd966621nKR+mjlzZkrt85//fOTn51er32uvvVbTSHWuX79+KbXp06fnfN/evXun1MrKymLJkiU53xsA6iPD6ADUig8++CCj9VdccUWOkmRPWVlZTJs2LR577LFYs2ZNVnr27NkzzjrrrOjZs6fT0AEAAAAAAAAAAACA3cbxxx8fXbt2Tak/+uij8frrr9dBovplxYoVKbVevXpVu9/kyZNrEqdeGDVqVEptxowZsXbt2pzu27Nnz9hjjz1S6i+++GJO9wWA+sowOgC14oknnshofbonmNUnS5cujQcffDDeeuutSCaTNe7XtGnT+NznPhdHH310FBUVZSEhAAAAAAAAAAAAAED9kZ+fHz/+8Y9T6mVlZXHBBRfEli1bcrb3qlWrctY7W9atW5dSa968ebV6LV68OMaPH1/TSHUu3TD65s2b484778z53ieddFJK7eGHH875vgBQHxlGB6BWPPvssxmt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VFTEpZdeGn/5y18qXTN06NA477zz4uijj45evXrFp+NB20omk/HOO+/Eiy++GGPHjo3JkyenHTysbHg4lz7++OO4+eabt6mde+650alTp6zvdc899+z0Nc6cOTPeeuut6NOnT9b33xWsWrUqjjvuuJgxY0ba6wUFBTFmzJg488wzY+TIkZX+OW3dujVmzJgR48ePj/vvvz/efvvtlDV18X5ryDZu3BhnnHFG2kH0QYMGxS9+8Ys46qijtvkcsnz58rjlllviV7/6VcoA92233RYDBgyISy65JOfZ03nggQcqHUQ/+OCD4/vf/36ccsop0aLFtmfmbt26NSZMmBC/+c1vYty4cSn3Pv3003HjjTfG1VdfnZPcta158+Zx+umnx5FHHhkjR46MHj16pKxZv359PPnkk/HrX/86Xn/99ZTrjz/+eHzjG9+I22+/vVoZzjrrrPje974XH374/0ddr732WsPo9UheXQeg1tweEVu3qxVGxM8z7HNRRByYpv5/VW2QSCQWJhKJ5Ha/FmaYI91+7SLiexn2+X5EtK1ifwAAAAAAAAAAAAAAALJsyJAhlf466qij4owzzohrr702XnzxxZgzZ04MGTIkbZ977703XnrppRpluemmmyodRD/ssMNixowZ8fjjj8eZZ56ZdhA9IqJFixZxyimnxEMPPRSvv/56pXmvvfba+MMf/lCjvN/85jcrHUQfPHhwTJs2LaZOnRqXX3559O7dO+0gesSnQ/a9e/eOb3zjGzFhwoR477334tJLL42Cgro/C/Xmm2+OkpKSbWpf/epXc7LXnXfemVIrKipKqd1xxx052b++27RpU3zuc5+rdBD9/PPPjw8++CAeeuihOO+883b4wIBGjRrFsGHD4pprrok5c+bEhAkT4thjj81VdKrguuuui/feey+lfvHFF8dLL70URx99dMrnkD333DN+8pOfxOTJk6NNmzYp91511VWxfPnynGWuzJYtW+Kqq65Ke+3iiy+OmTNnxhe/+MWUQfSIT9+bxx57bDz33HPxhz/8Ie3nzZ/97GexbNmyGmXMz8+Pgw46KC644IK46aab4qWXXkp58EYuDR06NO68885Yvnx53H333fGlL30p7SB6RETLli3jvPPOixkzZsRPfvKTtGv+/Oc/x9SpU6uVJT8/P7785S9vU3v11Vdj8uTJ1epH9hlGbyCS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QSKy7c0330xbP/jgg2vUt2/fvrFs2bZjiTt72EY2nXHGGXHDDTdsU/vkk0/iiSeeiDFjxmTUa8mSJfHcc8+l1M8666waZdzVTZw4Me1w/7777lujvoMHD47GjRvHli1bPqvNmjUrli9f7jT6OmQYnW0kk8m18elJ6LuFfw2eGz4HAAAAAAAAAAAAAKBB2bRpU4waNaquY1ALJk6cGM2aNavrGHVi3Lhxaev9+vWrco/KTrUeOnRodSJVWWWnDqc7fXdn1zt16hR77713VnLVF9OmTUup7WhIv7rGjRsXH3300Ta1/Pz8Sh9GcOGFF6YMo99///3x+9//PoqKirKer67NmTMnNm7cmFJPd+r0rm7evHlpT3muC4ceemg0bty4Vvaq7KEeNR0o7tmzZ0ot3QnsuTJo0KA44ogjYsKECdvUv/3tb8fw4cOjXbt2VepTXl4eX//616OkpGSbet++feOkk07KVtxd0p133plSKywsjGOPPbZGfRs1ahS9evWKWbNmbVOfPn16nHrqqTXqTfUZRgcAAAAAAAAAAAAAAAB2KcuWLYt77703pd60adMYMWJElftsP+wWEdGyZcvYf//9axJvpw444IBo0aJFbNiwYZv666+/Xuk9CxYsiLVr16bUBw4cmO14de7VV19NqfXp0yfr+9xxxx0ptWOOOSb22muvtOvPOuusuPzyy7cZTF2/fn08+OCDcf7552c9X12r7P24O77nfvazn8Xdd99d1zEi4tO/6927d6+VvRYuXJhSa9y4cbRv375GfTt16pRS++ijj6KsrCwKCmpnrPVPf/pTHHroods8UOGDDz6I0aNHx/3337/Tz/Nr1qyJSy65JB577LFt6k2aNIm77ror8vLycpJ7V/DGG2/Eww8/nFI/8sgjo1WrVjXu37dv35Svz6+++qph9DrUcN/tAAAAAAAAAAAAAAAAwC6ntLQ0Pv/5z8fmzZtTrp199tnRsmXLKvf58MMPU+r9+vWLRCJR45w7kkgk4tBDD02pL168OMrKytLeU9mpwun67MqSyWTahwQcfPDBWd1nzZo18eijj6bUL7jggkrvadmyZZx22mkp9XQnBO8OGsp7riFLdxp8hw4datx3zz33TKlVVFTE6tWra9y7qvbdd9944oknolmzZtvUZ82aFX379o0LL7wwHnnkkVi8eHGUlJTE1q1bY8WK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49BDD02pv/XWW/HrX/+6xhn/029+85t48803U+oDBw6M4447rko9rrzyymjZsmVK/Xe/+13WBpjTKSkpiZKSkpz1/0/phg7Tfdyq6o477kipHXHEEbHXXntVu+d/OvHEE1P+TMrKyuKvf/3rTu/t2rVrdO7cOaX+j3/8IyvZnnrqqVi7dm1KvbIh+HSuu+66tPVLL700Vq1aVc1kO5fL3vx/J598ckptzZo18dxzz1WrX7r37hFHHBEtWrSoVr9MpRueXrBgQaxevbpGfV999dWU2q48jF5WVhbnnHNOPPHEEynX9t9//3jxxRdjzz33rINk6T/fDxgwoA6S8G+G0QEAAAAAAAAAAAAAAIBdUp8+feLUU09Nqf/1r3+NefPmValHIpGIG264Ie21n/3sZ/Haa6/VJOJnZs2aFT/96U8z2j+ddu3apT1dvaKiIi688ML45JNPapQznRUrVsSRRx4ZK1asyHrvdI488siU2iuvvFKtXh988EHaIf3Pf/7z1eqXTpMmTeK0005Lqd95551Vuv/ss89Oqb3++usxderUGme7+eabU2pNmjRJO4BcmdGjR8eJJ56YUl++fHlccsklUVFRUaOM6bz88stp9yT7hg8fnvY09ptuuinjXtOnT4+ZM2em1L/4xS9WJ1q1HHbYYSm1ioqKeOyxx6rdc+7cufHWW2+l1AcNGlTtnnWpvLw8zjvvvHjkkUdSru27777xwgsvZO1hHZn68MMPU77WtG7dOu1DY6g9htEBAAAAAAAAAAAAAACAXdY111yTUisrK8vodPTRo0fHRRddlFLfvHlznHjiiTFnzpwaZXz33XfjhBNOSHuy+Fe+8pU44ogjMup35ZVXxtChQ1PqCxYsiNGjR8eyZcuqGzXFs88+G/369YuXX345az13pl+/fikn8i5YsCAWL16cca90A+GNGzeOM844o9r50kk33D5nzpwqDdF/61vfivz8/JT6V7/61SgtLa12pr///e8xfvz4lPr555+f8YnOt912W7Rp0yal/sgjj8SFF14YW7durXbO/5RMJuPGG2+MkSNHxvLly7PSkx1LJBLxjW98I6X+/9q78zA7y/J+4N8nCQRCIAlhUZFVoYoVRQQRVwQRFBWsa6sIarGt2rq11tafWmut4m5bFRXFBcFdEdmVrbIJokiVgmBAlB2BsEqS5/fHGWhyznsmM2fOzJk58/lc11xk7ud97/c+hyQ8zMz3fU866aScdtppY+5Ta83b3va2jvpmm23WeMOFbk4//fSUUjo+3v3ud4/p/H322SellI76+973vp5/nzbdACRJnvWsZ/XUb5BWrVqVgw46KN/85jc71rbbbrucdtpp2WKLLQYwWUvT77lnPvOZmTdv3gCm4X7C6AAAAAAAAAAAAAAAAMCM9djHPjbPe97zOupf+cpXcvnll4+5zyc+8Yk8+tGP7qhfd911efKTn5zvfe97Pc13wgkn5MlPfnJjQPyxj31sPvrRj46759y5c/O1r32tI7CdJD//+c+zyy675IQTTuhp3vtdffXV+fM///Psu+++Ux4KLqVkv/3266iffvrp4+qzatWqfOlLX+qo77ffflm8eHGP0zXba6+9svnmm3fUx/J09K233roxrHvJJZfkBS94QeNNDNbmxBNPzGte85qO+ty5c/PmN7953P222GKLHHXUUY2h+a985St52tOelksvvXTcfVd39tln5wlPeELe+ta39i3czti89rWvbbxBwSGHHJKbbrppTD0OO+ywnHnmmR31t771rVlvvfUmPONYbbrpptl777076pdffnle85rXpNY6rn7/9V//la997Wsd9U022aTxOtNZrTWvfvWr89WvfrVjbdttt81pp52Whz70oQOY7P80hdGb/nvA1BJGBwAAAAAAAAAAAAAAAGa0pqejr1y5clxPR1+4cGGOPfbYxiDerbfemgMOOCAveMELctFFF42p3yWXXJKXvvSlefazn52bb765Y32rrbbK9773vSxYsGDMM65uyy23zHHHHdcYqr722mvz7Gc/O/vuu29OOeWUrFy5ckw9a60588wzc9BBB+XhD394jj766J5m64emJ5efdNJJ4+px8skn55prrumoNz3FfKLmzp3bGCg/5phjcs8996z1/I9//OONTyM+7rjjsvvuu+cHP/jBmOa48cYb85a3vCXPe97zctddd3Wsv/e9780jHvGIMfVqt99+++XTn/5041Onzz333DzmMY/JoYceml/84hdj7nnPPffkG9/4Rp7xjGfkSU96Un7yk5/0NBsTs+GGG+YDH/hAR/2qq67KXnvtlWXLlo16/oc+9KG8/e1v76hvv/32+bu/+7t+jTlm73vf+xp/n375y1/O8573vNx4441r7XHPPffkH/7hH/KGN7yhcf0d73hHNthggwnPOpXe8IY35Mgjj+yoL1iwIP/+7/+e3//+9zn33HMn9DHW/0Y2qbXmlFNOWaO2zjrrNN5whqlVxnsXB2D6KKU8McnZq9fOPvvsPPGJTxzQRAAAAAAAAAAAAAAA9GrZsmUdT79df/31s8022wxmIOizd7/73fmXf/mXjnq/8k3Pfe5zc9xxx61Rmzt3bn75y19mhx12GHOfK664Invvvfeo4cuddtopz3zmM7PTTjtliy22yPrrr5+777471157bX7xi1/k1FNPzU9/+tOu52+33XY59dRTs+222455rm5+/vOfr/Xp5Ztttlme/vSnZ5dddsm2226bpUuXZr311ss999yTW265JVdccUV++tOf5swzzxy1z29+85sp+ztpxYoVeehDH5rrr7/+gdpGG22UG264IfPnzx9Tjxe/+MX5xje+sUZtww03zA033DApT2o+99xzG3M9Rx111JgC8D/+8Y/z9Kc/PStWrGhcf9jDHpa99toru+22WzbddNMsWbLkgX+Hv/nNb3LaaaflrLPO6vok9ec85zn5/ve/3xjSHY+vfOUredWrXpX77ruv6zE77LBDnvrUp2annXbK1ltvnY022ijrrrtu7rzzzlx//fW5/PLLc+655+bss8/OHXfc0dhj6623XmsImv468MAD893vfrejvsEGG+R1r3tdXvjCF2bHHXfM/Pnzc+211+bMM8/Mf/zHf+S8887rOGfdddfNj3/84zz+8Y8f1wynn3569txzz476u971rrz73e8ec5/Xve51+eQnP9m4tmDBgrziFa/Ivvvum1122SVLly7NvHnzcsstt+SXv/xlfvjDH+aII45Y4++f1T3+8Y/Pj3/846y77rpjnufII4/MIYccMubjx2Osf1a22WabXHXVVZMyw3hnaXLOOedkjz32WKN2wAEH5Dvf+U4fJhubqdyPN73eJHvUWs/p+8UmaN6gBwAAAAAAAAAAAAAAAACYqHe+850dYfSVK1fmPe95T77yla+Muc/DHvawXHDBBXnZy17W8YTW+1188cW5+OKLe5pzn332ydFHH52NN964p/PbPeYxj8lFF12Ul7/85fnhD3/YeMwNN9yQr3/96/n617/e83UOOOCAbLLJJj2fP17z5s3Ly172snzsYx97oHb77bfnlFNOyf7777/W82+55ZYce+yxHfUDDzxwUoLoSbL77rtnu+22y5VXXrlG/Qtf+MKYwuhPetKT8oMf/CAve9nLcsstt3SsX3HFFbniiivymc98ZtyzveQlL8nnP//5CQfRk+TlL395dthhh7z0pS/Nb37zm8ZjLrvsslx22WU9X2P+/Pk56KCDej6f3nzxi1/MXnvtlQsuuGCN+p133pnDDjsshx122Jj6zJkzJ1/4whfGHUTvp0984hP5/e9/3xiuv+uuu3L44Yfn8MMPH3ff7bffPscff/y4guiMzbe+9a2Omr8Hpoc5gx4AAAAAAAAAAAAAAAAAYKJ23XXX7Lfffh31o48+Opdeeum4ei1dujQnnXRSPvvZz/YtgL3JJpvkc5/7XE488cS+BdHv96AHPSinnHJKvvSlL2WLLbboa+8nP/nJOfvss/Od73wnCxcu7GvvtTn00EM7wtNHH330mM496qijcu+993bUxxIKn4iXvexlHbUf/ehHufrqq8d0/j777JMLLrggu+22W1/mWX/99fPBD34wxxxzTBYsWNCXnkmy22675ZJLLsk73vGOvvadM2dODjrooFx22WV5z3ve07e+jM1GG22Uk08+OXvvvXfPPTbYYIMcc8wxk/5nbW3mzp2br33ta3nLW96SOXP6E6Xdb7/9csYZZ2TTTTftSz/+z6pVqzpumPKQhzxkTDcfYfIJowMAAAAAAAAAAAAAAABD4V3veldHbdWqVT2FWkspec1rXpNly5blYx/7WB71qEf1NNMjH/nIfOQjH8myZcvy6le/ui9Ppm5SSskrXvGKXHnllTnyyCPzlKc8pecA5uabb543velNueiii3LWWWfliU98Yp+nHZtHPvKR2Xfffdeofetb38rNN9+81nM///nPd9Q222yzCYVsx6IpgLtq1aoceeSRY+6x7bbb5rzzzsvxxx+fpz71qT3NsXjx4vzTP/1Trrrqqrz1rW/tqcfaLFiwIP/6r/+aq6++Ov/2b/+WRzziET33etSjHpX3v//9ufrqq/PFL34xW221VR8nZTyWLFmSE088MR/96EezaNGicZ27995758ILL8yLXvSiSZpufNZdd9186EMfyhlnnJG99tqr579/d9xxx3zhC1/I8ccfnwc/+MF9npIkOeGEE/Lb3/52jdrrX//6rLPOOgOaiNWVWuugZwB6VEp5YpKzV6+dffbZA9vgAwAAAAAAAAAAAADQu2XLluXuu+9eo7b++utnm222GcxA0GfXXHNNrrnmmo767rvv3tfrXHjhhbnvvvvWqM2dOze77rrrhHtfcsklOe2003Luuefm8ssvz9VXX53ly5fnnnvuyfz587Phhhtmq622yvbbb58nPOEJecYznpFHP/rRE75ur6677rqcdtppOe+88/LLX/4yy5Yty0033ZQ777wzq1atyuLFi7N48eIsXbo0O+64Y3bdddfsuuuu2XnnnTN37tyBzb26U089Nc985jPXqH34wx/Om9/85q7n3HHHHfnQhz7UUX/Uox41JSHZD3/4w1m+fPkatS233DKvfvWre+r329/+NmeddVbOOuusXHzxxbn55ptzyy235NZbb838+fOz8cYbZ8mSJXnoQx+aPfbYI0996lOz6667Zv78+f14OePyq1/9KmeeeWbOP//8XH755bnqqqvyhz/8IXfffXfmzp2bJUuWZPHixdlss83y2Mc+Nrvuumt222237LDDDlM+K2u3fPnyfOlLX8p3v/vdnHPOObnzzjvXWC+lZLvttsuznvWsvPKVr8xuu+02oEnH5rLLLssxxxyTc889N+eff37XG1ssWLAgO++8c3bbbbc8//nPz9Oe9rQJX/vGG2/MFVdcMeE+TebPn5+dd955UnpPlec///k59thjH/h8wYIF+e1vf5uNN954SueYyv34Oeeckz322KO9vEet9Zy+X2yChNFhBhNGBwAAAAAAAAAAAAAYHsLoAM122223/OQnP3ng8+233z6XXnppz09+B8av1pprrrkmt9xyS+67774sXLgwW265ZTbYYINBj9az2267LbfeemtuvfXWrFy5MosWLcrixYuzZMkSf79MoauuuioPe9jDsnLlygdqb3rTm/KRj3xkymcRRm82b9ADAAAAAAAAAAAAAAAAAEA3733ve/OsZz3rgc8vv/zyfPvb384LX/jCAU4Fs0spJVtuuWW23HLLQY/SN4sWLcqiRYuy9dZbD3qUWe1DH/rQGkH0hQsX5u1vf/sAJ6KdWzMAAAAAAAAAAAAAAAAAMG3ts88+eepTn7pG7f3vf/+ApgGgX2688cYcccQRa9Te+MY3ZtNNNx3QRDQRRgcAAAAAAAAAAAAAAABgWvvABz6QUsoDn1944YU58cQTBzgRABP1kY98JHffffcDn2+66aZ561vf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AAAAAAAAAAAAAEAHYXQAAAAAAAAAAAAAAAAAAAA6CKMDAAAAAAAAAAAAAAAAAADQQRgdAAAAAAAAAAAAAAAAAACADsLoAAAAAAAAAAAAAAAAAAAAdBBGBwAAAAAAAAAAAAAAAAAAoIMwOgAAAAAAAAAAAAAAAAAAAB2E0QEAAAAAAAAAAAAAAAAAAOggjA4AAAAAAAAAAAAAAAAAAEAHYXQAAAAAAAAAAAAAAAAAAAA6CKMDAAAAAAAAAAAAAAAAAADQQRgdAAAAAAAAAAAAAAAAAACADsLoAAAAAAAAAAAAAAAAAAAAdBBGBwAAAAAAAAAAAAAAAAAAoIMwOgAAAAAAAAAAAAAAAAAAAB2E0QEAAAAAAAAAAAAAAAAAAOggjA4AAAAAAAAAAAAAAAAAAEAHYXQAAAAAAAAAAAAAAAAAAAA6CKMDAAAAAAAAAAAAAAAAAADQQRgdAAAAAAAAAAAAAAAAAACADsLoAAAAAAAAAAAAAAAAAAAAdBBGBwAAAAAAAAAAAAAAAAAAoIMwOgAAAAAAAAAAAAAAAAAAAB2E0QEAAAAAAAAAAAAAAAAAAOggjA4AAAAAAAAAAAAAAAAAAECH/w9bDqTvg4B4ZAAAAABJRU5ErkJggg==" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": { + "scrolled": false + } + }, + { + "cell_type": "markdown", + "source": [ + "## Print the confusion matrix and performance metrics for multiple thresholds" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 4, + "source": [ + "cm = onc_calc_cm(\n", + " results.y, \n", + " results.score, \n", + " range_probas=[.10,.20, .30, .40, .50])\n", + "cm.to_csv('./results/2021_mlp_confusion_matrix.csv')\n", + "cm" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " threshold sensitivity specificity likelihood_ratio_neg \\\n", + "0.1 0.1 0.987839 0.201204 0.0604413 \n", + "0.2 0.2 0.949763 0.399753 0.12567 \n", + "0.3 0.3 0.894631 0.540735 0.194864 \n", + "0.4 0.4 0.822985 0.651134 0.271856 \n", + "0.5 0.5 0.726824 0.746807 0.365792 \n", + "\n", + " likelihood_ratio_pos tp fp tn fn total_survived \\\n", + "0.1 1.23666 25425 255269 64298 313 319567 \n", + "0.2 1.58229 24445 191819 127748 1293 319567 \n", + "0.3 1.94796 23026 146766 172801 2712 319567 \n", + "0.4 2.35903 21182 111486 208081 4556 319567 \n", + "0.5 2.87064 18707 80912 238655 7031 319567 \n", + "\n", + " total_deceased \n", + "0.1 25738 \n", + "0.2 25738 \n", + "0.3 25738 \n", + "0.4 25738 \n", + "0.5 25738 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
thresholdsensitivityspecificitylikelihood_ratio_neglikelihood_ratio_postpfptnfntotal_survivedtotal_deceased
0.10.10.9878390.2012040.06044131.23666254252552696429831331956725738
0.20.20.9497630.3997530.125671.5822924445191819127748129331956725738
0.30.30.8946310.5407350.1948641.9479623026146766172801271231956725738
0.40.40.8229850.6511340.2718562.3590321182111486208081455631956725738
0.50.50.7268240.7468070.3657922.870641870780912238655703131956725738
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 4 + } + ], + "metadata": {} + } + ], + "metadata": { + "interpreter": { + "hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49" + }, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/multilayer_perceptron/6_mlp_fairness_assessment.ipynb b/multilayer_perceptron/6_mlp_fairness_assessment.ipynb new file mode 100644 index 0000000..506f12d --- /dev/null +++ b/multilayer_perceptron/6_mlp_fairness_assessment.ipynb @@ -0,0 +1,947 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Calculate a fairness assessment of the multilayer perceptron model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import pickle\n", + "\n", + "import sys\n", + "#path to the functions folder\n", + "sys.path.append('../onc_functions')\n", + "\n", + "from fairness import get_fairness_assessment\n", + "print('python-' + sys.version)\n", + "\n", + "import datetime\n", + "dte = datetime.datetime.now()\n", + "dte = dte.strftime(\"%Y\")\n", + "print(dte)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.9.5 (v3.9.5:0a7dcbdb13, May 3 2021, 13:17:02) \n", + "[Clang 6.0 (clang-600.0.57)]\n", + "2021\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [ + "import psycopg2\n", + "from sqlalchemy import create_engine\n", + "\n", + "con = create_engine('postgresql://username:password@location/dbname')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "## Import only the columns we want to look at in this assessment" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [ + "df = pd.read_sql_query('''SELECT usrds_id, died_in_90, inc_age, sex, dialtyp, race, hispanic, subset FROM medxpreesrd;''', con)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "## Save these selected columns" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [ + "with open('complete_fair1.pickle', 'wb') as picklefile: \n", + " pickle.dump(df, picklefile)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "## Load fairness columns and model results" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 5, + "source": [ + "with open('complete_fair1.pickle', 'rb') as f:\n", + " dataset = pickle.load(f)\n", + "dataset.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset \\\n", + "0 2969676.0 0.0 72.0 2.0 1.0 2.0 2.0 8 \n", + "1 2969869.0 1.0 73.0 2.0 1.0 2.0 2.0 9 \n", + "2 2970021.0 0.0 55.0 2.0 1.0 1.0 1.0 8 \n", + "3 2970067.0 0.0 72.0 1.0 1.0 1.0 2.0 9 \n", + "4 2970686.0 0.0 49.0 2.0 1.0 2.0 2.0 8 \n", + "\n", + " impnum \n", + "0 1 \n", + "1 1 \n", + "2 1 \n", + "3 1 \n", + "4 1 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubsetimpnum
02969676.00.072.02.01.02.02.081
12969869.01.073.02.01.02.02.091
22970021.00.055.02.01.01.01.081
32970067.00.072.01.01.01.02.091
42970686.00.049.02.01.02.02.081
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 5 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 6, + "source": [ + "with open('./results/2021_final_MLP_model_test_pred_proba_pooled.pickle','rb') as f: \n", + " proba = pickle.load(f)\n", + "proba.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " imp1 imp2 imp3 imp4 imp5 score std_ \\\n", + "0 0.677572 0.764768 0.582416 0.796379 0.646979 0.693623 0.078001 \n", + "1 0.657155 0.718089 0.527093 0.748711 0.641911 0.658592 0.076464 \n", + "2 0.457672 0.350533 0.513291 0.560138 0.505401 0.477407 0.071277 \n", + "3 0.515523 0.605403 0.402248 0.716361 0.562594 0.560426 0.103325 \n", + "4 0.165916 0.199461 0.176441 0.313378 0.225053 0.216050 0.052747 \n", + "\n", + " usrds_id died_in_90 subset \n", + "0 31089.0 1.0 9 \n", + "1 34521.0 0.0 8 \n", + "2 46751.0 0.0 8 \n", + "3 50506.0 0.0 9 \n", + "4 54985.0 0.0 8 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
imp1imp2imp3imp4imp5scorestd_usrds_iddied_in_90subset
00.6775720.7647680.5824160.7963790.6469790.6936230.07800131089.01.09
10.6571550.7180890.5270930.7487110.6419110.6585920.07646434521.00.08
20.4576720.3505330.5132910.5601380.5054010.4774070.07127746751.00.08
30.5155230.6054030.4022480.7163610.5625940.5604260.10332550506.00.09
40.1659160.1994610.1764410.3133780.2250530.2160500.05274754985.00.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 6 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "## Merge the results with the fairness details" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 7, + "source": [ + "data = dataset.merge(proba, on=['usrds_id','subset','died_in_90'])\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset \\\n", + "0 2969676.0 0.0 72.0 2.0 1.0 2.0 2.0 8 \n", + "1 2969869.0 1.0 73.0 2.0 1.0 2.0 2.0 9 \n", + "2 2970021.0 0.0 55.0 2.0 1.0 1.0 1.0 8 \n", + "3 2970067.0 0.0 72.0 1.0 1.0 1.0 2.0 9 \n", + "4 2970686.0 0.0 49.0 2.0 1.0 2.0 2.0 8 \n", + "\n", + " impnum imp1 imp2 imp3 imp4 imp5 score \\\n", + "0 1 0.464458 0.536613 0.481625 0.516356 0.412390 0.482288 \n", + "1 1 0.513067 0.574948 0.510624 0.484547 0.526900 0.522017 \n", + "2 1 0.460098 0.527486 0.487378 0.472566 0.557690 0.501043 \n", + "3 1 0.054770 0.050509 0.049944 0.046526 0.054721 0.051294 \n", + "4 1 0.163485 0.193392 0.167893 0.117967 0.149734 0.158494 \n", + "\n", + " std_ \n", + "0 0.043164 \n", + "1 0.029797 \n", + "2 0.036283 \n", + "3 0.003130 \n", + "4 0.024699 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubsetimpnumimp1imp2imp3imp4imp5scorestd_
02969676.00.072.02.01.02.02.0810.4644580.5366130.4816250.5163560.4123900.4822880.043164
12969869.01.073.02.01.02.02.0910.5130670.5749480.5106240.4845470.5269000.5220170.029797
22970021.00.055.02.01.01.01.0810.4600980.5274860.4873780.4725660.5576900.5010430.036283
32970067.00.072.01.01.01.02.0910.0547700.0505090.0499440.0465260.0547210.0512940.003130
42970686.00.049.02.01.02.02.0810.1634850.1933920.1678930.1179670.1497340.1584940.024699
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 7 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + " # Fairness" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 8, + "source": [ + "fairness= get_fairness_assessment(data,\n", + " y_proba_col_name='score',\n", + " y_true_col_name='died_in_90')\n", + "fairness.head(39)" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Feature Value Count AUC TN FP FN TP\n", + "0 agegroup 1.0 4340 0.851780 4236 58 35 11\n", + "1 agegroup 2.0 12774 0.834839 12325 237 159 53\n", + "2 agegroup 3.0 26120 0.833624 24592 947 378 203\n", + "3 agegroup 4.0 53564 0.810153 47642 4107 1055 760\n", + "4 agegroup 5.0 85076 0.790628 68047 12705 1961 2363\n", + "5 agegroup 6.0 86140 0.768169 52807 25809 2032 5492\n", + "6 agegroup 7.0 62193 0.740282 25405 28520 1219 7049\n", + "7 agegroup 8.0 15098 0.720045 3601 8529 192 2776\n", + "8 sex 1.0 198347 0.818053 137712 45988 3930 10717\n", + "9 sex 2.0 146957 0.804818 100942 34924 3101 7990\n", + "10 dialtyp 1.0 310415 0.803432 208694 77650 6484 17587\n", + "11 dialtyp 2.0 15082 0.837490 14460 342 208 72\n", + "12 dialtyp 3.0 13295 0.849120 12739 285 187 84\n", + "13 dialtyp 4.0 77 0.989726 69 4 0 4\n", + "14 dialtyp 100.0 6436 0.753809 2693 2631 152 960\n", + "15 race 1.0 230577 0.803584 146754 64046 4636 15141\n", + "16 race 2.0 93560 0.815380 74295 14255 1975 3035\n", + "17 race 3.0 3225 0.807649 2744 353 60 68\n", + "18 race 4.0 12965 0.837525 10681 1707 240 337\n", + "19 race 5.0 3776 0.819267 3290 318 86 82\n", + "20 race 6.0 881 0.782887 614 206 21 40\n", + "21 race 9.0 321 0.766060 277 27 13 4\n", + "22 hispanic 1.0 51021 0.834179 42020 6502 992 1507\n", + "23 hispanic 2.0 292532 0.806653 195829 73743 6003 16957\n", + "24 hispanic 9.0 1752 0.766108 806 667 36 243" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FeatureValueCountAUCTNFPFNTP
0agegroup1.043400.8517804236583511
1agegroup2.0127740.8348391232523715953
2agegroup3.0261200.83362424592947378203
3agegroup4.0535640.8101534764241071055760
4agegroup5.0850760.790628680471270519612363
5agegroup6.0861400.768169528072580920325492
6agegroup7.0621930.740282254052852012197049
7agegroup8.0150980.720045360185291922776
8sex1.01983470.81805313771245988393010717
9sex2.01469570.8048181009423492431017990
10dialtyp1.03104150.80343220869477650648417587
11dialtyp2.0150820.8374901446034220872
12dialtyp3.0132950.8491201273928518784
13dialtyp4.0770.98972669404
14dialtyp100.064360.75380926932631152960
15race1.02305770.80358414675464046463615141
16race2.0935600.815380742951425519753035
17race3.032250.80764927443536068
18race4.0129650.837525106811707240337
19race5.037760.81926732903188682
20race6.08810.7828876142062140
21race9.03210.76606027727134
22hispanic1.0510210.8341794202065029921507
23hispanic2.02925320.80665319582973743600316957
24hispanic9.017520.76610880666736243
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 8 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 9, + "source": [ + "fairness.to_csv('./results/' + str(dte) + '_mlp_calibrated_fairness.csv')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "name": "python3", + "display_name": "Python 3.9.5 64-bit" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.5" + }, + "interpreter": { + "hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/multilayer_perceptron/7_mlp_risk_assess.ipynb b/multilayer_perceptron/7_mlp_risk_assess.ipynb new file mode 100644 index 0000000..24aac86 --- /dev/null +++ b/multilayer_perceptron/7_mlp_risk_assess.ipynb @@ -0,0 +1,690 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Calculate Risk categories from the multilayer perceptron model pooled results" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "!pip install --upgrade pip\n", + "!pip install pandas" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: pip in /usr/local/lib/python3.6/dist-packages (21.0.1)\n", + "Requirement already satisfied: pandas in /usr/local/lib/python3.6/dist-packages (1.1.5)\n", + "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas) (2021.1)\n", + "Requirement already satisfied: numpy>=1.15.4 in /usr/local/lib/python3.6/dist-packages (from pandas) (1.19.5)\n", + "Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.6/dist-packages (from pandas) (2.8.1)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/dist-packages (from python-dateutil>=2.7.3->pandas) (1.15.0)\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 3, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import pickle\n", + "\n", + "import sys\n", + "#path to the functions folder\n", + "sys.path.append('../onc_functions')\n", + "\n", + "from risk import get_risk_categories\n", + "\n", + "print('python-' + sys.version)\n", + "import datetime\n", + "dte = datetime.datetime.now()\n", + "dte = dte.strftime(\"%Y%m%d\")" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.9.5 (v3.9.5:0a7dcbdb13, May 3 2021, 13:17:02) \n", + "[Clang 6.0 (clang-600.0.57)]\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "# here we import the dataset we created for the fairness assessment in notebook 6\n", + "with open('complete_fair1.pickle','rb') as f: \n", + " details = pickle.load(f)\n", + "details.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset \\\n", + "0 2969676.0 0.0 72.0 2.0 1.0 2.0 2.0 8 \n", + "1 2969869.0 1.0 73.0 2.0 1.0 2.0 2.0 9 \n", + "2 2970021.0 0.0 55.0 2.0 1.0 1.0 1.0 8 \n", + "3 2970067.0 0.0 72.0 1.0 1.0 1.0 2.0 9 \n", + "4 2970686.0 0.0 49.0 2.0 1.0 2.0 2.0 8 \n", + "\n", + " impnum \n", + "0 1 \n", + "1 1 \n", + "2 1 \n", + "3 1 \n", + "4 1 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubsetimpnum
02969676.00.072.02.01.02.02.081
12969869.01.073.02.01.02.02.091
22970021.00.055.02.01.01.01.081
32970067.00.072.01.01.01.02.091
42970686.00.049.02.01.02.02.081
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 2 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 3, + "source": [ + "with open('./results/2021_final_MLP_model_test_pred_proba_pooled.pickle','rb') as f: \n", + " y_pred = pickle.load(f)\n", + "y_pred.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " imp1 imp2 imp3 imp4 imp5 score std_ \\\n", + "0 0.677572 0.764768 0.582416 0.796379 0.646979 0.693623 0.078001 \n", + "1 0.657155 0.718089 0.527093 0.748711 0.641911 0.658592 0.076464 \n", + "2 0.457672 0.350533 0.513291 0.560138 0.505401 0.477407 0.071277 \n", + "3 0.515523 0.605403 0.402248 0.716361 0.562594 0.560426 0.103325 \n", + "4 0.165916 0.199461 0.176441 0.313378 0.225053 0.216050 0.052747 \n", + "\n", + " usrds_id died_in_90 subset \n", + "0 31089.0 1.0 9 \n", + "1 34521.0 0.0 8 \n", + "2 46751.0 0.0 8 \n", + "3 50506.0 0.0 9 \n", + "4 54985.0 0.0 8 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
imp1imp2imp3imp4imp5scorestd_usrds_iddied_in_90subset
00.6775720.7647680.5824160.7963790.6469790.6936230.07800131089.01.09
10.6571550.7180890.5270930.7487110.6419110.6585920.07646434521.00.08
20.4576720.3505330.5132910.5601380.5054010.4774070.07127746751.00.08
30.5155230.6054030.4022480.7163610.5625940.5604260.10332550506.00.09
40.1659160.1994610.1764410.3133780.2250530.2160500.05274754985.00.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 3 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 4, + "source": [ + "data = details.merge(y_pred, on=['usrds_id','died_in_90','subset'])\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset \\\n", + "0 2969676.0 0.0 72.0 2.0 1.0 2.0 2.0 8 \n", + "1 2969869.0 1.0 73.0 2.0 1.0 2.0 2.0 9 \n", + "2 2970021.0 0.0 55.0 2.0 1.0 1.0 1.0 8 \n", + "3 2970067.0 0.0 72.0 1.0 1.0 1.0 2.0 9 \n", + "4 2970686.0 0.0 49.0 2.0 1.0 2.0 2.0 8 \n", + "\n", + " impnum imp1 imp2 imp3 imp4 imp5 score \\\n", + "0 1 0.464458 0.536613 0.481625 0.516356 0.412390 0.482288 \n", + "1 1 0.513067 0.574948 0.510624 0.484547 0.526900 0.522017 \n", + "2 1 0.460098 0.527486 0.487378 0.472566 0.557690 0.501043 \n", + "3 1 0.054770 0.050509 0.049944 0.046526 0.054721 0.051294 \n", + "4 1 0.163485 0.193392 0.167893 0.117967 0.149734 0.158494 \n", + "\n", + " std_ \n", + "0 0.043164 \n", + "1 0.029797 \n", + "2 0.036283 \n", + "3 0.003130 \n", + "4 0.024699 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubsetimpnumimp1imp2imp3imp4imp5scorestd_
02969676.00.072.02.01.02.02.0810.4644580.5366130.4816250.5163560.4123900.4822880.043164
12969869.01.073.02.01.02.02.0910.5130670.5749480.5106240.4845470.5269000.5220170.029797
22970021.00.055.02.01.01.01.0810.4600980.5274860.4873780.4725660.5576900.5010430.036283
32970067.00.072.01.01.01.02.0910.0547700.0505090.0499440.0465260.0547210.0512940.003130
42970686.00.049.02.01.02.02.0810.1634850.1933920.1678930.1179670.1497340.1584940.024699
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 4 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 5, + "source": [ + "risk_cat = get_risk_categories(data,\n", + " y_proba_col_name='score',\n", + " y_true_col_name='died_in_90')\n", + "risk_cat" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Risk Category Count Count Died in 90 Count Survived Percent Died in 90\n", + "0 0-0.09 57014 245.0 56769.0 0.004297\n", + "1 0.1-0.19 66582 928.0 65654.0 0.013938\n", + "2 0.2-0.29 47796 1359.0 46437.0 0.028433\n", + "3 0.3-0.39 37752 1791.0 35961.0 0.047441\n", + "4 0.4-0.49 33388 2423.0 30965.0 0.072571\n", + "5 0.5-0.59 30980 3234.0 27746.0 0.104390\n", + "6 0.6-0.69 30237 4652.0 25585.0 0.153851\n", + "7 0.7-0.79 29631 6861.0 22770.0 0.231548\n", + "8 0.8-0.89 11472 4036.0 7436.0 0.351813\n", + "9 0.9-0.99 453 209.0 244.0 0.461369" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Risk CategoryCountCount Died in 90Count SurvivedPercent Died in 90
00-0.0957014245.056769.00.004297
10.1-0.1966582928.065654.00.013938
20.2-0.29477961359.046437.00.028433
30.3-0.39377521791.035961.00.047441
40.4-0.49333882423.030965.00.072571
50.5-0.59309803234.027746.00.104390
60.6-0.69302374652.025585.00.153851
70.7-0.79296316861.022770.00.231548
80.8-0.89114724036.07436.00.351813
90.9-0.99453209.0244.00.461369
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 5 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 6, + "source": [ + "risk_cat.to_csv('./results/' + str(dte) + '_mlp_risk_cat.csv')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "name": "python3", + "display_name": "Python 3.9.5 64-bit" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.5" + }, + "interpreter": { + "hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/multilayer_perceptron/__init__.py b/multilayer_perceptron/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/multilayer_perceptron/calibration_mlp.ipynb b/multilayer_perceptron/calibration_mlp.ipynb new file mode 100644 index 0000000..8ac7013 --- /dev/null +++ b/multilayer_perceptron/calibration_mlp.ipynb @@ -0,0 +1,402 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# optional notebook to plot and calibrate the results from the multilayer perceptron model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 5, + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import pickle\n", + "\n", + "import sys\n", + "#path to the functions folder\n", + "sys.path.append('../onc_functions')\n", + "\n", + "# import custom functions\n", + "from plot_functions import onc_plot_calibration_curve, onc_plot_risk, onc_plot_roc, onc_plot_roc_no_threshold\n", + "from calibrate_onc import calibrate_onc\n", + "\n", + "import sys\n", + "print('python-' + sys.version)\n", + "print('pandas-' + pd.__version__)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n", + "pandas-1.1.5\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "#import the pooled results from the MLP model\n", + "with open('./results/2021_final_MLP_model_test_pred_proba_pooled.pickle', 'rb') as f:\n", + " data = pickle.load(f)\n", + "\n", + "#keep the columns we need for calibration\n", + "data = data.loc[:,['score','died_in_90','subset','usrds_id']]\n", + "data = data.rename(columns={'died_in_90':'y'})\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y subset usrds_id\n", + "0 0.693623 1.0 9 31089.0\n", + "1 0.658592 0.0 8 34521.0\n", + "2 0.477407 0.0 8 46751.0\n", + "3 0.560426 0.0 9 50506.0\n", + "4 0.216050 0.0 8 54985.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreysubsetusrds_id
00.6936231.0931089.0
10.6585920.0834521.0
20.4774070.0846751.0
30.5604260.0950506.0
40.2160500.0854985.0
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 2 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Plot original model's calibration cuve" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 3, + "source": [ + "onc_plot_calibration_curve(\n", + " y_true=data.y, \n", + " y_proba=data.score, \n", + " label='Multilayer Perceptron',\n", + " filename='./results/mlp_orig_calibration')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAnAAAAJNCAYAAACx90jQAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAABvgklEQVR4nO3deZyN9f//8cdrZuyyNGQtW/Y9Y4lChKiQJYpPlPZF2utTn6jUT9Km0B5KKHxKqg8iWhBDk0KLtcgWwmAwM+/fH+eY72CWgznnOmfmeb/d5uZc73MtrzOXGU/v63pfb3POISIiIiKRI8rrAkRERETk1CjAiYiIiEQYBTgRERGRCKMAJyIiIhJhFOBEREREIowCnIiIiEiEifG6gFArVaqUq1y5stdliIiIiGRr+fLlfzvnSp/YnucCXOXKlYmPj/e6DBEREZFsmdmmjNp1CVVEREQkwijAiYiIiEQYBTgRERGRCKMAJyIiIhJhFOBEREREIowCnIiIiEiEUYATERERiTAKcCIiIiIRRgFOREREJMIowImIiIhEmLANcGb2jpntMLOfM3nfzGy0ma01s5VmdkGoaxQRERHxQtgGOGA8cFkW73cGqvu/bgbGhaAmEREREc+FbYBzzn0N7M5ilW7AROezBChhZuVCU52IiIiId8I2wAWgAvBnuuXN/jYRERGRXC2SA1zAzOxmM4s3s/idO3d6XY6IiIhEoF27drFu3TqvywAiO8BtAc5Nt1zR33YS59wbzrk451xc6dKlQ1KciIiI5B6pqam0adOG6667Duec1+UQ43UBZ2AmcKeZTQGaA3udc1s9rklERERykT///JOKFSsSFRXFCy+8QPny5TEzr8sK3x44M5sMLAZqmtlmMxtkZrea2a3+VT4H1gNrgTeB2z0qVURERHKhFStWUKNGDSZNmgRAx44dqVevnsdV+YRtD5xz7pps3nfAHSEqR0RERPKIAwcOUKRIERo2bMi9995Lu3btvC7pJGHbAyciIiISaiNHjqR+/fokJiYSHR3N008/Tfny5b0u6yRh2wMnIiIiEgrOOZxzREVF0apVK7ZsyXBMZFhRgBMREZE86/Dhw/Tp04e4uDgee+wxWrVqRatWrbwuK1u6hCoiIiJ5VoECBShZsiTFihXzupRTogAnIiIiecovv/xChw4d0i6VvvvuuwwePNjjqk6NApyIiIjkKfny5eP3338Pm1kVTocCnIiIiOR6c+bMYejQoQBUq1aNtWvX0rp1a4+rOn0KcCIiIpLrffnll3z44YccOHAAgJiYyB7HqQAnIiIiuY5zjrfffpuEhAQAnnjiCRISEihSpIi3heUQBTgRERHJdfbu3cu///1v3nrrLQAKFSpEgQIFPK4q5yjAiYiISK5w+PBhJkyYgHOOEiVKsHjxYkaPHu11WUGhACciIiK5wpQpUxg4cCDffPMNAFWrViUqKndGndz5qURERCRP2LNnT9p9bv3792fhwoURPbo0UJE9BENERETytF69erFp0yZ++eUXYmJi8kR4AwU4ERERiTCbNm2iXLly5M+fn5EjRxIdHR3xjwU5VbqEKiIiIhHjjz/+oE6dOowaNQqAJk2a0KhRI2+L8oACnIiIiIS9PXv2AHDeeefx1FNP8a9//cvjirylACciIiJh7c0336Rq1appk8/fe++9nHvuuR5X5S0FOBEREQlLycnJALRr147+/ftTtGhRjysKH+ac87qGkIqLi3Px8fFelyEiIiKZcM5x7bXXUrRoUd58802vy/GUmS13zsWd2J63hmyIiIhI2DMzatSoQcGCBXHOYWZelxR2dAlVREREPLdx40batGlz3OTzjzzyiMJbJhTgRERExHPFixdn165d/PXXX16XEhEU4ERERMQTX331FbfccgvOOUqWLMnKlSvp0qWL12VFBAU4ERER8cSaNWuYN28e27dvB8i1E88Hg75TIiIiEhLOOSZOnMicOXMAuPXWW/npp58oW7asx5VFHgU4ERERCYnk5GRGjhzJO++8A/h63AoVKuRxVZFJAU5ERESC5ujRo4wdO5YjR46QL18+5syZwwcffOB1WRFPAU5ERESC5uuvv+aOO+7gk08+AaB8+fK61y0H6DsoIiIiOWrv3r0sXLgQgPbt27N06VJ69+7tcVW5iwKciIiI5Kg77riD7t27k5iYCEDTpk09rij3UYATERGRM/bnn3+ye/duAJ566inmzp2ryeeDSAFOREREzsjevXtp0KAB//73vwGoUqUKcXEnzb8uOUiT2YuIiMhp2b59O2XKlKF48eK89NJLtG7d2uuS8gz1wImIiMgpmz59OpUqVeKHH34AYMCAAVSpUsXjqvIOBTgREREJWFJSEgDt2rXjtttuo1KlSh5XlDcpwImIiEhAbrvtNq688sq0yedffPFFzj77bK/LypN0D5yIiIhkyjmHmQFwwQUXULZsWVJSUoiJUYTwknrgREREJEPbtm2jTZs2zJo1C4CbbrqJoUOHKryFAQU4ERERydCxy6MHDx70uBI5kQKciIiIpFm8eDE9evTgyJEj5M+fn4ULF3L11Vd7XZacQAFORERE0uzZs4cffviBjRs3AqTd/ybhRRexRURE8jDnHFOnTuXw4cMMGDCALl268Msvv1CgQAGvS5MsqAdOREQkj3v33Xd57733cM4BKLxFAAU4ERGRPCY5OZmXXnqJ3bt3Y2ZMnjyZ2bNn63JpBFGAExERyWN+/fVX7r//fiZNmgT4RptGR0d7XJWcCt0DJyIikgfs37+fr776iq5du1K3bl1+/PFH6tSp43VZcprUAyciIpIHPPXUU/Tq1YstW7YAULduXV0yjWAKcCIiIrnUX3/9xaZNmwB45JFHWLhwIRUqVPC4KskJCnAiIiK50NGjR2nRogV33HEHACVLluTCCy/0uCrJKboHTkREJBf5448/OO+888iXLx9jx46ldu3aXpckQaAeOBERkVxiwYIFVKtWLW3y+SuuuIJq1ap5XJUEgwKciIhIhEtMTASgZcuWPPjgg7Ro0cLjiiTYFOBEREQi2COPPELz5s05fPgw+fPn5+mnn6ZUqVJelyVBpnvgREREIoxzDuccUVFRtG7dWg/hzYPCtgfOzC4zs1/NbK2ZPZzB++eZ2Vdm9oOZrTSzLl7UKSIiEkr79u2jQ4cOjB07FoDOnTszfPhwzV+ax4RlgDOzaGAM0BmoA1xjZic+Lvox4EPnXGOgLzA2tFWKiIiE3llnnUVsbCxFixb1uhTxUFgGOKAZsNY5t945dwSYAnQ7YR0HFPO/Lg78FcL6REREQmbFihW0a9eOXbt2YWZMnTqVgQMHel2WeChcA1wF4M90y5v9bekNA/qb2Wbgc+Cu0JQmIiISWjExMWzatCltVgWRcA1wgbgGGO+cqwh0Ad4zsww/j5ndbGbxZha/c+fOkBYpIiJyOqZPn86IESMAaNCgAb/++isXXHCBx1VJuAjXALcFODfdckV/W3qDgA8BnHOLgYJAhuOmnXNvOOfinHNxpUuXDkK5IiIiOWv27NnMmDGDo0ePAr5eOJFjwjXALQOqm1kVM8uPb5DCzBPW+QNoD2BmtfEFOHWviYhIREpJSeHll1/m999/B+DFF19k0aJF5MuXz+PKJByFZYBzziUDdwKzgTX4RpuuMrMnzayrf7X7gJvM7EdgMjDQOee8qVhEROTM7Ny5k8cff5z33nsPgCJFiqjXTTJleS3zxMXFufj4eK/LEBER4cCBA0yfPp3rrrsOgPXr11OlShXMzOPKJFyY2XLnXNyJ7WHZAyciIpIXvPnmmwwYMICVK1cCULVqVYU3CYgCnIiISAht376dn3/+GYDbb7+dxYsX06BBA4+rkkiji+siIiIh4pyjc+fOOOdYsWIF+fPnp0WLFl6XJRFIAU5ERCTI1q5dS5UqVYiOjubVV18lNjZWl0rljOgSqoiISBD9/PPP1KlTh9dffx2Ali1bUrNmTY+rkkinACciIhIEu3fvBqBu3boMHz6cXr16eVyR5CYKcCIiIjnsueeeo3bt2uzevRsz48EHH+Scc87xuizJRXQPnIiISA5wzpGcnEy+fPno1KkTf//9NwULFvS6LMmlFOBERETOUHJyMl27dqVOnTqMGjWKBg0a6NEgElS6hCoiInKajs1mFBMTQ+3atalatarHFUleoQAnIiJyGtasWUPLli3TJp9//vnnuf322z2uSvIKBTgREZHTULx4cfbt28fWrVu9LkXyIAU4ERGRAM2aNYvBgwcDUL58eX766Sdat27tcVWSFynAiYiIBGjlypUsWLCAvXv3AhAVpX9GxRv6myciIpKJlJQUxo4dy7fffgvAAw88wPLlyylevLjHlUlepwAnIiKSiaSkJEaOHMkHH3wAQL58+ciXL5/HVYkowImIiBzn0KFDvPLKK6SkpFCkSBEWLVrEmDFjvC5L5DgKcCIiIul8/vnnDB48mPnz5wO+wQpm5nFVIsdTgBMRkTxv586dfPfddwD06NGD+Ph4OnTo4HFVIpnTVFoiIpLnDRw4kB9//JH169eTP39+mjRp4nVJIllSgBMRkTzp999/p3z58hQpUoRRo0aRmppK/vz5vS5LJCC6hCoiInnO1q1badiwIcOHDwegdu3a1K1b1+OqRAKnHjgREckztm3bRtmyZSlXrhyvvPIKXbp08bokkdOiHjgREckT3n77bapWrZo2+fygQYMoV66cx1WJnB71wImISK7lnCMpKYlChQrRpUsXfvvtN4U2yRXMOed1DSEVFxfn4uPjvS5DRESC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2rVrAbjmmmsoXry4x1WJyKmaOXMmHTt2pGzZsixatEjhLY/TjS8iuVBqaioHDhzgrLPOok+fPhw+fFiXSkUi2DvvvMNNN91EXFwcn332GaVKlfK6JPGYeuBEchnnHB07duT6668HoFy5cjz00EPkz5/f48pE5FQ55xgxYgSDBg2iQ4cOzJs3T+FNAPXAieQaycnJxMTEYGZ0796dYsWK4ZzTM6FEIlRqair33XcfL730Etdccw3jx4/Xf8QkjXrgRHKBX375hTp16vD1118DcOedd3LdddcpvIlEqCNHjnDdddfx0ksvcffdd/P+++8rvMlx1AMnkguce+65VK5cmejoaK9LEZEzdODAAXr27Mns2bN55plnePjhh/WfMTmJeuBEItS0adO4/PLLSUlJoUiRIsyZM0fTYIlEuF27dtG+fXvmzp3Lm2++ySOPPKLwJhlSD5xIhDp69Ch79uxh9+7dlC5d2utyROQM/fHHH3Tq1IkNGzYwffp0unfv7nVJEsYsg/nmc7W4uDgXHx/vdRkipyw5OZnnnnuOKlWq0LdvX5xzOOeIilJHukikW716NZ06dWL//v3MnDmT1q1be12ShAkzW+6cizuxXb/5RSKEmTFz5kwWLFiQtqzwJhL5Fi9ezEUXXURycjJff/21wpsERL/9RcLY3r17+fe//01iYiLR0dHMnTuX1157zeuyRCSHfP7557Rv357Y2FgWLVpEgwYNvC5JIoQCnEgYW7VqFSNHjuTLL78EoGjRoh5XJCI55b333qNr167Url2b7777jipVqnhdkkQQBTiRMPPnn38ybdo0AFq2bMn69et1M7NILvP8889z3XXX0aZNG7766ivOOeccr0uSCKMAJxJmHnvsMW655RYSExMBNIepSC7inOPBBx/k/vvvp3fv3nz++ecUK1bM67IkAinAiYSBhIQE/vrrLwCeffZZ4uPjdblUJJdJTk7mhhtu4LnnnuP2229n8uTJFChQwOuyJEIpwIl47J9//uHiiy/mP//5DwBly5bVvTAiuczBgwe56qqrGD9+PMOGDePVV1/VzClyRvQgXxGP/Pzzz9SrV48SJUrw0Ucf0bx5c69LEpEg2LNnD1deeSWLFi1i3Lhx3HrrrV6XJLmAeuBEPDBp0iTq16/PokWLALjssssoWbKkx1WJSE7bsmULF198McuWLePDDz9UeJMcox44kRBJTU1l9+7dlCpViu7duzNq1CiaNGnidVkiEiS//vorHTt2ZM+ePXzxxRe0a9fO65IkF1GAEwmRvn37snHjRhYvXkyRIkW47777vC5JRIJk2bJldOnShaioKBYsWMAFF1zgdUmSyyjAiQTRkSNHyJcvH2ZG37592bNnD2bmdVkiEkRz5syhR48enHPOOcyZM4fzzz/f65IkF9I9cCJBsmXLFho2bMikSZMA6NGjB4MGDdL8pSK52OTJk7niiis4//zz+e677xTeJGj0L4lIDnPOAVCuXDkaN25M2bJlPa5IREJh9OjRXHvttVx44YUsXLiQcuXKeV2S5GIKcCI56PPPP6d58+YkJiYSFRXFBx98wKWXXup1WSISRM45HnvsMe6++266d+/O7NmzKV68uNdlSS6ne+BEclDx4sWJiori77//1kwKIrlQ2bJl2b59e4bv3XjjjYwbN46YGP3TKsFnxy735BVxcXEuPj7e6zIkl3DO8fzzzwNw//33p7VpoIJI7pTVz3Zqaqp+9iXHmdly51zcie36b4LIGTAzli1bBvxfcNMvcJG8ST/7Ekq6B07kFO3fv58HHniALVu2ADBhwgSmTJmiX94iIhIyCnAip2jHjh2MHTuW//3vfwAULFhQ4U0kl0tKSkq7XUIkHOgSqkgAtmzZwqxZs7jllluoVq0aGzZs4JxzzvG6LBEJsuTkZCZOnMjQoUPZvHmz1+WIpFEPnEgAxo4dyz333MNff/0FoPAmkss55/jvf/9LgwYNGDRoEOXLl2f+/PmUKVMmw/UzaxcJFgU4kUz8/PPPrFq1CoBHH32UlStXUr58eY+rEpFgW7hwIS1btqRHjx6kpqYyffp0lixZwiWXXMK2bdtwzp30tW3bNq/LljxGAU4kA0ePHqVz58488MADABQuXFhT4ojkcgkJCXTu3Jm2bdvy559/8tZbb/Hzzz/To0cP3ecqYUcBTiSdZcuW4ZwjX758TJ06lYkTJ3pdkogE2bp167j22mtp3Lgx33//Pc899xy///47gwYN0kN5JWwpwIn4ffnllzRr1oyPPvoIgJYtW1KqVCmPqxKRYNm+fTt33nkntWrV4uOPP+aRRx5h/fr13H///RQqVMjr8kSypP9aSJ7mnGPLli1UrFiRdu3aMXbsWLp27ep1WSISRPv27eO5557jxRdfJCkpiZtuuonHH39ck89LRFEPnORpd9xxB61atUqbfP62226jYMGCXpclIkGQlJTEiy++SNWqVRk+fDhXXHEFa9asYdy4cQpvEnHCNsCZ2WVm9quZrTWzhzN4/14zW21mK81snplV8qJOiTxHjhzhyJEjAPzrX//ikUceoXDhwh5XJSLBkpKSwvjx46lZsyb33nsvF1xwAfHx8UyZMoXq1at7XZ7IaQnLAGdm0cAYoDNQB7jGzOqcsNoPQJxzrgEwDRgZ2iolEu3bt48LLriAkSN9f10uvPBCbr31VqKiwvJHQUTOgHOOTz75hAYNGnD99ddzzjnn8OWXXzJnzhyaNGnidXkiZyRc/9VqBqx1zq13zh0BpgDd0q/gnPvKOXfQv7gEqBjiGiWCpKamAlCsWDE6duxI48aNPa5IRILpm2++4aKLLqJ79+4kJyfz0UcfsXTpUtq3b+91aSI5IlwDXAXgz3TLm/1tmRkEfBHUiiRiLVy4kLp166ZNPv/CCy9w+eWXe1yViATDypUrueKKK2jdujUbN27kjTfeYNWqVfTq1UvPcpNcJVwDXMDMrD8QBzyXxTo3m1m8mcXv3LkzdMVJWKhYsSKxsbHs27fP61JEJEg2bNjAv/71Lxo1asR3333HiBEj+P3337npppv0LDfJlcL1b/UW4Nx0yxX9bccxs0uBR4E2zrnDme3MOfcG8AZAXFycy9lSJRy9+uqrrF27lpdeeolq1arx7bffel2SiATBjh07GD58OK+99hrR0dE8+OCDPPTQQ5QsWdLr0kSCKlwD3DKguplVwRfc+gLXpl/BzBoDrwOXOed2hL5ECWd//vknv//+O0ePHiVfvnxelyMiOWzfvn08//zzPP/88yQlJTFo0CAef/xxKlTI6m4bkdwjLC+hOueSgTuB2cAa4EPn3Coze9LMjj1l9TmgKPCRmSWY2UyPypUwcPDgQR544AESEhIAePrpp5k1a5bCm0guc/jwYV5++WWqVavGk08+SefOnVm1ahWvv/66wpvkKeHaA4dz7nPg8xPaHk/3+tKQFyVh6/Dhw7z//vucc845NGrUSPe8iOQyKSkpTJo0iccff5xNmzbRrl07RowYQdOmTb0uTcQTYdkDJxKIbdu28cwzz+Cco2TJkqxZs4YHHnjA67JEJAc555g1axaNGjViwIABxMbGMmfOHObNm6fwJnmaApxErE8++YQnnniCn3/+GYASJUp4W5CI5KjvvvuOiy++mCuvvJKkpCSmTp3KsmXL6NChg9eliXhOAU4iypo1a9JGlN50002sWbOG+vXre1yViOSkn376ia5du3LRRRexbt06xo0bx+rVq7n66qs1a4qIn24UkojhnKN///6kpqayYsUKoqKiqFq1qtdliUgO2bRpE48//jjvvfcexYoV45lnnmHw4MEUKVLE69JEwo4CnIS9RYsW0aRJEwoUKMDEiRMpXbq0nqgukovs3LmTp59+mnHjxmFm3H///Tz00EPExsZ6XZpI2FKAk7D2008/0apVK55//nnuvfde6tat63VJInKaypYty/bt209qNzPMjOuvv55hw4ZRsaKmthbJjgKchB3nHOvWreP888+nfv36vP/++1x11VVelyUiZyij8Aa+n/lVq1ZRu3btEFckErl0N6iEnaFDh3LBBRfw119/AdCvXz8KFy7scVUiciacy3oWQ4U3kVOjHjgJC0ePHuXw4cMULVqUgQMHUrp0acqUKeN1WSJyBlJSUli0aBEzZsxgxowZXpcjkqsowInnjh49SsuWLWnYsCFvvfUWVatW5a677vK6LBE5DUePHmXBggVMnz6djz/+mO3bt5M/f346duzIH3/84XV5IrmGApx4Jjk5mZiYGPLly8fVV19NtWrVvC5JRE5DUlISc+fOZfr06cycOZM9e/ZQuHBhunTpQs+ePenSpQvFihXT6HGRHKQAJ55Yvnw5vXr1YsaMGTRu3FhTYIlEmMTERL744gumT5/OZ599RmJiIsWLF+fKK6+kZ8+edOzY8aR7V8uUKZPhQAbdLiFy6hTgxBNVq1alevXqXpchIqdgz549zJo1i+nTpzN79mySkpIoXbo011xzDT169KBdu3bkz58/0+23bdsWwmpFcjcFOAmZd999l1mzZjFt2jRKlizJnDlzvC5JRLKxY8cOPv74Y2bMmMG8efNITk6mQoUK3HTTTfTs2ZOLLrqI6Ohor8sUyXMU4CRkkpKS2L9/P/v376dYsWJelyMimdi8eTMzZsxg+vTpfPvtt6SmplK1alXuueceevbsSdOmTTUnqYjHLLtn8+Q2cXFxLj4+3usy8oSkpCSefPJJWrVqxeWXX05qamraE9dFJLysXbs2LbQtXboUgLp169KzZ0969OhBgwYN9LMr4gEzW+6cizuxXT1wEjRRUVF8+umnAFx++eX6H7tIGDk2+8Gx0LZy5UoAmjRpwjPPPEOPHj2oWbOmx1WKSGYU4CRH7dy5k+eff54nnniCAgUKsGTJEooUKeJ1WSKCL7QtX748LbT99ttvmBmtWrXihRdeoEePHlSqVMnrMkUkAApwkqPi4+N54YUX6NSpE5dcconCm4jHUlJSWLx4MdOnT2fGjBn88ccfREdHc8kllzBkyBC6d+9OuXLlvC5TRE6RApycsd9//53Vq1fTrVs3OnfuzPr166lYsaLXZYnkWUePHmXhwoVpsyFs27YtbTaEJ554giuvvJLY2FivyxSRM6AAJ2fsvvvuIyEhgc6dO5M/f36FNxEPHJsNYcaMGcycOZPdu3dnOBuCiOQOCnByWhYtWkStWrU4++yzGTNmDDExMVk+wFNETk/ZsmUznb1g7dq1fPHFF8yYMYNZs2alzYbQtWtXevToQadOnShUqJAHVYtIsCnAySn766+/aNu2LYMHD2bUqFGce+65XpckkmtlFN6OtZcuXfq42RB69uzJJZdcov9MieQBCnASEOccP/30Ew0aNKB8+fL897//pU2bNl6XJZKnaTYEkbxLAU4CMmbMGO6++24SEhKoX78+l19+udclieQ6zjnWr1/P0qVL076yMnr06BBVJiLhRgFOMpWcnMzevXuJjY2lX79+ANSuXdvjqkRyj+3bt7Ns2bK0sLZs2TJ2794NQKFChWjSpInHFYpIuNJUWpIh5xwdOnQAYO7cuZpCR+QMJSYmsmLFiuN61zZt2gT4Zi2pX78+zZo1o2nTpjRr1oy6desSExOT5c9eXvv9LZIXaSotCcjhw4cpUKAAZsbAgQN1M7TIaTh69Cg///zzcWFt9erVpKamAlC1alVatGjB4MGDadasGY0bN870oddlypTJdBSqiORd6oGTNL///jsdOnTglVde4corr/S6HJGI4Jxj3bp1x10GXbFiBUlJSQCUKlWKZs2apX01bdqUUqVKeVy1iEQK9cBJppxzmBmVKlXSPy4i2TjxvrWlS5eyZ88eAAoXLkyTJk24/fbb0wJb5cqVdQuCiOQ4Bbg8burUqbz88st89dVXFChQgI8++sjrkkTCRmJiIsuXLz8urP3xxx8AREdHU69ePXr16pUW1urUqUNMjH6tikjw6TdNHlesWDEKFCjAP//8o3tqJE87evQoP/3003G9ayfet9ayZUuGDBmSdt9a4cKFPa5aRPIq3QOXxyQnJ/PUU09Rrlw5br31VuD/LqGK5BZZTT+1bdu2k+5bW7p0KT/88MNx9601b948bUSobi0QEa/oHjgBfJd9lixZQtWqVdPaFN4kt8lq+qlOnTqxbNmyk+5bu+OOO9IuhVaqVEk/FyIS1hTg8oDdu3fzxBNP8PjjjxMbG8vMmTMpUKCA12WJ5Li9e/fy66+/ZrnOjh076N27d1pYq127tu5bE5GIo99aecDmzZt54403aN26NT179lR4k4jmnGPLli388ssv/PLLL6xZsybtz61bt2a7/Q8//BCCKkVEgksBLpdav349CxYs4IYbbqBBgwb88ccflC5d2uuyRAJ25MgR1q5de1JQ++WXX0hMTExbr3jx4tSuXZtOnTpRu3ZtatWqRbdu3TysXEQk+BTgcqlRo0YxZcoUevToQYkSJRTeJGzt3bv3pIC2Zs0a1q1bR0pKStp65557LrVr1+aGG26gVq1aaWGtTJkyul9NwsrRo0fZvHlz2qAYkUAULFiQihUrki9fvoDW1yjUXGTp0qXExsZSrVo1/vnnHxITE6lYsaLXZYngnGPz5s0ZXvbctm1b2nr58uWjRo0axwW0WrVqUbNmTYoWLRrw8bIbhSoSTBs2bOCss84iNjZW/7mQgDjn2LVrF/v376dKlSrHvadRqLlcYmIil112GZdddhkffPABJUqUoESJEl6XJXnMscueJ/am/fLLLxw4cCBtvRIlSlC7dm06d+58XFirUqVKjgwoUEgTLyUlJWkGDjklZkZsbCw7d+4MeBsFuAj3/fff07x5c4oWLconn3xCw4YNvS5JItSp9Fr9888/GV72XL9+/XGXPc877zxq1arFjTfemNabVrt2bc455xz94ya5mv5+y6k61b8zCnAR7KOPPuLqq69mzpw5dOjQgYsvvtjrkiSCZfXstNGjRx8X1tIHuvz581OjRg0aNmxInz590nrTatasSZEiRUJVvoikEx0dTf369UlOTqZKlSq89957WV6V2blzJ1dccQVHjhxh9OjRYfnvycCBA7niiivo1atXWttff/3F4MGDmTZtmoeVeUMBLsKkpKSwbds2KlSoQLdu3Xjttddo27at12VJhNq3bx9//PEHmzZtynK9u+++O+2yZ5cuXY7rTatcubKeoyYSZgoVKkRCQgIAAwYMYMyYMTz66KOZrj9v3jzq16/PW2+9FfAxUlJSiI6OPtNSz0j58uXzZHgDBbiI069fP3788Ud+/PFH8ufPzy233OJ1SRKmUlNT2bZtW1pAy+jPf/75J6B9bd++ndKlS+uykEgEuvDCC1m5ciUA69at44477mDnzp0ULlyYN998k6SkJB588EEOHTpEfHw8ixcv5ptvvmHo0KEcPnyYatWq8e6771K0aFEqV65Mnz59mDt3Lg8++CBnn312pusNGDCATz/9lKNHj/LRRx9Rq1YtEhMTueuuu4iPj8fMGDp0KD179mTOnDkZ7ic7Gzdu5IorruDnn39m/PjxzJw5k4MHD7Ju3TquuuoqRo4cCXDa+w9nUV4XINk7dOhQ2n1FN954I4899ljAw4wl90pKSuK3337jyy+/5O2332bo0KEMHDiQdu3aUa1aNQoWLEiFChW48MIL6du3Lw8++CCTJk1i06ZNVKpUif79+zNy5EimTp3K4sWLszyW7lkTOX1t27Zl/PjxgO8RI23btuX9998H4ODBg7Rt25apU6cCvsfqtG3blhkzZgDw999/07ZtWz799FPg1AfopKSkMG/ePLp27QrAzTffzCuvvMLy5csZNWoUt99+O40aNeLJJ5+kT58+JCQkcODAAYYPH86XX37JihUriIuL44UXXkjbZ2xsLCtWrODSSy/Ncr1SpUqxYsUKbrvtNkaNGgXAU089RfHixfnpp59YuXIl7dq14++//85yP6ciISGBqVOn8tNPPzF16lT+/PPPHN1/OFEPXJjbtm0brVq1YsiQIdx1111ceumlXpckIeCcY/fu3Wm9ZRn1oO3YseO4baKioihfvjznnXcezZs3p3fv3lSqVInzzjsv7c9ixYp59IlEJJQOHTpEo0aN2LJlC7Vr16ZDhw4kJiayaNEievfunbbe4cOHT9p2yZIlrF69mlatWgG+0eUXXnhh2vt9+vQJaL0ePXoA0KRJk7RA+uWXXzJlypS0dUqWLMmsWbOy3M+paN++PcWLFwegTp06bNq0iX/++SfH9h9OFODCVGpqKlFRUZQpU4ZOnTpRv359r0uSDJzu88aSk5PZsmVLlpc30z92A3z3tBwLYw0bNqRSpUrHBbQKFSqcUc9smTJlMv0sInL6FixYkPY6X758xy0XLlz4uOXi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d87N9L9Ocs71ds6d75xrdmzEqoiISKTI7HaXnLoNpmLFigwePPik9p49e7J7927q1q3Lq6++So0aNU5ap0GDBkRHR9OwYUNefPHFTI8xbNgwevfuTZMmTShVqtRx73Xt2pXExMS0y6cAo0ePJj4+ngYNGlCnTh1ee+210/58ge7r5Zdf5quvvqJ+/fo0adKE1atXU6dOHYYPH07Hjh1p0KABHTp0YOvWrYCvV23p0qXUq1eP+fPn8/jjjwMwcOBAbr311rRBDOmVK1eOESNGcMkll9CwYUOaNGlCt27dTvuzZSdsH+QbLKF+kK+IiOQtepDv/4mPj+eee+7hm2++8bqUU3LsWXihFvEP8hUREZHINmLECMaNG5d275vkrLC9hCoiIiKR6+GHH2bTpk1p949FEi96306VApyIiIhIhFGAExERyWF57f5yOXOn+ndGAU5ERCQHFSxYkF27dinEScCcc+zatSvD59llRoMYREREclDFihXZvHkzwZ66UXKXggULUrFixYDXV4ATERHJQfny5UubTkokWHQJVURERCTCKMCJiIiIRBgFOBEREZEIk+em0jKzncCmIB+mFPB3kI8hp0bnJDzpvIQfnZPwpPMSfkJ1Tio550qf2JjnAlwomFl8RvOWiXd0TsKTzkv40TkJTzov4cfrc6JLqCIiIiIRRgFOREREJMIowAXHG14XICfROQlPOi/hR+ckPOm8hB9Pz4nugRMRERGJMOqBExEREYkwCnBnwMwuM7NfzWytmT2cwfsFzGyq//3vzayyB2XmKQGck3vNbLWZrTSzeWZWyYs685rszku69XqamTMzjbYLskDOiZld7f95WWVmH4S6xrwogN9h55nZV2b2g//3WBcv6swrzOwdM9thZj9n8r6Z2Wj/+VppZheEqjYFuNNkZtHAGKAzUAe4xszqnLDaIGCPc+584EXg2dBWmbcEeE5+AOKccw2AacDI0FaZ9wR4XjCzs4C7ge9DW2HeE8g5MbPqwCNAK+dcXWBIqOvMawL8WXkM+NA51xjoC4wNbZV5znjgsize7wxU93/dDIwLQU2AAtyZaAasdc6td84dAaYA3U5Ypxswwf96GtDezCyENeY12Z4T59xXzrmD/sUlQMUQ15gXBfKzAvAUvv/kJIWyuDwqkHNyEzDGObcHwDm3I8Q15kWBnBcHFPO/Lg78FcL6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zSQlJWW/sohfwYIFqVixIvny5QtofQU4ERGRHLR582bOOussKleunBNz6koe4Jxj165dbN68mSpVqgS0jQJcDqv88GdelyCZ2Djicq9LEJE8ICkpSeFNTomZERsby86dOwPeRvfAiYiI5DCFNzlVp/p3Rj1wQaLenvChXlER8Uqwfv9k92+MmdGvXz/ef/99AJKTkylXrhzNmzdn1qxZWW5btGhREhMT2bhxI4sWLeLaa68FID4+nokTJzJ69GjGjx9PfHw8r776as58oGxs3LiR2rVrU7NmTY4cOULr1q0ZO3YsUVGh7YcaP348HTt2pHz58iE9bkbUAyciIpLLFClShJ9//plDhw4BMHfuXCpUqHBK+9i4cSMffPBB2nJcXByjR4/O0Tozk5ycfFJbtWrVSEhIYOXKlaxevZqPP/74tPd1usaPH89ff/2V4XspKSk5dpxAqAdOREQkyHLqqsyp9Oh16dKFzz77jF69ejF58mSuueYavvnmGwCGDRtG0aJFuf/++wGoV68es2bNIv1Ukw8//DBr1qyhUaNGDBgwgMaNGzNq1KiTevA+/fRThg8fzpEjR4iNjWXSpEmULl2amjVrsmjRIkqXLk1qaio1atRg8eLFANx666388ccfALz00ku0atWKYcOGsW7dOtavX895553H5MmTM/xcMTExtGzZkrVr17Jz586A9vXSSy9x6623sn79egDGjRtHy5Ytef/99xk9ejRHjhyhefPmjB07lujoaIoWLcpNN93EnDlzKFu2LFOmTGHhwoXEx8fTr18/ChUqxOLFi6lduzZ9+vRh7ty5PPjggzjneOaZZ3DOcfnll/Pss88Cvl7Nu+++m1mzZlGoUCE++eQTypQpE/C5zIh64ERERHKhvn37MmXKFJKSkli5ciXNmzc/pe1HjBjBxRdfTEJCAvfcc0+m61100UUsWbKEH374gb59+zJy5EiioqLo378/kyZNAuDLL7+kYcOGlC5dmrvvvpt77rmHZcuWMX36dG688ca0fa1evZovv/wy0/AGcPDgQebNm0f9+vUD3tfgwYNp06YNP/74IytWrKBu3bqsWbOGqVOn8t1335GQkEB0dHRavQcOHCAuLo5Vq1bRpk0bnnjiCXr16kVcXByTJk0iISGBQoUKARAbG8uKFSto3bo1Dz30EPPnzychIYFly5al9RIeOHCA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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Plot original model mortality risk" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 7, + "source": [ + "onc_plot_risk(\n", + " y_true=data.y, \n", + " y_proba=data.score, \n", + " label='Multilayer Perceptron',\n", + " filename='./results/mlp_not_calibrated_mortality_bar')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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uk+bNi1GjhwZbdu2TWuX/v37F/sL902aNIl27dqltUdJdOvWLdHG8379+mVt4EHSDfbDhg0rU/9tf018j/6rqKgoxo4dG0OGDImhQ4fGu+++W+xmzCRWr14dH374YXz44Yfx8MMPR0T8uGmzW7duUadOnU1eozgVKlSI9957LwYPHlxsdvvtt48pU6aUqbuvrlq1Knr27Bnff/99sdmuXbtmoNF/zJ8/Px577LF46qmnYvTo0SXe0PeDdevWxaeffhqffvppPPDAA5GXlxeHH354nH322XHMMceUqe9FSX366adx0003xbPPPhtr1qzJdh3+R7169WKbbbaJmTNnJspv6kbajVmzZk08//zz8eSTT8Yrr7wSK1euLPW5vvnmm3jqqafiqaeeiosuuij233//OPPMM6NHjx5RtWrVFLbOrPnz58ett94affv2LfEQm3SbM2dOPProo/Hcc8/FmDFjEm/aXZ9169bFlClTYsqUKfHiiy/GbbfdFnl5edG6devo2LFjHH/88dGiRYsUti+dmTNnxiOPPBJPPfVUfPTRR6U+z5o1a2LcuHExbty4uOeee6JatWpx9NFHR8+ePcv9e68hQ4bEjTfeGKNGjdrkc33++edxzTXXxA033BDdu3ePG2+8Me0DBPiPsngtX7JkSfTv3z+eeOKJGDNmTKnfg61atSrGjh0bY8eOjb///e9RpUqVOPLII+PMM88s9+/BfvDYY4/FbbfdFp988skmn2vSpElxww03xG233RZnn3123HjjjRn5uwwAAAAAAAAAAJmVm+0CAABA+bT99ttHmzZtis2l+q7s/6uoqCjRGmedddZmsXEA+K9169bF66+/Hr169YqGDRvGvvvuG9dcc00MHz48JUMDNuTjjz+OK664IrbZZpvo1atXzJ49O21r/aB3796JclOnTo3XX389zW1K5tlnn000NCAi4vzzz09zm4gZM2bEZZddFo0aNYqLL744Ro0aVeoNa+uzevXqeOmll+K4446L3XbbLZ566qmUnTtTli1bFldeeWXsueee8eSTT5aZjYb8UuPGjRNn0/FatWzZsrj77rujWbNmccopp8Tzzz+/SUMD1ufdd9+NCy+8MBo3bhy33nprys+fbkVFRdG3b9/Yaaed4o477ihTQwMmTpwYZ599djRq1Cguv/zyGDVq1CYNDdiQ1atXx/Dhw+Oaa66Jli1bxkEHHRQDBgxI67V6QyZPnhxnn312NGvWLK6++upNGhqwPsuWLYsnn3wy2rdvH61bt46hQ4em9PyZ8P3338cZZ5wRhx9+eEqGBvzU6tWro0+fPtG8efO45557Unpufq4sXssXLFgQf/rTn6Jx48Zx0UUXbdLgpvVZuXJlPPvss3HcccfFLrvsEo8++mhaXtMyYcqUKdGhQ4c444wzUjI04KdWrVoV//rXv6Jly5YxcODAlJ4bAAAAAAAAAIDsMzgAAAAotW7duhWbGThwYCxfvjxtHUaOHBnTpk3baCYnJyejd7EG0uurr76Kyy+/PLbddtvo2LFj3H///RnZvP+/Vq1aFffff3/ssMMOcfvtt6d1Y1KnTp2iWbNmibJ9+vRJW4/SSNpn9913jwMOOCBtPVatWhU33HBDNG/ePP72t7/FsmXL0rbWDyZOnBinnnpqHHroofHFF1+kfb1UmDx5cuy1117xl7/8pUxsMmTjtt5668TZVL8fe/LJJ6N58+Zx6aWXxowZM1J67vWZO3du/OEPf4jddtutzA1I2ZAlS5bE0UcfHeecc07Mmzcv23V+NGfOnDjnnHNi9913j4cffjhWrVqV0fXffvvt6Nq1azRs2DDGjBmTkTUXLVoUF110Ueyyyy7x8MMPx+rVq9O+5pgxY+Kwww6LU089NSvvU0pj7Nixseuuu8Zjjz2W1nUWL14cF198cRxzzDGJhwuRXFm8lj/++OPRokWLuOGGGzIyQOWzzz6LM888Mw444IAYP3582tdLpUcffTR23333GDZsWFrXmTt3bpx00klxzTXXpHSAAwAAAAAAAAAA2WVwAAAAUGonn3xyVKtWbaOZJUuWpPUudv369Ss2c/DBByfecAuUfS+99FLcddddZWYT3rJly+Kqq66KDh06xMyZM9OyRk5OTpx//vmJsi+++GKZ+W8zadKkGDlyZKJsz54909Zj9OjRseuuu8af/vSnrNyt/I033ojdd989Hn/88YyvXRJDhw6NAw44IKZMmZLtKiSUn5+fOJuqwQHffvttdOzYMU477bSYNWtWSs5ZEl988UV07NgxLr/88li3bl3G10/qyy+/jFatWsW///3vbFf5mb59+0bz5s2jb9++Wb8T98KFC+O7775L+zovvfRStGjRIu69996sPGaeeuqp2HXXXcv8wItXXnkl2rZtm9H3EC+99FK0atUqpk+fnrE1N3dl7Vq+cOHCOOqoo+L000+POXPmZHz9999/P/bZZ5+46aabyvzm+KKiovjDH/4QZ555Zkbfr95yyy1x4YUXZmw9AAAAAAAAAADSy+AAAACg1KpXrx4nnHBCsbmCgoK0rL906dJEQwm6deuWlvUBfmrEiBHRqlWrmDRpUlrO36NHj6hSpUqxubVr18bDDz+clg4l1adPn0S5atWqxRlnnJGWDvfcc0+0a9cuvvjii7ScP6kVK1bE6aefHldccUWZ3Lg2fPjwOProo2PhwoXZrkIJlOSxlJOTs8nrjRgxIn7zm9+UiQ3Qd911Vxx++OFl8jE7a9as6NChQ0ycODHbVX60ZMmS+O1vfxvnnHNOLF68ONt1MmLdunXxhz/8IY499tisD9T5/vvvo1OnTnH33XdntceGvPnmm3HsscfGsmXLMr72lClT4sADD4zPPvss42tvbsratfzTTz+NfffdN+sDVNauXRvXXXddnHDCCbF06dKsdtmY3r17x6233pqVtf/1r3/FDTfckJW1AQAAAAAAAABILYMDAACATZJkU/7w4cPjq6++SvnazzzzTLGbW6pVqxYnnnhiytcGWJ9vvvkm2rRpk5bNb3Xq1ImTTz45UfbBBx/M+p2kV65cGQMGDEiUPe2006JmzZopXb+wsDDOPffcuPjii2PNmjUpPfemuPPOO+P8888vU8MDPv744zjuuONi1apV2a5CCa1YsSJxtmrVqpu01sMPPxyHHHJIRu4Qn9Qbb7wRhx12WJnZJBsRsXjx4ujcuXOZuoP6t99+G61bt44nnngi21UyZuXKlXHMMcfErbfeWmZeb9etWxeXXnpp/PnPf852lZ/57LPP4oQTTsjqtfLbb7+NTp06xaxZs7LWobwra9fysWPHxoEHHpj1wU0/9fzzz8chhxxSJoenXH311XH//fdntcONN94Yb7zxRlY7AAAAAAAAAACw6SpmuwAAAFC+tWvXLpo0abLRzVFFRUXRv3//uO6661K6dkFBQbGZE088MapXr57SdQE25vvvv4+jjz463n333ahTp05Kz927d+9Em/GnT58eQ4YMiU6dOqV0/ZIYOHBgzJ8/P1G2Z8+eKV173bp10a1bt3j00UdTet5UeeCBB6JixYrxz3/+M9tVYunSpdGlS5dYtGhRony1atVir732iu233z623XbbqFatWlSqVCmWLl0aixYtis8//zwmTpyYloFB/FJJ7qKen59f6nXuv//+6N27d5nZgP1T77//fhx22GExfPjwTfoaU+Wcc86J8ePHJ8pWqFAhdt9992jevHk0adIkatSoEVWrVo0VK1bEkiVL4ssvv4xPP/00Pvvss1IPg5k6dWp07Ngxvvzyy1IdXx4tX748jjnmmDK7Afbaa6+NvLy8+P3vf5/tKrFixYo49thjEw/fqFOnTvzmN7+JFi1aRJ06daJ69eqxcuXKWLhwYUyZMiXGjx9f6qEZX3/9dRx55JHx1ltvRbVq1Up1jl+rsnYt/+ijj6Jjx45laqjLD9577704/PDDY8iQIVGjRo1s14mIiIceeihuu+22RNlKlSrFnnvuGc2bN4/GjRtH9erVo3LlyrFixYqYO3duTJ06Nd555534/vvvS9yjsLAwunbtGpMnT/YcBAAAAAAAAAAoxwwOAAAANklOTk6cddZZceONN240N2DAgPjjH/8YOTk5KVl32rRp8dZbbxWb69atW0rWY/MxfPjwDX6uoKAgunfvXuw5unbtmmhwBdm31VZbxb777hstW7aMnXbaKZo0aRJbb7111KtXL/Lz86NKlSqRm5sbixYtioULF8aiRYvim2++iQ8++CA++OCDeP/990u18Wbq1KlxxhlnxCuvvJLSr2f//feP3/zmNzFu3Lhis3369Mnq4IA+ffokyu29996xzz77pHTts88+u9RDA/Lz86N9+/ax//77x1577RWNGzeOhg0bRn5+flSuXDmWL18e8+fPj2nTpsW4ceNi+PDhMWTIkBLf4fdf//pX7LLLLtG7d+9S9UyVyy+/PKZNm7bRTJ06deK3v/1tnHrqqbHffvtFxYrF/5PipEmT4tlnn4177rknVVVZj5Js0K1fv36p1ujXr1/06tWrVMfm5ubG/vvvH23atIl99tknmjVrFttuu+2PG+RXrVoVixYtiunTp8fEiRPjrbfeisGDB5f4dff999+P7t27x1NPPVWqnqnyxBNPxDPPPLPRTF5eXnTp0iV++9vfRocOHRINuJozZ04MGjQo/vGPf5Soz6xZs6J9+/bxzTfflOi4n9p2223j4IMPjlatWsWOO+4YTZs2jS233PLHjcYrV66MpUuXxqxZs2LmzJkxceLE+OSTT2L06NExderUUq9bWmvXro1jjz221EMDatWqFYccckjst99+seeee0ajRo2ifv36kZ+fHxUrVoxly5bFvHnzYurUqfH+++/HsGHDYtiwYbFu3boSrXPVVVfFzjvvHEceeWSpeqbKtddeG1OmTNlopnr16nHGGWdEt27dYt99943c3NyN5j///PN4+umn4/7774+ZM2eWqM+HH34Yl1xySTz00EMlOu6nNva6+Kc//SluuOGGYs9x/fXXx5/+9KdSd8i0snQtnzVrVnTu3DkWLFiQ+Jif2mmnnaJz585x4IEHRsuWLaNBgwZRo0aNWLduXSxZsiSmT58en332Wbz55pvxyiuvxJw5c0q8xjvvvBOnnnpqDB48OGX/PlFaEyZMiIsvvnijmapVq8Ypp5wSp556arRt2zaqVKmy0XxRUVG888470bdv3xgwYECsWbMmcZ+ZM2fGrbfeGjfffHPiYwAAAAAAAAAAKFsMDgAAADZZt27d4qabbtroXWinTp0ab731Vhx88MEpWbOgoKDYu942bdo02rZtm5L1gPKhdu3a0bFjx+jUqVO0b98+mjZtmui4OnXqRJ06dSIi4je/+U0ce+yxEfGfO9e//PLL8dBDD8XLL78ca9euTdzl1Vdfjf79+0fXrl1L/oVsRO/eveOcc84pNjd48OD49ttvo2HDhildP4lPP/003n777UTZnj17pnTt22+/Pfr371/i4w4++ODo3bt3HHPMMVG1atUN5qpXrx7Vq1ePRo0aRbt27eKyyy6LRYsWRUFBQfz1r38t0SbJ3/3ud7HXXntFq1atStw3FT7++OMYMWLEBj9frVq1uPbaa+PCCy9MtLn5p1q0aBHXXHNNXHbZZbF06dJNrcp6zJ49O2bNmpU437hx4xKv8dZbb8X5559f4uOaN28evXr1ijPPPDPq1q27wVzVqlWjatWqUb9+/TjggAPi7LPPjrVr18agQYPilltuibFjxyZe8+mnn4599903rrjiihL3TZULLrhgg5/LycmJHj16xHXXXReNGjUq0Xnr1asX55xzTpx99tkxY8aMRMcsW7YsjjrqqFINDahatWp07do1zjzzzGjVqtVGN9ZWq1YtqlWrFltvvXXsueeeP9sIP2vWrHjllVdi0KBB8eqrr5Z4wEppXHTRRfH666+X6JicnJw48sgjo1evXtGxY8eoVKnSBrM1a9aMmjVrRrNmzaJjx47xhz/8IebMmRP33Xdf/P3vf0+8WbqwsDBOP/30GDt2bGy//fYl6psqY8eOjU8//XSDn8/JyYnzzjsvbr755o0+j//XjjvuGNdee21ceeWVcffdd8eNN95YoutA375944gjjojjjz8+8TG/ZmXpWr5mzZo46aSTYvbs2SVaJyKiS5cucfnll8eBBx643s9XqlQpqlSp8uNQsLPOOivWrFkTzz//fNxyyy0xfvz4Eq338ssvJx4kkU6nnHJKrFixYr2fq1ixYlxyySVx5ZVXxlZbbZX4nDk5OdGqVato1apVXHXVVdG9e/fE78sjIu6666649NJLf/y7EQAAAAAAAAAA5cvGbw0DAACQQNOmTRMNBEjVHdqLiopiwIABxea6du2a9TsIAulXpUqVOO200+Kll16KOXPmxNNPPx09evRIPDRgYypUqBBHH310vPjii/H555/HYYcdVqLjL7/88liyZMkm9/ip0047LWrXrl1sbu3atdG3b9+Urp1Unz59EuVq1KgRp512WsrWfeWVV+IPf/hDiY7Za6+94s0334wRI0bEKaecstGhARtSq1atuOSSS2Ly5Mlx+eWXF3s35h+sWbMmunfvnpHNtOuzsQ2urVq1igkTJsRVV11V4o2GP1W1atUSbXYjuZEjR5YoX9LXxBkzZsTxxx8fq1evTnxMvXr14qGHHorPPvssLr300hJtNv5BxYoV4/jjj4/3338/HnzwwahVq1biY6+99tqYPHlyiddMlQ09pxo0aBBvvvlmPPTQQyUeGvBTOTk5sd122yXK9ujRI8aNG1ei8+fm5sZFF10U06dPj/vuuy9at269Se+lGzRoED169IgXXnghZs+eHffdd1/stddepT5fcfr06RP3339/iY5p3759jB07Nl566aU44ogjNjo0YEPq1asX119/fUyZMiXOOuusxMctWrQozjnnnGKHoaXLJ598EoWFhev9XJ06deLll1+O+++/v1TP44j/bPT+/e9/H2PHjo3dd9+9RMf26tUrFi1aVKp1f23K0rX8T3/6U4waNapE527atGkMHz48nnvuuQ0ODdiQSpUqxcknnxxjx46Nf/zjH1GlSpUSHX/TTTdtdOhCJnz22Wfr/XiLFi1i3Lhxcccdd2zS+6gddtghhg0bFt26dUt8zIoVKxK/lwcAAAAAAAAAoOwxOAAAAEiJJL+IPnDgwFi+fPkmr/Xmm2/GV199tdFMTk5Oyu/yDZQt2267bdx6663xzTffxOOPPx5HHXVUqTb8JdW0adN47bXXoqCgIPHmq++//z7uvffelPbIz89P/Pr20EMPbXBTYLqsWLEi0XCXiIgzzjhjkzay/dSCBQvi7LPPTvz15uTkxLXXXhvvvvtutG/fPiUdqlWrFnfccUe89NJLUbNmzUTHTJ48OW666aaUrJ8qJ598cgwbNiwlwzdInxdeeKFE+X322adE+XPPPTfmzZuXOH/MMcfExIkT4+yzz44KFSqUaK31ycnJiXPOOSfef//9aNmyZaJjVq1aldWN2Ouzyy67xLvvvhvt2rXL2JqPPvpoPP300yU6Zvvtt4933303/vGPf0S9evVS3ql27dpx/vnnx7hx4+LNN9+MTp06pfT806ZNi8suuyxxPi8vL+6999544403UjbMoE6dOtG/f/94+OGHIy8vL9Exw4cPz9qQnw1p2LBhvP322yn7Hu24447x9ttvl2hT+Jw5c8rctbG8yfS1fOLEifHXv/61RMd06tQpxo0bF23btt2ktStUqBAXXXRRvPPOO4mHq0T8ZyBhz549szbAaUM6duwY7733Xuy2224pOV/FihWjb9++0aVLl8THPPDAAylZGwAAAAAAAACAzDM4AAAASIkTTzwxqlWrttHMkiVLYuDAgZu8VkFBQbGZtm3bRpMmTTZ5LaDs2WabbeK+++6LqVOnxlVXXVXqO+GWVteuXePNN9+M2rVrJ8rfeeedKd+Q1KtXr0R3gf7666/jlVdeSenaxXn66adj4cKFibI9e/ZM2bqXXHJJzJo1K1G2cuXK8cwzz8RNN92UlmETRxxxRAwdOrREj5Fvv/025T1K4+ijj47HHnssKleunO0qbMS8efPiueeeS5yvWLFi/OY3v0mcf/jhh+PVV19NnP/9738fL7zwQlpej5s3bx4jR45MfMfyt99+O55//vmU9yiNZs2axeuvv16ijaybatasWXHRRReV6JhDDz003n///RIPlyit9u3bxyuvvBKjRo2K7bfffpPPV1RUFD169Eg8oGyLLbaI119/PS644IJE19KS6t69ezz77LOJhwdce+21sWLFipT3KI1atWrFG2+8ES1atEjpeWvUqBGvvvpq7LHHHomP+cc//hFffvllSnv8WmTjWt6rV69Ys2ZN4vzxxx8fgwYNSvxeKYk99tgjRo4cWaJ/B5g8eXL85S9/SVmHTXXIIYfEoEGDokaNGik9b25ubvTr1y+23XbbRPmvvvoq3n333ZR2AAAAAAAAAAAgMwwOAAAAUqJ69epx4oknFptLsul/YxYvXpxoo1y3bt02aR2g7OrSpUucf/75iTfkpcO+++4bzz//fFSsWLHY7Pfff1/iO4MXZ6eddooOHTokyvbp0yela6dqvf33379EGwg3ZsyYMfHII48kylaqVCmeeeaZOOGEE1Ky9obst99+8cwzzyS68/rKlSvjtttuS2ufJHbcccd44oknEj2uya7bb7+9RANJWrduHVWrVk2UXbJkSVx55ZWJz33llVfGX/7yl7RswP5B3bp145VXXomGDRsmyt94441RVFSUtj5JVKlSJV544YWoX79+Rte97rrrEg9viYg47LDDYvDgwbHFFlukr9QGtG7dOiV31H7yySdjxIgRibI1atSI1157LQ466KBNXndjjjrqqMTXw++++y7uu+++tPZJIicnJ5544omUDw34QfXq1ePFF1+MLbfcMlF+zZo1cdddd6Wly+YsG9fyIUOGxFtvvZU437p163j88cfTMrypSZMm8fLLL0fNmjUTH3PnnXeW6HUzXZo3bx4DBw6MKlWqpOX8tWrVKtH7zbIyhAcAAAAAAAAAgJIxOAAAAEiZ7t27F5sZPnx4fPXVV6Ve4+mnny72bqJJhxgAbIp27drFVVddlSi7qUNT1qd3796Jci+//HLMmDEj5euvz4QJE2LMmDGJsueff37K1r3mmmsSZ++66644+uijU7b2xhx66KFxww03JMo+8MAD8f3336e50Ybl5ubG448/HtWqVctaB5L55JNP4p577inRMSUZlHHXXXfFvHnzEmVPPPHEjA29aNiwYTz55JOJBhSMHz8+Xn755Qy02rBbbrklJZviS2LSpEnRr1+/xPk999wzXnjhhYzelTzV1q5dG9dff32ibE5OTjz22GOx7777prnVf3Tr1i3OOeecRNm//vWvsXbt2jQ32riePXtG586d07pG48aN4+9//3vifL9+/WL+/PlpbLR5yda1/KabbkqcrVu3bjz33HNpfd1p2bJl9O/fP3F+0aJF8Y9//CNtfZLIzc2NRx99NGrXrp3WdX7729/G9ttvnyibdCALAAAAAAAAAABli8EBAABAyhx88MHRrFmzjWaKiopK9Ev8/yvJZqiTTjrJxkcgI/7whz8kupv0G2+8EcuWLUvp2sccc0xss802xebWrVsXDz30UErX3pAHHnggUa527dpxyimnpGTNN998M4YNG5Yo26VLl7jwwgtTsm5SV155Zey5557F5latWhWPPvpo+gttwNlnnx1777131tYnmcWLF8epp54aq1atSnxMxYoVEw9UWrBgQeI7fDdq1CgefvjhxD1S4aCDDko8NCVTr3vr07Jly7jooosyvu6NN94Y69atS5StXbt2PPfcc1G1atU0t0qvAQMGxJQpUxJlL7nkkowNjvnBnXfeGQ0bNiw2N3v27Pj3v/+dgUbrV7du3bj99tszstYZZ5wRHTp0SJRdtmxZDBgwIM2NNh/ZuJa/99578fbbbyfO//Of/4ytt946jY3+47jjjovTTz89cf4f//hHrF69Oo2NNq5Xr16x3377pX2dnJycxANNxo4dGytWrEhzIwAAAAAAAAAAUs3gAAAAIGVycnLirLPOKjY3YMCAKCoqKvH5p0yZEqNHjy42161btxKfG6A0qlatGhdccEGxuTVr1qT8rp0VK1aM8847L1G2b9++iTeTltby5cvjkUceSZQ988wzU7ZZNemd12vUqFHiu7SnQsWKFeOWW25JlO3bt2+a26xfpUqV4rrrrsvK2iQ3f/78OOqoo2LixIklOu7UU09NtHE54j/v0RYvXpwoe++990aNGjVK1CUVrr/++qhevXqxucGDB8d3332XgUa/dP3110fFihUzuuacOXPi2WefTZy/7bbbomnTpmlslBlJX9e32267uPnmm9Pc5pdq1qwZ1157baJstq4BERFXX3111KxZM2PrJb0uRkQ8/vjjaWyy+cjWtbygoCBxtm3btnHyySenr8z/uOOOOyI/Pz9R9vvvv4/BgwenudH6Va1aNa655pqMrXfCCSckyq1ZsyY++eSTNLcBAAAAAAAAACDVDA4AAABSqmvXrpGTk7PRzNSpU+Ott94q8bn79etXbKZZs2Zx0EEHlfjcAKV16qmnJsq9+eabKV/73HPPjUqVKhWbmzFjRtrvZPzUU0/FokWLEmXPP//8lKw5a9asxJu8Lr744thmm21Ssm5Jde7cOXbbbbdicxMmTIipU6dmoNHPnXjiibHttttmfF2SGzt2bOy9994lfv+Um5sbv//97xPnH3zwwUS5Aw88MON3bv/BVlttFd27dy82t3bt2qxsAt1uu+3ixBNPzPi6Dz/8cOK7Ze+zzz6JB8+UZe+//3589NFHibLXXXddVKtWLb2FNuDss8+OunXrFpsbMmRILF++PAONfq5WrVopuy4ntf/++0f79u0TZd9///344osv0tyo/MvGtXzVqlXx5JNPJs7feuutaWzzS/Xr14/f/e53ifMlGYKQSqeeemo0aNAgY+s1b948GjdunCg7adKkNLcBAAAAAAAAACDVDA4AAABSqkmTJtGuXbticyX9pfzCwsJEd7Lu1q1bsYMLAFJphx12iO22267YXNLNjSXRoEGDOO644xJl+/Tpk/L1S3P+Nm3axM4775ySNQcMGBBr164tNle5cuW49NJLU7JmaZ177rmJcq+++mqam/xS165dM74mycyePTuuvvrqOPDAA2P69OklPr5nz56x++67J8q+++67MXHixETZq6++usRdUqksP59OP/30qFChQsbXTfI++QfXXXfdZvF++eGHH06Ua9CgQVZf5/Ly8uKss84qNrdq1aoYNmxYBhr93FlnnZX4ruyp1KtXr8TZl19+OY1NNg/ZeIwPHz48FixYkCi7//77R6tWrdLc6JcuuuiiREO2IiJee+21WLZsWZob/VKSYTiptv/++yfKTZ48Oc1NAAAAAAAAAABINYMDAACAlOvWrVuxmYEDB5bojppDhw6NGTNmbDSTk5Nj8yOQFUk25k6YMCEtayfdePfqq6/G119/nZYO48ePj3fffTdRtmfPnilb98UXX0yU69KlS9SpUydl65bGMccckyg3ZMiQNDf5uS222CI6dOiQ0TXZuEWLFsUrr7wS5557bjRp0iRuu+22WLVqVYnP07Bhw/jzn/+cOJ/0+bTNNttE586dS9wnlXbbbbdo2rRpsbnXX389CgsLM9Dov0488cSMrhcRMW3atPj0008TZVu0aBFHHXVUmhtlxqBBgxLlunbtmnjjcLqU1WtARMRvf/vbjK8Z8Z//JtWrV0+UzcZAhfIkW9fyoUOHJs6ef/75aWyyYfXr1088ZGv16tUxcuTI9Bb6H3Xq1IkDDzwwo2tGROIhXt9++22amwAAAAAAAAAAkGoVs10AAADY/JxwwglxwQUXxNKlSzeYWbJkSQwcODDR3TcjIgoKCorN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7NgxUXb06NFRUFCQ3kLl2Ouvvx6DBw/OyFrffPNN3HXXXYnzXbt2TdnaSd/rT5o0KWVrbu5K8v3585//HIsXL05jm58bOnRovP7664nzqXysAQAAAAAAAABAthgcAAAAkCUHHXRQotzQoUPjyy+/THObiIULF5bLjdCpVLt27ahbt26xuaKionj//fcz0IiIiKZNmybKvfzyyxnbxPp///d/GXleplrDhg3j2GOPLTa3cOHCOOGEE2LlypXFZvPy8qJbt24paFc6l156aVSoUCFR9uabb46RI0emuRGUXyeddFI0btw4UXbYsGFx2223pbkRSeXk5MRll12WOP/cc89l5e7fqXbFFVckzl500UXx+eefp7FN+darV69YtGhR2tc577zzYsmSJYmy+++/f7Ru3Tplazdv3jxRbs6cOTF9+vSUrbs5O+2006JatWqJsnPnzo3LL788zY3+Y9myZXH++ecnzh988MGx0047pbERAAAAAAAAAABkhsEBAAAAWdK+fftEucLCwvjzn/+c1i5FRUVx9tlnx6xZs9K6TnnQsmXLRLmXXnopzU34wR577JEo9+2338YjjzyS5jYRjz32WPzzn/9M+zrp0rt370S5d999N1Hu+OOPj6222mpTKm2Sli1bxjnnnJMou27dujjhhBPi008/TXMrKJ8qVapUomEAf/zjH+PJJ59MYyNK4pxzzontt98+cf7iiy+OESNGpLFR+h122GFx+OGHJ8ouXbo0jjjiCO93N2DGjBlx+umnp3UI08033xyvvvpq4nxJBkMkUa1atdhuu+0SZb3XT2bLLbeMXr16Jc4/9NBD8cILL6Sv0P930UUXxbRp0xLnr7322jS2AQAAAAAAAACAzDE4AAAAIEvat28fW2yxRaJsQUFBvPPOO2nrcvXVV8dzzz2XtvOXJwcccECiXL9+/WLBggVpbkNElOhOs9dcc00sXbo0bV1efvnl6NGjR9rOnwkdOnSIFi1apOx8Jbmba7rceOONUbNmzUTZefPmxaGHHhoffvhhmlslt3Dhwrjxxhvj8ccfz3YViFNPPTVatWqVKFtYWBhnnnlmPProo2luldzatWujf//+cc0112S7SsZVqlSpRMOmVq9eHUcddVSMGjUqja02rqioaJPPceedd0aFChUSZadOnRodOnQoU3eT//bbb+Pyyy+PYcOGZbtK/Pvf/44LL7wwJd+X//XII4/Eddddlzj/m9/8Jo4//viU90j6Xv+ee+6JNWvWpHz9zdEVV1wRVatWTZw/88wz4+OPP05bn7vuuiv69euXOL///vtHx44d09YHAAAAAAAAAAAyyeAAAACALKlUqVIcd9xxibLr1q2L008/PebNm5fSDkVFRfH73/8+br/99pSetzw7+OCDE+UWLFgQp59+eqxYsSLNjdhll12iSZMmibIzZ86Mk046KS0bvZ588sk44YQTYvXq1Sk/d6aV5M6wG9OiRYto27ZtSs61KerVqxd333134vysWbPioIMOyvqd0qdOnRpXXHFFNGrUKK6//vqYP39+VvvADx588MHEm0DXrl0bZ555Zlx99dVZ3WS7YMGC+Nvf/hbNmzePbt26xeTJk7PWJZtOOeWUOOKIIxLnly5dGh07dsz48IdJkybFqaeempK7uu+yyy4lGhQxadKk2H///eONN97Y5LU3xfjx4+O8886LZs2axV133RXLli3Lap8f3HfffdGjR49YtWpVys75z3/+M7p161aigQR333135Oam/kdYSd/rT5kyJXr16hWFhYUp77C52XrrreOqq65KnF+6dGkccsghaRnidM8998QVV1yROJ+TkxN/+9vfUt4DAAAAAAAAAACyxeAAAACALOrZs2fi7LRp06JTp04xZ86clKw9d+7cOOqoo+KOO+5Iyfk2F4ccckhUr149UfaVV16JPfbYIwoKCmLx4sVpbvbrduqppybOvvrqq3HaaafF0qVLU7L2ypUr4/LLL4/TTjstVq5cmZJzZlvXrl2jWrVqm3ye8847LwVtUqN79+5xyimnJM4vW7YsTjvttDjxxBPj66+/TmOzn1uxYkU8/fTT0blz52jevHnceeedsWTJkoytD0nssssucdddd5XomNtuuy323XffGDNmTJpa/VJhYWGMGDEizj777Nhmm23isssuK1N3ks+WBx98MLbYYovE+RUrVsSZZ54ZXbt2TfmQqv81atSoOOGEE2KXXXaJp556KmWbsq+77rpo3bp14vycOXOiY8eO0atXr7R/zT+1aNGi6NevX7Rp0yb23HPPePDBB1O6Qb8kqlSpssHPFRQURJs2beLTTz/dpDW+//77OP300+PCCy8s0ff6jDPOiIMOOmiT1t6QY445JnG2b9++se+++8azzz5rWFgxrrrqqmjRokXi/Lx586Jt27bx9NNPp2T91atXxyWXXBIXX3xxiQZU9OzZM1q1apWSDgAAAAAAAAAAUBZUzHYBAACAX7P9998/DjzwwBg1alSi/NixY2PfffeNvn37xqGHHlqqNVeuXBl9+/aNP/7xj7FgwYL1ZqpWrRr16tWLr776qlRrlGdVq1aN4447LvGdd6dMmRLdu3ePc889N3bfffdo2bJlbLvttlG7du2oXLly5OTkJDpPjx49ombNmptSfbPWq1evuOOOO2Lt2rWJ8s8++2yMHz8++vfvX6KNhD9VVFQUAwcOjGuuuSamTJmywVxOTk60bds2hg8fXqp1sqFWrVrx29/+Nh588MFSn6NKlSrRtWvXFLbadH369Inx48fHpEmTEh/z7LPPxuDBg+Pcc8+N3r17R8uWLVPea8GCBTFkyJB46aWX4sUXX0zZUAtIp/PPPz9GjhwZTzzxROJjxo8fH61bt46jjjoqLrvssmjXrl3i62BSq1atipEjR8bLL78czzzzTMycOTOl598cNGzYMAoKCqJLly4l2qw9YMCAGDx4cFx66aVxwQUXlGj4wMbMmDEjnnrqqejXr19MnDgxJef8XxUqVIgnnngi9ttvv/juu+8SHVNUVBT3339/PPbYY3HRRRdFz549o1GjRinvNnv27Hj11Vdj0KBB8fLLL2dtUMD/Ov7442PChAkxYcKE9X7+gw8+iD322CPOPffcuPTSS6N58+aJz/3999/Hgw8+GH/5y182+PeNDWncuHHce++9JTqmJBo1ahRt2rSJt99+O1F+3LhxceKJJ0aVKlVir732ip122ikaNGgQtWrViry8vMSvcb/73e82oXXZl5eXF3379o22bdsmfr++ZMmSOOWUU+K5556L22+/PRo3blyqtYcNGxaXXHLJBh/LG9K0adO47bbbSrUmAAAAAAAAAACUVQYHAAAAZNktt9wSbdu2TZz/+uuvo2PHjnHYYYfFBRdcEJ07d45KlSpt9JjCwsIYN25cPP300zFgwIBiN1Tde++9MWDAgF/l4ICIiMsuuyzx4IAfrF27NsaNGxfjxo0r1ZrHHXecwQEb0ahRozjrrLPi4YcfTnzMF198EQceeGC0bds2LrroojjssMOiRo0axR73+eefx3PPPRcFBQUxefLkYvOXXnpp1KhRo1wNDoiI6N279yYNDjjppJNiyy23TGGjTVerVq147bXXonXr1iXaTLxq1aq499574957740DDjggjjnmmDj88MNjt912K/b19X+tXbs2vvzyyxg3bly88847MWbMmPjggw9i3bp1Jf1yIOsKCgpizpw58cYbb5TouMGDB8fgwYNj++23j+OOOy46d+4c+++/f1SvXr3EHWbOnBkff/xxvPPOO/HOO+/E22+/HcuXLy/xeX5tjjnmmLj99tvj97//fYmOmz9/fvzxj3+MW2+9NY4++ug46aSTom3btlG3bt3E51i0aFG88847MXLkyHj11VdL/d6opBo1ahSvvvpqtG3bNhYvXpz4uCVLlsQtt9wSt912W7Rv3z6OOuqo6NixY7Rs2TJyc3NL1GH16tUxZcqUGDt2bLzzzjsxevTo+Pjjj0t0B/RMqVSpUjz88MNxwAEHbPAatXbt2rjvvvvi/vvvj1atWkWnTp1i3333jZ122inq1q0b1apVi5UrV8bChQvjiy++iI8++iiGDh0ar7/+eqxcubLEnSpWrBiPPfZY1KpVa1O/vI26/PLLEw8O+MHKlStjzJgxMWbMmFKtubkPDoiIaN26ddxxxx0l/lqfeuqpeP755+PEE0+MHj16xEEHHRR5eXkbPWbBggXx73//O/r06VPi72XEf4bFPffcc2l/rAEAAAAAAAAAQKYZHAAAAJBlBx98cJxyyinx1FNPlei4IUOGxJAhQyI/Pz/222+/aNGiRTRs2DDy8/Nj3bp1sWzZsvj2229j6tSpMXbs2MQbqE4//fTo0aNHDBgwoDRfzmZhr732KtX3hPS69dZb47nnnouFCxeW6LgRI0bEiBEjokKFCrHbbrvFXnvtFXXq1IktttgiKleuHMuWLYu5c+fGF198EePHj49Zs2YlPvfuu+8et9xyS9x6660l/Gqyb88994wDDjgg3nnnnVId37NnzxQ3So1GjRrFa6+9Fu3bt4+5c+eW+PgfNif/4Q9/iLy8vNhll12iadOmsc0228SWW24ZVatWjby8vFi1alWsWrUqli5dGnPmzInZs2fHN998E1988UWsWbMmDV8ZZF5eXl48//zz0bFjx3j33XdLfPzUqVPjzjvvjDvvvDNycnKiefPm0bx589hmm22iXr16kZ+fH5UrV461a9fGqlWrYsWKFTF37tyYPXt2fPvtt/H555/H0qVL0/CV/TpcccUV8fXXX8c999xT4mOXL18eTz311I/vhXbYYYfYcccdo2nTplGnTp3Iz8+PSpUqxcqVK2PZsmUxa9asmDFjRkyaNCm++eabVH8pie25557x4osvxlFHHRXLli0r0bGFhYXxxhtv/DgoIz8/P3bddddo3LhxbLvttlGrVq2oWrVqVKxY8cdrwJIlS+K7776L2bNnx1dffRVffvlluRoUs88++8TNN98cV1999UZzRUVFMXr06Bg9enRa+zzwwANx4IEHpnWNiIhjjz02WrVqVeohAGzYJZdcEh9++GH079+/RMetXr06Hn/88Xj88cejWrVqsffee0eLFi2ifv36Ub169SgsLIwlS5bEV199FZ9++mmMHz++1M+1nJyc6Nu3b+y5556lOh4AAAAAAAAAAMoygwMAAADKgHvvvTfefvvtEt0h+wfLly+P4cOHp+Ru5+3atYuHHnpok8+zOfj73/8ew4cPj++++y7bVfj/6tWrF3369IlTTjmlVMevW7cuPvroo/joo49S0mfbbbeNwYMHR+XKlVNyvmzo3bt3qQYH7LrrrhnZ2Fdau+yyS4wePTo6deoUU6dOLfV5Vq9eHR9++GF8+OGHKWwH5UuNGjXijTfeiJNPPjlefvnlUp+nqKgoPv/88/j8889T2I7i/OMf/4gqVarEX//61006zxdffBFffPFFilqlV7t27WLYsGFx5JFHlmqAzA+WL18e7733Xrz33nspbFf2XHXVVTF58uQoKCjIao8//elP0b1794yslZOTEw8++GDsv//+JR4wQfH69u0bK1asiKeffrpUxy9btixGjhwZI0eOTHGz/3zv+/TpE6eddlrKzw0AAAAAAAAAAGVBbrYLAAAAEFG3bt148skns7oBeZ999olBgwZFlSpVstahLNl6661j8ODBUbNmzWxX4SdOPvnkuOKKK7JdI7bccst47bXXYrvttst2lU1y8sknR926dUt8XM+ePdPQJrV22GGHGD16dJkecADlRbVq1eLFF1+MXr16ZbsKpfCXv/wlbr/99qhQoUK2q2TMvvvuG6NHj46dd94521XKhQceeCCOOuqorK1/yy23xPXXX5/RNXfZZZd48sknIy8vL6Pr/hpUqFAhHnvssTj11FOzXeVnKlasGH369Ilzzz0321UAAAAAAAAAACBtDA4AAAAoI9q0aRNPPvlkVKxYMeNrH3rooTF06NCoUaNGxtcuy/bZZ58YM2ZM7LTTTtmuwk/85S9/yeqGn6ZNm8bIkSM3i82IlStXjh49epTomPz8/DjzzDPT1Ci16tWrFyNGjIgbbrghK6+tsDmpWLFi/Otf/4rnnnsu6tSpk+06lND//d//xdChQ2PrrbfOdpWM2WGHHeKDDz6I3r17Z7tKmVepUqV4/vnn45xzzsnoupUrV46+ffvG1VdfndF1f3DUUUfF66+/Hg0aNMjK+puzihUrxhNPPBE333xz5OZm/0eRderUiddee83QAAAAAAAAAAAANnvZ/20dAAAAfnTcccfFoEGDMnqX+/PPPz9eeeWVqF27dsbWLE923nnnGD9+fPz5z3+2UbKMyMnJiQceeCDjd6aNiDj44IPjvffei1122SXja6fL+eefX6INXaeeemrUqlUrjY1Sq0KFCnHdddfFmDFjonXr1tmus165ublxxBFHxMEHH5ztKlCsLl26xIQJE+KMM86InJycbNdZr7322itOP/30bNcoc9q3bx/jx4//Vf23qVq1avzzn/+MIUOGlNlrd15eXpxyyimx++67Z7VHxYoV48EHH4y777478vPz075eixYt4t133y3xAKNUO+igg2LSpElxxRVXRPXq1bPaZXN0zTXXxKuvvhpNmjTJWoeOHTvG2LFjo0OHDlnrAAAAAAAAAAAAmWJwAAAAQBnTuXPneO+992K//fZL6zrbbbddDBo0KO677z534i5G5cqV4w9/+EN888038fDDD8cRRxwRVapUyXatX70//elP8fLLL2fkLrG1atWKe++9N4YNGxZ169ZN+3qZ1LRp0+jUqVPifM+ePdPYJn322WefGDVqVDz99NPRokWLbNeJiIhddtklbrrpppg+fXr8+9//zvqmUUiqQYMG8cgjj8T7778fHTt2zHadiIioX79+XHTRRfH+++/HuHHjokuXLtmuVCZtvfXW8eijj8aIESNi3333zVqPnXfeOf72t7/FIYcckpH1OnbsGOPHj4/7778/tttuu4ysWZz99tsv/va3v8XMmTPjySefjEaNGmW7UkREXHLJJfHxxx+n7bldo0aNuPnmm2PcuHGxxx57pGWNkqpZs2b89a9/jW+++SbuueeeaNeunb8fpVDHjh1j4sSJ8fvf/z4qV66csXUbNmwYAwYMiCFDhkTjxo0zti4AAAAAAAAAAGST33wC4FevqKgo2xUA4Bd22mmnGDNmTNx3331x6623xsyZM1N27i222CJ69+4dV155ZdSoUSNl5/01qFq1anTv3j26d+8eq1evjrFjx8YHH3wQn3/+eUydOjVmz54d8+bNi0WLFsWqVatizZo1UVhYmO3am7XOnTvHZ599Frfffnv8/e9/j+XLl6f0/DVr1owePXrElVdeGfXr10/pucuSJUuWJMrtueeeaR9qkm4nnXRSnHjiiTF06NC499574+WXX45169ZlZO3c3NzYb7/94sgjj4wuXbqU2btfQ1J77713DBkyJCZOnBj33ntvPProo7F06dKMrb/jjjvGEUccEcccc0y0bds2cnPNyU3q4IMPjvfeey+GDx8ed9xxR7zyyitpf89SvXr1OPbYY6Nnz55x0EEHpXWt9alQoUL07Nkzzj777HjhhRfin//8Z4wYMSJj/y6Ul5cXbdq0iSOOOCKOP/74aNq0aUbWLY3tt98+hgwZEu+880785S9/iRdffHGTHx8NGjSIc845Jy644ILYeuutU9Q0tWrXrh0XXnhhXHjhhbF8+fJ47733Yty4cTFlypSYNm1afPfddzF37txYsmTJj+/1/btiMvn5+fGXv/wlLrvssrjzzjujT58+id9/llSzZs3i97//fXTv3j2jgwoAAAAAAAAAAKAsyPFLTQCZkZOT0yoiRv/0Y6NHj45WrVplqVHqTJ8+PVasWPGzj1WtWjWaNGmSnUIAsJlZvXp1PP744/Hoo4/G8OHDS7XBNTc3N/bff/849dRTo0ePHlG9evVij2nXrl2MGDGi2NywYcOiXbt2Je7EpvM9+rn58+dHQUFBPPLII/HRRx+V+jyVK1eOgw46KLp06RJnnXVWoufLBx98EB988EGxuX322Sf22WefUndLh0mTJkXLli0TZe+///7o2bNnmhtl1vfffx+DBw+OF198MYYPHx4LFixI2bmrVKkSu+22W7Rp0yYOOuigaNu2bWy55ZYpOz/p9dFHH8ULL7yQKLvnnnvGcccdl9Y+5cHKlSvj9ddfjxdffDGGDBkSX3/9dcrOnZubGzvuuGO0bt36x+dTWd54Xd589913MXDgwHj22WdjzJgxsXLlyk0+Z05OTuy1115x+OGHx+GHHx6tW7eOSpUqpaBt6sycOTMGDRoUL774YowaNSqlgy+q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AAAAAAAAAAAAAAAAAAAAAEDtGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAAAAAAAAAAAAAAAAAAAADZjBAQAAAAAAAAAAAAAAAAAAANCAGRwAAABQYCNGjIgkSXJ+DBs2rNxRAVjPXHjhhZl+Bl144YXljgoAAAAAAAAAAAAAFJDBAQAAAAAAAAAAAAAAAAAAANCAVZY7AAAA0DikaRozZsyIqVOnxvz582Px4sX//qiqqopWrVr9+2OjjTaKXr16RXV1dbljAwAAAAAAAAAAAAAAQL1ncAAAAFBwq1atinHjxsWTTz4ZTz31VEyYMCGmTJkSy5Yty2ufTp06xWabbRY77LBDDBw4MAYOHBhdunQpUmoAAAAAAAAAAAAAAABomAwOAAAACmLp0qVx3333xU033RSPPPJILF68uM57fvzxx/Hxxx/HM888E3/4wx8iImLzzTePI488Mo499tjYZptt6twDAAAAAAAAAAAAAAAAGjqDAwBo9C666KJyR4BG58c//nG5I1BA48ePj1/96ldx2223xcKFC4veb9KkSXHZZZfFZZddFttss02ccsopceKJJ0bz5s2L3hsAAAAAAAAAAAAAAADqo4pyBwAAABqml19+OY444ojYeuut48YbbyzJ0ID/9frrr8cZZ5wRPXv2jF/96lexePHikmcAAAAAAAAAAAAAAACAcjM4AAAAyMucOXNi+PDhseOOO8Ydd9wRaZqWO1LMnDkzzjnnnOjTp0/cfvvt5Y4DAAAAAAAAAAAAAAAAJWVwAAAAkNmf//zn2GKLLWLEiBHljrJGM2bMiCOPPDIOO+ywmDZtWrnjAAAAAAAAAAAAAAAAQEkYHAAAAOS0dOnSOO644+L444+PWbNmlTtOTvfcc0/0798/Hn744XJHAQAAAAAAAAAAAAAAgKIzOAAAAFin9957L/bYY4+46aabyh0lL/PmzYuDDz44fvnLX5Y7CgAAAAAAAAAAAAAAABRVZbkDAAAA9de4cePigAMOiNmzZ9dpn+bNm8eee+4ZAwYMiL59+0bfvn2jU6dO0bp166iuro6VK1fGokWLYuHChTFlypR4++23480334zHH3883nrrrVr3Xb16dXzve9+LCRMmxHXXXRcVFWanAQAAAAAAAAAAAAAAsP4xOAAAAFijcePGxf777x9z586t1fVVVVVx2GGHxYknnhhf+MIXonnz5mutraysjBYtWkTHjh2jV69esd9++/17bfr06XH77bfHn/70p3jzzTdrleXGG2+MmpqauOGGGwwPAAAAAAAAAAAAAAAAYL3jxAwAAPA548aNi/32269WQwOaNWsW3/nOd2L69Olx6623xoEHHrjOoQG5bLrppnHWWWfFG2+8Ef/4xz9i9913r9U+I0eOjBNOOCFqampqnQUAAAAAAAAAAAAAAADqI4MDAACA//LBBx/EwQcfHPPmzcv72i996Uvx1ltvxeWXXx6dOnUqeLa99947nn766fjb3/5Wq/1HjhwZ559/fsFzAQAAAAAAAAAAAAAAQDkZHAAAAPzbsmXL4itf+UrMnDkzr+tatGgRV111Vdxzzz3Ro0eP4oT7D0cddVS89tprceCBB+Z97c9+9rO49dZbi5AKAAAAAAAAAAAAAAAAysPgAAAA4N9OPvnkeOGFF/K6pmPHjvHPf/4zTjvttCKlWrPOnTvHAw88EN/97nfzvnb48OHx2muvFSEVAAAAAAAAAAAAAAAAlJ7BAQAAQERE3HzzzTF69Oi8runevXuMHTs2dtpppyKlWrckSeJXv/pV/OxnP8vrusWLF8eQIUNi5cqVRUoGAAAAAAAAAAAAAAAApWNwAAAAELNnz45vfvObeV3ToUOHeOSRR6JPnz5FSpXdD37wgzjvvPPyuub111+PSy+9tEiJAAAAAAAAAAAAAAAAoHQMDgAAAOKss86KWbNmZa5v3rx53H333dG7d+8ipsrPJZdcEscee2xe11x66aXx5ptvFikRAAAAAAAAAAAAAAAAlIbBAQAA0Mg99dRTcdNNN+V1zW9+85sYMGBAkRLVTpIkcf3118eWW26Z+ZoVK1bEt771reKFAgAAAAAAAAAAAAAAgBIwOAAAABq5Cy64IK/6L33pS3HqqacWKU3dNG/ePP7yl79E06ZNM1/z6KOPxj//+c8ipgIAAAAAAAAAAAAAAIDiqix3AAAAoHzGjBkTY8aMyVzftm3buO6664qYqO622267OO+88+LCCy/MfM2PfvSj+Mc//lG0TIVSU1MTzz33XDz33HPx5ptvxvjx42PmzJmxcOHCWLhwYaxevTpat24dbdq0iR49esQWW2wR/fv3jwMOOCB69uxZ7vi1lqZpTJ8+PWbMmBGzZs2KuXPnxvLly2P58uVRUVERLVu2/PdHixYtom3bttG9e/fo2LFjuaMXzNKlS2Pq1Knx3nvvxYIFC2Lx4sWxZMmSaNKkSbRs2TJatWoVG2+8cfTq1Ss22mijcsctqfHjx8fYsWPj7bffjnfeeScmT54cCxYsiEWLFsWiRYuioqIiWrVqFW3bto3OnTtHnz59YtSoUeWO3ajNnz8/Jk+eHB988EEsWrQolixZEkuXLo2mTZtGq1atorq6Orp16xa9evWKtm3bljtuwXzwwQfx8MMPx7hx42LChAn/fq0uWLAgIiLatGkTrVu3jo4dO8aWW24ZW265Zey0006x5557RlVVVZnTAwAAAAAAAAAAAAD1ncEBAADQiF188cV51f/whz+MTp06FSlN4Zxzzjnxpz/9KT744INM9U888UQ88cQTsffeexc5We08/fTT8ac//Snuv//+mDVr1jpr586dG3Pnzo2pU6f+1zCEPn36xNChQ+Okk06q91/D6dOnxyOPPBJPP/10vPDCC/HOO+/E0qVL896nZcuW0b179+jRo0dsvvnmscsuu8Ruu+0Wm2++eRFSF06apvH888/Hk08+GU899VQ8//zzMWPGjMzXV1dXx8477xx77LFH7LfffrHXXntFRUVFERPnNmzYsBg5cmTOuhtvvDGGDRuWs+6pp56KG2+8MR566KFM3+crVqyIefPmxdSpU+Ott976r7X77rsvXnzxxZx7VFVVxXnnnRdJkuSsLaXp06dnHuhyxBFHxDbbbFPkRP9t2bJl8cQTT8RTTz0VTz31VLz88ssxf/78zNd36tQpBgwYEHvssUcceOCBsfXWWxcvbBF88sknMWLEiLjxxhvj1VdfXWft7NmzY/bs2TFlypR4/vnn//1427Zt46CDDophw4bFF7/4xWJHBgAAAAAAAAAAAAAaKIMDAACgkXrrrbf+62B5Lj179oxvfvObxQtUQC1btoyf/vSnmQ4gf+bqq6+ud4MDHn744bj44ovjqaeeqvNe77zzTvzwhz+Miy66KIYPHx4XX3xxvRog8Mknn8TIkSPjz3/+c7z44ouRpmmd91yyZElMmDAhJkyY8F+Pt2/fPnbdddcYNGhQHHHEEdG1a9c69yqEcePGxZ///Of429/+FtOnT6/1PosWLYoxY8bEmDFj4pJLLomNN944jj766PjGN74RvXv3LmDi0krTNG666ab41a9+Fa+88krB9l21alVcdNFFmWp322232G+//QrWuxCuu+66TPkrKyvjtNNOK0GiT79WDz74YPz1r3+Nu+++OxYuXFjrvT7++OO466674q677opzzjkntt566zjuuOPilFNOiQ022KCAqQtr4cKFcemll8Zvf/vbWLJkSZ32+uSTT+Lmm2+Om2++Ofr37x8//OEP46ijjipQUgAAAAAAAAAAAABgfVHetxwEAADK5vrrr8+r/pxzzolmzZoVKU3hDRkyJLp165a5/s4774y5c+cWMVF2c+bMiSFDhsQXv/jFggwN+E8rVqyIa665Jnr37h2/+93vCrp3bcybNy++//3vxyabbBJnnXVWvPDCCwUZGrAuc+bMiQceeCC+/e1vR/fu3WPAgAHxm9/8JmbPnl3Uvmvz2GOPxaBBg2KHHXaIX//613UaGrAmH374YVx55ZXRr1+/+NrXvhZvv/12Qfcvhddffz322muvGDJkSEGHBkREHHLIIdGxY8dMtSNGjCho77pK0zRGjRqVqfbAAw+Mzp07FzXPypUr48Ybb4wtt9wyDjnkkPjzn/9cp6EBa/LGG2/EueeeG927d48f/OAHMX/+/ILuXwg333xzbL755nHZZZfVeWjA/3r11Vfj6KOPjoMPPjimTZtW0L0BAAAAAAAAAAAAgIbN4AAAAGiEVq5cmfmwaUTEBhtsEEOHDi1iosJr0qRJnHHGGZnrly9fHqNHjy5iomxeeuml2HrrreMvf/lLUfssWLAgvvnNb8bgwYNjzpw5Re21NjfddFNsvvnm8Ytf/CIWL15clgxpmsYzzzwT3/nOd+K+++4rae+JEyfGAQccEPvvv388+uijRe9XU1MTN998c2y77bZx4YUXxvLly4vesxCuueaa2HHHHWPs2LFF2b+qqiqOO+64TLV33HFHwQ/C18UTTzwRU6ZMyVQ7fPjwomZ55JFHYquttooTTjgh3nrrraL2iohYuHBh/PznP49+/frFzTffXPR+WSxZsiROPPHE+NrXvhYff/xxUXs9+OCDsfXWW8fDDz9c1D4AAAAAAAAAAAAAQMNhcAAAADRCjz76aF6HGk866aRo2bJlERMVx//93/9FixYtMtcX+7B+Lg8++GDsvffeMXPmzJL1vPfee2P33XePqVOnlqznihUrYujQoXHcccfF3LlzS9a3vkjTNC699NLYZptt4pFHHil5/xUrVsRFF10Uu+66a0m/7vmqqamJM888M0499dRYuXJlUXsNGzYsU92SJUvi1ltvLWqWfIwYMSJTXfv27ePQQw8tSoZPPvkkjj322DjggANi4sSJRemxLh999FF87Wtfi2OPPTaWLFlS8v6fmTt3buy7775xww03lKznggUL4pBDDokbb7yxZD0BAAAAAAAAAAAAgPrL4AAAAGiEHnjggbzqjz322CIlKa527drFQQcdlLn+pZdeitmzZxcx0do9/vjjcdhhh8XixYtL3nvixImxxx57xIQJE4rea8mSJfHFL34xRo0aVfRe9dG8efPikEMOiR/+8IexfPnysmZ59dVXY6eddop//OMfZc2xNqeffnr8/ve/L0mv/v37x/bbb5+pNuth/WJbvHhx3H777ZlqjzvuuGjatGnBM7z++uux8847x1//+teC752vv/71rzFgwICYNm1ayXt/+OGHMXDgwHjuuedK3nvVqlVxwgknlH3wDQAAAAAAAAAAAABQfgYHAABAI/Tggw9mru3Tp09st912xQtTZEcffXTm2pqamvj73/9exDRrNmHChDjiiCOK/q7q6zJjxow48MAD48MPPyxaj9WrV8eRRx5Zbw+qF9uUKVNip512yuv7r9jmzJkTBx98cDz66KPljvJfLrzwwrjmmmtK2nPYsGGZ6saOHRuTJ08ubpgMbrvttli0aFGm2qzPLR8PPfRQ7LbbbjFx4sSC711br776anzhC18o6fCARYsWxSGHHBLjx48vWc81OeGEE+LJJ58sawYAAAAAAAAAAAAAoLwqyx0AAAAorYkTJ8a7776buf6II44oYpriO/TQQ6NZs2aZ3939wQcfjOOOO67Iqf6/pUuXxmGHHRbz58/PVN++ffvYYYcdol+/ftG+ffuorq6OZcuWxfz582PixInx6quvxtSpU2uV5f33349DDjkknnzyyWjVqlWt9liXn/zkJ/Xq0HwpTZo0Kfbdd9+yvBt6LkuXLo3BgwfHQw89FHvttVe548QDDzwQF110Ueb6rl27xjbbbBO9evWK9u3bR6tWrWL16tWxaNGi+Pjjj2P8+PHx2muvxcKFC9e5z7HHHhtnn312zgEeaZrGyJEj88pYDCNGjMhUt+2228b2229f0N733HNPHHXUUbFixYqC7lsIkydPji984Qvx9NNPR+fOnYvaa/Xq1XHUUUfFuHHjar1H9+7do3///tG7d+9o165dtGjRIhYvXhxz5syJt956K8aNGxezZs3Kuc+KFSvi8MMPjzfffLPWWQAAAAAAAAAAAACAhs3gAAAAaGSeeOKJvOr33XffIiUpjVatWsXOO+8cY8eOzVSf7+enrs4///yc79hdXV0dQ4YMiWHDhsXOO+8cFRUV66x/55134m9/+1tcffXV8cEHH+SVZ9y4cXHWWWfFddddl9d1ubzxxhtxySWX1Ora7t27x/777x9bbrllbL755rHZZptF27Zto1WrVtGyZcuorKyM5cuXx9KlS2P27Nkxa9aseP/992PixIkxYcKEePHFF/MallFoH3zwQXzhC1/I+2vxma5du8b+++8fO+20U2y11VbRrVu3aN++fbRo0SIiIhYvXhwffPBBTJw4MZ555pn4+9//Hq+++mpePZYuXRpHHnlkvPjii9GtW7da5SyEuXPnxnnnnZezbvvtt4+vf/3r8eUvfzl69OiRs37lypUxZsyYGDVqVDz00ENrrOnQoUN86UtfijvuuCPnfqNGjYoLL7wwkiTJWVsMU6dOzXyvGj58eEF7P/zww3HkkUfmHLCwNtttt13svffesdNOO8Xmm28e3bp1izZt2kSLFi1i5cqVsXDhwnjvvffirbfeirFjx8Z9992X9/fO5MmT48gjj4zHH388qqqqapUzi0svvXStr6d12WSTTeLkk0+OY445Jvr27bvO2jRN46WXXorRo0fHyJEj45NPPllr7ezZs+P000+PrbfeOu9MAAAAAAAAAAAAAEDDZ3AAAAA0Mi+//HLm2qqqqhgwYEAR05TGXnvtlXlwwPTp02P27NnRoUOHIqeKeOmll2L8+PFrXU+SJE4++eS45JJL8srTp0+fOP/88+P73/9+XHHFFXHxxRfHokWLMl9//fXXx8EHHxyHH3545mtyOe+882L16tWZ61u3bh2nnHJKnHTSSTkP1kZEtGzZMlq2bBnt27dfY/3cuXNjzJgx8eijj8a9995b60P8+VqyZEkMHjw4734tW7aMIUOGxCmnnBI77LDDOmvbtWsX7dq1i6222iq+/OUvx89//vMYP358/OpXv4rRo0fHqlWrMvWcNWtWfPnLX45nn302mjZtmlfeQrnkkkti3rx5a13fdttt4+c//3kceOCBee1bVVUVBxxwQBxwwAHx/vvvr7Vu2LBhmQYHTJ06Nf7xj3/EPvvsk1eOQhk1alSkaZqzrqqqKo477riC9X377bfjmGOOyXtoQJcuXeKUU06J4cOHR9euXdda16RJk2jevHl07NgxdtpppxgyZEikaRqPPfZY/OxnP4vHH388c8+xY8fGt7/97fj973+fV9asnn322bj44ovzuqa6ujouuOCC+Na3vpX5eyxJkthpp51ip512iosuuiguvPDC+P3vf7/W++ntt98ekyZNyisXAAAAAAAAAAAAALB+WPfbVAIAAOudcePGZa7dcccdo2XLlkVMUxp77bVXXvX5fI7q4o033oiampo1rrVv3z4eeOCBuPrqq2s9xKCqqirOOeeceOmll2LbbbfN69rTTjttne9snY9JkybFfffdl7n+61//erz33nvxy1/+MtPQgCw23HDDOOKII+KPf/xjTJs2LcaOHRunnHJKtG7duiD7r82JJ56Y17COz4ZFvPvuu3HNNdfkHBqwNltuuWXccMMNMW7cuNh1110zXzdu3Li49NJLa9WzENY2NCBJkjj//PPjxRdfzHtowP/q1q3bWtcOOuig6Ny5c6Z9Ro4cWacctZWmaYwaNSpT7SGHHBIdO3YsSN+FCxfGl770pZg/f37ma6qrq+OXv/xlvPvuu/GjH/1onUMD1iZJkth///3jsccei7vuuiu6dOmS+do//OEPMWbMmLx75rJq1ao48cQTMw/liIjYZptt4qWXXorvfe97tR7M0a5du7jiiivi8ccfj4033nitda+++mqt9gcAAAAAAAAAAAAAGjaDAwAAoBGpqamJ1157LXN9vofN66t8n0epBgesTZcuXWLs2LF1PiD9mT59+sTYsWNjjz32yHzNxx9/HD/5yU8K0j/ru6NHRFx++eUxcuTI2GCDDQrSe02SJIk99tgjrr766pgxY0b84Q9/iJ49exa8z8033xw333xz5vouXbrEY489Ftdcc01stNFGBcmw9dZbx5NPPhmnnXZa5mt+9rOfxZtvvlmQ/oVQVVUVN998c/zkJz+JqqqqovaqrKyMIUOGZKq97bbbYtGiRUXNsyZPPvlkvPvuu5lqhw0bVrC+55xzTkycODFz/YABA+L111+Ps88+O5o3b16QDIcddli8/PLLed3LTj755Fi2bFlB+n/mqquuivHjx2eu33PPPeOpp56KPn36FKT/XnvtFc8880z06tWrIPsBAAAAAAAAAAAAAOsHgwMAAKARmTJlSixZsiRz/ZZbblnENKWz8cYbR7t27TLXl/PQdNu2beOxxx6Lfv36FXTf1q1bx0MPPRT9+/fPfM1vf/vbmDJlSp17//3vf89UN3z48PjOd75T5375qK6ujtNPPz0mTpwYhx56aMH2/fjjj+PMM8/MXN+/f/94/vnnY5999ilYhs9UVVXFVVddFeedd16m+hUrVsS5555b8By1UVFREaNGjYqjjz66ZD2zHrZfvHhx3HbbbcUNswYjRozIVNexY8c4+OCDC9Lz8ccfj2uvvTZz/bHHHhuPP/549OjRoyD9/1Pnzp3jkUceif322y9T/aRJk+Kqq64qWP8FCxbEhRdemLm+f//+8eCDD0br1q0LliEionv37jFmzJjo3LlzQfcFAAAAAAAAAAAAABougwMAAKARmTZtWl7168vggIiILbbYInNtvp+nQkmSJP76178WfGjAZ6qrq+Puu++ODTfcMFP9ypUr49e//nWdei5btixeeumlnHUtWrSI3/zmN3XqVRdNmjSJDh06FGy/Cy64IGbPnp2pdquttorHHnssNtlkk4L1X5Of/vSnmQ/F33vvvZm+bsX2gx/8IL761a+WtOfWW28dO+20U6barIf4C2XJkiWZhxUMGTIkqqqq6tyzpqYmzjjjjEjTNFP9scceG6NHj45mzZrVuffatGjRIu66667YeuutM9X/4he/yGtozrpcc801MW/evEy17du3j7vvvjuqq6sL0vt/devWLe68886orKwsyv4AAAAAAAAAAAAAQMNicAAAADQi06dPz6u+Z8+eRUpSer169cpcm+/nqVBOOeWUOOigg4rao3v37nHllVdmrr/xxhtj7ty5te43adKkWL16dc66ww8/PNq2bVvrPvXJu+++GzfccEOm2vbt28f9998f7du3L3KqT1199dWx1VZbZaq97LLLipxm3Xbccce46KKLytI764CFf/7znzF16tSiZvlPt99+eyxcuDBTbdbnkMvo0aNjwoQJmWp33333GDFiRFRUFP+fm6qrq+OOO+6IFi1a5Kz96KOP4sYbb6xzz5UrV+Z1//ztb38b3bt3r3Pfddl9993jBz/4QVF7AAAAAAAAAAAAAAANg8EBAADQiOR7IH6jjTYqUpLS69y5c+baDz74oIhJ1qxDhw7x85//vCS9hgwZEvvuu2+m2sWLF8eoUaNq3ev999/PVLf77rvXukd9c9FFF8WqVasy1V5//fVFP1j8n5o1axY33nhjJEmSs/buu++OWbNmlSDVml155ZVleyf1Y489Npo1a5azLk3TGDlyZAkSfWrEiBGZ6nbYYYfYdttt69xv1apVmYc3tG7dOm655Zaoqqqqc9+sevfuHRdffHGm2uuuu67O/e69997MPx/233//OPbYY+vcM4sLLrggNttss5L0AgAAAAAAAAAAAADqL4MDAACgEZkxY0bm2latWkV1dXUR05RWPkMQlixZEvPnzy9emDU499xzo02bNiXrd+mll2auvemmm2rdJ+u7o2+66aa17lGfzJo1K2655ZZMtYcffngcdthhRU70eTvvvHMcddRROetWrlwZo0ePLkGizzvwwANjjz32KEvviIgNNtggBg8enKl21KhRkaZpkRN9OoRjzJgxmWqHDRtWkJ73339/TJkyJVPtT3/60+jatWtB+ubjzDPPzNT3lVdeiZdffrlOvfK5F+Zzj62rpk2bxoUXXliyfgAAAAAAAAAAAABA/WRwAAAANCJZD3FHRHTq1KmISUov3+eTz+eqrtq2bRunnnpqyfpFROy6666xzz77ZKp94YUXYtKkSbXqs2LFikx15Xpn+UIbMWJEpudcUVFR0oPF/+v73/9+pro777yzyEnW7Nvf/nZZ+v6nrIfvJ0+eHE8++WRxw0TEyJEjMw0oaNq0acHe6f7aa6/NVNejR4847bTTCtIzX82aNYtvfetbmWrr8npeuHBh3H///Zlq99tvv9h5551r3as2jj322OjevXtJewIAAAAAAAAAAAAA9YvBAQAA0IgsXbo0c23Lli2LmKT08n0++Xyu6urrX/96WT7f+Rz0feCBB2rVo3nz5pnqpk2bVqv965sbbrghU93hhx8effv2LXKatdthhx1ihx12yFn37LPPxieffFKCRP9fly5dYtCgQSXtuSZf/OIXY+ONN85UO2LEiOKGiYhRo0ZlqvvSl74U7du3r3O/GTNmxEMPPZSp9uyzzy7r8I+hQ4dGVVVVzrqsz2dNHnvssVi2bFmm2lIPgon4dBjJySefXPK+AAAAAAAAAAAAAED9YXAAAAA0Ivkchm/WrFkRk5Revs+nlIMDCvXu4PkaPHhwVFdXZ6odM2ZMrXp06NAhU11tBxPUJ++880689dZbmWpPOumkIqfJbfDgwTlrVq1aFY8//ngJ0vx/hx9+eCRJUtKea9KkSZM4/vjjM9XedtttsWTJkqJlGTt2bEyaNClT7bBhwwrS87777ouampqcdc2bN4/jjjuuID1rq3379rHHHnvkrHv55Zdjzpw5teqR9R7YunXrTN9bxVDurwMAAAAAAAAAAAAAUF4GBwAAQCOS9d2SI7K/U3xDke/zKdXggI022ih23XXXkvT6X82aNYsDDzwwU+0TTzwRaZrm3aNnz56Z6h566KF4/fXX896/Psk6/KB9+/YxaNCgIqfJLWuG559/vshJ/tt+++1X0n7rMnz48Ex1CxcujNtvv71oOUaMGJGpbqONNsr8PZ1L1tfzgQceGO3atStIz7rI8nquqamJF198sVb7Zx0ccOCBB0bTpk1r1aOuunfvHttvv31ZegMAAAAAAAAAAAAA5WdwAAAANCKrVq3KXNukSZMiJim9ysrKvOpXrlxZpCT/bd999y3ru6vvv//+mermzZsXkydPznv/7t27xwYbbJCzbuXKlXH88cfH3Llz8+5RX/z973/PVDdo0KCoqCj//xzfbrvtMn2fv/LKK8UP8x8GDhxY0n7r0q9fv8yDPbIe7s/XkiVL4tZbb81UO2TIkLzvdWuyatWqeOyxxzLVFmpQQV3tuOOOmepq83peunRpvPnmm5lqs95Ti+WAAw4oa38AAAAAAAAAAAAAoHzKf1IBAAAomWbNmmWuXbFiRRGTlN7y5cvzqm/evHmRkvy3AQMGlKTP2uy+++6Za19//fW890+SJPbaa69Mta+++moMHDgw8wHd+ub555/PVJf181FsLVu2jO7du+ese+2110qQ5lObbrpptG/fvmT9shg2bFimujFjxsT7779f8P533HFHLFiwIFNt1qy5jB8/PhYtWpSptr68nrfccstMdbV5PY8fPz5qamoy1TakezoAAAAAAAAAAAAAsH4xOAAAABqRFi1aZK5dtmxZEZOUXr7PJ5/PVV3stNNOJemzNltvvXXmIQlvvPFGrXocddRRmWvHjx8f2223XZx00kkxfvz4WvUrh6lTp8bcuXMz1WZ9Z/RS2HTTTXPWfPjhh7Fy5coSpInYYostStInH1/96lczfY+kaRojR44seP+se+68886x1VZbFaTnyy+/nKmuVatW0bdv34L0rKuNN944Kipy/zPXe++9l/feWYeZtGjRIvMAg2Ip988UAAAAAAAAAAAAAKB8DA4AAIBGJOsB8YiI5cuXFzFJ6eX7fEo1OKDch24rKipi8803z1Q7efLkWvU48sgjo1OnTpnrV61aFddff31stdVWsfvuu8eVV14Z06ZNq1XvUhk3blzm2n79+hUxSX7at2+fsyZN05gxY0YJ0kR07969JH3y0a5du/jyl7+cqXbUqFEF7T1t2rR4/PHHM9UOGzasYH2zvp779OmT6bB+KVRWVkbbtm1z1n3wwQd575313te7d++yfz422WSTqK6uLmsGAAAAAAAAAAAAAKA86sdfdwMAACWRz2H4Tz75pIhJSm/BggV51ZdicECHDh2iXbt2Re+TS58+fTLVffjhh7Xav1mzZnH++efX6tpnn302vvWtb0W3bt1im222iW9/+9tx7733xty5c2u1X7G8++67meratWsXbdq0KXKa7LK+zmtz2Lo2OnfuXJI++Ro+fHimukmTJsXYsWML1nfUqFFRU1OTs65Zs2bxta99rWB9s76e69ughyyv59oMwch67+vdu3feexdDfckBAAAAAAAAAAAAAJRWZbkDAAAApZPl3cU/M2vWrKipqSn7uycXSr6H3vP5XNXWRhttVPQeWWTNUdvBARERp59+evz1r3+NZ555ptZ7vPHGG/HGG2/EFVdcEUmSRL9+/WLAgAGx++67x+677x5bbLFFJElS6/3rYvr06Znq5s+fX7aMdZHv4I3aKsX3XW3sv//+semmm2b6Oo8YMSL23HPPgvQdOXJkprrDDjssNthgg4L0jMj+er7rrrsa3Ot5xYoVsWzZsmjevHnma7Le+zbeeOPaxiqo+vKzBQAAAAAAAAAAAAAorfXjBBAAAJDJpptumrl21apVMWfOnCKmKa2PPvooc22HDh2iWbNmRUzzqY4dOxa9RxZZc8yaNavWPZo0aRK33HJLbLLJJrXe4z+laRoTJkyI66+/Pk466aTYaquton379nHooYfGZZddFi+++GKmd2ovlKwHrRuqpUuXlqRPPoe5S6mioiKO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AAAAAAAAAAD8N4MDAACgERo8eHBe9ddff32RkhTXSy+9FK+++mrm+oMOOigqKyuLmOjz3nzzzZL2+1+zZs2Kjz/+OFPtlltuWeQ0hbHjjjvG7373u5g+fXr86Ec/imbNmmW+Nk3T+MMf/pB3z549e2aufe+99/Len/pn+PDhmeoeeeSRTAe577rrrpg/f36mPYcNG5aprrayvp7ff//9ouaoL7bYYotMdR9++GHMmTOnyGnW7c0334w0TcuaAQAAAAAAAAAAAAAoD4MDAACgEdpiiy1i1113zVz/0EMP1epd2MvtN7/5TV71WQ8CF9LTTz9d8p7/6Zlnnslcu/XWWxcxSeG1adMmLrroonj22WejY8eOma+7/fbb8z54u/3222eufe211/Lam/rpqKOOilatWuWsq6mpidGjR+esGzFiRKa+e+yxR/Tu3TtTbW1lfT0vXLgwpkyZUtQs9UE+97587qnFUO7+AAAAAAAAAAAAAED5GBwAAACN1EknnZS5Nk3TvA/hl9uMGTPib3/7W+b6Hj16xKBBg4qYaM2efPLJkvf8T2PHjs1UV1FR0eAGB3xmu+22i0ceeSSaNm2aqX7mzJnx9ttv59WjX79+0aZNm0y1L7zwQl57Uz9VV1fHkUcemal25MiR61z/4IMP4pFHHsm0VykGnOyyyy6ZaxvD67lLly7Rvn37TLXlvqeXuz8AAAAAAAAAAAAAUD4GBwAAQCN1zDHHZHq37M+MGDEi3nnnnSImKqwf/ehHsXLlysz1J5xwQiRJUsREa/bCCy/Exx9/XPK+n7nnnnsy1W233XZRXV1d5DTF079///jud7+buf6ll17Ka/+KiorYeeedM9VmPSBO/Tds2LBMdW+99VY899xza10fPXp01NTU5NynZcuWcfTRR2eNV2v9+/ePFi1aZKptLK/ngQMHZqq79957i5xk7ZYvXx5///vfy9YfAAAAAAAAAAAAACgvgwMAAKCRat26dZx00kmZ61euXBlnn312ERMVzmuvvRY33nhj5vqWLVvGySefXMREa1dTUxN33XVXWXqPHz8+3n777Uy1++67b5HTFN9pp52WuXby5Ml573/QQQdlqps0aVK8+eabee9P/bP33ntHz549M9WOGDFirWsjR47MtMfhhx8erVu3zlRbF1VVVbHffvtlqr333nszDT1o6LLeAydMmBBvvfVWkdOs2d///vdYtGhRWXoDAAAAAAAAAAAAAOVncAAAADRi5557brRs2TJz/b333hv3339/ERPVXU1NTZx55pl5HWT9xje+EZ07dy5iqnX705/+VO/7Zj1EXJ917do1ttpqq0y1s2bNynv/r3zlK5lrb7jhhrz3p/5JkiSGDh2aqfbmm2+O5cuXf+7x5557LvNB8+HDh+eVry6yvp4/+uijev9zoRD233//zLXluqdfe+21ZekLAAAAAAAAAAAAANQPBgcAAEAj1rlz5/jGN76R1zUnnHBCfPzxx0VKVHe/+tWv4p///Gfm+urq6vje975XxES5vfjii/HMM8+UtOfChQszv8v5hhtuuF4MDoiI6N69e6a6JUuW5L13r169YrvttstUe8MNN8TChQvz7kH9M3To0EiSJGfd/Pnz4+677/7c4yNGjMjUp3v37rHPPvvkG6/WBg8eHJWVlZlqr7zyyiKnKb8tttgi8+CRG2+8seTf35MmTYoHH3ywpD0BAAAAAAAAAAAAgPrF4AAAAGjkvve970W7du0y13/88ccxfPjwqKmpKV6oWnrppZfiggsuyOua7373u9GhQ4ciJcruRz/6UUn7XX755TFv3rxMtUceeWRUVVUVOVFptGnTJlNd06ZNa7X/Kaeckqlu/vz58bOf/axWPahfevToEV/4whcy1f7vkIDly5fHzTffnOnarAMKCqVDhw5xxBFHZKp97LHH4pFHHilyovL72te+lqlu3rx5ccUVVxQ3zP/40Y9+VC9/LgMAAAAAAAAAAAAApWNwAAAANHIdOnSIX/3qV3ld88ADD8R3vvOdIiWqnWnTpsXgwYNjxYoVma/p169fnHvuuUVMld2jjz4a9913X0l6TZs2LX79619nrh86dGgR05TWhx9+mKmudevWtdr/+OOPzzyI4ze/+U289dZbtepD/TJs2LBMdQ8//PB/vQbvvvvumD9/fs7rkiQpy/fhN7/5zbxqly5dWsQ05XfcccdFkyZNMtX+6le/iunTpxc50aeeeeaZuOWWW0rSCwAAAAAAAAAAAACovwwOAAAA4sQTT4z9998/r2uuvPLKvA6fF9O8efPi4IMPjhkzZmS+pqKiIq677rpo1qxZEZPl57TTTotPPvmk6H1OPvnkWLhwYabaXXfdNQYMGFDkRKWRpmm88847mWq7d+9eqx6tWrWK0047LVPtsmXL4phjjolly5bVqhf1xxFHHBHV1dU561avXh1//vOf//1/jxgxItP+AwcOjF69etU2Xq0NGDAgdt9990y1b731Vpx11llFTlRePXr0iMMPPzxT7YIFC+Lkk08ucqJP7yMnnHBC1NTUFL0XAAAAAAAAAAAAAFC/GRwAAABERMS1116b6eDrf/rud78bl1xySZESZTNjxozYa6+94o033sjrujPOOCP22GOPIqWqnenTp8dxxx1X1AOgl1xySTz00EOZ688+++w69Vu1alWdri+kRx999L/e7X1dttpqq1r3+cEPfhCdOnXKVPvaa6/FMcccU68+T+SvVatWcfTRR2eqHTlyZEREfPjhh/Hwww9numb48OG1zlZXl19+eebaP/3pT/GLX/yiiGnK75xzzslc++CDD8ZPf/rTIqaJOOmkk+Ktt94qag8AAAAAAAAAAAAAoGEwOAAAAIiIiJ49e8aoUaMiSZK8rrvgggvitNNOixUrVhQp2dq9/vrrsccee+Q9NGD33XePX/7yl0VKVTf3339/nHHGGZGmacH3Hj16dPzoRz/KXL/DDjtkfnfttTnwwAPjkksuiU8++aRO+9RVTU1N/OxnP8tU26JFi9hll11q3atNmzZx8cUXZ66/55574uijj46lS5fWumehvfzyy3HkkUfG4sWLyx2lwRg2bFimujfffDNeeOGFGD16dKxevTpnfatWreLII4+sY7ra23333eOrX/1q5vrvf//7cdlllxUxUX7SNI277747TjvttILst/POO8fgwYMz119wwQUxevTogvT+X+edd1785S9/KcreAAAAAAAAAAAAAEDDY3AAAADwb1/5ylfyOlj+mauvvjp22223kr7r8e9///vYZZddYurUqXld16VLl7jjjjuiadOmxQlWAH/84x/jhBNOiOXLlxdszz/84Q8xbNiwvAYSXHHFFVFRUbf/2Th79uy44IILonv37vHd73433n333TrtV1sXXXRRjBkzJlPtvvvuGy1atKhTv//7v/+LL3zhC5nr77zzzth7771jypQpdepbF2maxoMPPhgHHXRQ7LjjjnH77bcXZYDF+mrgwIGx+eabZ6odMWJEjBw5MlPtUUcdFdXV1XWJVmdXXHFFdOrUKXP9ueeeG8OGDYtFixYVMdW6LVmyJK677rrYdttt48tf/nK88MILBdv78ssvz/wzJE3TGDZsWPz+978vWP9Vq1bFN7/5zczDUAAAAAAAAAAAAACAxsHgAAAA4L/8+Mc/rtW7W48bNy522GGHOO+882LBggVFSPap559/Pvbee+8488wzY9myZXld27Jly7jjjjtio402KlK6/DRv3nytayNGjIg999wzxo8fX6cec+bMieOOOy7OOOOMqKmpyXzdkCFDYuDAgXXq/Z8++eST+PWvfx29e/eOgw46KP72t7/l/fWrjVWrVsW3vvWtuPjiizNfc/LJJ9e5b0VFRfz5z3+O9u3bZ77mhRdeiG222SauuOKKWLFiRZ0zZPXee+/FZZddFptvvnkcfPDB8dBDD5Ws9/pm6NChmequv/76zN/bw4YNq0OiwujcuXOMGDEikiTJfM3IkSNjm222iQceeKCIyT7vxRdfjG9961uxySabxP/93//FG2+8UfAem2++eZx99tmZ62tqauLMM8+MY489NmbPnl2n3pMmTYp99tknfve73621Zl0/WwAAAAAAAAAAAACA9ZfBAQAAwH9JkiT+8pe/xODBg/O+dunSpfGzn/0sNttss7joooti+vTpBcmUpmk89thjcfjhh8euu+4a//znP/Peo2XLlnHffffFrrvuWpBMhXD44YfHNttss9b1F198Mfr37x+nn356TJw4Ma+958yZE5dddln07t07brrppryu7d69e0HfHfs/pWkaDz30UBxzzDHRuXPnGDp0aNx2221FGTbxwAMPxG677RZXXnll5mu23HLLOPTQQwvSf5NNNolRo0ZFkyZNMl+zePHi+Pa3vx19+/aNq6++umhDOCZMmBC//vWvY88994yePXvGueeeG5MnTy5Kr8bk61//elRU5P6nluXLl2far1evXrHXXnvVNVZBHHTQQfGDH/wgr2umTp0ahxxySAwcODDuueeeWL16dcFzrV69Op566qn44Q9/GH369Imdd945rrzyypg/f37Be/2nCy+8MHbaaae8rvnrX/8avXv3jp/97GcxZ86cvK6dMmVKfPvb346tttoqxo4du9a6Ll26xCmnnJLX3gAAAAAAAAAAAADA+qGy3AEAAID6p2nTpnHbbbfFUUcdFXfffXfe18+ePTsuvPDC+MlPfhIHHHBAHHTQQbH//vvHFltskXmPpUuXxtixY+PRRx+NO+64IyZNmpR3js98NjRgn332qfUexVBVVRU33HBD7Lbbbms9ULtq1ar44x//GFdffXXsvvvuceCBB8bOO+8cffv2jQ4dOkSrVq1i2bJlMX/+/Jg0aVK88sor8cgjj8Sjjz4ay5YtyztTZWVl/OUvf4m2bdvW9enltGDBghg1alSMGjUqqqqqYtddd40999wz9thjj9huu+1i0003zWu/NE3jlVdeifvuuy9uv/32ePXVV/POdOWVV2Y6+J3VwQcfHNdcc02cdNJJeV03derUOO200+Lss8+OQw89NA4++ODYZ599omvXrnlnWLhwYUyYMCGef/75ePbZZ+PJJ5+M999/P+99yK1bt26x7777xqOPPlqQ/YYOHRpJkhRkr0L46U9/Gh988EGMGjUqr+vGjh0bY8eOjY033ji+8pWvxMEHHxwDBgyIDTbYIO8MH3/8cbzxxhvx7LPP/vv1XOwhAWtSVVUVN910U+y4446xcOHCzNfNnz8/zjvvvLj44otjv/32i0GDBsV2220XvXv3jrZt20bz5s1jyZIlMWfOnHj77bfjpZdeioceeiieeuqpqKmpybn/H//4x3j55Zfr8tQAAAAAAAAAAAAAgAbK4AAAAGCNqqqq4tZbb42TTjop70Oin1m9enU8+OCD8eCDD0ZERLt27aJv377Rt2/f6NSpU1RXV0d1dXWsXLkyFi1aFAsXLoypU6fG22+/He+++26sWrWqzs+jQ4cOcccdd8TAgQPrvFcx7LTTTnHJJZfEueeeu866NE3j6aefjqeffrqoea699trYY489itpjTVauXPnvw8WfadOmTfTt2zc22WST6NKlS7Rv3z6aN28ezZs3jxUrVsTixYtj0aJFMXPmzHj77bfjnXfeicWLF9c6wxlnnBH7779/IZ7OfznxxBNj7ty58b3vfS/vaxcvXhy33HJL3HLLLRHx6et5q622iq5du0aXLl2iuro6WrRoEUmSxPLly2PZsmUxb968+Oijj2LmzJnx7rvvxowZMwr9lFiHYcOGFWRwQJIkMXTo0AIkKpwkSeL666+PTz75pFZDZT788MO46qqr4qqrroqIiB49ekTfvn1j0003jY022ihatmwZzZs3j9WrV8fy5ctj6dKlMWfOnJg5c2Z8+OGH8c4775RlSMDa9O7dO2677bY45JBD8v55tWzZsrj//vvj/vvvL1ieU089NQYPHmxwAAAAAAAAAAAAAAA0UgYHAAAAa1VVVRUjR46MHXbYIc4+++w6H+SfP39+PPfcc/Hcc88VKOG67bDDDnHnnXdGt27dStKvtn7wgx/E22+/HSNGjChrjgsvvDCGDx9e1gz/acGCBfHCCy/ECy+8UPRee++9d1x++eVF2/+cc86JDTbYIE499dRYvXp1rfeZPXt2PPHEEwVMRqEdfvjh0aZNm1iwYEGd9tlnn32ie/fuBUpVOJWVlXHbbbfFqaeeGtdff32d9po6dWpMnTq1MMHK5IADDohrr702TjzxxEjTtKw5fve735WtPwAAAAAAAAAAAABQfhXlDgAAANR/Z511Vjz66KOxySablDtKZsOHD4+xY8fW+6EBn7n22mvj0EMPLVv/Sy+9NH784x+XrX857bnnnnHfffdF06ZNi9rnpJNOirvvvjvatWtX1D6UV4sWLeKYY46p8z7Dhg2re5giqaysjOuuuy4uvvjiqKjwT0vDhw+PkSNHRmVleeZz7rLLLnHrrbeWrT8AAAAAAAAAAAAAUD/4624AACCTvffeOyZMmBBnnHFGvT4o2qtXr3j44YfjhhtuiBYtWpQ7TmZVVVVx5513xkknnVTSvs2aNYvrr78+zj333JL2rS+GDBkSjzzySFRXV5ek3yGHHBKvvfZa7L333iXpR3nU9dB/69at44gjjihMmCK64IIL4h//+Ed079693FHK7vjjj4+777472rZtW9K+X/rSl2LMmDHRpk2bkvYFAAAAAAAAAAAAAOqf+nvaBwAAqHdat24dv/vd7+KZZ56JAQMGlDvOf6muro7zzjsv3njjjRg0aFC549RKZWVl/OlPf4orrrgiWrZsWfR+/fr1i+eeey5OOOGEoveqb9q1axfXX399jB49Opo3b17S3l27do3HH388fve730X79u1L2jur9u3bx7e+9a2Sf27WFwMGDIg+ffrU+vqjjz66JPeAQhg4cGC8+uqr8c1vfjOqqqrKHWeNevfuHSeffHLR+xx88MHxyiuvxG677Vb0XpWVlXH++efHnXfe2WBeKwAAAAAAAAAAAABAcRkcAAAA5G2XXXaJp556Kh5//PHYb7/9ypqlXbt2ccEFF8TUqVPjpz/9abRo0aKseQrhrLPOitdee61oAxBat24dl1xySbz88svRv3//ovT4zO9///v41re+Fb179y5qn6wqKyvjpJNOivHjx5d1YEJFRUWcccYZMWnSpDjnnHOiurq6bFk+07Rp0zj00EPjr3/9a3zwwQfxm9/8JiorK8sdq8EaNmxYWa4th7Zt28aVV14Zb775Zhx55JFRUVH+f27aYIMN4oQTTogxY8bEO++8U5LBARERPXr0iLFjx8Yf/vCH6NixY1F67LLLLvHiiy/GT37yk2jSpElRegAAAAAAAAAAAAAADY8TAAA0ej/+8Y/LHQGgwdpnn31in332iVdeeSVGjRoVt9xyS8yYMaPofSsqKmKvvfaKY489No455pho06ZN0XuW2mabbRYPP/xwPPvss/GLX/wi7r777qipqanTnhtvvHGcdNJJ8Y1vfCM6d+5coKTrtueee8aee+4Zv/nNb2LixIlx3333xf333x9PP/10LF26tCQZIj49RPz1r389zjzzzNhss81K1jeXdu3axS9+8Ys4//zz48Ybb4w//vGP8fbbb5esf9u2bWPQoEFx6KGHxuDBg2ODDTYoWe/13de//vU4//zz8/6+3XzzzWPPPfcsUqri6t27d9x6660xderUuOqqq+LGG2+M2bNnl6x/165d46CDDorBgwfHoEGDomnTpiXr/Z+aNGkSp59+egwZMiSuvvrquPrqq2PKlCl13nfQoEFxzjnnFG2oDAAAAAAAAAAAAADQsCVpmpY7A0CjkCTJ7hHx9H8+9vTTT8fuu+9epkSFM3Xq1M8d/GvRokX06NGjPIEAKJuampp44okn4oEHHognn3wyXn755Vi5cmVB9u7cuXPssccesffee8cRRxwRm2yySUH2bShmzZoVDzzwQNx3333x3HPPxbRp03JekyRJ9OnTJwYNGhQHHnhgHHDAAVFVVVWCtLmtXLkyXnnllXj22Wfj2WefjWeeeaYgB2v/U9euXWP//fePww47LL74xS9G8+bNC7p/sbz22mtx9913x7333hvjxo2LVatWFWzvjh07xi677BIDBw6MgQMHxi677BKVlWYKUhyrVq2Kf/7zn3H33XfHgw8+GBMnTizY3kmSRM+ePWO33XaLgQMHxl577RVbbrllwfYvpJqamvjHP/4RDzzwQDz88MMxfvz4WL16dc7rNtpoo9hpp53ikEMOiUMPPTQ23XTTEqQFAID1k99jAAAAAAAUX5Ik5Y6w3nMGDMjC/bj43I+hcXrmmWdiwIAB//vwgDRN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AAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgsOMHPQAAAAAAAAAAAAAAAJyKqjroEU573X3QIwAAAAALOHbQAwAAAAAAAAAAAAAAAAAAAACnTjgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAY7PhBDwAAAAAAAAAAAAAwTVUd9Ainve4+6BEAAAAAAMY4dtADAAAAAAAAAAAAAAAAAAAAAKdOOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAA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AAAAAAAAALDAFAcAAAAAAAAAAAAAAAAAAADAAlMcAAAAAAAAAAAAAAAAAAAAAAtMcQAAAAAAAAAAAAAAAAAAAAAsMMUBAAAAAAAAAAAAAAAAAAAAsMAUBwAAAAAAAAAAAAAAAAAAAMACUxwAAAAAAAAAAAAAAAAAAAAAC0xxAAAAAAAAAAAAAAAAAAAAACwwxQEAAAAAAAAAAAAAAAAAAACwwBQHAAAAAAAAAAAAAAAAAAAAwAJTHAAAAAAAAAAAAAAAAAAAAAALTHEAAAAAAAAAAAAAAAAAAAAALDDFAQAAAAAAAAAAAAAAAAAAALDAFAcAAAAAAAAAAAAAAAAAAADAAlMcAAAAAAAAAAAAAAAAAAAAAAtMcQAAAAAAAAAAAAAAAAAAAAAsMMUBAAAAAAAAAAAAAAAAAAAAsMAUBwAAAAAAAAAAAAAAAAAAAMACUxwAAAAAAAAAAAAAAAAAAAAAC0xxAAAAAAAAAAAAAAAAAAAAACwwxQEAAAAAAAAAAAAAAAAAAACwwBQHAAAAAAAAAAAAAAAAAAAAwAJTHAAAAAAAAAAAAAAAAAAAAAALTHEAAAAAAAAAAAAAAAAAAAAALDDFAQAAAAAAAAAAAAAAAAAAALDAFAcAAAAAAAAAAAAAAAAAAADAAlMcAAAAAAAAAAAAAAAAAAAAAAtMcQAAAAAAAAAAAAAAAAAAAAAsMMUBAAAAAAAAAAAAAAAAAAAAsMAUBwAAAAAAAAAAAAAAAAAAAMACUxwAAAAAAAAAAAAAAAAAAAAAC0xxAAAAAAAAAAAAAAAAAAAAACwwxQEAAAAAAAAAAAAAAAAAAACwwBQHAAAAAAAAAAAAAAAAAAAAwAJTHAAAAAAAAAAAAAAAAAAAAAALTHEAAAAAAAAAAAAAAAAAAAAALDDFAQAAAAAAAAAAAAAAAAAAALDAFAcAAAAAAAAAAAAAAAAAAADAAlMcAAAAAAAAAAAAAAAAAAAAAAtMcQAAAAAAAAAAAAAAAAAAAAAsMMUBAAAAAAAAAAAAAAAAAAAAsMAUBwAAAAAAAAAAAAAAAAAAAMACUxwAAAAAAAAAAAAAAAAAAAAAC0xxAAAAAAAAAAAAAAAAAAAAACwwxQEAAAAAAAAAAAAAAAAAAACwwBQHAAAAAAAAAAAAAAAAAAAAwAJTHAAAAAAAAAAAAAAAAAAAAAALTHEAAAAA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AAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGOzQphcAAAAAgONZVW16hX2vuze9AgAAAAAAAAAAAACMdmDTCwAAAAAAAAAAAAAAAAAAAABHTzgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMEObXoBAAAAAAAAAAAAAADg+HTJJZdseoV97+KLL970CgAAAOwDBza9AAAAAAAAAAAAAAAAAAAAAHD0hAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAAAAAAAABgMOEAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAIDBhAMAAAAAAAAAAAAA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gwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAAMJhwAAAAAAAAAAAAAAAAAAAAAgwkHAAAAAAAAAAAAAAAAAAAAwGDCAQAAAAAAAAAAAAAAAAAAADDYoU0vAAAAAAAAAAAAAABf7ZJLLtn0CvvexRdfvOkVAAAAAIA9cmDTCwAAAAAAAAAAAAAAAAAAAABHTzgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAAAGAw4QAAAAAAAAAAAAAAAAAAAAAYTDgAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAgMGEAwAAAAAAAAAAAAAAAAAA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AAAAAAAAAAAAAAAAAADAhAkOAAAAAAAAAAAAAAAAAAAAgAkTHAAAAAAAAAAAAAAAAAAAAAATJjgAAAAAAAAAAAAAAAAAAAAAJkxwAAAAAAAAAAAAAAAAAAAAAEyY4AAAAAAAAAAAAAAAAAAAAACYMMEBAAAAAAAAAAAAAAAAAAAAMGGCAwAAAAAAAAAAAAAAAAAAAGDCBAcAAAAAAAAAAAAAAAAAAADAhAkOAAAAAAAAAAAAAAAAAAAAgAkTHAAAAAAAAAAAAAAAAAAAAAATJjgAAAAAAAAAAAAAAAAAAAAAJkxwAAAAAAAAAAAAAAAAAAAAAEyY4AAAAAAAAAAAAAAAAAAAAACYMMEBAAAAAAAAAAAAAAAAAAAAMGGCAwAAAAAAAAAAAAAAAAAAAGDCBAcAAAAAAAAAAAAAAAAAAADAhAkOAAAAAAAAAAAAAAAAAAAAgAkTHAAAAAAAAAAAAAAAAAAAAAATJjgAAAAAAAAAAAAAAAAAAAAAJkxwAAAAAAAAAAAAAAAAAAAAAEyY4AAAAAAAAAAAAAAAAAAAAACYMMEBAAAAAAAAAAAAAAAAAAAAMGGCAwAAAAAAAAAAAAAAAAAAAGDCBAcAAAAAAAAAAAAAAAAAAADAhAkOAAAAAAAAAAAAAAAAAAAAgAkTHAAAAAAAAAAAAAAAAAAAAAATJjgAAAAAAAAAAAAAAAAAAAAAJkxwAAAAAAAAAAAAAAAAAAAAAEyY4AAAAAAAAAAAAAAAAAAAAACYMMEBAAAAAAAAAAAAAAAAAAAAMGGCAwAAAAAAAAAAAAAAAAAAAGDCBAcAAAAAAAAAAAAAAAAAAADAhAkOAAAAAAAAAAAAAAAAAAAAgAkTHAAAAAAAAAAAAAAAAAAAAAATJjgAAAAAAAAAAAAAAAAAAAAAJkxwAAAAAAAAAAAAAAAAAAAAAEyY4AAAAAAAAAAAAAAAAAAAAACYMMEBAAAAAAAAAAAAAAAAAAAAMGGCAwAAAAAAAAAAAAAAAAAAAGDCBAcAAAAAAAAAAAAAAAAAAADAhAkOAAAAAAAAAAAAAAAAAAAAgAkTHAAAAAAAAAAAAAAAAAAAAAATJjgAAAAAAAAAAAAAAAAAAAAAJkxwAAAAAAAAAAAAAAAAAAAAAEyY4AAAAAAAAAAAAAAAAAAAAACYMMEBAAAAAAAAAAAAAAAAAAAAMGGCAwAA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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Calibrate model\n", + "### model can be calibrated by training an isotonic regression on a portion of the testing set. \n", + "\n", + "In order to split the predictions from the test set into a new test/train set for the classifier, pull in the subset information from the postgres data and merge it with the predictions from the MLP model." + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 4, + "source": [ + "calibrated_results = calibrate_onc(\n", + " data, \n", + " path='./results/',\n", + " model_name='mlp')" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "accuracy - original/calibrated: 0.7457565121970336 / 0.9254069306672008\n", + "ROC AUC - original/calibrated: 0.8139406743284859 / 0.8137064708850548\n", + "avg precision - original/calibrated: 0.2595816025475993 / 0.25312729484254326\n", + "\tBrier: 0.061\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Plot the calibration curve of the calibrated results" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 8, + "source": [ + "onc_plot_calibration_curve(\n", + " y_true=calibrated_results.y, \n", + " y_proba=calibrated_results.p_calibrated, \n", + " label='Multilayer Perceptron Results Calibrated',\n", + " filename='./results/mlp_calibration_curve_calibrated')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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Bd9//z09e/akQIEC3HjjjVSpUoXg4GB8fHyYP38+CxYsyFDMCe+hN95445L1Et5DCbFe7phykiWLJpG3JIr53X333cczzzzDwIED2b9/Py+++OJl1/Hx8Un1n28CT1+62e3w4cO8++671K1bl6VLl6ZqqZ46darH9a6//noaNGiQeKHLzJkzOXbsGM8880yyL7OEbqIGDRok/heeXtl9oVZCbOvWraNevXoZWtdTbAkJUnq+pBP2fSVzPqb1j2TChWBpdc1diqfjSdhOWheYJXR3Xsn+roSIUKpUKZ577jmio6N58803GTZsGG+//XayOLp168Z3332X7u3ef//93H///Rw/fpylS5fy/fffM3HiRG666SY2b96c2MqYU5/d8uXLM2HCBFSVjRs38ttvv/HBBx8watQo4uPjGT169CXXv+GGGwDXP9lxcXHpbpGcNm0aK1eupHfv3kRGRiZb9s8//2T4n720XMn7N62/BS+88AIBAQGsXr2aWrVqJVv24IMPsmDBggzFlrDvEydOUKRIkXTXv9wx5SSbA8XkaWn9Z5bZq1+zU9GiRenZsyf79u0jODiYu+6667LrhIaGcujQIWJjY1MtW716dbr3nfAFkNFWmpT+/vtv4uPjad++fapEcd++fZecqmPQoEGcO3eOyZMn88knnyAiDBgwIFmdQoUKUadOHTZs2EBUVFSmYs1qjRs3BmDRokVZur1Zs2Z5nKIlq/bt6QswLi6OxYsXAyRr3c7M+yRhO55a9i9evJgYu6erxbPbiy++SIkSJXj//ffZuXMn4JrbL+Eqe0+fr8spWrQonTp14tNPP6V3795ERUWxcOHCxOU5/dkVEerUqcPDDz+c2Pr8ww8/XHb7LVu2pEaNGuzbty9V0pdSfHx84vEkzODQvXv3VPUymnRdiqdtnThxgrVr1yZOqZVe27dvp3bt2qnWiY+PT/w8pOTj45Pma5/Rz2XCe/9yn8mcZMmiydMOHjzo8coub5s2J6WXXnqJ77//nlmzZqVr/Oh1113HxYsXU/0RnzRpEkuWLEn3fosXLw7Anj17MhZwCglTdyxevDjZH9DTp0/Tv3//S96F5u677yYkJITXX3+dBQsWcOONN3ocIP/EE09w4cIF+vbt67EFJjo6OsOtjlmhT58+iReTrFy5MtXy+Pj4DA2BaNSoEU2bNmXt2rW89tprqZYfO3Ysca66iIgImjdvznfffcfEiRM9bm/9+vUcPnw4Vflvv/2Wao7P999/nx07dtC6detk4xUz8z7p2rVr4pRcCeMxE4wZM4adO3fSrl27dI8Hy0qFCxfmmWeeITY2NnHMp5+fHw8//DD//PMPjzzyCGfPnk213j///MPGjRsTn8+bNy/ZmLwECa970ovVcuKzu2HDBo+tVAll6bl4zsfHh48//hg/Pz8eeeQRvvjiC4/HuHHjRtq3b5/YEp7wtyDle/7vv//2eMHWlfr888/5448/kpWNGDGCEydOcNddd6W6uOVSwsPD2bZtW7L5D1WVESNGJDvPSRUvXpy9e/d6XDZ48GD8/f15/PHHE8csJ3XhwoVkiWTTpk2pUaMGCxcuZNq0acnqJnwmc5p1Q+dxcXFxvPfee5QpU8bu4ZyLVKxYMUNflg8//DCRkZH85z//Ye7cuVSoUIG1a9eybNkybr755lRJQFpat26Nj48Pzz77LH/99RehoaEADBs2LEPxly5dmjvvvJOvvvqK+vXr0759e06cOMHs2bMpUKAA9evXT/Nq94IFC9KrVy/effddwNXt40nfvn1Zs2YNH374IVWqVOGmm26iYsWKREVFsXPnThYuXEifPn346KOPMhR7ZhUvXpz//e9/dOvWjcaNG9O2bVvq1KmDiLB3716WLVuWLMFLjy+++IJWrVrx3HPP8e2339KqVStUlW3btvHrr7+yefPmxC/lL7/8kjZt2tCvXz/effddrr/+eooWLcq+ffv4888/+euvv1i2bFmqi3y6dOlCt27d6NatW+KcbglzraacSLpt27a88cYb9O/fnx49elC4cGGKFi2a7Cr2tBQqVIiJEydy22230bJlS2677TYqVqzImjVr+PXXXyldujQff/xxul+brDZo0CDefPNNvvjiC4YOHUqtWrV44YUXWLduHR999BHTp0+nTZs2lCtXjsOHD7Nt2zaWLFnCf//738QLlrp160ahQoVo3Lgx4eHhqCqLFi1i1apVNGrUiHbt2iXuLyc+u7Nnz+app56iSZMmVK9enZIlS7Jv3z6mTZuGj48PTz31VLr20bJlS7777jvuu+8+7rvvPkaPHk2rVq0oUaIEJ06cYPXq1axYsYLg4ODE8ckJ84y+/fbbrF+/ngYNGrBnzx5mzJhB586dM/2PaYKOHTvSrFkzbr/9dsqUKcPixYtZvHgx4eHhvPrqqxna1uOPP87AgQNp0KABPXr0wN/fnyVLlrBx40a6dOnC9OnTU63Ttm1bvvrqK7p06ULDhg3x9/enRYsWtGjRgpo1azJx4kT69u1LnTp16NChA9WrVyc2NpY9e/awaNEiSpQowebNmwFX6++ECRO48cYb6dGjR7J5FufOnUuHDh345ZdfsuR1S7e05tSxR96YZ/HixYvauHFjvf/++1VVtVSpUh7nHCxVqlSOx5YT8yzmBiSZZ/Fy0ppnUVV10aJF2rx5cw0KCtLChQtrp06ddN26dRmas0xV9fPPP0+cjy/h/ZEgI/MsxsTE6HPPPadVqlTRwMBALV++vA4aNEiPHj2aOM9ZWtauXauAlilT5rLzIU6fPl07d+6sJUqUUH9/fy1VqpRee+21+vzzz+umTZvSdcyXc6l5Fi+1zkMPPaRVq1bVwMBALVy4sNaoUUPvvfde/f7775PVvdy8haqqR48e1aefflqrV6+ugYGBGhISotdcc40+99xzGhMTk6zuyZMn9b///a82bNhQg4ODtUCBAhoeHq6dOnXSjz/+WE+fPp1YN2HewcjISJ0+fbo2btxYCxYsqCEhIdq9e/dkc1sm9dZbb2nNmjU1ICAg1WtzufOrqrpy5Urt2rWrhoWFqb+/v1aoUEEHDhyo+/fvT1X3Uq/PvHnzFNDhw4dfcn8pj9fTPIsJ3n33XQW0e/fuiWXx8fE6efJkbdOmjYaGhqq/v7+WLVtWmzVrpv/97391z549iXXHjRunXbt21cqVK2tQUJCGhoZq/fr19bXXXvM4p2F2f3Y3btyojz/+uDZq1EjDwsI0ICBAK1WqpD169NAlS5ak63VL6ujRozpq1Cht0qSJFitWTP38/DQ0NFSbNGmio0ePTjW/5J49e/Tuu+/WsmXLaoECBbR27dr62muvaWxsbIbmjLxc3cjIyMTjDwsL0969e+uBAwdSxZ+e92fCtgoWLKjFixfXrl276p9//plmbIcOHdK77rpLS5YsqT4+Ph7fk3/++af26tVLK1asqAEBARoaGqp16tTRAQMG6Ny5c1PFsHr1ar3pppu0UKFCWqhQIW3btq0uXbr0svPhppQV8yyKemhGzmtEpDbwHtAEOA6MB0aq6iUHd4hICDAG6Iqry34G8IiqHrvcPiMiIjQj402yUkxMDG+++SZDhgyhUKFCiYNqve0OLJs2bcrQOBKTf0yaNIk+ffowbNiwyw68N5mT8FpHRkYmu/uEMSZvSO93rYisUVWPl+rn+TGLIhIKzMH1X9atwChgCJCeS7C+BloBDwC9gWuBH7IhzCz1559/MmrUqMTJgkNCQrwuUTQmLRcvXuTtt9/Gz88vzS5oY4wxOSc/jFkcCAQB3VX1JDBbRIoAI0TkdXdZKiLSBGgPtFTVhe6y/cAKEWmnqnNyKP50OXjwIMuXL6dr1640adKErVu3UqVKFafDMibdFi9ezIIFC5g/fz7r169n8ODBV3S3CGOMMVkrz7csAh2BWSmSwq9wJZCpp0dPvt6hhEQRQFVXAjvdy7zKc889R+/evTl50nWYliia3GbOnDkMGzaM33//nf79+/P66687HZIxxhjI+2MWReQw8KGqjkhRHgOMUFWPU6qLyNdASVVtlaL8JwBV7Xyp/ebEmMVNmzYREhJC2bJlOXjwICdOnKBGjRrZus+sZGMWjTHGmOxlYxbTJxTXRS0pRbuXZfV6OeLUqVM0adKEZ599FnBNVZKbEkVjjDHG5A75YcxijhGRAcAAINsnlC1cuDBffPHFJW+EbowxxhiTWfmhZTEa8HST0VD3sixbT1U/UdUIVY1IuO9ndrr55ptTTaxrjDHGGJOV8kOyuBmombRARCoABd3L0r2eW83LrGcyIK+PmTXGGGOcklXfsfkhWZwJ3CQiSW+wewdwFrjUXcxnAqVF5IaEAhGJAK5yLzOZ5Ovrm3izeWOMMcZkrdjYWHx9fTO9nfyQLH4EnAe+E5F27nGFI4C3k06nIyLbRWRCwnNVXQb8CkwWke4i0hWYAiz2tjkWc6vChQsnTvVjjDHGmKx18uRJChcufPmKl5Hnk0VVjQbaAr7AdFx3bnkHGJ6iqp+7TlJ34Gp9nAhMBtYA3bIz3vykWLFiREdHc/ToUS5cuGBd0sYYY0wmqSoXLlzg6NGjREdHU6xYsUxvM8/Ps+gUJ+8NnZucP3+eqKgoTp06RVzcJW/VbYwxxph08PX1pXDhwhQrVozAwMB0rXOpeRZt6hzjqMDAQMqUKUOZMmWcDsUYY4wxHuT5bmhjjDHGGHPlLFk0xhhjjDFpsmTRGGOMMcakyZJFY4wxxhiTJksWjTHGGGNMmixZNMYYY4wxabJk0RhjjDHGpMmSRWOMMcYYkya7g0s2EZEjwO5s3k0YcDSb92Eyzs6L97Fz4p3svHgfOyfeJ6fOSSVVLeFpgSWLuZiIrE7r1jzGOXZevI+dE+9k58X72DnxPt5wTqwb2hhjjDHGpMmSRWOMMcYYkyZLFnO3T5wOwHhk58X72DnxTnZevI+dE+/j+DmxMYvGGGOMMSZN1rJojDHGGGPSZMmiFxKR2iIyV0TOiMgBERklIr7pWC9ERCJFJFpETojIFBEpnhMx5wdXcl5E5Fr3OdnuXm+LiAwXkQI5FXdedqWflSTr+4jIahFREbk5O2PNTzJzXkSku4isEpGzInJMRH4RkeDsjjmvy8T3SoSI/CoiUe7HHBG5PidizutEpKqIfCwif4pInIjMT+d6Of5d75edGzcZJyKhwBxgI3ArUAV4C1diP+wyq38NVAceAOKB14AfgObZFG6+kYnzcoe77mvANqAeMNr9s0c2hpznZfKzkuABoHy2BJhPZea8iMgDwPvA68BTQCjQBvuuypQrPSciUsG93u/Afe7ip4DZInK1qmb3XMJ5XR2gE7Ac8M/Aejn/Xa+q9vCiB/AsEA0USVL2NHAmaZmH9ZoACrRIUnadu6yd08eV2x+ZOC9hHsoGuM9LJaePKzc/rvScJKkbChwB+rnPx81OH1NeeGTmswKcAvo7fQx57ZGJczIQiANCkpSFusv+4/Rx5fYH4JPk9/8B89OxjiPf9dYN7X06ArNU9WSSsq+AIKDlZdY7pKoLEwpUdSWw073MZM4VnRdV9TTr/h/un2WzLrx86Uo/KwlGA0uAudkQW352pefldvfPz7IrsHzsSs+JP3ARiElSdtpdJlkdZH6jqvFXsJoj3/WWLHqfmsDmpAWqugfXf4A1M7Ke26bLrGfS50rPiydNcHUd7Mia0PKtKz4nIlIP6As8mW3R5V9Xel6uB7YA/URkn4jEisgKEWmafaHmG1d6Tr5113lLREqKSEngHVytlN9kU6zm0hz5rrdk0fuEAsc9lEe7l2X1eiZ9suT1FZHSuMYIfa6qh7MmtHwrM+fkPeB9Vd2e1UGZKz4vpYEauD4fzwBdcLVo/SIipbI4xvzmis6Jqh4AWuMaX33I/egO3KSqR7I+TJMOjnzXW7JoTA4RkQBcA5NPA487HE6+JSJ34kpKXnI6FpOMAIWAfqo6RVV/AbriGh832MnA8isRKYOrBXENri7Oju7ffxKRik7GZnKWJYveJxoI8VAe6l6W1euZ9MnU6ysiAkzGffWbqto5ybwMnxMR8QfewHX1oI+IFAWKuBcHi0jhbIgzv8nM3zAF5icUuMfYrQFqZ2F8+dGVnpOncI1b7Kmqv7gT+B64EngbwuEMR77rLVn0PptJMe7APX1BQTyPU0hzPbe0xjeYjLnS85JgDK4pK25VVTsfWeNKzkkwrqly3sb1hzUaWOde9hX/XnxkrtyVflY24WpdTHnhhOAa42uu3JWek5rABlWNTShQ1QvABlzT75ic58h3vSWL3mcmcFOKFo47gLPAgsusV1pEbkgoEJEI4Cr3MpM5V3peEJFncXWj3auqi7MvxHznSs7JaVxjsJI+7nIvew64J3tCzVeu9LMyw/2zdUKBiIQAjfg3oTdX5krPyW6grnsIDQAiEgjUBXZlQ5zm8pz5rnd6niF7pJpDKRT4B5gNtMM1J99p4KUU9bYDE1KUzQL+xjUAuSuuKwsXOX1MeeFxpecFuBtX11ok0DjFo4TTx5WbH5n5rKRYHo7Ns+gV5wXXxML/AL2AzrgSmSNAqNPHlZsfmfj71QiIBX5yn4+bcSUkscA1Th9Xbn/gatnt6X4sw9Vim/C8oKdz4i7L8e96x18se3h8A9UGfsP1X98/uOaD801RZxcwKUVZUXdSchw4CXyJh0mh7ZFz5wWY5E5EPD16O31Muf1xpZ+VFMstWfSS84LrApdxwDH3unOAq50+nrzwyMQ5aQssBKLcjwVAK6ePJy88kvzt8fQIv8Q5yfHvenHv2BhjjDHGmFRszKIxxhhjjEmTJYvGGGOMMSZNliwaY4wxxpg0WbJojDHGGGPSZMmiMcYYY4xJkyWLxhhjjDEmTZYsGpNPiMguEdEUj3MislNEJotIfadjTJAQn4fyhGMIdyCsTBOREe74R2Rgnd4ezpunx/zsi9z7pPG6xIvIcRFZKSIv2L2+jckafk4HYIzJcbOAg+7fiwHXAvcBd4nIfar6lWOR5RB3sjYcGKmqI5yNJt0OAb9cYnmuu+d4wj8EqpryftAZkfR18cM10XFj3O9rEblBVQ9nJk4A9z8oO4Hdqhqe2e0Zk5tYsmhM/vOqqs5PeCIiQcCnuO6L/LGI/KqqUU4FdxltAX9gv9OBOGCzqvZ2OggvlOp1EZF6wHygGjACGJTjURmTh1g3tDH5nKqeBf4DxABFgJucjShtqrpDVTeraqzTsRjvpap/Am+5n97sZCzG5AWWLBpjUNVTwFb300rg6nZzjwPbJSJ+IvKkiKwTkRgROZ50fRG5XkS+EpF9InJBRI6IyI8ickNa+xSRq0XkexGJcm/zdxF54FJxXmrMorjcLiIzReSwO479IjJXRB5OUk9xdUEDDE8x5m1Eim0Gi8jTIrJKRE6KyFkR2eAee1gojRj93a/VRveY0IMi8rmIVLrUsWUlEVnuPp5bL1HnTXedNz0su8l9/g65X8d/RGSqiFztoW7S94mIyCARWSsiZ0QkWkSmiUjdFOuMSDomNeXYw8wev9s6989SHmKuJCLPisg8EdkrIufd78N5InK3h/qTcHVBA1RKEe8uD/XT/foZkxtYN7QxJkER98/zKcoF+BboACwENgIVExeKDAHecD/9HVgGlAc6A51FZKCqfppsgyItgZlAELAF+AMog6sbvHZGAxeRAOAb4BYgDlgO7MGVKNQF2gDvuat/BtQHrsGVUKxNsqnE30WkPK7xnbWBI+7jOodrLNxwoJuItFLV6CTr+ADf4WrNOgf8BpzC1X3eEfgpo8d2hSYB1wO9gWkpF4qIL65hBwl1ky4bCzwCXARWAfuAqsCdQFcR6aGqP19iv3fgep9sw/Va3QK0EpEGqvq3u95aXOehl/v5Zxk7vHQJcf885GHZfcBoYAeusZ5LcL1nm7tjbayqjySpvxgoBPTA1QL/vyTLjibdcCZfP2O8kqhm1T9xJqmwsDANDw93OgxjjDHGmMtas2bNUVUt4WmZtSxmk/DwcFavXu10GMYYY4wxlyUiu9NaZmMWjTHGGGNMmixZNMYYY4wxabJk0RhjjDHGpMmSRWOMMcYYkyZLFo0xxhhjTJrsauhcKnxoTk3XlnN2vdrZ6RCMMcYYk4K1LBpjjDHGmDR5RcuiiNwJPA1UB04Ac4GhqnogSR0BnsV1D9swXDPjP6Kqa1NsqzauOzU0AY4D44GRqhqXHdtyWl5ojcuLraTGGGNMXuF4sigitwBTgQ+Ap3Dd8usl4CcRaaSq8e6qQ4EX3HU2A08Ac0SkrqoedG8rFJiD63ZktwJVcN1M3gcYlmS3Wbktkwnnz5/n3npFiCgXxKZNm5wOxxhjjMn1fH19KVy4MMWKFSMwMDDT23M8WQTuBn5X1cEJBSJyEtf9TGsAm0SkAK4E7xVVfd9dZxmwCxjMv8nbQFz3mu2uqieB2SJSBBghIq+r6sms3Fb2vBz5x/nz59mzZw/dIyrhG1iQmhWL42r0NcYYY8yVUFViY2M5efIke/bsoWLFiplOGL1hzKI/rq7npI67fyZkDk2BIsDXCRVUNQaYDnRMsl5HYFaKRO4rXElfy2zYlsmEqKgoQkND8StYBPH1s0TRGGOMySQRISAggLCwMEJDQ4mKisr0Nr0hWZwINBeR+0WkiIhUx9UN/ZuqbnTXqQnEAdtSrLvJvYwk9TYnraCqe4AzSepl5bZMJpw6dYoiRYo4HYYxxhiTJxUpUoRTp05lejuOJ4uq+hPQG/gEVwvjFsAX6JGkWihw2sOFJdFAQREJSFLvuIfdRLuXZfW2TCbExcXh7+/vdBjGGGNMnuTv709cXOavyXU8WRSR1sBHwFigNXAnUAz4XkR8nYwto0RkgIisFpHVR44ccTqcXMG6no0xxpjskVXfsd5wgctbwI+q+kxCgYisxdUFfCvwHa7WvEIi4puiRTAUOKOqF9zPo4EQD/sIdS9LqJNV20pGVT/B1UJKRESEej5cY4wxxpjcw/GWRVzj/9YmLVDVLcBZXNPVgCtx9AWqelg36bjCzaQYTygiFYCCSepl5baMMcYYY/I0b2hZ3A00TFogIrVwXXW8y120FDgJ3Ibr4hdEpCDQBXdLnttM4CkRKayqCSM678CVeC7Ihm2ZbJJbJurOzZOiiwgtW7Zk/vz56V6nd+/efPbZZ+zcuZPw8HAAdu3aReXKlenVqxeTJk3KlliNMf+6ks9ubjJixAhGjhzJvHnzaNWqVWK5p+NOq25e5sQxe0PL4kfAHSLyloi0E5F7gB9wJYo/A6jqOeBV4DkReUhE2gLf4Ir/vRTbOg98597WAGAE8HbCFDhZuS1jsoKIICL4+PiwY8eONOu1bt06sW52JWUjRoxARPLsl9CV2rVrV+Jrn/Dw8/OjVKlSdO7cmZkzZzodYo7q3bs3IsKuXbucDiXDJk2alOpcBgYGUqlSJe655x7WrVvndIhXJCc/u8eOHWP06NE0bdqUsLAw/P39KV68OM2bN+fll1/m0KFD2R6DtxGRPJ2sekPL4rvABVy33huI6wrkxcCz7vkPE7yKK6F7FigOrAZuVNXEd6WqRruTv/dxzZt4HHgHV5JHNm3LZCNvbbnL6pZPPz8/Ll68yIQJE3j55ZdTLd+2bRvz589PrOeUV155haFDh1KuXDnHYnBSSEgIjz32GADnzp1j3bp1/Pzzz/z888+MHTuWRx55xNkATbpdc801dO3aFYCTJ0+yZMkSvvzyS7799lvmzp1Ls2bNnA3QS82YMYN7772XEydOULVqVbp160bJkiU5ceIEK1asYNiwYbz88sts376d0qVLZ+m+N23aRMGCBbN0myZ9HE8WVVWBce7H5er91/24VL2NQJuc2pYxWaFUqVKUKVOGyMhIRo0ahZ9f8o/m+PHjAejSpQvff/+9EyECUKZMGcqUKePY/p1WtGhRRowYkawsMjKSvn378txzz/HAAw/Yl1kuUb9+/VTncuDAgXz88ccMGzaMefPmOROYF1uwYAHdunXDz8+PyMhIevXqlepq2/Xr1/Poo49y7ty5LN9/zZo2xbFTvKEb2hgD9O/fn4MHDzJjxoxk5bGxsUyaNImmTZtSu3Ztj+uGh4cnjiFMKb3dU+Hh4YwcORJI3uWd9MsgI92PW7duZejQoURERFCiRInErr4BAwawb9++ZHVnzZqFiNCnTx+P2zp//jxhYWGEhYVx/vz5ZMumTp1K69atKVq0KAUKFKBWrVq89NJLqerBv11FBw8e5IEHHqBcuXL4+vpmqlu/d+/eBAcHExMTw4YNGxLLN2/eTO/evalQoQIBAQGUKlWKu+++my1btnjchojw999/895771GvXj2CgoKSdWtFRUXx/PPPU7duXQoWLEhISAjXXHMNQ4cOJSYmJtn2oqKiePbZZ6lVqxZBQUGEhITQtm1bfv3111T7TuiWnTRpEj/99BNNmzYlODiY0NBQevbsybZtye9fICJ89tlnAFSuXDnxPZL0/deqVStEhAsXLjBq1Chq1KhBYGAgvXv3TqyzZs0aevToQcmSJRPfG4MGDeKff/5J8/XZtWsXH3/8MVdffTUFChSgVKlSDBgwgBMnUt4E7Mr069cPgFWrVqVadvHiRT788EMaN25MkSJFKFiwIA0aNOD9998nPj4+Vf0ff/yRtm3bUqZMGQIDAylbtiwtW7bkww8/TFYvpz67hw4d4sknn6RGjRoEBwdTtGhRatSoQe/evfn7778vuX2A+Ph4HnzwQS5evMjYsWMTz0lKV199NXPmzEnW+zBv3jwGDBhA7dq1KVKkCEFBQdStW5eRI0dmKKm8XFfvZ599RoMGDQgKCqJkyZL07duXgwcPpqp3uffniRMneOONN2jTpg3ly5cnICCAEiVKcMstt7Bs2bJk20r4/IArmU762qf8Z2TFihX07NmT0qVLExAQQIUKFXjwwQc5cOCAx+NZs2YNHTp0oHDhwhQpUoR27dql2n9Ocbxl0Rjjctddd/HEE08wfvz4xO4xcH3pHD58mNdee43t27dn2/4fe+wxfvjhBxYsWECvXr3S/AJLr++++46PPvqI1q1b07RpUwICAtiwYQPjx49n+vTprF69OvELpX379lSpUoWvv/6aMWPGEBKSfNaqb7/9lmPHjjFkyJBk9zjt27cvkZGRlC9fnh49elC0aFGWL1/OCy+8wNy5c5k9e3aqVtqoqCgaN25MoUKF6N69Oz4+PpQqVSpTx+rqrPh3TrNffvmF7t27ExsbS5cuXahatSr79u3ju+++46effmLevHk0bNgw1XYeffRRFi1aROfOnenUqRO+vq6pZnfu3Enr1q3ZvXs3jRo14j//+Q/x8fFs3bqVd955h4EDBxIcHAzA7t27adWqFbt27aJ58+Z06NCBmJgYZsyYQYcOHfj444/p379/qn1/9913zJw5k27dutGqVSvWrl3Lt99+y7x581i6dCk1atQAYPjw4fzwww+sW7eORx99lKJFiwIk/kyqR48erFq1io4dO9K1a1dKliwJuLoye/TogarSs2dPKlWqxJo1axg3bhzTpk1j8eLFVK5cOdX2nn76aWbNmkWXLl1o37498+bN49NPP2X79u389ttvGTxraUt5s4CE8zhr1ixq1KjB3XffTYECBZg3bx4PP/wwK1as4PPPP0+s/8knn/Dggw9SunRpunTpQlhYGIcPH+bPP/8kMjKSQYMGZVmscPnP7pkzZ2jWrBk7duzgxhtvpEuXLqgqu3fvZtq0afTs2ZOrrrrqkvtYsGABW7ZsoVy5colJdVp8fHzw8fm3Leq1115j8+bNNG3alM6dO3Pu3DmWLFnCiBEjmD9/PnPmzEl8r1+pd955h19//ZU77riDDh06sHjxYiIjI5k/fz4rVqygRIkSqdZJ6/25adMmnn/+eVq0aEHnzp0JDQ1lz549/Pjjj8ycOZPp06fToUMHwNVCPXz4cEaOHEmlSpWS/UOUNLGdOHEiAwYMIDAwkFtuuYUKFSqwbdu2xL+Hy5cvp2LFion1ly5dSrt27bhw4QLdu3enatWqrF27llatWtGmjQMdnqpqj2x4NGrUSLNTpWdmaKVnZmTrPrLbxo0bVVV13d5oXbc3Otkybz++rIwP0HLlyqmqar9+/dTX11f37t2buPymm27SIkWKaExMjD7//PMKaGRkZPJ4KlXSSpUqedz+8OHDFdB58+al2m/Lli3TVTdBr169FNCdO3cmlu3cuVMB7dWrV7K6+/bt03PnzqXaxqxZs9THx0cHDhyYrPyNN95QQN97771U67Rs2VIB3bJlS2JZZGSkAtqtWzc9c+aMx+MYM2ZMqmMG9L777tPY2FiPx+hJwjF6eo0nTJiggAYHB+uZM2c0KipKixYtqsWLF9cNGzYkq7t+/XoNDg7WBg0aJCtPeF3Lli2rf//9d6p9NGnSRAF9+eWXUy07cuSInj17NvF5y5YtVUR06tSpyepFR0frNddcowUKFNCDBw8mlie8joBOnz492TpjxoxRQNu0aeMx3qTvg6QSztfVV1+tR44cSbbs1KlTWqxYMfXx8dGFCxcmW/bqq68qoDfeeKPH/VWoUEF3796dWB4bG6vNmzdXQFesWOExlpQSjjfl+1VV9YEHHlBAb7755mTlCe+nwYMH68WLFxPLL168qH379lVAf/jhh8Tyhg0bakBAgB46dCjVPlK+Hjnx2f3xxx8V0MceeyzVsvPnz+vJkyc97j+pUaNGKaD33HPPZeumtGPHDo2Pj09VPmzYMAX0q6++SlZ+Jcft7++vv//+e7Jljz32mALat2/fZOWXen+qqh4/ftxj+d69e7VMmTJas2bNVMs8xZZgy5Yt6u/vr1WqVNF9+/YlWzZnzhz18fHRrl27JpbFx8drjRo1Ur2vVP/9TF7q73RKCd+1lwOs1jRyGuuGNsaL9O/fn7i4OCZOnAi4Wolmz57NPffck+vGwpUrVy5ZK2CC9u3bU6dOHWbNmpWsvE+fPhQoUICPP/44WfmWLVtYsGABrVu3pnr16onlY8eOxc/Pj4kTJxIUFJRsnRdeeIHixYszZcqUVPsPCAjgzTffTNXimB7Hjx9nxIgRjBgxgqFDh9KpU6fEVpaXX36ZoKAgJk+ezPHjxxk5cmSqYQN169alf//+/PHHH2zcuDHV9p9++ulULWpr1qxh2bJl1K9fn2eeeSbVOmFhYRQoUACAdevWsWDBAnr06MGdd96ZrF7RokUTu/2+/fbbVNtp06YNN998c7KywYMHU6VKFX777Td2796djlcoudGjRxMWFpasbNq0aURFRXHHHXfQvHnzZMuGDBlCeHg4s2fPZs+ePam29+KLLyZrffHz80scurBy5coMxbZ27drEc/nEE09w7bXXMn78eMqWLctbb72VWC8+Pp733nuP0qVL88477yRrAfP19eWtt95CRFK91/z8/DzezjTl65GTUn5OwPV5KFy48GXXTRgeUL58+Qzv96qrrvLYZf34448DpPpbcCXuu+8+GjRokKxsxIgRhISE8OWXX3ocluLp/QmuC9k8lZcvX56ePXuyefNmj+/PtIwbN47Y2FjGjh2b6uLAtm3bcssttzB9+vTEezgvXbqULVu20KJFC2699dZk9RM+kznNuqGN8SLXX389V199NRMnTmTYsGGMHz+e+Ph4j92G3k5VmTJlCpMmTWLdunVER0cnu0dpQEBAsvrFixfn9ttvZ/LkySxdupSmTZsCri49cF18kODMmTOsW7eOsLAwxowZ43H/gYGBbNq0KVV5eHh4YndTRp04cSJxbJivry/FihWjY8eODB48mE6dOgEkjilat25dqjFL4BrLCa6urpTJ5HXXXZeq/vLlywG46aabknXteZKw7xMnTnjcd8JtSD29Li1btkxV5uvryw033MCOHTv4448/qFSp0iX3n5Kn4/n9998BPHal+fn50aJFC3bt2sUff/yRLDEEiIiISLVOhQoVAIiO9nhjrTStW7cu1TQ5FStWZNGiRcn2u3XrVqKioqhWrRovvfSSx20FBQUle03vueee/2/vzqOkKs4+jn8fdmQdBIOoMC6vsrhgIFFxQUFEVFRcghsRMRA1YI4YoyGgKGpwI4hoUKOgomJkU1REEFnFBdxQRFFBBIkgDBBEZXveP+7tsafpnume6ZluZn6fc+7pmaq6dav7dk8/U7eqLtdffz0tW7bkoosuon379hx//PFxL4WWhfbt27PffvsxdOhQ3nvvPc444wyOP/54WrduXeLLv8n44YcfuP/++5k0aRKff/45//vf//KHbgCsXr26xMeI9/6tV68erVu3Zvbs2Xz66ae0bt26QH6892fE/Pnzuf/++1mwYAFr165l27ZtBfJXr1692/szkcjncvbs2XHHw65du5adO3fy+eef06ZNm/zPSFGfybKkYFEky/Tu3Ztrr72WqVOnMnr0aNq0abPbf8x7gv79+zN8+HD23XdfOnfuzH777ZffszFmzJi4PVXXXHMNTz75JA8//DDt2rXj559/5oknnmCfffahW7du+eXy8vJwd9atW5cfvCWrJMt5NGvWrMjJPevXrwfg0UcfLbTcli1bkmrbxo0bAZJarihy7OnTpzN9+vSUjp1o3GakTcWZRBLv+UTqSTSrPpIeed7R4o2LjPQQR/8jkozIIvLuztq1a3nssccYOHAgXbt2ZcGCBfk9+ZHXdNmyZYW+16Jf0/79+9OwYUMeeughRowYwfDhw/MXlL7nnnviBr2lqW7durz11lvccsstvPjii/k9eQ0bNuSaa65h4MCBcXtBo0XOS6qB3fbt2+nQoQPvvPMOhx9+ON27d6dRo0b5x7v11lvj9vqlqjjv30R/CyZNmsQFF1xAjRo16NSpEwcffDC1atWiUqVKzJo1i9mzZ6fU5sh76J577im0XOQ9FGlrUc+pLClYFMkyPXr04MYbb+Sqq65i9erV3HzzzUXuU6lSpd3+842I96Vb2tauXcuIESM4/PDDefPNN3e7zPXss8/G3e+YY47h6KOPzp/oMnXqVNavX8+NN95Y4MssMgHm6KOPzv8vPFnxLoelU6RtH374IUceeWRK+8ZrWyRASuZLOnLs4qz5mGgh5chs0thJR8mI93wi9cSbpQq/XO4szvGKw8z41a9+xYABA8jLy+Pee+9l4MCBDBs2rEA7unXrxsSJE5Ou9/e//z2///3v2bhxI2+++SaTJk3i8ccfp3PnzixdujS/l7GsPrv7778/jz32GO7OkiVLmDlzJg8++CC33XYbu3btYsiQIYXuf8IJJwAwa9Ysdu7cmXSP5AsvvMA777xDz549GT16dIG8NWvWpPzPXiLFef8m+lswaNAgqlWrxsKFC2nRokWBvD/+8Y/Mnp3aTdwix960aRN169ZNunxRz6ksacyiSJapX78+F1xwAatWraJWrVpcfPHFRe6Tk5PDd999x/bt23fLW7hwYdLHjnwBpNpLE+urr75i165dnHbaabsFiqtWrSp0qY5rrrmGn376iSeffJJHHnkEM6NPnz4FytSuXZtWrVrxySefsGHDhhK1Nd2OPfZYAObOnZvW+qZNmxZ3iZZ0HTveF+DOnTuZN28eQIHe7ZK8TyL1xFsOZseOHfltjzdbvLTdfPPNNGrUiJEjR7J8+XIgWNsvMss+3uerKPXr1+eMM87g0UcfpWfPnmzYsIE5c+bk55f1Z9fMaNWqFf369cvvfZ48eXKR9bdv357DDjuMVatW7Rb0xdq1a1f+84ms4HDeeeftVi7VoKsw8eratGkTH3zwQf6SWsn64osvaNmy5W777Nq1K//zEKtSpUoJX/tUP5eR935Rn8mypGBRJAvdfvvtTJo0iWnTpiU1+Py3v/0tO3bs2O2P+JgxY5g/f37Sx917770BUhq8HU9k6Y558+YV+AO6ZcsWevfuXehdaC655BLq1avH3XffzezZs+nUqVPcZT369+/Ptm3b6NWrV9wemLy8vJR7HdPhiiuuyJ9MEm/Sxa5du1K6JVubNm1o164dH3zwAXfddddu+evXr89fq65t27aceOKJTJw4MX+SVKzFixezdu3a3dJnzpy52xqfI0eO5Msvv+SUU04pMF6xJO+Tc889lwYNGvDss8/mj8eMGD58OMuXL+fUU09NejxYOtWpU4cbb7yR7du354/5rFKlCv369WPNmjVce+21/Pjjj7vtt2bNmgITlt54440CY/IiIq979GS1svjsfvLJJ3F7qSJpyUyeq1SpEg8//DBVqlTh2muvZezYsXGf45IlSzjttNPye8Ijfwti3/NfffVV3AlbxfXUU0/x/vvvF0gbPHgwmzZt4uKLL4472S6R3Nxcli1bVmD9Q3dn8ODBcSemQfD6f/PNN3Hz+vbtS9WqVbnuuuvyxyxH27ZtW4FAsl27dhx22GHMmTOHF154oUDZyGeyrOkytEgWatq0aUpflv369WP06NFcffXVvP766xxwwAF88MEHLFiwgLPOOmu3ICCRU045hUqVKvG3v/2Njz/+mJycHAAGDhyYUvsbN27MRRddxLhx42jdujWnnXYamzZtYvr06dSoUYPWrVvzwQcfxN13r7324vLLL2fEiBFAcNknnl69erFo0SIeeughDj74YDp37kzTpk3ZsGEDy5cvZ86cOVxxxRWMGjUqpbaX1N5778348ePp1q0bxx57LB07dqRVq1aYGd988w0LFiwoEOAlY+zYsZx88skMGDCACRMmcPLJJ+PuLFu2jNdee42lS5fmfyk/88wzdOjQgSuvvJIRI0ZwzDHHUL9+fVatWsVHH33Exx9/zIIFC3ab5NO1a1e6detGt27d8td0mzp1Kg0aNNhtIemOHTtyzz330Lt3b84//3zq1KlD/fr16du3b5HPpXbt2jz++ONceOGFtG/fngsvvJCmTZuyaNEiXnvtNRo3brzbjPiydM0113DvvfcyduxYbrrpJlq0aMGgQYP48MMPGTVqFFOmTKFDhw7st99+rF27lmXLljF//nzuuOOO/AlL3bp1o3bt2hx77LHk5ubi7sydO5d3332XNm3acOqpp+Yfryw+u9OnT+eGG27guOOO49BDD2WfffZh1apVvPDCC1SqVIkbbrghqWO0b9+eiRMn0qNHD3r06MGQIUM4+eSTadSoEZs2bWLhwoW8/fbb1KpVK398cmSd0WHDhrF48WKOPvpoVq5cyUsvvcSZZ55Z4n9MI7p06cLxxx/P7373O/bdd1/mzZvHvHnzyM3NZejQoSnVdd1113HVVVdx9NFHc/7551O1alXmz5/PkiVL6Nq1K1OmTNltn44dOzJu3Di6du3Kr3/9a6pWrcpJJ53ESSedRPPmzXn88cfp1asXrVq14vTTT+fQQw9l+/btrFy5krlz59KoUSOWLl0KBL2/jz32GJ06deL8888vsM7i66+/zumnn86rr76altctWQoWJaul+x7M5VXLli2ZMWMGAwYMYMqUKVSpUoUTTzyRBQsWMHHixKS/cFq0aMETTzzBvffey0MPPZQf0KQaLAI89thjHHTQQTz33HM8+OCD+XdAuO222zj//PML3bdXr16MGDGCfffdl7PPPjthuQcffJAuXbowatQoZsyYwcaNG2nQoAFNmzblhhtu4LLLLku53enQsWNHPvroI+69916mTZvG3LlzqVatGk2aNKFDhw5FPv9YBx54IO+99x533303kydPZuTIkdSoUYPc3Fyuv/76AoHf/vvvz6JFi3jggQeYMGECTz/9NDt37qRx48a0bNmSfv36ccQRR+x2jPPOO48+ffpwxx138PLLL1O1alXOO+88/vGPfxRYsgiCmdn33Xcfjz76KMOHD2fbtm00a9YsqWAR4JxzzmH+/PnceeedTJs2jU2bNtG4cWOuuuoqBg0aRJMmTVJ6fdKpZs2aDBgwgGuvvZaBAwcyYcIEqlatyuTJkxk7dixjxozhpZdeYsuWLTRq1IgDDzyQIUOGcOmll+bXMXToUKZNm8Z7773HK6+8Qo0aNWjWrBl3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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Plot mortality risk of calibrated" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 9, + "source": [ + "onc_plot_risk(\n", + " y_true=calibrated_results.y, \n", + " y_proba=calibrated_results.p_calibrated, \n", + " label='Predicted (Multilayer Perceptron)',\n", + " filename='./results/mlp_calibrated_mortality_bar')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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164dG264YTRr1iyaNWsWW265ZXTo0CG23Xbb2HLLLbOaAwAg24qKiuLGG2+MLl26rLFm5cqV8fvf/z6effbZHCYDAAAAAADySeMAANZ7VjmE3EulUvmOQI4tX748li9fHgsWLIgZM2bE2LFjf1FTt27d2HPPPaNr165xzDHHxOabb56HpABAVbd06dL4wx/+UG5NrVq14rrrrstRovQNGzYsJk2aFK1bt853lNUaPHhwzJkzJ98xAAB+IZVKxbJly2LZsmUxb968mDZtWnz66ae/qGvatGnss88+ceCBB8aRRx4ZG2ywQR7SAgCsnX333TcOPvjgchsDPPfcc/Hcc8/FQQcdlMNkAAAAAABAvmgcAAAAFITFixfHyy+/HC+//HL88Y9/jN133z3OOuusOPHEE6OkpCTf8QDW6Mknn4yPP/64wrrDDz+8YFc3h3XJzTffHF999VW5Nb17946WLVvmKFH6UqlU9O/fP6688sp8R1mt+++/P98RqEI+/vjjePLJJyus23HHHePwww/Peh4AiIiYMWNGDBw4MAYOHBh9+vSJ7t27x/nnnx9du3bNdzSAKmPo0KExdOjQCuv23Xff2HfffbOeB9ZXf/nLX8ptHBARceGFF8aBBx4Y1at7VBAAAAAAANZ1/hoAAAAUpPfeey/ee++9uPzyy+Oyyy6LXr16RXFxcb5jAfzCk08+Gf3796+wrnXr1hoHQJbNmDEjbrzxxnJratSoEX/4wx9ylKjyBgwYEFdccUUUFRXlO8pPTJs2LV566aV8x6AK+fjjj+Pqq6+usK5Hjx4aBwCQFytXrozBgwfH4MGDY+edd44bbrgh9t9//3zHAih4Q4cOTXStHxEaB0AW7bDDDnHQQQfFc889t8aasWPHxj333BNnnXVWDpMBAAAAAAD5YNYNAABQ0KZOnRp9+vSJ3XbbLT766KN8xwEACthVV10VixYtKremR48esckmm+QoUeVNmDAhXn/99XzH+IUBAwZEaWlpvmMAAGTFiBEj4oADDojjjz8+ZsyYke84AACJ/OlPf6qw5uqrr47FixfnIA0AAAAAAJBPGgcAAABVwogRI6Jjx45x99135zsKAFCAxo0bV+F1QrVq1eKSSy7JUaK1169fv3xH+IVCzAQAkGmPPvpo/OpXv4p33nkn31EAACrUqVOn2GuvvcqtmT59etx66605SgQAAAAAAOSLxgEAAECVsXz58jjzzDPj4osvzncUAKDAXHPNNbFq1apya4499tjYfPPNc5Ro7Q0aNKigVoJ799134/PPP893DACAnJg6dWrss88+8b///S/fUQAAKvTHP/6xwppbb7015s2bl/0wAAAAAABA3mgcAAAAVDk333xzXHTRRfmOAQAUiLFjx8bDDz9cbk1RUVGiB6gLyaJFi2LQoEH5jvGDfv365TsCAEBOrVy5Mo477rh44okn8h0FAKBc3bt3jx133LHcmnnz5sWtt96am0AAAAAAAEBeVM93AAAAoGpo3LhxXHHFFZXadtmyZbF48eL45ptvYuLEifHRRx+t9Yomt956a2y11VZx5plnrtV+AICq75prronS0tJya7p16xbbbbddjhJlTr9+/aJHjx75jhHLli2LRx55JN8xAID1xK677hq//e1v094ulUrF0qVLY8GCBTF16tT4/PPP49NPP43ly5dXOsuqVavixBNPjHfeeSd22GGHSu8HACDb/t//+38VXkPddttt8fvf/z4aN26co1QAAAAAAEAuaRwAAAAk0qBBg7jgggsytr+PPvooBg8eHPfdd1989dVXldrHeeedF7vuumvstNNOGcsF64KrrroqrrrqqnzHAMiJ8ePHx6OPPlphXe/evXOQJj2dOnWKt956q9yaYcOGxaRJk6J169a5CbUGTzzxRMyfP7/cmjp16sTWW28dH374YY5SQeYNHTo03xEAiIgOHTpk7D7UihUr4o033ohBgwbFgw8+GAsXLkx7H0uXLo0jjjgiPvnkk6hXr15GcgEAZNpRRx0VG220UcycOXONNQsWLIh///vfcfnll+cwGQAAAAAAkCvF+Q4AAACsn3baaae48sorY8KECXHffffFJptskvY+li9fHmeddVaUlZVlISEAUBXcdNNNUVpaWm5NixYt4qCDDspRouS6du0am222Wbk1qVQq+vfvn6NEa3b//fdXWHPkkUdG/fr1c5AGACC5GjVqxH777Rd33HFHTJkyJS6//PKoWbNm2vuZOHGiJn0AQEGrUaNG9OjRo8K622+/PZYuXZqDRAAAAAAAQK5pHAAAAORVtWrV4pRTTolRo0bFEUcckfb277//fvTr1y/zwQCAgvftt98mmlR/+umnR7Vq1XKQKD3FxcVx8sknV1g3YMCASKVSOUi0elOmTIlXX321wrqePXtmPwwAwFpo0KBBXHvttTFixIjo0KFD2tvfdtttMXbs2CwkAwDIjDPPPDOKiorKrZk5c2aiJpEAAABQFRQVFfnytd58AUASGgcAAAAFoXHjxvH444/Hueeem/a2N9xwQ5SVlWUhFQBQyO64445YtmxZuTXVqlWL0047LUeJ0pdksv2ECRPi9ddfz36YNejfv3+F11otW7aMrl275igRAMDa2WabbeLtt9+OTp06pbXdqlWr4qabbspSKgCAtdeuXbvo0qVLhXW33XZbXhtVAgAAAAAA2aFxAAAAUDCKioritttui9/+9rdpbTdu3Lh4+umns5QKAChEK1asiL59+1ZYd/DBB0eLFi1ykKhytthii+jcuXOFdf369ct+mDXo379/hTU9evTQ2RwAqFIaNmwYzzzzTLRv3z6t7R544IGYMWNGllIBAKy9Xr16VVjzxRdfxIsvvpiDNAAAAAAAQC5pHAAAABSUoqKiuOuuu6Jdu3Zpbffggw9mKREAUIgGDhwY06dPr7DujDPOyEGatdOzZ88KawYNGhSLFy/Ofpifeeutt2LcuHHl1hQVFUWPHj1ylAgAIHMaNWoUjz76aNSsWTPxNsuXL49BgwZlMRUAwNo54ogjokmTJhXW3X777TlIAwAAAAAA5JLGAQAAQMGpW7du/P3vf09rm+eeey6WLl2apUQAQKHp27dvhTWNGjWKAw88MAdp1s6xxx4bderUKbdm0aJFeZmgdv/991dY07lz59h8881zkAYAIPO22267OPfcc9Pa5vHHH89SGgCAtVdSUhKHH354hXUvvvhiTJ48OfuBAAAAAACAnNE4AAAAKEgHH3xw7LzzzonrFy9eHO+8804WEwEAheKLL76IN954o8K6Qw89NGrUqJGDRGunfv36ceSRR1ZY169fv+yH+ZElS5bEwIEDK6zr2bNn9sMAAGTRJZdcErVq1Upc/+abb8ayZcuymAgAYO0cffTRFdaUlZXFfffdl4M0AAAAAABArmgcAAAAFKxevXqlVf/uu+9mKQkAUEiSPtCc5AHpQpFk8v2wYcNi0qRJWc/yvccffzwWLFhQbk2dOnXimGOOyVEiAIDs2HDDDRM1cvreihUr4sMPP8xiIgCAtbPffvtF48aNK6y7//77o6ysLAeJAAAAAACAXKie7wAAAABrcthhh0WvXr0ilUolqv/ggw+ynCi5ZcuWxZtvvhkfffRRfPHFFzF27NiYNm1aLFq0KBYtWhRLly6NmjVrRt26daNJkybRvHnz6NmzZ5x88sk5y7hixYqYPHlyTJo0KebNmxdLliyJxYsXR0RE3bp1o27dutG0adNo27ZtbLrpplFUVJSzbNm0bNmyGDZsWLz55psxZsyYGDt2bMyaNSsWLlwYy5Yti3r16kX9+vWjYcOG0a5du+jQoUNst912sd9++8VGG22U7/jrnbKysvjmm29i8uTJMWPGjFiyZEksWbIkli9fHnXq1In69etH/fr1o0GDBtG8efNo1apVFBfrk5grqVQqpk+fHhMnToxvv/02Fi9e/JPfT926daNhw4bRunXraNOmTVoreBa6UaNGxSuvvBKjRo2KMWPGxNdffx0LFy6MRYsWRY0aNX54bbZo0SI6dOgQHTp0iM6dO8cOO+yQ7+hVXllZWTzwwAMV1tWvXz9+/etf5yBRZnTt2jVatWoVkydPXmNNKpWK/v37x5VXXpmTTP369auw5uijj4769etnPwxQsObNmxdfffVVzJw5M2bOnBmLFy+O5cuXR2lpadSuXTtq1aoV9erVi+bNm8emm24azZo1i+rV/XlqfVNWVhZTp06NiRMnxqxZs364bly5cuUP140bbLBBtGnTJlq1ahUlJSX5jpwzc+bMiSFDhsTo0aNj7NixMW7cuJg1a9YP9w9WrFgRderUiXr16sVGG20Um2yySVx33XWx88475zv6OueII46Ihx56KHH9Bx98EHvuuWcWE63ZrFmzYsKECTFt2rRYvHhxLF68OJYtWxa1a9eOOnXqRIMGDaJVq1bRtm3bqFu3bl4y5kNVuB8X8d3vb/LkyTF16tQfjodLly6NGjVqRIMGDX74PLnhhhvG5ptvHjVr1sxpvkxbtWpVfP311zFx4sSYM2fOD/cgy8rKom7dulGnTp3YcMMNo23btrHZZptFtWrV8h05J8rKyuK9996L9957L0aPHh2fffZZTJ8+PRYuXBgLFy6M0tLSH+55tW7dOtq3bx877LBDHHjggdGmTZt8x+dHCvlc/v3fACZOnPiTvwFUq1bth2uwjTbaaJ37G0BSy5cvj2HDhsUHH3wQo0aNis8//zxmz54dCxYsiIULF0ZJSUnUrVs3GjduHG3atInNN988dtttt+jUqVNsueWW+Y5foZKSkjjssMMqvL/z9ddfx5AhQ2K//fbLTTAAAAAAACCrPJkFAAAUrKZNm8bWW28dY8aMSVQ/YcKEtMdI+iBckuYFS5cujYceeigGDhwYr7/+eixdurTc+u8nQM+cOTM+//zz2H777bP6oPInn3wSr7/+erz11lvx7rvvxldffZV4FZlatWrFTjvtFJ07d45999039t9//6hRo0bWsmZaKpWKl156Ke6888548cUXy/3dzJ8/P+bPnx9TpkyJ0aNHx5NPPhkREcXFxdGxY8c4+uij47TTTjNJMkvGjBkTw4YN++HB6S+//DJWrlyZePvatWvHVlttFe3bt49tt902unTpErvttttaP3SeiYdmTznllDjllFPWej/fa9WqVU5XHo/4bnLDa6+9Fm+99Va89dZb8dlnn1V4rPteUVFRtG3bNjp37hydO3eOQw45JJo1a5blxJk1ceLEuPPOO+PBBx+MqVOnrrFu1apVsWTJkvj222/jyy+/jKFDh/7wby1btozf/OY30bt37+jQoUMOUq973njjjXL/+3/vkEMOqVITbIqKiuLkk0+Oa6+9tty6AQMGxBVXXJH1h/knT54cQ4YMqbCuZ8+eWc1B1bDvvvvGsGHD1mof/fv3j/79+2co0XcmTpwYrVu3zug+12crV66Mjz76KN5///0YOXJkfPLJJzFu3LiYO3duWvupUaNGbLPNNrHTTjvFHnvsEd27d48WLVpkKfXqlZaWxl//+tcoLS2tsHaPPfaIbt265SBVeh5//PH49NNPK6yrU6dO/L//9/9ykOinpkyZEq+99lq8/fbb8dZbb8UXX3wRK1asSLRttWrVYquttorOnTvHXnvtFQcffHCilVKzaejQodGlS5cK6/bZZ5+fXPutyfTp0+Oee+6JwYMHx4gRIyr8bP79JNJp06bFJ598Er169dI4IAv23nvvtOorcx+qMhYuXPiTz2GffPJJLFq0KPH2m222Wey5557RuXPnOPjggwtiwvH6dD9u+vTp8dprr/1wn+PTTz+NJUuWJN6+WrVq0bZt2+jQoUO0b98+9tprr9hnn30KuiHEuHHjYujQofHWW2/FO++8ExMmTIhVq1Yl2rakpCS222676NSpU+yzzz7RrVu3vP+s/fr1S3Q/p0ePHomar7399ttx9913x7PPPhszZ84st3bOnDkxZ86cmDRp0k/OL1tuuWX06NEjTj/99GjatGmFY66N1q1bl9vgLomrr746rr766gwl+k7SZsPfW1/O5ZMnT46XXnop3nzzzXj77bdjwoQJif8GULNmzdh2221/uHd34IEHRoMGDTKesTIyed5IpVLx/PPPx/333x8vvvhiLFy4cI21paWlsWzZspg9e3Z8+eWX8fLLL8edd94ZERFbb711HHfccdGrV69o3rx5sh8kD44++uhEx6aHHnpI4wAAAAAAAFhXpFIpX758+fKVg6+I6BgRqR9/vf3226l1wcSJE1OfffbZT74mTpyY71iJ/fz34suXr+x/UTgmTpyY+PfWqlWrvGQ88cQTE2ds1KhR2vvPxOt29uzZqT/84Q+pxo0br9V74/zzz6/kf6U1++KLL1KXX355ql27dhl9Hzdu3Dh12mmnpUaMGJHxzJn2v//9L7XVVltl9Odv1KhR6tJLL03NmzdvjeMmfX9l47115ZVXJhr7yiuvzPjYlTFq1KjUpZdemtpyyy2zct5p2LBh6ogjjkjdcccdqRkzZlQqYzZyre1Xro7LixYtSt17772pAw88MFW9evWM5S8uLk517do1NWDAgNTKlStz8rNU1vjx41PHHHNMqri4OGM/f1FRUeqQQw5JDR8+vNyx99lnn0T7GzJkSG7+YxSAXr16JfpvMmjQoLzkS+f66ufH4S+//DJVVFRU4XZDhw7N+s9x9dVXV5ijdevWqbKysp9sl/Q1G5H5zwU9evRINO7999+f8bGTytd7OtvXJen83nP5VZn7U/k87rZq1SprP1dllJWVpYYPH576y1/+ktp3331TtWvXztrvavvtt0/dfPPNqVmzZuXkZ0ulUqlDDjkkUbbNN9/8F8e6fFu2bFmqSZMmifL36NEjZ7lmz56duv3221OdOnVKdD5L+lWjRo3UoYcemnryySfz9rsYMmRIoqz77LNPufsZPXp06vjjj0+VlJSs1X+TJ554Iic/d6bdf//9iX/GXL52f2zTTTdNnPHwww/PWo4VK1akHn300dQRRxyRqlWrVkaPubvvvnvqX//6V2rJkiVZy1+RpFnLU8j347799tvULbfckurUqVNGP0f++Li47777pv7yl7+kxowZk/H8lTFlypTU9ddfn9pxxx0z+rPWrVs3dfzxx+f1M2/SY1dFx60XX3wx1alTp4y/Fnr16pX69ttvs/bzJ71GzfVXutblc/mCBQtS//znP1N77rlnRq/BatWqlTrqqKPyeg32vUy9Lh544IHUtttum9HXYs2aNVN9+vTJ6WeZdCxfvjxVv379Cn+ORo0apZYtW5bvuFlT1Z9pAQAAoHz5vlfly1cuvwDIr7fffnt1x+eOqQKYu/rjr+IAAAAoYK1atUpcO2/evFi+fHkW0/xUKpWKe++9N7baaqu4+eab015pM5s++OCDOProo2PrrbeO6667LsaNG5fR/c+dOzfuvffe2HnnneOggw6K4cOHZ3T/mTBx4sTo0qVLHHnkkTF27NiM7nvevHlxww03RIcOHWLw4MEZ3ff65IUXXohf//rXse2228YNN9wQX3zxRVbGmT9/fjzxxBPRu3fvaNGiRRx33HHxyiuvfN/gizWYM2dOXH311dGqVas47bTT4qWXXkq8QmASZWVl8dprr8XJJ58cW2yxRdx5552JVv3NpVWrVsWf//znaN++fQwcODDxCm1JpFKpeOaZZ2KPPfaIP/zhDxWuisl3UqlUPPXUUxXWFRUVJVpJsNBsvvnm0blz5wrrMr0q+8+lUqlEY5x88smJV/0DqobS0tJ45ZVXonfv3rHJJpvErrvuGpdddlkMHTo0q+eqTz75JP7whz/EpptuGr17947p06dnbazv9enTJ1Hd+PHj45VXXslymvQ8/vjjMXv27ES1Z511VpbTREyZMiUuvPDCaNmyZZx33nnx1ltvZfRae8WKFfH000/H4YcfHtttt108+uijGdt3rixevDguueSS2HHHHeORRx6JlStX5jsSa5DOfahsHKsWL14c//jHP6Jt27Zx3HHHxRNPPBHLli3L6BjvvfdenHPOOdGqVau4/vrrM77/bCvk+3GjR4+O0047LVq2bBkXXXRRvPXWWxn9HPm9FStWxNChQ+Oyyy6L9u3bx1577RUDBgzIy+fKsWPHxmmnnRZt27aNP/7xj/Hxxx9ndP+LFy+ORx55JLp06RJ77rlnvPzyyxndfy7Mnj07TjrppPj1r38db731Vkb3vWLFiujbt2+0a9cu/vnPf2Z03/xUIZ7L586dG1dddVW0atUqzj333Hj77bczeg22bNmyePzxx+Pwww+PbbbZJh544IGsHNNyYdy4cdG1a9c46aSTYtSoURnd9/Lly+M///lPtG/fPgYNGpTRfWdCjRo1Yu+9966wbt68eTFkyJAcJAIAAAAAALJN4wAAAKCgbbzxxmnVL1myJEtJfmrhwoVx6KGHxumnnx6zZs3KyZhJTJ8+PX7729/GrrvuGo8//nhOHuR7/vnnY4899ohzzjknFixYkPXxknjsscdixx13jKFDh2Z1nG+++SYOO+ywOPvsswtuwnMhGzlyZOy7777RvXv3eOmll3I69ooVK+Kxxx6LAw44IDbffPOcHTOqkrKysvj3v/8dbdu2jauuuirxpLS1MXny5Ojdu3fstttuMWLEiKyPl8SkSZNir732iuuuuy5WrFiRtXFKS0vjlltuiV/96lcxceLErI2zrvjoo48STdDaYYcdYoMNNshBoszr2bNnhTWDBg3K6vHr9ddfjwkTJpRbU1RUFD169MhaBiC3Jk+eHBdddFG0aNEiDjjggLjzzjtzMnn/55YvXx533nlnbLHFFvG3v/0tq59nunXrFm3btk1U27dv36zlqIykebbffvvYY489spZj+fLlcfXVV0e7du3i73//eyxevDhrY31v9OjRcfzxx8f+++8fX375ZdbHy4SxY8fGTjvtFDfeeGNBTDKkfOnch8r09dgjjzwS7dq1i9///vcxZcqUjO57dWbOnBl/+tOfYrvttiu4BilrUqj342bMmBGnn356bL/99nHffffltLFpRMSbb74ZPXr0iE022STeeeednIw5f/78OPfcc2ObbbaJ++67L6ufm7/3zjvvxIEHHhjHH398Xq5TKmPEiBGx7bbbxoMPPpjVcRYsWBDnnXde/OY3v8nJfZz1TSGeyx966KHYeuut4+qrr85JA5UxY8bE7373u9hjjz1i5MiRWR8vkx544IHYfvvtsz4pfubMmXHMMcfEZZddVnANa7t27Zqo7rnnnstyEgAAAAAAIBc0DgAAAApanTp10qrPxSTgiRMnRseOHePZZ5/N+ljpuOeee2KrrbaKhx9+OOdjfz/ReIcddsj4ymLpuu666+K4447LaROD//znP3HkkUeahF6B5cuXxwUXXBC/+tWvYtiwYfmOExMnTszJg+1Vyeeffx677bZbnHPOOTF//vycj//hhx/G7rvvHrfcckvOx/6xjz76KHbfffd49913czbm559/Hh07diyYxgmF6vnnn09U16VLlywnyZ5jjz026tatW27NwoULs7qK3f33319hzd577514wi1Q+J5++um49dZbC2YS3uLFi+PSSy+Nrl27xtSpU7MyRlFRUZx11lmJap966qmC+W/z+eefx+uvv56otlevXlnL8fbbb8e2224bV111VV5WK3/11Vdj++23j4ceeijnY6fj5Zdfjj322CPGjRuX7ygklM59qEzdA/jmm2/igAMOiBNOOCGmTZuWkX2m48svv4wDDjggLrroooJuilio9+PuvffeaNeuXdx77715X4l73rx58e2332Z9nKeffjq23nrr+Ne//pWX18yjjz4a2267bcE3vHj++edjn332yek1xNNPPx0dO3aMSZMm5WzMdV2hncvnzZsXhxxySJx44okxY8aMnI8/fPjw2GWXXeLaa68tuMnxP5dKpeJPf/pT/O53v8vp9epf//rXOOecc3I2XhJJ75Mlve8GAAAAAAAUtur5DgAAAFCedB8+KyoqylKS70ybNi26du1aUA9fLlu2LHr37h39+vXLd5SYNGlS7LnnntGvX7849thjcz7+hRdeGH//+99zPm5ExODBg+Ooo46KZ555JqpVq5aXDIVs3Lhxcdxxx8VHH32U7yiswcCBA+PUU0+NRYsW5TVHaWlp/OEPf4gRI0ZEv379okaNGjkd/4033ohDDjkkp81Hvvftt9/GfvvtF2+//XZ06NAh5+NXBUlXPtt3332zGySL6tWrF0cddVQMGDCg3Lp+/frFySefnPHxFy1alKgpQc+ePTM+NsDPDRs2LDp27BgvvfRSbL311hnf/6mnnhpXXHFFhROJVq1aFffdd1/86U9/yniGdPXt2zdRXd26deOkk07KSoZ//vOfcdFFF+V9xd2lS5fGiSeeGB9++GHcdNNNWb8fkK6hQ4fGoYcemvOVx1k76dyHysRrbtiwYXHcccflZLJ3RW699dYYOXJkDBo0KBo1apTvOD9RiPfjFi5cGL169cpLA898KS0tjT//+c9xww035H3C8OzZs6Nbt25x8803xwUXXJDXLKvz2muvxWGHHZaXc+W4ceOiU6dO8corr0T79u1zPv66pNDO5Z999lkcdthh8eWXX+Y1x6pVq+KKK66Ijz76KAYMGBD16tXLa5416dOnT9x55515Gfs///lPNG3aNK688sq8jP9zO+ywQ2ywwQYxZ86ccuu+/PLL+OKLL2LLLbfMUTIAAAAA0nX11VfnOwLkTKHcY4WqqDjfAQAAAMqzdOnStOpr166dpSQRCxYsiO7duxfUQ8pz5syJvfbaqyCaBnxv6dKlccIJJ8R///vfnI573XXX5a1pwPdeeOGFOPfcc/OaoRC98cYbseuuu2oaUMCuueaaOPbYY/PeNODHHn744TjyyCNjxYoVORtz9OjRceihh+alacD35s+fHwcffHBBTBwqNHPmzIn33nuvwrri4uLYe++9c5Aoe5JMyh86dGhMnjw542MPHDgwFi9eXG5N3bp14+ijj8742ACr8/XXX0fnzp1jzJgxGd93kyZNEjc8u/vuu/O+kvSyZcsqbCzzvRNOOCEaNGiQ0fHLysrijDPOiPPOOy/vTQN+7JZbbomzzjor75NYf+yTTz6Jww8/vGAmGpJcOveh1vYe1H333Rf77bdfQV37v/rqq3HggQfGvHnz8h3lB4V4P+6bb76JPffcc71qGrBs2bL4zW9+E9dff33BHG9LS0vj97//ffzlL3/Jd5SfGDNmTBx11FF5PVd+88030a1bt5g2bVreMlR1hXYuHzFiRHTq1CnvTQN+7Iknnoj99tsvr/fR1uSPf/xj3poGfO+aa66JV199Na8ZvldcXBz77LNPotqkTTsBAAAAAIDCVT3fAQAAAMozffr0tOrr1KmTpSQRp59+eowcOTJRbbVq1WL77bePdu3aRevWraN+/fpRu3btWLp0aSxcuDAmTpwYn332WYwZM6bSk09mzpwZ+++/f3zyySeV2j6bysrKomfPnlFSUhLHH3981sd78MEH489//nOlt69Xr17svPPO0b59+2jatGnUr18/Vq5cGQsWLIgJEybEqFGj4rPPPku0rzvuuCN22WWX6Nq1a6XzrEueffbZOOaYY9JuAkLu/OlPf4rrr78+3zFW69lnn42jjz46nnzyySguzm7/y+nTp8dBBx0U8+fPr9T2RUVFse2228Y222wTbdq0ifr160dJSUksXLgwpk2bFmPGjIkPP/wwlixZUuG+Jk2aFMcdd1wMGTKkUlnWVS+99FKUlpZWWLfDDjsU3Aqp6dp3332jdevW5U6OSqVS0b9//7jiiisyOnaSZkRHH310wa4oCKybZs+eHYceemi899570aRJk4zuu0+fPokm40+aNCleeuml6NatW0bHT8egQYMqXCX0e7169cro2KWlpdGzZ8944IEHMrrfTLnrrruievXq8e9//zvfUWLRokVxxBFHJL6urFu3buy0006x+eabR4sWLaJu3bpRUlISixYtivnz58cXX3wRo0ePzkrDIH4pnftQa3MP6s4774w+ffoUzATsHxs+fHgceOCBMXTo0KzeZ0uq0O7HjR8/Pg444ICYOHFipbavipYsWRK/+c1vCmYC7M9dfvnlUaNGjbj44ovzHSWWLl0ahx12WOLmG02aNIlf/epXsfXWW0eTJk2iXr16sWzZspg3b16MGzcuRo4cWemmGV999VUcfPDB8cYbb0TdunUrtY/1VaGdyz/++OM44IADCqqpy/fef//9+PWvfx0vvfRS1K9fP99xIiLinnvuiRtuuCFRbUlJSey4447Rrl27aNWqVdSrVy9q1qwZS5cujZkzZ8b48ePj3XffjdmzZ6edo6ysLHr06BFjx44tiPdgly5d4oknnqiw7rnnnosLLrgg+4EAAAAAAICs0TgAAAAoaOk8GNmoUaOoWbNmVnI8/PDDMXDgwHJratSoEUcccUT89re/ja5duyaaUDdjxowYPHhw3H777WnlWbhwYey3337x6aefprXd95o2bRr7779/7LrrrrHddttFy5Yto2nTplG7du0oLi6OxYsXx/Tp0394MO7VV1+Nd955J60H2svKyuLUU0+NLbfcMn71q19VKmcSY8eOjTPPPDPt7WrUqBFHHXVUnHbaabHXXntFjRo1yq2fNm1aPPHEE3HHHXfEqFGjyq298MIL49lnn00707pmyJAhccQRR6zVCmvbbrttdO7cOXbfffdo27ZttG7dOho0aPDDw5bLli2L+fPnx9SpU+Orr76KUaNGxSeffBJvvfVWzJw5M1M/Srmv/Z49e0b//v0r3Mf999+faBXxXLrqqqsq3TSgpKQk9tprr9hzzz3jV7/6VbRp0yY23XTTqFu3btSqVSuWLl0a8+bNiwkTJsSnn34aw4YNi+effz4WLlyY1jhPP/10XHrppXHjjTdWKmcSqVQqfve738VXX32V9rY77bRT9OnTJ37zm99E06ZNy61dtmxZDB06NO6555546qmnYtWqVWusHTZsWEFMfCskQ4cOTVSXzXNOrhQVFcXJJ58c11xzTbl1AwYMiD//+c9RVFSUkXEnTJgQb7zxRoV1hXYsI//Ke3/269cvTjnllAr30aNHj0SNK8i/jTbaKHbddddo3759bLXVVtG6devYeOONo2nTplGnTp2oVatWFBcXx/z582PevHkxf/78+Prrr+ODDz6IDz74IIYPH16piTfjx4+Pk046KZ5//vmM/jy77757/OpXv4oPP/ywwtq+ffvmtXFA3759E9XtvPPOscsuu2R07NNOO63STQPq1KkTXbp0id133z122mmnaNWqVWyyySZRp06dqFmzZixZsiTmzJkTEyZMiA8//DCGDh0aL730Utor/P7nP/+JbbbZJvr06VOpnJly0UUXxYQJE8qtadKkSfz2t7+N448/PnbbbbeoXr3iP9l+/vnn8fjjj8c///nPTEVlNdK5D9WsWbNKjXH//fdH7969K7VtcXFx7L777tG5c+fYZZddom3bttGiRYsfJsgvX7485s+fH5MmTYrRo0fHG2+8Ec8880zax93hw4fHKaecEo8++milcmZKod2PmzZtWnTp0iW+/vrrtLb7sRYtWsTee+8dHTt2jC233DLatGkTG2ywwQ8TjZctWxaLFi2KadOmxdSpU2P06NExatSoePvtt2P8+PGVHreyVq1aFYcddlilmwY0bNgw9ttvv9htt91ixx13jJYtW0azZs2iTp06Ub169Vi8eHHMmjUrxo8fH8OHD48hQ4bEkCFDEjWN+7FLL700OnToEAcffHClcmbK5ZdfHuPGjSu3pl69enHSSSdFz549Y9ddd62wUeIXX3wRjz32WNx5550xderUtPJ89NFHcf7558c999yT1nY/Vt5x8aqrroqrr766wn1ceeWVcdVVV1U6Q64V0rl82rRp0b1795g7d27ibX5sq622iu7du0enTp2iffv20bx586hfv36UlpbGwoULY9KkSTFmzJh47bXX4vnnn48ZM2akPca7774bxx9/fDzzzDMZuz9RWZ9++mmcd9555dbUrl07jjvuuDj++ONjn332iVq1apVbn0ql4t1334177703BgwYkNa97qlTp8b1118f1113XeJtsiXp/bI333wzVq1aleg1DQAAAAAAFCZ3+QEAgIKWZPLG91q1apW1HGefffYa/62oqChOPfXUuOKKK6Jly5Zp7bdp06Zx+umnx2mnnRZTpkxJtE1ZWVmccMIJaTcNKCkpiWOOOSZ69eoVnTt3Lveh1IYNG0bDhg1jq622ioMOOiiuueaamDx5cvzjH/+Iu+66K9GK2RHfrbJ1+OGHx8cffxwbbLBBWnmTWLFiRZxwwgmJ83zviCOOiFtuuSXatGmTeJvmzZtHnz59ok+fPvHII4/ExRdfvMbf2fz588t9zawPxowZE0ceeWSlmgY0a9Ys+vTpEyeccEJsscUW5daWlJRE/fr1o0WLFrH77rvHMccc88O/ffbZZ/HMM8/E4MGD4+233y7IlRzz6ZFHHkn0cPfPfT9R/thjj40GDRqssa5u3bpRt27d2HTTTWOvvfaKPn36xNKlS+PRRx+N66+/Pr744ovEY950002x6667/uT3m0m33HJLvPLKK2lt06ZNm7jlllviiCOOSLxNrVq1olu3btGtW7f44osv4oILLih38uOll15a6clI66Lhw4cnqtt+++2znCQ3evbsGddee225x67x48fHG2+8EXvvvXdGxuzXr1+Fx8o2bdrEPvvsk5HxgKqhUaNGccABB0S3bt2iS5cuia+hmzRpEk2aNImI7yapHHbYYRHx3cr1zz33XNxzzz3x3HPPldtI5+deeOGF6N+/f/To0SP9H6Qcffr0idNPP73CumeeeSa++eab2GSTTTI6fhKfffZZvPnmm4lqe/XqldGx//a3vyVqlPVze++99w8NlmrXrr3Gunr16kW9evWiZcuWse+++8aFF14Y8+fPj379+sVNN92U1iTJCy64IHbaaafo2LFj2nkz4ZNPPolhw4at8d/r1q0bl19+eZxzzjmJJjf/2NZbbx2XXXZZXHjhhbFo0aK1jcpqTJ8+PaZNm5a4vjL3od54440466yz0t6uXbt20bt37/jd734XG2644RrrateuHbVr145mzZrFHnvsEaeddlqsWrUqBg8eHH/9619jxIgRicd87LHHYtddd40//OEPaefNlEK6H7d48eI45JBDKtU0oHbt2tGjR4/43e9+Fx07dix3Yu33n6U33njj2HHHHX8yEX7atGnx/PPPx+DBg+OFF15Iu8FKZZx77rlpf14uKiqKgw8+OHr37h0HHHBAlJSUrLG2QYMG0aBBg2jbtm0ccMAB8ac//SlmzJgRd9xxR9x2222JJ0uXlZXFiSeeGCNGjIjNN988rbyZMmLEiPjss8/W+O9FRUVx5plnxnXXXVfu+/jnttxyy7j88svjkksuiX/84x9xzTXXpHUeuPfee+Oggw6KI488MvE267NCOpevXLkyjjnmmJg+fXpa40R8d//7oosuik6dOq3230tKSqJWrVo/NAU7+eSTY+XKlfHEE0/EX//61xg5cmRa4z333HOJG0lk03HHHRdLly5d7b9Vr149zj///Ljkkktio402SrzPoqKi6NixY3Ts2DEuvfTSOOWUUxJfl0dE3HrrrfH73//+h89G+bLddttFUVFRhfd9li5dGqNHj44ddtghR8kAAAAAAIBMK791OQAAQB59++23aU0sTWcSeLrW9JBq8+bN47XXXot77rkn7YeUf6yoqCg222yzRLWXXXZZ2qvZH3300TFmzJh48MEHY++9965wJavVadWqVfz973+Pzz77LLp37554u6+//jouvPDCtMdL4uabb46PPvoocX3t2rXj3nvvjf/9739r9Xo5/vjj45NPPolDDz10jTXpPly5Llm4cGEceuihMW/evLS2a9iwYdx2220xadKk+POf/1xh04CKdOjQIf7f//t/8eabb8b48ePjqquuysskr0L08ccfx6mnnprWNm3bto3HH388Pvzwwzj99NPLbRqwJrVr146ePXvG6NGj44YbboiaNWsm3rZPnz4xa9astMesyIQJE+Lyyy9Pa5tjjjkmRo4cmVbTgJ/bcsst47nnnot//etfUaNGjdXWLF68OC8rShai5cuXJ26Ys640DmjTpk2ihgCZWqE9lUrFgAEDKqzr0aNH3lcQBLKvVq1accIJJ8TTTz8dM2bMiMceeyxOPfXUjHzmqlatWhx66KHx1FNPxRdffBEHHnhgWttfdNFFsXDhwrXO8WMnnHBCNGrUqMK6VatWxb333pvRsZPq27dvorr69evHCSeckLFxn3/++fjTn/6U1jY77bRTvPbaazFs2LA47rjjym0asCYNGzaM888/P8aOHRsXXXRR4s+wK1eujFNOOSUnk2lXp7wJrh07doxPP/00Lr300rQnGv5Y7dq105rsRnKvv/56WvXpHhOnTJkSRx55ZKxYsSLxNk2bNo177rknxowZE7///e/Tmmz8verVq8eRRx4Zw4cPj7vvvjsaNmyYeNvLL788xo4dm/aYmVJI9+NOPfXUtBqcRkQUFxfHueeeG5MmTYo77rgj9txzz7W6lm7evHmceuqp8eSTT8b06dPjjjvuiJ122qnS+6tI3759484770xrmy5dusSIESPi6aefjoMOOqjcpgFr0rRp07jyyitj3LhxcfLJJyfebv78+XH66afnrXHkqFGjoqysbLX/1qRJk3juuefizjvvrNT7OOK7id4XX3xxjBgxIu3Pvb1794758+dXatz1TSGdy6+66qp466230tp3mzZtYujQofG///1vjU0D1qSkpCSOPfbYGDFiRNx+++1Rq1attLa/9tpry226kAtjxoxZ7fe33nrr+PDDD+Pmm29eq+uoLbbYIoYMGRI9e/ZMvM3SpUsTX8tnU4MGDaJ169aJat9///3shgEAAAAAALJK4wAAAKBgPfXUU2k96LnLLrtkMc0vbbPNNvHee+/Fvvvum7Mx33777bjxxhsT1zdo0CAee+yxGDhwYMZW22rVqlU8++yzcd111yV+2Ll///7x8ssvZ2T8733zzTfx17/+NXF9vXr14oUXXkh7svSaNG7cOJ588sk444wzMrK/dcnvf//7tCc7d+vWLcaMGRPnnXdeWpPJk2rTpk1ceeWVMWnSpBgwYEB06NAh42NUFStXrowePXqscfWt1TnjjDPik08+ydjqdNWrV49LLrkkXn/99cTNHGbNmhUXXHBBRsb/sT/84Q9pTSw7//zz47HHHov69etnZPyzzz47nn766UpNqFufjBw5MlauXJmodl1pHBARiR5EHzRoUCxZsmStx3rttddi8uTJ5dYUFRVlfJVvoLC0aNEirr/++vj666/joYceikMOOaRSE/6SatOmTbz44ovRr1+/xJOvZs+eHf/6178ymqNOnTqJj2/33HPPGicFZsvSpUsTNXeJiDjppJPWaiLbj82dOzdOO+20xD9vUVFRXH755fHee+9Fly5dMpKhbt26cfPNN8fTTz+duHHV2LFj49prr83I+Jly7LHHxpAhQ7La8JC19+STT6ZVn+59qDPOOCOtZmi/+c1vYvTo0XHaaadFtWrV0hprdYqKiuL000+P4cOHR/v27RNts3z58rxOxF6dfNyPe+CBB+Kxxx5La5vNN9883nvvvbj99tujadOmGc/UqFGjOOuss+LDDz+M1157Lbp165bR/U+YMCGtRqA1atSIf/3rX/Hqq69mrJlBkyZNon///nHfffetseHezw0dOjRvTX7WZJNNNok333wzY7+jLbfcMt588820JoXPmDGj4M6NVU2uz+WjR4+Om266Ka1tunXrFh9++GHss88+azV2tWrV4txzz4133303cXOViO8aEvbq1StvDZzW5IADDoj3338/tttuu4zsr3r16nHvvfem1VD0rrvuysjYayvpPbPhw4dnOQkAAAAAAJBNGgcAAAAFK92HqXbfffcsJfmltm3bxiuvvJLWg3Nra9myZXHqqacmnrTRsmXLePvtt+OYY47JeJaioqK47LLL4o477kjcPODiiy/O6IPmf/7zn2Px4sWJaktKSmLw4MGJVm5OR3FxcfTt2zd++9vfZnS/Vdnzzz+f9gPaF198cTz77LPRvHnzLKX6PyUlJfG73/0uPv3003jggQcSP3i+Lrn22mvjk08+SVRbVFQUt912W9x1111Rt27djGfZbbfd4vXXX098LH3wwQfTXuGxPG+88UY88cQTietPP/30+Mc//pGx8b934IEHxuOPP56RyUDrqqQPLG+66aaxwQYbZDlN7hx99NEVvvcWLlwYgwYNWuux+vXrV2HNPvvsk3h1OqBq2XTTTeOOO+6I8ePHx6WXXlrplXArq0ePHvHaa69Fo0aNEtXfcsstGZ+Q1Lt370Sfbb766qt4/vnnMzp2RR577LGYN29eotpevXplbNzzzz8/pk2blqi2Zs2aMXDgwLj22muz0mzioIMOipdffjmt18g333yT8RyVceihh8aDDz6YlQZpZM6sWbPif//7X+L66tWrx69+9avE9ffdd1+88MILiesvvvjiePLJJ7NyPG7Xrl28/vrriScPvvnmm2l9bsqmfNyPmzZtWpx77rlpbbP//vvH8OHDc9bktEuXLvH888/HW2+9lZHGoalUKk499dTEDcoaN24cr7zySpx99tmJ7xOm45RTTonHH3888T2cyy+/PK1midnUsGHDePXVV2PrrbfO6H7r168fL7zwQuywww6Jt7n99ttj4sSJGc2xvsjHubx3796JGyhGRBx55JExePDgxNdKSeywww7x+uuvp3UfYOzYsWk1Ps62/fbbLwYPHpyxBqDfKy4ujvvvvz9atGiRqH7y5Mnx3nvvZTRDZSQ9ZmgcAAAAAAAAVZvGAQAAQEF69tlnY8SIEYnra9euHR07dsxiov9Tq1atePLJJ6NZs2Y5Ge97f//732Ps2LGJajfZZJMYMmRIbLPNNlnN1KtXr7jiiisS1Y4cOTJjD5pPnTo1/vvf/yau//vf/56xFS9/rqioKO69997Yeeeds7L/qqS0tDSt1egiIq644oq48cYbo7g4t7coiouL48QTT4w6derkdNx8mzx5cvztb39LXP+f//wnzjvvvCwm+m4Vxueeey7xyrhXXXVVxsa+4YYbEtd27Ngx/v3vf2ds7J/r3r17WnnWN0kfWM7U6nGFol69enH00UdXWJdk0n95FixYkGiiXM+ePddqHKBwHXHEEXHWWWfltanSrrvuGk888URUr169wtrZs2envTJ4Rbbaaqvo2rVrotq+fftmdOxMjbf77runNYGwPO+8807iz1wlJSUxcODAOOqoozIy9prstttuMXDgwETNlpYtW1YQ11ZbbrllPPzww4le1+TX3/72t7Qakuy5555Ru3btRLULFy6MSy65JPG+L7nkkrjxxhuzMgH7extuuGE8//zzsckmmySqv+aaazLaDLIy8nU/7oorrkjcvCXiu8ZwzzzzTDRu3Dh7odZgzz33zMhnokceeSSGDRuWqLZ+/frx4osvxl577bXW45bnkEMOSXw+/Pbbb+OOO+7Iap4kioqK4uGHH85404Dv1atXL5566qnEzfNWrlwZt956a1ayrMvycS5/6aWX4o033khcv+eee8ZDDz2UleZNrVu3jueeey4aNGiQeJtbbrklreNmtrRr1y4GDRoUtWrVysr+GzZsmNb1ZiE04Un6WWHUqFEF04AFAAAAAABIn8YBAABAwVm8eHHak4+7deuWldWwV+evf/1rzicmzps3L2666aZEtTVr1ozBgwdH27Zts5zqO1deeWUccMABiWqvv/76jIx52223JV5x6cADD4yzzz47I+OuSa1atWLAgAHr/QqS9913X3z++eeJ63v16hVXX311FhPxc1dddVWsWLEiUe1FF10UZ511VpYTfWfbbbeNO++8M1Ht008/HaNGjVrrMT/77LPEqwXXrl07BgwYkPXJlBdddFHsvffeWR2jqkr6O8/VuS+XTjnllAprhg4dGpMnT670GI899liFq4kmbWIAsDb23XffuPTSSxPVrm3TlNXp06dPorrnnnsupkyZkvHxV+fTTz+Nd955J1FtJq/dLrvsssS1t956axx66KEZG7s8+++/f+LPEHfddVfMnj07y4nWrLi4OB566KGc3aug8kaNGhX//Oc/09omnUYZt956a8yaNStR7dFHH52zphebbLJJPPLII4kaFIwcOTKee+65HKRas3zcj/v888/j/vvvT1y/4447xpNPPlml7w+tWrUqrrzyykS1RUVF8eCDD8auu+6a5VTf6dmzZ5x++umJam+66aZYtWpVlhOVr1evXtG9e/esjtGqVau47bbbEtfff//9MWfOnCwmWrfk61x+7bXXJq7dcMMN43//+19Wjzvt27eP/v37J66fP39+3H777VnLk0RxcXE88MAD0ahRo6yO89vf/jY233zzRLVJG7JkU5s2bRLVrVq1Kq37/AAAAAAAQGHROAAAACg4vXv3ji+++CKtbU444YQspfmp9u3bx7nnnpuTsX7s1ltvjblz5yaq/dvf/hY777xzlhP9n6KiorjnnnsSrdz+wQcfxMiRI9dqvJUrV8a9996bqLZGjRqJJyOvrQ4dOsTFF1+ck7EKUWlpaVoPte666655f4B0fTNu3LjEq8buuuuuOV+h9cQTT4xDDjkkUW3SY0B57rzzzsQrZl522WWxxRZbrPWYFSkqKoq77rrLirSrMWnSpER1m266aXaD5MHee+9dYUOEVCqV1kP8P5dkMtQxxxxj4iOQE3/6058SrSb96quvxuLFizM69m9+85tE55LS0tK45557Mjr2mtx1112J6ho1ahTHHXdcRsZ87bXXYsiQIYlqjzjiiDjnnHMyMm5Sl1xySey4444V1i1fvjweeOCB7Adag9NOOy2nn82pnAULFsTxxx8fy5cvT7xN9erVEzdUmjt3buIVvlu2bBn33Xdf4hyZsNdeeyVumpKr497q5Ot+3DXXXBOlpaWJahs1ahT/+9//onbt2llOlV0DBgyIcePGJao9//zzc9Y45nu33HJLbLLJJhXWTZ8+PZ599tkcJFq9DTfcMP72t7/lZKyTTjopunbtmqh28eLFMWDAgCwnWnfk41z+/vvvx5tvvpm4/t///ndsvPHGWUz0ncMPPzxOPPHExPW333574ual2dC7d+/Ybbfdsj5OUVFR4oYmI0aMiKVLl2Y5UfnSuW82ceLELCYBAAAAAACySeMAAACgYJSWlsb555+feGLr91q3bh1HHnlkllL91JVXXpnzCZ0rV66Mvn37JqrdZZdd8vIgdcuWLRNPFlnbCb8vvvhi4pWxzjjjjMSr6GTCxRdfHBtssEHOxiskTz/9dHz99deJaqtXrx733Xdf1ldv56f+85//JJrwUK1atejbt29eJq/fcMMNUVxc8e2qBx54YK0ePi4tLY3HHnssUW3Tpk3jggsuqPRY6dpqq62iR48eORuvKli0aFHi1YLXxcYBRUVFcfLJJ1dYN2DAgMTNMH5s3Lhx8fbbb1dY17Nnz7T3DVAZtWvXjrPPPrvCupUrV2Z81c7q1avHmWeemaj23nvvTTyZtLKWLFmS+PPx7373u4xNVk268nr9+vXTXqU9E6pXrx5//etfE9VmouFUZZSUlMQVV1yRl7FJbs6cOXHIIYfE6NGj09ru+OOPTzRxOeK7a7QFCxYkqv3Xv/4V9evXTytLJlx55ZVRr169CuueeeaZ+Pbbb3OQ6JfycT9uxowZ8fjjjyeuv+GGG3J6Dypbkh7XN9tss7juuuuynOaXGjRoEJdffnmi2nydAyIi/vjHP0aDBg1yNl7S82JExEMPPZTFJOuOfJ3L+/Xrl7h2n332iWOPPTZ7YX7m5ptvTtQ8OCJi9uzZ8cwzz2Q50erVrl07LrvsspyNd9RRRyWqW7lyZYwaNSrLacq30UYbRc2aNRPVTp48OctpAAAAAACAbNE4AAAAKAgzZsyIAw88sFIrkP/hD3+IatWqZSHVT2222WaJV5TLpCeffDJmzJiRqPb6669PNOk2Gy688MIoKSmpsO6JJ55Yq3EefvjhRHXFxcVx8cUXr9VY6WrQoEHilfrWNXfeeWfi2vPOOy+23XbbLKbh55YvX554Rbnjjz8+dtpppywnWr1tttkmDj744ArrZs2aFW+88Ualx3nttdcST3g599xzc77K+qWXXhpFRUU5HbOQTZo0KXFtixYtshckj3r06FHha2L8+PGVel/cf//9Fda0bds29tprr7T3DVBZxx9/fKK61157LeNjn3HGGYk+10yZMiXrKxk/+uijMX/+/ES1Z511VkbGnDZtWuJJXuedd17emvZ07949tttuuwrrPv300xg/fnwOEv3U0Ucfvc5el6wrRowYETvvvHPa10/p3mu4++67E9V16tQp5yu3f2+jjTaKU045pcK6VatW5WUSaL7ux913332JG9btsssuiRvPFLLhw4fHxx9/nKj2iiuuyPln5e+ddtppseGGG1ZY99JLL8WSJUtykOinGjZsmLHzclK77757dOnSJVHt8OHD48svv8xyoqovH+fy5cuXxyOPPJK4/vrrr89iml9q1qxZWs0102mCkEnHH398NG/ePGfjtWvXLlq1apWo9vPPP89ymvIVFRUlbn6Uzv04AAAAAACgsGgcAAAA5NXSpUvjjjvuiJ122qlSkz6222676NWrVxaS/dKJJ56YkwYFP3ffffclqttll11i//33z3KaNdt4440TPeQ+ZcqUtFfz+15ZWVm88MILiWq7d++e+IG9TDrzzDPz8jrJp2+//TZeeumlRLW1a9eOSy65JMuJ+Lknn3wy5syZk6j20ksvzXKa8p1xxhmJ6pIeC1Yn6SS/6tWrx2mnnVbpcSpriy22yOvxvNCks8JZviYvZlvr1q1j3333rbAu3Yfyy8rKEq1k3bNnT80sgJzaYostYrPNNquwLunkxnQ0b948Dj/88ES1ffv2zfj4ldl/586do0OHDhkZc8CAAbFq1aoK62rWrBm///3vMzJmZeXiurGyevTokfMxSWb69Onxxz/+MTp16lSpCXG9evWK7bffPlHte++9l/j+xx//+Me0s2RSIb+f8nU/Lsl18veuuOKKdeJ6Oek9yObNm+f1OFejRo04+eSTK6xbvnx5DBkyJAeJfurkk09OvCp7JvXu3Ttx7XPPPZfFJOuGfLzGhw4dGnPnzk1Uu/vuu0fHjh2znOiXzj333ERNtiIiXnzxxVi8eHGWE/1SkmY4mbb77rsnqhs7dmyWk1Qs6b0zjQMAAAAAAKDq0jgAAADIuRUrVsTbb78dV155ZbRq1Sr69OkT33zzTdr7qVatWtx5551RvXr1LKT8pXysbrZo0aLEDRVOP/30LKep2G9+85tEdUknmf/cyJEjE09+PvHEEys1xtrabLPNYu+9987L2Pny7LPPRiqVSlR78sknR9OmTbOciJ976qmnEtXtsccese2222Y5TfkOOOCAqF27doV1lT2ORETiiQNdu3bN6QplP3bSSSflZdxClM6Dyutq44CI7ybvV2TQoEFpraj58ssvx5QpU8qtKSoqMvkRyIskE3M//fTTrIyddOLdCy+8EF999VVWMowcOTLee++9RLWZbKaX9LrxiCOOiCZNmmRs3MrI9ufPymrcuHF07do1p2NSvvnz58fzzz8fZ5xxRrRu3TpuuOGGWL58edr72WSTTeIvf/lL4vqk76dNN900unfvnnaeTNpuu+2iTZs2Fda98sorUVZWloNE/ycf9+MmTJgQn332WaLarbfeOg455JAsJ8qNwYMHJ6rr0aNH4onD2VKo54CIiN/+9rc5HzPiu/8m9erVS1Sbj4YKVUm+zuUvv/xy4tqzzjori0nWrFmzZombbK1YsSJef/317Ab6mSZNmkSnTp1yOmZEJG7iVZm/g2VakgZtERoHAAAAAABAVZab2TUAAECVt2DBgvjHP/6R9napVCoWLFgQc+fOjTlz5sRXX30V77//fixdunStM/3tb3+LPffcc633k0Tjxo3jV7/6VU7G+rFXXnklVqxYUWFdcXFxHHPMMTlIVL4DDjggUd37779fqf0nfai1pKQkDjrooEqNkQmHH374evUA7jPPPJO4NsnEVzKrrKws8YPyxx9/fJbTVKxWrVrRuXPnCh+WHj16dCxdujRRk4EfmzVrVuJJhocddlha+86kQw45JKpXr55oxd913fTp0xPVlZSURP369bOcJn+OOuqoOPvss2PRokVrrFm4cGEMGjQo0eqbERH9+vWrsKZLly7RsmXLpDEBMqZ169YV1syYMSNmzZoVG264YUbH7tKlS7Rv3z7GjBlTbl1ZWVncfffdce2112Z0/IiIvn37Jqpr0qRJxj4LzpkzJ3GzgkK4bmzVqlW0a9cuxo0bV25dZT9/Vtbee++d9wm164LPPvusUvehSktLY968eTFnzpyYM2dOjB07NkaOHLnWk91LSkpi0KBB0bhx48TbJF3R+5hjjoni4vz3+99///3j7rvvLrdm3rx5MW7cuNhqq61ykilf9+PSuc/Ro0ePKCoqymKa3Pj4448TT2gthHNAp06dok6dOhU2Tsv1OaBZs2aJVx7PtJo1a0a3bt1i0KBBFdYOGzYsUqnUOvHazYZ8ncuTNg4oKSlJPHk/G4499tgYOHBgotqXX345p81x9ttvv7ycU9u1a5eobsaMGVlOUrENNtggUV3S+3EAAAAAAEDh0TgAAABIZO7cufH73/8+3zF+cNppp8VFF12Us/E6d+6clwcpX3zxxUR1u+22W+IHvrJpk002iWbNmlX4UNnHH39cqf1/8MEHiep22WWXaNiwYaXGyIQDDzwwb2Pnw9ChQxPVtWnTJvbYY4/shuEXhg8fHrNnz05U261btyynSWbnnXeu8GHp0tLS+OSTT9J+IP/DDz+MVCqVqHb//fdPa9+ZtMEGG8TOO++cePLeumzx4sWJ6tJtIlHV1K1bN4455pi4//77y63r169fosYB8+bNiyeffLLCOg1fgHxJ2gxm6tSpGW8cEBHRu3fvOO+88yqsu+++++LKK6+M6tUz9ye3xYsXx4MPPpiotkePHlGzZs2MjPvyyy8nmlxdUlIS++23X0bGXFs777xzhY0Dpk+fHjNmzIimTZvmJNPee++dk3HWdcOHD4/hw4fnO0ZEfNes8e67746OHTsm3mb69OkxcuTIRLWF9DmsosYBEd/d08lV44B83Y9LpxnkCSeckMUkuZP0HmTz5s1jhx12yHKailWvXj223377ePfdd8ut+/TTT6OsrCxnE4m7du2a18n4+++/f6LGAXPnzo0JEybE5ptvnoNUVU8+zuULFy5M3Ohyn332iUaNGmU3UDm6d+8etWrVimXLllVY+9Zbb+Ug0f/Zeeedczre95JeZ86aNSvLSSqW9P5Z0vtxAAAAAABA4cn/0gUAAABpOv300xM9yJxJ+XogNumE0UKamNChQ4cKa7744otEDxb+XNKHJ/fcc8+0951JW221VVqrEFZl48ePj7lz5yaqXd8aKhSKpMeRpk2b5mzyR0WSHEciIj755JO09530OLLhhhvGlltumfb+MymdiUnrMo0D/k+SSfxDhw6NyZMnV1j3yCOPVHgurl+/fhx11FFJ4wFkVNLJ8NOmTcvK+D169Ii6detWWPfNN9+ktTJ1Eg8//HAsWLAgUe2ZZ56ZsXGTXjfutNNOUa9evYyNuzaSXjcmncCdCYUwoZbMKS4ujvvuuy969OiR1nZJVzkvLi6OTp06VSZaxmXzc1hl5ev9lLRx5VZbbRWtWrXKcprcSHoO2GuvvbKcJLkkr9nFixfH+PHjc5DmO/m+J5nOfYSk90fWR/k49nz66aeJG13us88+WU5Tvrp168auu+6aqHbUqFGJGlNlynbbbZezsX4saSOzpUuXZjlJxZLeP1uyZEni1yQAAAAAAFBYNA4AAACqjOrVq8eNN94Yd999d85Xbmrfvn1Ox4uIWLFiRYwePTpRbb5W0lmdFi1aVFhTVlYWU6ZMSWu/q1atii+++CJR7S677JLWvjOtqKiooH4n2TRixIjEtYWyKun65sMPP0xUV0iv2STHkYhINDn656rScTXfx7JCoXHA/9lrr70qXBEylUpF//79K9xXv379Kqw59thjo06dOknjAeuZqVOnxjPPPBN///vf4+yzz45DDz009thjj9hiiy1iww03jPr160fNmjWjqKioUl9XX311ohzTp0/Pys/XoEGDOPHEExPV9u3bN6NjJ91fly5dMtr4yXVjZuTj/gHZseGGG8YLL7yQdtOAiOTvp6222qpgGnF4P31nxowZie9ZrUv3OZwDMiPfn+O33XbbqFWrVqLaUaNGZTlN1ZWPY086TVkKoeFM0gxLliyJL7/8Mstp/s9mm22Ws7F+LOn7bvny5VlOUrGk989SqVRBNDoAAAAAAADSp3EAAABQJbRv3z6GDh0aF198cV7Gz8fqYaNHj44VK1Ykqt16662znCa5Jk2aJKqbOnVqWvudMmVK4v8ehbBqeiFkyIV0VicrpIfL1ycfffRRorr14TgSETFhwoREdYXwHi6EDIVgyZIlierWh8YBRUVFiSauDRgwoNx/HzNmTKIVRXv27Jk0GrAemDlzZvTv3z+OPfbYaNGiRbRo0SIOPfTQuPDCC+M///lPPPPMM/Hee+/F+PHjY/bs2bFo0aLE1+9rY9GiRVnbd58+fRLVvfTSSzFp0qSMjPnRRx8lXum6V69eGRnzex9//HGiuvXlurEySkpKonnz5jkZi+w6+OCD48MPP4wDDjigUtv7HJYZ+bgftz7e55g7d27iyfVes+XL9+f44uLi2GKLLRLVJr0/sr7J17n8888/T1y7/fbbZzFJMjvssEPi2nR+trWVr+uwmjVrJqqrSo0DIpI38wQAAAAAAAqLxgEAAEBBa9q0adx8880xcuTIvK6ks/HGG+d8zPHjxyeuzceD1GuS9MGzdB/anTZtWuLadu3apbXvbNhyyy3zHSEnvvrqq0R19erVizZt2mQ5DauT9EHw9eE4EpH8WOI4UjiSPqS8PjQOiIjo0aNHFBUVlVszfvz4eOONN9b47/369atwnC222CI6d+6cbjxgHbNq1ap44oknonv37tGsWbPo2bNnDBw4MKcT8CqybNmyrO17hx12iD333LPCurKysrj77rszMmbfvn0T1TVt2jSOOOKIjIwZETFr1qyYP39+otr15bqxMpo2bVrheZrCts0228RTTz0VzzzzzFqtWpz0no73U/nycT8u6X2OiIjtttsui0lyxz3IzNhwww2jUaNGORmrPEnvJaRzr3V9kq9zedLX6YYbbpi4aUY2tW/fPnFtLs8bderUydlYP5b0NZNKpbKcpGIaBwAAAAAAwLqver4DAAAArM4OO+wQvXr1ilNOOSVq1aqV7zh5eRhvypQpiWsL4aHUdC1YsCCt+qQPs9arVy/q1atXmUgZ1axZs3xHyImvv/46UV3btm1NoMmDefPmJV6F94ILLogLLrggu4EyLN3jSETyY0khrBTboEGDqFOnTixZsiTfUfKqtLQ0UV21atWynKQwtGzZMrp06RKvvfZauXX9+vWLvfba6xffLy0tjf/+978VjtOjR49KZwSqvlQqFQ8//HBceeWV8eWXX+Y7Trmy2TggIqJPnz7x9ttvV1h33333xdVXXx3Vq1f+T2+LFi2Khx56KFHtKaecEjVq1Kj0WD+XzufPww8/PGPj5kplrhsroxAm8pG+atWqxX777RfnnntuHHzwwRn57Jr0PfWPf/wj/vGPf6z1eLmUq/dTRH7eU0nvc0RE4pXdC10654Add9wxe0GyJFev2UK5F5g0h8YBq5evc/k333yTqK5t27ZZTpLM5ptvnrg26c+WCYXwt6RCl87nlVWrVmUxCQAAAAAAkC3F+Q4AAAAQ8d0DXfvuu29cc801MWbMmPj444+jd+/eBfOgVz5ypPPQblW0dOnStOpnzZqVqG6jjTaqTJyMa9q0ab4j5ETSFaMKYRL2+shx5KdWrFgRCxcuTFRbKMeSQsmRT0lXQkv39VCV9ezZs8KagQMHrrbpxIsvvljhBJHi4uI4+eSTKxsPqOK++OKL6Ny5c5x44okF3zQgIvuTWY455phE5+Pp06fHU089tVZjPfTQQ4muVYqKiuKMM85Yq7F+znVjZhTKPQwqtsEGG8Rhhx0W//nPf+Kbb76JF198MQ455JCMNA1YtGhRzJ8/PwMpC1Mur7vz8Z5Kep+jVq1a0bhx4yynyQ3ngMwolM/vSXPMnDkzy0mqpnydy6dPn56orlDuOderVy/q1KmTqDaXTSo0rq1YOsfEunXrZjEJAAAAAACQLZVf9gQAACChkpKSqFWrVtSsWTMaNWoUzZo1i2bNmkWbNm2iffv2sc0228QOO+wQNWvWzHfUNcpHthkzZuR8zFxK96HdpPWNGjWqRJrMK5Qc2ZZ01bZCWXVtfeM4Uvn6QnkPN2rUKCZPnpzvGHmV9CHl9alxwFFHHRVnn312uZNLFy5cGI8//nj87ne/+8n377///gr337Vr12jZsuVa5wSqnoceeihOP/309eqYWpEaNWrEqaeeGn/7298qrO3bt28cddRRlR6rb9++ier233//tFZ5TcJ1Y2YU8n2N9UVRUVHUqFEjatasGbVr144mTZpEs2bNonnz5rHFFltEhw4dYtttt4327dtnbXKh91Pm5OM9lfQ+x8Ybb5zlJLnjNZsZhXQfIQnXe6uXr3N50kaXhdI4IOK7LJMmTaqwbtGiRdkPQ2IaBwAAAAAAwLpP4wAAACCRVq1aJXoIbF1VXFyc8zHX9Yc3V65cmVb9smXLEtUVykSNQsmRbUlfpx4yzA/HkZ9KehyJKJz3cKHkyCeNA36pTp06ceyxx8a9995bbl2/fv1+0jhgzpw58fTTT1e4/549e65tRKAKuuGGG+KPf/xjvmMUpLPOOituuummKCsrK7fulVdeifHjx1dqUv8HH3wQH374YeI8mbaun0fTvW6srHzcO1hX9ejRI/r165fvGJXi/ZQ5hXw/bl26z+E1mxmF8vk9aY507pGsT/J1Lk/6+6hTp06WkySXNMu6foypatL5fRTS6w0AAAAAAEjO0ysAAAAFal1/oC6VSqVVv2LFikR1NWrUqEycjCuUh4WzLenrtFatWllOwuo4jvxU0uNIhGNJIfEg+uolmdw/ZMiQ+Oqrr374/w899FAsX7683G0aNGgQRx555NrGA6qYf/3rX5oGlKN169bRvXv3CutSqVTcfffdlRqjb9++ieqaN28ev/nNbyo1RnnW9fNouteNsDbW9ffTum59vM+xrr9mc3UOqGr3ESr6bEhuVbWmuRGaVFRVSY/5NWrUiOrVrUcEAAAAAABVkcYBAAAABWpdf2g3XdWqVUtUV1pamuUkyaxatSrfEXIi6c+Z9PdHZjmO/FQ6r0PHksKRdCXP9e313rlz59hiiy3KrUmlUtG/f/8f/n+SVXuPPfbYqF279trGA6qQV199Nc4///xKb19UVBRbbrllHHPMMXHppZfGXXfdFYMHD4733nsvxo4dG1OnTo0FCxbE0qVLY+XKlZFKpRJ9XXnllRn8Kddenz59EtXdf//9aa9svGDBgnj44YcT1Z566qlZmcCzvp1HIZu8n6q29fE+h9dsZlS1+wgmBBeWpK+fQjr2JH0NubdVWJYsWZKoLun9OAAAAAAAoPD4SyAAAECBKqSHAAtBVVstq1ByZFutWrUSPWy4vvz3KDSOIz+VzqpshfKaLZQc+dS4ceNEdcuWLYtVq1atV5MfevToEX/+85/Lrenfv3/8+c9/jk8//TRGjBhR4T579uyZoXRAVTB//vzo2bNnlJWVpbVdkyZN4thjj43u3bvHPvvsEw0aNMhSwsLRrVu3aNu2bUyYMKHcuhkzZsQTTzwRxx57bOJ9P/jgg7F48eIK64qLi+OMM85IvN90uG6EzPF+qtpq1aqVqG5d+qzmNZsZhfKaSJoj6Wud3KhRo0YsW7aswrpCeZ1FeK1VVUk+d0RENGrUKLtBAAAAAACArCnOdwAAAABWr06dOvmOUFCSPmCYdMWcbCuUHNmWdFXqJA++knmOIz+VzoPKhfIeLpQc+dSyZcvEtdOmTctiksLTo0ePKC4u/xbv+PHj44033oh+/fpVuL927dpFp06dMpQOqAquv/76mDJlSuL6TTfdNPr27RvffPNN/Oc//4lDDz00a00DCmXV3u8VFxdHr169EtX27ds3rX3fddddieq6desWrVq1SmvfSbluhMzxfqra1sf7HF6zmVEon9+T5jCZu7Ak/X2sWLEiy0mS0zigapo6dWqiumx97gAAAAAAALJP4wAAAIAClfRB5YiIlStXRiqVqlJfV111VVr/PZJOSJo5c2Za+82WQsmRbUkfLp87d26Wk7A66RxH7r777rwfF9L9mjRpUlr/PerUqZN4NfpCeQ8XSo58at26deLadCa/rgs222yz6Nq1a4V199xzTzz44IMV1vXs2TMDqYCqYsaMGfHPf/4zcf2RRx4Zo0ePjjPPPDNq1KiRxWTfWbp0adbHSNdpp50WNWvWrLBuyJAhMW7cuET7fP/99+Pjjz9OVHvWWWclqquMdK4bX3755bxfB6b7NXTo0Kz9t4OfS+f9dNlll+X9/VGZr3XZ+nifI53X7Lhx4/L++kv3K0kTtUwolM/vSXNkq/kTlZP0fVhIx56kWdI5xpB9Se+dpXM/DgAAAAAAKCwaBwAAABSohg0bJq4txEk1mda8efNEdbNnz46ysrIsp6nYjBkz8h0hJzbaaKNEdevbKuCFwnHkp4qKimLjjTdOVFsID/yXlpbGnDlz8h0j79J5UDnpqmnrkiST/f/73//Gt99+W25NcXFxnHzyyRlKxZqs6xPtqFr69++feEXa3/72tzFw4MC0ri3WVqGs2vtjTZo0iWOPPbbCulQqFXfddVeiffbt2zdRXYsWLeKggw5KVFsZrhshc7yfqrak9zlmzZoVK1euzHKa3PCazYxCuI8QkTxH0nut5MYGG2yQqK5Q7jmXlZXFrFmzEtUm/dnIjaT3zlq1apXlJAAAAAAAQLZoHAAAAFCgNttss8S1ixYtymKSwpD0YdaysrL4+uuvs5ymYhMnTsx3hJxI+jpd31YBLxSOI7+U9FgyadKk7AZJmMEk44hmzZpFrVq1EtWuj8eaI488ssKVIpO8jvbbb79o0aJFpmKxBiZaUUgGDBiQqK59+/Zx7733RnFxbv+kNH369JyOl1Tv3r0T1fXr1y9WrFhRbs38+fPjkUceSbS/008/PapVq5aotjJcN0LmbLzxxlGjRo1Etd5PhSfp8TCVSsU333yT5TS54RyQGVOnTo1Vq1blO0bie5IaBxSWTTbZJFFdoTRn/fbbbxM37036s5F9S5Ysiblz5yaqTaeRJwAAAAAAUFg0DgAAAChQ6azosj6ssJzOZMaxY8dmMUnVyZALSR8unzx5sofL86B58+ZRUlKSqHZ9OI5EJD+WFMJ7uBAyFIKioqJo2bJlotr1sXFA7dq1E61+XZGePXuufZg8KyoqSlSXz4YchbiCOuunqVOnxqhRoxLV3nzzzYkbuGRSoV6bdOzYMXbaaacK62bNmhWPP/54uTUPPPBAouNCtWrV4vTTT0+csTJ8/oTMKSoqSvxZ2fup8KQziX706NFZTJI7zgGZsXLlypgwYUK+YyS+l7DppptmOQnpSPr7GD9+fJSWlmY5TcU+//zzxLVea4UjnftmGgcAAAAAAEDVpXEAAABAgWrTpk3i2smTJ2cxSWFo2LBh4pWwkk6CyqZCyJAL7dq1S1SXSqXWmQfqq5Li4uLEEwDWh+NIxHerJidRCO/hQshQKJIea77++ussJylMp5xyylpt37BhwzjiiCMylCZ/kjZKqWgF8GwqlNUhYdiwYYnqtthii+jevXuW0/xSKpVKazJSrvXu3TtRXd++fdfq3793yCGHZH3C1SabbJJ4hfT15boR1kbSezreT4Un6WePiIhPP/00i0lyxz3IzMn3va+ZM2fGjBkzEtV26NAhy2lIR9L7dytWrIiJEydmOU3F0rlWT6c5CdmVTuOALbbYIotJAAAAAACAbNI4AAAAoEBtv/32UVyc7GPbJ598kuU0hWHbbbdNVPf2229nOUn55s2bV9ATnTIpyWqr33vzzTezmIQ1Sfo7chz5qdGjR8eCBQuynKZ877zzTl7HLyQ777xzorrPPvssy0kK05577hlbbrllpbc/7rjjonbt2hlMlB81a9ZMVLds2bIsJ1m9JUuWxJw5c/IyNvxc0vP+oYceGkVFRVlO80uTJk3K+3m4PCeeeGI0bNiwwrphw4at8XPBO++8k3jCaa9evdLKVxnFxcWxww47JKpdX64bYW0k/Rw2duzYWL58eZbTkI4OHTokvq5cV+5zbLrpprHRRhslqnUOKF++70mmcx8h6f0RcmO77bZLXPv+++9nMUnmM6Tzs5FdSZubbLzxxtGiRYsspwEAAAAAALJF4wAAAIACVb9+/cQrYw8fPjzLaQrD9ttvn6juzTffjFQqleU0hTt+Lu20006JG1y88sorWU7D6uy2226J6r766qvEq9JVZUmPI2VlZfHWW29lOU3hjl9odt1110R1Y8eOzetq8vnUo0ePSm/bs2fPzAXJo6TND2bPnp3lJKu3rqxIy7rhyy+/TFSX9Doi09544428jJtUnTp1Eh9377rrrtV+v2/fvom2b926dfz6179OnG1tJP19f/jhh1FWVpblNFC1JX0/rVy5MkaOHJnlNKSjevXqiT83Dhs2LFatWpXlRLmR9DW7vtyDrKx8X8MkbWZRXFyscUCBSXrciYiCuF+UNMNmm20WjRs3znIakkp6zZH0PhwAAAAAAFCYNA4AAAAoYHvssUeiujfeeGO9WKFur732SlT37bff5vVB5qeeeipvY+davXr1YptttklUO3To0IJeObayqlWrlqguX5Orkh5HIiJefvnlLCYpDNtss01ssMEGiWqffvrpLKdZs3feeSdmzpyZt/ELTdIHlleuXBljxozJcprCdPLJJydu5PJjW221VXTs2DELiXKvSZMmieqmT5+e5SSrN2LEiLyMm2+Ffp5cX02dOjVR3eabb57lJKv30ksv5WXcdPTu3TtRXf/+/WPZsmU/+d68efPiscceS7T9GWecUanje2UkvW5ctGhRWisaw/rI57CqLenvb+HChTFkyJAsp8mNpD/zmDFjYsqUKVlOU3UNHz48r00ZBw8enKhuxx13jHr16q31eK71M2fzzTeP+vXrJ6rN97Xy+PHjY9y4cYlqd9pppyynIR2ffPJJojqNAwAAAAAAoGrTOAAAAKCAde/ePVHdokWL1ovV3PfZZ5/ED6T+73//y3Ka1Vu1alXih3TXFQcddFCiumXLlsXjjz+e5TS5V6NGjUR1K1euzHKS1dtjjz0Sr+z15JNPZjdMASgqKop99903Ue1TTz0VpaWl2Q20Buvie2VtbLzxxtGiRYtEtUkfgl7XtGjRIvbbb7+0t0u6YnZVsPHGGyeqGz9+fJaTrF6+J3fkS6GfJ9dXixYtSlTXsGHDLCf5paVLl8YzzzyT83HTtfXWW0fXrl0rrJszZ04MGjToJ9/773//G0uXLq1w25KSkjj11FMrnTFdBx54YOImBevDdSOsjRYtWiRezdv7qfAkvc8REfHAAw9kMUnuJL0HGbF+NcxMV1lZWd7e05999lmMHTs2UW2Sa5gkXOtnTnFxceL7VV9++WWMGjUqu4HK8cQTTySuzdRrjbVXVlYWo0ePTlSrcQAAAAAAAFRtGgcAAAAUsG7dukWtWrUS1d53331ZTpN/jRo1ip133jlRbf/+/fPyUOqTTz6Z15XF8uGQQw5JXHvnnXdmMUl+1KxZM1Fd0gl6mVa9evXEv6Onn356vVjlfv/9909U980338Rzzz2X5TS/tHz58hgwYEDOxy10SR9aXl8bB0REnHLKKWnVFxcXx8knn5ylNLm3ySabJKpL+qB8Ji1ZsiReffXVnI9bCAr9PLm+WrJkSaK6fKwO+8QTT8T8+fNzPm5l9OnTJ1Fd3759y/3/a3LYYYdFs2bN0s5VWU2bNo1OnTolqn3ggQdMAoQKHHHEEYnqPvjgg/j000+znIZ0dOnSJerWrZuodtCgQTFr1qwsJ8q+nXfeOVq2bJmodn24B7k27r777oIftzJN51bHtX5mHXDAAYlr//vf/2YxSfn69++fuDadn4ns+vLLLxN/DtQ4AAAAAAAAqjaNAwAAAApY3bp1o1u3bolqn3rqqZg0aVJ2AxWAY445JlHd9OnT47HHHstyml/65z//mfMx861jx47RvHnzRLXvv/9+vPLKK1lOlFuNGzdOVDdnzpwsJ1mzo446KlHd8uXLE09kq8qOPPLIqFatWqLa22+/PctpfunBBx+M2bNn53zcQtexY8dEdetz44AjjjgirdXBDzjggNh0002zmCi3ttpqq0R13377bUycODHLaX7qscceW28ny1SF8+T6qKSkJFFdPhpi3XLLLTkfs7IOO+ywRE1L3nzzzfjss88iIuKtt95K3MCkV69ea5WvMpJeN06fPj0effTRLKeBqi3p+yki4rbbbstiEtJVs2bNOPjggxPVLlmyJP7xj39kN1COHHnkkYnqPvzww3jzzTeznKbq+uCDD+Kdd97J6ZgLFy5MPJl7gw02yFjjANf6mZX07wAREffee28sW7Ysi2lW7/XXX49Ro0Ylqt1ss82iQ4cOWU5EUiNHjkxUt/nmm8eGG26Y5TQAAAAAAEA2aRwAAABQ4JJOFiktLY0//elPWU6Tf8cdd1wUFRUlqr3mmmuitLQ0y4n+z0svvRSvv/56zsYrFNWqVYtTTz01cf2ll16al9Vrs2WjjTZKVDdlypQsJ1mzgw8+OFq0aJGo9uabb46ZM2dmOVF+bbzxxtGlS5dEta+88kq88cYbWU70f1asWBHXXnttzsarSn79618nqnv33XdzeuwvJLVq1YoHHngg/vnPfyb6uuGGG/IdOaNatmwZderUSVT78ssvZznN/0mlUuvMZLLKqArnyfVR0lWUp06dmuUkPzV48OD48MMPczrm2qhevXqcccYZiWq/b86UtEnTFltskbFJfen43e9+l/hYesUVV8Ty5cuznAiqrh122CF23333RLX9+/f/ocEIhSHp8T3iu8YPuT5nZsOZZ56ZuPaSSy7JYpKq74orrsjpeLfcckvMnTs3Ue3RRx+duIlURVzrZ1a7du0Sr/Q+e/bsvDT/TOee1UknnZTFJKTrrbfeSlSXTgMLAAAAAACgMGkcAAAAUOB+/etfJ15B9+GHH44hQ4ZkOVF+bbbZZokn/H7xxRfx73//O8uJvrNy5cq4+OKLczJWITrjjDOiuDjZbYYRI0bk7PeSC0lWmY2IGDNmTJaTrFn16tWjd+/eiWrnz5+/XryWTz755MS1F110Uc4mov/jH/+ISZMm5WSsqmb77bePTTfdtMK6BQsWVKlJp5l2yCGHxDnnnJPoa8cdd8x33IwqKiqKnXbaKVHt//73vyyn+T8DBw5MvLLfuijpefLrr7+OxYsXZzkN32vWrFmiutdeey3LSf7PkiVL4oILLsjZeJly5plnRvXq1SusGzBgQEydOjUGDhyYeL9JG6Zl0gYbbBAnnnhiotqJEyfG9ddfn+VEULWdd955iepWrVoV55xzzjrVZK+q22+//WKLLbZIVLto0aLEv+tC1r59+zjggAMS1b799tvRr1+/7Aaqwl555ZV45plncjLW119/Hbfeemvi+h49emRs7KTX+p9//nnGxlzXpfP7+ctf/hILFizIYpqfevnll+OVV15JXJ/J1xprL+nfjbp3757lJAAAAAAAQLZpHAAAAFDgioqK4sILL0xcf9JJJ63zq4VfdNH/Z+++o6Mq17ePXzuFkApKkxp679J77yIivUhAjhQbKKioKCgKesSKCiKQgCIgoCBNOkjvAem9Ix0SUiBkv3949FV/JrMnmT2T8v2sleU67Hs/9zWZkmTOPPd+0XLtq6++qhMnTtiY5nfvvPOO9u7da3uftCo0NFSdOnWyXP/yyy9rz5499gVyoxIlSliq27t3r+Li4mxOk7QBAwYoODjYUm1ERIRmzpxpcyLP6tatm6VN6JK0fft2ffDBBzYn+v2D9G+++abtfdIzqx9ezuhDdJC0+vXrW6pbsWKFTp48aXMa6ebNm+lyI7QrZc+eXTlz5nRYZ5qmtm/f7oZEkKQiRYpYqluyZInbNrG+9NJLbnleulq+fPn06KOPOqy7efOmHn/8cUu/D2bJkkVhYWEuSJcyQ4cOlbe3t6XaMWPGaP369TYnAtKvzp07KzQ01FLtmjVrNG7cOJsTwSpn34+bP3++R67+7WrDhg2zXPvss8/qyJEjNqZJ3wYNGqRbt27Z3uepp55SVFSUpdqaNWuqTp06Lutt9T2xy5cvMyTRou7duyswMNBS7ZUrV5x6nzw17ty5o4EDB1qub9CggeVhyLDftWvXtG/fPod1WbNmVZMmTdyQCAAAAAAAAAAA2InBAQAAAACQDjz55JMqV66cpdoLFy6oXbt2lj8wmh61bt3a8vfjzp076tixo61XsF22bJnGjBlj2/rpxdtvv23paquSFBsbq44dO+rixYs2p7Jf8eLFLd3u+Ph4rVixwg2J/l2OHDn06quvWq7v37+/1q1bZ2Miz/L19dXzzz9vuf7111/X2rVrbctz+/ZtdezY0aPDJdKDNm3aWKpjcEDm1bhxY0t1iYmJeuedd2zNYpqmnnzyyQzxsy61ypQpY6nup59+sjkJ/lCpUiVLdRcuXNCMGTNsTiN9++23+vzzz23vY5fBgwdbqtu6dauluo4dOypXrlypiZQqZcqUUf/+/S3V3r9/X48//rgOHDhgcyogffL19XVqGMDIkSM1a9YsGxPBGf3791exYsUs1z/33HPp/u/oFi1aqGXLlpZqo6Oj1aZNG37fTcK5c+fUs2dPW4cwjRkzRsuWLbNc78xgCCsCAwNVsGBBS7X8rm/Ngw8+qEGDBlmu//rrr/Xjjz/aF+h/nn32WaeG877++us2poGz1q5dK9M0HdY1atRI/v7+bkgEAAAAAAAAAADsxOAAAAAAAEgHvL29NX78eMv127ZtU+vWrXXt2jUbUznn2LFj6t+/vw4fPpzqtQzD0Ntvv225PjIyUl27dlV8fHyqe//Ttm3b1K1bN92/f9/la6c3JUuWtLzBSJJOnjypJk2a6LfffrMxlf38/PxUpUoVS7UffvihzWmSN3ToUBUuXNhSbWxsrB555BGtXLnS3lBOiI2N1aeffqqPP/7YJesNHjxY+fLls1SbkJCgTp06KTIy0iW9/yomJkYdO3bUwYMHXb52RtOsWTNlyZLFYd2GDRuUkJDghkRIaxo3bqwHHnjAUm14eLi2bNliW5YRI0Zo/vz5tq2fntSqVctS3bRp03Tjxg2b00CSU1eafe211xQdHW1bliVLlqhfv362re8OTZo0UenSpV22njNXc7XLW2+9pZCQEEu1V69eVbNmzbR7926bU1l38+ZNvfXWW5o5c6anowDq1q2bateubak2MTFRvXv31jfffGNzKusSEhIUERGh1157zdNR3M7X19epYVN3795Vu3bttHHjRhtTJc/KxlBHxo8fL29vb0u1x48fV5MmTdLU1eQvXLigF198MU0MlFu8eLGeeeYZl9wv/zRjxgy98cYbluurVq2qjh07ujyH1d/1P/vsM927d8/l/TOiYcOGObV5u3fv3tq7d69teT788ENNmzbNcn3NmjXVvHlz2/LAeatXr7ZU17p1a5uTAAAAAAAAAAAAd2BwAAAAAACkEy1bttQTTzxhuX7jxo2qVauW9uzZY18oCzZs2KBu3bqpdOnSmjJliss+IPrYY49Zvqqw9PsHdR955BHdvHnTJf0laeXKlWrevLlu3brlsjXTu7Fjxyp//vyW6w8dOqQaNWq4fZPRihUrVKtWLZc9Hho0aGCpbu3atRo9erRLeqaEn5+fvv76axmGYak+KipKrVu31ieffGLLh9ytunjxot566y0VLlxYzz//vM6dO+eSdQMDAzV27FjL9deuXVOTJk20YcMGl/SXft9o16pVK61atcpla2ZkwcHBlp5v0dHR2r59uxsSIa3x9fVV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cXx8vCZMmKAJEyaoVq1aat++vVq2bKkKFSo4fH39p4SEBJ08eVK7du368/fGHTt2uGVYHeBq4eHhunz5slatWuXUeYsWLdKiRYtUrFgxdejQQa1bt1bNmjUVFBTkdIbz589r79692rJly5/v6cTExDi9TmbTvn17vffeexo+fLhT512/fl0jR47U2LFj9cgjj6hz585q2LChcubMaXmNW7duacuWLVq/fr2WLVuW4t+NnFWoUCEtW7ZMDRs2tDxoT/p98/K7776rcePGqXHjxmrXrp2aN2+uMmXKyMvLy6kMd+/e1dGjR7Vz505t2bJFmzZt0t69e526Arq7+Pr6aurUqapVq1aSP6MSEhL05ZdfauLEiapdu7ZatWql6tWrq1SpUsqZM6cCAwMVFxenmzdv6tixY9qzZ49WrFihlStXKi4uzulMPj4++vbbb5UtW7bU3rxkvfjii5YHB/whLi5Omzdv1ubNm1PUM6MPDpCkOnXq6IMPPnD6ts6ePVs//PCDOnXqpH79+ql+/foOB17euHFDixcv1qRJk5y+L6Xfh8XNnz/f9scanGdlcICXl5e6devmhjQAAAAAAAAAAMAdGBwAAAAAAOlQq1atFBERoSeeeMLyFYf+cPfuXf30009/bugOCQlRhQoVVKhQIeXLl08hISHy9/eXt7e34uPjFRcXp1u3bum3337TpUuXdPLkSZ05cybNfEDXMAx99913qlevnn799Venz9+7d6/27t3rsjyhoaGaOHFipv/QvZeXl7777js1b948RR8AvnTpkj777DN99tln8vHxUbly5VS8eHGFhoYqW7Zsfw4S+OPxeeHCBZ05c0YHDhzQ9evXXX1zLBkwYIA+/fRTnTx50iP9nZU9e/Y/NwAcO3bM6fP/uIre22+/LR8fH5UqVUrFihVTgQIFlDNnTvn7+8vPz093795VfHy8YmJidPnyZV26dEnnzp3T0aNHU/Shd7t069ZNBw4c0Ntvv+30uVevXtWMGTM0Y8YMl+WZNGmSChQo4LL1Mpq+ffs6HBwg/f7haAYHZE4NGjRQ165dNXv2bKfOW758uZYvX66AgADVqFFDpUuXVr58+RQQEKD79+/rzp07unDhgo4fP66dO3da3kDVs2dP9evXT9OnT0/JzckQqlSpkqL7BPYaO3as5s+fb2k41l/9MfjI29tbFSpUUJUq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zZo1K80MV33++ee1d+9e257bwcHBGjNmjHbt2qVKlSrZ0sNZISEh+u9//6uzZ8/qs88+U6NGjfj7yIWaN2+u/fv3a/jw4fLz83Nb33z58mn69Olavny5QkND3dYXzrt3757Cw8Md1j3++ONuGZoKAAAAAAAAAADci8EBAIBMzzRNvvjiy81fAOyVNWtWvfLKKzp37pymTp2qhx9+2K39AwIC1LZtW33xxRc6f/68Vq9erf79+ys4ONitOSSpevXq+uWXX7Ro0SK1aNHCJZu2CxUqpA8//FBnzpzRoEGD0sVG8LTGMAz1799fJ06cUEREhCpXruyWvvny5dPw4cN15MgRrVq1Sl26dHHL/Zc3b1699NJL2rp1q27cuKFly5Zp3LhxevLJJ9WkSROVL19eDz30kIKCgpQlS5Y085hq2rSptm7dqk2bNqlHjx5u/SCyJFWqVEkjRozQ1q1bdeLECY0dO1alSpVyawZJyp49uz788EMdPHhQzz33nEuGTfj5+alfv37av3+/vv32W+XKlcsFSTOnJk2aqGrVqg7rJk2a5IY0SOtKlSqlzZs3a8KECcqfP79L137ggQf02muvaf/+/XrkkUdcunZG5+/vr759+2rx4sW6deuWNm3apE8//VTPPPOMWrdurSpVqqhgwYIKCQmRn5+fU1dxR8q0bt1aBw8e1IgRI2y5Om5ISIiGDBmiQ4cO6emnn86w92lUVJSlusqVK6eZYU0p1blzZx04cEA///yzHnnkEXl7e7utt5eXl2rVqqW3335bv/76q3799Ve9/vrraWYTK+Cshx9+WMuXL9evv/6qgQMHuv1q3SVLltSQIUO0evVqnT9/Xp9++qmqVavm1gzpVYMGDbRt2zatWbNGbdu2dcvPt6CgIPXs2VPr16/X/v37NWTIELe+/+bt7a0BAwboxIkT+v7779WoUSO3vqeRJUsWNWnSRB988IFOnDihrVu3asiQIWlyIFGxYsW0fPlybd68WY899phLHh958+bVyJEjdfToUb322mvy9/d3QVLXyp49u5555hmtWbNGt27d0po1azR+/HgNHDhQLVq0UKVKlZQvXz4FBwenqffE0oOAgAC9//77OnXqlIYNG2brc79o0aL68ssvdeLECfXu3du2PnCdH3/8Ub/99pvDuuHDh7shDQAAAAAAAAAAcDeDjVsA4B6GYdSW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ZVt7LV26VOXLl9fy5bylAAAAAAAAAAAAAAAAAAAAAOB3DA5AZjLXwfGqhmGUcmVDwzDKS6qQTIkpx7nczjTNj03TNNz1ZSFSEQdrFLb7ewIAQEazcuVKpzY19u/fXwEBATYmssd//vMf+fv7W663e7O+I0uXLlXDhg116dIlt/X86aefVLt2bZ06dcptPe/evas+ffqoZ8+eun79utv6phWmaerdd99VhQoVtGKFo/lmrnf37l2NHj1aNWvWdOv97qzExEQ9++yzGjhwoO7du2drr7CwMEt1MTEx+v77723N4ozw8HBLdTly5FC7du1syXDr1i316NFDLVq00NGjR23pkZzffvtN3bt3V48ePRQTE+P2/n+4fv26mjRpoqlTp7qt5+3bt9W2bVtNmzbNbT0BAAAAAAAAAAAAAAAAAAAApF0MDkCmYZrmcUlbHJQ96+K2zzk4vsk0zVMu7gkAAODQkiVLnKrv0aOHTUnslT17drVu3dpy/c6dO3X16lUbEyVt9erVevTRR3Xnzh239z569Kjq1q2rgwcP2t4rJiZGLVu21PTp023vlRbduHFDbdu21Wuvvab4+HiPZomMjFS1atW0du1aj+ZIyuDBgzVhwgS39KpUqZKqVKliqdbqZn273blzR/PmzbNU27NnT2XJksXlGfbt26fq1avru+++c/nazvruu+9Up04dnT171u29L168qPr162vr1q1u752QkKB+/fp5fPANAAAAAAAAAAAAAAAAAAAAAM9jcAAyG0eX/utrGEZeVzQyDKOApN4OysJd0QsAAMBZS5cutVxbsmRJVa5c2b4wNuvSpYvl2sTERP388882pvl3Bw8e1OOPP277VdWTc+HCBbVq1UoXL160rcf9+/fVqVOnNLtR3W4nT55UtWrVnHr+2e3atWtq06aNVq5c6ekofzNq1ChNmjTJrT3DwsIs1W3YsEEnTpywN4wFc+fOVXR0tKVaq7fNGcuWLVOtWrV09OhRl6+dUpGRkWrUqJFbhwdER0erbdu2OnDggNt6/pt+/frpl19+8WgGAAAAAAAAAAAAAAAAAAAAAJ7l4+kAgJvNkDRGUu4kjgdIGiepjwt6vScpazLHf/tfHgAAALc6evSojh8/brn+8ccftzGN/dq1ayc/Pz/LV3dfunSpevbsaXOq/y82NlaPPvqobt68aak+R44cqlq1qkqXLq0cOXIoKChIcXFxunnzpo4eParIyEidOnUqRVnOnDmjtm3b6pdfflFgYGCK1kjO22+/naY2zbvTsWPH1KRJE49cDd2R2NhYtW/fXsuWLVODBg08HUdLlizR6NGjLdcXLFhQFSpUUNGiRZUjRw4FBgbq/v37io6O1uXLl3XgwAHt3btXUVFRya7To0cPDRs2zOEAD9M0FRER4VRGO4SHh1uqq1ixoqpUqeLS3gsXLlTnzp119+5dl67rCidOnFCjRo20adMm5cmTx9Ze9+/fV+fOnbV79+4UrxEaGqpKlSqpRIkSyp49u/z9/XXnzh1du3ZNhw4d0u7du3XlyhWH69y9e1cdO3bU/v37U5wFAAAAAAAAAAAAAAAAAAAAQPrG4ABkKqZpxhmG8Ymkd5Ipe8IwjB9N0/whpX0Mw+giqYeDso9N07S2ey3pPoUlnXRQNto0zVGp6QMAADKWdevWOVXfpEkTm5K4R2BgoKpXr64NGzZYqnf2+5Nar7/+usMrdgcFBalXr14KCwtT9erV5eXllWz9kSNHNGfOHE2cOFHnz593Ks/u3bv1/PPP6+uvv3bqPEd+/fVXjRkzJkXnhoaGqlmzZipbtqyKFy+uYsWKKVu2bAoMDFRAQIB8fHwUHx+v2NhYXb16VVeuXNGZM2d09OhRHTx4UDt27HBqWIarnT9/Xo0aNXL6vvhDwYIF1axZM1WrVk3lypVToUKFlCNHDvn7+0uS7ty5o/Pnz+vo0aPavHmzfv75Z0VGRjrVIzY2Vp06ddKOHTtUqFChFOV0hevXr+vVV191WFelShU98cQT6tChgwoXLuyw/t69e1qzZo2mT5+uZcuW/WtNzpw59cgjj2j+/PkO15s+fbpGjRolwzAc1trh1KlTll+r+vbt69Ley5cvV6dOnRwOWEhK5cqV1bBhQ1WrVk3FixdXoUKFFBISIn9/f927d09RUVE6ffq0Dh06pA0bNmjRokVOP3dOnDihTp06afXq1fL19U1RTivefffdJB9PycmfP7+eeuopde3aVaVKlUq21jRN7dy5UzNmzFBERIRu3bqVZO3Vq1c1ePBglS9f3ulMAAAAAAAAAAAAAAAAAAAAANI/BgcgM/pY0kBJBZOpiTAM47xpmtucXdwwjFqSpjgoOy3pE2fXBgAAcIVdu3ZZrvX19VWdOnVsTOMeDRo0sDw44Ny5c7p69apy5sxpcypp586dOnDgQJLHDcPQU089pTFjxjiVp2TJknr99df18ssv6+OPP9Zbb72l6Ohoy+dPmTJFbdq0UceOHS2f48irr76q+/fvW64PDg7WgAED1L9/f4cbayUpICBAAQEBypEjx7/WX79+XWvWrNHKlSv1008/pXgTv7NiYmLUvn17p/sFBASoV69eGjBggKpWrZpsbfbs2ZU9e3aVK1dOHTp00HvvvacDBw7ogw8+0IwZM5SQkGCp55UrV9ShQwdt2bJFWbJkcSqvq4wZM0Y3btxI8njFihX13nvvqVWrVk6t6+vrqxYtWqhFixY6c+ZMknVhYWGWBgecOnVKa9euVePGjZ3K4SrTp0+XaZoO63x9fdWzZ0+X9T18+LC6du3q9NCAfPnyacCAAerbt68KFkz6T3Fvb29lzZpVuXLlUrVq1dSrVy+ZpqlVq1Zp7NixWr16teWeGzZs0NChQzVhwgSnslq1ZcsWvfXWW06dExQUpJEjR2rIkCGWn2OGYahatWqqVq2aRo8erVGjRmnChAlJvp7OmzdPx44dcyoXAAAAAAAAAAAAAAAAAAAAgIwh+ctUAhmQaZoxkl5wUBYsablhGO2cWdswjEcl/SwpyEHpi6ZpxjqzNgAAgKvs3r3bcu3DDz+sgIAAG9O4R4MGDZyqd+Z7lBq//vqrEhMT//VYjhw5tGTJEk2cODHFQwx8fX01fPhw7dy5UxUrVnTq3EGDBiV7ZWtnHDt2TIsWLbJc/8QTT+j06dP673//a2logBUPPvigHn/8cX355Zc6e/asNmzYoAEDBig4ONgl6yflySefdGpYxx/DIo4fP65JkyY5HBqQlLJly2rq1KnavXu3atasafm83bt36913301RT1dIamiAYRh6/fXXtWPHDqeHBvxToUKFkjzWunVr5cmTx9I6ERERqcqRUqZpavr06ZZq27Ztq1y5crmkb1RUlB555BHdvHnT8jlBQUH673//q+PHj+uNN95IdmhAUgzDULNmzbRq1Sr9+OOPypcvn+VzP//8c61Zs8bpno4kJCToySeftDyUQ5IqVKignTt36qWXXkrxYI7s2bPr448/1urVq5U3b94k6yIjI1O0PgAAAAAAAAAAAAAAAAAAAID0jcEByJRM05wraaaDsmySFhqG8a1hGKWTKzQMo6xhGLMk/SgpxMG635qmOc9yWAAAABdKTEzU3r17Ldc7u9k8rXL2drhrcEBS8uXLpw0bNqR6g/QfSpYsqQ0bNqhu3bqWz7l8+bLefvttl/S3enV0SRo/frwiIiL0wAMPuKT3vzEMQ3Xr1tXEiRN14cIFff755ypSpIjL+8yaNUuzZs2yXJ8vXz6tWrVKkyZN0kMPPeSSDOXLl9cvv/yiQYMGWT5n7Nix2r9/v0v6u4Kvr69mzZqlt99+W76+vrb28vHxUa9evSzVzp07V9HR0bbm+Te//PKLjh8/bqk2LCzMZX2HDx+uo0ePWq6vU6eO9u3bp2HDhilr1qwuyfDoo49q165dTr2WPfXUU4qLi3NJ/z988cUXOnDggOX6evXqaePGjSpZsqRL+jdo0ECbN29W0aJFXbIeAAAAAAAAAAAAAAAAAAAAgIyBwQHIzAZIOuygxpDUQ9JBwzB2GYYxwTCMFw3DGGAYxjDDMD43DGOPpP2SulroeUjSwFSlBgAASIWTJ08qJibGcn3ZsmVtTOM+efPmVfbs2S3Xe3LTdLZs2bRq1SqVLp3s7CqnBQcHa9myZapUqZLlcz799FOdPHky1b1//vlnS3V9+/bVCy+8kOp+zggKCtLgwYN19OhRtWvXzmXrXr58Wc8++6zl+kqVKmnbtm1q3LixyzL8wdfXV1988YVeffVVS/V3797ViBEjXJ4jJby8vDR9+nR16dLFbT2tbra/c+eO5s6da2+YfxEeHm6pLleuXGrTpo1Leq5evVpfffWV5foePXpo9erVKly4sEv6/1WePHm0YsUKNW3a1FL9sWPH9MUXX7is/+3btzVq1CjL9ZUqVdLSpUsVHBzssgySFBoaqjVr1ihPnjwuXRcAAAAAAAAAAAAAAAAAAABA+sXgAGRapmlGS2op6azFU6pIelrSB5ImSvqvpMGSrO68OiOp5f/6AgAAeMTZs1Z/9fldRhkcIEllypSxXOvs98lVDMPQd9995/KhAX8ICgrSggUL9OCDD1qqv3fvnj788MNU9YyLi9POnTsd1vn7++ujjz5KVa/U8Pb2Vs6cOV223siRI3X16lVLteXKldOqVauUP39+l/X/N++8847lTfE//fSTpfvNbq+88oq6devm1p7ly5dXtWrVLNVa3cTvKjExMZaHFfTq1Uu+vr6p7pmYmKhnnnlGpmlaqu/Ro4dmzJghPz+/VPdOir+/v3788UeVL1/eUv3777/v1NCc5EyaNEk3btywVJsjRw4tWLBAQUFBLun9T4UKFdIPP/wgHx8fW9YHAAAAAAAAAAAAAAAAAAAAkL4wOACZmmmapyU1kXTc5lbHJDUxTfOMzX0AAACSde7cOafqixQpYlMS9ytatKjlWme/T64yYMAAtW7d2tYeoaGh+uSTTyzXT5s2TdevX09xv2PHjun+/fsO6zp27Khs2bKluE9acvz4cU2dOtVSbY4cObR48WLlyJHD5lS/mzhxosqVK2epdty4cTanSd7DDz+s0aNHe6S31QEL69ev16lTp2zN8lfz5s1TVFSUpVqrt8GRGTNm6ODBg5Zqa9eurfDwcHl52f92U1BQkObPny9/f3+Htb/99pumTZuW6p737t1z6vXz008/VWhoaKr7Jqd27dp65ZVXbO0BAAAAAAAAAAAAAAAAAAAAIH1gcAAyPdM0j0mqLulnm1osk1TdNE27hxMAAAA45OyG+IceesimJO6XJ08ey7Xnz5+3Mcm/y5kzp9577z239OrVq5eaNGliqfbOnTuaPn16inudOWNtdlbt2rVT3COtGT16tBISEizVTpkyxfaNxX/l5+enadOmyTAMh7ULFizQlStX3JDq333yySceu5J6jx495Ofn57DONE1FRES4IdHvwsPDLdVVrVpVFStWTHW/hIQEy8MbgoODNXv2bPn6+qa6r1UlSpTQW2+9Zan266+/TnW/n376yfLPh2bNmqlHjx6p7mnFyJEjVaxYMbf0AgAAAAAAAAAAAAAAAAAAAJB2MTgAkGSa5g3TNFtJCpN02UXLXpbUxzTN1qZp3nTRmgAAAKly4cIFy7WBgYEKCgqyMY17OTMEISYmRjdv3rQvzL8YMWKEQkJC3Nbv3XfftVw7c+bMFPexenX0AgUKpLhHWnLlyhXNnj3bUm3Hjh316KOP2pzo/6pevbo6d+7ssO7evXuaMWOGGxL9X61atVLdunU90luSHnjgAbVv395S7fTp02Waps2Jfh/CsWbNGku1YWFhLum5ePFinTx50lLtO++8o4IFC7qkrzOeffZZS3337NmjXbt2paqXM6+FzrzGplaWLFk0atQot/UDAAAAAAAAAAAAAAAAAAAAkDYxOAD4C9M0IyQVlfS0pIMpXObA/84vYppmyi/NCgAAYAOrm7glKXfu3DYmcT9nb48z36vUypYtmwYOHOi2fpJUs2ZNNW7c2FLt9u3bdezYsRT1uXv3rqU6T11Z3tXCw8Mt3WYvLy+3biz+p5dfftlS3Q8//GBzkn83dOhQj/T9K6ub70+cOKFffvnF3jCSIiIiLA0oyJIli8uudP/VV19ZqitcuLAGDRrkkp7O8vPz05AhQyzVpubxHBUVpcWLF1uqbdq0qapXr57iXinRo0cPhYaGurUnAAAAAAAAAAAAAAAAAAAAgLSFwQHAP5imecc0zS9M0ywrqZSk5yVFSNoh6aKkaEmJ//vvRUnb/3f8eUklTdMs97/zY9yQ9ZRpmoaDr1F253CB0Q6+bnosGQAAGUxsbKzl2oCAABuTuJ+zt8eZ71VqPfHEEx75fjuz0XfJkiUp6pE1a1ZLdWfPnk3R+mnN1KlTLdV17NhRpUqVsjlN0qpWraqqVas6rNuyZYtu3brlhkT/X758+dS8eXO39vw3LVu2VN68eS3VhoeH2xtG0vTp1ubSPfLII8qRI0eq+124cEHLli2zVDts2DCPDv/o06ePfH19HdZZvT3/ZtWqVYqLi7NU6+5BMNLvw0ieeuopt/cFAAAAAAAAAAAAAAAAAAAAkHYwOABIhmmaR0zT/NQ0zTDTNKubppnPNM1g0zS9//fffKZp1vjf8U9N0zzq6czpkWmaoxx83fR0RgAAMgpnNsP7+fnZmMT9nL097hwc4Kqrgzurffv2CgoKslS7Zs2aFPXImTOnpbqUDiZIS44cOaJDhw5Zqu3fv7/NaRxr3769w5qEhAStXr3aDWn+v44dO8owDLf2/Dfe3t7q3bu3pdq5c+cqJsa+2XEbNmzQsWPHLNWGhYW5pOeiRYuUmJjosC5r1qzq2bOnS3qmVI4cOVS3bl2Hdbt27dK1a9dS1MPqa2BwcLCl55YdPH0/AAAAAAAAAAAAAAAAAAAAAPAsBgcAAAAAmYjVqyVL1q8Un144e3vcNTjgoYceUs2aNd3S65/8/PzUqlUrS7Xr1q2TaZpO9yhSpIilumXLlmnfvn1Or5+WWB1+kCNHDjVv3tzmNI5ZzbBt2zabk/xd06ZN3dovOX379rVUFxUVpXnz5tmWIzw83FLdQw89ZPk57YjVx3OrVq2UPXt2l/RMDSuP58TERO3YsSNF61sdHNCqVStlyZIlRT1SKzQ0VFWqVPFIbwAAAAAAAAAAAAAAAAAAAACex+AAAAAAIBNJSEiwXOvt7W1jEvfz8fFxqv7evXs2Jfm7Jk2aePTq6s2aNbNUd+PGDZ04ccLp9UNDQ/XAAw84rLt375569+6t69evO90jrfj5558t1TVv3lxeXp7/c7xy5cqWnud79uyxP8xf1K9f3639klO6dGnLgz2sbu53VkxMjL7//ntLtb169XL6te7fJCQkaNWqVZZqXTWoILUefvhhS3UpeTzHxsZq//79lmqtvqbapUWLFh7tDwAAAAAAAAAAAAAAAAAAAMBzPL9TAQAAAIDb+Pn5Wa69e/eujUncLz4+3qn6rFmz2pTk7+rUqeOWPkmpXbu25dp9+/Y5vb5hGGrQoIGl2sjISNWvX9/yBt20Ztu2bZbqrH4/7BYQEKDQ0FCHdXv37nVDmt8VKFBAOXLkcFs/K8LCwizVrVmzRmfOnHF5//nz5+v27duWaq1mdeTAgQOKjo62VJtWHs9ly5a1VJeSx/OBAweUmJhoqTY9vaYDAAAAAAAAAAAAAAAAAAAAyFgYHAAAAABkIv7+/pZr4+LibEzifs7eHme+V6lRrVo1t/RJSvny5S0PSfj1119T1KNz586Waw8cOKDKlSurf//+OnDgQIr6ecKpU6d0/fp1S7VWr4zuDgUKFHBYc/HiRd27d88NaaQyZcq4pY8zunXrZuk5YpqmIiIiXN7f6prVq1dXuXLlXNJz165dluoCAwNVqlQpl/RMrbx588rLy/HbXKdPn3Z6bavDTPz9/S0PMLCLp3+mAAAAAAAAAAAAAAAAAAAAAPAcBgcAAAAAmYjVDeKSFB8fb2MS93P29rhrcICnN916eXmpePHilmpPnDiRoh6dOnVS7ty5LdcnJCRoypQpKleunGrXrq1PPvlEZ8+eTVFvd9m9e7fl2tKlS9uYxDk5cuRwWGOapi5cuOCGNFJoaKhb+jgje/bs6tChg6Xa6dOnu7T32bNntXr1aku1YWFhLutr9fFcsmRJS5v13cHHx0fZsmVzWHf+/Hmn17b62leiRAmPfz/y58+voKAgj2YAAAAAAAAAAAAAAAAAAAAA4Blp49PdAAAAANzCmc3wt27dsjGJ+92+fdupencMDsiZM6eyZ89uex9HSpYsaanu4sWLKVrfz89Pr7/+eorO3bJli4YMGaJChQqpQoUKGjp0qH766Sddv349RevZ5fjx45bqsmfPrpCQEJvTWGf1cZ6SzdYpkSdPHrf0cVbfvn0t1R07dkwbNmxwWd/p06crMTHRYZ2fn5+6d+/usr5WH89pbdCDlcdzSoZgWH3tK1GihNNr2yGt5AAAAAAAAAAAAAAAAAAAAADgXj6eDgAAAADAfaxcXfwPV65cUWJiosevnuwqzm56d+Z7lVIPPfSQ7T2ssJojpYMDJGnw4MH67rvvtHnz5hSv8euvv+rXX3/Vxx9/LMMwVLp0adWpU0e1a9dW7dq1VaZMGRmGkeL1U+PcuXOW6m7evOmxjKnh7OCNlHLH8y4lmjVrpgIFCli6n8PDw1WvXj2X9I2IiLBU9+ijj+qBBx5wSU/J+uP5xx9/THeP57t37youLk5Zs2a1fI7V1768efOmNJZLpZWfLQAAAAAAAAAAAAAAAAAAAADcK2PsAAIAAABgSYECBSzXJiQk6Nq1azamca/ffvvNcm3OnDnl5+dnY5rf5cqVy/YeVljNceXKlRT38Pb21uzZs5U/f/4Ur/FXpmnq4MGDmjJlivr3769y5copR44cateuncaNG6cdO3ZYulK7q1jdaJ1excbGuqWPM5u53cnLy0u9e/e2VPv999+75Pu1ceNGHT161FJtWFhYqvv9FY/nv7t69aqlurTymp47d25PRwAAAAAAAAAAAAAAAAAAAADgAQwOAAAAADIRZwYHSNKFCxdsSuJ+Vq8YLTn/fUqp7Nmzu6WPI1ZzpHYzdMGCBbVy5UoVLFgwVesk5caNG1q8eLFGjBih6tWrK3fu3OrTp49++uknxcfH29LzD5cvX7Z1fU9z1+AAdwzsSCmrm/Nv376t+fPnp7pfRESEpbp8+fKpRYsWqe73h8TExAw1NObfOPt4tlqf3l7TAQAAAAAAAAAAAAAAAAAAAGQsDA4AAAAAMhFnN8QfPnzYpiTu58xtcdfggLSySdpqjri4uFT3Kl26tLZu3arGjRunei1Hrl27punTp6t9+/bKly+fnn/+eR08eNCWXu7aWO8p9+7dc0sfL6+0+zZFyZIlVadOHUu14eHhqeoVGxurOXPmWKrt3bu3vL29U9Xvn70zOmcfz1Zf+9LbazoAAAAAAAAAAAAAAAAAAACAjCXtfiIfAAAAgMsVLlzYqfoDBw7YE8TN7t27p2PHjlmuL1KkiI1p/r8sWbK4pY8jVjeZxsfHu6Rf3rx5tXLlSn3++ed68MEHXbKmI9evX9enn36qcuXK6dFHH1VkZKRL18/om61N0/R0hDShb9++lupWr16tc+fOpbjPDz/8oFu3blmqDQsLS3Gff5PRH8uS84/nu3fvWqpLb6/pAAAAAAAAAAAAAAAAAAAAADIWBgcAAAAAmUiuXLmUL18+y/UZZXDAsWPHnLrCdOXKle0L8xf37993Sx9HEhISLNX5+Pi4rKeXl5cGDx6s48ePa9SoUcqZM6fL1k6OaZpauHChqlatqieffFI3b950ybqZYbM1pC5duiggIMBhXWJioqZPn57iPuHh4ZbqatWqpdKlS6e4z7/hsfx/eXt7W6pLb6/pAAAAAAAAAAAAAAAAAAAAADIWBgcAAAAAmUyVKlUs127bts3GJO6zdetWp+qd+R6lRnx8vFv6OGI1R9asWV3eO3v27HrzzTd17tw5ffPNN2rRooVLBxQkJTExUVOnTlX58uW1efPmVK9ndWMx0reQkBA99thjlmojIiJS1OP8+fNatWqVpdqwsLAU9UgOj+X/y8/Pz1JdentNBwAAAAAAAAAAAAAAAAAAAJCxMDgAAAAAyGSc2RR/+vRpnT592sY07rF+/XrLtb6+vipXrpyNaf6/mJgYt/RxxGoOOwYH/MHPz089e/bUzz//rEuXLmnGjBnq1auXChQoYFtP6fdN2o0bN9YPP/yQqnWsXIUeGUPfvn0t1R05ckSbNm1yev3p06crMTHRYZ2/v7+6devm9PqO8Fj+v6y+9qW313QAAAAAAAAAAAAAAAAAAAAAGQuDAwAAAIBMplq1ak7Vr1u3zqYk7uPMbahYsaKyZMliY5r/78qVK27p44jVHCEhITYn+V2OHDnUq1cvzZgxQ2fPntXp06c1c+ZMDRo0SBUrVpSXl2v/lI2Pj1fXrl0tX+X93/j7+1uqy58/v0zTTHdfdlzZPr1q0qSJChUqZKk2IiLC6fWtntOhQwdly5bN6fUdsfpYlqSePXt6/LGZkq/ChQs79T2x+tqX3l7TAQAAAAAAAAAAAAAAAAAAAGQsDA4AAAAAMpnGjRvLx8fHcv3SpUttTGO/o0eP6sSJE5brW7RoYWOav0srmzut5sibN6/NSf5doUKF1L17d33xxReKjIzUjRs3tGzZMr355ptq1KiR5auBJ+fevXvq1q2bLl68mKLzrW7gjo2NTdH6SDsMw1CfPn0s1c6ePVtxcXGW1968ebMOHz5sqbZv376W13WGn5+f/Pz8LNVmlsez1de+tPKafvnyZU9HAAAAAAAAAAAAAAAAAAAAAOABDA4AAAAAMpmQkBDVrVvXcv2iRYvS9ebQOXPmOFXfunVrm5L8X+fPn1dCQoLb+iXl5MmTluo8NTjgn0JCQtSyZUuNGjVKa9as0c2bN7V8+XK98MILKlq0aIrXvXr1qoYPH56icwsWLGipLjo6OkXrI23p06ePDMNwWHfr1i398MMPltcNDw+3VFewYEE1bdrU8rrO4vH8d1Zf+06dOmVvEIusvqYDAAAAAAAAAAAAAAAAAAAAyFgYHAAAAABkQs5sjo+OjtaSJUtsTGOv77//3nJttmzZVLt2bRvT/N29e/d04sQJt/VLitUrnOfPn9/mJCnj5+en5s2ba/z48Tp+/Lh27NihZ555RsHBwU6vNXPmTB08eNDp80JDQy3V3b17V1evXnV6faQtxYoVU7169SzVRkREWKqLi4uzPOikd+/e8vKy7y0dq4/n8+fP25YhLSlQoIClOquvpXa6c+dOprlfAAAAAAAAAAAAAAAAAAAAAPwdgwMAAACATKh9+/ZO1U+ZMsWmJPbauXOnIiMjLde3bt1aPj4+Nib6v/bv3+/Wfv905coVXb582VJt2bJlbU7jGg8//LA+++wznTt3Tm+88Yb8/Pwsn2uapj7//HOnexYpUsRy7enTp51eH2lP3759LdWtWLHC0kbuH3/8UTdv3rS0ZlhYmKW6lLL6eD5z5oytOdKKMmXKWKq7ePGirl27ZnOa5O3fv1+maXo0AwAAAAAAAAAAAAAAAAAAAADPYHAAAAAAkAmVKVNGNWvWtFy/bNmyFF2F3dM++ugjp+qtbgR2pU2bNrm9519t3rzZcm358uVtTOJ6ISEhGj16tLZs2aJcuXJZPm/evHlOb7ytUqWK5dq9e/c6tTbSps6dOyswMNBhXWJiombMmOGwLjw83FLfunXrqkSJEpZqU8rq4zkqKkonT560NUta4MxrnzOvqXbwdH8AAAAAAAAAAAAAAAAAAAAAnsPgAAAAACCT6t+/v+Va0zSd3oTvaRcuXNCcOXMs1xcuXFjNmze3MdG/++WXX9ze8682bNhgqc7LyyvdDQ74Q+XKlbVixQplyZLFUv2lS5d0+PBhp3qULl1aISEhlmq3b9/u1NpIm4KCgtSpUydLtREREckeP3/+vFasWGFpLXcMOKlRo4bl2szweM6XL59y5MhhqdbTr+me7g8AAAAAAAAAAAAAAAAAAADAcxgcAAAAAGRSXbt2tXS17D+Eh4fryJEjNiZyrTfeeEP37t2zXN+vXz8ZhmFjon+3fft2Xb582e19/7Bw4UJLdZUrV1ZQUJDNaexTqVIlvfjii5brd+7c6dT6Xl5eql69uqVaqxvEkfaFhYVZqjt06JC2bt2a5PEZM2YoMTHR4ToBAQHq0qWL1XgpVqlSJfn7+1uqzSyP5/r161uq++mnn2xOkrT4+Hj9/PPPHusPAAAAAAAAAAAAAAAAAAAAwLMYHAAAAABkUsHBwerfv7/l+nv37mnYsGE2JnKdvXv3atq0aZbrAwIC9NRTT9mYKGmJiYn68ccfPdL7wIEDOnz4sKXaJk2a2JzGfoMGDbJce+LECafXb926taW6Y8eOaf/+/U6vj7SnYcOGKlKkiKXa8PDwJI9FRERYWqNjx44KDg62VJsavr6+atq0qaXan376ydLQg/TO6mvgwYMHdejQIZvT/Luff/5Z0dHRHukNAAAAAAAAAAAAAAAAAAAAwPMYHAAAAABkYiNGjFBAQIDl+p9++kmLFy+2MVHqJSYm6tlnn3VqI+vTTz+tPHny2JgqeZMnT07zfa1uIk7LChYsqHLlylmqvXLlitPrP/bYY5Zrp06d6vT6SHsMw1CfPn0s1c6aNUvx8fH/59+3bt1qeaN53759ncqXGlYfz7/99lua/7ngCs2aNbNc66nX9K+++sojfQEAAAAAAAAAAAAAAAAAAACkDQwOAAAAADKxPHny6Omnn3bqnH79+uny5cs2JUq9Dz74QOvXr7dcHxQUpJdeesnGRI7t2LFDmzdvdmvPqKgoy1c5f/DBBzPE4ABJCg0NtVQXExPj9NpFixZV5cqVLdVOnTpVUVFRTvdA2tOnTx8ZhuGw7ubNm1qwYMH/+ffw8HBLfUJDQ9W4cWNn46VY+/bt5ePjY6n2k08+sTmN55UpU8by4JFp06a5/fl97NgxLV261K09AQAAAAAAAAAAAAAAAAAAAKQtDA4AAAAAMrmXXnpJ2bNnt1x/+fJl9e3bV4mJifaFSqGdO3dq5MiRTp3z4osvKmfOnDYlsu6NN95wa7/x48frxo0blmo7deokX19fmxO5R0hIiKW6LFmypGj9AQMGWKq7efOmxo4dm6IeSFsKFy6sRo0aWar955CA+Ph4zZo1y9K5VgcUuErOnDn1+OOPW6pdtWqVVqxYYXMiz+vevbuluhs3bujjjz+2N8w/vPHGG2ny5zIAAAAAAAAAAAAAAAAAAAAA92FwAAAAAJDJ5cyZUx988IFT5yxZskQvvPCCTYlS5uzZs2rfvr3u3r1r+ZzSpUtrxIgRNqaybuXKlVq0aJFbep09e1Yffvih5fo+ffrYmMa9Ll68aKkuODg4Rev37t3b8iCOjz76SIcOHUpRH6QtYWFhluqWL1/+t8fgggULdPPmTYfnGYbhkefhc88951RtbGysjWk8r2fPnvL29rZU+8EHH+jcuXM2J/rd5s2bNXv2bLf0AgAAAAAAAAAAAAAAAAAAAJB2MTgAAAAAgJ588kk1a9bMqXM++eQTpzaf2+nGjRtq06aNLly4YPkcLy8vff311/Lz87MxmXMGDRqkW7du2d7nqaeeUlRUlKXamjVrqk6dOjYncg/TNHXkyBFLtaGhoSnqERgYqEGDBlmqjYuLU9euXRUXF5eiXkg7Hn/8cQUFBTmsu3//vr755ps//3d4eLil9evXr6+iRYumNF6K1alTR7Vr17ZUe+jQIT3//PM2J/KswoULq2PHjpZqb9++raeeesrmRL+/jvTr10+JiYm29wIAAAAAAAAAAAAAAAAAAACQtjE4AAAAAIAk6auvvrK08fWvXnzxRY0ZM8amRNZcuHBBDRo00K+//urUec8884zq1q1rU6qUOXfunHr27GnrBtAxY8Zo2bJlluuHDRuWqn4JCQmpOt+VVq5c+bervSenXLlyKe7zyiuvKHfu3JZq9+7dq65du6ap7xOcFxgYqC5duliqjYiIkCRdvHhRy5cvt3RO3759U5wttcaPH2+5dvLkyXr//fdtTON5w4cPt1y7dOlSvfPOOzamkfr3769Dhw7Z2gMAAAAAAAAAAAAAAAAAAABA+sDgAAAAAACSpCJFimj69OkyDMOp80aOHKlBgwbp7t27NiVL2r59+1S3bl2nhwbUrl1b//3vf21KlTqLFy/WM888I9M0Xb72jBkz9MYbb1iur1q1quWrayelVatWGjNmjG7dupWqdVIrMTFRY8eOtVTr7++vGjVqpLhXSEiI3nrrLcv1CxcuVJcuXRQbG5vinq62a9cuderUSXfu3PF0lHQjLCzMUt3+/fu1fft2zZgxQ/fv33dYHxgYqE6dOqUyXcrVrl1b3bp1s1z/8ssva9y4cTYmco5pmlqwYIEGDRrkkvWqV6+u9u3bW64fOXKkZsyY4ZLe//Tqq6/q22+/tWVtAAAAAAAAAAAAAAAAAAAAAOkPgwMAAAAA/Omxxx5zamP5HyZOnKhatWq59arHEyZMUI0aNXTq1CmnzsuXL5/mz5+vLFmy2BPMBb788kv169dP8fHxLlvz888/V1hYmFMDCT7++GN5eaXuz8arV69q5MiRCg0N1Ysvvqjjx4+nar2UGj16tNasWWOptkmTJvL3909Vv//85z9q1KiR5foffvhBDRs21MmTJ1PVNzVM09TSpUvVunVrPfzww5o3b54tAywyqvr166t48eKWasPDwxUREWGptnPnzgoKCkpNtFT7+OOPlTt3bsv1I0aMUFhYmKKjo21MlbyYmBh9/fXXqlixojp06KDt27e7bO3x48db/hlimqbCwsI0YcIEl/VPSEjQc889Z3kYCgAAAAAAAAAAAAAAAAAAAIDMgcEBAAAAAP7mzTffTNHVrXfv3q2qVavq1Vdf1e3bt21I9rtt27apYcOGevbZZxUXF+fUuQEBAZo/f74eeughm9I5J2vWrEkeCw8PV7169XTgwIFU9bh27Zp69uypZ555RomJiZbP69Wrl+rXr5+q3n9169YtffjhhypRooRat26tOXPmOH3/pURCQoKGDBmit956y/I5Tz31VKr7enl56ZtvvlGOHDksn7N9+3ZVqFBBH3/8se7evZvqDFadPn1a48aNU/HixdWmTRstW7bMbb0zmj59+liqmzJliuXndlhYWCoSuUaePHkUHh4uwzAsnxMREaEKFSpoyZIlNib7v3bs2KEhQ4Yof/78+s9//qNff/3V5T2KFy+uYcOGWa5PTEzUs88+qx49eujq1aup6n3s2DE1btxYn332WZI1yf1sAQAAAAAAAAAAAAAAAAAAAJBxMTgAAAAAwN8YhqFvv/1W7du3d/rc2NhYjR07VsWKFdPo0aN17tw5l2QyTVOrVq1Sx44dVbNmTa1fv97pNQICArRo0SLVrFnTJZlcoWPHjqpQoUKSx3fs2KFKlSpp8ODBOnr0qFNrX7t2TePGjVOJEiU0c+ZMp84NDQ116dWx/8o0TS1btkxdu3ZVnjx51KdPH82dO9eWYRNLlixRrVq19Mknn1g+p2zZsmrXrp1L+ufPn1/Tp0+Xt7e35XPu3LmjoUOHqlSpUpo4caJtQzgOHjyoDz/8UPXq1VORIkU0YsQInThxwpZemckTTzwhLy/Hb7XEx8dbWq9o0aJq0KBBamO5ROvWrfXKK684dc6pU6fUtm1b1a9fXwsXLtT9+/ddnuv+/fvauHGjXnvtNZUsWVLVq1fXJ598ops3b7q811+NGjVK1apVc+qc7777TiVKlNDYsWN17do1p849efKkhg4dqnLlymnDhg1J1uXLl08DBgxwam0AAAAAAAAAAAAAAAAAAAAAGYOPpwMAAAAASHuyZMmiuXPnqnPnzlqwYIHT51+9elWjRo3S22+/rRYtWqh169Zq1qyZypQpY3mN2NhYbdiwQStXrtT8+fN17Ngxp3P84Y+hAY0bN07xGnbw9fXV1KlTVatWrSQ31CYkJOjLL7/UxIkTVbt2bbVq1UrVq1dXqVKllDNnTgUGBiouLk43b97UsWPHtGfPHq1YsUIrV65UXFyc05l8fHz07bffKlu2bKm9eQ7dvn1b06dP1/Tp0+Xr66uaNWuqXr16qlu3ripXrqwCBQo4tZ5pmtqzZ48WLVqkefPmKTIy0ulMn3zyiaWN31a1adNGkyZNUv/+/Z0679SpUxo0aJCGDRumdu3a6f+xd+9BdtZ1nsc/T/fp7nSnu5MWCOGSEIhJmHFBCyFCIGQzkMwIkVkvpVuuctGUxSoz+scwqxYWDOL84ZblTOGghcM4Ors6FOxQKbnMMgwXCSFcRIZCUwkEYlwhCJJLJ52kk+6zfyCWM+kASbrP6V/n9ao6larnnOf3+56uhq7q8zzvvuCCC7J48eLMmDHjgGfo7+/PmjVr8uijj2b16tV58MEHs3HjxgNehzc3c+bM/MEf/EHuueeeUVnvkksuSVVVo7LWaPjKV76SX/7yl/ne9753QOetXLkyK1euzDHHHJP3v//9ueCCC7JgwYL09fUd8Ay/+tWv8vTTT2f16tW//X4e60jASNra2vL9738/7373u9Pf3/+Wz9uyZUu++MUv5tprr815552XJUuW5F3velfmzJmTKVOmZNKkSRkYGMivf/3rrF27Nj/+8Y/zz//8z3nooYcyPDz8put/85vfzBNPPHEobw0AAAAAAAAAAAAAKJRwAAAAMKK2trbccsstWb58+QHfJPq6oaGh3HXXXbnrrruSJFOnTs28efMyb968TJs2Ld3d3enu7s6ePXuyffv29Pf3Z8OGDVm7dm3Wr1+fvXv3HvL7OPLII/NP//RPWbhw4SGvNRZOP/30XHfddfnCF77whq+r1+tZtWpVVq1aNabz3HjjjTn77LPHdI+R7Nmz57c3F7+ut7c38+bNy3HHHZdjjz02RxxxRCZNmpRJkyZlcHAwO3bsyPbt27Np06asXbs269aty44dOw56hiuuuCLnn3/+aLydf+eTn/xkXn311fz5n//5AZ+7Y8eO3Hzzzbn55puTvPb9/I53vCMzZszIsccem+7u7nR2dqaqquzevTu7du3K5s2b89JLL2XTpk1Zv359XnjhhdF+S7yBSy+9dFTCAVVV5ZJLLhmFiUZPVVW56aabsnXr1oOKyrz44ou54YYbcsMNNyRJZs2alXnz5uX444/P9OnT09XVlUmTJmVoaCi7d+/Ozp078+tf/zqbNm3Kiy++mHXr1jUlErA/c+bMya233poLL7zwgH9e7dq1K3fccUfuuOOOUZvn8ssvz0UXXSQcAAAAAAAAAAAAAACHKeEAAABgv9ra2vLd7343p512Wv7sz/7skG/k37JlSx555JE88sgjozThGzvttNNy2223ZebMmQ3Z72B9/vOfz9q1a/P3f//3TZ3jmmuuyWWXXdbUGX7Xtm3b8thjj+Wxxx4b870WLVqUr33ta2O2/pVXXpm+vr5cfvnlGRoaOuh1XnnllTzwwAOjOBmj7QMf+EB6e3uzbdu2Q1pn8eLFOeGEE0ZpqtFTq9Vy66235vLLL89NN910SGtt2LAhGzZsGJ3BmmTp0qW58cYb88lPfjL1er2pc1x//fVN2x8AAAAAAAAAAAAAaL6WZg8AAACMf5/97Gdzzz335Ljjjmv2KG/ZZZddlpUrV477aMDrbrzxxixbtqxp+//lX/5lrr766qbt30znnHNObr/99rS3t4/pPsuXL8+KFSsyderUMd2H5urs7MxHPvKRQ17n0ksvPfRhxkitVsvf/u3f5tprr01Li18tXXbZZfnud7+bWq05fc758+fnlltuadr+AAAAAAAAAAAAAMD44OpuAADgLVm0aFHWrFmTK664YlzfKHrSSSfl7rvvzt/93d+ls7Oz2eO8ZW1tbbntttuyfPnyhu7b0dGRm266KV/4whcauu948bGPfSz/8i//ku7u7obsd+GFF+app57KokWLGrIfzXGoN/339PTkgx/84OgMM4a+9KUv5f77788JJ5zQ7FGa7uMf/3hWrFiRKVOmNHTf973vfbnvvvvS29vb0H0BAAAAAAAAAAAAgPFn/N7tAwAAjDs9PT25/vrr8/DDD2fBggXNHuff6e7uzhe/+MU8/fTTWbJkSbPHOSi1Wi3f/va381d/9Vfp6uoa8/1OPvnkPPLII/nEJz4x5nuNN1OnTs1NN92Uf/iHf8ikSZMauveMGTNy77335vrrr88RRxzR0L3fqiOOOCKf+9znGv61mSgWLFiQuXPnHvT5H/7whxvy/4DRsHDhwvzbv/1b/vRP/zRtbW3NHmdEc+bMyac+9akx3+eCCy7Ik08+mTPPPHPM96rVarnqqqty2223FfO9AgAAAAAAAAAAAACMLeEAAADggM2fPz8PPfRQ7r333px33nlNnWXq1Kn50pe+lA0bNuQrX/lKOjs7mzrPaPjsZz+bp556aswCCD09PbnuuuvyxBNP5J3vfOeY7PG6b3zjG/nc5z6XOXPmjOk+b1WtVsvy5cvzs5/9rKnBhJaWllxxxRV59tlnc+WVV6a7u7tps7yuvb09y5Ytyw9+8IP88pe/zNe//vXUarVmj1WsSy+9tCnnNsOUKVPy13/91/npT3+aD33oQ2lpaf6vm/r6+vKJT3wi9913X9atW9eQcECSzJo1KytXrszf/M3f5KijjhqTPebPn5/HH388X/7yl9Pa2jomewAAAAAAAAAAAAAA5XEHAACHvauvvrrZIwAUa/HixVm8eHGefPLJfO9738vNN9+cF154Ycz3bWlpybnnnpuPfvSj+chHPpLe3t4x37PRZs+enbvvvjurV6/OV7/61axYsSLDw8OHtOYxxxyT5cuX5zOf+UyOPvroUZr0jZ1zzjk555xz8vWvfz3PPPNMbr/99txxxx1ZtWpVdu7c2ZAZktduIr744ovzJ3/yJ5k9e3bD9n0zU6dOzVe/+tVcddVV+c53vpNvfvObWbt2bcP2nzJlSpYsWZJly5bloosuSl9fX8P2nuguvvjiXHXVVQf83+3b3/72nHPOOWM01diaM2dObrnllmzYsCE33HBDvvOd7+SVV15p2P4zZszIe9/73lx00UVZsmRJ2tvbG7b372ptbc2nP/3pfOxjH8u3vvWtfOtb38rzzz9/yOsuWbIkV1555ZhFZQAAAAAAAAAAAACAslX1er3ZMwAcFqqqOivJqt89tmrVqpx11llNmmj0bNiwYZ8b/zo7OzNr1qzmDARA0wwPD+eBBx7InXfemQcffDBPPPFE9uzZMyprH3300Tn77LOzaNGifPCDH8xxxx03KuuW4uWXX86dd96Z22+/PY888kh+8YtfvOk5VVVl7ty5WbJkSf7oj/4oS5cuTVtbWwOmfXN79uzJk08+mdWrV2f16tV5+OGHR+XG2t81Y8aMnH/++fnjP/7j/OEf/mEmTZo0quuPlaeeeiorVqzID3/4w/zkJz/J3r17R23to446KvPnz8/ChQuzcOHCzJ8/P7WapiBjY+/evfnRj36UFStW5K677sozzzwzamtXVZUTTzwxZ555ZhYuXJhzzz03v//7vz9q64+m4eHh3H///bnzzjtz991352c/+1mGhobe9Lzp06fn9NNPz4UXXphly5bl+OOPb8C0AAAAAAATi2taAAAAJraqqpo9AjTMNddc0+wRoGH8kVjGo4cffjgLFiz4j4cX1Ov1h5sxz/4IBwA0iHAAAIejnTt35tFHH82aNWvy3HPP5bnnnsvzzz+fLVu2ZGBgIDt27MjAwEBqtVq6uroyefLkTJ48OdOnT89JJ52U2bNnZ/bs2TnttNMyd+7cZr+dcaW/vz9r1qzJpk2b0t/fn/7+/gwPD6e7uzs9PT2ZNWtW5s2bl66urmaP+pZt3rw5zz77bJ599tmsX78+69evz4YNG7Jly5b09/dn+/bt2b59e3bu3JnW1tZ0dHSkq6srRx55ZKZNm5aZM2dm7ty5Ofnkk/Oe97xnQtxku2vXrvzkJz/J448/nmeeeSYbN27Mxo0b8/LLL2fnzp0ZGBjIrl27UqvV0t7ens7OzrztbW/LEUcckenTp2fWrFk58cQTM3fu3Jx66qk55phjmv2WOIxt3rw5jz32WJ544ok8//zz+fnPf55f/OIXv/2ZsHPnzgwODqatrS0dHR2ZPHly3va2t+XII4/MsccemxNPPDEnnXRSTj755Jx66qnp7e1t9ls6KLt37866devy3HPPZdu2benv70+S9PT0pKenJ9OmTcvv/d7vpa+vr8mT3NFpgwABAABJREFUAgAAAACUzzUtAAAAE5twAIcT4QAOJ8IBjEelhAP8WUEAAGDMdHZ2ZtGiRVm0aFGzR5lwenp6Mn/+/GaPMar6+vpyxhln5Iwzzmj2KOPGpEmTctZZZ02I2BT09fVl6dKlWbp0abNHaaqOjo6ccsopOeWUU5o9CgAAAAAAAAAAAAAwgbQ0ewAAAAAAAAAAAAAAAAAAAADg4AkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAAAAAAAACgYMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAAAAAAAACgYMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAMCbq9XqzRwAAAAAAAAAA4DDm+hUAAAAAAA4nwgEAHLKWln1/nPjgFQAAAAAAAACAZhrp+pWRrnMBAAAAAICJwG/AAThkVVXtc2xoaKgJkwAAAAAAAAAAwGuGh4f3OTbSdS4AAAAAADARCAcAcMhqtdo+x/bu3Tvih68AAAAAAAAAADDWhoeHs2fPnn2Oj3SdCwAAAAAATATCAQAcsvb29hGPj/ThKwAAAAAAAAAAjLX9Xbeyv+tcAAAAAACgdMIBAByy/X2gunv37gZPAgAAAAAAAAAAyeDg4IjHhQMAAAAAAJiohAMAOGQdHR0jHt/fB7AAAAAAAAAAADCWhAMAAAAAADjcCAcAcMja2tpGPL5jx44GTwIAAAAAAAAAAPu/bmV/17kAAAAAAEDphAMAOGRVVaWzs3Of4wMDA9mzZ08TJgIAAAAAAAAA4HA1NDQ0Yjigo6MjLS0umwQAAAAAYGLyG3AARkVvb++Ix7dt29bgSQAAAAAAAAAAOJz19/ePeHx/17cAAAAAAMBEIBwAwKjY3werW7ZsSb1eb/A0AAAAAAAAAAAcjur1erZu3Tric8IBAAAAAABMZMIBAIyKWq2WyZMn73N8cHAwr776ahMmAgAAAAAAAADgcNPf35+BgYF9jnd0dKS9vb0JEwEAAAAAQGMIBwAwavZXZX/55ZczODjY4GkAAAAAAAAAADicDA8P56WXXhrxuf1d1wIAAAAAABOFcAAAo2bKlCnp6OjY53i9Xs8LL7yQoaGhJkwFAAAAAAAAAMBEV6/Xs2nTpuzdu3ef52q1Wvr6+powFQAAAAAANI5wAACjpqqqTJ8+fcTndu7cmY0bN4oHAAAAAAAAAAAwql6PBmzdunXE56dNm5bW1tYGTwUAAAAAAI0lHADAqOrq6srUqVNHfG7Xrl35+c9/nt27dzd2KAAAAAAAAAAAJqTh4eG8+OKL2bJly4jPd3V1pbe3t7FDAQAAAABAEwgHADDqpk2bllqtNuJzu3fvznPPPZdNmzZlaGiowZMBAAAAAAAAADAR1Ov1bNu2LevXr8/WrVtHfE1VVZk+fXqqqmrwdAAAAAAA0Hgj39UJAIegtbU1M2fOzMaNG7N3794RX7N58+Zs27YtU6ZMSU9PTzo7O31ICwAAAAAAAADAGxoaGkp/f3+2bt2agYGB/b6uqqocf/zx6ejoaOB0AAAAAADQPMIBAIyJjo6OnHDCCdm4cWP27Nkz4muGhoby6quv5tVXX02tVkt3d3cmTZqU9vb2tLW1pa2tTUwAAAAAAAAAAOAwVa/XMzg4+NvHjh07smPHjjc97/VoQHd3dwOmBAAAAACA8UE4AIAx097e/tt4wODg4Bu+du/evdmyZcs+x9va2tLS0pKqqkQEAAAAAAAAAAAmuHq9nnq9nuHh4f3+sYo3IhoAAAAAAMDhSjgAgDHV1taWWbNm5ZVXXsnmzZtTr9cP6PyD+QAYAAAAAAAAAIDDT1dXV6ZPn56Ojo5mjwIAAAAAAA0nHADAmGttbc3RRx+dvr6+vPTSS9m+fXuzRwIAAAAAAAAAYIKo1WqZNm1aent7U1VVs8cBAAAAAICmEA4AoGHa29szY8aM7NixI1u2bMn27dszPDzc7LEAAAAAAAAAAChQR0dHent709fXl9bW1maPAwAAAAAATSUcAEDDTZ48OZMnT87w8HAGBgbS39+f/v7+DA0NNXs0AAAAAAAAAADGsddjAb29vWlvb2/2OAAAAAAAMG4IBwDQNC0tLenu7k53d3emT5+e4eHhDA4OZnBwMHv27Mng4GCGhoZSr9czPDzc7HEBAAAAAAAAAGiAlpaWVFWVWq2W9vb23z7a2trS0tLS7PEAAAAAAGBcEg4AYFyoqiqtra3p7OxMZ2dns8cBAAAAAAAAAAAAAAAAACiG9C4AAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAAAAAAAACgYMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAAAAAAAACgYMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAAAAAAAACgYMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAAAAAAAACgYMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAAAAAAAACgYMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAAAAAAAACgYMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAAAAAAAACgYMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAAAAAAAACgYMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAA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YMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAAAAAAAACgYMIBAAAAAAAAAAAAAAAAAAAAUDDhAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAAACiYcAAAAAAAAAAAAAAAAAAAAAAUTDgAAAAAAAAAAAAAAAAAAAICCCQcAAAAAAAAAAAAAAAAAAABAwYQDAAAAAAAAAAAAAAAAAAAAoGDCAQAAAAAAAAAAAAAAAAAAAFAw4QAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAAAAAomHAAAAAAAAAAAAAAAAAAAAAAFEw4AAAAAAAAAAAAAAAAAAACAggkHAAAAAAAAAAAAAAAAAAAAQMGEAwAAAAAAAAAAAAAAAAAAAKBgwgEAAAAAAAAAAAAAAAAAAABQMOEAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAAAKJhwAAAAAAAAAAAAAAAAAAAAABRMOAAAAAAAAAAAAAAAAAAAAgIIJBwAAAAAAAAAAAAAAAAAAAEDBhAMAAAAAAAAAAAAA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AAAAAAAAAACYY4oDAAAAAAAAAAAAAAAAAAAAYI4pDgAAAAAAAAAAAAAAAAAAAIA5pjgAAAAAAAAAAAAAAAAAAAAA5pjiAAAAAAAAAAAAAAAAAAAAAJhjigMAAAAAAAAAAAAAAAAAAABgjikOAAAAAAAAAAAAAAAAAAAAgDmmOAAAAAAAAAAAAAAAAAAAAADmmOIAAAAAAAAAAAAAAAAAAAAAmGOKAwAAAAAAAAAAAAAAAAAAAGCOKQ4AAAAAAAAAAAAAAAAAAACAOaY4AAAAAAAAAAAAAAAAAAAAAOaY4gAAAAAAAAAAAAAAAAAAAACYY4oDAAAAAAAAAAAAAAAAAAAAYI4pDgAAAAAAAAAAAAAAAAAAAIA5pjgAAAAAAAAAAAAAAAAAAAAA5pjiAAAAAAAAAAAAAAAAAAAAAJhjigMAAAAAAAAAAAAAAAAAAABgjikOAAAAAAAAAAAAAAAAAAAAgDmmOAAAAAAAAAAAAAAAAAAAAADmmOIAAAAAAAAAAAAAAAAAAAAAmGOKAwAAAAAAAAAAAAAAAAAAAGCOKQ4AAAAAAAAAAAAAAAAAAACAOaY4AAAAAAAAAAAAAAAAAAAAAOaY4gAAAAAAAAAAAAAAAAAAAACYY4oDAAAAAAAAAAAAAAAAAAAAYI4pDgAAAAAAAAAAAAAAAAAAAIA5pjgAAAAAAAAAAAAAAAAAAAAA5pjiAAAAAAAAAAAAAAAAAAAAAJhjigMAAAAAAAAAAAAAAAAAAABgjikOAAAAAAAAAAAAAAAAAAAAgDmmOAAAAAAAAAAAAAAAAAAAAADmmOIAAAAAAAAAAAAAAAAAAAAAmGOKAwAAAAAAAAAAAAAAAAAAAGCOKQ4AAAAAAAAAAAAAAAAAAACAOaY4AAAAAAAAAAAAAAAAAAAAAOaY4gAAAAAAAAAAAAAAAAAAAACYY4oDAAAAAAAAAAAAAAAAAAAAYI4pDgAAAAAAAAAAAAAAAAAAAIA5pjgAAAAAAAAAAAAAAAAAAAAA5pjiAAAAAAAAAAAAAAAAAAAAAJhjigMAAAAAAAAAAAAAAAAAAABgjikOAAAAAAAAAAAAAAAAAAAAgDmmOAAAAAAAAAAAAAAAAAAAAADmmOIAAAAAAAAAAAAAAAAAAAAAmGOKAwAAAAAAAAAAAAAAAAAAAGCO7fjigKp6UlW9sqpuP+ssAAAAAAAAAAAA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AAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAA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AAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0dmLbCwAAu6eqtr0CbMwYY9srAAAAAAAAAAAAAAAAABzLGdteAAAAAAAAAAAAAAAAAAAAADg64QAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAAAGjux7QUAAGCbXvjCF257BdiYSy+9dNsrAAAAAAAAAAAAAAAAsIAztr0AAAAAAAAAAAAAAAAAAAAAcHTCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAJe93VwAAJkdSURBVAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAAjQkHAAAAAAAAAAAAAAAAAAAAQGPCAQAAAAAAAAAAAAAAAAAAANCYcAAAAAAAAAAAAAAAAAAAAAA0dmLbC0AHVXW7JPdNcs8kX5rk7CQ3JPl0kquTvH+McdP2NtxdVXW33PLuvizJHQ5+/Kkkn0jyr2OMa7a1GwAAAAAAAAAAAAAAAAAAnA6EA+CLqKpHJnlCku9I8sAkZ664fnNVvTfJXyT50zHG25bfcDdV1Z2SXJTkO5N8S24JBqy6f22Sv07y+iR/PMa4btkNAQAAAAAAAAAAAAAAAADg9HLGtheAXVNVT62qdya5IsmPJvn6rI4G5OD865P8WJIrquodVXXxspvulqq6Z1W9NMnVSX4jyZMyiQYcOO/g7m8mubqqXlJV91xuUwAAAAAAAAAAAAAAAAAAOL0IB8CBqrp/Vf1NklcnecgxH/fQJK+pqrdU1f2Ov93uqqozqupHkrwvyXOTnHOMx52T5JIk76uqH64qf0YBAAAAAAAAAAAAAAAAAMCEL+VCkqp6UpJ/SPLoNT/6MUneUVVPXPNzd0JV3THJ65L8YpJz1/joc5P8UpI/O5gBAAAAAAAAAAAAAAAAAAB8EcIB7L2quiTJa7PeL77f2rlJ/qiqnrvQ87eiqr48yeVJvmPBMd+V5K1VdZcFZwAAAAAAAAAAAAAAAAAAQGvCAey1qvqBJC9OUkuPSvKSqnrmwnM2oqrumOSvklywgXEPTPKGg5kAAAAAAAAAAAAAAAAAAMAXEA5gb1XVI5K8PIeLBlye5AeTPCTJeUnOOvj1YUmen+TvDzMyycur6uFHWni3vCLJhYe4d12SX0vy+CRfleRLkpyd5KuTfHeSX0/yyUM858Ikv32EPQEAAAAAAAAAAAAAAAAA4LQnHMBeqqo7JHlNbgkArPKBJI8bYzxqjPHSMca7xxifGGN8/uDXd44xXjzGeGSSb0/ywcnzTib5/YP5LVXV85M8YXJtJLksyb3GGM8dY7xujHH1GOPGMcb/jDFOjTH+fIzxnCT3SvLiQ4x+YlU971jLAwAAAAAAAAAAAAAAAADAaUg4gH31M7nlC+urvCnJw8cYbz7MA8cYb0jysCRvmVy9V5KfPswzd01VfWWSn51cuynJRWOMHxpjXDd75kGA4flJnpzkc5PrP1tV9zjUsgAAAAAAAAAAAAAAAAAAsCeEA9g7VXVBkksm165I8j1jjE/elmcffFH+8UnePrn6vKp6wG159o74hSTnrDgfSZ42xviT2/rgMcZrkzxjcu3cgx0AAAAAAAAAAAAAAAAAAIADwgHso0uTnFhxfm2Si8cYNxzl4WOMzyR5SpLrVlw7keSnjvL8bTkILjx1cu2Xxhh/fNQZY4w/THLZ5NrTqur+R50BAAAAAAAAAAAAAAAAAACnG+EA9kpV3TvJRZNrPzHGOHWcOWOMq3JLoGCVJ1fV+ceZs2EvSFIrzq9K8pNrmPPjSa5ecV4HuwAAAAAAAAAAAAAAAAAAABEOYP9ckuTMFecfSPKyNc361SQfWnF+5sE+O6+q7pzk6ZNrPzXGuPG4s8YYN2QeXfi+qjrvuLMAAAAAAAAAAAAAAAAAAOB0IBzA3qiqM5M8bXLtRWOMm9cxb4zx+SS/Mrn29Krq8Pvw4iQnV5x/NMmr1zjv95J8bMX5ySRPXuM8AAAAAAAAAAAAAAAAAABoq8MXlmFdvjXJ3Vec35jkVWue+cokN604v0eSx6x55hKeMTl/xRjjc+saNsb4bG55d6vMdgIAAAAAAAAAAAAAAAAAgL0gHMA+efzk/PVjjE+vc+AY47okfzm5Nttrq6rqzkm+cXLtNQuMfvXk/FFVdd4CcwEAAAAAAAAAAAAAAAAAoBXhAPbJ4ybnr19o7uy537bQ3HV5bJJacf6RMcZ71j10jPGPST664soZSb513XMBAAAAAAAAAAAAAAAAAKAb4QD2QlXdPckDJtfetND4N07OH1hVd1to9jo8dnK+1Hs7zLNnMQgAAAAAAAAAAAAAAAAAADjtCQewLx4xOT81xji1xOAxxoeT/Ofk2sOXmL0ms3f31gVnXz453+X3BgAAAAAAAAAAAAAAAAAAGyEcwL54yOT8XQvPf8fk/MKF5x9JVZ1M8sDJtSXf3ey9PaiqzlpwPgAAAAAAAAAAAAAAAAAA7DzhAPbFgyfn/7Tw/NnzdzIckFuiAau+mH9zkn9ecP57kvzvivOTSS5YcD4AAAAAAAAAAAAAAAAAAOw84QD2xX0n5x9YeP6/Tc7vs/D8o5q9t6vGGDctNfzg2acm13b13QEAAAAAAAAAAAAAAAAAwEYIB3Daq6pKcv7k2uyL/cc1e/75C88/qntNzpd+b4eZMdsRAAAAAAAAAAAAAAAAAABOa8IB7IO7Jrn95M5/LLzD7PnnVNVXLLzDUZw/OV/6vR1mhnAAAAAAAAAAAAAAAAAAAAB7TTiAfXCPQ9y5ZuEdDvP8w+y5abOdln5vh5mxi+8NAAAAAAAAAAAAAAAAAAA2RjiAfXDnyfmnxhifXXKBMcYNSa6fXJvtuQ2znT6+gR0+NjnfxfcGAAAAAAAAAAAAAAAAAAAbc2LbC8AGnDc5/9RGtrhlzrkrzmd7bsMuvLvZjI29t6r6xmM+4qFf+IMrr7zymI8E4LhOnTq17RVgY6644optrwAAcGQ+u7NPfHYHALrz+Z194vM7ANCZz+7sE5/dAYDufH5nn/j8zi76It8FPXvTe8zUGGPbO8Ciquo5SX5txZX3jTEu2MAe/5LkfiuuPGeM8etL73FbVNU1Se664srFY4w/WHiHpyZ59Yor14wx7r7kDrfaxR+YAAAAAAAAAAAAAAAAAAA8e4zx8m0vcWtnbHsB2IDbT84/s5Etkusn57M9t2EX3l3H9wYAAAAAAAAAAAAAAAAAABsjHMA+ODk5//xGtpjPme25Dbvw7jq+NwAAAAAAAAAAAAAAAAAA2BjhAPbBLnz5/TBzdvEL8Lvw7jq+NwAAAAAAAAAAAAAAAAAA2JgT214ANmAWyLh5I1vM55y5kS1um114d7v03r7pmP/9nZM86uDfP3SrX2845nOB3h6U5GVf8LNnJ3nPFnYBAAC+OJ/dAQCgD5/fAQCgB5/dAQCgD5/fAdh3Zye59xf87HXbWGQV4QD2wexvrN/U74PZnM9tZIvb5vNJzlpxvol3tzPvbYxxxRoes3P/IwC2q6r+vx+/Z01/5gAAAGviszsAAPTh8zsAAPTgszsAAPTh8zsAJEnevO0FZmZ/mzicDm6anG8qHLDqC/jJfM9t2IV31/G9AQAAAAAAAAAAAAAAAADAxggHsA9mfyP9yY1s0fML8Lvw7jq+NwAAAAAAAAAAAAAAAAAA2BjhAPbB9ZPzczeyRfKlk/PZntuwC++u43sDAAAAAAAAAAAAAAAAAICNEQ5gH1w7Ob/DRraYz5ntuQ278O46vjcAAAAAAAAAAAAAAAAAANgY4QD2wX9Pzu+0iSWS3HFyPttzG3bh3c1m7OJ7AwAAAAAAAAAAAAAAAACAjREOYB/81+T8dlV1pyUXqKrzkpycXNvFL8DP3t3dNrDDbMYuvjcAAAAAAAAAAAAAAAAAANgY4QD2wUcOceeuC+9wmOcfZs9Nm+209Hs7zIyrNrADAAAAAAAAAAAAAAAAAADsLOEATntjjOsz/1vpv2bhNc6fnH98jPGZhXc4ig9Pzpd+b8n83f37BnYAAAAAAAAAAAAAAAAAAICdJRzAvph9ufw+C8//usn5rn75fdvvLen77gAAAAAAAAAAAAAAAAAAYCOEA9gX752c32/h+bPnz/bbltled6mq85YaXlV3STJ7/q6+OwAAAAAAAAAAAAAAAAAA2AjhAPbFuybnFy48/yGT83cvPP9IxhgfTvKJybUl393svf33GOPUgvMBAAAAAAAAAAAAAAAAAGDnCQewL2bhgAdX1ZlLDK6qE0m+YXJtJ8MBB2bv7qELzp49e5ffGwAAAAAAAAAAAAAAAAAAbIRwAPviHUluXHF+bpb7Avwjkpy94vzGJO9caPY6/N3k/DELzv6WyflsNwAAAAAAAAAAAAAAAAAAOO0JB7AXxhg3Jnnr5Nq3LTT+cZPzvz3Yb1e9aXL+6Ko6ue6hVXX7JN88ufbGdc8FAAAAAAAAAAAAAAAAAIBuhAPYJ7MvmT9pobnfOzl/w0Jz1+VtST694vycJN++wNzvTPIlK84/meTtC8wFAAAAAAAAAAAAAAAAAIBWaoyx7R1gI6rqa5P82+Ta/ccY71/jzAcluXLFlZHk3mOMD69r5hKq6neSfP+KK68ZYzxtzTNfm+SiFVdeMcZ41jpnAgAAAAAAAAAAAAAAAABAR2dsewHYlDHGB5O8bXLteWse+/zJ+eW7Hg048HuT84uq6h7rGlZVX53keybXZjsBAAAAAAAAAAAAAAAAAMBeEA5g3/zW5PxZVXX3dQyqqnsm+f7JtVesY9YGvCnJqRXnZyV5wRrnvSDJiRXnH0nyljXOAwAAAAAAAAAAAAAAAACAtoQD2De/m+TjK87PTvJza5r180luv+L8Ywf77Lwxxs1JLptcu6Sq7nfcWVV1QZLnTK696GAnAAAAAAAAAAAAAAAAAADYe8IB7JUxxo1Jfnly7ZlV9cTjzKmqpyR5+uTaZWOMzx5zzvlVNSb//PRxZtzKy5Jcu+L8rCSvqqqTRx1QVbdL8qokJ1ZcuzbJbxx1BgAAAAAAAAAAAAAAAAAAnG6EA9hHlyU5Nbnzyqp6xFEeXlWPTPKbk2tXZR4w2CljjOuTXDq59rAkv11Vt/nPlqo6M8krk1w4ufqTB7sAAAAAAAAAAAAAAAAAAPwfe/cdNklV5n38ew9DzkEQUKKKICBBBFFJCgqKgguKijIogmv2Vde064ppXdMaEVFkMEdEFEXBACpgQhRBFImCCCg5h7nfP6pZWZ2ZrtNd1dXh+7muvtyl71PnNzNPV3X3U+c+krBxgGZQZt4K/L8+ZSsC342IJ5ccOyKeCnwHWKFP6asy87aSY4+JjwK/6VPzLOArEbFS3YNGxMrAccAz+pT+GvhY3eNKkiRJkiRJkiRJkiRJkiRJkiRJkiRJs8DGAZpJmfkV4HN9ylYGToiIz0bEQxdXGBGbRcQXgOOBfgvmP5uZX60ddoxk5j3Ac4Db+5TuC5wbEfMiYplFFUXEshHxfOBc4Cl9jnkb8JxeBkmSJEmSJEmSJEmSJEmSJEmSJEmSJEk9kZldZ5A6ERErAL8ANqk55FfA6cDFwM3AisCGwKOBh9c8xvnAdpl5c1nahYuIDXp5FufwzHxzE/PdZ95DgI/XLL8e+AHwa+CvQABrUP2d7Ub/Rgv3OiQzjy5LKkmSJEmSJEmSJEmSJEmSJEmSJEmSJE2/uV0HkLqSmTdHxBOAHwEPrDFk695jUJcBT2iqaUCXMvMTEfFA4E01ylcB9u09BvVmmwZIkiRJkiRJkiRJkiRJkiRJkiRJkiRJCzen6wBSlzLzUqpd7y9seao/Artl5mUtzzMymfmfwFtGMNXhmXn4COaRJEmSJEmSJEmSJEmSJEmSJEmSJEmSJpKNAzTzMvOPwHbAd1qa4iRgu8xsuznByPWaBzwDuLmFw98M7J+Zb27h2JIkSZIkSZIkSZIkSZIkSZIkSZIkSdLUsHGABGTmdZn5RGAecHVDh70aOCgz98zM6xs65tjJzC8BmwJfbfCwXwE2zcyvNHhMSZIkSZIkSZIkSZIkSZIkSZIkSZIkaSrZOEC6j8w8FtgIeDHwuwEPc15v/IaZ+ammso2zzLw8M/cDtgU+A9w2wGFuAz4NbJOZ+2fm5U1mlCRJkiRJkiRJkiRJkiRJkiRJkiRJkqZVZGbXGaSxFREPAZ4IbAM8DFgXWBFYDrgVuAm4nKpZwFnAtzPzgm7Sjo+IWBbYDdgZ2Bx4CLAq1d8dVH9v1wJ/AM4Ffgj8IDMHaTggSZIkSZIkSZIkSZIkSZIkSZIkSZIkzTQbB0iSJEmSJEmSJEmSJEmSJEmSJEmSJEmSNMHmdB1AkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiQNzsYBkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRNMBsHSJIkSZIkSZIkSZIkSZIkSZIkSZIkSZI0wWwcIEmSJEmSJEmSJEmSJEmSJEmSJEmSJEnSBLNxgCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJE8zGAZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkTTAbB0iSJEmSJEmSJEmSJEmSJEmSJEmSJEmSNMHmdh1AkiRJkiRJkroWEUsCDwU2Bx7W+98HAKv0HisD9wC3A9cCfwYuBn4D/Bw4PTPvHHVuSZIkadZExBxgI2AL4EHAA4H1ev+7GrAcsDywLHA31Xv464C/AJcC5wG/BH6cmdePOL4kSZIkSZIkSZIkSa2JzOw6gyRJ0kyIiA2AR9znsS3VAqRFysxoPZgkSZI0g3qLjbYGdgMeBzyWaoHRoG4FvgscC3wzM+8eOqQkSZIkImJj4NG9x1ZUTb6Gee9+rwXAGcCXgE9n5nUNHFOSJEnSkCJiVeB3wFo1yo/NzHntJpIkSZKmS0R0vZhw98w8peMMkiRNLRsHSJIktSAiHsA/NwlYo/Q4Ng6QJEmSmhMRc6maBDwDeCrVbqRtuBh4J3B0Zt7T0hySJEnSVIuII4F9qLdYaFi3AEcDb83Mv45gPkmSJEmLEBGfBA6uWW7jAEmSJKmQjQMkSZpuNg6QJEkaUkSsBWzH/20U0MiNjDYOkCRJkoYXEQ8DXgHsC6w+wqnPAg7JzF+NcE5JkiRpKkTEH4GNRzztDcCrM/MTI55XkiRJEhARuwHfKxhi4wBJkiSpkI0DJEmabnO7DiBJkjQFvgM8vOsQkiRJkhZpb+CQDubdBjgjIl6emR/rYH5JkiRJZVYGPh4RuwMHZebtXQeSJEmSZkVELAsc1XUOSZIkSZIkaZLN6TqAJEmSJEmSJE2xpYEjI+LwroNIkiRJqu3pwMkRsXzXQSRJkqQZcjiwcdchJEmSJEmSpEk2t+sAkiRJkiRJkjRm7gHOBX4HXAz8FbgFWAZYHVgbeAywScEx3xQRt2bmfzecVZIkSZpl9wCXAb8HLgRuAG4CbgSWAFbqPR4MbA1sUHDsxwBfiYgnZeaCBjNLkiRJ+gcRsTXwyq5zSJIkSZIkSZPOxgGSJEmSJEmSBOcD3wC+Dfw0M2/tNyAi1gYOBV5K1VCgn/+KiHMy81tDJZUkSZJm1+XAj4Ef9f73/My8s+7giLg/8CzgYGDzGkOeCLwOeEd5VEmSJEl1RMQSwNF4T7MkSZI0Dr4BnNDyHOe1fHxJkmaaX7JJkiR14xLgD8AeHeeQJEmSZtn1wHzg05l5VungzLwSODwi3gO8Hzikz5AAPhERm2Xm9aXzSZIkSTPoHuAnwPHACZl54TAHy8y/AO+LiPdTNQF7B7Bqn2FviojPZualw8wtSZIkaZFeBWy9iOcuAjYaYRZJkiRp1p2VmZ/oOoQkSRrcnK4DSJIkzYA/AV8D/p1qd6I1MnND4LBOU0mSJEmz649U78fXzcxXDtI04L4y85bMfAFwENXCpsVZG3jtMPNJkiRJM+KVwFqZuXNm/s+wTQPuKzMXZOaRwPbAFX3Kl6b6fl+SJElSwyJiY+DNi3j6dOAzo0sjSZIkSZIkTb65XQeQJEmaMn8GftF7/BL4eWZe020kSZIkST1/AN4CfCEz+y3wL5aZn4qI5YEj+pS+NCL+KzNvbDqDJEmSNC0y8xsjmOOCiNgZOBtYYTGlz4yI/5eZN7WdSZIkSZoxHwOWXch/v4uqAfB+o40jSZIkSZIkTbY5XQeQJEmaAh8C9gbWzsx1M/OpmfnWzPyWTQMkSZKksXAV8CLgYZn52TaaBtwrMz8KfKpP2fLA09vKIEmSJKm+zLwQ+M8+ZcsDu40gjiRJkjQzIuJ5wOMW8fR7M/O3o8wjSZIkSZIkTQMbB0iSJA0pM4/OzG9m5l+6ziJJkiTpn2XmMZn50cy8e0RTvgG4tU/NPiPIIUmSJKmeDwHX96nZaQQ5JEmSpJkQEWsB71nE0xcBbxlhHEmSJEmSJGlq2DhAkiRJkiRJkhqUmVcAn+9T9tiI8PtZSZIkaQxk5l3At/qUbTqKLJIkSdKM+CCw6iKee1Fm3jbKMJIkSZIkSdK08MZUSZIkSZIkSWreN/s8vxKw/iiCSJIkSarljD7PrzOSFJIkSdKUi4i9gacv4ukvZuZ3RplHkiRJkiRJmiY2DpAkSZIkSZKk5p1Wo2aj1lNIkiRJquuqPs8vP5IUkiRJ0hSLiBWBIxbx9PXAK0YWRpIkSZIkSZpCNg6QJEmSJEmSpIZl5rXAnX3KVhlBFEmSJEn13NDn+VtHkkKSJEmabu8EHrCI516fmX8ZZRhJkiRJkiRp2tg4QJIkSZIkSZLa8dc+zy87khSSJEmS6lizz/P93t9LkiRJWoyI2BH410U8fQbwsRHGkSRJkiRJkqaSjQMkSZIkSZIkqR3L9Xn+9pGkkCRJklTHA/s8f9FIUkiSJElTKCKWAj4BxEKevhs4LDNztKkkSZIkSZKk6WPjAEmSJEmSJElqWESsCKzcp+y6UWSRJEmSVMsT+zz/o5GkkCRJkqbTG4FNF/Hc+zLznFGGkSRJkiRJkqaVjQMkSZIkSZIkqXlbs/Cdk+7rwlEEkSRJkrR4EbEe8OjFlNwNnDKiOJIkSdJUiYjNgNct4ulLgMNHl0aSJEmSJEmabnO7DiBJkiRJkiRJU+hJfZ6/EbhsFEEkSZIk9fV+YInFPP/VzPzziLJIkiRJUyMi5gCfAJZaRMmLMvPWEUaSJEmSVFNELAlsDKwHrAYsA9wF3AZcD1wO/Ckzb+sqoyRJ+mc2DpAkSZIkSZKkBkXEEsAz+pT9ODMXjCKPJEmSpEWLiFcA+y6m5G7gnaNJI0mSJE2dFwOPWsRzX8rMb48yjCRJkqS+NouIdwG7AlsAS/epXxARfwB+AZwCfDszr245oyRJWgwbB0iSJEmSJElSs/YB1u9Tc8IIckiSJElahN5OSf8OvKlP6X9l5tntJ5IkSZKmS0Q8EHj7Ip6+AXjF6NJIkiRJqmn/wvo5wEN7jwOpGgmcBBwJfDMzs+F8kiSpjzldB5AkSZIkSZKkaRERSwBv6VN2J/DlEcSRJEmS9A8iYsmI2Ac4m/5NA04C3tp2JkmSJGlKHQGsuIjn3pCZV44yjCRJkqSRmAPsRbWhxi8i4vEd55EkaebM7TqAJEmSJEmSJE2RfwU261NzbGZeO4owkiRJ0qzqNfVaiWqh0gOArYBtgacCq9c4xEnAvpl5V1sZJUmSpGkVEQcAT17E02dS7T4qSZIkabptA5wcEccAr8jMG7sOJEnSLLBxgCRJkiRJkiQ1ICI2AP6rT9ldwH+3n0aSJEmabhGxOXBOC4e+G3gr8PbMvKeF40uSJElTLSJWAz6wiKfvBg7LzAUjjCRJkiSpWwcDO0TEkzPzoq7DSJI07eZ0HUCSJEmSJEmSJl1vN9NjgRX6lL4/My8cQSRJkiRJZRI4HnhEZr7FpgGSJEnSwN4HrLmI5/4nM38zyjCSJEmSxsKmwE8j4mFdB5EkadrN7TqAJEmSJEmSJE2BtwI79an5U69OkiRJ0vg4H/ga8JnMPK/rMJIkSdIki4jHAwct4ulLgTePLo0kSZKkQr8Ffgmc03v8Cbih97gTWA1YnapR2PbAzsCjgZVqHn8N4OSIeHRmXtxsdEmSdC8bB0iSJEmSJEnSECJib+B1fcoSeF5m3jSCSJIkSZLquRu4CLgCuLXjLJIkSdJEi4jlgI8tpuTFmen7bkmSJGl83AN8F/gGcGJmXtan/qre4zzgh8B/R8QyVM3DXg08qMacawNfjYgdM/P2QYNLkqRFm9N1AEmSJEmSJEmaVBGxOfBZIPqUfjgzTxlBJEmSJEn1zQX2Aj4MXBgRx0XEDh1nkiRJkibVW4CNFvHcVzLzxFGGkSRJkrRIVwJvBTbIzL0y86M1mgYsVGbenpkfAzYBXgHcVWPY1sA7BplPkiT1Z+MASZIkSZIkSRpARKxJ1XV9xT6lP6fqrC5JkiRpfM0B9gXOiIjPRcSqXQeSJEmSJkVEbEu1SGhhbgReNro0kiRJkvpYLzPflJmXN3XAzFyQmR8AHgNcWmPISyNii6bmlyRJfze36wCSJEmSJEmSNGkiYgXgW8AGfUr/BuyfmXe2HkqSJEmaLVcAL1jM88sCq/Qe6wGP7P1vHc8EdoqI/TPzjCEySpIkSVMvIuYCnwCWWETJGzLzyhFGkiRJkrQYmXl3i8f+WUTsBPwYeOBiSucCb6Fq6CtJkhpk4wBJkiRJkiRJKhARSwFfA7btU3ob8NTMrNNJXZIkSVKBzLyOanFSbRGxJvA04DBgqz7l6wLfiYg9M/MnA4WUJEmSZsOrWfT7658BHx1dFEmSJEldy8zLImIf4HRg6cWUPiUiHpyZF4wmmSRJs2FO1wEkSZIkSZIkaVJExBLA54HH9ym9C9jfBUaSJEnS+MjMqzPzyMzcGngccGGfISsCJ0XEZu2nkyRJkiZPRDwI+M9FPH03cFhmLhhhJEmSJEljIDPPAt7Rp2wOcOAI4kiSNFNsHCBJkiRJkiRJNUREUO1o+rQ+pQuA52bmie2nkiRJkjSIzPw+sCXwyT6lKwCfiYgl208lSZIkTZyjgGUW8dwHMvPsEWaRJEmSNF7eBVzdp2a/UQSRJGmW2DhAkiRJkiRJkur5ADCvRt0LM/MLLWeRJEmSNKTMvBU4hP7NA7YGXtt+IkmSJGlyRMTzgV0X8fSlwH+OMI4kSZKkMZOZtwNH9inbLCLWHEUeSZJmhY0DJEmSJEmSJKmPiHgH8NIapa/KzI+3nUeSJElSMzIzgRcAP+xT+vKIWLb9RJIkSdL4i4i1gHcvpuQlmXnLqPJIkiRJGltfqlHzqNZTSJI0Q2wcIEmSJEmSJEmLERFvAF5fo/Q/M/N9beeRJEmS1KzMXEDVKOyexZStATx3NIkkSZKksfdhYNVFPPfVzPzmKMNIkiRJGk+ZeS5wdZ+yh44iiyRJs8LGAZIkSZIkSZK0CBHxcuDtNUrfnZlvaTuPJEmSpHZk5m+BL/Ype8ooskiSJEnjLCKeAuy3iKdvBF42wjiSJEmSxt+v+jy/wShCSJI0K2wcIEmSJEmSJEkLERGHAu+vUfrhzPy3luNIkiRJat/xfZ5/TER4n4UkSZJm3fsW89y/Z+afR5ZEkiRJ0iS4pM/za44ihCRJs2Ju1wEkSZIkSZIkadxExHOAI2uUHo27J0mSJEnT4iRgAYvehGElYBPgdyNLJEmSJI2fNRbx328E7oiIQxqca5s+zz+4xnynZuYFTQWSJEmSVOyGPs8vN5IUkiTNCBsHSJIkSZIkSdJ9RMT+wDFA9Cn9PHBoZmb7qSRJkiS1LTNvioi/svjdjdbExgGSJEnSwqwEfGzEc+7YeyzOwYCNAyRJkqTu3Nnn+SVHkkKSpBmxqC75kiRJkiRJkjRzIuIpwGeBJfqUfg14bmYuaD+VJEmSpBG6qs/zq48khSRJkiRJkiRJ02HZPs/fNpIUkiTNCBsHSJIkSZIkSRIQEU8AvkT/TubfBg7IzLvbTyVJkiRpxG7s83y/GxwlSZIkSZIkSdLf3b/P8zePJIUkSTPCxgGSJEmSJEmSZl5E7AJ8DVi6T+n3gadl5p1tZ5IkSZLUieX7PH/LSFJIkiRJkiRJkjQdHtTn+StGkkKSpBlh4wBJkiRJkiRJMy0iHgV8g/47h/4YeEpm3t5+KkmSJEkdeWCf568bSQpJkiRJkiRJkiZcRCwNbNWn7OIRRJEkaWbYOECSJEmSJEnSzIqIbYFvAyv0Kf058KTMdHdRSZIkaUpFxLrA6n3KLhxFFkmSJEmSJEmSpsDjgKX71PxmFEEkSZoVc7sOIEmSJEmSJEldiIgtgO8AK/cp/TXwhMy8sf1UkiRJkjq0R5/nbwKuGEUQSZIkaVxl5iqjmisi3gz852JKjs3MeaNJI0mSJGkAz+3z/F1Um3lIkqSGzOk6gCRJkiRJkiSNWkQ8BDiZ/ruJngfsnpnXtZ9KkiRJUsfm9Xn+R5mZowgiSZIkSZIkSdIki4gHA/v1KTstM28fRR5JkmaFjQMkSZIkSZIkzZSI2AD4HrBWn9ILgMdn5jWth5IkSZLUqYjYDdipT9l3RpFFkiRJkiRJkqQp8EFgiT41XxpFEEmSZomNAyRJkiRJkiTNjIhYh6ppwAP6lF4C7JaZV7YeSpIkSVKnImJF4Kg+ZXcBnx9BHEmSJEmSJEmSJlpEvBp4Yp+yG4EvjiCOJEkzxcYBkiRJkiRJkmZCRNyPqmnARn1KL6dqGnB5+6kkSZIk3VdEPD4ilh/hfMsBXwM27lP6hcy8ZgSRJEmSJEmSJElqVERsExHLjmiug4B31Sg9IjNvaDuPJEmzxsYBkiRJkiRJkqZeRKwCfBd4aJ/Sv1A1Dbi49VCSJEmSFuYlwMUR8ereov7WRMQmwA+Ax/UpvRN4c5tZJEmSJEmSJElq0XOBCyPiZW01742IpSLi/cB8IPqUXwX8dxs5JEmadTYOkCRJkiRJkjTVImIF4NvAVn1K/wo8LjMvaD2UJEmSpMW5H/BuqgYC742I7Zs8eESsGBFvA34DPLLGkMMz86ImM0iSJEmSJEmSNGJrAx8A/hQR/xMRD2/qwBGxM/Bj4OU1h7wsM69van5JkvR3c7sOIEmSNA0iYifgIYXDVq9x3EMGiHOqC50kSZKk/+PzwA416r4I7BgRO7ac515XZuaJI5pLkiRJmkRrAv8P+H8RcSnwFeB7wJmZeV3JgSJiReCxwIHAU4Hlag79Hu56JEmSJEmSJEmaHqsCrwBeERF/AL4JfB84IzOvrXuQiLg/8DjgZdRr0nuvD2XmlwrqJUlSARsHSJIkNeN5wEEtHPfjA4w5GLBxgCRJkvR3W9Sse3GrKf7ZqYCNAyRJkqR61gde1XtkRPwJ+D1wKfAX4FrgduAeYEVgpd7/rg9sBWwIROGcZwNPy8x7ho8vSZIkSZIkSdLYeQi9Br78/bv384FLqL57vw64o1e7KtXGefcDtqd80z2A43tzSZKkltg4QJIkSZIkSZIkSZIkTZIA1us92nIa8NTMvLHFOSRJkiRJkiRJGhdtf/f+ReA5mXl3S8eXJEnAnK4DSJIkSZIkSZIkSZIkjYkE/gfYIzOv7ziLJEmSJEmSJEmT7h7g9Zl5QGbe1XUYSZKm3dyuA0iSJEmSJEmSJEmSJI2BXwGvzMxTuw4iSZIkSZIkSdIU+DlwaGae3XUQSZJmxZyuA0iSJEmSJEmSJEmSJPW8E3g/8IcRznkmcADwCJsGSJIkSZIkSZKm0K+Ai0Y431nAfsD2Ng2QJGm05nYdQJIkSZIkSZIkSZIkCSAzz6RayP/KiNgIeAKwI7A98CAgGphmAfAb4ATgK5l5TgPHlCRJkiRJkiRpLGXmscCxEbEesCuwE/AIYFNgyYam+SPwTeDTmXlWQ8eUJEmFIjO7ziBJkiRJkiRJkiRJkrRYEbEKsB3wEGDD3mMDYBVgBWB5YFngHuAO4BbgGuAq4BLgfOC3wBmZecMos0uSJEkqFxG7ALsspuTszDx+FFkkSZKkaRQRSwGbA1tSfef+wN5jXWAlqu/clwOWBu4EbgduAK4ELqf63v03wJmZedmo80uSpH9m4wBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkibYnK4DSJIkSZIkSZIkSZIkSZIkSZIkSZIkSZKkwdk4QJIkSZIkSZIkSZIkSZIkSZIkSZIkSZKkCWbjAEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJpiNAyRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJmmA2DpAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkaYLZOECSJEmSJEmSJEmSJEmSJEmSJEmSJEmSpAlm4wBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiaYjQMkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZpgNg6QJEmSJEmSJEmSJEmSJEmSJEmSJEmSJGmC2ThAkiRJkiRJkiRJkiRJkiRJkiRJkiRJkqQJZuMASZIkSZIkSZIkSZIkSZIkSZIkSZIkSZImmI0DJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmaYDYOkCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRpgtk4QJIkSZIkSZIkSZIkSZIkSZIkSZIkSZKkCWbjAEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJpiNAyRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJmmA2DpAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkaYLZOECSJEmSJEmSJEmSJEmSJEmSJEmSJEmSpAlm4wBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiaYjQMkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZpgNg6QJEmSJEmSJEmSJEmSJEmSJEmSJEmSJGmC2ThAkiRJkiRJkiRJkiRJkiRJkiRJkiRJkqQJZuMASZIkSZIkSZIkSZIkSZIkSZIkSZIkSZImmI0DJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmaYDYOkCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRpgtk4QJIkSZIkSZIkSZIkSZIkSZIkSZIkSZKkCWbjAEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJpiNAyRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJmmA2DpAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkaYLZOECSJEmSJEmSJEmSJEmSJEmSJEmSJEmSpAlm4wBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiaYjQMkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZpgNg6QJEmSJEmSJEmSJEmSJEmSJEmSJEmSJGmC2ThAkiRJkiRJkiRJkiRJkiRJkiRJkiRJkqQJZuMASZIkSZIkSZIkSZIkSZIkSZIkSZIkSZImmI0DJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmaYDYOkCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRpgtk4QJIkSZIkSZLUiYi4JCKy5mODac8hqZ6ImBMRW0fECyLi/RFxYkScFRFXRMQNEXF7wWv67K7/PJJmT0TMLzhPzWsxR90M2VYGSZNhXM5bkiQtzLhcp8Ylh6Tp4XmlexGxS8G/wQ+7zitJkiRJEsDcrgNIkiRJkiRJkiRJixMRc4EnAAf2/nfVbhNJkiRJkiRJkiRJkiRJ0nixcYAkSZIkSZIkSZLGUkQsBTwfeB2wXsdxJEmSJEmSJEmSJEmSJGls2ThAkiRJkiRJUyUidml5igTuAu64z+PO3v/emJm3tjy/JEkzISK2Az4JbN51lnEWEfOBg0Y45b3vf24HbgauAv4C/Bn4PXAucG5mXjXCTJIkSZ1q8D3ZhzPzpQ0cZ2Qi4vHAyQ0c6tLM3KCB40iSJEmSJEmSJM0sGwdIkiRJkiRp2vygy8kj4hbg6n94XES1kO584ILMvLO7hJIkjb+ImAccBSzZcRT9s6V7j5WANYGNFlYUERcDPwS+D3wzM68fUT5JkqRJ9syIeNWEfXd0cNcBJEnSeIiIHOF0C/i/Tb6v5++/l/sz8Aeq38v9LjOvGGEuSZIkSZKkTtk4QJIkSZIkSWrW8sCGvcfC3BMRlwC/AX4C/Bg4KzPvGk08SZLGW0T8K3BE1zk0tHvfDx0M3BkR3waOBb6emQs6TSZJkjS+Vgf2Br7adZA6ImIlYN+uc0iSpJk0B1i29wBYC9hkYYUR8Seq38mdCpyQmX8eSUJJkiRJkqQO2DhAkiRJkiRJGq0lgI17j3tvrL41In4GnAJ8OTP/0FU4SZK6FBFPBD7UdQ41bingqb3HBRHxbuCYzLy721iSNF4i4hXAKjXL35+Z17cWRlKX5jEhjQOAA/j7Yj1prETEPsBWNcuPz8yzWwsjjVBEzAM2qFk+PzMvaS2MND4eSPW+5QDgiIg4HfgM8KnMvLXTZJIkSZIkSQ2zcYAkSZIkSZLUveWAXXqPt0XEb4AvUzUR+H2HuSRJGpmIWBX4JFWTHU2vBwNHAS+PiBdl5mldB5KkMfIKYP2atfOB69sKIqlTT4yItTLzqq6D1DCv6wDSYuwDHFSz9hLg7LaCSCM2D9i5Zu0PqX7+pVkSwKN7j3dExMeAd2Xmdd3GkiRJkiRJasacrgNIkiRJkiRJ+idbAm8Fzo+I70XEXhERXYeSJKllhwNrdx1CI/Mw4NSI+GBELNl1GEmSpDEyFziw6xD9RMQmwKO6ziFJkjSEVYHXARdExIsiwvvqJUmSJEnSxJvbdQBJkiRJkiRJi7Vb73F+RLwPmJ+Zd3WcSZKkRkXEusChAw4/C/gl8GvgWuBG4JaaY28ecE4156XAIyLiXzLzyq7DSJIkjYmDgPd2HaKPeV0HkCRJasjqwEeA/SLi2X5HJUmSJEmSJpmNAyRJkiRJkqTJ8FDgKOCVEfGyzDyl60CSJDXoEGDpgvoEjgA+mJl/aCeSRuhRwA8jYtfM/HPXYSRJksbAFhGxbWb+susgCxMRSwDP7TqHJElSw3YFfh0RT87Mn3UdRpIkSZIkaRBzug4gSZIkSZIkqcimwMkR8dWIWL/rMJIkNeSggtrbgD0z8yU2DZgqDwFOjYj7dR1EkiRpTMzrOsBi7A6s03UISZKkFtwPOCUiHtt1EEmSJEmSpEHM7TqAJEmSJEmSpIE8DXh8RBycmcd1HUaSpEFFxGbAhgVDXpWZ32krzwz4b+CkAccGsAywHNVCsfWArYBHAKs0kO1BwBcjYvfMvKeB40mSJE2yZ0bEqzLzzq6DLMTBXQeQJElq0YrAtyJih8w8t+swkiRJkiRJJWwcIEmSJEmSpJmWmTHo2IhYmmrx3DLA0sDKwNq9x/2B9YHNgYcBqw0d9p+tBHw1It4LvC4z725hDkmS2vb4gto/ZuZHW0syG87PzB82ecCIWAJ4FPAs4NlU71EGtSvwNuD1DUSTJEkaV0nVlGlxVgf2Br7afpz6ImJV4Kk1y+v8OSVJ0uzadYixc4BlgRWofi+3HtXv5Lalmd/JrQB8PSK2y8zrGjieJEmSJEnSSNg4QJIkSZIkSRpQZt4B3AHccJ//fM7CaiNibWB74HHAbsBmDUZ5FbBdROydmTc2eFypVZm5QdcZJI2FRxbUzm8rhAaXmfcAPwZ+HBGvA/6N6v3JMgMe8tUR8dnM/G1TGSX9s2GaqEmShvYjYKcadfMYs8YBwDOpGmj2czGwBNUiPkmaepk5j+q8LammpptbAkTEHGAr4OnAc4B1hjjcxsD7gIOHT1bO84okSZIkSRrEnK4DSJIkSZIkSbMgM6/MzOMz86WZ+TDgAVSL6hbaaGAAOwEnRcSKDR1PkqRR2byg9pTWUqgRmXljZv47sA3w6wEPMxf4SHOpJEmSxs78mnVPjIi12gwygHk16z4FZIs5JEmS/klmLsjMszLzdcCGwGHANUMc8qCIeGwz6SRJkiRJktpn4wBJkiRJkiSpA5l5RWa+OzO3pFpY9wVgwZCHfRQ2D5AkTZ4H16xbQHMNd9SyzPwd8BjgpAEPsVNE7NxgJEmSpHHyQ+CSGnVzgQNbTVIgIh4GbFejNIFjW44jSZK0WJl5Z2YeBTwU+NqAhwngXc2lkiRJkiRJapeNAyRJkiRJkqSOZeavMvOZwMOoGggMY0fg6xGxxPDJJElqV0SsDCxXs/yKzLy1zTxqVmbeDOwLnDbgIV7TYBxJkqRxUrKw/qA2gxSaV7Pu1My8uM0gkiRJdWXmtcC/AO8d8BA7RMRODUaSJEmSJElqjY0DJEmSJEmSpDGRmef3Ggg8Abh0iEPtCrytmVSSJLXq/gW1N7aWQq3JzNuB/YC/DDB8r4hYt+FIkiRJ4+JYqgYC/WwREdu2HaafiJgLHFizfH6LUSRJkopl5dXAJwc8xMubzCNJkiRJktQWGwdIkiRJkiRJYyYzvwtsDnx6iMO8NiKe1FAkSZLasnxB7U2tpVCrMvMa4F8HGBrA0xqOI0mSNBYy82LgtJrl81qMUtcTqdf462bgKy1nkSRJGtSLgd8OMG7PiFih6TCSJEmSJElNs3GAJEmSJEmSNIYy8+bMfC7wH9Tbfe4fBfCpiFi72WSSJDVqmYLaO1pLodZl5vHAjwYYauMASZI0zebXrHtmRCzVZpAaDq5Z95XMvKXVJJIkSQPKzNuBlw4wdFlgr4bjSJIkSZIkNc7GAZIkSZIkSdIYy8y3Ue0qN0jzgNWAdzYaSJKkZi3ZdQCN1HsHGLN9RPhzIkmSptWXgZtr1K0O7N1ylkWKiNWBJ9csP6bNLJIkScPKzB8Cpw4wdNeGo0iSJEmSJDXOxgGSJEmSJEnSmMvMTwGvGXD4cyJiuybzSJLUoOg6gEbqG8A1hWOWBR7eQhZJkqTOZeYtwFdqls9rMUo/zwaWqlF3EfCjlrNIkiQ14aMDjNmh8RSSJEmSJEkNs3GAJEmSJEmSNAEy873AhwYYGsAHIsKFmZIkqVOZuQA4cYCh2zadRZIkaYzMr1n3xIhYq80gizGvZt2xmZltBpEkSWrIt4A7C8dsERFLtxFGkiRJkiSpKXO7DiBJkiRJkiSptlcDuwBbFI57FPBkql1+x1qvwcFDqXZteRCwIbARsCawHLA81c7DdwK3ArcAVwEXA5cAvwVOz8wLR529CxGxLNViym2ADYD1e4/Vqf6+lqP6+1oA3EH1d/ZXqt2eL6PaCfD3wK+B32fmPaP9E6gtEbES1evo4VSvow2pfjZW5O+vpblUr6FbgJuAS6leSxcCPwN+lpm3jjy8iIglga2B7YGNqc6DGwCrUP3bLQ8swd/PgzcDf6J6TV8E/IrqXHjjiKNLdfyY8t1yN2g+RjMiYh3g0cAmwEOABwNrACv0HssCNwB/Ay4HzgfOAj6TmbePMKfXhUXovf/cFngssBmwKbAu1d/NikBS/X3cBFwH/AE4DzgXOC0z/9pBbC1CRCxF9XP+CP7+c74+f/88ce8jqd4f30b1+ryG6jV6IXAB1fvj8zKzdBGJGuJ5a9E8b02l06jex2/Up24ucCDw3tYT3UdEbEn1+aSfBI5tOU6nImIO1fdyO1C979uI6vy0GtV5aTlgKf7+We0W4Ar+/lntHODHvg4hIh5Gdb2+9330RlSfee99Hz0XuJbqOn0J1TnsJ5n59Q7iTozeNWIjqp/Te79b3QC4H9XnlFWApXuPBcDtVO+HbgaupHo/dDnVd6y/ono/dNco/wySNCqZeVNE/JLqd2h1LQGsR/W5UYsQEQ/g79f5TYAHUn0uvx/V+6Wlqd4z3fu7vtt6/3sr1TXpCqrr/6W9xyXAhaP8Lk2SJEmSpElm4wBJkiRJkiRpQmTmnRHxHKoFEEsVDn8ZY9o4ICJWA/YF9gF2pLrZup9le4/VqW7S2u4fjnkVcBLwJeDkabnBtXfz7w7A04DHUd0EXOd73iWAJaluvF5zETW3RsSZVAsWTgbO7O0MrQkRETsAT6f62dgcmFNj2Eq9x9pUN+rf1929Gye/CnwpMy9tMK7+QW/n0P2pzoc7UN1A2c+9/35QLVrZ7T7PLYiIc6h2zvp8Zp7TYFxpGL8cYMz6jacYQkRsBxwA7EF1vu1ntd7jwcCuvf92CtVNz63xurB4EfEo4FDgSVQ3ri/O0lQLrTakath0rwW990/foNph+co2smrxIuLhVO+P96Ba2Fp398e5VIs816BayPCP7oyIX1C9Pz6FasH1VHyuGFeetxbP89b0ysyMiGOBw2uUH8SIGwcAB9es+8Gkv84WJiJWprrO7EfVMGrlGsPubeQBVTO4nf7hmOcD36X6rHZmc2nHV0QsQXX+2ofqmr1ujWFr9R6bAXtRXSNsHHAfEbEqVSOZHXuPram+/6vj3u8LV6T6vnBhzUvuiIjTqL5b+GZm/nHo0Jp5EbEH1c9rHQm8e9ybQfWaoexfMOTzmfn7tvKoyC8oaxwA1fdUNg64j4hYjur6vg/Vd1/r1Ry6TO9Rx10R8WvgzHsfs9JEXJIkSZKkUpGZXWeQJEmSJEmSGhMRRV94ZWa0laUtEfFO4LUDDN0sM3/XdJ5BRcSewEuA3aluUm3LtcCRwAcy8+oW52lNRKwPvBR4JrDOiKa9hmoxyWeAH2YLXyZHxCXUXwy6YWZe0nSGccoxiIhYk+pn4zm0v7D2h8C7MvPbLc8zUyLi8cCrgcdT3bTflnOBDwPHZOYdLc4DQET8ENi57XkGdGlmbtB1iKZExHyqBWR1HZyZ89tJ019v4dX1hcNOy8zin6eS94X93hNGxFzgWVTvXbZbXG1NrVxPvC70FxFPA/4D2KrhQ99J9b7pPf3ecxe+blt7zTb5Ghm1iLgf8K/Ac6kWZI7CjVSL5j4LnJSZd5ceoPTzakdOzcxdRjWZ563+PG9NhgHek/2f9wK9z/0XA3XOt4/IzEGaMRWLiCWpdnzt16wC4LmZ+el/GH8J9V/bY/U+vdcs6t+AvanflGYQFwMfA47IzJtanKeWiNgF+EHN8r7XjF7D0MOAF1J/EeGi/J+fkTH/3Pm/mn4f1fvZ3JtqgeYjaPe7hH90KvBR4Lhxaqg0LtepUeUoPLd2ZZHn9IjYiepnqa7nZ+YnG0nVkoj4NHBgzfKbgXXG4Zzfhkn7HV1EvAL4n8JhI3u/Oy7nt0WJiM2AF1N9nluxT3kbrgC+AnwZOL2l32PtQoPvjdoUEZtTfW/xwMKh5wN7ZebFzaeSJEmSJHWhTnd2SZIkSZIkSePlXVSLVkq9tOkgpaJyQG9XkG9R7RbWZtMAqHb4fQNwSUS8LyK6uHlpIBGxdUR8CbgQeBWjaxoA1aKA5wHfBy6NiDf0FmhpDETEehFxBHAp8O+M5mbhXYBvRcTZEbFbv2ItXkQ8ISJ+CpwMPIH2b/R/GNXN/RdFxMt7i6ClkcvMG4BbCoct30aWuiJiZ+Bs4FiaaRrQOK8L/UXEVhFxKtXO41u1MMVSVO+dfhMR74yIujvmqUBEbBwRnwAuo9qZe1RNA6Da1f4AquZaV/b+ncd9wdbY8rzVn+et2ZKZl1I1t6hjXntJ/smTqNc04Caqn9WJFxHbR8R3gZ8B+9Fu0wCADYF3Un338p+9HXsnXu87wBcAfwDewfBNA2ZaROwQER+IiMuofjb/A9ie0TYNgKpRwxeA83vf8Y5VcylNhsw8DfhtwZAXtpWlCRGxOtX1oq7PTmvTgAl1+QBjVmg8xYSJiA0i4jNUr+UX0U3TAIB1gZcDPwYu710rZ/J774jYHfgJ5U0DTgN2tGmAJEmSJE0XGwdIkiRJkiRJEyYzr6V8BxSAZ/d2iutERGxBdfPO54EtO4iwLPBKqhtbn97B/LVFxP0i4ijgF8D+jP4m4H/0QODtwJ86zjHzImLJiHgt8DuqXXa7WNzzcOB7EfHZiFirg/knWkSsFRFfAE4CHtlBhHWA9wO/6O1SKHWhtHFAJ4unImK53s5uP6RqvjF2vC7UExGvBH4K7DSC6eYCrwV+HRHbjGC+mRARK0TEO4HzgOfTzc/6fa1B9e98YUSs23GWieJ5qx7PWzNrfs26Z0bEUm0GuY+Da9Z9OTNvbTVJyyJixYj4EHA6sHsHEVYF3gz8NiKe0MH8jYmIDYEzgKOA1TuOM9Ei4pURcQHV3+fLKF8M2JaNqL7jPT0iHtR1GE2kIwpqt4uIrVtLMryDKHtPe2RbQTSQ0u+ooKPvqcZBrzHQy6g+mz8bGKcGMutQXSu7/r5g5CLiYOBEqoaHJT4P7JGZ1zWfSpIkSZLUJRsHSJIkSZIkSZPpg8AdhWNWotphcaQiYomIeDtwFrDjqOdfiHWAL0bEURHR9q5xxSLiQOAC4AWM33e4Y/f3NUsi4uFUO16/k/G4OfFZwK8i4tFdB5kUEbEX1SK5Z3SdhWrB3JkRcbg7BKoDpe9hRn79iYgHAD+iWgAwlrwu9Ndr/vB14H1UO2uP0kOA0yJizxHPO3UiYg+q3Ypfy+j/HftZAuisOduk8bzVn+etmfcVoM4OxKsDe7echYhYE9irZvkxbWZpW6+p2rnAS+j+u5gNgZN631uN23Wvr4jYGfgZsH3XWabEYcA4L8zfgepa+tyug2jifJp617x7HdZWkAYcWlD708w8u60gGkjpd1Qwfp9LRyIiVgBOAD5A1ahbYyAi3gJ8kvLvJv4LeHZmDvIakCRJkiSNua5/0SFJkiRJkiRpAJl5LfD1AYa2fmP5ffVuMj8FeAPVLobj5AXAjyPi/l0Hgf9dIPJJqpsmV+46j8ZLRBxEtbvcZl1n+QdrAz+IiH/tOsi4i4jXAd+g2kVyXMwB3gQcHxErdh1GM6V056/bW0mxCBGxGfBzYGx3Xfa60F9ErEr1PvQpHcZYHjjBhVSDiYi5EfFfwElUP1uaYJ63+vO8pcy8FfhyzfJ5LUa514HU+y7nj5n547bDtKX3834a47OT+71eAPxwXL63qiMingGcDKzRdRaN1ArAsRHxpq6DaHJk5s1U34PX9exx/O4qInYFNikY8rG2smhgg+xOf3PjKcZcRKxG9X7pyV1nUSUiloqITwP/UTj0buDQzHxDZmYL0SRJkiRJY8DGAZIkSZIkSdLk+uQAY0bWOCAiNgfOAnYZ1ZwDeATVTdjrdhmidxP46cDBXebQ+InK+4H5jO8uPksCR0TEq7sOMo56/4ZHUu3gM66/l3kK1e6yq3UdRDNjhcL621pJsRAR8UDgO8BYLtDyulBPRKwC/BB4VFcZ7mMucHRE7N51kEnS28nwJOB1QHQcR0PwvFWP5y3dx/yadU+MiLXaDEL95gTHthmiTRHxBqr8gywaHIVHAT+NiA27DtJPROxBtQi4dLdbTY/DI+I9XYfQRDmioHYF4FltBRnCYQW11wNfaCmHBjdIQ4rrmw4xziJieeBEYOuus6jS+/z4HapGXyVuAvbOzI83HkqSJEmSNFbG9QY1SZIkSZIkSf2dDPy1cMwGEbFpG2HuKyK2olr00OmC/Jo2AU7tage3iNgA+BHw8C7m1/iKiKDaherlXWep6d0R8ZquQ4yhD1F2E3FXtgJO7u10K7Wm9zNWunD0ljay/KP73HT7gFHMV8rrQj0RsRRwHLDlqOdejLnAlyPiYV0HmQS9RjbfAx7XdRYNx/NWPZ63dF+Z+SPgwhqlcylfKFRbRGwLbFGjdAHwqbZytKnXLOTtXeeoYT3g+xGxXtdBFqX38/JVbBogeFVEvKjrEJoMmXkucGrBkLH6fi0i7gfsWzDkU5k5ssaIqm2Q74CubzrEmPsosEPXIVTp/U7xdMqbtv8Z2CkzT2o6kyRJkiRp/MztOoAkSZIkSZKkwWTmgoj4HvCMwqGPBH7XQiQAImJrqoU+wy4+vQ34NXAWcClwOdVuGLcBSwDLA+sAG1H9mR4BLD3gXBsDx0fEzpl5x5C5a+vd9P1jmmmwkMB5VH9fFwOXADcAtwJ3US3SXJZqB+W1gQcBmwMPxu+Kx9XRwMENHOdS4BfA+cCfgKupXkd3Ur2OVgY2BDYFHgM8cIi5/jsi/piZXxsq8ZSIiLcAL27gUOcCZ1Cdu+89F95FtSPW6lT/dg+n+vcb9DwIsA3wrd658M6hEkuLNshuqVc0nmLhPkr1eqrrZqrX5m+pFvhdRdXk4C6q3RBXpHqf8jCq3WKHbUjgdaGejwO7DnmMm6kWsPwG+ANwXe+/LQOsxN//fnam/t/PysCXImKbIbNNtV4Dj1Op3qc24Y9UP+8XUb1Hvp7qdXoH1b/ncsCaVO+PN+zN+1CGu57q7zxv1eN5S/9oPvDWGnUHAe9tKcO8mnXfz8zLWsrQmoh4PvDuBg51IdX3OudTfQ9zE3A71XvBVamaVW5B9dpbYYh5NqBqHrBdZl43xHEa19uF+AuU/fn+AvwE+D3VNfpa/t4sbEVgFaq/u4dRnddXaijurLiT6mfz91Tvf67qPW6k+vm8neq7wKWpfk7vT/UzthnV9wKD7L59Xx+MiPMy84dDHkez4Qiqc2QdW0fEIzPzZ20GKvA8YKmC+o+1FURDedAAY0obek+siNgPeM6Qh7mR6nPKecBlwJVUv7u6meo7tDlU16RlqL7rvvcz+oOofn+1ARBDZpgKEbEd8A1grcKh5wB7ZeblzaeSJEmSJI0jbwaVJEmSJEmSJtvJlDcOeARwbAtZiIi1qW5aGbRpwA3AZ4HjgVNLFq72blR+CnAIsNsAc29PtWDjuQOMLRYRKwPfYrimAbcDJwKfB76XmdcPkGM5qt1iHgs8GdgWb8LqXES8ieEWWf0U+DTwzcy8tHDuLYBnAYcCqxXOG8CnI2LHzPxN4dipEhFPBf59iENcQnVD8aczs9ai6d7r+UnAS4CdBpx3B+BDDLmLW2buUqcuInYBflDzsKfWPa7G2rYDjCk6jw0iIp4OHFCj9Faq6+5ngR9l5t0Fc2xLtTPwoQPk87pQZ7KIgxn8vdwC4CTgI8Apdd+HRsSWwAt68/Zb1LYZ8KYB8029iFiSarfiYZoG3A2cQvU6PSkzrx4gx1JUn5keC+wFPJqqcdnQMnOx77Mj4hJg/ZqH2zAzLxk2U1s8b9WczPOWFu5TwOFUi6gWZ4uI2CYzz2py8t558Fk1y+c3Ofco9BZcfWSIQ1wNfAKYn5kX1JxzKeBxwIuori39/m0XZmPgcxHxpMxcMMD4trybeosur6D6PvJzvV3Ga+n93e0CvBDY6r7P9ft8GBHzqRps1HFwZs6vm2vMXE31HfHpwJnAb0o+p9xXRCxB1TxgX+CZVIs1Sy0BHB0RW2TmrYPk0OJl5gaLez4ifkj9xfi7dtzk4WtUi4jXrll/GNB544CICKr3U3X9KDPPayuPhvKIwvqkWgQ/9XrX4EEbLV1E9XnuBODsYd679H6Xti3V99aPB3ZkBpv99X7f8DmqBoglTgb2y8wbm08lSZIkSRpXg/wSQpIkSZIkSdL4OGWAMYMs2OsrIpahWvA/yEL4q4GXA+tk5osz8+TS3a4z85bM/HxmPo5qV99BbiB8TkSUNmIo1rsJ9ytUO6cN4kbgHcB6mblfZn51kKYBAJl5a2Z+PzMPz8ztqHaffBUzcvPbOIqIfwHePODwbwDbZOYOmfmR0kVWAJl5Tma+nmrR2puoGlSUWJ5qsdWSpXNPi4h4ENVin0GacFwLvAx4cGa+s27TAPjf1/OXM3NnqoUVg76OD+0tYpPa8JgBxlzSdIiFOKLP83cD7wM2yMxDMvMHpYtxMvOXmflKqsU3tRcze12oJyI2Bj444PDTge0y80mZ+a2S96GZ+ZvMfCmwEVXDl343w/8bsOWAOafdUQzWAAyqn8sjgAdl5p6Z+alBmgYAZOadmXl6Zv5375q6FtUC9DMGzDZzPG/V43lLi5KZl1G/uda8FiI8hXpNN24Ejmth/tZExOpUTWoGWWx2K9W5bYPMfGPdpgHwv9eWb2fm3lSLsk8dYH6AJwL/OeDYNmwB/Gufmr9RNbfbuPf3VrtpAPzv3913M/NpwK4D5pxGFwJvpVrwev/MPDAzj8jMswZtGgCQmfdk5s8z8w1UzSr+hWqX4lIbAW8bNIdmR2beRdXMt64DeouIu/Z4qtdIXUe2FUSD670v2Lpw2B9naAH2PMobyFwEPJ3qu+03965LQzU8yswber/Dekdm7kb1PvVfgC8Ctwxz7EkRES+jet9d2jTgGOBJM/QzK0mSJEnqsXGAJEmSJEmSNMF6iyiuLRz28N7C9aa9F3hk4Zik2uVt48z8YFO7UGXmmVTNA14L3FM4/MMRcb8mcizGG6huLhzEF4GH9G62vqbBTABk5hWZ+b7MfDiwfW++gW84VpmI2JBqx8bSBecXA7tl5lMy81dNZMnMmzPzrVQLAX5dOHxL4I1N5JhQH6f/7q0LcyqweWZ+aJgb/QEy81SqRjHvHfAQ74+IdYbJIP2j3vuPvQYY+sumsyzE6ot57lzgkZn5qiauvZl5Td33PF4XihwNrFA4ZgHVouLHDLtbc2b+LTNfCOzB4htDzKV8YcLUi4jnMPji11OALXoNyIoXmffT+7f9eGbuSLX7+lGUL0SfGZ63inje0uLMr1n3zBaaXNRtIvalzLyt4bnb9l6qhomlzqFqanL4sH/mzPx1Zu4CvIbBvm95Y0RsNUyGBvVrMPF1YLNeI5g7hp2sjev8hLkDOBZ4VGY+KDPf1GtOlm1MlpkLMvM4qmvAK3rzl3hxRAzyetPsOYr658PlgOe0mKWuFxbU/pWqaY3Gz1OA0t+V/aKNIGPq0ML6zwFb9hrbDtUsYHF6zXOPy8wDgLWpmhid3dZ8XYqIORHxP8AHKF/z8abMfF6vQYskSZIkacbYOECSJEmSJEmafKW7Pi1HtetTYyJiV/rvMPaPbqTa6eIlmXlzk3ngf29ufRewJ9WucHWtAfxX03nuFRFbA/8xwNDbgGdn5gGZeVXDsRYqM3/Wu/nqQcAnsIFAqyIiGGzx0HFUN+TV3ZGySGb+EdiR6ob/Em+IiEbPNZMgIg4Cdhlg6DHA4zLzyqayZObdmflqqhuqS5uorAR8qKksUs/eVNfZErdTvtizSd8BdmxqEWsJrwv1RcR+wM6Fw+4C9svMtza52CozvwdsR7ULrGqIiAcw2K7r9wCvzszdez+XrcvM32XmYcB6wHso+5wx9Txv1ed5SzUcR/W9ST9rUL3HakRErA08oWb5MU3NOwoRsQtw0ABDvwPskJm/bzJPZr4HeCLl15IlgKMiYtzv+3sHsG9mLq4xieq5Hngz8MDMnNdrmDoymXlPZn6AqsHonwuGLgW8vp1UmiaZeQVl79MOaytLHb1r5VMKhsxvonmKWvGiAcZ8v/EUYygiHkzVlLauTwEHZuYtLUVaqMy8KTOPzMytqRqi/YCqYfnEi4hlqZqOvKJw6J3Ac3tN9CRJkiRJM2rcf4EgSZIkSZIkqb/fDDCmsd2eImJ5qsUhJTtK/oVqd6xvN5VjUTLzZKobsUt2hDuod2NUo3o7LR8LlO4G+FeqHSU/13SmOjLz0sx8AfDQLuafIS8Edi0c836qxUONN9+4r97O2PsDxxcMWxL4z1YCjamIWAF49wBDPw48PzNLF/fXkpmfAZ5N+U2TT4uIPVqIpNn1/wYY87MOd8b6LvCUzKyzaK8NXhdqiIilgXcVDlsA7J+ZX2s6D0BmXka1IPiSNo4/hT4GrFI45jbgyZn53ubj9JeZ12Tma4CNgWu6yDCmPG/V4HlLdfR+Zr9Us3xeg1M/h3o77/4hM09vcN5W9RbZf2SAod+iej/YSqOYXuOOPamaZZXYDjik+USNeXNmvrHJJicz7N3ABpl5eGZ2+p4jM38NPIay5gHPi4jVWoqk6XJEQe3mEbFja0n6ex4wt2ZtUn3e0ZiJiL2BRxQOu436788m3eMKav8IHNb1dT8zT87M3UbdvKANEbEmVROEfQqHXg88MTM/3XQmSZIkSdJksXGAJEmSJEmSNPnOHWBMY40DqHa72LCg/m/A4zPzvAYzLFZm/ojqhr665tLOgud5wBaFY66l+vs6q/k4ZTLTHShbEhErAW8rHPbRzHzlqG7I6y3cfTZQ8rP47IjYpKVI4+jFwP0Kx5wCvKjtf8fM/CLwxgGGzlTzB7UnIp4KPHaAoa0skKzhHOBpmXlnF5N7XShyEGXvRQFen5mlO48X6e2auQ8w8TestykiHgfsVTjsduCpmXlSC5GKZOZfpmFRQhM8bxXxvKW65tes27O3uKgJ82rWHdvQfKOyP7BZ4ZhzgGe0/X4wM0+j7Dure70hIkobU47CMZl5eNchpkVmHp2ZN3Sd416ZeTHwZOo3u1gaeFZ7iTQtMvP7wPkFQ17YVpbF6TWieUHBkO9l5h/byqPBRMSKVA3MSh3fYXPJUduhoPbwzCxtgqRF6H3+PBPYvnDopcCjM/MHzaeSJEmSJE0aGwdIkiRJkiRJk69kl6d7PaCJiSNiFeDVBUPuAQ7IzEGaHQwlM78AHFkw5BkRcf+m5o+IZYA3Fw67m2rR4q+byqGx9f+Akh3Yvg+8tKUsi3SfnVrrLiZaAnhJe4nGR0QsR/lu6n+hOife3UKkf5KZ/wV8o3DYjhGxWxt5NDsiYg3gowMOP67JLDXdRvXa7HLhpNeFGiIiKD/3fjszS3f6HkjvPdzLRzHXJOr9+71zgKGHZObJTefR0Dxv1eB5SyUy8yfABTVK5wIHDjtfRGwPbFqjdAHwqWHnG5Xe6660idqtVN/H3NxCpH+SmZ8HPlQ4bH3gOS3EGcbvmJHvAGZZZv6KsiaDB7WVRVPniILa/SNi1daSLNoTqc6/dZX8PkIj0Gv+8ElgowGGz9K/Z93mabcBX20zyCyJiJ2A0ylvNPdLYIdRNmyXJEmSJI03GwdIkiRJkiRJk+/KAcY00jiAqmnAKgX1/5WZpzQ09yBeA1xRs3YucHCDcx9K+d/76zPz1AYzaAxFxGrAKwuGXAs8MzPvaSnSYmXmRcC/Fww5MCKWbSvPGHkuULrL52GZ+bc2wixuTuC6wjElDWKk/yMilga+BKw9wPDvZuZlDUeq4+1d3mjrdaHIk6h/MzvATVTnwZHJzKOBLt//jrO9gUcUjvlIZn62jTAanOetIp63VGp+zbomFubOq1l3SmZe3sB8o/IEYIvCMa/vYIfo1wEXFY4Zt89qh/YatGj6/Q9wSc3aR0TEOi1m0fQ4lvrNnZahm6YUJe/L/gJ8va0gKhcRSwAfA/YbYPjXMvO0hiONs7oNMs7OzNtaTTIjIuJZwMmUNeQD+Cawc2b+pflUkiRJkqRJZeMASZIkSZIkafL9eYAx9x920t5CwBcWDLkAeNuw8w6jt1PcWwqGPL/B6V9UWH8m8N4G59f4eh6wUkH9azLz6rbC1HQEcGnN2lWAf2kvytiYV1j/7cw8oY0gi5OZVwJvLhy2hzf5axARsRzVrmO7DniI9zQYp67L6P7663WhvnmF9e/JzD81NHeJV1Dtzqz/68WF9ZcA/9ZCDg3P81Z98wrrPW/pU9T7t9gyIrYZdJKIWAY4oGb5/EHn6ci8wvrfAh9uIcdi9RbclzRhAdg0IrZvI88AvpyZP+46hEYjM++i7HPT49vKoumRmTcCnykYcmhbWRYmItalagJV19GZeXdbeVQmItYCTgQOGWD47cCrmk009up+vuvis8rUiYg3UJ3/lioc+lFgn8ys23RFkiRJkjQjbBwgSZIkSZIkTb5BFlws18C8TwNWL6h/Y2be0cC8w/okcGXN2o0jYrNhJ4yIXSnbVXIB8K+ZmcPOrYlQcrPib4Fj2gpSV2beCby7YMhT2soyDiLiIUDJYo0EXt9SnDqOpP7OgABLAAe2E0XTKiI2AX5E2U319/XTzDy5wUh1/U9m3t7BvPfldaGGiFiRsp+va6l2Rh25zDwX+HwXc4+riNgI2L1w2MvcxXhsed6qwfOWBpGZlwPfq1k+b4ip9qFqktHPDcDXhphnpCJiJeCphcPemJmdNM7oNZc7o3BYFztuL8w7ug6gkfsCUHdR9OPaDKKpckRB7aYRsXNrSf7ZC6i+I6tjAXBUi1lUU0QsExEvBX4HPGHAw7w5My9uMNYkWLZmnc3GhhARcyPi48DbgSgYmsC/ZeaLMvOedtJJkiRJkiaZjQMkSZIkSZKkCdfbtaZ055q6N/0szgsKan8HfKWBOYfW+/v6ZMGQPRuY9vmF9V/OzLMbmFdjLiJ2oqypxNvHqKHEZ4C6i/d2j4i6N9ZOoro7c97rO5n561aS1NBbKFe6CO1ZbWTR9ImIFSPicOBXwKC73i6gfCfyJtwMHN3BvP/L60KRfYBlCuo/npk3DTnnMEp2ZJ0Fz6PspvifZuY32gqjwXneKrIPnrc0mPk1654ZEUsOOMfBNeu+OAZNlkrsQ9nr7ne9xftdemdh/TMiout7AE/1e6zZk5l/BX5Zs/yRbWbR9MjM3wA/KRhyWFtZ7qv3PrDkO/5vZ+ZlbeXR4kXEnIjYLiLeDVwMfBBYdcDDHZuZ/91cuolxV826+7eaYor1GsudSFkjPoDbgWdkZkkjPEmSJEnSjJnbdQBJkiRJkiRJjbgdWKGgfqjGARGxJrBLwZCjxmhxCFRNDN5Ys/YJDLFgIiLmAnsVDnOXttnx9ILaa4CvthWkVGbeEBEnU2/3xlWA7YHTWw3VndLdqj7SSooyx1Kda5avWb9lRKyVmVe1mEkTqncD/fbAM4HnACsPecgPZ2bdBShNOqHjBZrgdaFEyfurBD4+xFxDy8xfRcTPcNHUvUp3f/b98fjyvFWf5y0N6mvADfR/j7UGsDdwXMnBI+IBwONrlh9TcuwxUPpZrWSn67Z8E7gUWL9m/WrAI4CftZaov892OLe6dTrV9bGfB0fEMhPWeETd+Qjw6Jq1T4uINXqNLNr0JOABBfUfayvItImIXYYYPoeqQdAKVAvY1wc2B7Zj8EYB9/VDyhpoT5ObgKVr1G0VEUv1GtWqpt777xOBLQuH/g14SmZO6+9ZJEmSJEkNsXGAJEmSJEmSNB1KGweU7La2MHtSf4fQe6h2chwbmXl2RPwZWKdG+XZDTvdoym5SO6O3s5JmQ8nioc9lZt2dfkblW9Rf+PdIprBxQESsRNliqmuAb7cUp7beQrnjqBZ51xFUi4lcEDL5HjrkTdlLUzWcWBtYD9iK5m7IBjgTeE1Dxyr1lY7mvS+vC/XtUlD708y8cIi5mvJZXIBLRNy7mKOuy6kWUWo8ed6qb5eCWs9b+l+ZeVtEfBE4tEb5PAobBwDPpVp418/5mXlm4bE7ExH3foap627gcy3FqS0zF0TEp4D/KBi2O901DlhA1dxCs+mCmnVLAJsCv2oxi6bHV4GrgLVq1C4NHAy0vfP2Cwtq/0T1HlP1/KDrAIvweeD5Y/j5ZVSuoGpK1c8qVI2rxqZB3LiLiIdTNQ1Yt3DoH4G9MrPutVeSJEmSNMPq/NJHkiRJkiRJ0vi7rbB+2SHnK1kccsYIdvwZRN2b3VeJiI2GmKfk7wrg00PMpQkSEZsCGxYM+UZbWYZwRkHtNq2l6NYulDVqPiEz72kpS6nSxR2PayWFRu21VDdlD/o4iepm4A8D/wbsQXNNA/4E7NfRLmUL6Phmda8L9UXEZlS7CdZ1wqBzNez4rgOMidL3x5/LzAWtJNFQPG/V53lLDZhfs27PiFiz8NgH1aw7tvC4XdsCKPm7ODUzr20rTKFJ+qz26zH93k+jcWVB7YNbS6Gp0vtO4OiCIYf2msW0otf47AkFQz4+Rt/9qdwC4LWZ+azMLP292zT5Q0HtuyNi+daSTJGIeCLwI8qbBpwBPMqmAZIkSZKkumwcIEmSJEmSJE2HkkWrAMPeuLZbQe13h5yrLWcV1G49xDw7FtQm5TsDanKV3Nh/G9UNZePmPOD2mrXDvI7G2baF9Se2kmIwJwElC7Qf0VYQCbgU2Dkzr+ho/nMy8/qO5r6X14X6ti+s//YQczUmMy8Dzu06xxgoeX8M7lw4zjxv1ed5S0PJzDOA39conQscWPe4EfFo4CE1ShcweY0OJ/azWmb+iqqpVl2lf9Ymndbh3OreLQW1a7eWQtPoY9T/HcaDKPt9RakXUP9e67uBT7SYRe36IfDIzHxX10HGwM8LajcEjrN5wOJFxAuomumtWDj0q8BuNmqSJEmSJJWwcYAkSZIkSZI0HZYprB94p5TeDjtrFAz56aBzteyigtqNBpkgIuYAWxUM+W1mXjXIXJpIJTf2n93RDtyL1ds967Ka5SW70U6SLQvrf9xKigH0ds0qaaLy0IhYsq08mmm/omoacHGHGX7R4dz38rpQ3xYFtTcD5wwxV9NO7zrAGCj5Wb+e8Xh9auE8b9XneUtNmF+z7qCCY86rWffdDhs8DWpiP6v1/KSgdqWI2KCtIH14nZ5tdxXU2jhAtfWaF32zYMgL28gREXOB5xUM+UZmXtlGFrXqLOApmblrZv6y6zBj4pTC+j2AH0XEw9sIM8mi8l/AUZQ3gX8fsH9m1m12J0mSJEkSYOMASZIkSZIkaVqMrHEAsE1h/bjeaHV5Qe0DBpxjE2CFgvrvDziPJlPJa2lcX0dQ/7W0fESs2mqSbpQsRrkgM69pLclgShajLAls2lYQzayjgR0z89KOc/yu4/nB60KJzQtqf95bGDwuzug6QJd6OxBuUjDk1Mxc0FYeDc3zVn2et9SETwN1zolbRkTf12dELAc8vebc82vWjZOSz2q3UjWzGicln9WgvFFCU8bhfbT+QUSsHBGPjYjnRcQ7IuJzEXFyRJwdEX+KiL9FxM0RcWdE5KAP4AcFsdZq68+rqXVEQe1TI6KNn7GnUtb04sgWMqgdlwPvArbIzG0z8xtdBxonmfkr4I+Fw7YGzoqIL0TE9i3EmjgRsTTwOeB1hUMXAC/NzFdlZjafTJIkSZI07WwcIEmSJEmSJE2HpQvrh2kcsHVB7fWZ+bch5mrTDQW1gzYOKNlVEsbvJnW1pHfD2GYFQ0pv0hulUbyWxlJELEXZzrPjtHPsvUozPbSVFJpFfwCekJmHjMmuWX/ocnKvC8VKmpicO+AcbTmv6wAdexhl9yn4/nhMed4q5nlLQ8vMK4CTa5bPq1HzNGClGnXXA8fXnHeclDSqOT8z724tyWAm5bNap++jVYmIVSPiWRFxTEScB1wHnEbVqO31wDOBxwMPp7qWrQYsT9UgcFSWH+Fcmg4nAxfUrF0SeF4LGQ4rqL2Q+tdpde9O4M/AxV0HGWMfGWDMHOAZwJkR8duIeGNElLwnmxoRsRrVOeGAwqG3Avtm5oebTyVJkiRJmhU2DpAkSZIkSZImXG/XztLv+oZpHPCggtpLhpinbSV/B/cbcI71CuvHcVGx2rE+MLeg/pKWcjRhFK+lcbU2EAX1v28ryBDOL6xft5UUmiUXAy+h2tHtu12HuY8rO57f60JNETGHsh0fx20x2zheC0bJ98fTw/NWTZ631LD5NeueGRH9FgQfXPNYX8jMO2rWjoXe6+7+BUPG8ed8Ej6r3ZKZN3Uwr6ia+ETEsyPie8A1wGepmoZsStl3FaOyTNcBNFl6u2x/tGDIC3rn/0ZExMZUDTfqOsqdwSfKRsD7gfMiYq+Os4yrj1M1VxjUw4C3AedHxB8j4sMR8bSIWL2ZeOMrIjYCzgAeWzj0KmCXzDyh+VSSJEmSpFlS8ktcSZIkSZIkSeOpZAHCvYa5qbdkh8WtImIabpZbdsBxDyysH8cb1dWO0p1Kj48Yx3u+iw36WhpX6xTWj+NOu6UL00r/zBLAXcB3gWOB4zLzno7zLMxVHc/vdaG+NYElCuovGmCO1mTm9RFxLdUur7PI98fTw/NWfZ631KTjgeuBVfrUrQHsDRy3sCcjYn1g15pzHlOzbpysRdnrbuw+q2XmVRFxI7BSzSFdfFbr+j30TIqIFYFX9B6TdG62cYAGcQzwduq9B9sQ2AM4qaG5D6V+E447mczrparmdidGxPuBV2Xmgo7zjI3MvCUiXg58uYHDbQy8uPfIiPg9cDrV4vozgfOm5e8+InYATqC86dz5wF6ZeXHzqSRJkiRJs6ax7pqSJEmSJEmSOjNI44ArhpivdIHINBhF44AbM/OWAefR5JnF1xHYOGDsFlVk5nVUNzfXZeMA1XUpVaOAg4D7Z+aTM/PLY9o0AOCGjuf3ulBf6XvfqweYo23jmGlUShsHDLO7odrleas+z1tqTGbeDnyhZvm8xTx3EPUWQ56XmT+rOd84mfjPaj0lubr4rNb1e+iZExGHUjWYeQuT1TQAYMmuA2jyZOb1wOcKhhzWxLwRsRRwcMGQ4zLzmibmVmdeAZwQEdP2/fVQMvMrwMcaPmwADwWeB3wcOAe4LiK+GxFviojdImJSm808FPg+5U0DTgV2tGmAJEmSJKkpc7sOIEmSJEmSJGlogzQO+NMQ883iotFBbxZbvaD2ygHn0GSaxdcRTF/jgFUK68d1McrV1F/8t2qbQTQR7gTu6D1uovq5/gvV4t4/AOcB52bmpC32LWmg0QavC/WVvL+C8Vzseg3VzeSzqOTf7/ZegxuNJ89b9XneUtPmAy+sUbdnRKyZmf/nZyoigqpxQB3HFmYbF6sU1o/rZ7WrgAfXrO3is1rX76FnRkSsS/Xaf3zHUYZRd+d26R8dATy/Zu2TI2KdBr6TeBplC3+PHHK+mZWZxeeGiFgSWKn3WBXYDHg4sA2wE4PfG/8k4KsRsU9meo37u5cA9wee2uIcKwG79x4At0fEacBJVI05Lm1x7iatNcCYzwEH+zMnSZIkSWrSnK4DSJIkSZIkSRra+gOMuXyQiXo3ZC09yNgJt8SA40oWlbgoaras2HWAjgz6WhpXpQvHrm8jRANKzj/T1vxhFh2cmTHEY+nMXCkz75eZG2XmozJz38x8cWZ+IDNPnsCmAVA1QuiS14X6puHce33XATpU8u93fVsh1AjPW/V53lKjMvOnwO9qlM4FDlzIf98J2KjG+HuATxdEGyfT8LqD8f+s1vV76JkQEdsAP2eymwZIA8vMs4Cf1iyfCxzSwLSHFdSen5mnNjCnasrMuzLzb5l5cWaelZmfyczXZObjqBptv4hqF/tB7Al8ttdoSUBm3g3sBxw9wmmXAfYA3gdcEhE/i4iXRsRqI8wwCu8CDrRpgCRJkiSpaTYOkCRJkiRJkibfFgOM+dOAc7lgtEzJ39ftraXQOPK1NB2WKawf10UVJblK/8zSRMjM7DiC14X6Ss9D43jz9bheD0bB98fTw/NWfZ631Ib5NesOWsh/m1dz7Hcy88qatePGz2qj0fV76KkXEY8GTqNaCCvNso8U1B4SEQM3L42ITYBdCoZ8bNC51LzM/GtmfhTYCjgUuGqAw+wH/HuTuSZdZt6dmYcABwM3dhBhO+CDwJ8j4piI2KyDDG3YAr9vlyRJkiS1wMYBkiRJkiRJ0uTbcoAxlww4lzewlHFhlBbF19J0mIZFYDD+i1GkWeBrq76lC+vH8dw7rosTR8H3x9PD81Z9nrfUhk8D99So27K3WzkAEbECsH/NOeYPkGtc+FlNEy8iHgZ8A1i+6yzSGPgS8NeatQ+k2jV+UIcW1N4GHDvEXGpJZi7IzI9TLcw+dYBDvDkinthwrImXmfOBTYBPAQs6iLA0VROs30bE5yNigw4yNGlP4Fu99+iSJEmSJDXGxgGSJEmSJEnSBIuIucCmhcOuzMxBdlmB8gUPkhbO15Ik6b68LkiaNJ63pA5l5pXAd2uWz7vP/70f9RYhXwucUBhLUkMiYjngOGDVBg53E/ATqsXNbwKeBzyZavfmTYB1gZWB5YClgDmZGXUewK4N5JP6ysw7gE8WDHnhIPNExDLAQQVDvpSZ1w0yl0YjM68BngCcWDh0DnBsRKzRfKrJlpl/ycyDgM2AY+im6V8ABwDnR8S/RcQSHWRYmEEaru0CnBIRTVzzJUmSJEkCbBwgSZIkSZIkTbqtqW7oLPHLIea7a4ixs+i2glp3hpstvpamQ+lNkaXn61EpWfjn7s9SO7wu1Fd6E/Y4nntnecG174+nh+et+jxvqS3za9Y9MyKW7P3fB9cc84XeIs1J5Wc1Tbp3AQ8ZcOwdwPHAvwIPBVbOzMdk5rzMfGtmHpOZJ2bmLzLzD5n558y8MTNvy8y7MjMb+jNITfso9Xc43zMi1htgjv2A1QvqPzbAHBqx3nua/YHTC4euSfVzp4XIzN9n5vOAdYCXAWcAo76GLA38N9XC+5LXblvOBN44wLjtgR9ExJoN55EkSZIkzai5XQeQJEmSJEmSNJTdBxgzTOOAWwvrf5KZjxlivknnwigtSulraffMPKWVJBpG6cKMcV1w5WIUqXteF+obZCFgyXuyURjX68Eo+P54enjeqs/zltrydeA6+u9Ivgawd0ScDTy25rGPGSLXOPCzmiZWRGxGtei/1F+oGg4ck5nXNxpq0WJE80hk5iUR8W3gSTXK5wCHAG8qnOawgtrfZOYZhcdXRzLztojYF/gV1UL3uvaLiGdk5hdbijbxMvM64EPAhyJiXWBP4AnAzsD9RhRjF+DMiNglM68Y0ZwLlZnviIibgfdTdp18OHBaRDw+My9vJZwkSZIkaWbM6TqAJEmSJEmSpKEM0jjgF0PMV7o4ZNYX+5Qs9uh3o7+mi6+l6VC6oGuVNkI0oOT8M26L2KRp4XWhvmk4967SdYAOlfz7rdJWCDXC81Z9nrfUit7uuZ+vWT6v96izeOm3mTnMd0fjYBped+BntVn1Vsrv6zwKeHBm/s8ImwYALDvCuSSAIwpqnx8RtTdXi4iHASVNkI8sqNUYyMyrgQOABYVD3xcRK7QQaepk5hWZ+YnM3D8z1wQ2AQ4GjgZ+3/L0DwJOiYiVW56nr8z8IFXzktKftU2AH0XERs2nkiRJkiTNEhsHSJIkSZIkSRMqIlYCdiwctgA4c9A5M/NuynYwm/WbR68pqF27tRQaRzcV1s/6a2lcXV9Yv2YbIRpQsvPTda2lkGab14X6/lZYP6rd7UqMY6ZRKXl/vExE2FxrfHneqs/zlto0v2bdnlSLl+o4drAoY+X6wvpx/axWksvPalMgIh4A7FM47OWZeVhm3txCpH5m+fqubpwEXFSzdh1g74JjH1ZQezPwmYJ6jYnM/BHw3sJh6wD/3kKcqZeZf8jM+Zl5SGY+lOpzxVOBdwE/Bu5seMqHAp9s+JgDycxPAs8E7iocugFV84BNGw8lSZIkSZoZNg6QJEmSJEmSJtcBwFKFY87IzL8OOe/lBbXjeuP1qPypoHaliFi+tSQaNyWvI/C1NK7+XFi/VisphhARqwBLFwwp/TNLqsfrQn1XFtaP3bmX2f73K3l/DNUCDY0nz1v1ed5SazLz58C5NUrnUq9h4d1Mx0LIif+s1lOSy89q0+G5lN3T+a7ersZdWa3DuTWDMnMBcGTBkFrNACJiWeA5Bcf9fGaWNtLS+HgTcGHhmFdGxIPbCDNLMvOvmXlCZr42Mx8LrArsAbyHeu9p63haROzb0LGGkplfAvalrCE7VN+FnBYRWzefSpIkSZI0C2wcIEmSJEmSJE2ugwcYc0ID815aULtGRJQsSJ02pQujNmklhcZRyesI4AGtpNCwShdmbNxKiuGU3vDqYhSpHV4X6rsauKegfqO2ggyi17BllhdY+f54enjeqs/zlto2v8FjnZSZf2nweF25irLX3dh9VouI+wErFwzxs9p0KFno+Du63wF73Y7n12z6JPUX4e4RERvWqDsAWKUgQ0nzAo2ZzLwdeHHhsKWAt7cQZ6Zl5q2ZeXJmviYzN6f6rvr1VNe4Yfx3RIzFGonMPBHYC7i5cOgawA8iYsfmU0mSJEmSpt1YfCiWJEmSJEmSVCYiNgN2GGBoE40DLiusX7+BOSdV6WKaLVpJoXHk62g6XAksKKh/aFtBhlCa6YpWUkjyulBTb4fJkgWND2kry4BmfSG874+nh+etmjxvaQQ+A9zd0LHmN3ScTg3wuvOzmjoXESsBJTsLvyUz72orT03rdTy/ZlBm/g34Ys3yAA6tUXdYQYSfZ+ZZBfUaQ5n5HeBbhcP2cwf4dmXmHzPznZm5GbAT8M0BD/VgYO/mkg0nM38A7A5cXzh0ZeC7EbFb46EkSZIkSVPNxgGSJEmSJEnSZBpkN6nfZ+b5DcxdutPHVg3MOanOKaz3prPZcTllO8xs1VIODSEz7wQuLhiyeVtZhlCaadjdniQtnNeFMiXnooe1lmIwm3UdoGPnUbYDtO+Px5fnrTKet9SazPwL8J0GDvU34BsNHGdclHwH9tCIWKK1JIPxs9rs2QGo+3N4HfDVFrPUtWXXATSzjiioPTgillzUkxHxcGD7guMdWVCr8fYayj6fBvD2lrLoH2TmjzJzb2AX4JIBDvGsRgMNKTPPBHYFrikcujxwYkQ8uflUkiRJkqRpZeMASZIkSZIkacJExObAMwYY2tQNbT8rrJ/lxT4XADcW1LtryIzo7X74i4Ihm0TEcm3l0VB+U1D7kIhYo7Ukg3l0Qe2dlC2+kVST14Vivy2o3W7MFgI+qusAXcrM2yhb2LhzRHhfwxjyvFXM85badkwDx/hcrznatCj5rLY849fgpOSzGpT9eTWeHlJQ+/3MvKu1JDVExFzGr9mNZkRm/gz4Zc3ytYB9F/P8CwumvgH4QkG9xlhmngd8pnDYnhHxmDbyaOEy81Sq90UXFA7da8w+V5GZZwM7AVcUDl0GOC4iBvndsCRJkiRpBvkLdkmSJEmSJGnyvJ3y7/ZuBj7Z0Py/BBYU1O/a0LwTJzMTOLtgyOYRsVZLcTR+SppwzKG6oUzjp2RxRlC++KM1EbEM8IiCIed3vTBBmnJeF+o7p6B2BWCLtoIMYMeuA4yBswpqV6HsWqXR8rxVn+ctte0bwN+GPMb8BnKMk9KF9OO2CLAkzw2ZeWlrSTQqGxfUlryfasujqBYySl35SEHtYQv7jxGxAvDsguN8OjNvLajX+DscKP2+8/A2gmjRMvPPwJ7A7QXDxu1zFQCZeT7V+7yLCocuCXwuIg5uPpUkSZIkadrYOECSJEmSJEmaIBHxLOApAww9NjNvbCJDZt5M2aKH7SLifk3MPaF+VFAbwNPaCqKxc0Zh/ZNaSaFhley0C+P177g7sHRB/c/bCiIJ8LpQ4szC+j1bSVEoItbDXVmh7P0xwL+0kmI83VNQG62lqM/zVn2et9SqzLwT+PwQhzgnM8dhIXKTJvazWkRsAaxfMKT0zzorJu26ev+C2gtbS1HfHl0H0CJN2s/+oL4AXFuzdteIePBC/vszgRUL5jyyoFYTIDMvprx50m4RsXMLcbQYmXkh8N7CYVu2kWVYmXkJ8Fjgd4VD5wBHR8TLGg8lSZIkSZoqNg6QJEmSJEmSJkRErAN8eICh9wAfajjONwpq5zDbi+FPLKx/TispNI5OoWyHnH0jYom2wmhgpwJ3F9Q/JSLG5fcz+xbWn9JKCkn38rpQU2aeB1xVMGSQxltt2KfrAGPiW0AW1D9rjK6dbbuzoHbJ1lLU53mrJs9bGpH5HY0dS5n5W+AvBUN2iYiV28pTyM9qzZi06+ryBbU3tJaivv27DqBFmrSf/YFk5m3AMTXLAzh0If/9sIIpf5KZ5xbUa3K8HbircMzhbQRRX3Vf8/cqacQ0Upn5Z2An4FeFQwP4QES8oflUkiRJkqRpMSu/XJckSZIkSZImWkQsA3wJWHWA4Udl5u8bjvS1wvqSG/CmzU+BawrqHxURY7kLipqVmTcDJxcMWRd4cktxNKDMvImyHWTXAnZvKU5tEbECZTs4J/C9luJIwuvCAH5QULt9RGzUWpL6ntV1gHHQuzm+5Mb4BzBGu0C3rGSR13KtpajJ81Yxz1tqVWb+EjhngKF3A59pOM64KFlQvyRwQFtB6oqIAJ5bOMzGAQs3UddVyjIsaC1FDRGxI7BJlxm0WJP2sz+Mj1K/Kdm8iFj63v8nIh4BbFsw15ElwTQ5MvNSypso7RwRu7YQR4uRmRcCFxQMWaOtLE3IzL8CuwKnDzD87RHxjoYjSZIkSZKmhI0DJEmSJEmSpDHX213zs8CjBxh+PfCmRgMBmXkWcGnBkK0jYqemc0yCzFwAnFA4zJ1CZsdxhfUvbyWFhvWdwvoXtZKizIHASgX1v8rMkiYokgbjdaG+bxXULmp3yZGJiK2A7bvMMGZKG5HNyvvjmwpqV2krRCHPW/V53tIozB9gzLcy8+qmg4yJ0s9q/9pKijJPADYuqP8rcFZLWSbdpF1X7ymoXbO1FPW8ouP5tXiT9rM/sN4i4u/WLF+D/9tEs6TZ8d+ALxfUa/K8HbircMzhbQRRXyW/mxz75iiZeQOwB4M1gnp9RHyo13hKkiRJkqT/ZeMASZIkSZIkaYxFxFzgE8DTBjzEm3s7VrThE4X172wlxWT4eGH9/hHx8FaSaNx8GbihoH7XiHhCW2E0sM8X1j85IjZrJUkNvWvL/ysc9rk2skj6J14X6vs6cHtB/SERsWJbYWp4VYdzj6NjKFsct0NEzMJO9SVNetZuLUUZz1v1ed7SKHwGuAy4ouBR+v3OJPk6cGtB/cPH4Bz12sL6L/SaVuqfTdp1teRntbPGAb3vM/6lb6G6NGk/+8P6SEHtYQARsRLwzIJx8zPzjqJUmiiZeSnV59QSj42Ix7eRR4tV0vDq7tZSNCgzbwGeTHkTcoCXAJ+MiCWaTSVJkiRJmmQ2DpAkSZIkSZLGVO/mtROBgwc8xE8pu2mu1MeAkpvlHhURz2krzDjLzJ8Cvy4YMgf4qLuETL/eDWFHFw57X0Qs3UYeDaa3u9npBUPmAG9rKU4dzwceXFB/N9UCJEkt87pQX2beSNnu3asDr2wpzmL1Flc9q4u5x1VmXgF8s3DYByNi2TbyjJGSRV4btpaigOet+jxvaRQy8+rMXD8zH1Dw+EbXuduSmTcBxxcOe0dX38f0mhbsUjhsfvNJpsakXVdLmr9u21qK/t6P952Ou0n72R/WidTfgXyniNgUOBBYvuaYBI4aJJgmztuBuwrHHN5GEC3WMgW1N7WWomG95iT/AnxhgOHzgM9FxJKNhpIkSZIkTSy/wJUkSZIkSZLGUERsA5wB7DHgIf4G7J+Zre2mkZnXUL4D9YciYr028kyADxfWP4ryHcE1mT5M2Y67mwHvbCmLBje/sH7fiNi9jSCLExFrAG8tHHZSZl7VRh5JC+V1ob75hfWvjogHthGkj/fj7+YXpvT98YbAu9oIMkYuKajdoq0QA/C8Vd/8wnrPW9Lw5hfWbwMc0kKOxeo1VPmfwmG/zcxftpFnSlxSUDsO19W6C58BntjFzsIRcSAw8u8yVOySgtpx+NkfSmYuoGpyXNdhvUddP8jMP5Sl0iTKzMuAYwqH7dhr/KPR2bigdqK+0+79TvfZwCcGGP504GsRUdJYQZIkSZI0pfwlnyRJkiRJkjRGImLpiHgH8FOqxRSDSODAzPxTc8kW6a3AHQX1KwPHRcQKLeUZZ8cCFxaOeWdE7NRGGI2PzLyY8l1aXx4R7gA6Xj4N/KVwzCciYqU2wizGR4D7FY55dxtBJC2c14Ui3wR+X1C/ImULSoYWEc/DxVULlZmnAKcVDnvJlP+slyxIemxrKQp53irieUsascw8GTi7cNh7Omh8+RZg08IxflZbvJLr6v0j4kGtJamnJO9qDN5wdiARsQlwxCjn1MBKfpa2iYjlWksyOp+g/u8pXghsWXDsI8vjaIK9HbizcMzhbQTRP4uI+wGbFwz5XVtZ2pKZCzLzBVTN3Eo9CfjWjP4OVpIkSZJ0HzYOkCRJkiRJksZARCwVEYcC5wOvB+YOcbh/z8yTmkm2eL0FIu8vHLYtVfOAsd71IiK2iojSG7YXKTPvAv6jcNhcqh1CSm5k1GT6D+CmgvoA5kfEE1vK04iIWCYi9uk6xyhk5u3AewqHrQd8OiKihUj/JCJeQbXzUInTMrN0Uaek4XldqCEzE3hf4bA9I+I1TWVYnN57uA+OYq4J9roBxhwdEY9vPMl4OLegdt2I2KG1JOU8b9XgeUvqzNsK61cCvjKq764iYl+g9HV+EfC5FuJMjcz8K3B1wZD92spS008L698ZESO5/zMiVge+RtXQRuPvfOCemrVLAU9pMctIZOY1wFdqli9dcOirgOOLA2liZeZlwDGFw7aPiL3ayNOFiHhkRKzVdY5FeAGwREH92S3laF1mvpLy97AAuwLfjYhVmk0kSZIkSZokNg6QJEmSJEmSOhQRa0bEK4ELqHYR3GDIQ74lM98xdLAy7wCuLByzO3BKRKzWQp6hRMSWEfFV4Cxgk4YP/wXKbwJejervauuGsxSLiI27zjCtMvNqqt0FSywJnBARz2kh0lB6C6xeyv9v776j7auqe4F/J4giYokl9hpEVCwholEUCz5rIAa77xk18WmwoNEXk5cYg8/+YjR27MaeGFtEFI0dsccCKmhCESso8BMwguB8f6yDEp/APfeecs/v9/mMsQfD4Vl7zd+556y19z5rzjUSGQ5acjiLdHDGguJp7JfpCw5MrarW248ds2AJzAtT+Yckx0/Z5lmTcXFuqupqSd6d5FLz7GfVdfenkrxtymY7Jnl3VS10l91fp6quPOMdWo9OcsoUr//fM+x7Q4xbUzFuweK9I8mRU7bZM8nrq2qa5LSpVdUtk7who6DKNJ7R3efMIaStzRFTvPaxVbW0MbC7T0hy4hRNbprk0XMK5xcmiYcfSDKzAqvMV3efkenGvCfNe6xbkJfO4ZyvmRQEZtvyzCRnT9lma3qGeo8kx1XVC6rqGssO5jxVdc0kfz5FkyO7+7vzimcRuvuvkzxpHU1vneQjVXWlGYcEAADAilA4AAAAAAAWbFIs4EFV9d4k38nYbfBaMzj107r7b2Zwnql094+TPDRJT9l0rySfr6q9Zh7UlGq4Z1V9MMmXk+yf6RdsX6TJ7pIPS/LTKZteKcnhVfWAWce0FlV1rap6eUYiE/PzvCSfmLLNDhmJDC9Y1E6IF6aqrlpVT0vyrYydSq+65JAWqrvPTPLEdTR9QlW9sKpmPu4kSVXdJ2PXtWkXgf9jd394DiEBa2NeWIPuPivT79C7fZK3zXIX8fObLGb/WDZeFGxb8egkJ0/ZZqckh06KsC1cVV2xqp6TkVT+m7M67+R+YZrv/X5VNU3ixLwZt9bAuAWLNxlfH5Xpn13dN8k/VtXFZx9VUlW3TfLBTF+w41OZfjfkbdXHpnjt1ZK8saqm2Y181t4x5eufP8/CMlV1vYziC3vMqw/mZprP/m8neWFVrfR64u4+IrPdXfznSV4xw/OxIrr7W5l+nr1FVe07j3iW5JJJDkxybFW9papus8xgquqyGUXOLjNFs2nn1E2pu/8267uOvXmSj1fV1WceFAAAAJveSj/oAwAAAIDNrqp2qKrdq+oBVfX8qvpyku8neVPGrh0Xm0E35yZ5Unc/ZQbnWpfu/kBGksi0rpvkY5P35vIzDusiVdW1q+rJSb6R5JAkd553n9399SRPXkfTnZK8pareXFUzS066MFW1Z1W9Ocl/JHlEZvN55QJ098+T/Pckp66j+YFJvlhVd5ttVBetqi5WVftW1duSnJDx+d5md7Lp7jcl+dA6mj42yXur6oqziqWqtq+qpyf5p4ykvGlsSfL4WcUCTM+8sHbd/c+ZLjEmSS6e5O1V9VezLNxSVXdM8rkku8zqnFu77j45yQHraLp9kudV1WGTpLa5q6rdqurgjKTyJ2Vco8/au6Z8/bOr6n1Vdbt5FSFaK+PW2hm3YPG6+/Akr1lH03tnFHO8zizjqarHZNw7TpMAlyTnJHnkpBgCF+3dU77+Xkm+VFX3X1IBgTdP+frtM4pb3H/WgVTVAzPmhxvO+twsxLumfP2jkhxRVfeoqmkLT24mL53huQ7r7uNneD5WyzOTnD1lm4PmEMey7ZDkAUk+WVVfrKrHV9WVFxlAVd0gyeEZRU7W6pxsRYU/uvtlSR6S8XvwNHbLKB5w3dlHBQAAwGZmkScAAAAA27SqusMGml88yY5JLjE5LpfkKhk7El4lybWT7JrpkzWn8YMkD+juj86xj7X6yyS3THK7Kdttn5Gc+tCqemGSV3T3d2Yc2y9U1fWT7Jvk9zNiXUZyzfOT7J1kPTuCPTDJParqRUle0N0/nGVgVXW1JPdL8rAkN53lublo3X1iVT04Y2H7tIt0d0vyvqr6cEYhj/dNkrdmrqoumeROGd+l/bMNFwq4AI9I8oWMeWEad09y1KSgyWs28verqr2SvCDJ76zzFAd29/fX2z8wG+aFqTw8yReT7DxFm+2SPD3J3arqwO7+4no7r6orJPk/SR6ZC/9bnZPkyEy34H2r191vr6oXJ3nMOprfJclXq+qVSZ472R1yZiYFzvbPuD5exC6L705yVsY95lrdbXJ8v6o+meSojOIGP0rykyQ/m+Jcp3X3l6Z4/X9h3JqKcQsW788yikZee8p2eyb5clU9I+NZzFnrDaCqds94LrTe4pVP6+4j19v/tqa7j6uqz2Y8s1yr3ZK8NckZVXXeDubHJTk5yekZ8+qaCzdM89y2uz9bVZ9Kcusp4t0xyVur6p5JHtfd6yng8wtV9TuZzDVrePlhSe66kf6Ym48n+V7GbxVrdask701yalUdnjH/H5/kh0nOyHTXlD/t7k9P8fpZeVOSv01y2Rmc6+AZnIMV1d3fqqrXJPmTKZrtUVX36u53zSmsZbv55HhuVf1rxj3fId194jw6mxTQflJGYZNLTtn8H7r7u7OPanm6+w1VdWaSt2T8Pr1W10vyiaq6c3cfPZ/oAAAA2GwUDgAAAABgW/eRZQewAR/PKBrwvWUHkiTdfXZV7ZcR103WcYrLJXlKkr+sqg9kLDp630YWHU12R9o1Y7HtbTKS9a+/3vPNSnf/vKoelLFLys3XcYrLZuyC+cSqOiRjMfOHunvLtCeaJMzcKsntk9wzyS2ynGIKTHT3e6vqkUletc5T3GlynFBVb0/yniRHdPe0OyT9QlX9RkYC+l7nO+axw+5WobuPnSTM/Uum/z5dOckrk/x5Vb00yVvWmsA/+T7fPcmjMz4D6/Wy7n79BtoDM2ReWJvu/veqOjDr20n4tkk+X1WHJnlJxnXVmpJiJsl/D89IKl/LjsH/N8nVIwH313l8xrX6epLPdkzy2CQHTO4l3ppxLzF1ka2q2iHjmnjvjHn1tpk+AX7duvvUqvqHjEJE07pKxs7Y995ACB9LcocNtDdurZFxCxZvMsbeO+N5zI5TNr9MkuckeVxVvSIjIe34tTSczC13THJARsGS9c4r703ytHW23Zb9fZI3r6PdzhkFiu6ywf6nfS7w9Iy/9bQenGT/qnp9kpd091fX2rCqLpNR4PShSfZZY7PDM+YIhQM2ocnz5xdl7Jo+rd/IGKv23UAIJyS5zgbar0t3/6SqXpfkcRs81bezvu8hW5dnJvmjTJekfVBVvbu711xgZgVtnzH23zXJS6vqqIzfBT+Z5FNJjl/vv7+qLp0x7+6b5L5Z3z3bloxC51ud7n7H5HfYd2a6YgpXT/LxqrrLRgoFAgAAsDoUDgAAAACA1fODJH+RsUB5Uy0+6u7TqupuGQtHr7vO01wsyT0mR6rqe0n+Lck3kpyYsVPSmUn+M2N3rx0nx84ZiTJXSXKNjN3Bds10i7oWprvPrKp9M96raXe6O88lMxZP3TfJz6vqqxnv1XEZizO35Jc7jO6YscjqykmulmSXJDfOeI92WP+/hHno7ldX1ZWSPGsDp7l2kidMjrMnC/i+kvHZODHJqRnfo7MyPgPnfZeumPE9umqS30pyw4zPDVPo7kOq6qlJDlrnKXbJ2Gn376rqy0k+k+TojIXLZ2Ts/LpzkiskuUFGEZLbZfrkl1/1yYzETWATMS+sTXe/tqrumJE0Na3tkvze5Di9qj6a8f58M+O9OTNjB/jLZCTA3Cij8NK1pujjaxm7e798HfFt9br73Kq6X5KPZv0Jyr96L/GNJJ9PcmzGbqmnZlwfn53x97xkkt/MuD6+bpLdM+4jNjqfbtRzkjwkI8aVZNxaG+MWLF53f6GqDkjy2nWe4moZ93kHVdUxGfdQR2eMTWdkjEmXyki83TWjuOYdklx6Q4GP7/b/2GzPAlfEP2UUK91t2YGsRXcfWlXvzSjwOa1LZRSoOGDyTPWIjGuhkzPmhi0Zz0p3TnLNjGcPe2Zce01T0OLHGXPXddYRI4vz0ozrqCsuO5AFe1mSA7Ox4riv6u5zZxQPK6q7T6yqV2eMq2t1syT7J3n7fKLalHafHI+a/O8zqurrGddH38n4Te+kjHvxnyY5N2O+ulTGfHTe73k3yLh32+hveo/q7pM2eI5Nq7sPm/wOe0imu768UpKPVNXdu/vT84kOAACAzULhAAAAAABYHeckeVGSg7r7x8sO5oJ093eraq8kh2Yksm7UVTMWyq5nseym1t3frqq9k3woY6HuRmyXsRj9JhsOjE2hu59dVacneWHG33cjLp5kj8nBgnT3U6vq8hmLlderMsbSm88ipovw+ST33MhuvsD8mBfW7OEZSVB32MA5Lp2N77D5q7YkuW93n1W1kfyVrVt3/7iq9kny/iS3nMEpd50cK6W7j62qp2fFd5U2bq2ZcQsWrLtfN7lX+7sNnuoGk2PejkuyT3eftoC+tjqT4kSPSPKxbCyReJEOSPKlJJffwDmumuTek2OWfpbkft19fFVdZ8bnZoa6e0tV/WmSNyw7lkXq7mOq6sNJ9lnnKc5J8qoZhsRqe2aSP850yewHVdU7tuFiPztnFKXZcwl9v6i737yEfhequz9+vmcn01wrXC7JB6tqv+7+yFyCAwAAYFPY6A+zAAAAAMD8nZ7k+Ul26e4nbOaiAefp7u8l2TvJB5cdy2bX3d/KeK+OWnYsbD7d/ZIk98nYSZUV1N2Py9jpbLP7YpK7dPeWZQcCXDDzwkWbFD/5gyRHLjuW8zknyX26+2vLDmQVdPepSe6c5KNLDmXZnp3kfcsOYqOMWxfNuAXL0d3PS/IXy45jDU5IcsfuPnHZgayy7v5EkicvO461mvy9H5zk58uO5Vd0kod292HLDoS16e43JnnlsuNYgpdsoO0h3f2dmUXCSuvubyd59ZTNdk9y3zmEw4V7fZLHLzuIRenuzyW5fZLvT9l05ySHVtU9Zh8VAAAAm4XCAQAAAACweR2f5M+SXGNSMOCEJcczle4+PcndkxyUkXTABZgUWvjdJG9ZdixsPt39zowddzdTIhFT6O5HZSSkbLYF/+d5d5LbTxI1gU3OvHDRJrvx3iHJp5cbSZJxHfxH3f2vyw5klUzuJf5bRgG1bVJ3n5Pkfkk+sOxYNsq4ddGMW7Ac3f2cJH+Y5KfLjuUCHJHkd1ftmeBm1d3PTPKsZcexVt19aJJHZCTrbwbnJvmTbWEn563QozISarcl/5Lk2+ts+/JZBsJW4ZlJzp6yzd9UlTX6i/OiJA/r7s36/H0uuvuojMLk35qy6Y5J3lVV95l9VAAAAGwGHkoAAAAAwOZyfJLnJrlVd1+3u5/b3T9eckzr1t3ndvdTk9wuyTeXHc86nLuojrr7zO5+UJIDkpy5qH5ZDZMFYHtmJM+t2uK3hX2PNrNJQsrvJTll2bGcz7lJnprkDyYJmsCKMC9ctO4+JWPX+vcsor8LcEaS/br7DUuMYWV19znd/YQk+yf50bLjWYbuPiPJPZI8PdMnqmwqxq2LZtyC5Zh83teTcDVvr0hyx+6edhdZLkR3/2WSByQ5admxrEV3vzqjeMCyi7KeluTu3f2KJcfBOkyuqx+S5HEZc/1Wr7vPzRhHp3VcksNmHA4rrru/neRVUza7UZL7zyEc/qszk/xxdx+4rRUNOE93fzPr+w12hyRvraqHzjwoAAAAlk7hAAAAAABYri1J3p/kyUn2nBQL+LPu/uyS45qp7v50kt2TPDHJZt/R+idJXpdkr+5eeMJGdx+c5IZJ3r7ovtfgh8sOYFvW3WdNkudunuSDSw5nLb6S5LFJ9ll2IJtFd78v4/v91mXHkuRLGTtXHtTdm2X3QmAK5oWL1t1nJvn9JP8ryc8W1e/EN5LcfjL2swGT3ep3zUj82WyJAKdnzrtUT4qx/XWSmyZ5Yxb/WZ4Z49ZFM27BcnT35zKeW704y59rjkty1+5+ZHevdNGYzaq7/zHJDTJ2kN5Mxf1+re5+VUYhoWU9l/tcxvODVZi7uRDd/cKMz/5Lsm0Urn1lpr+eeoXnZFyAZyU5a8o2T6mq7ecRzJydtuwA1uhDSW7S3a9ZdiDL1t3fyiiEddSUTbdP8pqqevTsowIAAGCZFA4AAAAAgMU5OcnhGTuTPDbJbye5fHffvbuf0d2fX2p0c9bdZ3f385LskuQZGe/HZnF2kkOS/GGSq3T3w7r7iGUF090ndvd9MhJUPrysOM7nC0n+OMk1lx0ISXcf2d13SXK3jMVxm8lxSZ6TZI/uvll3v7i7T1tyTJtKd5/U3Q9MctckyygS892MHeb23NrnHdhWmBcuXA9/l+RWST6xgC7Pzfg336y7/20B/W0TuvuU7n5kxo7178zykzqPTvKnSa6xqJ2gu/uY7n5wkmtl3E9+OHMuWjAvxq0LZ9yC5eju07v7sUluneUUNzk1yUFJdu/uDyyh/21Kd5/W3X+V8azrgUn+KZu4iMAkaf/GSd6xwG63JHlMRtGAYxbYL3PU3d/t7sckuUbG895Dkpyx3KjmY3KdPs215s+SbPMJyPx63f3tJK+estluGXPMSunuv8+YHx+TcU00bcGEeftiknt29527+7hlB7NZTMa822cU/JlGJXlxVf357KMCAABgWS627AAAAAAAYAWdk7FQ5uzJf887fpzkpMnxg/P999gkR3f3qUuJdpPp7lOSPLmqnpbk/kkenmSvLL7Q6Q+SvD/JoUkO6+4tC+7/InX3h5N8uKr2SPL4JH+QZOcFdf+NjMXIb+jury2oT6bQ3YclOayqdkvy6CT3TXLlBYdxbpLPZHyPDu3uLy64/5U1SQT5QFXdOWNH2Ttn7PAzL1/N2D3ztd292RZ7sjHvSnL8FK//0lyiYOnMCxduEsveVXXvJH+d5GYz7uLsJG9K8rfd/fUZn5uJSVLz/lV1/Yzr4/snucKCuv92xpj7xu7+zIL6/P9MkgFenLGw/+IZBelunuT6SX4ryVWSXDHJ5ZPsmOTi2aRrQ4xbF864BcvR3Z9Ncpeq2jPJk5Lsm+QSc+zyuCQvT/LS7j59jv3wa3T3T5K8Nclbq6oykjxvkWTXjOKnV8+YV6+QZKeMeXWHjCS7Rcd6UpJ7V9XeSZ6e5HZz6uo7SQ5OcnB3/3BOfbBkk8JIr8nYaXr7JDdJskfGNeUuSa6WX15TXjK//OyvjKraMaMQ01q9c/I9gwvyrIyCG9NcFzylqt7S3efOKaa5mBRKeEmSl1TVThkJ6XdJcseM8WLRv+ednXE/fnB3f2TBfa+M7j6lqvbJKAqz95TNn11Vl+7uJ88hNAAAABasunvZMQAAAAAA27iqulKS/ZL8XsbObrNOFjknyTFJvpDk8CSHr2JixGSx4z2S7J+xUOsaMzz9jzLem48meX93Hz3Dc7MAVbVdxvfnXknulLGAb9YLen+Y5MtJPpXxeTlCYsNsVNWVM5If75XkdzMWZW/EzzOKBbw3yVu6+ysbPN9cVNXlMpId1+K07v7S3IKBrYx54cJV1V5JHpFxbXXFdZ7m50k+m+Q9SV7X3d+dUXisUVVdLMk+Se6T5A4ZSU6zcnqSI5J8LKPQmJ3Y58y4deGMW7Ack3uWe0+OvZJcZgan/UaSwzLu1T41g/OxDaqqm2YUZP39JNfa4Om+l+QDGfPDu7v7nDXGcLm4p2eTqqoHJ3n9FE3uJCF546rqoGle391TvX7ZqupBGcVlpvHa7j5hHvEsQ1VdNsltMgpz/M7kuOocujohycczkuDftyr3bQAAALAZKBwAAAAAAGw6VXXNJHsmuVHGwtdrZSTJXzZjd69LZuyeeW6SsybHlowkkJMzdsY6PmPXtmOSfHVr3GG7qq6RkVhzwyTXnRxXT7Jzxvu0U8bOL2fnv75HJ2UsujouydFJvrQ1LVxjqKpLZCze3iPJ9fLL79JvJrlUxvfo/J+Rs5P8JKOIxA+T/CC//Jwcm+RIiUWLUVU7ZCy4vGVGAuT1klwnyeUy/nY7Jdk+4+91ZpIzMnZBPjbJf2TsKP/J7t6y2MiBzcy88OtNEpVvkeS2SW6ccV113vXUpZN0RgL56UlOy0j0+1qSo5J8vLtPXnzUXJBJQbJbJ9k9v7w+vmbG3/K86+Ptk/ws4/r4xxmf8ZPzy8/3MRmJ5f/eFlQslXHr1zNuwfJMvn83zSj2tmvG2HTdjB25d8oYm3bIGIt+knGv9t2MMejYjPnlk76HzFpV7Z6RwLlHxnOEayW5Usbn8hIZ1z1nZDxD2JLx7OCYjDniC9195BLChrmqqk9kXC+txTHdvds844GtWVVdPuO+ZLeM59jXzPhN74oZ10mXzZiPzisMd97veqdn3I+flORbGfPSMRlz0/cW9y8AAACArYvCAQAAAAAAAAAAAADAyquq3ZJ8fYomT+zu580rHgAAAABYpO2WHQAAAAAAAAAAAAAAwAz8zyle+9Mkr5tTHAAAAACwcAoHAAAAAAAAAAAAAAArraoukeQhUzR5W3efMq94AAAAAGDRFA4AAAAAAAAAAAAAAFbdfZJcYYrXHzyvQAAAAABgGaq7lx0DAAAAAAAAAAAAAMC6VdVnktxyjS//SnffbJ7xAAAAAMCibbfsAAAAAAAAAAAAAAAA1quqbpO1Fw1IkpfNKxYAAAAAWJbq7mXHAAAAAAAAAAAAAACwLlX1L0n2XePLT09y9e4+fY4hAQAAAMDCbbfsAAAAAAAAAAAAAAAA1qOq9szaiwYkyasVDQAAAABga1TdvewYAAAAAAAAAAAAAACmVlUfS7L3Gl9+bpJduvv4+UUEAAAAAMux3bIDAAAAAAAAAAAAAACYVlU9NGsvGpAkb1M0AAAAAICtVXX3smMAAAAAAAAAAAAAAFizqtotyWeSXGaNTTrJTbr7q/OLCgAAAACWZ7tlBwAAAAAAAAAAAAAAsFZVdaMk78/aiwYkyT8rGgAAAADA1qy6e9kxAAAAAAAAAAAAAABcqKq6QpIDkjw5ySWmaPqzJDfu7m/OJTAAAAAA2AQutuwAAAAAAAAAAAAAAIBtU1XtluQqF/B/75Tkckl2SXKrJPtkuoIB53mZogEAAAAAbO2qu5cdAwAAAAAAAAAAAACwDaqq1yV5yBy7+F6SG3b3ljn2AQAAAABLt92yAwAAAAAAAAAAAAAAmJPHKBoAAAAAwLZA4QAAAAAAAAAAAAAAYGv0qu5+x7KDAAAAAIBFUDgAAAAAAAAAAAAAANjafCbJgcsOAgAAAAAWReEAAAAAAAAAAAAAAGBrclSS/br7P5cdCAAAAAAsisIBAAAAAAAAAAAAAMDW4j1J9u7uk5YdCAAAAAAsksIBAAAAAAAAAAAAAMCqOyXJg7t7v+4+ddnBAAAAAMCiXWzZAQAAAAAAAAAAAAAArNOXk7w8yRu7+/RlBwMAAAAAy6JwAAAAAAAAAAAAAACwmf0syZYkpyb5UZKvJPl0kk9399eXGRgAAAAAbBbV3cuOAQAAAAAAAAAAAAAAAAAAAFin7ZYdAAAAAAAAAAAAAAAAAAAAALB+CgcAAAAAAAAAAAAAAAAAAADAClM4AAAAAAAAAAAAAAAAAAAAAFaYwgEAAAAAAAAAAAAAAAAAAACwwhQOAAAAAAAAAAAAAAAAAAAAgBWmcAAAAAAAAAAAAAAAAAAAAACsMIUDAAAAAAAAAAAAAAAAAAAAYIUpHAAAAAAAAAAAAAAAAAAAAAArTOEAAAAAAAAAAAAAAAAAAAAAWGEKBwAAAAAAAAAAAAAAAAAAAMAKUzgAAAAAAAAAAAAAAAAAAAAAVpjCAQAAAAAAAAAAAAAAAAAAALDCFA4AAAAAAAAAAAAAAAAAAACAFaZwAAAAAAAAAAAAAAAAAAAAAKwwhQMAAAAAAAAAAAAAAAAAAABghSkcAAAAAAAAAAAAAAAAAAAAACtM4QAAAAAAAAAAAAAAAAAAAABYYQoHAAAAAAAAAAAAAAAAAAAAwApTOAAAAAAAAAAAAAAAAAAAAABWmMIBAAAAAAAAAAAAAAAAAAAAsMIUDgAAAAAAAAAAAAAAAAAAAIAVpnAAAAAAAAAAAAAAAAAAAAAArDCFAwAAAAAAAAAAAAAAAAAAAGCFKRwAAAAAAAAAAAAAAAAAAAAAK0zhAAAAAAAAAAAAAAAAAAAAAFhhCgcAAAAAAAAAAAAAAAAAAADAClM4AAAAAAAAAAAAAAAAAAAAAFaYwgEAAAAAAAAAAAAAAAAAAACwwhQOAAAAAAAAAAAAAAAAAAAAgBWmcAAAAAAAAAAAAAAAAAAAAACsMIUDAAAAAAAAAAAAAAAAAAAAYIUpHAAAAAAAAAAAAAAAAAAAAAArTOEAAAAAAAAAAAAAAAAAAAAAWGEKBwAAAAAAAAAAAAAAAAAAAMAKUzgAAAAAAAAAAAAAAAAAAAAAVpjCAQAAAAAAAAAAAAAAAAAAALDCFA4AAAAAAAAAAAAAAAAAAACAFaZwAAAAAAAAAAAAAAAAAAAAAKyw/wePopscejrvuAAAAABJRU5ErkJggg==" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Plot ROC AUC of calibrated with thresholds at 50% and 20%" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 10, + "source": [ + "onc_plot_roc(\n", + " y_true=calibrated_results.y, \n", + " y_pred=calibrated_results.p_calibrated, \n", + " model_name='./results/mlp_calibrated');" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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ZDgAAAAAAAAAAI4D3d3dWbduXZYuXZpHH300+/fvb0iPiy++OG1tbbn++utz+umnN6QDAAAAAAB8lHfeeScdHR157733Ksnr379/Zs+enbFjx6YoikoyAQDqzXAAAAAAAAAAADRIWZZ58cUX097enoceeijvvvtuQ3qMHj06bW1tmT9/fs4999yGdAAAAAAAgI9TlmVWr16dZ555JmVZVpJ5wQUXZPbs2enXr18leQAAjWI4AAAAAAAAAADq7I033sjSpUvT3t6eV199tSEdhgwZkuuuuy5tbW259NJLfYMSAAAAAADHvaIocvTo0UpGAwYOHJg5c+bknHPOqaAZAEDjGQ4AAAAAAAAAgDrYs2dPHnnkkSxdujSbNm1qSId+/frlc5/7XNra2jJjxoz06uVjAwAAAAAAnFhmzpyZ119/Pfv37//UGePHj8/MmTPTt2/fCpsBADSWTwAAAAAAAAAAQI0cPHgwHR0daW9vz+rVq9PV1VX3Dk1NTbniiivS1taW1tbW9O/fv+4dAAAAAACgKn369MncuXOzdOnSY37voEGD0tLSktGjR9egGQBAYxkOAAAAAAAAAIAKdXV15cknn0x7e3sef/zxHDx4sCE9Jk2alPnz5+e6667LkCFDGtIBAAAAAABq4eyzz86FF16YLVu2fKLni6LIJZdckssvvzy9e/eucTsAgMYwHAAAAAAAAAAAn1FZlnnmmWfS3t6eRx55JHv27GlIj3POOSdtbW2ZP39+xowZ05AOAAAAAABQD1dccUW2b9/+sQO+p512WlpaWnLGGWfUqRkAQGMYDgAAAAAAAACAT+n1119Pe3t72tvbs3379oZ0OP3003P99denra0t48ePT1EUDekBAAAAAAD11K9fv8yZMyePPPLIH3y9KIpcdtllmTZtWpqbm+vcDgCg/gwHAAAAAAAAAMAx2LVrVx566KEsXbo0zz33XEM6DBgwINdcc03a2toyffr0NDU1NaQHAAAAAAA00nnnnZfzzjsv27Zt+w+/PmzYsLS0tGT48OENagYAUH+GAwAAAAAAAADgY+zfvz+/+c1v0t7enrVr16a7u7vuHXr16pUrr7wybW1tmTt3bvr27Vv3DgAAAAAAcLy58sor8+abb+bQoUNpamrK1KlTc9lll6W5ubnR1QAA6spwAAAAAAAAAAD8AUePHs0TTzyRX//6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li1blv3799e9w8SJE7NgwYJcf/31OfXUU+t+HwAAAAAA+GQGDx6c6dOn58knn0ySNDU1ZfLkyZkyZUqam5sb3A4AgGNlOAAAAAAAAADgBPfGG29kyZIlWbx4cd5888263x85cmQWLFiQBQsW5Jxzzqn7fQAAAAAA4NOZOHFitm7dmiRpaWnJsGHDGtwIAIBPy3AAAAAAAAAAwAno0KFDeeihh/KP//iPefnll+t+v3///rn66quzcOHCTJs2LU1NTXXvAAAAAAAAPc2HH36Yfv36VZbX1NSUefPmpV+/fv6sHwDgBGc4AAAAAAAAAOAEcuDAgdx///352c9+lt27d9f1dlEUmT59ehYuXJjPfe5zGTBgQF3vAwAAAABAT1WWZZ555pmsW7cu1113XcaMGVNZtj/vBwA4ORgOAAAAAAAAADgBfPDBB1m0aFF+/vOfZ+/evXW9ffbZZ2fhwoX5/Oc/nzPOOKOutwEAAAAAoKfbs2dPOjs788477yRJOjs7c8stt6R3794NbgYAwPHEcAAAAAAAAADAcWzfvn35p3/6p/ziF7/I+++/X7e7p556aq6//vosXLgwl1xySYqiqNttAAAAAAAg6e7uztNPP53169enq6vrd7/+wQcfZM2aNbnyyisb2A4AgOON4QAAAAAAAACA49Du3bvz85//PPfee28OHDhQl5tNTU2ZM2dOFi5cmDlz5qRPnz51uQsAAAAAAPxHu3btSkdHR959990/+Pqzzz6bsWPHZtSoUXVuBgDA8cpwAAAAAAAAAMBx5N13381Pf/rT3H///Tl06FBdbl500UVZuHBh5s2bl6FDh9blJgAAAAAA8Pu6urqyfv36PP300+nu7v7IZzs7O3PTTTelVy8/IgYAgOEAAAAAAAAAgOPC22+/nX/4h3/Igw8+mMOHD9f83rBhw/L5z38+CxYsyAUXXFDzewAAAAAAwEd755130tnZmT179nyi5/fu3ZunnnoqM2fOrHEzAABOBIYDAAAAAAAAABpo+/btufvuu7N48eJ0dXXV9FafPn1y1VVXZeHChZk5c2aam5treg8AAAAAAPh4R48ezdq1a/PMM8+kLMtjeu+mTZsyduzYDB8+vEbtAAA4URgOAAAAAAAAAGiAV199NX//93+fpUuXpru7u6a3Jk+enAULFuTaa6/NoEGDanoLAAAAAAD45N58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AAD0EG+99VY6Ozuzd+/eT/3+559/PhMmTKi4GQAA1J/hAAAAAAAAAOAz2717dx544IHcf//92bFjR11uzpgxIwsXLsz8+fPT1NRUl5sAAAAAAEDjHTlyJGvWrMmzzz77mbOefPLJnH322TnllFMqaAYAAI1jOAAAAAAAAAD41J599tncc889eeSRR3LkyJGa3xs4cGC+9KUv5ZZbbslZZ51V83sAAAAAAMDxZfv27ens7MwHH3xQSV6fPn2yf/9+wwEAAJzwDAcAAAAAAAAAx+Tw4cNZtmxZ7rnnnkq+yeeTGDt2bG677ba0tbVlwIABdbkJAAAAAAAcPw4dOpTVq1fnxRdfrCzz4osvzsyZM9OnT5/KMgEAoFEMBwAAAAAAAACfyI4dO3L//ffngQceyO7du2t+r6mpKa2trbntttsybdq0FEVR85sAAAAAAMDx59VXX82KFSty4MCBSvJOPfXUtLS05Mwzz6wkDwAAjgeGAwAAAAAAAIA/qizLbNiwIYsWLcpjjz2W7u7umt8cPHhwbrzxxtx0000ZNWpUze8BAAAAAADHp4MHD2bVqlV55ZVXKskriiKXXnpppk+fnt69e1eSCQAAxwvDAQAAAAAAAMDv+fDDD7N06dIsWrQoL730Ul1ujh8/Prfddluuv/769O3bty43AQAAAACA409ZlnnllVeyatWqfPjhh5VkDhkyJC0tLRk5cmQleQAAcLwxHAAAAAAAAAD8zptvvpl77703Dz74YPbt21fze83Nzbn22mtz2223ZeLEiSmKouY3AQAAAACA49f+/fuzfPnyvP7665XkNTU15bLLLsvUqVPT3NxcSSYAAByPDAcAAAAAAABAD1eWZdasWZN77rkny5cvT1mWNb85bNiw3HTTTfnyl7+c008/veb3AAAAAACA41tZlnnxxRezevXqHD58uJLM008/Pa2trRk2bFgleQAAcDwzHAAAAAAAAAA91IEDB7J48eLcc889ee211+pyc9KkSbntttty9dVXp3fv3nW5CQAAAAAAHN/ef//9dHZ25o033qgkr7m5OVOnTs1ll12WpqamSjIBAOB4ZzgAAAAAAAAAepjXXnst99xzTxYvXpwDBw7U/F6fPn0yb9683HbbbRk/fnzN7wEAAAAAACeGsizz7LPPZs2aNTl69GglmSNHjkxra2tOO+20SvIAAOBEYTgAAAAAAAAAeoDu7u6sWLEi99xzT5588sm63Bw5cmRuueWW3HDDDT6cBwAAAAAA/AfvvfdeOjo68s4771SS16tXr1x++eW59NJLUxRFJZkAAHAiMRwAAAAAAAAAJ7F9+/blX/7lX7Jo0aK8+eabdbk5ffr03HbbbWlpaUlzc3NdbgIAAAAAACeG7u7ubNq0KU899VS6uroqyTzzzDPT0tKSU089tZI8AAA4ERkOAAAAAAAAgJPQli1bsmjRovz617/OoUOHan6vX79+WbBgQW677baMHTu25vcAAAAAAIATz65du9LR0ZF33323krw+ffpk1qxZueiii1IURSWZAABwojIcAAAAAAAAACeJo0ePpqOjI/fcc0/Wr19fl5tnnXVWbrnllnzhC1/IoEGD6nITAAAAAAA4sXR1dWXDhg3ZuHFjuru7K8k8++yzM3fu3AwcOLCSPAAAONEZDgAAAAAAAIAT3O7du/PLX/4y9913X3bs2FGXm7Nnz85XvvKVzJo1K01NTXW5CQAAAAAAnJiWLVuW1157rZKsfv36Zfbs2Tn//PNTFEUlmQAAcDIwHAAAAAAAAAAnqOeeey6/+MUv8sgjj+TIkSM1vzdw4MB86Utfys0335yzzz675vcAAAAAAICTw8SJEysZDhg7dmyuvPLK9O/fv4JWAABwcjEcAAAAAAAAACeQw4cPZ9myZVm0aFGeeeaZutwcO3ZsbrvttrS1tWXAgAF1uQkAAAAAAJw8zjzzzFx88cV5/vnnP9X7BwwYkDlz5uTcc8+tthgAAJxEDAcAAAAAAADACWDHjh25//7788ADD2T37t01v9fU1JTW1tbceuutmT59eoqiqPlNAAAAAADg5DVz5sy8/vrr2b9//zG9b9y4cbniiivSt2/fGjUDAICTg+EAAAAAAAAAOE6VZZmnnnoqixYtyuOPP57u7u6a3xw8eHBuvPHG3HTTTRk1alTN7wEAAAAAAD1Dnz59Mnfu3CxduvQTPX/KKadk7ty5Oeuss2rcDAAATg6GAwAAAAAAAOA4c+DAgSxZsiT33ntvtm7dWpebF110UW677bbMmzfPN/YAAAAAAAA1cfbZZ+fCCy/Mli1bPvK5Sy65JDNmzEjv3r3r1AwAAE58hgMAAAAAAADgOLF169bcd999Wbx4cQ4cOFDze83Nzbnmmmvyla98JRMnTkxRFDW/CQAAAAAA9GxXXHFFtm/fnoMHD/7ea4MHD05LS0tGjRrVgGYAAHBiMxwAAAAAAAAADXT06NF0dHRk0aJFeeqpp+pyc9iwYbnpppvy5S9/OaeffnpdbgIAAAAAACRJv379cuWVV2bZsmW/+7WiKDJp0qRMmzYtvXr5cScAAPg0/E4aAAAAAAAAGuDdd9/NAw88kH/+53/Ozp0763Jz0qRJue2223L11Vend+/edbkJAAAAAADwn40dOzbnnXdetm3blqFDh6a1tTXDhw9vdC0AADihGQ4AAAAAAACAOinLMhs2bMi9996bxx57LF1dXTW/2adPn8ybNy+33nprLr744prfAwAAAAAA+CSuvPLKnH766Zk0aVKam5sbXQcAAE54hgMAAAAAAACgxg4cOJD29vbce++9efnll+tyc+TIkbnllltyww035LTTTqvLTQAAAAAA4ORTlmVeeOGFNDc3Z9y4cZXlDhgwIFOmTKksDwAAejrDAQAAAAAAAFAj27Zty7333pvFixfnwIEDdbk5ffr03HbbbWlpafHtPAAAAAAAwGeyb9++dHZ25s0330yfPn0yevToDBw4sNG1AACAP8BwAAAAAAAAAFSoq6srHR0duffee7N27dq63OzXr18WLFiQW2+9Neeff35dbgIAAAAAACevsizzzDPPZO3atTl69GiS5PDhw1m+fHnmzZuXoiga3BAAAPjPDAcAAAAAAABABXbt2pVf/vKXuf/++7Njx4663BwzZkxuvfXWfOELX8igQYPqchMAAAAAADi57dmzJ52dnXnnnXd+77XXX389L7/8ci688MIGNAMAAD6K4QAAAAAAAAD4lMqyzNNPP51Fixblscce+9037tTa7Nmzc9ttt+WKK65IU1NTXW4CAAAAAAAnt+7u7jz99NNZv359urq6/uhzq1atypgxY9K/f/86tgMAAD6O4QAAAAAAAAA4RgcPHkx7e3vuvffebNmypS43Bw0alC996Uv58pe/nLPPPrsuNwEAAAAAgJ7h3XffTUdHR3bt2vWxzx46dCgrV67MtddeW4dmAADAJ2U4AAAAAAAAAD6h1157Lffee29+9atfZf/+/XW5efHFF+eWW27JvHnz0rdv37rcBAAAAAAAeoaurq6sX78+GzduTFmWn/h9W7duzbZt23LeeefVsB0AAHAsDAcAAAAAAADA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r1sBAAAAAICead26dVmyZEle+tKXZuTIkZXl7r///pVlAQAAALBnPskKAAAAAPQpa9asyfnnn59169bVlDN48ODMmzcvf/qnf1pRMwAAAAAAgM61Y8eOLF26NA8++GCSpLm5OW94wxtSX1/fxc0AAAAAeLEMBwAAAAAAfcZPf/rTXHnlldm5c2dNOZMnT861116bMWPGVNQMAAAAAACg85RlmbVr12bp0qXZvn37737+zDPPZOXKlTn11FO7sB0AAAAA+8JwAAAAAADQ67W0tOR//a//le9///s1Z73+9a/P+eefn8bGxgqaAQAAAAAAdK6tW7dm8eLFWbdu3R99fvvtt2f8+PE58MADO7kZAAAAALUwHAAAAAAA9GobN27M+eefn9WrV9eU09DQkAsuuCCve93rKmoGAAAAAADQecqyzP33359ly5alpaVlj+cWLlyYM844I3V1dZ3YEAAAAIBaGA4AAAAAAHqt5ubmXH755dmyZUtNOWPGjMm1116byZMnV9QMAAAAAACg82zZsiWLFi3Kb37zm706//TTT+eOO+7ISSed1MHNAAAAAKiK4QAAAAAAoNdpbW3NF7/4xfzjP/5jzVkveclLctlll2W//faroBkAAAAAAEDnKcsyq1atyooVK7Jr164X9dqVK1fm8MMPz/DhwzuoHQAAAABVMhwAAAAAAPQqTz31VC666KKsXLmyppz6+vp8+MMfzl/91V+lKIqK2gEAAAAAAHSO5557LgsXLsxjjz22T69vbW1Nc3NzXve613mvBAAAAKAHMBwAAAAAAPQat956ay688MJs2rSpppyDDjoo11xzTU444YSKmgEAAAAAAHSOtra23HXXXbnlllvS2tpaU9bjjz+eu+++O8cdd1xF7QAAAADoKIYDAAAAAIAer62tLd/85jfzhS98IW1tbTVlTZs2LVdccUVGjBhRUTsAAAAAAIDOsWnTpixcuDBPPvlkJXn9+/dPQ0NDJVkAAAAAdCzDAQAAAABAj7Z58+bMmzcvzc3NNeUURZF3vetd+du//dvU1dVV1A4AAAAAAKDjtba25vbbb89tt91W88jyfxszZkxmz56d/fbbr5I8AAAAADqW4QAAAAAAoMe69957M3fu3DzyyCM15QwdOjRXXHFFZsyYUVEzAAAAAACAzvHkk09m4cKF2bRpUyV5jY2NmTFjRiZN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AAAAAIYlxQEAAAAArLUeffTRHH300Zk7d26fdxxxxBE5+eSTM2rUqCYmAwAAAAAAhrr9998/Dz/8cJ5//vmGZydNmpTp06dngw02aH4wAAAAAGBYUhwAAAAAwFppzpw5Ofroo/PMM8/0ab6trS0f+chH8ld/9VcppTQ5HQAAAAAAMNS1t7eno6MjP/7xj1Nr7fXMgQcemD333NPPHwAAAACAplIcAAAAAMBa54knnshRRx2Vp556qk/zEyZMyOc+97kcdNBBTU4GAAAAAACsTTbddNPstttuueuuu3o8u9lmm6WjoyPrrbdePyQDAAAAAIYbxQEAAAAArFWefvrpHH300XniiSf6ND958uR84QtfyJZbbtnkZAAAAAAAwNrooIMOyuzZs/PCCy+s8vrIkSMzZcqU7Lrrriml9HM6AAAAAGC4aBvoAAAAAADQLM8880yOOuqoPP74432anz59ev793/9daQAAAAAAANBrI0eOTEdHxyqvbbXVVnnnO9+Z3XbbTWkAAAAAANBSIwY6AAAAAAA0w9y5c3P00Ufn0Ucf7dP8W97ylnzyk59MW5uuTQAAAAAAoDFbbLFFdt5559x3331JktGjR+eQQw7JjjvuqDAAAAAAAOgXigMAAAAAGPKee+65HHPMMXnkkUf6NP+mN71JaQAAAAAAALBGDj744Dz22GOZNGlSpk6dmrFjxw50JAAAAABgGFEcAAAAAMCQ9vzzz+f9739/Zs2a1af5N7zhDTn11FOVBgAAAAAAwDCzaNGipr65f/To0Xnb296mMAAAAAAAGBBeDQ0AAADAkLVgwYK8//3vzwMPPNCn+de//vX5zGc+k/b29iYnAwAAAAAABqtly5blmmuuyX/+53/m+eefb+pupQEAAAAAwEBRHAAAAADAkPTCCy/kAx/4QO6///4+zXd0dOSzn/1sRowY0eRkAAAAAADAYPXYY4/lu9/9bu66664sX748nZ2dqbUOdCwAAAAAgDXmVdEAAAAADDkLFy7Msccem3vuuadP81OnTs3nPve5jBw5ssnJAAAAAACAwWjJkiW5/vrrc9999/3e808++WTuvvvu7L777gOUDAAAAACgORQHAAAAADCkLFq0KMcee2zuvPPOPs0ffPDBOfvsszNq1KgmJwMAAAAAAAajhx9+OFdffXUWLVq0yus33nhjtt5664wfP76fkwEAAAAANE/bQAcAAAAAgN566aWX8k//9E+54447+jR/0EEH5dxzz1UaAAAAAAAAw8BLL72UX/3qV/n5z3/+mqUBSbJs2bJ0dnam1tqP6QAAAAAAmmvEQAcAAAAAgN5YvHhxPvKRj+S2227r0/x+++2XL3zhCxk9enSTkwEAAAAAAINJrTWzZs3KNddck8WLF/dq5vHHH8/999+fnXfeucXpAAAAAABaQ3EAAAAAAIPe0qVLc/zxx+fmm2/u0/w+++yTL33pSxkzZkyTkwEAAAAAAIPJwoULc/XVV+eRRx5pePa6667LlltumXHjxrUgGQAAAABAa7UNdAAAAAAAWJ2lS5fmhBNOyA033NCn+T333DNf+cpXMnbs2CYnAwAAAAAABotaa+69995ccsklfSoNSF7+mcTVV1+dWmuT0wEAAAAAtN6IgQ4AAAAAAK9l2bJlOfnkk3Pttdf2aX633XbLeeedpzQAAAAAAADWYi+88EI6Ozvz+OOPr/GuRx55JLNmzcr222/fhGQAAAAAAP1HcQAAAAAAg9Ly5ctzyimnpLOzs0/zu+yyS7761a9m3XXXbXIyAAAAAABgMKi15q677spNN92UZcuWNWXnJptskg033LApuwAAAAAA+pPiAAAAAAAGna6urnziE5/Ir3/96z7N77TTTjn//PMzYcKEJicDAAAAAAAGg+effz6dnZ158sknm7JvxIgROfDAA7PHHnuklNKUnQAAAAAA/UlxAAAAAACDSnd3dz796U/nl7/8ZZ/mJ0+enPPPPz/rrbdek5MBAAAAAAADrbu7O3fccUduueWWdHV1NWXn5ptvno6ODoXEAAAAAMCQpjgAAAAAgEGju7s7p512Wi6//PI+zW+77ba56KKLssEGGzQ5GQAAAAAAMNDmzp2bzs7OPPPMM03ZN2rUqEyZMiW77LJLSilN2QkAAAAAMFAUBwAAAAAwKHR3d+f000/PZZdd1qf5rbfeOhdddFE23HDDJicDAAAAAAAGUldXV2677bbcfvvt6e7ubsrOrbfeOtOmTcu4ceOasg8AAAAAYKApDgAAAABgwNVa87nPfS4/+tGP+jS/xRZb5KKLLsrGG2/c5GQAAAAAAMBAevrppzNjxozMmzevKftGjx6dQw89NDvssENKKU3ZCQAAAAAwGCgOAAAAAGBA1Vpz9tln53vf+16f5jfffPN87Wtfy6RJk5qcDAAAAAAAGCjLly/PzTffnN/85jeptTZl5+TJkzN16tSss846TdkHAAAAADCYKA4AAAAAYMDUWvPFL34x3/nOd/o0v8kmm+Siiy7Kpptu2uRkAAAAAADAQHniiSfS2dmZ+fPnN2Xf2LFjM3Xq1Gy33XZN2QcAAAAAMBgpDgAAAABgQNRac9555+Xb3/52n+YnTZqUr33ta9l8882bnAwAAAAAABgIy5Ytyw033JC77767aTt32mmnHHLIIRk9enTTdgIAAAAADEaKAwAAAADod7XWXHjhhfnWt77Vp/mNN944F110UbbccssmJwMAAAAAAAbCo48+mquuuiovvvhiU/atu+66mTZtWrbaaqum7AMAAAAAGOwUBwAAAADQ7/7lX/4lF198cZ9mN9xww1x00UXZeuutm5wKAAAAAADob0uWLMl1112X+++/v2k7d9ttt0yZMiUjR45s2k4AAAAAgMFOcQAAAAAA/eriiy/O17/+9T7Nrr/++rnooouy7bbbNjcUAAAAAADQ7x566KFcc801WbRoUVP2rbfeeuno6Mhmm23WlH0AAAAAAEOJ4gAAAAAA+s23vvWtXHDBBX2anTBhQi644IJMnjy5yakAAAAAAID+9NJLL+Waa67JrFmzmrKvlJI999wzBxxwQEaM8NJYAAAAAGB48t1RAAAAAPrFt7/97XzlK1/p0+z48eNzwQUXZKeddmpyKgAAAAAAoL/deuutTSsN2GCDDTJ9+vRMmjSpKfsAAAAAAIYqxQEAAAAAtNx3vvOdfOELX+jT7Lhx43L++ednl112aXIqAAAAAABgIBxwwAF56KGHsmjRoj7vaGtryz777JN999037e3tTUwHAAAAADA0tQ10AAAAAADWbt/73vfy+c9/vk+zY8eOzVe/+tXstttuTU4FAAAAAAAMlNGjR+ewww7r8/zEiRPztre9LQcccIDSAAAAAACAV4wY6AAAAAAArL1++MMf5owzzujT7DrrrJPzzjsve+65Z5NTAQAAAAAAA23bbbfN5MmTM2vWrF7PtLe3Z//9989ee+2VtjafnQUAAAAAsDLFAQAAAAC0xE9+8pOcfvrpfZodPXp0vvzlL2fvvfducioAAAAAAGCwmDp1aubMmZPFixf3eHaTTTbJ9OnTs/7667c+GAAAAADAEKRuFQAAAICmu/zy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2XrrrZuyDwAAAAAAhiPFAWuglLJHXi4L+NskE9K8soDXmv91kguS/KDW2tWHnQPp5rxcHLA64/sjCAAAAPRGV1dXPv7xj+epp55qePbEE0/MHnvs0YJUAAAAAAAwcJYsWZLrr78+9913X9N27rrrrpkyZUpGjRrVtJ0AAAAAADAcKQ5oUClldJK/THJUkoNXPL3SkTUpDFjV7IIk30pyQa313gb3DSZPvsbzJb/7uvtSsAAAAAAtcf755+fGG29seO6II47I2972thYkAgAAAACAgfPYY49lxowZWbhwYVP2TZgwIR0dHdl8882bsg8AAAAAAIY7xQG9VErZJS+XBbw7yfornn7l1zUpC3it+TuSXJjkP2qtzflJy8B6fqADAAAAQG9dccUV+da3vtXw3G677ZaTTz45pejGAwAAAABg7VJrbUppQCkle+yxRw444ICMHDmyCckAAAAAAIBEcUCPSimHJDkzybQVT610eU0KA+qrfl+SLE3yvSTn11qvaXDfYLd8oAOsiVLK6CQ7JdkyyfgkY5MsSvJCkseS3FdrXTpwCQEAAGiWhx56KKeeemrDc+utt17OOuusjBo1qvmhAAAAAABggG211VbZaaedcv/99/d5xwYbbJCOjo5ssskmTUwGAAAAAAAkigN64w1JOlb6/ZqUBbzW/KNJvpbkX2utT/dhJy1QSjk4yV8keVOS3ZO0r+Z4VynlriQ/TfLDWuv1rU84dJRSxieZnuTgJDvn5RKGjfO7EoYlSV585fFokllJHkxye5Ibaq3P9n9qAABgOFq4cGFOOOGELFq0qKG5tra2nHnmmdlss81alAwAAAAAAAbeIYcckscee6zh76OXUrLPPvtkv/32S3v76l6GBQAAAAAA9JXigN5rdmFATfKLJBck+XGttXsNstFEpZS/SnJikv0aGGtPstcrj5NLKbckObvW+l8tiDgklFLGJHlHkv+TZFpW/783Y195TEoyOS+XDKy864EkVya5LMkva60vtiAyAAAwzHV3d+fTn/50HnnkkYZnP/jBD+aggw5qQSoAAAAAABg8Ro8enalTp+YXv/hFr2c22mijTJ8+PRtvvHELkwEAAAAAAIoDGtNoYcCqygaeT/LvSS6stf62CZloklLKLkm+lqSjCev2T/KfpZSjkxxda72vCTuHhFcKA45NcnKSDZu0dodXHn+f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kAMOWP3nvEycODFvf/vbs//++/s+NwAAAAAA0GuKA/i7JCt+ulRWc+6BfsjSKs/1cH1Cv6To+T495RwIvc00u9Z6RbNvXmudm+THPRw7uNn3BQAABt73vve9nHfeeX2a3WOPPXLuuedm1KhRTU4FAAAAAABrbs8998ykSZP+4Pn29vZMmTIlb33rW7PhhhsOQDIAAAAAAGAoUxwwjJVStkxySpLai+P3tDhOK83t4fr6/REiyXo9XO8p50DobaZrW5ihp917lVJGtPD+AABAP7v++utz5pln9ml2++23z1e+8pWMHTu2yakAAAAAAKA5SimZPn162tvb/+e5TTfdNEceeWT23nvvtLV5WR8AAAAAANA4P2EYpkop+yT5ZZINVjzVw8gNLQ3UWs/2cH10KWX9VgYopWyYpKePuhyMxQE9/dmtcH0LM/T0z97oJFu08P4AAEA/mjNnTk455ZTU2puOu9+35ZZb5vzzz8+ECRNakAwAAAAAAJpngw02yL777puRI0dm6tSpectb3pL11uvpc0kAAAAAAABem0/pHkZKKTsmmZbkyCRvyMtlATWrLg1Y+R0aj9Ran2x9wpaZ3YszmyR5voUZNunFmd7k7G+9zXR3CzP0ZvdWSR5pYQYAAKAfLF68OCeccEIWLFjQ8OykSZNywQUXZOONN25BMgAAAAAAhrvu7u50d3dnxIjmveRun332yU477ZR11123aTsBAAAAAIDha60sDiilvDXJW/vxfhf31716qSQZmWRskvWTbJZk6yRjXnUm+f2CgFXtqUkua37E/lNrfbGUMjfJRqs5tk2S+1oYY9serj9da13Ywvv31UO9PPd8CzMsSNKdpG01ZzZs4f0BAIB+UGvNGWeckfvvv7/h2fXWWy/nn39+Nt988xYkAwAAAABguHv22WczY8aMbLLJJjnssMOatretrU1pAAAAAAAA0DRrZXFAkn2SvDerf1N8o8pr/L4keU8T79MKr86e/O7PZlXXXu3SJmYZKA9l9cUBOyb5eQvvv0MP13v7Bv1+9UrpwjNJJvZw9PkWZqillPlJNljNsbGtuj8AANA/Lrnkkvz0pz9teG7s2LE577zzst1227UgFQAAAAAAw1lXV1duueWWzJw5M7XWzJ07N5MnT1ZkCwAAAAAADEqr+wTvtUVpwqM/7tHKR13FY0XuVVm5cOH+WuuV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mpaWlg6dBQAAAAAAALpGU1cHAAAAgM72xS9+MStWrKhp5swzz8yQIUMqSgQAAAAAUL21a9fm1ltvzT333FNzCcCzzz6be+65J4ceemhF6QAAAAAAAIDtoTgAAACAXmXOnDm58cYba5oZP3583vzmN1eUCAAAAACgek8++WSmT5+eF198cZt33Hrrrdlnn32UrAIAAAAAAMAOqKGrAwAAAEBnWbt2bS6++OKaZhobGzN16tQURVFRKgAAAACA6qxevTotLS258cYbt6s0IFn/b6zTp0+vUzIAAAAAAACgnpq6OgAAAAB0lp/85Cd55JFHapp573vfmzFjxlSUCAAAAACgOo899lhmzJiRlStX1mXf0KFDM27cuLrsAgAAAAAAAOpLcQAAAAC9woIFC/LNb36zppldd901H/7whytKBAAAAABQjVWrVmXmzJl5+OGH67KvKIocdthhmTBhQvr06VOXnQAAAAAAAEB9devigKIo3r8tc2VZfr8zrtPT1PrfDQAAYEfyhS98IS+99FJNM+ecc04GDhxYUSIAAAAAgPoqyzKPPPJIbrrpppr/PXRzRowYkebm5uy222512QcAAAAAAABUo1sXByS5Kkm5DXO13gC/rdfpaRQHAAAA3dKvf/3r/P73v69p5rjjjstrXvOaihIBAAAAANTXihUrMmPGjPzxj3+sy76iKDJu3LiMHz8+jY2NddkJAAAAAAAAVKe7Fwe0K2o4uz0FALVcp6dRnAAAAHRLK1asyP/+3/+7ppm+ffvmvPPOS1H05h8DAQAAAIDuoCzL3H///bn55puzZs2auuzceeedM2XKlOy000512QcAAAAAAABUr6cUB3T0pvbtveOjt948704ZAACg2/rOd75T88xpp52Wvffeu4I0AAAAAAD18+KLL2batGl56qmn6rKvsbEx48ePzxFHHJGGhoa67AQAAAAAAAA6R08pDujIje31uOm/N95A31vLEgAAgB7goYceyo9+9KOaZvbYY4+cfvrp1QQCAAAAAKiDsixz991357bbbsvatWvrsnO33XZLc3NzRowYUZd9AAAAAAAAQOfqKcUBAAAA8DJtbW258MIL09raWtPc+eefn379+lWUCgAAAABg+7zwwguZNm1ann322brsa2pqytFHH53DDjssRdEbf6cGAAAAAAAA9AyKAwAAAOiRfvnLX+bOO++saebEE0/MCSecUFEiAAAAAIBt19bWljvvvDNz5sypuTB1c/bYY480Nzdn6NChddkHAAAAAAAAdB3FAQAAAPQ4ixcvzpe//OWaZvr375+zzz67okQAAAAAANtu0aJFmTZtWhYuXFiXfX379s3EiRNz0EEHpSiKuuwEAAAAAAAAupbiAAAAAHqcyy+/PMuWLatp5oMf/GBGjRpVUSIAAAAAgNq1trZm7ty5mTdvXtra2uqyc5999snkyZMzaNCguuwDAAAAAAAAdgw9pTig7GHXAQAAYBvddtttufHGG2uee//7319BGgAAAACAbfPcc8+lpaUlS5Ysqcu+fv365fjjj8/++++foijqshMAAAAAAADYcfSE4oDOeifTO6YAAAA7uDVr1uQ//uM/ap775je/maamnvAjMgAAAADQ3a1bty6zZ8/O/PnzU5b1+R0XY8aMyQknnJABAwbUZR8AAAAAAACw4+nud0V8r4ddBwAAgO3wve99L48//nhNM6eeemrGjx9fUSIAAAAAgNo8//zzufPOO+uya+DAgTnhhBMyevTouuwDAAAAAAAAdlzdujigLMsP9KTrAAAAsO0ef/zxXHnllTXN7LTTTjnjjDMqSgQAAAAAULvdd989hxxySO65557t2nPggQfmuOOOS79+/eqUDAAAAAAAANiRdeviAAAAAEiSsixz0UUXZc2aNTXNnX322Rk8eHBFqQAAAAAAts0xxxyTxx9/PMuXL695dvDgwZk8eXL23nvvCpIBAAAAAAAAO6qGrg4AAAAA2+s3v/lNbr311ppmjj322LzhDW+oKBEAAAAAwLbr27dvJk+eXPPcIYccklNPPVVpAAAAAAAAAPRCTV0dAAAAALbHsmXLcumll9Y007dv30ydOjVFUVSUCgAAAABg++y999458MAD88ADD2z17LBhw9Lc3JxRo0Z1QjIAAAAAAABgR6Q4AAAAgG7tK1/5ShYvXlzTzIc+9KHstddeFSUCAAAAAKiP4447Lk888URWrVq1ydeLosjYsWMzYcKENDX5GBAAAAAAAAD0Zg1dHQAAAAC21fz583PttdfWNPOqV70q73vf+ypKBAAAAABQP/369cukSZM2+dqIESPytre9Lccee6zSAAAAAAAAACDeNQQAAKBbWrduXS688MKUZVnT3AUXXJC+fftWlAoAAAAAoL5Gjx6d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AADoSooDtmxgB87UtTggydFJGrO+OKDYytn/qvO1H9jK60USv2YBAAA60Zo1a/K5z32uppm+ffvmnHPOqSgRAAAAAHSesixz33335ZZbbsmaNWvqsnOXXXZJc3Nzdtppp7rsAwAAAAAAAIAdgeKALetIcUC9f/XAcVt4rdzo64VlWd5T52s/v5VrF0l2rvM1AQCALfje976XJ598sqaZD3zgA9lzzz0rSgQAAAAAnWPZsmWZNm1ann766brsa2xszFFHHZXDDz88DQ0NddkJAAAAAAAAADsKxQHbr2+d9x27ldeLrL+Jf3qdr5skKzpwZkAF1wUAADbhqaeeypVXXlnTzF577ZXTTjutokQAAAAAUL2yLHPXXXfltttuy7p16+qyc7fddsuUKVMyfPjwuuwDAAAAAAAAgB2N4oAtW51k4FbODKvzNY/P+mKArZlZ5+smyfIOnKl3UQIAALAZl19+edasWVPTzHnnnZe+ff3fdgAAAAC6pyVLlmTatGlZsGBBXfb16dMnRx99dA499NAURVGXnQAAAAAAAACwI1IcsGUdKQ4YUa+LFUVxUJKdsr44YGufWLipXtfdyOoOnHEHEgAAdIK5c+fmD3/4Q00zr3nNa3L88cdXlAgAAAAAqtPW1pY77rgjt99+e1pbW+uyc88990xzc3OGDBlSl30AAAAAAAAAsCNTHLBlS7P1YoC96ni9127htXKjr1clmVPH67br14Ez9fmEBgAAsFltbW257LLLaprp169fzj777IoSAQAAAEB1Fi1alJaWljz//PN12de3b98ce+yxefWrX52i2FpnPwAAAAAAAAD0DIoDtmxhktF5+U37rzS6jtd73VZeLzZkua0syypu4O/fgTNrK7guAACwkd/+9re55557apr58Ic/nN13372iRAAAAABQnaVLl9atNGDffffNpEmTMmjQoLrsAwAAAAAAAIDuQnHAli3YyutFksPqcaGiKJqSvD5bLilod1M9rrkJQzpwZlVF1wYAAJKsXr06V1xxRU0z++67b/7+7/++okQAAAAAUK3Ro0fnVa96VR577LFt3tG/f/8cf/zx2W+//VIURf3CAQAAAAAAAEA3oThgyx7Zwmtl1hcHHFwUxeCyLJdv57Vek/U37rfv3ZIZ23mtzRnVgTNLKro2AACQ5Kc//WmeffbZmmbOO++89OnTp6JE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aSgRAAAAwLZp0qRJOfXUUwedmzhxYt72trflrW99q9IAAAAAAAAAAIAGjBnqAAAAAO2aP39+Fi9e3PL8hAkT8uEPf7jBRAAAAADbrkMOOSSLFy/OY489ttnrp512WsaPH9/lZAAAAAAAAAAA246eoQ4AAADQjlprvvSlL7V1Zs6cOdlhhx2aCQQAAACwjSulZObMmRk7duzrXp8yZUre8Y535Mwzz1QaAAAAAAAAAADQMMUBAADAiHLdddflrrvuanl+3Lhx+djHPtZgIgAAAACmTp2ak08++VdfH3HEEZkzZ0722WefIUwFAAAAAAAAALDtGDPUAQAAANrx5S9/ua3597znPdlll10aSgMAAADABkcccUSeffbZHHroodljjz2GOg4AAAAAAAAAwDalZ6gDAAAAtOrmm2/OTTfd1PJ8b29vzj///AYTAQAAAIxMK1asyB133NHRnaWUnHnmmUoDAAAAAAAAAACGwJihDgAAANCqL3/5y23Nv/Od7/SD6gAAAAD91FqzePHiLFy4MK+++mqmTJmS/ffff6hjAQAAAAAAAACwlRQHAAAAI8Jdd92VRYsWtTxfSslFF13UYCIAAACAkWXZsmVZsGBBlixZ8qvXFixYkD322CPjx48fwmQAAAAAAAAAAGytnqEOAAAA0IqLL764rfm3ve1t2XfffRtKAwAAADBy1Fpzzz335LLLLntdaUCSLF++vK2yRgAAAAAAAAAAhqcxQx0AAABgMIsXL87Pfvazts5cdNFFDaUBAAAAGDlefvnlzJs3L48//vhmZ+67774ceOCB2WeffbqYDAAAAAAAAACATuoZ6gAAAACDufjii9uanzVrVg4++OCG0gAAAAAMf7XW3HHHHbnssssGLA3YYP78+Vm9enUXkgEAAAAAAAAA0IQxQx2AdUopk5LslmRiv4/ejedqrfO6HA0AAIbUo48+mp/85CdtnfnkJz/ZUBoAAACA4e/FF1/M3Llz8/TTT7d85pVXXsn111+f008/vcFkAAAAAAAAAAA0RXFAl5VS9khyUpLjkxyXZHqSvZNs18LxGv83AwBgG3PJJZekr6+v5flTTjklRx55ZIOJAAAAAIanvr6+3Hbbbbnxxhuzdu3ats/feeedmT59evbYY48G0gEAAAAAAAAA0CQPoXdBKWVGkl9P8o4kR218ufuJAABgZHjqqady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h+fuu+9+3esHHHBATj/99EyaNGmIkgEAAAAAAAAAAIxcigMAAGAI1Vpz8cUXt3XmQx/6kIcoAAAAGNFOOeWUPPLII1m2bFkmTpyY008/PdOnTx/qWAAAAAAAAAAAACOW4gAAABhCN9xwQ+66666W5ydOnJgPfvCDDSYCAACA5o0bNy4zZ87M4sWLc9ppp2XChAlDHQkAAAAAAAAAAGBEUxwAAABD6JJLLmlr/n3ve1+23377ZsIAAADAZjz22GOZMmVKdthhh47t3HfffbPvvvt2bB8AAAAAAAAAAMC2THEAAAAMkbvuuivXX399y/NjxozJxz72sQYTAQAAwOutXLky1157be69995MmzYtv/7rv55SylDHAgAAAAAAAAAAYCOKAwAAYIhcfPHFbc2fc8452W233RpKAwAAAK+3ZMmSzJ8/P8uXL0+SPP3007njjjvypje9aYiTAQAAAAAAAAAAsDHFAQAAMAQeeuih/OxnP2t5vpSSCy64oMFEAAAAsM6KFSuycOHCLF68+A3Xbrjhhuy3337ZbrvthiAZAAAAAAAAAAAAm9Mz1AEAAGBb9JWvfKWt+be85S3Zd999G0oDAAAASa01ixcvzmWXXbbJ0oAkWbNmTebNm5daa5fTAQAAAAAAAAAAMJAxQx0AAAC2NU899VR+9KMftXXmoosuaigNAAAAJMuWLcuCBQuyZMmSQWefeOKJ3HPPPTn88MO7kAwAAAAAAAAAAIBWKA4AAIAu++pXv5q1a9e2PH/aaafl0EMPbTARAAAA26paa+67774sWrQoq1atavnctddem3333TeTJ09uMB0AAAAAAAAAAACt6hnqAAAAsC15/vnn861vfautMxdddFFDaQAAANiWvfzyy/nhD3+YuXPntlUakCSrV6/O/PnzU2ttKB0AAAAAAAAAAADtGDPUAQAAYFvyqU99qq35o48+Oscdd1xDaQAAANgW1Vpz55135oYbbsjq1au3eM8jjzySBx54IAcffHAH0wEAAAAAAAAAALAlFAcAAECXPPPMM7n//vvbOnPhhRemlNJQIgAAALY1L774YubNm5ennnqqI/tuuOGGHHjggenp6enIPgAAAAAAAAAAALaM4gAAAOiSj33sY23NH3jggTnjjDMaSgMAAMC2pK+vL7fddltuvPHGrF27tiM799xzz8yaNUtpAAAAAAAA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AAAAAABAR/Tss8/G3//93xd0zec///mYPXt2RomKL5/Px+c///kYPXp0bNu2rdRxAAAAACgyxQEAQLuzadOmaGlpST0/YcKEDNMAFEd9fX0sXLiwaD+Yz+VyMXHixJg6dWqUlZUVZScAAAAAAAAAdFQf+9jHorm5OfX87/7u78b73ve+DBNl5wMf+EAcPny41DEAAAAAKDLFAQBAu7N27drUs3379o3hw4dnmAbg4iRJEs8991zU1dVFQ0NDUXYOGDAgampqYuDAgUXZBwAAAAAAAAAd2fLly+PBBx9MPT9w4MD4+7//+wwTZa9fv36ljvCqDh8+HD/5yU9izZo1sWHDhnj++efjyJEjcezYsTh16lR069YtevToEYMHD45Ro0bF1VdfHbNmzYo5c+bEoEGDSh3/orS0tMSuXbti586dceDAgTh06FCcPn06GhoaIp/PR/fu3aN79+6/fE/c8OHDo3///qWOXTIbN26M+fPnx/r162P9+vWxc+fOOHbsWBw7diyam5ujZ8+e0atXr7j88stj5MiRMXHixJg9e3Zcf/31UVFRUer4RdfU1BQ7duyIl156KQ4cOBD19fVx6tSpaGxsjJ49e0afPn2id+/e0bt377j00kvjsssuK3Xki3bixInYunVrvPzyy3H8+PGor6+P+vr66NKlS/Ts2TN69uwZl156aVxxxRUxYMCAUscFAABoFYoDAIB2Z926dalnJ0yYELlcLsM0ABfu+PHjsWDBgtixY0dR9pWVlcXkyZNj0qRJkc/ni7ITAAAAAAAAADq6T3ziEwXNf+Yzn2mzN963R6dPn45vfOMb8R//8R+xYMGCaGpqOuvsyZMn4+TJk7F///5Yv359RET8n//zfyKfz8ecOXPid37nd+Ltb397dO/evbXiX5CDBw9GXV1drFy5MtauXRvr16+PrVu3RmNjY0F7+vfvH5MnT44pU6bEDTfcEPPmzWtTX/s73vGO+PrXv37euX/913+Nd7zjHeed27p1a3zlK1+Jhx56KLZs2XLO2aNHj8bRo0dj586dsWTJkvj2t78dERGVlZXxxje+Md75zndGTU1Nqq+jLVq5cmUsWrQo6urqYtmyZbFt27Zobm5OfX2vXr1i7NixMXbs2JgwYULceOONMXHixDb7fsumpqZYtGhRLFy4MBYtWhQrVqyI/fv3p76+b9++UVVV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o6J///7Rs2fPOHPmTBw7diy2bdsWq1evjmeffTaSJCk4yze+8Y2466674o1vfGPB116or33ta/He9743WlpaWu3MUlu6dGnceuutceTIkVJHeYWDBw/Ga17zmliwYEGMHTu21HEAAABSUxwAALQb69atSz3bt2/fuPTSSzNMA1CY2bNnx65du6KhoSH1Nd27d485c+b4xAIAAAAAAAAAKLIFCxYUNH/DDTdkE6SD+9rXvhbf+ta3zjkzdOjQeNvb3hZvfvObY/LkyZHP588539jYGD/60Y/iy1/+cvzkJz8pKM8jjzwSP/vZz+LGG28s6Los5HK5uOaaa2LKlCkxZsyYuPrqq2P48OExaNCgGDBgQHTr1i26desWDQ0NcfTo0Th69GgcOXIkNmzYECtXrowVK1bE6tWr48yZMwWf/cUvfjFmzZoVb3nLWzL4ygrX3Nwcv/M7vxP79+8/59zs2bPjrW99a9x5550xdOjQ8+7dvXt33H///fH5z38+duzYUVCmP/3TP43Xve51UVFRUdB1F+Lf//3f4z3vec8FX5/P52Pq1Kkxe/bsmDZtWowaNSpGjBgRvXr1ip49e0ZLS0ucOnUqjhw5Ejt37oxt27bF+vXrY82aNbFo0aI4evRoEb+adNauXRs33XRT6qKI33T11VfHjTfeGNOmTYurr746Lr/88ujXr1907949mpub48SJE7F9+/Z47rnnYtGiRfGjH/0onn/++YLOOHjwYLzxjW+MZcuWRWVl5QXlBAAAaG25C2nQA6BwuVxuZkQs/tXHFi9eHDNnzixRImh//vRP/zR18/TcuXPjc5/7XLaBAAr0/PPPx1NPPZVq9qqrropZs2a1yg8fAQAAAAAAuHjbtm17xacfd+/ePUaOHFmaQACc0wc+8IH40pe+lGq2V69ecfjw4Sgv95ltERFPP/10zJs377xzI0aMiH379r3iz8dfGDBgQHzyk5+M3//937/g90f8+Mc/jne/+92xffv21NdMnz49li5dekHnpTFt2rRYuXLlqz53zTXXxK233hq33nprzJw5M/r06XNRZx04cCC+8Y1vxD//8z/Hxo0bC7r2kksuiY0bN8bAgQMvKsO5vOMd74ivf/3r550bO3ZsbNq06azPz5kzJ/7u7/7ugt9z29DQEJ/85CfjM5/5TDQ3N6e+7itf+Ur84R/+4QWdmdb8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Ah6PR8uXL9fdd9+tunXrasyYMY4NDPhfbdu21bvvvmvrmlOnTmnEiBFq27atJk+erMzMTMd7eTwerVu3Ti+//LLatWun5s2b669//auOHTvm+F4AAAAA4KYAXxcAAABl2+bNm42z1apV4x8wgGLkzJkziouL08mTJ42vyc/PV3x8vK699lr5+THHDAAAAAAAAAAAAAAAFG+PPfaYKlSooHvvvbdQB3T37t2rRx99VI899pg6d+6svn37qmvXrurcubMqV65say2Px6N9+/ZpyZIliouL0+LFi7Vv3z7bneC8e+65R3//+99t3VBj8uTJ+vbbbzVixAiNHj1abdu2LfD9NFlZWVq+fLkmT56sL7/8UqmpqRfNBwYG6vPPP9f1119v3Ave9dlnnykpKUkJCQm2rktISNCgQYMUFRWlYcOGaeDAgerQoYOCgoKM19i7d6+WLl2qxYsX64cfftDx48ft1i+UMWPG6PDhw3rppZdsXbd582YNHz5c9913nwYNGqT+/fsrNjZWNWvWtN0hOTlZW7du1apVq7Ry5UotWbLEa48fAAAAANzE4AAAAOBTdgYHtGrVSpZludgGgIm8vDxt2LBB69evV35+vu3rT548qc2bN6tNmzYutAMAAAAAAAAAAAAAAHDWPffco8qVK2v06NFKT08v1Boej0crV67UypUrJUmWZalu3bqKiopSZGSkatasqXLlyqlcuXIKDg5Wenq6UlNTlZqaqiNHjmjPnj3as2ePMjIynHxocEjlypX1yiuvaMyYMbauS09P14cffqgPP/xQFStW1KWXXqro6GhVqVJFlStXVn5+vlJTU3Xw4EHt3r1b69ats3W39RdeeEHt27e3+3DgRaGhoZo5c6Z69Oih3bt3275+3759evXVV/Xqq68qJCRErVq1UsOGDVW/fn1VqFBB5cqVU35+vjIzM5WcnKwjR45o//792rZtm1JSUlx4RGZefPFFnT59Wh988IHta5OTkzVhwgRNmDBBklS3bl3FxMQoIiJCdevWVVhYmEJCQuTxeJSVlaXMzEydPn1ax48f17Fjx7R7925bN8sBAAAAgJKEwQEAAMBnPB6PtmzZYpxv1aqVi20AmDh58qTi4uJ05syZIq2zZs0aRUZGqlKlSg41AwAAAAAAAAAAAAAAcM/NN9+s1q1ba+jQodqxY0eR1/N4PDp8+LAOHz6spUuXOtDQnsLcoRsXN3r0aM2cOVOzZ88u1PXnz5/XvHnzHOtz22236YknnnBsPbindu3aWrJkifr06WPrPZW/lZmZqYSEBCUkJDjYzj3vv/++qlevrhdffLFI6xw5ckRHjhxxqBUAAAAAlGx+vi4AAADKrqNHj9o6fMzgAMB3cnNztWrVKs2YMaPIQwMkKS8vT3v27HGgGQAAAAAAAAAAAAAAgHe0bNlSa9as0ciRI31dpdCioqL07bff6sknn/R1lVLHsix99tlnatq0qa+r6Oqrr9bHH3/s6xqwoVatWoqLi1NsbKyvq3jVCy+8oHHjxikkJMTXVQAAAACgVGBwAAAA8JnNmzcbZ/38/BQTE+NiGwAXcuzYMX399dfauHGjPB5PkdcLDQ1Vnz591L59ewfaAQAAAAAAAAAAAAAAeE9YWJgmTpyoRYsWqWXLlr6uY6x69er629/+pm3btmnQoEG+rlNqVa1aVQsWLFBUVJTPOtx66636+uuvFRAQ4LMOKJyqVatq4cKFeuyxx2RZlq/reM0dd9yhhIQEtW7d2tdVAAAAAKDEY3AAAADwGTuDAxo1aqTQ0FAX2wD4rZycHC1btkyzZs3SuXPnHFmzcePGGjp0qBo2bFim/nELAAAAAAAAAAAAAACULpdffrk2bNigf/zjH6pdu7av61xQzZo19dprr2n//v16/PHHuau3F0RERGjFihXq1KmTV/f18/PTK6+8os8++0zBwcFe3RvO8ff316uvvqoFCxaoWbNmvq7jNS1bttTq1av1/PPPKywszNd1/lB4eLgeeOABX9cAAAAAgIticAAAAPAZO4MDWrVq5WITAL91+PBhTZ8+XVu3bpXH4ynyemFhYbryyivVs2dP/gEaAAAAAAAAAAAAAACUCv7+/rrvvvuUlJSkCRMmFKv3OHXv3l2TJ0/WwYMH9eijjxbbg7ilVa1atRQfH6+HH35Yfn7uv2X/kksu0erVq/XEE0+4vhe8o1evXtq0aZNee+01VatWzScd/P39de211+rLL7/0yn7BwcF67rnntHv3bo0aNUpBQUFe2fdiwsLCNGzYMM2aNUtJSUl6+umnfV0JAAAAAC6KwQEAAMAnsrOztXPnTuN8cfpHNaA0y8rKUlxcnGbPnq2UlBRH1oyJidHQoUNVv359R9YDAAAAAAAAAAAAAAAoToKCgnTbbbdp06ZNWrx4se655x7VqVPH6z3atm2rl156STt27FB8fLxuvvnmYnHwtqwKDg7WG2+8oTVr1qhv376u7NGyZUuNGzdOK1euVIcOHVzZA74TGBioRx99VAcOHNB7772nRo0aeWXf6Ohovfjiizpw4IBmzJihfv36eWXf/6hTp44+/vhjHTx4UC+99JIiIiK8un/NmjV166236quvvtKJEyc0depUDRgwQP7+/l7tAQAAAACFYTlx91AAQMEsy+oiafn/fmz58uXq0qWLjxoBvrVp0ybdcccdxvmvv/5aDRo0cLERgKSkJC1dulRpaWmOrFehQgX16NFD4eHhjqwHAAAAAAAAAAAAFGf79+9XRkbGrz4WGhqqyMhI3xQCAPhUfn6+li1bprlz52rFihVas2aNYzdx+I/69esrNjZWsbGx6t27N19zirkNGzboo48+0jfffKMTJ04Uep06deqob9++uvXWW9W7d2+jayZPnmz09++WW25RhQoVCt0N7ktISNBXX32lWbNm2bp508WUL19ePXv2VL9+/dS3b181btzYkXWd4vF4tGrVKn333XeaPXu2tm7dqvz8fMfWDw8PV+fOndW9e3f16NFD7dq1k2VZjq0PAAAAlBWl/WfkK1asUNeuXX/74a4ej2eFL/pcCIMDAMBLGBwA/NqUKVP097//3ShbsWJFLViwQH5+fi63AsqmjIwMLV++XImJiY6sZ1mWWrZsqY4dOyowMNCRNQEAAAAAAAAAAIDirrS/KRIAUDT5+fnaunWrNm/erH379mn//v1KSkrSkSNHlJqaqvT0dKWnpysjI0N+fn4KDQ1VSEiIKlSooNq1a6tOnToKDw9XkyZN1KJFC7Vs2VLVq1f39cNCIeTn5yshIUErVqzQunXrlJiYqIMHD+rs2bO/vJYICwtT+fLlVbFiRUVFRalJkyZq1qyZunTpotatW/v4EaC4OH369C9/j/bu3av9+/fr0KFDSklJUVpamjIyMhQUFKQKFSqofPnyqlChgipVqqSoqCjFxMSoWbNmatasmRo1aqSAgABfPxxjqampWrt2rdauXas9e/bowIEDOnjwoE6fPv3L82hWVpYCAgIUHByscuXKqWrVqqpevbpq166tqKgoRUVFqWnTpmrTpo2qVavm64cEAAAAlAql/WfkJWVwQMn57g4AAJQqmzdvNs62bNmSoQGACzwej/bu3atly5YpMzPTkTUrV66s2NhY1apVy5H1AAAAAAAAAAAAAAAASgM/Pz+1atVKrVq18nUV+Jifn586d+6szp07+7oKSrhq1appwIABGjBggK+reFX58uUVGxur2NhYX1cBAAAAgGKHwQEAAMAn7A4OAOCstLQ0LV26VElJSY6sZ1mW2rZtq/bt28vf39+RNQEAAAAAAAAAAAAAAAAAAAAAAACYYXAAAADwupMnT+rYsWPGeaZsA87xeDzatWuXVqxYoezsbEfWrFatmmJjY1W9enVH1gMAAAAAAAAAAAAAAAAAAAAAAABgD4MDAACA123ZssVWvkWLFi41AcqWlJQUxcfH6/Dhw46s5+/vr/bt26tNmzby8/NzZE0AAAAAAAAAAAAAAAAAAAAAAAAA9jE4AAAAeN3mzZuNs5GRkapYsaKLbYDSz+PxaNu2bVq9erVycnIcWbNmzZqKjY1VlSpVHFkPAAAAAAAAAAAAAAAAAAAAAAAAQOExOAAAAHjdli1bjLOtWrVysQlQ+p07d05xcXE6duyYI+sFBATokksuUcuWLWVZliNrAgAAAAAAAAAAAAAAAAAAAAAAACgaBgcAAACvysvL09atW43zDA4ACm/Xrl1asmSJ8vLyHFmvbt266tGjhypWrOjIegAAAAAAAAAAAAAAAAAAAAAAAACcweAAAADgVXv27FFWVpZxvmXLli62AUq3KlWqKD8/v8jrBAYG6tJLL1WzZs1kWZYDzQAAAAAAAAAAAAAAAAAAAAAAAAA4icEBAADAqzZv3mycDQ0NVXR0tIttgNKtRo0aatWqlTZt2lToNerVq6fu3burfPnyDjYDAAAAAAAAAAAAAAAAAAAAAAAA4CQGBwAAAK+yMzigefPm8vf3d7ENUPp17NhRSUlJOnfunK3rgoOD1bVrVzVq1EiWZbnUDgAAAAAAAAAAAAAAAAAAAAAAAIAT/HxdAAAAlC12Bge0atXKxSZA2RAQEKAePXrYuiYqKko33HCDGjduzNAAAAAAAAAAAAAAAAAAAAAAAAAAoAQI8HUBAABQdpw7d04HDhwwzjM4AHBGnTp11Lx5c23btu2iudDQUHXr1k1RUVFeagYAAAAAAAAAAAAAAAAAAAAAAADACQwOAAAAXrN161Zb+ZYtW7rUBCh7OnfurAMHDig1NfUPf79x48bq2rWrgoODvdwMAAAAAAAAAAAAAAAAAAAAAAAAQFH5+boAAAAoOzZv3mycrVu3rqpVq+ZiG6BsCQwMVPfu3X/38bCwMPXv3189e/ZkaAAAAAAAAAAAAAAAAAAAAAAAAABQQgX4ugAAACg77AwOaNmypYtNgLKpXr16atKkiXbt2iVJiomJUefOnRUUFOTjZgAAAAAAAAAAAAAAAAAAAAAAAACKgsEBAADAK/Lz87VlyxbjfKtWrVxsA5RdXbp00fnz59WxY0fVrVvX13UAAAAAAAAAAAAAAAAAAAAAAAAAOIDBAQAAwCuSkpKUmppqnGdwACBlZGToxIkTatCggWNrBgcHa+DAgY6tBwAAAAAAAAAAAAAAAAAAAAAAAMD3GBwAAAC8YvPmzcbZwMBANWnSxMU2QPHm8XiUmJio5cuXKycnR0OGDFGlSpV8XQsAAAAAAAAAAAAAAAAAAAAAAABAMeXn6wIAAKBs2LJli3G2WbNmCgoKcrENUHylpaXpxx9/1E8//aTMzEzl5eUpPj5eHo/H19UAAAAAAAAAAAAAAAAAAAAAAAAAFFMBvi4AAADKhs2bNxtnW7Vq5WIToHjyeDzauXOnVq5cqezs7F/93tGjR7V9+3Y1b97cR+0AAAAAAAAAAAAAAAAAAAAAAAAAFGcMDgAAAK5LT09XYmKicb5ly5YutgGKn5SUFMXHx+vw4cMXzKxatUr169dX+fLlvdgMAAAAAAAAAAAAAAAAAAAAAAAAQEng5+sCAACg9Nu2bZvy8/ON861atXKxDVB8eDwebd68WdOmTbvo0ABJysnJUXx8vDwej5faAQAAAAAAAAAAAAAAAAAAAAAAACgpAnxdAAAAlH6bN282zlarVk21a9d2sQ1QPJw9e1ZxcXE6fvy48TWHDh3S7t271aRJExebAQAAAAAAAAAAAAAAAAAAAAAAAChpGBwAAABct2XLFuNsq1atZFmWi20A38rPz9fGjRu1bt065eXl2b5+xYoVioiIULly5VxoBwAAAAAAAAAAAAAAAAAAAAAAAKAk8vN1AQAAUPpt377dONuqVSsXmwC+dfr0ac2YMUMJCQmFGhogSVlZWVq6dKk8Ho/D7QAAAAAAAAAAAAAAAAAAAAAAAACUVAG+LgAAAEq306dP68SJE8b5li1butgG8I28vDytW7dOGzduVH5+fpHX279/v44dO6Y6deo40A4AAAAAAAAAAAAAAAAAAAAAAABAScfgAAAA4Krt27cbZy3LUrNmzVxsA3jfiRMnFBcXp+TkZEfWCwkJUdeuXVW7dm1H1gMAAAAAAAAAAAAAAAAAAAAAAABQ8jE4AAAAuGrbtm3G2fr16yssLMzFNoD35ObmKiEhQVu2bJHH43FkzejoaHXt2lWhoaGOrAcAAAAAAAAAAAAAAAAAAAAAAACgdGBwAAAAcNWOHTuMs82bN3exCeA9R48eVVxcnM6fP+/IeuXKlVO3bt0UGRnpyHoAAAAAAAAAAAAAAAAAAAAAAAAAShcGBwAAAFdt27bNOBsTE+NiE8B92dnZWrVqlbZv3+7Ymk2bNtWll16q4OBgx9YEAAAAAAAAAAAAAAAAAAAAAAAAULowOAAAALjm5MmTOnXqlHGewQEoyQ4ePKglS5YoNTXVkfUqVKig7t27KyIiwpH1AAAAAAAAAAAAAAAAAAAAAAAAAJReDA4AAACusXPXdcuy1LRpUxfbAO7IysrS8uXLtXv3bsfWbNGihTp16qTAwEDH1gQAAAAAAAAAAAAAAAAAAAAAAABQejE4AAAAuGbHjh3G2cjISJUrV87FNoDz9u3bp6VLlyojI8OR9SpVqqQePXqoTp06jqwHAAAAAAAAAAAAAAAAAAAAAAAAoGxgcAAAAHDNtm3bjLMxMTEuNgGclZGRoaVLl2rfvn2OrGdZllq3bq0OHTooIICX6AAAAAAAAAAAAAAAAAAZw+HFAAEAAElEQVQAAAAAAADs4VQSAABwhcfj0fbt243zDA5ASeDxeLRnzx4tX75cWVlZjqxZtWpVxcbGqkaNGo6sBwAAAAAAAAAAAAAAAAAAAAAAAKDsYXAAAABwxcmTJ3X69GnjfPPmzV1sAxRdamqqlixZooMHDzqynp+fn9q1a6e2bdvK39/fkTUBAAAAAAAAAAAAAAAAAAAAAAAAlE0MDgAAAK7YsWOHcdbPz09NmjRxsQ1QeB6PRzt27NDKlSuVk5PjyJo1atRQbGysqlat6sh6AAAAAAAAAAAAAAAAAAAAAAAAAMo2BgcAAABXbNu2zTgbGRmp0NBQF9sAhXP+/HnFxcXp6NGjjqzn7++vjh07qlWrVvLz83NkTQAAAAAAAAAAAAAAAAAAAAAAAABgcAAAAHDF9u3bjbMxMTEuNgHs83g82rJlixISEpSbm+vImrVr11ZsbKwqVarkyHoAAAAAAAAAAAAAAAAAAAAAAAAA8B8MDgAAAI7zeDy2Bgc0b97cxTaAfZZl6dSpU44MDQgMDFSnTp3UvHlzWZblQDsAAAAAAAAAAAAAAAAAAAAAAAAA+DUGBwAAAMedOHFCZ86cMc7HxMS42AYonC5duujQoUPKyMgo9BoRERHq3r27KlSo4GAzAAAAAAAAAAAAAAAAAAAAAAAAAPg1P18XAAAApc/27duNs35+fmrSpImLbYDCCQkJUbdu3Qp1bXBwsGJjY9W/f3+GBgAAAAAAAAAAAAAAAAAAAAAAAABwXYCvCwAAgNJn27ZtxtmoqCiFhIS42AYovKioKEVFRWnfvn3G1zRo0EDdunVTWFiYi80AAAAAAAAAAAAAAAAAAAAAAAAA4L8YHAAAABy3Y8cO42zz5s1dbAIU3WWXXaYjR44oKyvrornQ0FB17dpVDRs2lGVZXmoHAAAAAAAAAAAAAAAAAAAAAAAAAJKfrwsAAIDSxePxaNu2bcb5mJgYF9sARVeuXDl17dr1oplGjRpp6NChio6OZmgAAAAAAAAAAAAAAAAAAAAAAAAAAK8L8HUBAABQuhw/flxnz541zjM4ACVBo0aNtGfPHh08ePBXHw8LC1O3bt3UoEEDHzUDAAAAAAAAAAAAAAAAAAAAAAAAAMnP1wUAAEDpsm3bNuOsn5+fmjRp4mIbwBmWZal79+4KDAz85WPNmjXTkCFDGBoAAAAAAAAAAAAAAAAAAAAAAAAAwOcCfF0AAACULjt27DDORkdHKzg42MU2gHPKly+vSy+9VBs2bFCPHj0UHh7u60oAAAAAAAAAAAAAAAAAAAAAAAAAIInBAQAAwGHbtm0zzsbExLjYBGVdZmamPB6PQkNDHVuzWbNmatSokQIDAx1bEwAAAAAAAAAAAAAAAAAAAAAAAACKys/XBQAAQOnh8Xi0fft24zyDA+AGj8ejxMRETZs2TUuXLnV0bcuyGBoAAAAAAAAAAAAAAAAAAAAAAAAAoNgJ8HUBAABQehw9elTnzp0zzjM4AE5LT0/X0qVLtX//fknSvn37tG/fPkVFRfm2GAAAAAAAAAAAAAAAAAAAAAAAAAC4iMEBAADAMTt27DDO+vv7q3Hjxi62QVni8Xi0a9curVy5UllZWb/6vaVLl6pu3boKDg72UTsAAAAAAAAAAAAAAAAAAAAAAAAAcJefrwsAAIDSY9u2bcbZ6OhoDnLDESkpKZozZ47i4uJ+NzRAkjIyMrR8+XIfNAMAAAAAAAAAAAAAAAAAAAAAAAAA7wjwdQEAAFB6bN++3TgbExPjYhOUBR6PR9u2bdPq1auVk5Nz0ezu3bvVqFEj1atXz0vtAAAAAAAAAAAAAAAAAAAAAAAAAMB7/HxdAAAAlA4ej8fW4IDmzZu72Aal3blz5/T9999r2bJlBQ4N+I/4+HhlZ2e73AwAAAAAAAAAAAAAAAAAAAAAAAAAvI/BAQAAwBFHjx7V+fPnjfMxMTEutkFplZ+fr40bN2r69Ok6evSorWvT0tK0atUql5oBAAAAAAAAAAAAAAAAAAAAAAAAgO8E+LoAAAAoHbZt22acDQgIUKNGjVxsg9LozJkziouL08mTJwu9xvbt2xUdHa26des62AwAAAAAAAAAAAAAAAAAAAAAAAAAfMvP1wUAAEDpsH37duNsdHS0goKCXGyD0iQvL09r167VN998U6ShAf8RHx+v3NxcB5oBAAAAAAAAAAAAAAAAAAAAAAAAQPEQ4OsCAACgdLAzOKB58+YuNkFpcvLkScXFxenMmTOOrBccHKwOHTrI39/fkfUAAAAAAAAAAAAAAAAAAAAAAAAAoDhgcAAAACgyj8ejrVu3GudjYmJcbIPSIDc3V2vXrtWmTZvk8XgcWTMqKkqXXXaZypUr58h6AAAAAAAAAAAAAAAAAAAAAAAAAFBcMDgAAAAU2eHDh5WWlmacZ3AALubYsWOKi4vTuXPnHFkvNDRUl112mRo2bOjIegAAAAAAAAAAAAAAAAAAAAAAAABQ3DA4AAAAFNmcOXOMswEBAYqOjnaxDUqqnJwcrV69Wtu2bZPH43FkzcaNG6tLly4KCQlxZD0AAAAAAAAAAAAAAAAAAAAAAAAAKI4YHAAAAIps/fr1xtnGjRsrKCjIxTYoiQ4dOqQlS5YoJSXFkfXCwsLUvXt31a9f35H1AAAAAAAAAAAAAAAAAAAAAAAAAKA4Y3AAAAAosqysLONsTEyMi01Q0mRlZWnlypXauXOnY2vGxMSoc+fODKgAAAAAAAAAAAAAAAAAAAAAAAAAUGYwOAAAABRJfn6+du/ebZxv3Lixi21Qkuzfv19Lly5Venq6I+tVrFhRPXr0UN26dR1ZDwAAAAAAAAAAAAAAAAAAAAAAAABKCgYHAACAIjl06JCtg9+RkZHulUGJkJGRoeXLlysxMdGR9SzLUsuWLdWxY0cFBgY6siYAAAAAAAAAAAAAAAAAAAAAAAAAlCQMDgAAAEWyc+dOW/n27du71ATFncfjUWJiopYvX67MzExH1qxSpYp69OihWrVqObIeAAAAAAAAAAAAAAAAAAAAAAAAAJREDA4AAABFYmdwQP369eXv7+9iGxRXaWlpWrp0qZKSkhxZz8/PT23atFH79u35OwUAAAAAAAAAAAAAAAAAAAAAAACgzGNwAAAAKBI7gwM6duzoYhMURx6PRzt37tTKlSuVnZ3tyJrVq1dXbGysqlWr5sh6AAAAAAAAAAAAAAAAAAAAAAAAAFDSMTgAAAAU2n8OhZtq2rSpi21Q3KSkpCg+Pl6HDx92ZD1/f3+1b99ebdq0kZ+fnyNrAgAAAAAAAAAAAAAAAAAAAAAAAEBpwOAAAABQaKdPn9aZM2eM8wwOKBs8Ho+2bt2qhIQE5eTkOLJmrVq11KNHD1WpUsWR9QAAAAAAAAAAAAAAAAAAAAAAAACgNGFwAAAAKLSdO3caZ/38/NSoUSMX26C4SE9Pd2xoQEBAgC655BK1bNlSlmU50A4AAAAAAAAAAAAAAAAAAAAAAAAASh8/XxcAAAAll53BAZGRkQoJCXGxDYqLsLAwderUqcjr1K1bV0OGDFGrVq0YGgAAAAAAAAAAAAAAAAAAAAAAAAAAFxHg6wIAAKDk2rFjh3G2SZMmLjZBcdO8eXMlJibq2LFjtq8NCgpS586d1axZMwYGAAAAAAAAAAAAAAAAAAAAAAAAAIABP18XAAAAJdfOnTuNs02bNnWxCYoby7IUGxsrf39/W9fVr19fQ4cOVUxMDEMDAAAAAAAAAAAAAAAAAAAAAAAAAMAQgwMAAEChpKam6vDhw8Z5BgeUPZUqVVLHjh2NsiEhIerZs6f69eunsLAwl5sBAAAAAAAAAAAAAAAAAAAAAAAAQOkS4OsCAACgZNq1a5etPIMDyqZWrVpp7969Onny5AUzDRs21GWXXabQ0FAvNgMAAAAAAAAAAAAAAAAAAAAAAACA0sPP1wUAAEDJtHPnTuNsrVq1VKlSJRfboLjy8/NTbGys/Px+/7KzXLly6tu3r/r06cPQAAAAAAAAAAAAAAAAAABAmXfy5ElVq1ZNlmVd8NfVV1/t65oAAABAmbBhwwb5+fld9PX5o48+6uuawK8wOAAAABSKncEBTZs2dbEJiruqVauqXbt2v/pYkyZNNHToUEVGRvqmFAAAAAAAAAAAAAAAAAAAxcxDDz2kM2fOXPD3/f399frrr3uxEQAAAFB2tW3bVrfccstFM2+//ba2bNnipUZAwQJ8XQAAAJRMu3btMs42a9bMxSYoCdq2bat9+/YpOztb3bt3V7169XxdCQAAAAAAAAAAAAAAAEAJceLECe3du1fJyclKS0v75ZdlWQoLC1P58uUVFham6tWrKzo6WpUrV/Z15RLn5MmTSkpK0qlTp5Senv7Lr6ysLAUFBSkkJEQhISGqUqWK6tatqzp16qhq1aqyLMvX1UuNhQsX6vPPP79o5vbbb1eLFi281AgoPbKysnTw4EEdPHhQqampv3qek/TLc1xYWJhq1aqlOnXqqHbt2goJCfFxc6BsOHbsmHbu3Knk5GSlpKQoJSVF/v7+qlChgipUqKCaNWsqJiZGFStW9HXVMik/P1+HDx/W0aNHdezYMZ07d06ZmZnKysqSZVkKCQlRaGioqlatqtq1a6tu3bqqWbOmr2sDjnn55Zc1bdo0ZWVl/eHv5+bm6q677tKSJUv4/gjFAoMDAACAbdnZ2UpMTDTON23a1MU2cENeXp78/f0dW8/f319XXHGFypUrp8DAQMfWBQAAAAAAAAAAAAAAAIrq/PnzGj9+vKt7WJb1y+Hr4OBgVapUSTVr1lTNmjVVp04dBQUFubp/SZGfn68tW7Zo6dKlWrp0qbZu3aq9e/cqNTXV1jpVqlRRdHS02rZtq27duql79+5q2LChS61LlrS0NCUkJGjlypVatWqVdu3apaSkJKWlpdleKyQkRM2aNVOLFi3UokULde7cWV26dFFoaKgLzUu3nJwc/fnPf75oJiwsTC+++KKXGhXNU089pVdeecXWNT/88IP69+/vUiNnLF68WIsXLzbKXn755br88std7VMUpemx/NaePXu0cuVKrVy5UuvXr9f+/ft19OhReTwe22uFh4f/8hzXpk0bvp4ADvB4PFq7dq3mzJmj+fPna/PmzTp79qzRteHh4WrXrp2uvPJKXXXVVYqKinK3bBm1b98+LV68WPHx8dq0aZO2b9+ujIwMW2tUqVJFzZs3V7t27RQbG6sePXqUymECmZmZ2rBhg9auXauTJ08aXVO5cmU98MAD7hYrITIzM/Xmm28qNzfX1nXe/hw2aNBA9957r956660LZpYtW6aJEyfq9ttv91ov4EKswrzwBQDYZ1lWF0nL//djy5cvV5cuXXzUCCi8HTt2aPjw4cb577//XrVr13axEZy0b98+LV++XL169VKdOnV8XQcAAAAAAAAAAAAASoT9+/f/7k3UoaGhioyM9E0hAICx/fv3+/TQkb+/vxo2bKhmzZqpXbt26tatmy699FJVqFDBZ528KTc3V/PmzdOUKVM0e/Zs44NjdoWHh+v666/XzTffrEsvvdSVPYqrvXv3avr06frmm2+0Zs0a5eXlubZXUFCQOnbsqL59++q6665T69atXdurNHnjjTf06KOPXjTzzDPPlIjBAXl5eWrQoIEOHz5s67ohQ4Zo2rRpLrVyxvPPP68XXnjBKPvcc8/p+eefd7dQEZSmx5KVlaX58+dr+vTpmj17tk6dOuXqfuHh4YqNjdXAgQN11VVXlZmv10BRnT59WmPHjtUHH3ygQ4cOObJmx44ddf/992vYsGEM4iqigwcPatKkSZo6dao2b97s+Pp+fn7q1q2bbrzxRt18882qVKmS43u4LSsrSxs3btSaNWu0du1arVmzRtu2bbN96L1Bgwbav3+/OyVLmMcee0yvv/667et88TlMTk5WdHS0kpOTL5ipXbu2du3aVaZfG5T2n5GvWLFCXbt2/e2Hu3o8nhW+6HMhAb4uAAAASp6dO3caZytWrKhatWq52AZOycjI0LJly7R3715JUnx8vAYPHqyAAF4yAgAAAAAAAAAAAAAAAG7Jy8vT7t27tXv3bs2aNUuSFBAQoJ49e2rIkCEaMmSIqlat6uOWzjtw4IDeeustTZkyxfVDnpJ0+PBhvffee3rvvffUsGFD3Xnnnfrzn/9cIg8tmUhLS9PEiRP1ySefaMOGDV7bNzs7W8uXL9fy5cv1/PPPKzo6WjfeeKNGjRpVag6LOO3YsWN66aWXLpqpVatWgYMFiosff/zR9tAASZo5c6ZOnz6tatWqudAKpdG6dev07rvvasaMGTp//rzX9j18+LCmTJmiKVOmKDg4WH379tXtt9+ua665hvfcAn8gJSVFL7zwgt5//31lZmY6uvaaNWs0YsQIPfLII3rppZc0atQoWZbl6B6l3ebNm/Xqq6/qq6++sn0A3o78/HzFx8crPj5ejz32mEaNGqWHH35YdevWdW3PosjKytLmzZt/NSRg69atysnJ8XW1UiMhIUFvvfWWr2sYq1Klip588kk98sgjF8z853V9YYYhAE7y83UBAABQ8tgZHNC0aVO++S7mPB6Pdu/erWnTpv0yNECSzp07p7Vr1/qwGQAAAAAAAAAAAAAAAFA25ebmav78+RozZowiIiJ01113adeuXb6u5Yjdu3frzjvvVKNGjfSPf/zDK0MDfmvv3r166qmn1KBBAz3zzDM6ffq01zu45dixY3rqqadUv3593XvvvV4dGvBHEhMT9de//lXR0dHq37+/Zs+e7dM+xdFTTz2llJSUi2aefPJJlS9f3kuNimbcuHGFui47O1uff/65w21Q2ng8Hn3//ffq2bOnOnTooM8++8yrQwN+KysrS7NmzdL111+v+vXr65lnntHx48d91gcobr766is1a9ZMb731luNDA/7X8ePH9ac//UmXXnqpz1/7lBSnT5/WXXfdpbZt22rKlCmuDg34rZSUFL399ttq2rSpXnnlFWVlZXlt7z+SnZ2ttWvXauzYsfrTn/6kDh06qEKFCrrkkkt09913/zKIi6EBzsnOztbtt9+uvLw8X1ex5b777lOdOnUumnn33XeVmJjopUbAH2NwAAAAsM3u4AAUX2lpafrxxx+1aNGiP/xhzKZNm3Ty5EkfNAMAAAAAAAAAAAAAAAAgSRkZGfroo4/UokUL3X///UpOTvZ1pUJJT0/XI488oubNm2v8+PHF4uDNuXPn9PLLLys6OlofffSRPB6PrysVWlZW1i8H9F955RWdOXPG15V+JT8/X3PnztWAAQPUoUMHfffddyX68+2ULVu2aOLEiRfN1KhRQ6NHj/ZOoSI6deqUZs2aVejrJ0yY4GAblDZr167VZZddpmuuuUaLFy/2dZ3fOXr0qF5++WVFRUXpoYce0rFjx3xdCfCZnJwc3XvvvRo2bJiOHDnitX1Xr16tLl266NNPP/XaniXRggUL1KpVK3300UfKz8/3WY/U1FQ99dRTuvTSS7Vjxw6v7z9nzhx17NhRFSpUUMeOHTVmzBh9/PHHWrduXbH4XqU0e/HFF7V161Zf17AtODhYDz744EUz2dnZeuqpp7zUCPhjDA4AAAC25Ofna/fu3cZ5BgcUTx6PR9u3b9e0adN04MCBi+bi4uJK3CQ3AAAAAAAAAAAAAAAAoLTJzc3Ve++9pxYtWmjRokW+rmPL3Llz1aJFC7355ptevZupqXPnzumuu+5S9+7dtW3bNl/Xse37779X8+bN9fTTTys9Pd3XdQq0bt06DRo0SJ07d9aqVat8XcenHn300QIP7D3wwAMKDQ31UqOimTRpUpEO2m3cuFFr1651sBFKgzNnzmjMmDHq1KmTVqxY4es6BcrIyNDbb7+tqKgoPffcc8rIyPB1JcCrzp49q969e+v999/3yf6ZmZm67bbb9MADDzCk6A+88cYb6tu3r44ePerrKr/YsGGDOnTooNmzZ3t13507d2rt2rXKzs726r5l3fr16/Xaa6/5ukah3XXXXapSpcpFM1999ZXWrFnjpUbA7zE4AAAA2HLo0CFb/7DA4IDi5/z585o9e7aWLFli9E3umTNntGHDBveLAQAAAAAAAAAAAAAAACjQ0aNH1adPH7311lu+rlKgvLw8PfLII+rfv7/279/v6zoFWrZsmTp06KDPP//c11WMZGVl6a677tI111yjvXv3+rqObQkJCerSpYtuv/12paSk+LqO1y1evFhz5sy5aKZSpUr685//7KVGRTd+/PgirzFu3DgHmqC0WLZsmVq3bq2xY8f69K7YhZGZmakXX3xRMTExBf63DpQWKSkpuvLKK7VkyRJfV9G7776r++67z9c1ipVHHnlEjz76aLEcqJCenq5BgwZp8uTJvq4CF+Xk5Oj2228vlsPkTFWoUEH33nvvRTMej0ePPfaYlxoBv8fgAAAAYMuOHTuMs0FBQWrQoIGLbWCHx+PR5s2bNX36dB05csTWtevXr9eZM2dcagYAAAAAAAAAAAAAAADAjvz8fD388MN64YUXfF3lgk6fPq0rr7xSb775pq+r2JKZmalbb71VDz74oPLy8nxd54L27NmjLl266KOPPvJ1lSLxeDyaOHGiEhMTfV3F65555pkCM/fcc48qVarkhTZFt3r1am3ZsqXI63zxxRfKzMx0oBFKMo/Ho9dff12XX365Dh8+7Os6RZKUlFTin6sBExkZGbrqqqu0atUqX1f5xfvvv69HHnnE1zWKhb/97W/F/nV5bm6ubrvtNs2dO9fXVeCSV155RRs3bvR1jSK7//77FRYWdtHMTz/9pLi4OC81An4twNcFAABAybJz507jbOPGjeXv7+9iG5hKTk5WfHy8jh8/Xqjr8/PzFRcXp2uvvVZ+fsyeAgAAAAAAAAAAAAAAAIqD559/XnXr1tXo0aN9XeVXkpKS1KtXL+3du7dI6wQEBKhz587q3r27mjVrpqZNm6pu3boqX768KlSooPz8fKWkpCg1NVUHDhzQzp07tX37di1evFgbNmwo0t1U33nnHW3fvl0zZsxQSEhIkR6H05YtW6arr75a586dK/JaISEh6tixozp37qzo6GhFRkYqMjJSFStWVFhYmMqVKyfLsn75PJ8/f1579+7Vnj17tGfPHq1Zs0br1q0r1kMWiqP58+dr6dKlF82EhobqwQcf9FKjohs/frwj65w9e1bffPONbr75ZkfWQ8mTm5urESNG6IsvvnBkvQYNGqhr165q1arVL89xderUUbly5RQWFqaQkBBlZGQoNTVVqampOn78uHbv3q09e/Zo+/btWrp0qU6cOOFIF6A0u/feewv82vZHQkNDNXDgQPXu3VsdOnRQRESEKleurJycHJ09e1a7du3S2rVr9d1332nZsmW2X9+9+eabatu2rW655Rbb3UqLWbNm6amnnir09XXq1FG3bt3UpUsXdezYUTVq1FCVKlVUpUoV5eTkKDk5WcnJyUpKStLKlSu1YsUKrVixQhkZGbb3ys3N1Q033KANGzaoYcOGhe6M4mfTpk3661//6usajqhevbpGjx6td95556K5Z599luEB8AkGBwAAAFt27dplnG3atKmLTWAiPz9fGzdudOQfZk6ePKnNmzerTZs2DrUDAAAAAAAAAAAAAAAASpYGDRpo//79tq/zeDxKSUnR2bNnlZycrOPHjyshIUErV67UypUrderUqUJ3uvfee9WmTRt16tSp0Gs4KSkpSZdffnmhPk+S5OfnpyuuuEKjRo1Sv379VKFChYvmg4ODVb16dUVGRqpHjx6/fPzkyZOaOXOmxo4dq9WrVxeqy48//qiBAwdq5syZxWZ4wPz58zVo0CClp6cXeo2IiAgNHTpUQ4YM0SWXXKLAwMACr6lataqqVq0qSWrZsuWvfi8lJUXLli3T3Llz9eWXX+rYsWOF7lZWPP/88wVmbrvtNtWoUcP9Mg7IyMhw7JC39PMQAgYHlE1ZWVkaOnSoZs2aVeg1AgIC1LNnTw0bNkxXXXWV6tSpU+A15cuXV/ny5SVJjRo10mWXXfar3//PUJrp06dr8eLFys/PL3Q/oDT67LPPbA+QKV++vB5++GE9+OCDqlix4u9+PygoSGFhYQoPD1fPnj318MMPa8+ePXr22Wc1depUWwMExowZo/bt2ysmJsZWx9Lg5MmTGjVqVKEGasXGxur+++/Xtddee8EbSv7nzykiIkKtWrXSgAEDJElnzpzRxx9/rA8++EAHDhywtW9KSopGjBih+Ph4bnpYSuTm5uqOO+5QTk6Or6s45qGHHtJ777130XM68fHxWrhwoXr37u3FZoDEMycAADDm8Xi0c+dO43yzZs1cbIOCnD59WjNmzFBCQoIj05yDgoIUGhrqQDMAAAAAAAAAAAAAAACgbLEsSxUrVlT9+vXVpk0b9e3bV0899ZRmzZqlY8eOafr06br88ssLtXZ2drZGjRql3NxcZ0sXQlJSkmJjYws1NMDPz0+33XabEhMTNXfuXA0ZMqTAoQEXU6NGDd15551atWqV1q9fr/79+xdqnfnz52vgwIHKzMwsdBenzJw5U9dcc02hhwb06tVL8+bN04EDB/T3v/9dXbt2NRoaUJAKFSroyiuv1DvvvKNDhw5p3rx5uvnmmxUQwH0O/8jixYu1fPnyAnN33323F9o4Y/r06Tp//nyBOdPDfz/99FOhh4+g5EpPT9fVV19d6KEBVatW1bPPPqsjR45o3rx5uvPOO42GBpiIiYnR3XffrYULF+rgwYN66623FB0d7cjaQEmXlJRk+2tWly5dtH37dj333HN/ODTgQho1aqQpU6Zo4cKFqlWrlvF1aWlpuummmxx5T31J88wzz+jEiRO2rqlevbpmzJihxYsX6/rrr7/g0ICLqVq1qh577DHt3r1bDz/8sO0BAMuWLdNnn31me19vq1y5snr16qVHHnnE11WKtTfeeENr1669aOb666/3Uhtn1KtXT1dffXWBub/97W9eaAP8GoMDAACAsVOnTunMmTPG+SZNmrjYBheSl5enhIQEffvtt0WaRP6/GjRooKFDh/JnCgAAAAAAAAAAAAAAADjM399fgwcP1qJFixQfH6/69evbXmPz5s16//33XWhnLiUlRVdddZWSkpJsX9u1a1dt2LBBEyZMUGRkpOPd2rZtqx9++EELFiwo1EHP+fPn684773S8lx0rV67UsGHDlJWVZfvazp07a9WqVVq4cKGuuOIKWZblQsOf+fv764orrtDk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X49u3bpVr732mis98vPzNWbMGGVnZxvlW7ZsqQEDBrjSpbi44YYbbOXvuecenTx50qU2v7dx40a9/PLLtq6x+5gAXzh16pTR0KAKFSqoW7duXmiEsorBASizLMvqJOljmQ0NWC7pXkntJVWVFPjv/+0o6X5Jq0y2lPSxZVn2vqstniZKameQOyvpX5KukVRPUqikcpLqSxoo6SNJ5wzWaSdpQiF6ArDh4MGDxtmIiIhC7+PxeLR792599dVXFx0OsHTpUmVlZRV6HwAAAAAAAAAAAAAAAAAoraKiomzd7Xr8+PE6cOCAK10qV66sr7/+2tYBWkkaO3asBg8e7JODlQcOHNDll19u+y7vjRo10sSJE13pdCEDBw7U448/buua9PR03XTTTXrssceUk5PjUjN7Dh06pGHDhqlv3746evSor+t4TXEaHHDu3Dl98803xvnhw4e72MZZdrraGZ5wMeHh4brrrruM88ePH1f//v117pzJ2+edc+7cOfXv318nTpwwvuaee+5RnTp1XGz1X/7+/po2bZpq1apl67oFCxbokksu0YYNG9wpVgiTJk1SkyZNNGECRx9QNkREROi2224zzj/33HOKj493vMdLL72kn376yTj/5JNPyrLcvv+sb1155ZW2BnsdPnxYQ4cO/d0NId1w9OhRXX/99bb26tGjhxo3buxiK8AZixYtksfjKTDXp08f48ErQGEwOABlkmVZFSVN1c8DAC5mt6Q+Ho/nMo/H877H41nv8XiSPR5P7r//d63H43nP4/FcKqmfpMQC1guS9OW/9y+RLMu6X9KgAmIeSe9IivJ4PPd4PJ7vPR7PIY/Hk+nxeDI8Hs9Bj8czy+Px3CUpStJ7BltfZ1nWfUUqD+Ci7AwOqFevXqH2SE1N1dy5c7Vo0aIChwJkZGRoxYoVhdoHAAAAAAAAAAAAAAAAAEq7p59+2viwQXZ2tu27etrRuXNnffjhh7avmzFjhtq2bauVK1e60OqPTZs2TW3atNH69ettXVe+fHnNmDFDVapUcanZhb3yyisaPHiw7etef/11tW/fXsuXL3ehlZnz58/r5ZdfVrNmzfTVV1/5rIevNG3aVI0aNSowt3PnTtcHKkyZMsX4kF54eLh69uzpah8nDRkyRCEhIUbZuLg4JSYW9LZ/M08++aSt54T169erd+/ett6zWxQHDx5Ur169bD3fVatWzfawkqJq0KCBZs6cqdDQUFvX7d27V5dccokef/xxrxx2vZBly5ape/fuGjFihI4dO+azHoAvvPzyy6pUqZJRNi8vT9ddd502btzo2P7jxo3TCy+8YJzv1q2bbrrpJsf2L64CAwP14IMP2romLi5OAwcOdHWoV1JSknr16qW9e/fauu6xxx5zqRHgLNNhYAMGDHC5Cco6BgegrHpRPx9Yv5gFki7xeDwLTRb0eDzzJHWUVNAzfJSk503WLG4sywqX9EoBsWxJgz0ez4Mej+dsQWv+ewDD/ZKGSipopOkrlmXVNSoLwLZDhw4ZZyMiImyt7fF4tH37dk2bNs3WDzt37drltR+OAgAAAAAAAAAAAAAAAEBJEhkZqZEjRxrnJ06cqH379rnW57bbbtNDDz1k+7p9+/apW7duuuuuu1w9cLljxw4NGjRIN9xwg86ePWvrWn9/f02aNEktWrRwp1wBLMvSpEmT1KlTJ9vXbtmyRd26ddMtt9yizZs3u9Dujx0/flxPPPGE6tevr2eeeUZpaWle27u4GTZsmFHu+++/d7XH+PHjjbM333yz/PxKznGTihUrauDAgUZZj8fj2B3ha9asqXfffdfWNWvXrlXHjh01bdo0RzpcyLRp09SxY0etW7fO1nXvvfeeqlev7lKrC+vUqZM+/fRT23/vcnNz9dprrykmJkYffvihMjMzXWr4e7Nnz1b37t3VrVs3LV261Gv7AsVJzZo19dJLLxnnz5w5oz59+ig+Pr7Ie7/99tv605/+ZHR3b+nn13P//Oc/i7xvSTFmzBjVqVPH1jULFixQly5dtGHDBsf7zJ49W506ddKOHTtsXdelSxddddVVjvcB3DB79uwCM0FBQbruuuu80AZlmWX6xREoLSzL+n/27jtes6q6H/9nT2cKVXqbAWmCNCtIESQWLIQiKjYsESMRNfbYQI0aE7+B5Be7iAbEKIqoqCgQKwJKb9JkKAoYQQaGAWaG2b8/7miIzjznuc996sz7/Xrdl77uXs9eazYws+bcc9Z5TJLLkkxpEfbzJAfUWhd1sP+sJOcmaXVlbmmSnWut14x3/0EqpXwpSavRWjXJYbXWr3e4//OTNI0S/VKt9cWd7D9opZQ9kvyfka3nnXde9thjjwFVxKrkb/7mb3LllVd2/Pla67g+/+hHP7rtqZ7bbrttDjvssI4n4c6ePTuHHXZYpk2b1tHnAQAAAAAAAKAf5s+f/xdvuVxjjTUyd+7cwRQEQNvmz5+fefOa3kc1Zsstt8z8+fN7W9A4zJ8/P9tuu22WLGl6d9OYV77ylfnc5z7Xs3pqrTn66KPziU98oqPPz5o1K0cddVSOOuqobLvttl2p6cILL8wnPvGJnHzyyVm6dOm4Pz958uR88YtfzBFHHNGVeibinnvuyYEHHpif//znHX2+lJIDDzwwr3jFK3LggQeO++3eTR544IF861vfyimnnJLvfe97Wbx4cdufveSSS7Lrrrt2tZ5hcdVVV2WnnXZqjHv605+es846qyc1XH755dlll13ajr/sssuy884796SWXvnWt77V9vCAzTbbLDfffHPXhiMcdNBB+eY3vznuz+233355xzvekac//eldqSNJfvCDH+TDH/5w22+8faRDDjkkX/va17pWSydOOeWUHHnkkR39fp0kG220UY466qi88IUvzPbbb9/l6pJrrrkmX/rSl/KlL31pXG/MPuigg/KNb3yj6/XAMHj44Yez9957j6s/mTx5ct797nfn7W9/+7j7kVtvvTVveMMbcvrpp4/rc29729vyT//0T+P6TKfmzp2bm2++ua3Yl7/85TnppJN6UsdXv/rVHH744eP+3NSpU/O3f/u3+Yd/+IdsuOGGE6rhV7/6Vd7znvfktNNOG/dnp0yZkosuuqjnPcl4/nkNk3333Tc//OEPB11GV5VS2oobtr+XJ2N/73zSk57UGPfc5z63o75xVKzq18h//vOfZ8899/zzb+9Za+3sL+k9YnAAq51Syn8ladX13J1k11prx6+4LqVsmeTSJGu3CPtyrbXVQ/hDZfnAhSuTtPoT+F9qrW+dYJ5/TfLGFiE1yWNqreMbMTUEDA6gl/bYY4+cf/75gy5jhbbaaqu8/e1vn9Aej3nMY7LXXnt1qSIAAAAAAAAA6L5V/aZIgFXZKA8OSMZePPPZz362rdgpU6bkV7/6Vbbeeuue1VNrzd/93d/l4x//+IT22WefffLsZz87BxxwQHbbbbe2HyJZsmRJLrjggvzgBz/IGWeckcsuu6zjGoZpaMAf3X///Xne856Xc889d0L7zJ49OwceeGD22Wef7LHHHtlll10yefLkce3x0EMP5ZJLLsmPfvSj/PjHP86Pf/zjLFy4sKN6VuXBAUmyyy675PLLL28ZM3Xq1Nx5551ZZ511up7/jW98Y0444YS2YnfeeecJ/XczKEuWLMkmm2yS3//+923Ff/e7380zn/nMruResGBB9txzz1x99dUdfX6bbbbJoYcemmc/+9l53OMeN66HaB988MFcdNFFOfPMM/P1r3891157bUc1PPaxj83PfvazzJkzp6PPd9M3vvGNvPCFL8xDDz00oX123nnnPOtZz8oee+yRPffcM+uvv/649/jNb36Tn/70p/nRj36UH/3oRx3/MzY4gFXdLbfckt122y133333uD636aab5o1vfGOOOOKIbLLJJi1jL7744px00kn5zGc+kwcffHBceZ7ylKfkhz/8YaZMafUO2u4ZlsEBSXL44Yfnq1/9akefnTZtWg455JAcfvjhOeCAA9r+M+LOO+/M9773vZxyyik5++yz0+nzq+9///vznve8p6PPjofBAcNjlAcHvO1tb8s///M/N8Z9+ctfzgte8II+VDQYq/o1coMDYAiVUrZKcl2SVle1Xldr7WzM6f/NdUySVldXHk7y6Frr/Inm6odSyueTHNki5OYk29dax9d9/2WemUmuTbJZi7ATa62vmkieQTA4gF4a5sEB8+bNyzve8Y4J7TF16tS88IUv7Pp0YwAAAAAAAADollX9pkiAVdmoDw6YP39+tt122yxZsqSt+Je97GX5whe+0OOqkne+8535yEc+0pW9Zs+enW233TbbbbddNt5448yePTuzZ89OrTULFy7MwoULc8stt+Taa6/N9ddfP+GHTZNk5syZ+eIXv5hDDz20C7+C7nrwwQfzile8Il/+8pe7tueMGTOy5ZZbZt68edlyyy2z1lprZebMmZk5c2aSZOHChbn//vuzYMGC3HTTTbnhhhty6623ZtmyZV3Jv6oPDjj++OPzpje9qTHuxBNPzCte8Yqu5l68eHE23XTTth+o/+hHP5q3vnVC75IbmKOPPrrtoSXPf/7z85WvfKVruefPn58nP/nJufPOOye0z5QpU7LDDjtk3rx52XzzzbPeeutljTXWyLRp07J48eI88MADufvuu3PrrbfmpptuytVXX52lS5dOKOfGG2+cCy64IJtvvvmE9ummc845Jy94wQty1113dW3PDTfcMHPnzs28efOy8cYb/+n3uBkzZuSBBx7I/fffn4ULF+aOO+7IDTfckBtuuCH33XdfV3IbHMDq4Dvf+U6e+9zndtQbTJo0KTvssEMe//jHZ9NNN83aa6+dJUuW5J577sn111+fX/7yl7nttts6qmv99dfPxRdfnM02a/WYUncN0+CAhQsXZo899siVV145oX0mT56c7bbbLjvuuGM222yzrLfeepkxY0ZqrXnggQfyu9/9Lrfccksuv/zyrvx96aCDDsrpp5/e9oPkE2FwwPAY5cEBW2+9dX7961+3jFlnnXXy29/+NjNmzOhTVf23ql8jH5XBAf0ZkwPD4+i0HhpwfZJPdynXx5O8IclWK1mfvLyeob+qUkpZL0nTqNT3TnRoQJLUWheVUt6X5HMtwl5SSnlrrXV8o8iAkbTZZptl7733NjQAAAAAAAAAAABgBebOnZsjjzwyn/nMZ9qKP+WUU/Lud78722yzTU/r+vCHP5zddtstr3zlK3P//fdPaK+FCxfm4osvzsUXX9yl6lrbaqutcvrpp2fnnXfuS77xmjFjRk499dTstddeefOb39yVQQkPPvhgrr322o7fVj4RM2bMGIq3nPfSS1/60rz97W/P4sWLW8addtppXR8ccMYZZ7Q9NGDSpEk54oim28aH10te8pK2BwecccYZueuuu7Leeut1JffcuXPzwx/+ME9/+tNz6623drzP0qVLc8UVV+SKK67oSl1N5s6dm7POOmuohgYkydOe9rRccsklecELXpCf/7w7z2HdeeedufPOO3PBBRd0Zb/x2GCDDfqeE/rtwAMPzKc+9am85jWvGfcb5pctW5arrroqV111VVdrWnvttXPWWWf1dWjAsJk9e3bOPPPM7Lfffo0PNbfy8MMP5+qrr87VV1/dxepWbJ999snJJ5/cl6EB0A2XXHJJW/99veQlL1mlhwYwPCYNugDol1LK5CQvagj711rrw93IV2tdmuTfGsKOKKWMwn+HL0gyrcX6b5Kc2sV8pyRpNWpxWpLndzEfMISmT5+efffdN8961rNW+R8IAAAAAAAAAAAATMS73vWuTJ06ta3Yhx9+OMcdd1yPKxpz+OGH5+c//3l22GGHvuTrhmc/+9n5xS9+MbRDAx7p6KOPznnnnZdtt9120KV07OCDD84111yTrbfeetCl9NR6662Xgw8+uDHu7LPPzoIFC7qa+8QTT2w79qlPfWo23XTTrubvpz322KPtf5cWL16ck08+uav5t99++5x33nnZaaedurpvr+y888752c9+NrS/h2y++eb58Y9/nLe+9a2ZPLnV+yOH1wYbbJDPfe5z+dSnPjXoUqAvXv3qV+ff//3fB11GkmTOnDn53ve+l912223QpQzcFltskR/96EfZbrvtBl1KowMOOCDf/e53M3v27EGXAm077bTT2op71ate1eNKYMwoPLAM3bJ/ko1brD+YpLt/80++kKTVWMhNkjy1yzl74cUN6yfVWpd0K1mt9aGMnV0rTTUBI2zLLbfMYYcdlu22286UOAAAAAAAAAAAgAZbbrnluN5Sfuqpp+ZXv/pVDyv6X4997GNz6aWX5thjj8306dP7krMTG2ywQU455ZR8+9vfzrrrrjvoctq2++6754orrsiHP/zhzJo1a9DltO1JT3pSzj777Hz961/P3LlzB11OXxx99NGNMYsXL85XvvKVruW87bbb8v3vf7/t+Je+9KVdyz0oL35x+7eZf/7zn+96/s022ywXXHBBjjrqqK7v3U2ve93rcv7552eTTTYZdCktTZkyJR/96Efzy1/+Mnvttdegy2nb7Nmz8/a3vz3XXXddXvnKV7ofmtXK0UcfnVNPPTUzZ84cWA3z5s3LT3/60zzpSU8aWA3DZrPNNsuFF17Y1iCjQXnzm9+c7373uwP9dwfGa9myZfnSl77UGLfXXntll1126UNFYHAAq5fnNqyfWWu9r5sJa633JPluQ1hTXQNVSlkvyR4NYV/uQepTG9afUkoZnauyQFvWWGONPO1pT8vTn/70kfoBBgAAAAAAAAAAwKC9613vytSpU9uKXbZsWY477rgeV/S/pk2blve97325/PLLc+CBB/YtbzumTZuW1772tfnVr36VI444YtDldGTatGl5xzvekWuvvTYve9nLMmXKlEGXtFJPecpT8r3vfS/nn39+nva0pw26nL7ae++9s+uuuzbGdfPN5CeddFKWLVvWVuwaa6yRQw89tGu5B+UlL3lJ27GXXXZZLrrooq7XMHPmzHzyk5/Mt771rWy99dZd338itt5665x55pn5j//4j6yxxhqDLqdtu+66a37yk5/k5JNPHrozfaQ111wz73znOzN//vx85CMfyVprrTXokmAgXvjCF+a8887LVltt1ffcT3/60/PLX/4yO++8c99zD7s111wzX//61/OJT3wi66yzzqDL+ZN58+blzDPPzL/8y78MdR8LK/L9738/8+fPb4w75phjel8MLGdwAKuTAxrWz+xR3qZ9/6pHebvlaUlajbe7pdZ6ZbeT1lovTfKbFiGTkuzf7bzA4Dz60Y/O85///Gy99damagIAAAAAAAAAAIzTFltskVe84hVtx3/lK1/JVVdd1cOK/tK2226bM888MxdddFEOPfTQTJo0uNvZ11hjjbz+9a/PjTfeOHQPT3Vq0003zRe+8IX8+te/zlve8paheWB11qxZefWrX52LLrooP/3pT/OMZzxj0CUNzOtf//rGmIsuuqgrD7PXWnPSSSe1Hf+85z0vc+bMmXDeQdtmm23yxCc+se34E088sWe1POc5z8k111yTE044IRtssEHP8rRjgw02yAknnJBrrrlm6Aa4jMeLX/ziXHfddfna176WPffcc9Dl/Mluu+2WT37yk/nNb36TD33oQ1lvvfUGXRIM3C677JIrrrgi73rXuzJ9+vSe59too43yxS9+MWeddVbWXdd7Slt57Wtfm2uvvTave93rMmPGjIHVse666+a4447LVVddNdJ/NrF6+/SnP90Ys9lmm+Xggw/uQzUwxggWVgullI2T7NAQdnaP0v+gYX3HUspGtdY7epR/oppGefbq3P6498tbrB+Q5LQe5gf6YNasWdlrr72y5ZZbDroUAAAAAAAAAACAkfaud70rJ510UhYvXtwYu2zZshx77LH56le/2ofK/q/dd989p512Wq6//vp88YtfzKmnnpobb7yxL7mf8IQn5IgjjsiLX/zirL/++n3J2W+bb755/vmf/znvfe97c9ppp+W0007L2Wef3da/F90yY8aMPOMZz8ihhx6agw46KGuuuWbfcg+zF7/4xXn3u9+d22+/vWXcpz71qbYeQmrl7rvvzkte8pK24w866KAJ5RsmH/nIR/KjH/2ordheDw2ZOnVqjjnmmLz2ta/Naaedlk9+8pP5yU9+0tOcj7TXXnvlb//2b3PYYYdl2rRpfcvbS5MmTcohhxySQw45JBdffHFOPfXUfO1rX8tNN93U1zq23XbbHHrooTnssMOy++679zU3jIqZM2fmgx/8YI488sj80z/9U0455ZQ88MADXc2x0UYb5bWvfW3e9KY36TfGYf31189//Md/5L3vfW/+7d/+Lf/5n/+ZW2+9tS+5d9xxx7zyla/Ma17zmsyePbsvOaEXbr/99nzrW99qjHvjG9+YKVM8yk3/lFrroGuAniulHJTkGy1Cbq21btHD/L9NsnGLkOfVWpv/lBiAUsolSXZtEfKqWmtPxiyWUl6T5FMtQi6utT6uF7l7oZSyR5LzHvm98847L3vssceAKmJVsscee+T8888fdBkrNG/evLzjHe9Y4dr222+fJz3pSX2ZIAgAAAAAAAAAvTR//vy/uPl9jTXWyNy5cwdTEACMmAsuuCDf/va385Of/CQXXnhh1x4qW3vttfOUpzwl++yzTw455JA8+tGP7sq+o2bBggX59re/nR/+8Ic5//zzc/XVV2fZsmVd23/KlCnZfffds++++2bffffNU5/61MyaNatr+69KPvrRj+btb397y5jZs2fnt7/9bebMmdOnquinW2+9NWeeeeaffs+79957u7b3nDlzsvfee+c5z3lOnv3sZ2eLLXr2mMTQueiii/Kd73wn5513Xi688MLcfffdXd1/ww03zD777JN99903+++/f3bYoendlsCfu+uuu3LiiSfmG9/4Ri644II8/PDDHe0za9as7LfffnnBC16Qww8/fJUZjDJItdb85Cc/yRlnnJFzzz03l112Wbr13OnUqVPzhCc8IU972tNy6KGHZpdddunKvjBoH/zgB/Oe97ynZczaa6+dW265ZbXp61f1a+Q///nPs+eee/75t/estf58EPWsjMEBrBZKKccleW+LkDNqrX/dw/zfTPLcFiHvq7W+v1f5O1VKmZZkYZKpLcJ2q7Ve2qP8uye5qEXI4iSza61LepG/2wwOoJdGbXDAnDlzss8++2TTTTcdUFUAAAAAAAAA0F2r+k2RANBPS5YsyUUXXZSrrroqN954Y37961/npptuyt133537778/999/fxYtWpRSSmbNmvWnr/XXXz9bbbVVttpqq2y99dbZdddds+OOO2bSpEmD/iUNnfvuuy+//OUvc91112X+/PmZP39+br755vz+97/PokWLsmjRojzwwAN56KGHMm3atKyxxhpZY401ss4662TjjTfOJptsks033zyPecxjstNOO2X77bf3EqE23Xvvvdlyyy1zzz33tIz7xCc+kde+9rX9KYqBqbXmhhtuyMUXX5wrr7wyt956a2677bb85je/yYIFC/LAAw/kwQcf/D//Lc6YMSNrrbVWNt1002y22WbZfPPNs9NOO2X33XfP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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 11, + "source": [ + "onc_plot_roc_no_threshold(y_true=calibrated_results.y, \n", + " y_pred=calibrated_results.p_calibrated, \n", + " model_name='./results/mlp_calibrated');" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n", + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n", + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n", + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n", + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n", + "The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAKCkAABsQCAYAAADSk/A1AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAJnKAACZygHjkaQiAAEAAElEQVR4nOzOwW0UAQBD0Vlrr0wBiPRfWIACkgKGAghCK7Sygt8729K/Xdd1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+XdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsSDsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVqQdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACvSDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAVaQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAirQDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYEXaAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAi7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYkXYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArEg7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFakHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr0g4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAFWkHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwIq0AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGBF2gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwIu0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWJF2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKxIOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWpB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK9IOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgBVpBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMCKtAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgRdoBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsCLtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFiRdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsSDsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVqQdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACvSDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAVaQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAirQDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYEXaAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAi7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYkXYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArEg7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFakHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr0g4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAFWkHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwIq0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AAAAAAAAAAAAAAAAAGPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAsehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBYdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYCy61gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwFl3rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAsehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBYdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYCy61gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwFl3rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAsehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBYdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYCy61gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwFl3rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAsehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBYdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYCy61gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwFl3rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAsehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBYdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYCy61gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwFl3rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAsehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBYdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYCy61gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwFl3rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAsehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBYdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYCy61gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwFl3rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiLrnUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjEXXOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGomsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGPRtQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAsehaBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBYdK0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYCy61gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwFl3rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiLrnUAAAAAAAAA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Nz3JoUn+qaG9MaGUskmSQxqevbThPQAAAAAAAAAAAAAAACaQO++8MxdddFG+//3v59lnn+06pxNbbLFF3v3ud+ctb3lLent9BR8AAAAAAAAAAAAAAAAAAIAX77HHHsvChQvz9NNPd50yYjvvvHMOOeSQbLDBBl2nAAAAAAAAAABMSO6QAADN2CnJRg1v3tjw3phVa62llJuSzG1wds8GtxihWuuqUso/JTm6wdljk/xTg3tjwbwkkxvcu7vWeleDewAAAAAAAAAAAAAAAEwAtdb89Kc/zbnnnptbb72165zO9Pf356STTsrb3va2TJ06tescAAAAAAAAAAAAAAAAAAAAxrHVq1fnuuuuyy233JJaa9c5IzJ9+vS8+tWvzo477th1CgAAAAAAAADAhNbbdQAATBB7tLB5VwubY9ldSeY2uLdng1s048tJjm5w7+hSyh/UWp9tcLNrJza8d37DewAAAAAAAAAAAAAAAIxzt956a/72b/82t956a9cpnZk+fXqOP/74vOMd78iGG27YdQ4AAAAAAAAAAAAAAAAAAADj3MMPP5xFixZlcHCw65QR22233XLQQQdl6tSpXacAAAAAAAAAAEx4vV0HAMAEsXsLm3e1sDmWNX29L2t4j5H7XpJHk2zZ0N7GSd6V5P80tNepUsrBSV7d4GRNcl6DewAAAAAAAAAAAAAAAIxjS5cuzYIFC/KNb3wjtdauczoxefLkvO1tb8tJJ52UmTNndp0DAAAAAAAAAAAAAAAAAADABLBmzZpcdtllee6557pOGZGNNtooc+bMyXbbbdd1CgAAAAAAAADAeqO36wAAmCB2bXhvsNb6eMObY90vGt7bqJSyda314YZ3eZFqratLKeck+UCDs39YSvlMrXV5g5tdafJ/lyT5Ua313oY3AQAAAAAAAAAAAAAAGIcWLVqUv/7rv85jjz3WdUonenp68uY3vznvec97stVWW3WdAwAAAAAAAAAAAAAAAAAAwAQyadKkvPrVr84PfvCDrlNetFmzZuXAAw/M5MmTu04BAAAAAAAAAFiv9HYdAAATxK4N793d8N548IsWNndJ8nALu7x4n0jyB0k2amhv+yTvS/IXDe11opRyZJIjGp79cMN7AAAAAAAAAAAAAAAAjDNPPPFEPvaxj+XHP/5x1ymded3rXpfTTz89O+64Y9cpAAAAAAAAAAAA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gIR5RihTmASZSYDMOdf/gdz911+tkn32PtdJzuu11nexVrL353rvtXMW58He6wvA8N3bh83t+7C5Iej1676nx3usv9f1YfOjtdblfdgdTc5M8pIeb76ulHJm9cl2AAAAAAAAAAAAAABgI1ZrzVe+8pWcddZZWbNmTeucYZs6dWre9ra35cUvfnFKKa1zAAAAAAAAAAAAAAAAAAAAGMPWrVuXa665JldffXWGhoZa5zxj99xzT2699dbsvfferVMAAAAAAAAAAOCXdFoHAMBG4J4+bG7fh80NQa9fdz/eG56hUsruSQ7q8eyTST7b481Rp9a6qJSyOMnRPZzdM8mhSa7s4SYAAAAAAAAAAAAAAMCosXr16pxxxhn59re/3TqlJ1784hfnrW99a7bYYovWKQAAAAAAAAAAAAAAAAAAAIxxDz30UBYsWJBHH320dUpXFi9enJ122imTJk1qnQIAAAAAAAAAAP+l0zoAADYC9/Rhc4c+bG4Iev26+/He8Mz9bh82z621Pt6H3dHo75Mc3ePNFyW5ssebAAAAAAAAAAAAAAAAzT300EM56aSTcu+997ZOGbYdd9wxp5xySqZPn946BQAAAAAAAAAAAAAAAAAAgDFu7dq1ueKKK3L99den1to6p2urVq3K5ZdfntmzZ7dOAQAAAAAAAACA/9JpHQAAG7pa64pSyoNJtu3h7B493NoglFImJNmpx7N39XiP9fOiPmye14fN0epbSVYnGd/DzRcneV8P9wAAAAAAAAAAAAAAAJq74IIL8s53vrN1xrANDAzkNa95TU466aRMnDixdQ4AAAAAAAAAAAAAAAAAAABj3P3335+FCxdm6dKlrVOGba+99sr06dNbZwAAAAAAAAAAwC/ptA4AgI3EbUm27eHeXj3c2lBMSzLQ483berzHM1RKKUmO7fHsY0ku6PHmqFVrfbyU8sMkL+7h7JGllEm11uU93AQAAAAAAAAAAAAAAGhi3bp1eetb35pFixa1Thm2/fbbL+9973uzzz77tE4BAAAAAAAAAAAAAAAAAABgjFuzZk0uu+yy3Hjjja1Thm3TTTfNzJkzs/POO7dOAQAAAAAAAACA/6HTOgAANhK3JpnRw709e7i1oejHa761D5s8M3smmdLjzZ/UWtf0eHO0+2GSF/dwbzDJQUkW93ATAAAAAAAAAAAAAABgxN19992Z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ewIAAAAAAAAAAAAAAIwhtdZ885vfzIc+9KEsX768dc6wnH/++W5oAAAAAAAAAAAAAAAAAAAAQFO11tx888255JJLsmbNmtY5wzI4OJjDDz88z3nOczIwMNA6BwAAAAAAAAAARr1Sa23dAAAbrVLKzCQLezz7RJK9aq0P9Hi370opb0nyiR7P/rDW+ls93qQHSilbJXkgyWCPp+9LsmetdUWPd0eNUsqCJLP6MH1ErfWKPuzSB6WUKUmWPtPHL126NFOmTOljEQAAAAAAAAAAAAAAY90jjzyS973vfbnwwgtbpwzLhz/84cya1Y+vbgAAAAAAAAAAAAAAAAAAAMAzt2zZsixYsCD3339/65Rh23777TN79uxMnTq1dQoAAAAAAAAAAPnFZ1PW87McU2uty/rVw6820DoAADZmtdYLk1zd49nNkvyfHm/2XSlliyTz+jD90T5s0gO11keS/KQP0zsmOaUPu6NCKeXEJP24y93dtdYr+rALAAAAAAAAAAAAAACMARdccEFe+cpX5sILL2yd0rXnP//5+cEPfpBZs/rx1Q0AAAAAAAAAAAAAAAAAAAB4Zmqtue666/LVr341999/f+ucYRk3blyOOeaYvOQlL1nfm9oDAAAAAAAAAMCY12kdAABjwEeSfKHHm39WSvlkrfXqHu/209wkW/V485Yk3+nxZt+UUnZLsqQP039Wa/18H3Z74StJXtCH3XeUUs6utd7Rh+1mSimbJvlQn+bP69MuAAAAAAAAAAAAAACwEXviiSfygQ98IN/97ndbp3Rt0003zTvf+c686EUvSimldQ4AAAAAAAAAAAAAAAAAAABj2GOPPZYFCxbkwQcfbJ0ybDvttFNmzpyZzTbbrHUKAAAAAAAAAABskDqtAwBgDPhykrlJpvVwcyDJP5VSptdaV/Vwty9KKccmeUsfps+otdY+7NI7X0vyqSSDPd6dkORfSimza61re7zd0meSPKtP21/p0y4AAAAAAAAAAAAAALCRuuyyyzJ37twN+sYGRx55ZE477bRst912rVMAAAAAAAAAAAAAAAAAAAAYw4aGhnLNNdfk6quvzrp161rnDMuECRMyffr07L333imltM4BAAAAAAAAAIANVqd1AABs7Gqta0spZyT5XI+nD07yoSR/0ePdniqlbJXky0kGezx9e5Iv9XiTHqu1PlxK+VGS4/ow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AAAAAAAAAAAAAAAAAAAAAOApGWg9ADpwSMf5l3ac39LrktSOO2qSMvx8VZL/p+O+p6TWWpO8Jck92z7VceWrO84HAAAAAAAAaO6Tn/xkHnnkkWb9Bx98cP7kT/6kWT8AAAAAAAAAAAAAAIw3a9euzXnnnZcf/vCHWbduXes5v+b666/PypUrW88AAAAAAAAAAAAAAAAAAAAAAAAAeFIDrQdABw7pcV4dcXxPrfWuHuePCaWUuUlmbvuwT7XvrLUO9anrSdVa70/ylnR7/nU4/0WllMkd9gAAAAAAAAA0ddVVV+Wb3/xm0w0f/OAHM2HChKYbAAAAAAAAAAAAAABgPKi15qabbsrixYvz85//vPWcJ7RkyZJs3ry59QwAAAAAAAAAAAAAAAAAAAAAAACAJzTQegB04NAktceZZTjzsh7njiV/3IeOmsev5ddqrRf3ofNpqbWem+Rf8vjOXiojjqcleUmP8wEAAAAAAADGhC1btuT0009vuuHlL395nvvc5zbdAAAAAAAAAAAAAAAA48EjjzyS7373u1myZEk2bNjQes6Tevjhh3PppZe2ngEAAAAAAAAAAAAAAAAAAAAAAADwhAZaD4BeKqXsnmS3bR92UHFjB5ljxR8nqR3mj8zekuS/ddg1WqclWT983OU1eXmH2QAAAAAAAADNLF68OLfcckuz/p122invfe97m/UDAAAAAAAAAAAAAMB4UGvNddddl7PPPju/+MUvWs95Wq655pqsWrWq9QwAAAAAAAAAAAAAAAAAAAAAAACA32qg9QDosf07zr+l4/wmSikHJzl424ddViWpSb5eax2z17LWekeSM9PdtajD2Sd2lA8AAAAAAADQzP3335/PfOYzTTe8613vyu677950AwAAAAAAAAAAAAAAbM/WrFmTb33rWzn//POzadOm1nOetlprlixZki1btrSeAgAAAAAAAAAAAAAAAAAAAAAAAPAbDbQeAD02s+P8WzrOb+Xlfe77n33ueybOSLJh+Lj2MLeMOJ5TStmth9kAAAAAAAAAzZ155pl57LHHmvXPmTMnr3vd65r1AwAAAAAAAAAAAADA9mxoaChXXXVVzj777Nxzzz2t54zKo48+mtWrV7eeAQAAAAAAAAAAAAAAAAAAAAAAAPAbDbYeAD02s+P8WzrOb+WPOs6vScrw84W11is67hu1WuuqUspX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a1dMmjQp3nzzzdQpLc6XvvSlWL58eeoMOGbt2rXx/ve/P/L5fOqU484XvvCFeOCBB1JntDjl5eXx9a9/PXVGk7Rv37645JJLYuHChalTaKEOHjwYkydPjsWLF6dO4f+qqqqKq6++OlasWJE6BQAAAAAAAAB4m4pSBwAAAAAAUD+VlZWZ7p166qnRqVOnTDcBAKAl69atW+qEehsyZEice+650apVq9QpAAAAAAAAAAAAAAAAAAAAAAAAADRxCxYsyHxz4sSJmW9CU1dXVxfvfe97Y926dZlvFxYWRp8+feK0006LAQMGxMCBA+Okk06KDh06RIcOHaJ9+/bRoUOHqK2tjYMHD8ahQ4fi4MGD8dprr8X69euPHRs2bIh8Pp95/1tRVVUVN998czz99NOpU457rVu3jp49e0avXr3+5GPPnj2jXbt20bZt2784IiKOHDkSVVVVxz7u3r07Xnvttdi+ffuxj2vWrIkDBw4kvodv3cMPPxy33nprfO1rX0udcty4++674wc/+EGS7a5du8aAAQOOPdb269cvTjjhhD95nG3VqtWxx9iDBw/Gnj17YsOGDcceZ9esWROHDx9O0v9WfOc734mbbropTj/99NQpTcbBgwdj4sSJUV5enjrlHWnbtm2ceuqpx753TznllL/4vm3fvn20adMmjhw5EocPH47Dhw8f+/WOHTti27ZtsXXr1ti2bVts27YtXnvttaitrU1911qMw4cPx+WXX57k73XvVNu2baNfv35xyimnHDtOPvnkaN++fbRr1+7YxzZt2vzJY+LBgwdj27ZtsW7dumPH66+/nvru/E379u2Lyy67LBYvXhw9evRInQMAAAAAAAAAvEVFqQMAAAAAAKifysrKTPdKSkoy3QMAgJbutNNOi3Xr1sXGjRtTp7xtnTt3jgkTJkSvXr1SpwAAAAAAAAAAAAAAAAAAAAAAAADQDOzbty9WrVqV+e7EiRMz34Sm7p//+Z/j8ccfz2SrR48eMWbMmBg7dmyMHTs2RowYEa1bt673ed98882YN29ezJs3L5566qmoqKhogNqG88wzz8QDDzwQU6dOTZ1yXOjdu3cMGjQoBg0aFGefffaxX/ft27fRNvP5fGzatClWrFgRK1asiKVLl8bs2bNj586djbZZX9/4xjfikksuidGjR6dOafEqKiriox/9aCZbrVu3jhEjRsS4ceNi7NixMWbMmOjevXu9z1tdXR1Lly6NefPmxdy5c+Opp56KqqqqBihuGEePHo0vfvGL8cADD6ROaRKqq6tj+vTpUV5enjrlLTnhhBNi9OjRx54fDBkyJHr37h25XK5Bd44cORKrVq2K5cuXHzsqKyvj1VdfbdCd40FdXV1cf/318eyzz6ZO+Ztat24dw4YNi1GjRsXIkSNj1KhRcfbZZ0dBQUGDnH/nzp3Hnn/OnTs3XnrppaitrW2QczeEjRs3xtSpU2POnDnRqlWr1DkAAAAAAAAAwFtQlDoAAAAAAIB3bv/+/bF+/fpMN0tLSzPdAwCAli6Xy8W4ceNi+/btTeriOn9PLpeL0tLSGDFiRBQVefkJAAAAAAAAAAAAAAAAAAAAAAAAAG/NkiVLoq6uLtPNk046yfW14c888sgj8a1vfatRN0455ZR4z3veE9dff30MHz68UTa6desWU6dOjalTp0ZExIoVK+Kuu+6Ku+++OzZv3twom2/Xl770pZg8eXK0bt06dUqL0rFjxxg1alScd955cd5550VZWVl069Yt845cLhf9+/eP/v37x5QpUyIiIp/Px4oVK2L27Nkxa9aseOKJJ6K6ujrztr+ltrY2brzxxli2bFm0b98+dU6LtW/fvpg2bVocOnSo0Tbatm0bU6ZMieuuuy6mTJkS7dq1a/CNVq1aHfv/7JZbbok9e/bEvffeG3fffXfMmTOnwffeiQcffDCeffbZeNe73pU6Jal8Ph8f/OAHY9asWalT/q5Ro0bFtddeG+9617ti6NChUVhY2Oibbdu2jWHDhsWwYcP+5PObN2+OuXPnHjtWrVrV6C3N3ec+97l48MEHU2f8ha5du8bkyZPjiiuuiEsvvTQ6duzYaFvdu3ePq6++Oq6++uqIiNixY0f87ne/i7vvvjuWLFnSaLtvx6JFi+KLX/xi/PCHP0ydAgAAAAAAAAC8BQWpAwAAAAAAeOeWL1+e+WZJSUnmmwAA0NK1b98+ysrKUme8JV27do2pU6fG6NGjo6ioKHUOAAAAAAAAAAAAAAAAAAAAAAAAAM1IeXl55ptjxozJfBOash07dsQHP/jByOfzDX7uVq1axU033RTz5s2LjRs3xne+850YPnx4g+/8LUOGDIl//dd/jfXr18cvf/nLOO200zLb/lteeeWVuO2221JnNHvt27ePKVOmxI9//ON46aWXYs+ePfH000/HrbfeGlOmTIlu3bqlTjwml8tFcXFxfOpTn4qHH344tm/fHj/96U9jwoQJkcvlUudFRMSaNWviq1/9auqMFu3Tn/50vPLKK41y7pEjR8add94ZO3bsiBkzZsT06dOjXbt2jbL157p06RIf+chHYvbs2fHCCy/EFVdckcnuf+ezn/1s1NbWps5I6n/+z/8Zd911V+qMv6q4uDhuvfXWeOWVV2LJkiXxhS98IYYPHx6FhYVJu/r16xc33HBD/OxnP4uXX345duzYEXfeeWdcffXV0aFDh6RtTdFtt93WpJ7TFBUVxbRp0+LJJ5+MHTt2xG9+85u45ppromPHjpl29OjRIz7zmc/E4sWLY+3atfG5z30u2rdvn2nDX3PbbbfFjBkzUmcAAAAAAAAAAG9BQeoAAAAAAADeucrKykz32rdvHwMHDsx0EwAAjhdnnnlm9O3bN3XG31RQUBAjRoyIq666Krp37546BwAAAAAAAAAAAAAAAAAAAAAAAIBmaPHixZlvjh07NvNNaMo++MEPxo4dOxr0nO3bt49Pf/rTsW7durjjjjti3LhxkcvlGnTj7SgqKooPfOADsXr16vjZz34WXbp0SdYSEXHrrbfGvn37kjY0R6effnp85jOfiVmzZsWbb74ZDz/8cHziE5+I0tLSKChoPm/J261bt/jYxz4Ws2fPjhUrVsQHPvCBaN26deqs+NGPfpT5e14cL2bMmBF33nlng5/3ggsuiMcffzyee+65eP/73x8dO3Zs8I2345xzzokHH3wwli5dGuedd17SloqKirjrrruSNqR0//33x6233po640/kcrmYOnVqLFmyJCorK+MrX/lKk3/Pm+7du8f73//+uO++++KNN96Ihx9+OD7ykY+4JndEPPvss/H5z38+dUZERPTq1Sv++Z//OTZu3BgzZsyIiy66KAoLC1NnRcT/ee7y/e9/PzZs2BC33HJLnHDCCUl7PvzhD8fmzZuTNgAAAAAAAAAA/73m84pIAAAAAAD+QtY/sD1kyJBm9cP2AADQnORyuTj//POjVatWqVP+Qvfu3ePqq6+OESNGNJkLbQAAAAAAAAAAAAAAAAAAAAAAAADQ/LzwwguZb44dOzbzTWiqfv7zn8cjjzzSYOcrKCiIj3/847Fx48a47bbbol+/fg127oZQVFQUH/3o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AAAAAAAAAAAAAAAAAAAAAAAAgDf3yiuvJG/2798/eRNag5/85CdxzDHHZD0juX79+sVnPvOZZL0ZM2Yka1H4Kioq4r/+67+iqKgo76277ror74227qSTTor//M//zHpGJq655pooLk7zSO3WdJ1dtWpV/PznP0/e7d+/f0ybNi0qKiqSt0lr27Ztce211ybrVVVVxbRp097Rfddbs5tvvjn69OmTpHX99dcn6QAAAAAAAAAA/1iad1QBAAAAAHDA1NXVJW9WV1cnbwIAAK9XWloaEyZMeMufX1RUFMOHD48LLrgg+vbtm8dlAAAAAAAAAAAAAAAAAAAAAAAAAPDm1q9fn7zZv3//5E0odGeeeWZ87GMfy3pGZq666qooKytL0po5c2aSDq3HxIkT45Of/GTeO7/97W9jz549ee+0VZWVlfHzn/88SkpKsp6SiREjRsQ555yTpDVv3rzYvXt3kla+XXPNNbFv376kzXbt2sW0adOiR48eSbtk48c//nFs27YtWe/GG2+MYcOGJesVis6dO8cNN9yQpPXHP/4xXnzxxSQtAAAAAAAAAODNFWc9AAAAAACAt6euri5pr3///tGlS5ekTQAA4I317t07jjrqqH/4eV26dIlJkybF8ccfn+zGZgAAAAAAAAAAAAAAAAAAAAAAAADw96xfvz55s3///smbUMg6dOgQP/vZz7KekamDDjoozjvvvCStWbNmJenQunzzm9+MDh065LWxY8eOePzxx/PaaMu+8Y1vxKBBg7KekalPfepTSTqNjY3x1FNPJWnl0yuvvBK/+MUvknd/+MMfxrHHHpu8S3q7du2KH/7wh8l6l156aVx00UXJeoVm0qRJ8f73vz/vnVwuFzfccEPeOwAAAAAAAADAP1ac9QAAAAAAAN6eBQsWJO1VV1cn7QEAAG/u2GOPjY4dO77hXysqKoqRI0fG+eefH7169Uq8DAAAAAAAAAAAAAAAAAAAAAAAAADe2Pr165M3e/funbwJheyaa66JQw45JOsZmfvUpz6VpLN69ep4+eWXk7RoPbp37x6XXXZZ3jsPP/xw3htt0THHHBOXX3551jMyd/rpp8egQYOStGbOnJmkk08//vGPY9++fUmbF110UXz6059O2iQ7N954Y2zatClJq3///nHdddclaRWyH//4x9GpU6e8d379619HQ0ND3jsAAAAA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PvCBuPDCC1v0M3a2bNkSjzzySNx3333x8MMPx/bt27Oe1GIcdthhce+998app54a+/bty3pOREQ0NzfHgw8+GA8++GD0798/PvShD8V73vOeGDt2bBQXF2c9723ZunVrPPXUUzFnzpyYPXt2zJo1q8X89wwAAAAAAAAA5F9p1gMAAAAAAFqburq6pL2jjjqq4H6wDQDgQFm9enXMnDkzLzciyuVy8cQTT8R5550XJSUlB/x8AAAAAAAAAAAAAAAAAAAAAAAAAADy54QTToiZM2fGGWecEa+++mrWc/bL7t2748knn4wnn3zydb/es2fPGDp0aPTr1y/69u0bffr0iT59+kS3bt2ic+fOf/2oqKiIsrKyv35ERDQ0NMS+ffti3759sXfv3ti6dWts3rz5rx9r1qyJVatWxerVq2PVqlWxfPny2L17dxZ/fKAF6tq1a3zlK1+Jr3zlK1lPifXr18eVV14Z//Zv/xaTJ0+OSy65JE4++eQoLc3/Y3sbGxujtrY27rrrrrjttttiw4YNeW9GRHz4wx+OyZMnJ2kBheHKK6+M5cuXxw033JD1lL+xYMGCWLBgQVx99dUxbty4eP/73x8nn3xyVFdXZ/rMnbVr18aMGTNi5syZMWPGjFi4cGHkcrnM9rR0EyZMiF/96lfxgQ98IJqbm7Oe8zqrV6+Oa665Jq655pro3r17nHHGGXH22WfHKaecEj179sx63uvs27cvXnzxxXjmmWdizpw5MWfOnFi8eLHXHgAAAAAAAAC0Yfl/tyMAAAAAQBuSy+Vi4cKFSZvV1dVJewAALcHevXtjzpw58dJLL+W1s2XLlnj22WejpqYmrx0AAAAAAAAAAAAAAAAAAAAAAAAAAA684cOHx5w5c+L000+PJUuWZD3ngNuwYUNs2LAh6xlAG/WFL3whfvGLX+T9PsFvVX19fdx+++1x++23R6dOneJd73pXnH766TFu3LgYNmxYtGvXbr8bu3fvjrq6unj88cfj8ccfj9mzZ8eOHTsOwPq37vDDD4+f/vSnSZtAYfjxj38ca9asifvvvz/rKX/XU089FU899VRERHTq1CnGjRsX48ePj+OPPz6OOuqoOPjgg6OoqOiANvft2xdLliyJRYsWxcKFC2PRokWxYMGCWLFixQHttAXve9/7YteuXfHxj388crlc1nPe0KZNm+K2226L2267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LYply5ZFW1vbO5fly5dHbW1t0jZgcti3b19s3749Xnrppdi5c2fs3r07rl69Ouq7s2bNirvvvjtWrlwZq1atio0bN8bixYtHfRdgvDt37lzs3Lnzna/Z+/bti0OHDsX169czb5k1a1a0trbGkiVLor29PVatWhWrVq2KefPmZd7CyBsYGIhKpRJ79uyJ3bt3x969e+PgwYPx6quvxo0bN5I05XK5uO2226K1tTUWL178zqVYLEapVIqGhoYkXQAAAAAAAMD45nWdvB+XLl2K5ubm93NIc7VavTRaPby7XLVaTd0AAADAj8jlck0RcdOv6r148WI0NTWNYhEA8F4+97nPxfbt2zPb6+joiK985SuZ7QEA/KhqtRp9fX2xffv2GBgYSJ0zLDU1NbF27doolUqRy+VS5wAAAAAAAAAAAAAAAAAAAADAuOPNbAAAACBb58+fj9deey1ee+21OHXqVLz22mtx5syZuHDhQly4cCEuXrz4zsfr16/HwMDAD11u3LgRNTU1USgUolAoRG1tbUyZMiWamppi+vTp0dTUFC0tLTF79uyYM2dOzJkzJ+bOnRt33HFHtLa2RktLS+rfAoAfMjg4GPv374+jR4/GiRMnfujy5ptvxrVr1+LatWtx9erVuHbtWly/fj1qamqitrY26urqoq6uLhobG+PWW2995zJr1qy44447YuHChbFo0aJobW2N2bNnp/6lAkwYQ0NDcfz48Th8+HCcPHkyTp06FadOnYozZ87E+fPn3/nz7KVLl6K/vz9u3LjxQ3+Wrauri/r6+ne+jtfX10dzc3PMmDEjZs6c+c7HmTNnxvz586O1tTUWL14cjY2NqX/pJHDjxo04evRoHD16NF577bU4ffp0nD59+p3726VLl965v127du2d+9rAwEAMDQ1FbW3tO/e3+vr6d/67oaEhWlpa3rmv/eBl1qxZsWDBgmhtbY2GhobUvwUAAAAAAADABON1nbwfly5diubm5vdzSHO1Wr00Wj28u0LqAAAAAACA8WpoaCh6e3sz3SyVSpnuAQD8oIsXL0ZPT0+cPn06dcqw3XbbbdHZ2fl+n9gAAAAAAAAAAAAAAAAAAAAAAAAAAADJtLS0REtLS6xYsSJ1CsCYUFNTE21tbdHW1pY6BYCblM/no7W1NVpbW1OnMAkUCoVYunRpLF26NHUKAAAAAAAAAMC7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KJ566qlYtmxZ6pxN0qpVqzj77LPj7LPP9vwEbISFCxfG888/H08//XS89957kclkUidlXfv27ePUU0+N0047LTp16pQ6hxxbu3ZtTJw4McaMGbPubcKECVFaWpqsyccWqaqWL18eu+66a5X5nJgbbrghbrzxxtQZVdaiRYuibdu2Wfn9/VtvvRWHHXZYpd+FDeHrOtkQS5cuja222mpDfshWmUxmabZ6+M8KUgcAAAAAAPwnuf4CZk9mAPyvtm3bRps2bWLGjBkREdGhQ4c44IADom7duonLAAAAAAAAAAAAAAAAAAAAAAAAAAAAgO+yZMmSGD16dIwePfpb316/fv3Ya6+9Yr/99ov99tsvDjzwwNhxxx0TVVLTLF26NJ555pl4+OGH/+3/e5u7cePGxbhx4+K6666LHj16xNlnnx1HH310FBR4KVk23hdffBFPPfVU/PWvf40JEyakzqnS1qxZE4MHD47BgwdHQUFBHH744dGrV684/vjjo379+qnzIGuuuuqqWLFiRaXf7dGjR3Tp0qXS71L5RowYEVOmTEna0L9//zjttNOSNgAQMW3atPjrX/8af/vb32LatGmpc6q0FStWxIABA2LAgAFRr169OOqoo+LMM8+MHj16eBwPADXckCFD4ne/+128++67qVMqzaxZs+L666+Pm2++OX72s5/F1Vdf7XWbYT288cYbcc8998SQIUOivLw8dU5OTZs2LX7729/Gb3/729h9993jggsuiF69ekW9evVSp1HJKioqYtKkSTFmzJh1bx9//HGsWrUqdRpUC1dffXXMmjUrdQbradttt41LL700+vbtW+m3L7nkkhg/fnzUqlWr0m8DsPnyjBQAAAAAUOVkMpmYPHlyTjd9shvA/++ggw6KpUuXxg9+8IPYaaedUucAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG2nVqlUxcuTIGDly5Lpv23nnnePQQw+Nww47LH784x9Ho0aNEhZSHU2ZMiXuvvvuePLJJ2PlypWpc6q08vLyePXVV+PVV1+N5s2bxwUXXBDnn39+NGnSJHUa1UQmk4k33ngjHnjggXjttdeioqIidVK1s3bt2nj99dfj9ddfj0aNGsXJJ58cvXv3jgMOOCB1GlSqkSNHxlNPPVXpd/Py8uKWW26p9LtkR//+/VMnxNtvvx2zZ8+Oli1bpk4B2OysXbs2XnzxxXjggQdi+PDhqXOqpdWrV8cLL7wQL7zwQjRt2jROP/306N27d+y2226p0wCASjR48OC44YYbYsyYMalTsqasrCz69+8fjz/+eJxwwglx8803R1FRUeosqFLKysri6aefjjvvvDM++eST1DlVwoQJE+Lcc8+NPn36xIUXXhjnn39+bLPNNqmz2AgVFRUxZcqUGDNmzLq38ePHx4oVK1KnQbU0bNiwePDBB1NnsIEuv/zy6NevXyxevLhS73766afx4IMPxoUXXlipdwHYvOWnDgAAAAAA+FcLFiyIpUuX5nSzsLAwp3sAVVmDBg3ixBNPjJ122il1CgAAAAAAAAAAAAAAAAAAAAAAAAAAAFDJpk6dGg899FCcfPLJsd1228WPf/zjePDBB+Orr75KnUYVN2LEiDj++OOjqKgoHnrooVi5cmXqpGrlyy+/jD59+sROO+0UF110UUyfPj11ElVYSUlJ3HvvvVFYWBg9evSIQYMGRUVFReqsam/p0qXx8MMPx4EHHhidO3eOhx9+2K9l1AgVFRVx8cUXZ+X2ySefHJ07d87KbSrXihUr4rnnnkudERUVFfH444+nzgDYrCxYsCBuvvnmaN26dZxyyikxfPjw1Ek1wsKFC+Oee+6J3XffPbp16xbPPfdclJWVpc4CADbBhAkT4kc/+lEcddRRMWbMmNQ5OVFRUREvvPBC7L777nHBBRfEokWLUidBcitXrozf//730aZNmzjzzDPjk08+SZ1U5SxcuDCuv/76aNmyZVxwwQUxZ86c1El8j0wmE1OnTo2nn346Lr/88ujWrVtsvfXWUVRUFGeccUbce++9MXLkyFixYkXqVKiWVq1aFWeffXZkMpnUKWygRo0axdVXX52V2zfccEN8/fXXWbkNwOYpP3UAAAAAAMC/mjJlSk736tSpE61atcrpJlBzlJaWxrvvvhsLFy5MnVKp8vLyUicAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWbZmzZp488034/zzz48WLVrEUUcdFU8//XSUlpamTqMKGTFiRHTr1i26dOkSf//736OioiJ1UrW2cuXKeOCBB6JDhw5x1llnxaxZs1InUYUsWrQorr322mjZsmVccsklMXXq1NRJNdb48ePjF7/4Reywww5x1VVXxbx581InwUZ75JFH4qOPPqr0uwUFBXHzzTdX+l2y4/nnn4/ly5enzoiIiMceeywymUzqDIAab86cOXHhhRdGq1at4vrrr48vvvgidVKNNWzYsDjllFOiZcuWccstt8SSJUtSJwEAG2DZsmVx/vnnR+fOnWPIkCGpc5JYu3Zt/PGPf4z27dtHv379PG5ns/XMM89EYWFhXHXVVR5DrYeVK1fGH//4x+jYsWP07ds3Vq1alTqJiJg+fXo899xzcdVVV8Whhx4ajRs3jg4dOsTpp58ed999dwwbNiyWLVuWOhNqjOuuuy6mTZuWOoONdOGFF0aLFi0q/e7XX38dffr0qfS7AGy+8lMHAAAAAAD8q8mTJ+d0b+edd45atWrldBOoGWbMmBHPPfdcTJkyJYYOHRrl5eWpkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2ytq1a2Pw4MFx+umnx4477hi//vWvY+bMmamzSGjcuHFx5JFHRpcuXWLYsGGpc2qc8vLyeOyxx6JDhw5x8cUXx4IFC1InkdCCBQviyiuvjNatW8fvfve7WLp0aeqkzcY333wTv//976NNmzZxzjnnRHFxceok2CAlJSVx7bXXZuX2z3/+89h5552zcpvK9+ijj6ZOWGf69OkxdOjQ1BkANdb06dPjf/7nf6Jdu3bRr1+/KC0tTZ202fjyyy/juuuui5YtW8Zll10Wc+bMSZ0EAPwXgwcPjl122SUefPDBqKioSJ2TXElJSVx44YXRrVu3mDJlSuocyJlx48ZFly5d4rTTTou5c+emzql2Vq5cGTfccEMUFRXF888/nzpnszJr1qx44YUX4pprronu3btHkyZNol27dnHKKafE73//+3jnnXeipKQkdSbUWB9++GHcc889qTPYBPXr14/rrrsuK7cfeuih+OSTT7JyG4DNT37qAAAAAACAf5XrL7YtLCzM6R5Q/a1atSqGDBkSQ4YMiVWrVkVExJIlS2LcuHGJywAAAAAAAAAAAAAAAAAAAAAAAAAAAAA23aJFi+L222+P9u3bx09/+lMvqLyZmT9/fvzsZz+LvffeO1577bXUOTXemjVr4v7774927drFLbfcEqWlpamTyKHly5fH9ddfH23bto0777wzVqxYkTpps7VmzZp45JFHoqioKE499dSYPHly6iRYL7fcckt89dVXlX63oKAgrr322kq/S3ZMmzYthg8fnjrjW/r37586AaDGWbRoUVx44YVRWFgYf/nLX6KsrCx10mZr+fLl8Yc//CHatWsX5513XsydOzd1EgDwL1auXBm9e/eOo446KubMmZM6p8oZPnx47LHHHnH//fenToGsWrp0aZx33nmxzz77xIgRI1LnVHuzZs2Kk08+OQ4++OCYOnVq6pwaZ+7cufHyyy/HddddF0cccURst9120bp16+jZs2fcdttt8dZbb8WSJUtSZ8Jmo7S0NHr37h0VFRWpU9hEZ599duy4446Vfre8vDyuvPLKSr8LwOYpP3UAAAAAAMC/Ki4uzulex44dc7oHVF+ZTCamTp0azz33XMyYMePf/v748eNj8eLFCcoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKl95eXk89dRTsccee8QJJ5wQkydPTp1EFq1duzbuuuuuKCwsjL/97W+RyWRSJ21WVqxYEdddd13stttu8frrr6fOIcsqKiri4Ycfjp133jluvvnmWLlyZeok/p9MJhPPPvts7LrrrnHmmWfG559/njoJvtOcOXPi/vvvz8rtM844I1q3bp2V21S+/v37p074NwMGDIhly5alzgCoEUpLS+OOO+6I9u3bR79+/WLt2rWpk/h/ysrK4qGHHor27dvHr371q/jyyy9TJwEAETFx4sTYd999q+Tj5apk9erVcfHFF0fPnj2jpKQkdQ5UutGjR8dee+0VDz30UFRUVKTOqVGGDh0ae+21VzzxxBOpU6qt+fPnx8CBA+OGG26Io446Kpo3bx477bRTnHDCCXHLLbfEG2+8EYsWLUqdCZu1vn37xsSJE1NnUAnq1KkTV111VVZuv/HGG/H2229n5TYAm5f81AEAAAAAAP+spKQk558cX1hYmNM9oHpavnx5vP766/HOO+9EaWnpf/w+FRUVMWzYMJ84CAAAAAAAAAAAAAAAAAAAAAAAAAAAANQomUwmXn755dhtt93ivPPOi0WLFqVOopKNGDEi9thjj7jiiiti2bJlqXM2a1OnTo0ePXrEiSeeGPPmzUudQxaMHDky9txzz/jFL36R89foYP2Vl5fHE088EUVFRXHJJZfE119/nToJ/s11110Xq1evrvS7tWrVit/85jeVfpfsqKioiCeeeCJ1xr9ZuXJlPPvss6kzAKq9V155JTp27BhXX311lJSUpM7hO5SWlsZ9990X7du3j759+8bKlStTJwHAZuvpp5+O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t46tttoqttpqq2jUqFHUqVMnateuHbVr1446derE2rVrY82aNeveVq5cGUuWLImvv/46vv7661i8eHHMmTMnZs+eve5tzpw5UVFRkfrdhiqprKwsbrnllqzdv+yyyyI/Pz9r96l8/fv3T52wwcaPHx/jxo2Lzp07p04BSCKTycSVV14Zd911V+qUrCgoKIg2bdpEu3bt1j12aNGiRTRv3nzdY4etttoqGjZs+K3HD7Vr146ysrJ1jx3Kyspi+fLl8fXXX697DLFo0aJvPXaYNWtWzJs3L/W7DADk2NSpU+OnP/1plfoYYl5eXuy3337xk5/8JH784x/HrrvuGnl5ed/7Y2rVqhV16tSJRo0aRbNmzWL33Xf/1t8vKyuLMWPGxKuvvhovvvhiTJ48OZvvwgZZsGBB/OQnP4mhQ4euew4Gcu3yyy+PsWPHps74XjvttFN07949unfvHj/4wQ+iTZs2//XXhn+25ZZbxpZbbrnuvxcVFf3H7zdr1qwYNWpUDBkyJIYMGRIzZ87c1PSsWbx4cZx22mkxbNiwKCgoSJ0DsM4vfvGLWLFiReoMErniiivilVdeycrtBx98MK688spo1qxZVu4DUPN4pAQAAAAAVAmzZs2KNWvW5HSzsLAwp3tAOmvWrIkPP/wwJk2alLTjvffeix122MEfggMAAAAAAAAAAAAAAAAAAAAAAAAAAABsNkaPHh1nnHFGDBgwIHXKZqGkpCSOPPLIeO+991KnrLfGjRvHEUccEcccc0x07949tt1225zu169fP/bdd9/Yd99945xzzomIiHnz5sXrr78eAwcOjCFDhlSbF6W/5pprYuXKldG3b9/UKZuFa665Jm677bbUGZWiWbNmsffee8fee+8dnTt3jg4dOkT79u2jbt26G3Wvdu3aUbt27dhiiy3WfVubNm2+98esXLkyJk2aFBMnToyJEyfG2LFjY9SoUVFSUrJRDVCT9O/fP2bOnJmV29ttt12ceeaZWblNdsybNy/eeOON1BkbpX///tG5c+fUGQA5t3bt2jjrrLPir3/9a+qUSrHTTjute/yw5557RocOHaJt27ZRUFCwUffq1KkTderUWfffmzVrFu3atfveH7N06dJ1jx0+++yzGDNmTIwdO7baPH4HADbMqlWr4oQTTohvvvkmdUpERDRt2jR69+4d5557brRu3bpSb9euXTsOOOCAOOCAA+KWW26JcePGxYMPPhhPPfVUlfi9zocffhgXX3xxPPTQQ6lT2Ay98sor0a9fv9QZ/1GrVq2iV69ecfrpp0fHjh1zttmqVas46aSTIiJi2rRp8fTTT8fjjz8en3/+eU4aNsT7778fN910U9x8882pUwAiIuIvf/lLvPXWW6kzSKhLly7xgx/8IEaNGlXpt1euXBm33XZb/OEPf6j02wDUTBv3LBsAAAAAQCUrLi7O6V6jRo2iWbNmOd0E0pg9e3YMHz68Snwy7OrVq+O9996Lww47LHUKAAAAAAAAAAAAAAAAAAAAAAAAAAAAQM688MIL8Yc//CEuvfTS1Ck12rJly6J79+4xevTo1Cn/1RZbbBEnnHBC9OrVKw455JAoKKhaL7HaokWL6N27d/Tu3TtKS0vj9ddfj8cffzwGDRoUa9asSZ33vW6++eYoLy+PW265JXVKjXbppZfGPffckzpjo7Vt2zYOPvjgdW877bRT6qRo0KBB7L333rH33nuv+7ZMJhOTJk2KDz/8MIYNGxZvvfVWzJ07N2El5N6aNWuy+mv6hRdeGPXq1cvafSrfE088EeXl5akzNspTTz0Vd955Z9SpUyd1CkDOrF27Nk477bQYMGBA6pSN1qlTp3WPHbp16xZNmzZNnRSNGjWK/fffP/bff/9131ZeXh4TJkyIDz/8MIYOHRpvv/12fPXVVwkrAYDKcvnll8dnn32WOiOaN28eV199dZx33nk5+3hK586d489//nPceuutceedd8YDDzwQy5cvz8n2d/nzn/8cPXr0iOOPPz5pB5uXJUuWxLnnnps641vy8vLiuOOOi4suuigOOeSQyMvLS9rTvn376NOnT/Tp0yeGDRsW/fr1iwEDBkRFRUXSrn922223xYknnhidO3dOnQJs5ubOnRtXXHFF6gyqgCuuuCJOPvnkrNz+05/+FFdddVVsv/32WbkPQM2SnzoAAAAAACAiori4OKd7HTt2TP5JN0B2rV69Ot555514/fXXY8WKFalz1vn8889j5syZqTMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcurqq6+OUaNGpc6osVatWhXHHHNMjB49OnXK99p9993j4Ycfji+//DKefPLJ6N69exQUFKTO+l5169aN4447Ll588cWYP39+/OEPf4g2bdqkzvpev/vd7+L3v/996owa6/LLL4977rkndcYGqVWrVnTt2jXuvPPOmDp1anz++efxyCOPxBlnnBE77bRT6rzvlJeXF506dYqzzjor+vfvH3PmzImJEyfGfffdFz/+8Y+jdu3aqRMh6x555JGYPXt2Vm7XrVs3fvnLX2blNtnz2GOPpU7YaIsXL46///3vqTMAcqa8vDx++tOfxoABA1KnbJC6devGEUccEX/84x9j7ty58dlnn0W/fv3ipJNOiqZNm6bO+061atWKzp07x3nnnRdPP/10LFiwID766KO4/fbbo0uXLpGfn586EQDYCIMGDYoHH3wwaUOdOnXi6quvjmnTpsUll1wS9erVy3nDNttsE7feemtMmzYtzjjjjJzv/6tzzjkn5s+fnzqDzcjll18eX375ZeqMiPjf5y5+8pOfxPjx4+Oll16KQw89tMq9VnrXrl3j2WefjU8//TROP/30qFWrVuqkiIhYu3ZtnH322VFeXp46BdjMnXvuubF06dLUGVQBJ554YrRs2TIrt1evXh233XZbVm4DUPN4FgsAAAAAqBKKi4tzuldYWJjTPSC3pk+fHs8//3xMnTo1dcp/NGLEiCgtLU2dAQAAAAAAAAAAAAAAAAAAAAAAAAAAAJutU045JTKZTJV4W7t2bSxfvjwWL14cX3zxRUyfPj3GjBkTgwYNikceeSRuueWWuOCCC+KQQw6JZs2apf5Ht9HKysrizDPP9Gc0Z0FZWVn07Nkzhg4dmjrlO/Xo0SPefvvt+Pjjj+Pss8+OLbfcMnXSRmnSpElccsklMW3atHjppZfigAMOSJ30na666qr485//nDqjxrnqqqvi7rvvTp2x3vbZZ5+47777Yv78+TF06NC4/PLLo3379qmzNklRUVFcdNFF8frrr8fChQvj8ccfj+OOOy7q1auXOg0q3dq1a+OOO+7I2v2TTz45tttuu6zdp/KNHDky56/1VNn69++fOgEgJ8rLy+OMM86I5557LnXKesnLy4uDDz44Hnnkkfjqq6/itddei1/+8pexww47pE7baHl5edG5c+e46qqrYtiwYTFv3rx48MEHo3v37lGrVq3UeQDAeli4cGH07t07acNee+0V48ePj9tuuy222GKLpC0REc2aNYsnnngi3n333WjZsmWyjsWLF8eZZ56ZbJ/Ny4cffhiPPfZY6oyIiNhll11i5MiRMWDAgNh9991T5/xXRUVF8be//S1GjRoVe+21V+qciIgYN26c5zCBpJ544okYPHhwVm7n5eVl5S7ZU6tWrTj33HOzdv8vf/lLfPXVV1m7D0DNkZ86AAAAAAAgk8nk/AvXOnTokNM9IDdWrlwZQ4YMibfeeitWrVqVOuc7rVy5Mj744IPUGQAAAAAAAAAAAAAAAAAAAAAAAAAAAEAVUKtWrdhiiy2iSZMm0aJFi2jTpk3svffeceSRR0bv3r3jN7/5TTzwwAPxj3/8I7788stYvHhxDB06NH7729/G4YcfHg0aNEj9Lqy3yZMnx4033pg6o0bJZDLRq1evrL2A+qY6/PDD4/3334/BgwfHoYcemjqn0uTn58fxxx8f7733XgwaNCj23nvv1En/0S9/+ct49tlnU2fUGDfeeGP8/ve/T53xXzVq1Ch+9atfxaRJk2L06NFx0UUXxXbbbZc6Kyu23nrr6NWrV7z88ssxb9686NevX+y7776ps6DSPPvsszFz5sys3b/ggguydpvs6N+/f+qETfbmm2/GF198kToDIOvOOeecePrpp1Nn/FdNmzaNPn36xMyZM+Odd96J3r17R8OGDVNnZUWzZs3ivPPOizfffDPmzJkTt99+exQVFaXOAgC+xyWXXBILFy5Mtn/ZZZfF+++/XyV/z9CtW7f4+OOPo2fPnskahgwZUiM+VkHVd+mll0Ymk0naULt27ejbt2+MGzcuDjjggKQtG2OvvfaKUaNGxV133RX169dPnRM33HBDLF26NHUGsBn68ssv49JLL83K7V133bVa/juC//1Ybp06dbJye9WqVXH//fdn5TYANUt+6gAAAAAAgAULFuT8EzoKCwtzugdkVyaTiSlTpsTzzz8fM2bMSJ2zXoqLi2Pu3LmpMwAAAAAAAAAAAAAAAAAAAAAAAAAAAIBqpkmTJtG1a9e49tprY8iQIfHNN9/E0KFD4/zzz4/tttsudd5/deedd8bEiRNTZ9QY11xzTTzzzDOpM/5Np06d4q233oohQ4bE/vvvnzonq4488sgYM2ZMPPXUU9GiRYvUOd9SUVERZ555Zrz//vupU6q9hx9+OG666abUGd+rTZs2ce+998bcuXPjnnvuiY4dO6ZOyqnGjRvH+eefH6NGjYpPP/00Lrroothyyy1TZ8Emuf3227N2e++994799tsva/epfCtWrIjnnnsudcYmKy8vjyeeeCJ1BkBWXXfddfHYY4+lzvheu+22W/Tv3z9mz54dffv2jZYtW6ZOyqntt98+rrrqqpg4cWJ88MEH0atXr6hTp07qLADgn7zxxhvx9NNPJ9muW7duPPnkk3HXXXdV6d8jbL311vH888/HTTfdFHl5eUkarrzyyli0aFGSbTYPf//735M/z9WsWbP4xz/+EX369InatWsnbdkUtWrVissuuyzee++9aNOmTdKWr776Ku66666kDXy/HXfcMY477ri4+eabY/DgwfH888+nToJKccEFF8TXX39d6Xfz8/Pj4Ycfrtb/nticNW3aNHr27Jm1+/369YsVK1Zk7T4ANUN+6gAAAAAAgOLi4pzu1a1bN1q3bp3TTSB7li9fHq+//nq8++67UVpamjpngwwfPjzKyspSZwAAAAAAAAAAAAAAAAAAAAAAAAAAAADVWO3ataNr167Rr1+/mDdvXrz22mtxwgknRF5eXuq0/2jt2rVx2WWXpc6oER577LG4/fbbU2d8S8OGDeOuu+6Kjz/+OA477LDUOTl12mmnRXFxcVx99dVRUFCQOmed0tLSOP7442PWrFmpU6qtQYMGxXnnnZc64zu1bt06/vKXv8SUKVPi4osvjoYNG6ZOSm6XXXaJ++67L+bOnRt33nmn1ymhWho8eHB88sknWbt/wQUXZO022TFgwIBYtmxZ6oxK8dhjj6VOAMiahx56KG655ZbUGd9pt912i+effz4+/vjj+PnPfx5169ZNnZTcfvvtF48//njMnj07rr/++mjatGnqJADY7K1cuTJ++ctfJtlu2LBhDBkyJH72s58l2d8Y119/ffz1r39N8tzE4sWLPe9HVv32t79Nur/PPvvEmDFj4oc//GHSjsq05557xpgxY6J79+5JO+67775YunRp0gb+V4sWLeLYY4+Nm266KQYNGhQLFiyIOXPmxMsvvxzXXXdd9OjRI7bddtvUmbDJnnvuuXjxxRezcvvCCy+M/fbbLyu3yY1sPnf69ddfx1/+8pes3QegZshPHQAAAAAAUFxcnNO9nXfeOfLzfXgUqrtMJhMTJ06M559/PubMmZM6Z6MsW7YsRo0alToDAAAAAAAAAAAAAAAAAAAAAAAAAAAAqCEKCgriiCOOiBdffDEmTpwYvXv3jjp16qTO+jdvvPFGvPbaa6kzqrVhw4bFueeemzrjWw455JCYMGFCXHbZZVFQUJA6J4ktt9wybrvttvjggw+iU6dOqXPWWbhwYRx99NGxbNmy1CnVzujRo+OUU06J8vLy1Cn/Zptttol+/frFlClT4pxzztlsf959n6222iouv/zy+Pzzz+Nvf/tbFBUVpU6C9Xbbbbdl7XaTJk3i1FNPzdp9suPRRx/N+kbDhg3jtNNOy/rOlClTYuTIkVnfAci1gQMHxgUXXJA64z9q2bJlPP300/Hxxx9Hz549Iy8vL3VSldOsWbO46aabYvbs2dGvX7/YaaedUicBwGbr1ltvjRkzZuR8d+utt4633norunTpkvPtTXX66afHs88+m+R5wSeffDKGDx+e811qvjfffDPGjBmTbP+ggw6Kd955J3bcccdkDdnSpEmTGDRoUJxwwgnJGr755pv44x//mGx/c7X99tvH0UcfHTfeeGMMHDgw5s+fH1988UX8/e9/j+uvvz6OPPLIaNq0aepMqHSLFy+Oiy66KCu3W7ZsGbfccktWbpM7Bx54YOy5555Zu3/33XdHWVlZ1u4DUP3lpw4AAAAAAJg8eXJO9woLC3O6B1S+kpKSePXVV2PEiBHV/knxr7/+OioqKlJnAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVMx44d45FHHolJkybFkUcemTrn39x4442pE6qtWbNmxYknnhhr1qxJnRIREXXr1o1777033n777WjdunXqnCph7733jo8++iguu+yyyMvLS50TERGffvpp/PSnP41MJpM6pdr48ssv4/jjj48VK1akTvmWgoKCuOiii2Lq1Klx/vnnR+3atVMnVXn5+flx+umnx6effhpPP/107LLLLqmT4Hu9//77MXz48Kzd7927d9SvXz9r96l8n3/+eVb/P/F/evbsGeedd17WdyIiHn300ZzsAOTKxIkT4/TTT4/y8vLUKd/SoEGDuPHGG2Py5Mlx6qmnVpnHqFVZ3bp14/zzz49p06bFgw8+GK1atUqdBACblblz58Zdd92V89369evH4MGD4wc/+EHOtyvLiSeeGE888UTk5+fnfPvyyy/3/AOV7r777ku2feCBB8brr78eW265ZbKGbKtdu3Y8++yzceKJJyZr+NOf/uR1nbOoefPmcdRRR8X1118fr7zySsybNy/mzZsXAwcOjBtuuCGOPvroaN68eepMyImLLroo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1v11u3bt4qCDDsr65vDhw+Pzzz/P+g5AtowcOTL69u2bOmOd8847L95///1o165d6pQarUOHDvH222/HE088Edttt13qHACoMT766KN49dVXc7rZsmXLePjhh3O6mSt16tSJp59+Oho2bJjT3dtvvz1KS0tzuknNM378+JgyZUrOd3v27Bk9e/bM+W5V0blz5/j1r3+d893Vq1fHK6+8kvPdqqhJkybRvXv3+PWvfx0DBgyIGTNmxKJFi+KNN96IW265JU488cRo2bJl6kyoNt58882sPcfSvXv3bz2vQs2xzz77xG677Za1+2+99VZMmjQpa/cBqL7yUwcAAAAAAJu3XH+yTseOHXO6B2yc8vLyGDVqVLz88suxePHi1DmbpH79+nH44YdH9+7do0GDBqlzAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIi4he/+EU89NBDkZeXl7TjmWeeidWrVydtqOoymUz07t07SkpKknbk5+fHI488EpdffnnSjuqsoKAgHn300bj44otTp8TgwYPj4YcfTp1RpaxduzZ+9rOfxfLly1OnRF5eXtx0003x4osvxtZbb506Z7PRo0eP+Oyzz+LKK6+M/Hwv/UzuPfLII7FixYqs3T/11FOjXr16WbtP5VuyZEm8/PLLWd/Zf//9Y+edd/7Wt/Xq1Svru5lMJh577LGs7wBkw9KlS+NnP/tZlJeXp06J2rVrx8MPPxwPPvhg1K1bN3XOZuOMM86I4uLiOPPMM1OnAECN0Ldv35zu5efnx+OPPx6NGjXK6W4utWnTJu67776cbn7xxRfxyCOP5HSTmmfQoEE539xyyy3jnnvuyfluVXPNNddEhw4dcr47ePDgnG+m1rhx4zjssMPiqquuiueeey6mT58eixcvjjfffDNuvfXW+MlPfhKtW7dOnQnV1vLly+N//ud/snK7QYMG8dBDD2XlNlXDWWedldX7999/f1bvA1A9+Uw1AAAAACCp4uLinO6l+AQVYMN8+eWX8cILL8T48eMjk8mkztkkO++8c5x00knRtm3b5H/ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAMC/+sUvfhF33nln0oaSkpIYNGhQ0oaqrl+/fvH2228nbahVq1Y88cQTWX8h7s3FvffeG1dccUXqjLjsssti1qxZqTOqjJtuuik+/PDD1BlRt27d+Nvf/hbXX3996pTNUv369eOOO+6IoUOHRtu2bVPnsBmpqKiIfv36ZXWjd+/eWb1P5XvqqaeitLQ06zu9evX6t287+eSTo169elnffvzxx6OioiLrOwCV7YILLoiZM2emzoitt946Xn/99Tj77LNTp2yWGjduHI899li89NJL0bRp09Q5AFBtTZgwIV555ZWcbp533nlx8MEH53QzhZ///OdxxBFH5HTztttui7KyspxuUrMMHjw455t9+vSJHXbYIee7VU3dunXjvvvuy/num2++WeM/RnjwwQfHlVdeGc8880xMmzYtvv7663jrrbfi9ttvj5NOOinatGmTOhFqlKuuuiprnwvRt29fP2druJ/97GdRu3btrN1/4oknoqSkJGv3Aaie8lMHAAAAAACbr9WrV+f8iyMKCwtzugesv7Kysnjvvfdi4MCB8c0336TO2SRbbLFFHHHEEXHIIYfk5ItlAQAAAAAAAAAAAAAAAAAAAAAAAAAAADbWZZddFqecckrShqeeeirpflU2bdq0uPrqq5M25OX9f+zdd5RX9Z34/9dnCkMvIr0XQbF3EUus2EARsTuspmraxsRNTLLfaJrZaKoa16iMNRYUNYldUVGwExVRERCQooDS+7TfH/vLbjZrjMrc9/3MzONxDifnqLyer9y5A3M/9zNzC3HDDTfEGWeckeseTc2ll14a3/jGN3LdYe3atXHOOedEfX19rnsUg2eeeSYuueSSvNeI9u3bx6OPPhqnnXZa3qs0ewcccEC88sor8YUvfCHvVWgm7r///nj77bczm7/jjjvG3nvvndl8sjFhwoTMGy1atIhTTz31//zzjh07xujRozPvL1y4MB599NHMOwAN6Y477oibb7457zWiZ8+eMW3atDj00EPzXqXZO+GEE+K1116LMWPG5L0KADRKv/zlL5O+Tt2tW7f4yU9+kqyXtyuuuCLps1UXLlwYd9xxR7IeTcv69evjueeeS9rs1KlTnHfeeUmbxWzkyJGxzz77JG1+8MEH8eqrryZtpnbPPffEz3/+8zjllFNi0KBBea8DTdqTTz4Z//mf/5nJ7L322iv+9V//NZPZFI8uXbrEcccdl9n89evXJ7kHCEDjUpL3AgAAAABA8zVnzpyoq6tL2hw6dGjSHvDxLF68OO6888547bXXGv0PoNhhhx1i3Lhx0bdv37xXAQAAAAAAAAAAAAAAAAAAAAAAAAAAAPhYrrvuuhg2bFhu/Yceeig2b96cW7+Yff7zn48NGzbkusNvfvObOOOMM3Ldoan6xS9+EWeeeWauO0yePDmuvfbaXHfIW3V1dXzuc5+L2traXPfo1KlTPProo3HAAQfkugf/o23btnH11VfHnXfeGR06dMh7HZq43/72t5nOP+ecczKdT8N79dVXY/r06Zl3jjvuuOjUqdOH/rvx48dn3o+IqKqqStIBaAgrV66Mr371q3mvEf369YspU6bEDjvskPcq/P+6dOkSkyZNiiuuuCIqKiryXgcAGo1ly5bFbbfdlrT5H//xH9GxY8ekzTwNGjQovv3tbydt/uY3v0nao+l47rnnkt+vOe+886Jt27ZJm8XuwgsvTN6cNm1a8ibQ9GzcuDE+97nPRX19fYPPLisri2uvvTZKS0sbfDbFJ+t7q1deeWXU1dVl2gCgcSnJewEAAAAAoPmaNWtW0l6PHj2iffv2SZvAR9uyZUtMmTIl7rvvvli7dm3e62yVdu3axbHHHhsHHnhgtGjRIu91AAAAAAAAAAAAAAAAAAAAAAAAAAAAAD62Nm3axIQJE6JQKOTSX79+fUyePDmXdjG75ZZb4oknnsh1h+9///vx1a9+NdcdmrJCoRBVVVVx1FFH5brHhRdeGB988EGuO+TpP/7jP+L111/PdYfOnTvH448/HnvvvXeue/Dhxo4dG9OnT48999wz71Voot5888149NFHM5tfVlYWZ555ZmbzycaECROSdCorK//hvxs5cmR069Yt8x3uueeeWLlyZeYdgIZwwQUXxLJly3LdYeDAgTFlypQYNGhQrnvw4b785S/HtGnTfHwA4GP6z//8z9i8eXOy3i677BJnnXVWsl6x+Na3vpXkGv+vXnjhhZg2bVqyHk3HM888k7RXVlbmXuiHOP7442O77bZL2vRnBtAQvve978WcOXMymf2tb30rdt1110xmU3yOPvro6N69e2bz586dG/fff39m8wFofEryXgAAAAAAaL5mzZqVtDd06NCkPeCjLViwICZOnBhvvvlm3qtslUKhEDvvvHOcdNJJ0atXr7zXAQAAAAAAAAAAAAAAAAAAAAAAAAAAAPhU9t133zjnnHNy69933325tYvRmjVr4lvf+lauO5xyyinxox/9KNcdmoOysrK4/fbbY9iwYbnt8MEHH8R3vvOd3Pp5mj17dvzkJz/JdYe2bdvGAw88ELvuumuue/DRBg4cGFOnTo3zzjsv71Vogn73u99FfX19ZvMPO+yw6Nq1a2bzaXjV1dVxyy23ZN7Zdttt45hjjvmH/760tDTOOOOMzPfYtGlT3HrrrZl3ALbWlClTYsKECbnu0KNHj3jkkUeib9++ue7BR9tjjz1i+vTpceKJJ+a9CgAUterq6rjqqquSNv/jP/4jSkpKkjaLQdu2beMHP/hB0uZvfvObpD2ahr/85S9Je4ceemh069YtabMxKBQKceqppyZtvvrqq0l7QNPz7LPPZvb1x+DBg5N/LUW+SktLY9y4cZk2rrzyykznA9C4NL9XqwAAAACAojFr1qykvSFDhiTtAR9u06ZNMXny5HjooYdi/fr1ea+zVTp16hSjR4+O4cOHR3l5ed7rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGyVn/3sZ9GpU6dc2k8++WQu3WL17//+7/Hee+/l1t9zzz2jqqoqt35z0759+7j33ntjm222yW2H6667Lp599tnc+nn50pe+FJs2bcqt36JFi7j77rtj7733zm0HPr6Kioq48sor4/e//71nFNBgNm3aFDfffHOmjVNPPTXT+TS8P/7xj/H+++9n3jnttNP+6Z9nlZWVme8REb72BIreli1b4gtf+ELU19fntkPHjh3joYceioEDB+a2Ax9f+/bt484774wf/OAHUSgU8l4HAIrSH//4x6T3QoYPHx5HHXVUsl6x+dznPhd9+vRJ1rv77ruTvL5B0/Laa68l7Z1yyilJe41J6mMza9asqKmpSdoEmo7NmzfHOeecE3V1dZnM//3vfx8tW7bMZDbFK+t7rA8//HC88847mTYAaDxK8l4AAAAAAGieamtrY/bs2Umb22+/fdIe8L/V19fH3LlzY+LEiTFnzpy819kqhUIhdt999zjxxBOjW7duea8DAAAAAAAAAAAAAAAAAAAAAAAAAAAA0CC23XbbOO+883Jpz5w5M1asWJFLu9i8/vrrceWVV+bW79KlS9x7773RqlWr3HZojgYPHhy33XZblJTk87jZ+vr6+OpXvxr19fW59PNw9913x+TJk3Pd4frrr4/DDz881x345D7/+c/Ho48+Gl26dMl7FZqASZMmxcqVKzObX1FREWPGjMlsPtmoqqpK0qmsrPyn/82uu+4au+66a+a7vPjii/Haa69l3gH4tK688sqYNWtWbv3y8vK49957Y+edd85tBz65QqEQF110UUycODHatGmT9zoAUHQmTJiQtPfd7343aa/YlJeXx7e+9a1kverq6rj55puT9Wj8qqurkz7zuLS01GunH2HHHXeMYcOGJett2bIl5s6dm6wHNC0XX3xxvPHGG5nM/uxnPxuHHHJIJrMpbsOHD49+/fplNr+uri7ZPUEAil8+7xoFAAAAAJq9BQsWxJYtW5I2hw4dmrQH/I8NGzbEww8/HI899lhs3Lgx73W2SufOnWPMmDGx9957R2lpad7rAAAAAAAAAAAAAAAAAAAAAAAAAAAAADSor3zlK9GiRYvk3fr6+pg6dWrybjG68MILo7a2Npd2oVCIm266KXr16pVLv7k74ogj4jvf+U5u/RdffDHuvPPO3PopVVdXx7e//e1cd7jwwgvjtNNOy3UHPr2DDjooXnjhhdhpp53yXoVG7rrrrst0/lFHHRUdOnTItEHDevfdd+PBBx/MvDNs2LDYa6+9PtZ/W1lZmfE2/2XChAlJOgCf1IoVK+JHP/pRrjtcccUVcdBBB+W6A5/e2LFjY+rUqdG7d++8VwGAorFkyZJ46KGHkvV23nnnOO6445L1itXnP//56NKlS7JeVVVVshaN38KFC5PeI91ll12iU6dOyXqN0Wc+85mkvQULFiTtAU3D9OnT49JLL81kdvfu3eOyyy7LZDbFr1AoxMknn5xpo6qqKurr6zNtANA4lOS9AAAAAADQPM2aNStpr0OHDtG1a9ekTeC/fpjLrFmzYuLEiY3+TVqlpaWx9957x5gxY2LbbbfNex0AAAAAAAAAAAAAAAAAAAAAAAAAAACATHTv3j3OOOOMXNovvfRSLt1iMnXq1PjjH/+YW//f/u3fYuTIkbn1ibj44otj//33z63//e9/P2pqanLrp/K73/0uZs+enVt/1KhR8eMf/zi3Pg2jX79+8dRTT8VBBx2U9yo0UvPmzYvHH38808app56a6Xwa3o033hi1tbWZd84666yP/d+eccYZUVZWluE2/+Xmm2+O6urqzDsAn9SPfvSjWLlyZW79L3/5y/GFL3whtz4NY9ddd41p06bFsGHD8l4FAIpCquvfv/ra176WrFXMWrVqFZ/73OeS9V599dV48cUXk/Vo3FI/+3j48OFJe41R6nuWjf3510B61dXVcfbZZ2f2HofLL788OnbsmMlsGofTTjst0/kLFiyIRx55JNMGAI1DSd4LAAAAAADN06xZs5L2hg4dGoVCIWkTmru1a9fGAw88EE8++WRs3rw573W2Srdu3eLEE0+M3XffPUpK3F4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAmrazzz47l+706dNz6RaTb3/727m199577/jxj3+cW5//UlZWFn/4wx+iXbt2ufTfeuutuO6663Jpp7Jq1ar44Q9/mFu/f//+cdNNN/nZ901Ex44d4+GHH46TTjop71VohK677rqor6/PbH7r1q1j1KhRmc0nG1VVVZk3SkpK4swzz/zY/323bt3iyCOPzHCj/7J8+fL485//nHkH4JOYO3duXHnllbn199lnn/jVr36VW5+G1adPn3j66afjwAMPzHsVAMjdLbfckqzVqVOnOOOMM5L1it25554bpaWlyXp/+MMfkrVo3BYvXpy0t//++yftNUYjRoxI2kt9DgCN309/+tN49dVXM5k9evRo94CJ3XffPYYOHZppo6m/RweAj8c7CQEAAACAXMyaNStpL+ubb8D/qK+vj5kzZ8add94ZixYtynudrVJWVhbDhw+P0aNHR6dOnfJeBwAAAAAAAAAAAAAAAAAAAAAAAAAAACCJESNGRLdu3ZJ3//KXvyRvFpP77rsvpk6dmku7RYsWUVVVFWVlZbn0+d/69esXP//5z3PrX3zxxbFp06bc+ln7xS9+EStWrMilXVZWFn/4wx+iQ4cOufTJRkVFRdx+++1x+umn570KjUhtbW1cf/31mTZGjRoVbdq0ybRBw5o2bVqSZzsdcsgh0bt370/0e8aPH5/RNv9bVVVVkg7Ax3XRRRdFdXV1Lu127drFrbfeGuXl5bn0yUanTp3i4Ycfjs985jN5rwIAuXnjjTfitddeS9Y7++yzo1WrVsl6xa5Pnz4xevToZL0777wz6uvrk/VovD744IOkvV122SVprzHq379/tG/fPlkvr/t3QOP02muvxU9/+tNMZrdv3z5+97vfZTKbxueUU07JdP4999yT/OsgAIpPSd4LAAAAAADNT319fZJvZPtbQ4cOTdqD5mr16tXxpz/9KaZOnZrbN0U1lJ49e8ZJJ50UO++8cxQKhbzXAQAAAAAAAAAAAAAAAAAAAAAAAAAAAEimpKQkjj/++OTdRYsWxYYNG5J3i8WPf/zj3No/+MEPYscdd8ytz//1xS9+MQ499NBc2u+++25MmDAhl3bWVq1aFZdffnlu/YsuuiiGDx+eW5/slJSUxD777JP3GjQiDz30UCxevDjTxsknn5zpfBpeVVVVkk5lZeUn/j2jR4+Ojh07Nvwyf+eBBx6IpUuXZt4B+DjmzJkTt956a279q666KgYOHJhbn+y0bNkydtttt7zXAIDcTJw4MWnv7LPPTtprDP7lX/4lWWvhwoXxzDPPJOvReK1YsSJpr3///kl7jdWAAQOStVauXJmsBTRutbW1cfbZZ8eWLVsymf+zn/0sevXqlclsGp+s77lu2bIlbrrppkwbABS/krwXAAAAAACan/feey/WrFmTtDl06NCkPWhu6urq4pVXXok777wz3nvvvbzX2Srl5eVx4IEHxrHHHhvt27fPex0AAAAAAAAAAAAAAAAAAAAAAAAAAACAXIwePTqX7pw5c3Lp5u2JJ56IZ599Npf2rrvuGv/2b/+WS5t/rFAoxDXXXBMtW7bMpX/ppZdGTU1NLu0s/fa3v43Vq1fn0t5rr73iO9/5Ti5toPjccMMNmc6vqKiIkSNHZtqgYW3YsCFuv/32zDtt27aNsWPHfuLf17Jlyzj55JMz2Oh/q6mpiRtvvDHzDsDH8dOf/jRqa2tzaY8ZMybOOOOMXNoAAFmbOHFistYee+wRO+20U7JeY3H00UdHly5dkvVSfsxpvFI+87xz587Rrl27ZL3GbMCAAclaa9euTdYCGrfLLrssXnzxxUxmH3DAAfGlL30pk9k0TjvuuGMMGjQo08b111+f6XwAil9J3gsAAAAAAM3PW2+9lbRXUVER/fr1S9qE5mTFihVx7733xnPPPZfbN0M1lD59+sS4ceNihx12iEKhkPc6AAAAAAAAAAAAAAAAAAAAAAAAAAAAALnZb7/9cunOnj07l27eLrnkktzaV1xxRZSVleXW5x8bOHBgfOtb38qlPX/+/LjttttyaWdl7dq18etf/zqXdnl5eVx33XVRWlqaSx8oLuvWrYs//elPmTYOO+ywaNOmTaYNGtadd94Za9euzbxz4oknfupzo7KysoG3+XBVVVVJOgAfZf78+XHTTTfl0u7YsWNceeWVubQBALL21ltvxWuvvZasl+patrEpLy+PU089NVnvrrvuStai8dq8eXOyluedf3wDBgxI1tqyZUuyFtB4zZo1Ky666KJMZldUVMQ111zj+fb8H8cff3ym81955ZV44403Mm0AUNxK8l4AAAAAAGh+Zs2albS33XbbRUmJl0OhodXW1sZLL70UkyZNiuXLl+e9zlapqKiIQw45JI466qho27Zt3usAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5K5z584xaNCg5N133nkneTNv06dPj4cffjiX9plnnhkHHHBALm0+ngsvvDD69OmTS/tnP/tZ1NfX59LOwlVXXRUrV67MpX3BBRfELrvskksbKD733ntvbNy4MdPG6NGjM51Pw5swYUKSTmVl5af+vSNGjIjBgwc34DYf7o033ojnnnsu8w7AR/n5z38eNTU1ubV79OiRSxsAIGt//vOfk7UKhUKcdNJJyXqNzbhx45K1Fi5cGK+++mqyHo3Tli1bkrU6dOiQrNXYtW/fPlkr5TkANE51dXXx2c9+NjZt2pTJ/O9+97ux/fbbZzKbxu3444/PvPGHP/wh8wYAxask7wUAAAAAgObnzTffTNobOnRo0h40B8uXL4+77747Xnrppairq8t7na0ycODAOPnkk2O77baLQqGQ9zoAAAAAAAAAAAAAAAAAAAAAAAAAAAAARWPfffdN3lyyZEnyZt5+9atf5dJt06ZN/PznP8+lzcfXunXr3D5OM2fOjEceeSSXdkOrra2NK6+8Mpd2796943vf+14ubaA43XrrrZnOLxQKMWrUqEwbNKy33347pkyZknmnT58+ccghh2zVjLPOOquBtvloEyZMSNIB+DCrVq2KG2+8MZf2XnvtFZ/73OdyaQMApHD//fcna+27777Rq1evZL3GZsSIEdG9e/dkvZQfexqn+vr6ZK3WrVsnazV2bdq0SdbybGngn7n88stj6tSpmczecccd48ILL8xkNo3fiBEjonPnzpk2brvttkznA1DcSvJeAAAAAABofmbNmpW0N3To0KQ9aMpqamriueeei3vuuSdWrFiR9zpbpVWrVnHEEUfE4YcfHq1atcp7HQAAAAAAAAAAAAAAAAAAAAAAAAAAAICis8suuyRvvvvuu8mbeVq+fHlMnDgxl/bXv/716NGjRy5tPplTTjkldtttt1zav/vd73LpNrR77rkn3nnnnVzaP/vZz6J169a5tIHis2LFinj44Yczbey1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1XP23XffOP7442ObbbZpoO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAyNKvfvWrXLpHHXVULt0UZs6cmby56667Jm+Sr5122ilKStI+qnb+/Pmxfv36pM2P8tprryVv7r777smbQPF7/vnno7a2NvPOzjvvnHmDrXPrrbfGpk2bMu907NgxRo8enXnn4yopKYkzzzwzSev6669P0gGaHtcPQLHp379/FAoFv/xqVL/gn1m4cGGyVq9evZK1mrqePXsma6U8R2jc9tprr/jhD3+YtDllypQ47LDD4t13303aTWHlypUxevTomDhxYtLuhAkTol+/fkmbQHGYMWNG/PSnP81s/nnnnRfDhw/PbD58lFT3bKdNm5akA0A+0r7zEwAAAABoVurq6mLevHlJm0OHDk3ag6aqS5cuscsuu3zq39+9e/c46aSTYtddd03+gygAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+HRmzZoVN9xwQy7tsWPH5tJNYebMmcmbu+66a/Im+WrVqlUMHjw4abO+vj7eeOONpM1/pL6+Pl5//fXk3d122y15Eyh+L730UpLODjvskKTDpzdhwoQknZNPPjkqKiqStD6u8ePHJ+nMmTMnnnrqqSQtoOl4//33Y+nSpUmb7du3j4EDByZtAgDkbdGiRclavXr1StZq6lIey4ULFyZr0fh95zvfiZEjRyZtPvfcc7HnnnvGM888k7SbpRkzZsTee+8dDzzwQNLu1772tRgzZkzSJlAcamtr45xzzonq6upM5vfp0ycuueSSTGbDxzFs2LAknVT3oAHIR0neCwAAAAAATdeiRYtiy5YtSZvbbbdd0h40ZXvuuWd06NDhE/2e8vLyGDFiRIwaNeoT/14AAAAAAAAAAAAAAAAAAAAAAAAAAAAA8vW1r30ts4eCf5T27dvH4YcfnrybyhtvvJG8ueuuuyZvkr88Pu4zZ85M3vwwixYtirVr1yZt9uzZMzp37py0CTQOr7zySpLODjvskKTDp/Paa6/Fiy++mKRVWVmZpPNJbL/99rH33nsnaU2YMCFJB2g68rhO32mnnaJQKCTvAgDkZdWqVbFx48ZkvW7duiVrNXUpj+W7776brEXjVygU4qabbopevXol7b777rvxmc98Ji655JKoqalJ2m5IdXV1cfnll8fw4cNj7ty5Sdv7779/XHrppUmbQPG49NJLM71fctVVV0Xbtm0zmw//TKp7ti+//HKSDgD5KMl7AQAAAACg6Ur9RpGePXtG+/btkzahKSsrK4uDDz74Y39TUu/eveOkk06KHXfc0TcyAQAAAAAAAAAAAAAAAAAAAAAAAAAAADQyd999dzz88MO5tI877rho0aJFLu0U5syZk7yZ6gHYFJc8Pu6pn03xj+Sxx5AhQ5I3gcbhlVdeSdLx931xmzBhQpLOoEGDYsSIEUlan9T48eOTdCZOnBjr1q1L0gKaBtcPAADZW7ZsWdJely5dkvaaspTHMvV5QuPXpUuX+POf/xzt2rVL2t2yZUt897vfjT333DOef/75pO2G8Morr8Tw4cPja1/7Wqxfvz5pe/vtt48//elPTfr9AMA/NmvWrLj44oszm3/qqafGsccem9l8+Dg6duwYPXr0yLwzd+5c98MAmrCSvBcAAAAAAJqu1N9AMXjw4KQ9aA66d+8ew4YN+8j/pqKiIg4++OA4+uijk7/BDgAAAAAAAAAAAAAAAAAAAAAAAAAAAICtt2TJkvjSl76UW//ss8/OrZ21LVu2xJIlS5I2y8vLo1+/fkmbFIftttsueXP+/PnJmx9m3rx5yZtDhgxJ3gSK3+bNm+PNN9/MvNOmTZvo06dP5h0+nerq6rj55puTtM4666wknU/j1FNPjRYtWmTeWb9+fUycODHzDtB0uH4AAMjesmXLkva6dOmStNeUpTyWy5cvT9ai6dhtt91i0qRJUV5enrz96quvxvDhw+PUU0+NmTNnJu9/UrNmzYrx48fHnnvuGc8//3zyfo8ePeLBBx+MbbbZJnkbyF9dXV2cc845sWnTpkzmb7PNNvGb3/wmk9nwSe2www6ZN+rr6+OVV17JvANAPkryXgAAAAAAaLrmzp2btDd48OCkPWgu9tlnn2jXrt2H/rv+/fvHuHHjYujQoVEoFBJvBgAAAAAAAAAAAAAAAAAAAAAAAAAAAMDWqqmpiZNPPjmWLVuWS3/o0KFx2GGH5dJO4Z133om6urqkzYEDB0ZpaWnSJsVhu+22S96cN29e8uaHefvtt5M3hwwZkrwJFL+ZM2dGTU1N5p3tt9/es0KK2J///OdYvnx55p1CoRBnnXVW5p1Pq3PnznHssccmaU2YMCFJB2gaXD8AAGQv9X2nLl26JO01ZV27dk3W2rJlS6xatSpZj6bj8MMPj+uvvz5KSkqSt+vq6uL222+PnXfeOU466aSYMmVK1NfXJ9/jo0ybNi1OP/30GDZsWNx4441RW1ubfIeuXbvGQw89FP369UveBorDb3/725g2bVpm83/xi18k/boFPsqwYcOSdF5++eUkHQDSS391CwAAAAA0G3Pnzk3aGzRoUNIeNBfl5eVx4IEH/q9/1qpVqzjssMPiiCOOiNatW+e0GQAAAAAAAAAAAAAAAAAAAAAAAAAAAABb6xvf+EZMnTo1t/65554bhUIht37W5s2bl7y53XbbJW9SHPL42M+fPz9588Pk8bk2ZMiQ5E2g+L3yyitJOjvssEOSDp9OVVVVks6IESNi4MCBSVqfVmVlZZLO008/HbNnz07SAho/1w8AANlbtmxZ0l7nzp2T9pqybbfdNmkv9blC03H66afHrbfeGuXl5bn06+vr46677oqDDz44Bg8eHBdffHHMmjUrl10i/ut58j/5yU9iyJAhMWLEiLj11lujrq4ul1369u0bTz31VOy888659IH8zZ07N773ve9lNv/www+Pf/mXf8lsPnxSqe7dproXDUB6JXkvAAAAAAA0TVu2bIkFCxYkbRb7N7tBY9a7d+8YOnRoREQMHjw4xo0bF4MGDWrSP7AFAAAAAAAAAAAAAAAAAAAAAAAAAAAAoKm78MIL44orrsit365duyb/0PD58+cnb/rZ/c3XNttsEx07dkzaXLJkSWzZsiVp88PMmzcvebNfv37Jm0Dxe+WVV5J0tt9++yQdPrn33nsvHnjggSSt8ePHJ+lsjWOPPTa23XbbJK3rr78+SQdo/Fw/AABkb/ny5clarVq1ihYtWiTrNXUdOnRI2kt5rtD0nHzyyXHPPfdEq1atct3j7bffjosuuii233776N+/f3z+85+PiRMnZvqM94ULF8akSZPi3HPPjUGDBsXgwYPj+9//fsyePTuz5scxZMiQePrpp2PIkCG57gHkp76+Pj73uc/Fhg0bMpnfunXruPrqqzOZDZ/WsGHDknRefvnlJB0A0ivLewEAAAAAoGl65513ora2NlmvpKTEN09Axvbbb78YMGBA9O3bN+9VAAAAAAAAAAAAAAAAAAAAAAAAAAAAANhK3/ve9+JnP/tZrjucf/750aFDh1x3yNrChQuTN3v37p28SfHo1atXrFq1Klmvrq4ulixZEv3790/W/DCLFi1K3uzTp0/yJlD8Xn311SSdgQMHJunwyd10001RU1OTeadly5Yxbty4zDtbq7y8PE499dS44oorMm/deOON8aMf/ShKSkoybwGNV21tbbz33ntJm+3bt4/27dsnbQIA5C3l69QdO3ZM1moOUh/PlOcKTdMxxxwTjzzySIwdOzaWLl2a9zqxYMGCuPbaa+Paa6+NiIgOHTrEzjvvHLvsskv07ds3evbs+d+/2rVrFy1btvzvX4VCITZt2vTfv9auXRvvvvtuLFmyJJYsWRLvvPNOzJgxI1599dVYuXJlzv9P/6+jjz46brnllujUqVPeqwA5+s///M944oknMpt/8cUXu09G0RkwYECSzmuvvRb19fVRKBSS9ABIpyzvBQAAAACApmnu3LlJe/369YsWLVokbcI/s2rVqib1RtOKioro27dv3msAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsBU2bdoUX/rSl+KGG27IdY9tttkmzj///Fx3SGHp0qXJm3369EnepHj06tUrZs6cmbS5dOnS6N+/f9Lmh+2QUps2baJTp05Jm0Dj8NZbbyXp5P3nLv9YVVVVks7xxx8fHTp0SNLaWuPHj48rrrgi886iRYvi4YcfjqOOOirzFtB4LV++POrq6pI2XacDAM3R6tWrk7Wa0rNji0HLli2joqIiNm/enKSX8lyh6RoxYkRMnz49TjrppHjmmWfyXud/Wb16dTz99NPx9NNP571KZgqFQnz/+9+Piy66KEpKSvJeB8jRO++8E9/+9rczm7/HHnvEN77xjczmw6fVu3fvKCsri5qamkw7GzdujIULF0bfvn0z7QCQnispAAAAACATc+fOTdobNGhQ0h58lC1btsSUKVPijjvuiEWLFuW9DgAAAAAAAAAAAAAAAAAAAAAAAAAAAABERMSCBQtixIgRccMNN+S9Snz729+O9u3b571G5pYuXZq82bt37+RNikceH/88zvO/tXr16ti8eXPSZp8+fZL2gMZhw4YNsWTJkiSt/v37J+nwyTz77LPxxhtvJGlVVlYm6TSEvfbaK4YNG5akVVVVlaQDNF55XL+4fgAAmqPVq1cna3Xs2DFZq7lIeUxTnis0bT179ownnngivvzlL+e9SrPSs2fP+POf/xw//OEPo6SkJO91gJx94QtfiLVr12Yyu6ysLK699tooLS3NZD5sjdLS0mTv15k9e3aSDgBpuZoCAAAAADIxZ86cpL1BgwYl7cE/smDBgpg4cWK8+eabERHx1FNPRXV1dc5bAQAAAAAAAAAAAAAAAAAAAAAAAAAAANCc1dfXx+9///vYfffdY/r06XmvE9ttt1187Wtfy3uNJJYtW5a8meqh1xSnXr16JW8uXbo0eTPvfo8ePZI3geI3Z86cqK+vz7xTUVER3bt3z7zDJzdhwoQknW7dusXIkSOTtBpKZWVlks69994bK1asSNICGifXDwAAaaxatSpZq3379slazUW7du2StVKeKzR9LVq0iCuuuCIeeeSR6N+/f97rNHlnn312zJw5M4455pi8VwGKQFVVVTz00EOZzT///PNj9913z2w+bK1UX3vMnj07SQeAtEryXgAAAAAAaJrmzp2btDdo0KCkPfh7mzZtismTJ8dDDz0U69ev/+9/vnbt2nj++edz3AwAAAAAAAAAAAAAAAAAAAAAAAAAAACA5uyVV16JESNGxBe/+MVYuXJl3utEoVCI3//+99GyZcu8V0li6dKlyZtdunRJ3qR45PHxX7ZsWfLm38rj82zbbbdN3gSK3+zZs5N0+vbtG4VCIUmLj2/jxo1x++23J2mdfvrpUVpamqTVUM4888woKSnJvLN58+b4wx/+kHkHaLxcPwAApLF69epkrTZt2iRrNRcpj2nKc4Xm4/DDD48ZM2bEV77ylSSvSTU3O+ywQzz88MMxYcKE6NixY97rAEXg3XffjfPPPz+z+YMHD46LLroos/nQEPr375+k89ZbbyXpAJCWK1cAAAAAoMFt3LgxFi9enLQ5ePDgpD34q/r6+pg7d25MnDgx5syZ86H/zeuvvx7vvfde4s0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAaM5eeumlOOmkk2KPPfaIZ555Ju91/ttnP/vZ+MxnPpP3GsksX748aa+ioiLatGmTtElx6dy5c/Lm0qVLkzf/1rJly5I3t9122+RNoPjNnj07Sad///5JOnwyd955Z6xZsyZJq7KyMkmnIfXq1SsOO+ywJK2qqqokHaBxcv0AAJBGqmvkiHBfJANt27ZN1kp5rtC8tG3bNi6//PL4y1/+EiNHjsx7nSahR48ecfXVV8eMGTPiiCOOyHsdoIice+65sWrVqszmX3311dGqVavM5kNDSHUPN9U9aQDSKsl7AQAAAACg6Zk3b17SXosWLaJ3795JmxARsWHDhnjkkUfisccei40bN/7D/66+vj6efPLJqKmpSbgdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM3N5s2bY9KkSTFy5MjYa6+94q677oq6urq81/pv/fv3j0svvTTvNZKpra2NtWvXJm127tw5aY/is+222yZvrlq1Knkz734exxkofrNnz07S6d+/f5IOn0xVVVWSzi677BK77bZbklZDq6ysTNKZPn16vPrqq0laQOPj+gEAII0NGzYka7Vp0yZZq7lIeUxTnis0T7vssks8+OCD8eijj8Zee+2V9zqNUs+ePeOSSy6J2bNnxxe+8IUoLS3NeyWgiNx6661x7733Zjb/7LPPjkMPPTSz+dBQUt3DTXVPGoC0yvJeAAAAAABoeubMmZO0N2DAgCgpKUnapHmrr6+Pt956K5599tnYvHnzx/o9q1evjpdeein23XffjLcDAAAAAAAAAAAAAAAAAAAAAAAAiDjrrLPigw8+yHsNAICi0Llz57jpppvyXgMgM5s2bYopU6bE7bffHnfddVesXr0675U+VEVFRdx5553RsWPHvFdJZs2aNcmbnTt3Tt6kuORxDqxduzZ5M+++zzXgw8yePTtJp2/fvkk6fHzz58+PJ554IkmrsrIySScLJ554Ypx33nlJ/u6eMGFC/PrXv868AzQ+rh8AANLYuHFjslabNm2StZqLlMc05blC83bYYYfFCy+8EJMnT45f/epXcd9990V9fX3eaxW13XbbLb7xjW/EaaedFuXl5XmvAxSh5cuXx9e+9rXM5nfr1i1+8YtfZDYfGlK/fv2SdN5+++2ora2N0tLSJD0A0ijLewEAAAAAoOmZO3du0t6gQYOS9mje1q1bF1OmTIlFixZ94t/76quvxsCBA6NLly4ZbAYAAAAAAAAAAAAAAAAAAAAAAADwPz744INYtmxZ3msAAACQgffffz9mzJgRTz31VEyePDmeffbZ2Lx5c95r/VOXX3557LnnnnmvkdTatWuTNzt16pS8SXHJ4xzI41z/W2vWrEne7NChQ/ImUPzmz5+fpNO9e/ckHT6+qqqqqK+vz7xTWloaZ5xxRuadrLRu3TrGjh0b119/featW265JS699NIoLy/PvAU0Lq4fAADS2LRpU7JWRUVFslZzkfKYpjxXICLi0EMPjUMPPTTeeuutuOKKK+K2226L5cuX571W0ejcuXOcfPLJcdZZZ8Xw4cPzXgcocl/5ylfi/fffz2z+b3/7W++DodHo1q1bkk51dXUsXrw4+vbtm6QHQBpleS8AAAAAADQ9c+fOTdobPHhw0h7NU319fbz++uvx/PPPR3V19aeeMWXKlDjhhBOitLS0gTcEAAAAAAAAAAAAAAAAAAAAAAAAAAAAoDGqq6uLTZs2xebNm//7f1esWBHvvffef/9avHhxvPHGGzFz5sxYtmxZ3it/Yueee258/vOfz3uN5NauXZu82aZNm+RNikse50Ae53refZ9rwN+rr6+Pd999N0mrW7duSTp8PPX19XHDDTckaR1xxBHRvXv3JK2sjB8/Pq6//vrMO++//3788Y9/jLFjx2beAhoX1w8AAGls3LgxWauioiJZq7lIeUxTnivwt4YMGRK//e1v45e//GU89NBDcfPNN8cf//jH2LBhQ96rJde1a9cYOXJknHTSSXH00UdHeXl53isBjcA999wTd9xxR2bzR40aFSeffHJm86GhpbyHu2TJkujbt2+yHgDZK8t7AQAAAACg6Zk7d27S3qBBg5L2aH5Wr14dU6ZMaZBv5P3ggw/i5Zdfjj333LMBNgMAAAAAAAAAAAAAAAAAAAAAAAAAAADg07j99tvj9ttvz3uNZuGUU06JK664Iu81crF27drkzbZt2yZvUlzatGmTvJnHuf631qxZk7zpcw34e8uWLYuampokra5duybp8PE89thjsWDBgiStysrKJJ0sHXzwwdGvX78kx6yqqirGjh2beQdoXFw/AABkr7q6Ompra5P1WrRokazVXKQ8phs3bkzWgg9TVlYWxx57bBx77LGxcePGeOKJJ+Khhx6KBx98MGbNmpX3eplp06ZNfO1rX4uxY8fGHnvsEYVCIe+VgEZk5cqVce6552Y2v3379vG73/0us/mQhU6dOkV5eXlUV1dn3lq8eHHmDQDSKsl7AQAAAACgaVmzZk0sX748aXPQoEFJezQf9fX18corr8Sdd94Z7777boPN/ctf/hIrVqxosHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUIyOPvrouOmmm6KkpHk+PnPdunXJm23atEnepLi0bt06CoVC0ubatWuT9v6ezzWgGCxevDhZq1u3bsla/HNVVVVJOu3bt48TTjghSStLhUIhzjrr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AAAAAAAAAAAAAAAAAESbNm3ic5/7XEyfPj2efPLJOPjgg/NeqVEpKytL3qytrU3epPjU1NQk7eVxrv+t8vLy5M3UxxgofmvWrEnSad++fZIO/9hNN92U7O+B8ePHJ+nkaffdd4+dd945SeuGG27wbCDA9QMAQAIlJSVJe3V1dUl7zUHKY1paWpqsRdM0derU2H333ePhhx/OexUi4rLLLovDDz88li5dmvcqwFZ64YUX4pe//GVm87fZZpv47W9/m9l8yEPKe7mrVq1K1gIge/m+AxMAAAAAaDLq6uri7bffTtocNGhQ0h6NS319fbz99tsxderU2LRpU97rfGzz58+PefPmxcCBA/NeBQAAAAAAAAAAAAAAAAAAAAAAAAAAAIBmqKSkJPbff/849dRT48wzz4wOHTrkvVKjVVaW/rGhW7ZsSd6k+FRXVyft5XGu591PfYyB4rZu3bqoqalJ0mrfvn2SDv9YVVVVkk6XLl3i6KOPTtLKW2VlZVxwwQWZdxYsWBCPPfZYHH744Zm3gOLl+gEAIHulpaVJe3V1dUl7zUHKY5r6fKFp+fWvfx3/9m//VvTXXR06dIgBAwZE7969o0+fPtG7d+/o3r17tG7dOlq1avXfvwqFQmzcuPF//Vq2bFksWrTov3/Nnz8/li9fnvf/pY/05JNPxu677x533XVXDB8+PO91gE9hy5Ytcc4550RtbW1mjcsuuyy6du2a2XzIQ7t27ZK1Vq1alawFQPbyfQcmAAAAANBkvPfee7Fx48akzYEDBybt0XisX78+nn766ViwYEHeq3wqU6dOjZ49e0bLli3zXgUAAAAAAAAAAAAAAAAAAAAAAAAAAACAZmKnnXaKc889N8aMGRM9evTIe50moUWLFsmb69evT96kuNTX18eGDRuSNvM41/Pupz7GQHFbt25dslarVq2Stfi/nnvuuXj99deTtE477bQoK2sej6E/44wz4jvf+U7U1tZm3qqqqorDDz888w5QvPK6fujcuXPyLgBAXkpLS5P2ampqkvaagxTX6H+V+nyhaaitrY0vfelLce211+a9yv/RokWLOOCAA2LvvfeOPfbYI/bYY48YNGhQFAqFBmssXrw4pk+fHtOnT4+XXnopnnjiiVi7dm2DzW8I7777bhx++OExadKkGDlyZN7rAJ/Qj3/843jttdcym3/YYYfF2Wefndl8yEvr1q2TtYrt734Atk7zeHcIAAAAAJC5uXPnJu117do12rVrl7RJ8auvr49Zs2bFs88+G1u2bMl7nU9t48aN8eyzz8ZnPvOZvFcBAAAAAAAAAAAAAAAAAAAAAAAAAAAAoJl444034r777os+ffrEcccdF4VCIe+VGr22bdsmb65fvz55k+KyYcOGqK+vT9rM41z/W23atEneXLduXfImULw2b96crFVW5rHkeZowYUKyVmVlZbJW3nr06BFHHHFEPPjgg5m37r777li9enV06NAh8xZQnFw/AABkr7y8PGmvMT/Dtlh5vYtitnnz5jj99NNj0qRJea/y37p37x7HHXdcHHPMMXHEEUdkfu+sV69e0atXrxg1alRERFRXV8dTTz0V999/f9x3333x5ptvZtr/uDZs2BCjR4+Om2++OcaNG5f3OsDH9Morr8TPfvazzOa3atUqrr766szmQ55SXgu5DgJoWkryXgAAAAAAaBrmzp2btDd48OCkPYrf2rVr4/77748pU6Y0+pua3bp1i1133TXvNQAAAAAAAAAAAAAAAAAAAAAAAAAAAABoRmpra+P++++P0aNHx6677hp33nln3is1eu3atUveXLduXfImxWX9+vXJm3mc63n38zjOQPGqrq5O1iovL0/W4n/buHFj3H777UlaO+64Y+y5555JWsVi/PjxSTobN26MW2+9NUkLKE6uHwAAsteyZcukvc2bNyftNQcpj2mrVq2StWj81q1bF8cee2xMmjQp71WipKQkjj766Ljnnnti0aJFcc0118SYMWOibdu2yXcpLy+PQw89NC677LJ44403YurUqTF+/Pii+PzasmVLnHrqqVFVVZX3KsDHUFNTE+ecc06m974uvvjiGDRoUGbzIU9lZWXJWinvUQOQvZK8FwAAAAAAmoa5c+cm7bn5y1/V19fHa6+9FnfeeWcsXrw473W2SllZWQwfPjxGjx4dnTp1ynsdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJqpGTNmxLhx4+Lggw+OGTNm5L1Oo9WuXbvkzfXr1ydvUlzyOAfyONf/Vvv27ZM3161bl7wJFK/q6upkrbKysmQt/re77rorVq9enaR11llnJekUkxNOOCHZ3+lVVVVJOkBxcv0AAJC9srKypK9hbNmyJVmruUh5TFu1apWsReO2efPmGDVqVDz22GO57lFRURFf//rX4+233477778/jj/++CgtLc11p7+3//77x/XXXx9LliyJSy+9NLbddttc96mrq4vPf/7zcc899+S6B/DP/fznP4/p06dnNn+PPfaI888/P7P5kLfy8vJkLddBAE1LSd4LAAAAAABNw9y5c5P2Bg0alLRHcVq1alX86U9/imnTpiX9Ztss9OzZM0466aTYeeedo1Ao5L0OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMSUKVNijz32iB/84AdRU1OT9zqNTvv27ZM3V61albxJccnjHGjXrl3yZt79tWvXJm8CxSvlc1PKy8uTtfjfqqqqknRKSkrizDPPTNIqJi1btoyTTz45Sev555+P119/PUkLKD6uHwAA0mjVqlWy1pYtW5K1mouUxzTluULjVVdXF2eccUY88cQTue1QWloaZ599drz11lvx61//Ovr165fbLh9Xx44d41vf+la8/fbb8YMf/CDXe3q1tbVx2mmnxdSpU3PbAfhob7zxRvzwhz/MbH5paWlcc801UVpamlkD8lZWVpaslfIeNQDZK8l7AQAAAACg8autrY158+YlbQ4aNChpj+JSV1cXL7/8ctx1113x3nvv5b3OVikvL48DDzwwjj322Fx+SAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfJSampr44Q9/GPvtt1/MnTs373UalXbt2iVvfvDBB8mbFJc8zoG8f9Z+Hv33338/eRMoXlu2bEnWKisrS9bif8yfPz8ef/zxJK1DDz00evXqlaRVbCorK5O1JkyYkKwFFBfXDwAAabRs2TJZa9OmTclazUXKY5ryXKHx+spXvhJ33XVXbv299torXn755ZgwYUL07ds3tz0+rXbt2sVFF10Ub7/9dpxyyim57bFp06YYNWpUvP7667ntAHy4urq6OOecc2Lz5s2ZNc4///zYY489MpsPxaC8vDxZq7q6OlkLgOyV5L0AAAAAAND4LVy4MOlNpEKhEAMGDEjWo7h88MEHce+998bzzz8ftbW1ea+zVfr27Rsnn3xy7LDDDlEoFPJeBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+oZdeein23nvveOihh/JepdEoLy+P1q1bJ21+8MEHSXsUn/fffz95s0OHDsmbeffzOM5A8Ur57J7y8vJkLf7H9ddfH/X19Ula48ePT9IpRgcccEAMHDgwSevmm2+OmpqaJC2guLh+AABIo1WrVsla69evT9ZqLtatW5eslfJcoXH65S9/GVdddVUu7fLy8vjRj34UzzzzTOy000657NCQtt1227jtttti4sSJ0aVLl1x2WLlyZYwZMybWrl2bSx/4cL/+9a/j2WefzWz+oEGD4uKLL85sPhSLlPdyt2zZkqwFQPZK8l4AAAAAAGj85s6dm7TXu3fvaNmyZdIm+autrY0XX3wx7r777li+fHne62yVioqKOOSQQ2LkyJHRpk2bvNcBAAAAAAAAAAAAAAAAAAAAAAAAAAAAgI9l5cqVccwxx8Tll1+e9yqNRpcuXZL2Nm7cGBs2bEjapLh88MEHyZtdu3ZN3sy7//777ydvAsWruro6WausrCxZi/9SX18fN9xwQ5JW27Zt48QTT0zSKkaFQiHOOuusJK2lS5fG/fffn6QFFBfXDwAAaaR8Xuv69euTtZqLlMe0devWyVo0PtOmTYtvf/vbubT79+8fL7zwQnz/+99vcq/LnnTSSTFz5sw45JBDcum/9dZb8cUvfjGXNvB/zZ07N/793/8908bVV18drVq1yrQBxaC8vDxZK+U9agCyV5L3AgAAAABA4zd37tykvUGDBiXtkb9ly5bFpEmTYvr06VFXV5f3Oltl4MCBcfLJJ8d2220XhUIh73UAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4BOpq6uLr33ta/G9730v71UahW7duiVvvv/++8mbFI88Pv55nOd5932eAX8r5TNI6uvrk7X4L5MnT4758+cnaY0dOzZat26dpFWsKisrk31OTZgwIUkHKC6uHwAA0mjfvn2y1vr165O1mouUx7RDhw7JWjQuH3zwQZxyyilRU1OTvD18+PB47rnnYtddd03eTqVLly7x0EMPxWc/+9lc+rfeemtcc801ubSB/1FfXx+f/exnY8OGDZk1zj777DjssMMymw/FpK6uLlkr5T1qALJXkvcCAAAAAEDjN2fOnKS9QYMGJe2Rn5qamnj22Wfj3nvvjZUrV+a9zlZp1apVHHHEEXH44YdHq1at8l4HAAAAAAAAAAAAAAAAAAAAAAAAAAAAALbKT3/60zjvvPPyXqPode3aNXlz0aJFyZsUjzw+/t26dUvezLv/7rvvJm8Cxau8vDxZq7q6OlmL/1JVVZWsVVlZmaxVrAYOHBgjRoxI0rrvvvti2bJlSVpA8XD9AACQRocOHZK11q9fn6zVXKQ8pinPFRqXysrKXO57nXrqqfH444/ncp83tfLy8rj22mvj5z//eRQKheT9r3/96/HWW28l7wL/46qrroonn3wys/ndunWLX/ziF5nNh2KT8l5uixYtkrUAyF5Z3gsAAAAAAI3f3Llzk/YGDRqUtEc+3n333ZgyZUqsXr0671W22pAhQ2L48OFRUVGR9yoAAAAAAAAAAAAAAAAAAAAAAAAAAAAARMQpp5wSt912W/JufX19bNmyJTZv3hybN2+OTZs2xfvvvx/Lli2L5cuXx5IlS2LWrFnx1ltvxVtvvRXLli1LvuMncdVVV0VpaWlcfvnlea9StLp165a8uWjRouRNikceH/88zvO/1alTp2jRokVs2bIlWXPhwoXJWkDxa9GiRbJWTU1NshYRq1evjkmTJiVp9enTJw455JAkrWI3fvz4ePrppzPv1NTUxM033xznn39+5i2geORx/eL6AQBojjp06JCstWbNmmSt5iLlMU15rtB43HTTTXH//fcn75522mlx8803R0lJSfJ2ni644IKoqKiIr3/960m7GzdujPPOOy8effTRpF3gv7zzzjvxne98J9PGb37zm+jUqVOmDSgmKe/llpeXJ2sBkL2yvBcAAAAAABq3LVu2JP/GhcGDByftkVZ1dXU899xz8frrr+e9ylZr27ZtHHjggdGnT5+8VwEAAAAAAAAAAAAAAAAAAAAAAACamc6dO+e9AgBA0fC1EVBMCoVCVFRUREVFxX//s4/6WdaLFi2KZ555Jp599tl4/PHH4y9/+UuKNT+RK664Ilq2bBmXXnpp3qsUpW7duiVvLlq0KHmT4rF48eLkza5duyZvftgOKc/9devWxapVq6Jjx47JmkDxKi8vT9aqrq5O1iLitttui40bNyZpnXnmmVEoFJK0it24cePiq1/9amzatCnzVlVVVZx//vmZd4Di0bVr1ygUClFfX5+smfpZfwAAxSDla6crV65M1mouVq9enazldXb+3ooVK+Kb3/xm8u7o0aPjxhtvjJKSkuTtYvC1r30t1qxZE//+7/+etPvYY4/FLbfcEmeccUbSLhDx+c9/PtauXZvZ/FGjRsUpp5yS2XwoRinv5aa8Rw1A9sryXgAAAAAAaNzmz58fdXV1yXplZWUf+UMyaNwW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sNbK6WzelkeOHNGZM2es9QAAuBS2ruHmzZtXpUuXttICANgT5noAAAAAAAAAgNCUnJxstRcbG2u1l5ulpaVpzpw5+vbbb0P+CTRFixZVt27d1KRJE0VERLieAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASlyy+/XI8++qj17vPPP6/Dhw9b77rUunVr683p06crMzPTehf+mzdvnk6ePGm96+J+fCHq16+vYsWKWe9OmjTJehNAcKlataqVzp49e6x0coNx48aF/Gv0wF+JiYmuJwRMyZIlrfZSUlKs9vDHbL7mXIkSJay1AqV169YKCwuz3uXxAwAAyC2uuOIKa62srCxt3brVWi+n2bhxo7VWbGysihQpYq2H4JOVlaVffvnFWq9ChQrWWjmd7duSnzEBAELFTz/9ZKVTpUoVGWOstAAA9ti/WgkAAAAAAAAg5J05c0ZHjhyx1gsLC1OZMmWs9XIrz/P0/fffa8KECdq9e7frOZckLCxMDRs2VPfu3UPyF44AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA24YMGaJKlSpZbaampuq5556z2nStffv21ptHjx7Vt99+a70L/40fP956s2jRomrSpIn17oUICwtTmzZtrHcnT56srKws610AwaNq1apWOnv27LHSyQ1GjhzpegKC3Pr167Vu3TrXMwKiSJEiioyMtNb76aefrLXwx44cOaLTp09b65UsWdJaK1Auu+wyNWrUyHp3woQJ1psAAAAuVKlSRXnz5rXW27hxo7VWTrNhwwZrrTp16lhrITjt27fP6jWV8uXLW2vldLZvy+TkZKs9AAAulq1ruLauSQMA7ApzPQAAAAAAAABA6ElJSbHaK126tNVfTMqNzpw5o2+++UYLFixQenq66zmXpESJEurRo4caNmyo8PBw13MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAkJA3b1698cYb1rvvvfeefvrpJ+tdV66//npFRUVZ744ZM8Z6E/46e/askpKSrHc7duwYEq8F0LVrV+vNgwcP6uuvv7beBRA8qlataqWzZ88eK52cbtu2bVqxYoXrGQgBiYmJricETJkyZay1ctPjvGBm++NQtmxZq71AcfH4Ye3atdqyZYv1LgAAgG1hYWGqVauWtd6GDRus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AAAAAAAAAAAAAAB+Kl68uO69916rTc/zNGzYMKtNV1588UVn7ezsbN1444365ZdfnG3IzebNm6fnnnvOWb9hw4bq06ePs75NUVFRGjFihNMNL7zwgr744gunG3DxFi1apEaNGmnz5s2upyCItWnTxkpn6dKlVjqhZvv27Vq+fLm1XqdOnVSokIuXzsT/r0WLFoqLi7PWGzlypLVWoPXt29dqz/M8vfLKK1abuUVWVpbeeOMN691+/fpZb7pQrFgxPfXUU0433HvvvVq4cKHTDbh4kyZNUrNmzZSSkuJ6CgAAQaNfv37Kly+ftd4777yjjIwMa71gdejQIX3++efWeq1atVLFihWt9RBajDGqX7++1eakSZOUlZVltZlTjB8/3mqvWrVqVv+cAADgQq1bt05nzpzxvdO2bVvfGwAA98JcDwAAABfHGNPYGDNF0g5Jj0oq4XbRbxhJrSWNk7TbGPOwMaaA403IBYwxbY0x8yWtk3SXpGB6dnW4pK6SZkjaboy5wxgT5XgTAADABbH9hPS4uDgZY6w2cWHCw8PVsmXLXz9O0dHRuuaaa9S+fXsVKMDDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAne+SRR5QvXz6rzalTp2rdunVWmy40btxYN998s7P+gQMH1L17d509e9bZhtxo9+7d6tOnj7Kzs530jTF68803c9VrRfTs2VOtWrVyuuG2227T3LlznW7Ahfvoo4907bXX6tChQ66nIMjFxcWpWrVqvneWLFnieyMUjRw50mqvf//+Vnv4Y8YY3XDDDdZ6n332mc6dO2etF0h9+vRRRESE1eann36q3bt3W23mBmPGjNHOnTutNuvXr68aNWpYbbp0//336/LLL3fWP3funLp27apNmzY524AL53mehg8frt69e+v06dOu5wAAEFQKFiyoXr16Wevt3btXn376qbVesHrttdd05swZa73bb7/dWguhqWnTplZ7e/fu1eTJk602c4Lvv/9eM2fOtNqMj4+32gMA4EItXrzY94YxRtdee63vHQCAe2GuBwAAgAtjjKlljJkpaYWkrpKC/bcwykp6WdJPxpgHjTGRrgch5zHGxBtjlkmaLamV4znno6qkjyXtNMbcbHLTb1MBAICQlpycbLUXGxtrtYeLU7JkSV1xxRWqWLGievfurapVq+aqvzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyK1KlCihe+65x3p3+PDh1psuvPTSSypSpIiz/sqVK/W3v/3NWT+3OXXqlLp06aIjR44423DbbbcpPj7eWd+V999/X9HR0c766enp6tatm1avXu1sA85fRkaG7r33Xg0YMEDnzp1zPQchok2bNr43lixZ4nsj1GRlZWnMmDHWekWKFFGHDh2s9fDX+vfvb6116NAhzZgxw1ovkEqUKKG2bdtabZ47d07PPvus1WZO5+o2TUhIsN50KSoqSu+//77TDcePH1e7du20e/dupztwflJTU9WrVy8NGzZMnue5ngMAQFC6/fbbrfb+9a9/KSsry2ozmJw4cULvvvuutV6hQoXUs2dPaz2EppYtW1pvvvrqq9aboe7VV1+1/rimVatWVnsAAFwoG9do69SpoxIlSvjeAQC4F+Z6AAAAOD/GmMLGmHckbZB0ves9F6GopNckbTHGtHM9BjmDMaaMMWacpCWSmrrecxFiJY2WtNIY09j1GAAAgL+SkpJitRcXF2e1h4vXpEkTtW3bVvny5XM9BQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBFjz76qPW/p3zq1Klat26d1aYLJUuW1LPPPut0w+eff65//OMfTjfkBpmZmbrhhhu0efNmZxuKFi2qESNGOOu7VK1aNQ0ePNjphlOnTun666/Xxo0bne7An9u1a5fi4+P17rvvup6CENOmTRvfG/v379fOnTt974SSmTNnav/+/dZ6vXr1UnR0tLUe/lrdunVVq1Yta72RI0daawXaLbfcYr05atQorV+/3no3p3rjjTes/zkQERGhG264wWozGFxzzTW69dZbnW7Yt2+f2rZtq+TkZKc78OfWrl2rBg0aKCkpyfUUAACCWsuWLVWzZk1rvZ07dyoxMdFaL9i8+OKLOnHihLXezTffrLx581rrITRdffXVioiIsNpctmyZVqxYYbUZyg4fPqxPP/3Uerdly5bWmwAAXIglS5b43mjbtq3vDQBAcAhzPQAAAPw1Y0wnSVsk3SMp3PGcS1VV0jfGmFHGmMtcj0HoMsbcJmmrpL6utwTAlZKWGmNeMsZwlRMAAAStlJQUq73Y2FirPVv27dun5cuXu54RUMYY1xMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOFCyZEnddddd1rvDhg2z3nTh7rvvVoMGDZxuGDp0qN5//32nG3Iyz/N05513avr06U53PP/88ypevLjTDS4NHjxY1atXd7rh8OHDuuaaa7R69WqnO/D7kpKS1KBBA61Zs8b1FISga665RuHh/r8U6eLFi31vhJLExESrvYSEBKs9nB+bH5evv/5aBw4csNYLpO7du6tUqVJWm9nZ2Ro0aJDVZk514MAB/fOf/7Te7dq1q8qWLWu9GwxefvlllShRwumGnTt3qkWLFtq1a5fTHfh97777ruLj47Vz507XUwAACAm2HxsMGzZMZ86csdoMBr/88otef/11az1jjB544AFrPYSuggULqkmTJta7Q4cOtd4MVc8995z1r5s1atTIsa9xDwDIGX788Uft37/f906bNm18bwAAgkOY6wEAAOCPGWOijTHvSfpKUozrPQF2i6SNxph410MQWowxRYwxkyWNlFTE8ZxACpf0iKTVxpgarscAAAD8nuTkZKu9uLg4qz2/nTt3TkuWLNFXX32ljRs3avfu3a4nAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAle/TRR5U3b16rzWnTpmndunVWmy6EhYXp448/VmRkpNMd9957r8aPH+90Q071+OOPa9SoUU43tGrVSgMGDHC6wbWoqCh9/PHHCgtz+1K/R48e1bXXXqslS5Y43YH/derUKd11113q2bOnTpw44XoOQlThwoXVqFEj3zuLFy/2vREqDh06pOnTp1vrxcbGqkWLFtZ6OH/9+/eXMcZKKzMzU2PGjLHSCrSoqCjdcccd1ruLFi3SBx98YL2b09x7771KTU213r3nnnusN4NFsWLF9Oabb7qeoT179qhFixbavn276yn4H4cOHVKPHj107733Kj093fUcAABCxk033aTLLrvMWm/v3r165ZVXrPWCxdNPP620tDRrvY4dO6pKlSrWeghtnTt3tt6cNWuWpk2bZr0barZu3aq3337berdLly7WmwAAXAgb12ajo6O5BgkAuYjbZy4CAIA/ZIypKGmZpLtcb/FRrKTvjDEPux6C0GCMqS9praRujqf4qaakVcaY/q6HAAAA/F+e5yk5OdlqMy4uzmrPTykpKZowYYK2bNny6z9bvHgxT/4HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEPJKly6tgQMHWu8OGzbMetOF+vXr6+mnn3a6ITs7WzfeeKPGjx/vdEdOM2TIEL300ktONxQsWFCJiYkyxjjdEQyaNWumJ554wvUMpaamqk2bNny+BYHFixerbt26+uCDD1xPQQ5w3XXX+d5YsmSJ741Q8dlnn+ncuXPWev369VNYGC8XH4zKly+v+Ph4a73ExERrrUAbOHCgwsPDrXcfffRR/fTTT9a7OcX48eM1adIk691q1aqpdevW1rvBpF+/furf3/3LD+/du1fx8fFasGCB6ym53tSpU1W7dm1NnjzZ9ZyD1mAAAQAASURBVBQAAEJOvnz5dOedd1ptPv/889q9e7fVpktLliyx/pj1gQcesNpzrUKFCjLGWHtr1aqV63c5oLp27eqk+9BDD/Ea43/h/vvvV2ZmpvVuly5drDcBALgQNq7NXn311cqbN6/vHQBAcOBZJwAABCFjzFWSVkiq73qLBRGSXjbGfGKMiXQ9BsHLGNNF0iJJFV1vsSC/pM+NMf9wPQQAAOA/UlNTderUKWu9qKgoFS9e3FrPL+np6fruu+80c+bM/7r9zpw5o6VLlzpaBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACB89hjjylPnjxWm9OmTdPatWutNl0ZPHiwGjVq5HRDZmamEhISNGbMGKc7copHHnlEL7zwgusZeuWVV1ShQgXXM4LGsGHDdOWVV7qeobNnz+qGG27Qs88+63pKrnTmzBk99thjatmypXbt2uV6DnKIzp07+97Yvn27Dh065HsnFCQmJlrtJSQkWO3hwtj8+GzdulUrVqyw1gukcuXKqU+fPta7J0+eVN++fZWRkWG9Hep27typgQMHOmk/8sgjTrrB5t1331X58uVdz9CxY8d03XXXadSoUa6n5ErHjh3Tbbfdpm7duungwYOu5wAAELIGDRqk6Ohoa70zZ87o3nvvtdZz6dy5c7r77rvleZ61ZoMGDdSmTRtrPYS+6tWrq2bNmta7u3bt4lrMn/j00081b948693Y2Fg1bdrUehcAgAuxaNEi3xs2rjEDAIJHmOsBAADgt4wx3STNk1TC8RTbbpc00xiT3/UQBB9jzD2SJkvKbfePp40xY4wxEa6HAAAAJCcnW+3FxsYqLCy0f3y5Z88eTZgwQTt27PjD/+aHH36wftsCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQKCVKVNGAwYMsN4dNmyY9aYLERERGj16tPLkyeN0R1ZWlm699Va9+eabTneEsqysLA0cOFCvvPKK6ylq37697rzzTtczgkpkZKTGjh2r/Pndv2Sa53l6+umn1atXL504ccL1nFzj66+/Vq1atfTSSy8pOzvb9RzkIA0bNlRMTIyvDc/zNHfuXF8boWD16tXatGmTtV7NmjVVr149az1cuD59+igyMtJaLzEx0Vor0AYPHixjjPXuihUr9OCDD1rvhrLTp087+z4xNjZWN998s/VuMCpcuLDGjBkTFK+5d+7cOd1222267777lJ6e7npOrvHZZ5+pevXqGjVqlOspAACEvJiYGN1+++1Wm19//bVGjhxptenCsGHDrP6sRJKefvppqz3kDDfddJOT7vPPP6958+Y5aQezbdu26Z577nHSTkhICIrH2gAA/JHk5GTt2LHD907Xrl19bwAAggePggAACCLGmN6SJkhy+xs87rSR9LUxpoDrIQgexpiHJL2j3Pu9642SvjDGRLgeAgAAcreUlBSrvdjYWKu9QDpz5ozmzp2r2bNnKy0t7S//+4ULFyojI8PCMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwz+OPP67o6Girza+++kpr1qyx2nSlRo0aev31113PUHZ2th544AE98MADys7Odj0npJw6dUqdO3fWhx9+6HqKypQpo9GjR7ueEZSqVq2qt99+2/WMX02aNEkNGjTINV/rXPnll1/Up08fdejQQbt373Y9BzmQMUZdunTxvTNnzhzfG8Fu5MiRVnsJCQlWe7hwxYoVU7t27az1xo0bpzNnzljrBdIVV1yhTp06OWm/9957Gj58uJN2qElPT1fXrl21fv16J/1HHnlEUVFRTtrBqHnz5nr66addz/jVO++8o/j4eO3cudP1lBzt+++/17XXXqubbrpJBw8edD0HAIAcY/Dgwda/13zwwQdz9M8Dly5dqhEjRlht1q1bV127drXaRM5w4403KiwszHo3Oztb/fv31/79+623g1VaWpp69+6t06dPO+nfdNNNTroAAJwvG9dk69SpowoVKvjeAQAED/uPiAEAwO8yxvSS9IWkCNdbHGsuaZYxJp/rIXDPGPOQpFdd7wgCvSSNM8aEux4CAAByr+TkZKu92NhYq71A8DxPP/74oyZMmHBBv1hx+vRprVixwsdlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOC/smXL6s4777TeHTZsmPWmKwMHDlRCQoLrGZKkN998U127dtWJEydcTwkJe/bsUfPmzfX111+7nqLw8HCNGzdOJUuWdD0laN166626++67Xc/41a5duxQfH6/nn39emZmZrufkKGlpafrnP/+patWqacKECa7nIIfr0qWL7405c+b43ghmZ8+e1RdffGG1ecMNN1jt4eL079/fWuvEiRNKSkqy1gu0oUOHyhjjpD1s2DC9/vrrTtqhIjMzU3379tXcuXOd9F097g92Q4cOVceOHV3P+NXatWtVv359ffTRR66n5DhHjx7VQw89pNq1a2vevHmu5wAAkOPExcXptttus9o8efKk+vTpo/T0dKtdGw4dOqR+/fopKyvLavfpp5929rgSoS02Nlbt27d30j5w4ID69euXI78WXKjs7Gzdfvvt2rJli5N+fHy8atWq5aQNAMD5snFN1sa1ZQBAcAlzPQAAAEjGmGskfS4p3PWWIBEv6UtjTITrIXDHGHOjpFdc7wgiPSW943oEAADIvZKTk6324uLirPYu1enTpzVr1izNmzdPZ8+eveD/f9u2bfrll198WAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9jzxxBOKjo622pw+fbrWrFljtenSBx98oBo1arieIenft33Dhg21fv1611OC2owZM9SgQYOguZ3++c9/qkWLFq5nBL033nhD8fHxrmf8KiMjQ08++aSaNm2qTZs2uZ4T8rKzszVq1ChdfvnleuaZZ3Tq1CnXk5ALtG7dWgULFvS1kZycrO3bt/vaCGaTJ0/W8ePHrfXi4+NVsWJFaz1cvK5du6pAgQLWeomJidZagdawYUP169fPWf/vf/+7Ro4c6awfzDzP06233qqpU6c62zB8+HDly5fPWT9YGWP02WefqUqVKq6n/OrkyZMaMGCArrvuOv3888+u54S8jIwMvfrqq6pSpYpef/11nTt3zvUkAAByrKefftr695yrV6/W3XffbbXpt6ysLPXt29f6a1I3atRIPXr0sNpEznL//fc7a3/33Xfq06ePMjMznW0IBnfffbfGjx/vrD9o0CBnbQAAzofnefr2229973Tt2tX3BgAguIS5HgAAQG5njLlC0hRJUY6nBJuOkj5wPQJuGGPaSBopybjeEmQGGmOedj0CAADkTikpKVZ7sbGxVnsXy/M8bd++XRMmTLjkX6BYuHBhrn8CEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDQFhMTozvuuMN6d9iwYdabruTPn18TJ05U/vz5XU+RJO3cuVNXXXWV3n33XXme53pOUMnIyNATTzyhzp0769ixY67nSJI6duyoJ554wvWMkBAZGamJEyeqTJkyrqf8xpo1a9SwYUP9/e9/14kTJ1zPCTnZ2dkaP3686tSpo9tuu0179+51PQm5SFRUlNq3b+97Z86cOb43glViYqLVXkJCgtUeLl6+fPnUrVs3a7158+bpp59+stYLtOeee05RUW5eatnzPN1555167rnneHzxf5w8eVLdu3fX559/7mxDrVq1dNtttznrB7siRYpo8uTJQfNY/T/mzJmjmjVr6tlnn9XZs2ddzwk5GRkZ+uCDD3T55Zfr4YcfDprH9gAA5GQxMTF6+OGHrXcTExM1YsQI612/3HXXXZo/f7717iuvvCJjjPUuco527dqpWrVqzvrTpk3TzTffrOzsbGcbXHrkkUf04YcfOuvHxMSoZ8+ezvoAAJyPdevW6fDhw742YmJi1LBhQ18bAIDgE+Z6AAAAuZkx5jJJUyQVspj1JO2Q9LmkByVdI6mupHL/syNKUglJl0tqLKmnpH9J+laS7Wew3G6MGWS5CceMMZUkjZcUaTGbJWmTpJGS7pHUQtIVkmIlFZAULamUpOqSmkq6QdKrkhZKOmVxpyQNN8Z0tdwEAABQSkqK1V5cXJzV3sU4efKkZs6cqYULFyojI+OSz0tNTdWqVasCsAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3HniiScUFRVltTl9+nStXr3aatOlmjVr6vPPP1dYWHC8LOnZs2d17733ql27dkpOTnY9JyisX79eV155pUaMGCHP81zPkSTVqlVLY8eOlTHG9ZSQUaZMGU2ZMkX58uVzPeU3zp07p9dee01Vq1bVBx98oMzMTNeTgl52dra++OIL1a5dW/369dOWLVtcT0Iu1bWr/y9FOGfOHN8bwejnn3/W3LlzrfUiIiLUp08faz1cuoSEBGstz/M0atQoa71Aq1ixoh544AFn/ezsbD311FPq1auXTp2y/bKxwef7779XkyZNNHXqVKc7Xn75ZYWHhzvdEOxq166tsWPHBt3tdPr0aT399NOqUaOGJkyYEDSPUYNZenq63nvvPVWpUkV33XWXfvrpJ9eTAADIVR577DGVLl3aeveJJ57Q6NGjrXcD7emnn9bHH39svdujRw81b97cehc5izFGjz/+uNMNX3zxhRISEpSenu50h01ZWVkaNGiQXnnlFac7HnvsMUVERDjdAADAX7FxLbZLly48twcAcqHgeDYwAAC5kDEmTNIXkipZSm6R9ISkcp7nVfc870bP897wPG+B53kbPc9L9jzvpOd55zzPO+x53g+e563yPC/J87zBnue1lVRM0rWSRkk6aWn3K8aYFpZacMwYk0/SZElFLSVXSrpfUinP8+p4nneH53nveZ63yPO8zZ7n7fU877TneRme5x30PG+H53krPM8b53new57ntfyfrV0kTZRk4yqPkfSpMaaahRYAAIAkKS0tTUePHrXWCw8PV5kyZaz1LpTnedq8ebMmTJigvXv3BvTszZs36+DBgwE9EwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsiouL0+233269O2zYMOtNl7p27aoXX3zR9YzfmDNnjmrXrq0333xTWVlZruc4cfr0aT355JNq3LixNm3a5HrOr0qWLKnp06erUKFCrqeEnMaNG2v8+PEKDw93PeW/HDp0SHfddZeqVaumxMREZWZmup4UdE6cOKFXX31VVapUUf/+/bVt2zbXk5DLdezYUVFRUb42FixYkCu/HowePVrZ2dnWetddd52KFy9urYdL16ZNG5UsWdJab/To0fI8z1ov0IYOHapy5co53ZCUlKSmTZvqxx9/dLrDpRkzZqhx48bOv4fp3bu32rdv73RDqOjSpYvefvtt1zN+1549e9SnTx/Vr19fkydPDumvUX45cOCAhg0bpvLly+uee+5RcnKy60kAAORKBQoU0LPPPuukfccdd+jTTz910g6EoUOHOrntoqOjNWLECOtd5Ew33XSTKleu7HTDuHHj1Lp1ax06dMjpDhtOnjypzp0766233nK6o2zZshowYIDTDQAAnI85c+b43ujevbvvDQBA8AlzPQAAgFzsCUntLHTmS2rqeV5tz/NGeJ6XcrEHef82z/O82ySVknS/JL9/oh0haawxpqjPHQSH1yXVsdBJklTT87wmnue97XnekYs9yPO8c57nfeV5Xm9JpSU9I+lUoIb+gUKSxhtj/P3tAAAAgP+RknLRDyMuSpkyZYLyF6sl6fjx45o2bZqWLl3qyy9Sep6n7777Ltf+ZQkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcobBgwcrMjLSanPGjBlavXq11aZrDz/8sAYMGOB6xm+kpqbqgQceUP369bVgwQLXc6z68ssvVaNGDT3//PM6d+6c6zm/io6O1uTJk1WhQgXXU0JWp06d9O6777qe8Yd27dql22+/XdWrV9fbb7+tU6f8fim14LdlyxYNGjRIsbGxevjhh7V7927XkwBJUpEiRdS+fXtfGydPntTixYt9bQQbz/M0atQoq82EhASrPVy6iIgI9enTx1pv9+7dIf39cP78+fX222+7nqEtW7aobt26euGFF5SRkeF6jjUHDx7ULbfcok6dOunEiRNOtxQuXFhvvPGG0w2h5q677tKQIUNcz/hDGzZsUI8ePVS/fn19+umnSk9Pdz3JuZUrV+rWW29V+fLlNXz4cB04cMD1JAAAcr3bb79dzZo1s97NysrSrbfeGtQ/D/49nufp4Ycf1j/+8Q8n/cGDB6tKlSpO2sh5IiIi9Mwzz7ieoaVLl6pJkybauHGj6ym++fHHH9WsWTN9/fXXrqdoyJAhypMnj+sZAAD8qVOnTvl+HbZUqVJq3bq1rw0AQHAKcz0AAIDcyBjTUNIwnzPbJHX2PK+153krAn2453lnPM97W1IVSS9IOhPoxv8RI+lDH89HEDDGdJF0p8+ZFZKu9jyvp+d52wJ9uOd5xz3P+6f+/XnxvqSsQDf+j7r69+ceAACA75KTk6324uLirPbOR3Z2ttavX69Jkyb5/qT/Y8eOae3atb42AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBP5cqV02233Wa9O2zYMOtN19555x21b9/e9Yz/smnTJl1zzTVq3769Vq5c6XqOr2bNmqXGjRurb9++1l/j4a+EhYVp9OjRio+Pdz0l5A0YMEBDhw51PeNP7dy5U/fff79iYmL00EMPafv27a4nWXX8+HG9//77atKkiWrXrq233npLp06dcj0L+C/9+/f3vTF16lTfG8Hku+++065du6z18ufPr65du1rrIXASEhKs9kaOHGm1F2idO3dW7969Xc9QWlqahgwZojp16mjOnDmu5/gqOztb77zzjqpVq6ZPP/3U9RxJ0ogRI1SmTBnXM0LOc889p1tuucX1jD+1YcMG3XLLLSpXrpyGDh0adI9n/bZ//369/PLLqlWrlpo0aaLRo0crPT3d9SwAAPA/jDH68MMPFRkZab3teZ7uvfdePfjgg8rKyrLev1CnT59Wjx499OqrrzrpV69eXYMHD3bSRs5100036corr3Q9Q7t371ajRo30/PPPh8TXg/PleZ7efvtt1a1bV5s2bXI9RzVr1tTAgQNdzwAA4C998803vv8MsU+fPgoPD/e1AQAITmGuBwAAkNsYY6IlfSbJz6tR70uq73nedB8bkiTP81I9zxsiqbGk731M9TTG3Ozj+XDIGFNc0sc+JrIlDZN0led5S3zsSJI8zzvged7dklpL2u9j6iFjTEsfzwcAAJAkpaSkWO3FxcVZ7f2VI0eOaMqUKVq5cqW1J/Js2LBBR44csdICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8MGTJEkZF+vlzXf5sxY4ZWrVpltelaRESEkpKS1Lx5c9dTftesWbPUpEkTderUSQsWLHA9J2Cys7M1bdo0NWvWTO3btw/a+927776rvn37up6RYwwbNkyPPPKI6xl/KTU1Va+//rpq1KihJk2a6J133smxr4Nx4sQJffbZZ+revbvKlCmju+++WytXrnQ9C/hTnTt3Vv78+X1tTJs2zdfzg83IkSOt9rp16+b7xxD+aNq0qSpXrmytl5SUpNTUVGs9P7z//vuKiYlxPUOStGPHDl133XXq2bOnVq9e7XpOQGVnZ2vKlCm68sordd999+n48eOuJ0mSOnbsqIEDB7qeEbI++eQT9evXz/WMv3Tw4EH94x//UIUKFXTttddq9OjROnXqlOtZvjh48KA+/PBDtWvXTnFxcXr00Ue1detW17MAAMAfqFmzph5//HFn/TfeeENt27bV3r17nW34Kxs3blSTJk00ZcoUZxvef/99RUVFOesjZzLG6PXXX3c9Q5KUkZGhJ598UvHx8dqyZYvrOZds165datOmje6//36lpaW5niNJ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PvWpPPaxj+16JABoTdt/l/qnf/qnrfYBGL78CxUAqKhpmv4kz6qc/VYpZWvl5lDxnSQbKzefW7nHTmqaZlaSwytn/7Vybyj5RuVeX5KTKjcBgFFg6dKlg3renDlzfufP3XPPPfniF7+Yn/zkJymlDOJU9R1yyCE57bTTsu+++3Y9CgAAAAAAAAAAAAAAAAAAAAAAAAAAAADAkHD44YfnRS960aCfe9555w36mSPFYYcdliuuuCI///nP88EPfjBPeMITuh5pyOrr68vJJ5+cf/zHf8ySJUty7rnnZrfddut6LIaRpmly8skn5+tf/3ruvvvu/PVf/3Xmzp3b9VjDyt57752zzjort956a374wx/mjW98Y6ZOndr1WPA77bPPPvmDP/iD1vo33HBDbrrpptb6bbjiiisG/cxXvOIVg34m3Rvsx/3zn/981qxZM6hnDjWHH354rrzyyixevDjnnXfeI76eGb/wxCc+MR/96Edz991356KLLsrMmTO7HokhpL+/P3/wB3+Q733ve1mwYEHe+c535oADDuh6rGHl4IMPzvnnn5877rgj3/nOd/KqV70qEyZM6HosAKCSSZMm5aKLLsqCBQvyxje+MePHj+96pNbNnDkzl1xySRYsWJBXv/rVaZqm65GgU7Nnz86ll16axYsX+3u7R7Hrrrvm7LPPzl133ZUPf/jDXpcdgBFvw4YN+bu/+7vW+gcccEBOPfXU1voADG+9rgcAgBHmqCSTKjf/rXJvyCilrE1yfeXssyr32HkntNAcyXuxKMndlbP2AgDYYUuWLBnU8/bee+/feNvGjRvzve99L1//+tezatWqQZ2ntsmTJ+eUU07J8ccfn3HjxnU9DgAAAAAAAAAAAAAAAAAAAAAAAAAAAADAkHLuuecO+plXXXVVrrnmmkE/dySZNm1a/uRP/iQ333xzfvSjH+WP//iPM2vWrK7HGhLmzp2biy66KIsXL87Xv/71vPjFL05/f3/XYzHMzZ49O3/xF3+RW265JTfffHP+/M//PAcddFDXYw1Jc+bMyZlnnplrr702d999dy655JIceuihXY8F2+3ss89utf83f/M3rfZrWr16db7whS8M6pmPfexjc8QRRwzqmQwNZ5xxRsaMGTNo5z388MP5/Oc/P2jnDWUzZszI+eefn7vuuivf+MY38tKXvjTjx4/veqwhY/fdd8+b3/zm3HTTTbnpppvyh3/4h5kwYULXYzHEHXTQQfmrv/qr3H777fmP//iPvPGNb/ytrxlIcsghh+Scc87JzTffnPnz5+e8887Lfvvt1/VYAECL9t5771x++eW566678hd/8ReZOnVq1yNVd8ABB+Rv/uZvctddd+Wss87KLrvs0vVIMKTstttuueCCC3LvvffmK1/5Ss444wzfaycZO3ZsXvSiF+ULX/hCli1blosvvjh77rln12MBwKD47Gc/mwcffLC1/llnnZW+vr7W+gAMb72uBwCAEeb4FppXtdAcSmpf39Obphm8f43J9qi9F2uTXFu5OdTU3osTKvcAgFFgyZIlg3ref3/CweLFi/P5z38+P/vZzwZ1jtqapslhhx2W0047LbNnz+56HAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAIemJT3xiXvjCFw76ueeff/6gnzlSHXnkkfnQhz6UpUuX5pprrslb3vKW7Lfffl2PNaiOOOKIvPvd786CBQtyyy235JxzzvFaBbTmCU94Qt773vdmwYIFue222/Le9743xx577Kh9Qfu+vr4cc8wxufDCC3PDDTdk8eLFufTSS3PMMcekaZqux4MdNnfu3Jx88smt9T/96U9nxYoVrfVr+tznPpe1a9cO6pkvf/nLB/U8ho499tgjz3nOcwb1zCuuuGJQzxvqer1envOc5+Qf/uEf8sADD+Qzn/lMzjjjjEyaNKnr0QbdzJkz84Y3vCHf/OY3c++99+ayyy7LE5/4xK7HYph6+tOfnssvvzxLlizJjTfemAsuuCBHHnnkqP1aeezYsXn2s5+d97///fnZz36Wn/3sZ7nooovyhCc8oevRAIBBNmPGjPz1X/91fv7zn+cTn/hEjj766K5H2in9/f15yUtekn/913/NokWL8r/+1//KuHHjuh4LhrT+/v684AUvyGc/+9ksW7YsV155ZU488cT0er2uRxs0TdPk2GOPzUc/+tEsW7YsX/rSl3Lqqaf6/AHAqHP55Ze31t5zzz3z2te+trU+AMNfU0rpegYAGDGapvlGkpr/EnB+KeWxFXtDTtM0xyS5tnL2mFLK9ZWbDFDTNPOTHFwx+Y1SynMr9oacpmleluTTlbN7lVKWVW7SoqZppiRZub3vv3LlykyZMqXFiQAYbV7xildk/vz5g3bexz72sRxxxBFZv359rr322ixatGjQzm7LrrvumuOOOy4zZ87sehQAAAAAAAAAAAAAAAAAAAAAAACAVsyfPz9bt27dofv0er0ccsghLU0EAAAAwFAzb968XHXVVfnWt76Vq6++OqtXr+56pGpmzpyZE088MSeddFJOOumk7LXXXl2PBFmxYkX+/d//Pd/97ndz9dVX5+abb86WLVu6Hqu6pmkyd+7cHH/88Tn++OPzzGc+M9OnT+96LKjqe9/7Xo4//vjW+pdeemnOPPPM1voANW3YsCFXX331tu8tfvzjH6eU0vVYVY0dOzbHHHPMtu8xjjrqqPR6va7HYoS7//77c/XVV+fqq6/Od7/73cybN2/E7VaS9PX15YgjjsgJJ5yw7XuISZMmdT0WADBE3XrrrfnsZz+bL3zhC7ntttu6HudR9Xq9HHvssTn11FNzxhlnZMaMGV2PBCPCAw88kG9/+9vbbiPhNdf/q3333TfPetaz8qxnPSvPfvaz/T0nAKPeDTfckCc/+cmt9S+66KKcc845rfUZfTyvkx2xatWqTJ06dUfuMrWUsqqtefjtmpH4l3QA0IWmaXpJViSZXDF7eSnljyv2hpymafqSPJRkSsXsn5dS3lexxwA1TbNHkvsrZ0f84/vLj9t9SZqK2dNLKV+o2KNlTdNMSbJye99/5cqVmTKl5qdSAEazUkqOP/74rF27dtDO/Od//uesWbMm11xzTdatWzdo57ahaZo84QlPyJFHHpm+vr6uxwEAAAAAAAAAAAAAAAAAAAAAAABojRezAQAAAGBHbN68OT/84Q9z/fXX5wc/+EF+8IMf5I477uh6rO3S19eXQw89NE95ylNy9NFH52lPe1oOO+ywrseCR7Vq1apcd911ueGGG3LDDTfkxhtvzF133dX1WDtszz33zJOf/OQcddRROeqoo3LMMcdk+vTpXY8FrXva056W6667rpX2QQcdlPnz56dpar5sIsDgePDBB3PNNdfk+uuvz/XXX58f/ehHWbNmTddj7ZA99tgjRx99dJ761Kduu02cOLHrsRjlHnzwwVx77bXbvne48cYb8/Of/7zrsXbY3nvvve17h6OOOipHH310Jk+u+dLzAMBocdttt+Wf/umf8p3vfCf/8R//MWS+75g5c2ZOOOGEnHjiiXn+85+fPffcs+uRYMRbsmRJ/u3f/i3f/va3c/311+f222/f4X9H35WmabLffvvl6KOPzrOe9aw861nPyoEHHtj1WAAwpLzuda/LlVde2Up78uTJWbx4caZNm9ZKn9HJ8zrZEatWrcrUqVN35C5TSymr2pqH364ppXQ9AwCMCE3THJbkp5Wz/08p5e8rN4ecpmmuSvLsisnPlVL+oGKPAWqa5pQkX6ucfUYp5ZrKzSGnaZpFSWr+rcp7SylnV+zRsqZppiRZub3vv3LlykyZMqXFiQAYTR566KE85znPGbTz+vv7c/7552fx4sWDdmZbdttttxx33HHZY489uh4FAAAAAAAAAAAAAAAAAAAAAAAAoHVezAYAAACAnfXggw/m5ptvzrx58zJv3rzcdtttue222/LAAw90NtPee++dQw89NI973ONy6KGH5tBDD82TnvSkTJw4sbOZoKbly5fnxz/+cX72s59lwYIF22533nlnNm/e3NlcTdNk1qxZOeCAA/LYxz522/4ddthhmT17dmdzQZe+8pWv5EUvelFr/X/913/N7/3e77XWBxgsW7duzaJFi/LTn/40P/3pT3Prrbdu+/pm5crtfmnQVuyxxx7Zf//9c8ghh+Txj3985s6dm8c//vGZM2dOp3PB9rr//vvz4x//OPPnz/+17x8WL168w/9mpKa+vr7svffeOeCAA37t+/fHP/7xXksQAGjFpk2b8sMf/jDf//73c+ONN+bGG2/M/Pnzs2XLllbP3WWXXXL44YfnSU96Uo444og8/elPz+Me97hWzwQe3bp16zJv3rxtfxbxq9vSpUs7nWvmzJl5/OMf/2u3ww47LJMmTep0LgAYypYvX57Zs2dn3bp1rfTf+ta35n3ve18rbUYvz+tkR6xatSpTp07dkbtMLaWsamsefrumlNL1DAAwIjRN89okV1TOHlpKua1yc8hpmua9Sf68YvKuUsr+FXsMUNM0FyQ5t2Jya5IppZSHKzaHpKZpPpfk9IrJ75ZSnlmxR8uappmSZLv/JfLKlSszZcqUFicCYDS55ZZb8rrXvW5Qzlq/fn0mTpyY//E//segnNeWXq+XI444Ik94whPS19fX9TgAAAAAAAAAAAAAAAAAAAAAAAAAg8KL2QAAAADQltWrV2fJkiVZunTptv/ed999Wb58eVasWJHly5dn+fLlWbNmTTZu3JhNmzZt++/mzZszZsyYjB07Nv39/env78+4ceMyefLkTJs27dduM2fOzJw5czJnzpzsvffemTNnTsaPH9/15UMntmzZkmXLluXnP//5r90eeOCBrFy5MitWrMjKlSuzcuXKrFq1atvO/ddbKSV9fX3p7+/ftocTJ07MlClTtt2mT5+eGTNmbLvNmjUr++23X/bdd9+MGzeu6w8DDCmllBx22GG57bZ2Xtr0BS94Qb7yla+00gYYKh566KHceeedWbJkSZYtW5b7778/9913X+6///6sWLEiq1evzurVq7Nq1aqsXbt22/cUv7olyZgxY7Z9fdPf37/t65vJkydv+z5jxowZ2XPPPTNjxozMnDkz++67b/bff/9MmjSp448AtGPTpk259957t33fcM899+Tee+/Ngw8+uO37hl99D7F69erf+P5h8+bNKaVkzJgx23Zr7NixmTRp0rb9mjp1anbbbbdf+/5h9uzZ2W+//bLPPvtkzJgxXX8YAIBRbv369bn99ttzxx135I477sidd96Z++67Lw8++GAefPDBPPTQQ1m7dm02bNiw7euhJBk3blzGjh2bsWPHZvLkydltt92y++67Z/fdd8+sWbNywAEHbLvtu+++Xi8ZhpG1a9fm3nvv3XZbtmzZr/14xYoV2bBhQ9avX5/169dv+/Gv/pv84nPE+PHjt/33V7dx48ZlypQpmTlzZvbaa6/stddev/bjvfbay59DAMAAvP/9789ZZ53VSnvs2LG54447Mnv27Fb6jF6e18mOWLVqVaZOnbojd5laSlnV1jz8dv7WCwDqeUrl3sNJ5lduDlU3VO7t1zTNHqWUByp32XG192J+KeXhys2h6oYkp1fsHdk0Ta+UsmPf1QMAo9LSpUtbP2Pr1q3b/rH/rFmzWj+vTXvuuWeOO+64TJ8+vetRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgRJg8eXIOPfTQHHrooV2PAqNGX19fZs+endmzZ3c9CvBLTdPkbW97W171qle10v/a176WxYsXZ999922lDzAUTJ8+PdOnT8+RRx7Z9SgwovT392efffbJPvvs0/UoAACdGT9+fA477LAcdthhXY8CDBG77LJLDjzwwBx44IFdjwIAbIdSSj7ykY+01n/lK1/p32AAsF16XQ8AACPIkyr3biqlbK3cHKpuaKH5xBaa7Ljae9HGr5Whqva1Tk7ib5EAgO2ydOnSVvvr16/PQw89lI0bNyZJ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AAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaUbMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBU1OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} \ No newline at end of file diff --git a/multilayer_perceptron/environment.yml b/multilayer_perceptron/environment.yml new file mode 100644 index 0000000..cf5ed74 --- /dev/null +++ b/multilayer_perceptron/environment.yml @@ -0,0 +1,95 @@ +name: onc_dl_tf2 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _tflow_select=2.3.0=mkl + - absl-py=0.11.0=pyhd3eb1b0_1 + - aiohttp=3.7.4=py36h27cfd23_1 + - astunparse=1.6.3=py_0 + - async-timeout=3.0.1=py36h06a4308_0 + - attrs=20.3.0=pyhd3eb1b0_0 + - blas=1.0=mkl + - blinker=1.4=py36h06a4308_0 + - brotlipy=0.7.0=py36h27cfd23_1003 + - c-ares=1.17.1=h27cfd23_0 + - ca-certificates=2021.1.19=h06a4308_0 + - cachetools=4.2.1=pyhd3eb1b0_0 + - certifi=2020.12.5=py36h06a4308_0 + - cffi=1.14.0=py36h2e261b9_0 + - chardet=3.0.4=py36h06a4308_1003 + - click=7.1.2=pyhd3eb1b0_0 + - coverage=5.5=py36h27cfd23_2 + - cryptography=3.3.1=py36h3c74f83_1 + - cython=0.29.22=py36h2531618_0 + - gast=0.3.3=py_0 + - google-auth=1.27.1=pyhd3eb1b0_0 + - google-auth-oauthlib=0.4.3=pyhd3eb1b0_0 + - google-pasta=0.2.0=py_0 + - grpcio=1.36.1=py36h2157cd5_1 + - h5py=2.10.0=py36hd6299e0_1 + - hdf5=1.10.6=hb1b8bf9_0 + - idna=2.10=pyhd3eb1b0_0 + - idna_ssl=1.1.0=py36h06a4308_0 + - importlib-metadata=2.0.0=py_1 + - intel-openmp=2020.2=254 + - joblib=1.0.1=pyhd3eb1b0_0 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - libedit=3.1.20191231=h14c3975_1 + - libffi=3.2.1=hf484d3e_1007 + - libgcc-ng=9.1.0=hdf63c60_0 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libprotobuf=3.14.0=h8c45485_0 + - libstdcxx-ng=9.1.0=hdf63c60_0 + - markdown=3.3.4=py36h06a4308_0 + - mkl=2020.2=256 + - mkl-service=2.3.0=py36he8ac12f_0 + - mkl_fft=1.3.0=py36h54f3939_0 + - mkl_random=1.1.1=py36h0573a6f_0 + - multidict=5.1.0=py36h27cfd23_2 + - ncurses=6.2=he6710b0_1 + - numpy=1.19.2=py36h54aff64_0 + - numpy-base=1.19.2=py36hfa32c7d_0 + - oauthlib=3.1.0=py_0 + - openssl=1.1.1j=h27cfd23_0 + - opt_einsum=3.1.0=py_0 + - pandas=1.1.3=py36he6710b0_0 + - pip=21.0.1=py36h06a4308_0 + - protobuf=3.14.0=py36h2531618_1 + - pyasn1=0.4.8=py_0 + - pyasn1-modules=0.2.8=py_0 + - pycparser=2.20=py_2 + - pyjwt=1.7.1=py36_0 + - pyopenssl=20.0.1=pyhd3eb1b0_1 + - pysocks=1.7.1=py36h06a4308_0 + - python=3.6.9=h265db76_0 + - python-dateutil=2.8.1=pyhd3eb1b0_0 + - pytz=2021.1=pyhd3eb1b0_0 + - readline=7.0=h7b6447c_5 + - requests=2.25.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=0.24.1=py36ha9443f7_0 + - scipy=1.5.2=py36h0b6359f_0 + - setuptools=52.0.0=py36h06a4308_0 + - six=1.15.0=py36h06a4308_0 + - sqlite=3.33.0=h62c20be_0 + - tensorboard=2.4.0=pyhc547734_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - tensorflow=2.2.0=mkl_py36h5a57954_0 + - tensorflow-base=2.2.0=mkl_py36hd506778_0 + - tensorflow-estimator=2.2.0=pyh208ff02_0 + - termcolor=1.1.0=py36h06a4308_1 + - threadpoolctl=2.1.0=pyh5ca1d4c_0 + - tk=8.6.10=hbc83047_0 + - typing-extensions=3.7.4.3=hd3eb1b0_0 + - typing_extensions=3.7.4.3=pyh06a4308_0 + - urllib3=1.26.3=pyhd3eb1b0_0 + - werkzeug=1.0.1=pyhd3eb1b0_0 + - wheel=0.36.2=pyhd3eb1b0_0 + - wrapt=1.12.1=py36h7b6447c_1 + - xz=5.2.5=h7b6447c_0 + - yarl=1.6.3=py36h27cfd23_0 + - zipp=3.4.0=pyhd3eb1b0_0 + - zlib=1.2.11=h7b6447c_3 +prefix: /home/ubuntu/anaconda3/envs/onc_dl_tf2 diff --git a/multilayer_perceptron/numeric_columns.pickle b/multilayer_perceptron/numeric_columns.pickle new file mode 100644 index 0000000..9228b54 Binary files /dev/null and b/multilayer_perceptron/numeric_columns.pickle differ diff --git a/onc_functions/__init__.py b/onc_functions/__init__.py new file mode 100755 index 0000000..cf778f5 --- /dev/null +++ b/onc_functions/__init__.py @@ -0,0 +1,3 @@ +from .fairness import get_fairness_assessment +from .calibrate_onc import print_calibrated_results, calibrate_onc +from .plot_functions import onc_plot_calibration_curve, onc_calc_cm, onc_plot_roc, onc_plot_precision_recall, onc_plot_risk, onc_plot_roc_no_threshold \ No newline at end of file diff --git a/onc_functions/build_mlp.py b/onc_functions/build_mlp.py new file mode 100644 index 0000000..b112545 --- /dev/null +++ b/onc_functions/build_mlp.py @@ -0,0 +1,61 @@ +import tensorflow as tf +from tensorflow.keras.layers import Dense, Dropout +from tensorflow.keras.layers.experimental import preprocessing +from tensorflow.keras.wrappers.scikit_learn import KerasClassifier +from tensorflow.keras.optimizers import Adam +from tensorflow.keras.constraints import max_norm +from tensorflow.keras.metrics import AUC +METRICS = [ + tf.keras.metrics.TruePositives(name='tp'), + tf.keras.metrics.FalsePositives(name='fp'), + tf.keras.metrics.TrueNegatives(name='tn'), + tf.keras.metrics.FalseNegatives(name='fn'), + tf.keras.metrics.BinaryAccuracy(name='accuracy'), + tf.keras.metrics.Precision(name='precision'), + tf.keras.metrics.Recall(name='recall'), + tf.keras.metrics.AUC(name='auc'), + tf.keras.metrics.AUC(name='auc_pr', + num_thresholds=200, + curve="PR", + summation_method="interpolation", + dtype=None, + thresholds=None, + multi_label=False, + label_weights=None) +] + +def build_mlp( + layers=2, + neurons=16, + output_bias=None, + optimizer='Adam', + activation='relu', + learn_rate=.0002, + dropout_rate=0.2, + kernel_regularizer='l2', + metrics=METRICS +): + if output_bias is not None: + output_bias = tf.keras.initializers.Constant(output_bias) + model = tf.keras.Sequential() + for i in range(layers): + model.add(Dense( + neurons, + activation=activation, + input_shape=(294,), + kernel_regularizer=kernel_regularizer)) + + model.add(Dropout(dropout_rate)) + model.add(Dense( + 1, + activation='sigmoid', + bias_initializer=output_bias)) + + opt = Adam(lr=learn_rate) + + model.compile( + optimizer=opt, + loss=tf.keras.losses.BinaryCrossentropy(), + metrics=metrics) + + return model diff --git a/onc_functions/calibrate_onc.py b/onc_functions/calibrate_onc.py new file mode 100755 index 0000000..7aa9859 --- /dev/null +++ b/onc_functions/calibrate_onc.py @@ -0,0 +1,50 @@ +import pandas as pd +import numpy as np +import pickle +from sklearn.metrics import accuracy_score, roc_auc_score, average_precision_score, brier_score_loss +from sklearn.isotonic import IsotonicRegression + +def print_calibrated_results(y_true, y_pred, y_calibrated): + '''print scores for pre and post calibration''' + + acc = accuracy_score(y_true, np.round(y_pred)) + acc_calibrated = accuracy_score(y_true, np.round(y_calibrated )) + print ("accuracy - original/calibrated:", acc, "/", acc_calibrated) + + auc = roc_auc_score(y_true, y_pred) + auc_calibrated = roc_auc_score(y_true, y_calibrated) + print ("ROC AUC - original/calibrated: ", auc, "/", auc_calibrated) + + pr = average_precision_score(y_true, y_pred) + pr_calibrated = average_precision_score(y_true, y_calibrated ) + print ("avg precision - original/calibrated:", pr, "/", pr_calibrated) + + clf_score = brier_score_loss(y_true, y_calibrated, pos_label=1) + print("\tBrier: %1.3f" % (clf_score)) + +def calibrate_onc(data, path, model_name): + """Plot the results of a calibrated model. """ + + #split test data (subsets 7-9) into new test (7-8)/train(9) sets + calibration_train_set = data[((data.subset==7)|(data.subset==8))].copy() + calibration_test_set = data[data.subset==9].copy() + + #define calibration model + ir = IsotonicRegression(out_of_bounds="clip") + #fit the model to the probas from the training set + ir.fit(calibration_train_set.score, calibration_train_set.y ) + + #evaluate with the test set and save + calibration_test_set.loc[:,'p_calibrated'] = ir.transform(calibration_test_set.score) + + #calibration_test_set.loc[:,'p_calibrated'] = p_calibrated + + #save + with open(path + 'model_calibrated_' + model_name + '.pickle', 'wb') as picklefile: + pickle.dump(ir,picklefile) + + with open(path + 'y_calibrated_' + model_name + '.pickle', 'wb') as picklefile: + pickle.dump(calibration_test_set, picklefile) + + print_calibrated_results(calibration_test_set.y, calibration_test_set.score, calibration_test_set.p_calibrated) + return calibration_test_set diff --git a/onc_functions/fairness.py b/onc_functions/fairness.py new file mode 100755 index 0000000..512221d --- /dev/null +++ b/onc_functions/fairness.py @@ -0,0 +1,40 @@ +import pandas as pd +import numpy as np +from sklearn.metrics import roc_auc_score, confusion_matrix + +def get_fairness_assessment(df, y_proba_col_name, y_true_col_name): + + #turn the continuous age variable into age categories + df['agegroup'] = pd.cut(df.inc_age, + bins=[17, 25, 35, 45, 55, 65, 75, 85, 90], + labels=[1, 2, 3, 4, 5, 6, 7, 8]) + + df = df.drop(columns=['inc_age']) + + #replace NaNs with a large number that does not appear in the data, effectively creating another category for missing values + df.loc[:,['race','dialtyp','hispanic']] = df.loc[:,['race','dialtyp','hispanic']].fillna(100.0, axis=1).copy() + + #Identify the cols for the fairness assessment + fairness_cols = ['agegroup', 'sex','dialtyp', 'race','hispanic'] + + #loop through all categories and values to get counts, auc, and confusion matrix + rows_list = [] + for col in fairness_cols: + for name, c in df.groupby(col): + fairness_dict = {} + fairness_dict['Feature'] = col + fairness_dict['Value'] = name + fairness_dict['Count'] = c.shape[0] + + fairness_dict['AUC'] = roc_auc_score(c[y_true_col_name], c[y_proba_col_name]) + tn, fp, fn, tp = confusion_matrix(y_true = c[y_true_col_name], + y_pred = np.where(c[y_proba_col_name] >= 0.5, 1, 0)).ravel() + fairness_dict['TN'] = tn + fairness_dict['FP'] = fp + fairness_dict['FN'] = fn + fairness_dict['TP'] = tp + rows_list.append(fairness_dict) + + #convert results from a list to a dataframe + df_fairness = pd.DataFrame(rows_list) + return df_fairness diff --git a/onc_functions/plot_functions.py b/onc_functions/plot_functions.py new file mode 100755 index 0000000..7058192 --- /dev/null +++ b/onc_functions/plot_functions.py @@ -0,0 +1,244 @@ +#!/usr/bin/env python3 +import numpy as np +import pandas as pd +from sklearn.metrics import brier_score_loss, precision_recall_curve, average_precision_score, roc_curve, auc, confusion_matrix,recall_score +from sklearn.calibration import calibration_curve +import matplotlib.pyplot as plt + +def onc_calc_cm(y_true, y_predictions, range_probas=[0.1,0.5]): + ''' + Plot the confusion matrix and scores for multiple thresholds + ''' + df = pd.DataFrame(index = range_probas, + columns=['threshold','sensitivity','specificity', + 'likelihood_ratio_neg','likelihood_ratio_pos', + 'tp','fp','tn','fn','total_survived','total_deceased',]) + for proba_threshold in range_probas: + + cm = confusion_matrix(y_true, y_predictions > proba_threshold) + tn = cm[0][0] + fp = cm[0][1] + + sensitivity = recall_score(y_true, y_predictions > proba_threshold) + specificity = tn / (tn + fp) + + df.loc[proba_threshold, "threshold"] = proba_threshold + df.loc[proba_threshold,"sensitivity"] = sensitivity + df.loc[proba_threshold, "specificity"] = specificity + df.loc[proba_threshold, "likelihood_ratio_neg"] = (1-sensitivity)/specificity + df.loc[proba_threshold, "likelihood_ratio_pos"] = sensitivity/(1-specificity) + df.loc[proba_threshold, "tp"] = cm[1][1] + df.loc[proba_threshold, "fp"] = fp + df.loc[proba_threshold, "tn"] = tn + df.loc[proba_threshold, "fn"] = cm[1][0] + df.loc[proba_threshold, "total_survived"] = np.sum(cm[0]) + df.loc[proba_threshold, "total_deceased"] = np.sum(cm[1]) + return df + +def onc_plot_roc(y_true, y_pred, model_name, **kwargs): + ''' + Plot the ROC AUC and return the test ROC AUC results. + INPUT: y_true, y_pred, model_name, **kwargs + OUTPUT: false_positives, true_positives, threshold + ''' + + #calc values for plot + false_positives, true_positives, threshold = roc_curve(y_true, y_pred) + c_roc_auc_score = auc(false_positives, true_positives) + + #set figure params + fig1 = plt.figure(1, figsize=(12,30),dpi=400) + ax1 = plt.subplot2grid((7, 1), (0, 0), rowspan=2) + + #plot reference line for chance + ax1.plot([0, 1], [0, 1], linestyle='--', lw=2, color='gray', + label='Chance', alpha=.8) + + # plot AUC ROC + ax1.plot(false_positives, true_positives, + label=r'ROC (AUC = %0.3f)' % (c_roc_auc_score), + lw=2, alpha=.8, color = 'k') + + def find_nearest(array, value): + '''find the index in the array that is closest to the value''' + array = np.asarray(array) + idx = (np.abs(array - value)).argmin() + return idx + + # plot a dot for 20% threshold for predicted risk + th_20 = find_nearest(threshold, 0.2) + ax1.plot(false_positives[th_20], true_positives[th_20],"ks:", + alpha=1) + + # plot a dot for 50% threshold for predicted risk + th_50 = find_nearest(threshold, 0.5) + ax1.plot(false_positives[th_50], true_positives[th_50],"ks:", + alpha=1) + + # additional figure params + ax1.set(xlim=[-0.05, 1.05], ylim=[-0.05, 1.05],) + ax1.legend(loc="lower right") + plt.xlabel('1-Specificity') + plt.ylabel('Sensitivity') + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + # save plot + plt.savefig(model_name + "_calibrated_roc_auc_bw.png", dpi=400, transparent=True) + plt.show() + +def onc_plot_precision_recall(test_y, test_predictions, **kwargs): + ''' + Plot the pr curve and return results + ''' + + fig, ax1 = plt.subplots() + test_precision, test_recall, _ = precision_recall_curve(test_y, test_predictions) + test_ap_score = average_precision_score(test_y, test_predictions) + + + ax1.plot( + 100*test_recall, 100*(1-test_precision), + label=r'Precision-Recall Curve (AUC = %0.3f)' % (test_ap_score), + linewidth=2, + **kwargs) + + ax1.set( + ylabel = 'Precision (PPV) [%]', + xlabel ='Recall (Sensitivity) [%]') + ax1.legend(loc="lower right") + + plt.show() + return(test_precision, test_recall, test_ap_score) + +def onc_plot_risk(y_true, y_proba, label, filename): + # calculate values for plot + fraction_of_positives, mean_predicted_value = \ + calibration_curve(y_true, y_proba, n_bins=10) + + # set up figure params + fig1 = plt.figure(1, figsize=(12,30),dpi=400) + ax1 = plt.subplot2grid((7, 1), (0, 0), rowspan=2) + + # bar plot + xs = np.arange(len(fraction_of_positives)) + ax1.bar(xs, mean_predicted_value, color='k', width = 0.25, label=label) + ax1.bar(xs+.25, fraction_of_positives, color='gray', width = 0.25, label='Observed') + + #more figure settings + plt.xticks(xs, np.arange(1, len(xs)+1, 1)) + ax1.set_ylabel("Mortality Rate") + ax1.set_xlabel("Decile of Predicted Mortality Risk") + ax1.legend(loc="upper left") + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + #save plot + plt.savefig(filename + ".png", dpi=400, transparent=True) + +def onc_plot_calibration_curve(y_true, y_proba, label, filename): + + #calculate numbers to plot + clf_score = brier_score_loss(y_true, y_proba, pos_label=1) + fraction_of_positives, mean_predicted_value = \ + calibration_curve(y_true, y_proba, n_bins=10) + # set up plot + fig1 = plt.figure(1, figsize=(10,10))#,dpi=400) + ax1 = plt.subplot2grid((3, 1), (0, 0), rowspan=2) + ax2 = plt.subplot2grid((3, 1), (2, 0)) + + #plot the reference for a prefectly calibrated model + ax1.plot([0, 1], [0, 1], "k:", label="Reference Line") + + # plot the calibration curve + ax1.plot(mean_predicted_value, fraction_of_positives, "ks-", + label=label) + + # plot histogram of predicted values + ax2.hist(y_proba, range=(0, 1), bins=10, label=label, + histtype="step", lw=2) + + # set axes and other figure parameters + ax1.set_ylabel("Observed Event Rate") + ax1.set_xlabel("Predicted Event Rate") + ax1.set_ylim([-0.05, 1.05]) + ax1.legend(loc="lower right") + + ax2.set_xlabel("Mean predicted value") + ax2.set_ylabel("Count") + ax2.legend(loc="upper right", ncol=1) + + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + #save figure resolution + plt.savefig(filename + ".png", dpi=400, transparent=True) + plt.show() + +def plot_calibrated_paper(df, label,path, filename): + + #calculate numbers to plot + clf_score = brier_score_loss(df.y, df.p_calibrated, pos_label=1) + fraction_of_positives, mean_predicted_value = \ + calibration_curve(df.y, df.p_calibrated, n_bins=10) + # set up plot + fig1 = plt.figure(1, figsize=(12,30),dpi=400) + ax1 = plt.subplot2grid((7, 1), (0, 0), rowspan=2) + #plot the reference for a prefectly calibrated model + ax1.plot([0, 1], [0, 1], "k:", label="Reference Line") + # plot the calibration of the calibrated model + ax1.plot(mean_predicted_value, fraction_of_positives, "ks-", + label=label) + # set axes and other figure parameters + ax1.set_ylabel("Observed Event Rate") + ax1.set_xlabel("Predicted Event Rate") + ax1.set_ylim([-0.05, 1.05]) + ax1.legend(loc="lower right") + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + #save figure in hi-resolution + plt.savefig(path + filename + ".eps", dpi=400, transparent=True) + +def onc_plot_roc_no_threshold(y_true, y_pred, model_name, **kwargs): + ''' + Plot the ROC AUC and return the test ROC AUC results. + INPUT: y_true, y_pred, model_name, **kwargs + OUTPUT: false_positives, true_positives + ''' + + #calc values for plot + false_positives, true_positives, threshold = roc_curve(y_true, y_pred) + c_roc_auc_score = auc(false_positives, true_positives) + + #set figure params + fig1 = plt.figure(1, figsize=(12,30),dpi=1000) + ax1 = plt.subplot2grid((7, 1), (0, 0), rowspan=2) + + #plot reference line for chance + ax1.plot([0, 1], [0, 1], linestyle='--', lw=2, color='gray', + label='Chance', alpha=.8) + + # plot AUC ROC + ax1.plot(false_positives, true_positives, + label=r'ROC (AUC = %0.3f)' % (c_roc_auc_score), + lw=2, alpha=.8, color = 'k') + + + # additional figure params + ax1.set(xlim=[-0.05, 1.05], ylim=[-0.05, 1.05],) + ax1.legend(loc="lower right") + plt.xlabel('1-Specificity') + plt.ylabel('Sensitivity') + plt.rc('axes', labelsize=22) # fontsize of the x and y labels + plt.rc('xtick', labelsize=15) # fontsize of the tick labels + plt.rc('ytick', labelsize=15) # fontsize of the tick labels + plt.rc('legend', fontsize=20) # legend fontsize + # save plot + plt.savefig(model_name + "_roc_auc_bw_nothreshold_hires.png", dpi=1000, transparent=True) + plt.savefig(model_name + "_roc_auc_bw_nothreshold_hires.eps", dpi=1000, transparent=False) + plt.savefig(model_name + "_roc_auc_bw_nothreshold_hires.svg", dpi=1000, transparent=False) \ No newline at end of file diff --git a/onc_functions/risk.py b/onc_functions/risk.py new file mode 100644 index 0000000..ae1535e --- /dev/null +++ b/onc_functions/risk.py @@ -0,0 +1,29 @@ +import pandas as pd + +def get_risk_categories(dataset, y_proba_col_name, y_true_col_name): + + test_x_pd = dataset[dataset.subset > 6].copy().sort_values(by = 'usrds_id') + del dataset + + df = test_x_pd.loc[:,[y_true_col_name,y_proba_col_name]] + + #construct the risk categories from the predicted score + df['risk_categories'] = pd.cut(df[y_proba_col_name], + bins=[-0.1, 0.09, 0.19, 0.29, 0.39, 0.49, 0.59, 0.69, 0.79, 0.89, 0.99], + labels=['0-0.09', '0.1-0.19', '0.2-0.29', '0.3-0.39', '0.4-0.49', + '0.5-0.59','0.6-0.69','0.7-0.79','0.8-0.89','0.9-0.99']) + + #loop through all the categories to get the predicted score + risk_list = [] + for name, c in df.groupby('risk_categories'): + risk_dict = {} + risk_dict['Risk Category'] = name + risk_dict['Count'] = c[y_true_col_name].shape[0] + risk_dict['Count Died in 90'] = c[y_true_col_name].sum() + risk_dict['Count Survived'] = c[y_true_col_name].shape[0]-c[y_true_col_name].sum() + risk_dict['Percent Died in 90'] = c[y_true_col_name].sum()/c[y_true_col_name].shape[0] + + risk_list.append(risk_dict) + + df_risk = pd.DataFrame(risk_list) + return df_risk \ No newline at end of file diff --git a/xgboost/__init__.py b/xgboost/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/xgboost/category_variables.R b/xgboost/category_variables.R new file mode 100644 index 0000000..ce61bfd --- /dev/null +++ b/xgboost/category_variables.R @@ -0,0 +1,74 @@ +######category variables#### +categoryVars= c( + 'race', + 'sex', + 'hispanic', + 'como_chf', + 'como_ashd', + 'como_othcard', + 'como_cvatia', + 'como_pvd', + 'como_htn', + 'como_amp', + 'como_dm_ins', + 'como_dm_oral', + 'como_dm_nomeds', + 'como_dm_ret', + 'como_copd', + 'como_tobac', + 'como_canc', + 'como_toxneph', + 'como_alcho', + 'como_drug', + 'como_inamb', + 'como_intrans', + 'como_needasst', + 'como_inst', + 'como_nrc', + 'como_none', + 'como_inst_al', + 'como_inst_nurs', + 'como_inst_oth', + 'disgrpc', + 'nephcare', + 'nephcarerange', + 'accesstype', + 'avfmaturing', + 'avgmaturing', + 'epo', + 'eporange', + 'dietcare', + 'dietcarerange', + 'patinformed', + 'pattxop_medunfit', + 'pattxop_unsutage', + 'pattxop_physunfit', + 'pattxop_decline', + 'pattxop_other', + 'pattxop_unassesssed', + 'trcert', + 'typtrn', + 'empprev', + 'empcur', + 'medcov_mdcd', + 'medcov_mdcr', + 'medcov_advantage', + 'medcov_group', + 'medcov_dva', + 'medcov_other', + 'medcov_none', + 'dialtyp', + 'dialset', + 'waitlist_status', + 'has_neo', + 'has_smo', + 'has_alc', + 'has_drg', + 'has_pne', + 'has_kid', + 'has_dia', + 'has_hyp', + 'has_flr', + 'has_cad', + 'has_cvd', + 'has_pad') \ No newline at end of file diff --git a/xgboost/imputed/0_xgb_imputed_preprocess.R b/xgboost/imputed/0_xgb_imputed_preprocess.R new file mode 100644 index 0000000..b629a4f --- /dev/null +++ b/xgboost/imputed/0_xgb_imputed_preprocess.R @@ -0,0 +1,68 @@ +library(RPostgres) +library(DBI) +library(dplyr) +library(tidyr) +library(skimr) # for summarising databases +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds + +# 1. Load `medexpressesrd` table from postgres and imputed data `micecomplete_pmm`. +# 2. Merge to create our 5 datasets. Left join `medexpreesrd` and the first set of imputations, keeping imputed cols from imp1, not `medxpreesrd`. +# 3. Categorical features get one-hot encoded. +# +# - Input: `medexpressesrd` and `micecomplete_pmm` tables from postgres +# - Output: universe.RData (data ready for modeling) + +source(file.path("~","ONC_xgboost","category_variables.R")) + +con <- dbConnect( + RPostgres::Postgres(), + dbname = '', + host = '', + port = '', + user = '', + password = '' +) + +#Read in data from postgres +medxpreesrd = dbGetQuery( + con, + " + SELECT * + FROM medxpreesrd + ") + +#Read in 5 sets of imputed data from postgres +imputations_pmm = dbGetQuery( + con, + " + SELECT *, row_number() OVER(PARTITION BY usrds_id) AS impnum + FROM micecomplete_pmm + ") + +#Left join medexpreesrd and imputations, keeping imputed cols from imputations, not medxpreesrd +universe = left_join( + medxpreesrd %>% + select(-c("height", "weight", "bmi", "sercr", "album", "gfr_epi", "heglb", "cdtype")), + imputations_pmm, + by = c("usrds_id", "subset") +) + +num_vars = setdiff(names(universe) , categoryVars) +continuous_vars = c("height", "weight", "bmi", "sercr", "album", "gfr_epi", "heglb") + +num_vars = setdiff(num_vars, continuous_vars) + +for (cc in num_vars) { + universe[,cc]=as.numeric(universe[,cc]) +} +for (c in categoryVars) { + universe[,c]=as.factor(universe[,c]) +} + +universe=data.table(universe) + +# one hot encode categorical features +universe=one_hot(as.data.table(universe), naCols=TRUE, dropUnusedLevels = TRUE) +save(universe, file="universe.RData") diff --git a/xgboost/imputed/1_xgb_imputed_get_hyperparams.R b/xgboost/imputed/1_xgb_imputed_get_hyperparams.R new file mode 100644 index 0000000..7bd5729 --- /dev/null +++ b/xgboost/imputed/1_xgb_imputed_get_hyperparams.R @@ -0,0 +1,107 @@ +library(xgboost) +library(dplyr) +library(tidyr) +library(magrittr) +##The following 8 libraries are needed to run using Simon Coulomb's approach +library(smoof) +library(mlrMBO) # for bayesian optimisation +library(skimr) # for summarising databases +library(purrr) # to evaluate the loglikelihood of each parameter set in the random grid search +library(DiceKriging) +library(rgenoud) +##The previous 8 libraries are needed to run using Simon Coulomb's approach +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds +library(rBayesianOptimization) +library(Matrix) + +#This file will run 100 Bayesian models that will result in a new range of hyperparameters. + +load("~/universe.RData") +depvar = "died_in_90" + +rhscols = setdiff(names(universe), c("usrds_id", "subset", "cdtype")) + +trainsubsets = c(0,1,2,3,4,5,6) +#testsubsets = c(7,8,9) + +model_results <-list() + +for(i in 1:5){ + + train=universe %>% + filter(subset %in% trainsubsets, impnum == i) %>% as.data.frame() + + cv_folds = rBayesianOptimization::KFold(train[, depvar], # creating 5 fold validation + nfolds= 5, + stratified = TRUE, + seed = 0) + train[] <- lapply(train, as.numeric) #force to numeric columns + + options(na.action='na.pass') + trainm <- sparse.model.matrix(died_in_90 ~ ., data = train[, rhscols]) + dtrain <- xgb.DMatrix(data = trainm, label=train[, depvar]) + + obj.fun <- smoof::makeSingleObjectiveFunction( + name = "xgb_cv_bayes", + fn = function(x){ + set.seed(12345) + cv <- xgb.cv(params = list( + booster = "gbtree", + scale_pos_weight = sqrt(12), + eta = x["eta"], + max_depth = x["max_depth"], + min_child_weight = x["min_child_weight"], + gamma = x["gamma"], + lambda = x["lambda"], + alpha = x["alpha"], + subsample = x["subsample"], + colsample_bytree = x["colsample_bytree"], + max_bin = x["max_bin"], + objective = 'binary:logistic', + eval_metric = "auc", + tree_method = "hist"), + data = dtrain, + nrounds = x["nround"], + folds = cv_folds, + prediction = FALSE, + showsd = TRUE, + early_stopping_rounds = 15, + verbose = 1) + + cv$evaluation_log[, max(test_auc_mean)] + }, + par.set = makeParamSet( + makeNumericParam("eta", lower = 0.001, upper = 0.8), + makeNumericParam("gamma", lower = 0, upper = 9), + makeNumericParam("lambda", lower = 1, upper = 9), + makeNumericParam("alpha", lower = 0, upper = 9), + makeIntegerParam("max_depth", lower = 2, upper = 10), + makeIntegerParam("min_child_weight", lower = 1, upper = 5), + makeIntegerParam("nround", lower = 10, upper = 500), + makeNumericParam("subsample", lower = 0.2, upper = 1), + makeNumericParam("colsample_bytree", lower = 0.3, upper = 1), + makeIntegerParam("max_bin", lower = 255, upper = 1023) + ), + minimize = FALSE + ) + + des = generateDesign(n=length(getParamSet(obj.fun)$pars)+1, # the number of experiments cannot equal the number of variables therefore to increase computation time, we are adding 1 to the total number of hyperparameters. + par.set = getParamSet(obj.fun), + fun = lhs::randomLHS) ## . If no design is given by the user, mlrMBO will generate a maximin Latin Hypercube Design of size 4 times the number of the black-box function's parameters. + + control = makeMBOControl() + control = setMBOControlTermination(control, iters = 100) # number of Bayesian iterations + + results = mbo(fun = obj.fun, + design = des, + control = control, + show.info = TRUE) + + #save(results, file = paste0("2021_results_run_1_",i,".RData")) + + model_results[[i]] <- results +} +# model_results[[i]]$x returns the best hyperparameters for model i +save(model_results, file = "2021_xgb_results_imputed_1.RData") \ No newline at end of file diff --git a/xgboost/imputed/2_xgb_imputed_gridsearch_cv.R b/xgboost/imputed/2_xgb_imputed_gridsearch_cv.R new file mode 100644 index 0000000..1768e0b --- /dev/null +++ b/xgboost/imputed/2_xgb_imputed_gridsearch_cv.R @@ -0,0 +1,201 @@ +# - this file will run the new range of the 5 best combinations of hyperparametes for each of the models for the imputed datasets. +# - the "best" single combination of hyperparameters resulting from this script will be feed into 5 individual models for each imputed dataset +# resulting in 5 predictions will be averaged from each imputed dataset that will be used to compute AUC. +library(pROC) +library(rsample) +library(xgboost) +library(sqldf) +library(dplyr) +library(tidyr) +library(magrittr) +##The following 8 libraries are needed to run using Simon Coulomb's approach +library(smoof) +library(mlrMBO) # for bayesian optimisation +library(skimr) # for summarising databases +library(purrr) # to evaluate the loglikelihood of each parameter set in the random grid search +library(DiceKriging) +library(rgenoud) +##The previous 8 libraries are needed to run using Simon Coulomb's approach +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds +library(rBayesianOptimization) +library(openxlsx) +library(Matrix) + +#import list of categorical variables +source(file.path("~","ONC_xgboost","category_variables.R")) + +load("~/universe.RData") +depvar = "died_in_90" + +rhscols = setdiff(names(universe), c("usrds_id", "subset", "cdtype")) + +trainsubsets = c(0,1,2,3,4,5,6) +#testsubsets = c(7,8,9) + + +# Creating hyperparameter grid for 25 samples given the new ranges from the 5 baysien models + +set.seed(123) +how_many_models <- 25 +eta <- data.frame(eta = runif(how_many_models,min = 0.04852942, max = 0.08619335)) +gamma <- data.frame(gamma = runif(how_many_models,min = 0.766442, max = 6.013658)) +lambda <- data.frame(lambda = runif(how_many_models,min = 5.845102, max = 8.751962)) +alpha <- data.frame(alpha = runif(how_many_models,min = 6.516213, max = 8.719468)) +max_depth <- data.frame(max_depth = sample(6:7, how_many_models, replace=TRUE)) +min_child_weight <- data.frame(min_child_weight = sample(1:4, how_many_models, replace=TRUE)) +nround <- data.frame(nround = sample(419:499, how_many_models, replace=TRUE)) +subsample <- data.frame(subsample = runif(how_many_models,min = 0.7314413, max = 0.8471972)) +colsample_bytree <- data.frame(colsample_bytree = runif(how_many_models,min = 0.5921707, max = 0.8566342)) +max_bin <- data.frame(max_bin = sample(529:972, how_many_models, replace=TRUE)) + +random_grid <-eta %>% + bind_cols(gamma) %>% + bind_cols(lambda) %>% + bind_cols(alpha) %>% + bind_cols(max_depth) %>% + bind_cols(min_child_weight) %>% + bind_cols(nround) %>% + bind_cols(subsample) %>% + bind_cols(colsample_bytree) %>% + bind_cols(max_bin) %>%as_tibble() + + +df.params <- bind_rows(random_grid) %>% + mutate(rownum = row_number(), + model = row_number()) +list_of_param_sets <- df.params %>% nest(-rownum) + +colnames(list_of_param_sets) <- c("model","hyperparamters") + +train_full = universe %>% + filter(subset <=6 ) %>% as.data.frame() +rm(universe) +gc() + +all <-list() + +for(i in 1:5){ + + train_onc=train_full %>% + #filter(subset <=6 ) %>% + filter(impnum == i) %>% as.data.frame() + + train_onc = train_onc[order(train_onc$usrds_id),] #We sort the data to make sure an usrsd_id will always end up in the training or validation regardless + # of which imputed dataset we are using + + all_na <- function(x) any(!is.na(x)) #creating function that removes columns containing all NAs + train_onc <- train_onc %>% select_if(all_na) #removing the columns containing all NAs + + train_onc[] <- lapply(train_onc, as.numeric) #force to numeric columns + + set.seed(2369) + tr_te_split <- rsample::initial_split(train_onc, prop = 7/10) #70% for training, 30% for validation/test + train_onc <- rsample::training(tr_te_split) %>% as.data.frame() + test_onc <- rsample::testing(tr_te_split) %>% as.data.frame() + + #per https://stackoverflow.com/questions/48805977/r-missing-data-causes-error-with-xgboost-sparse-model-matrix + options(na.action='na.pass') + trainm <- sparse.model.matrix(died_in_90 ~ ., data = train_onc[, c(rhscols,"died_in_90")]) + dtrain <- xgb.DMatrix(data = trainm, label=train_onc[, depvar]) + + testm <- sparse.model.matrix(died_in_90 ~ ., data = test_onc[, c(rhscols,"died_in_90")]) + dtest <- xgb.DMatrix(data = testm, label=test_onc[, depvar]) + watchlist <- list(train = dtrain, eval = dtest) + + random_grid_results <- list_of_param_sets %>% + mutate(results = map(hyperparamters, function(x){ + + message(paste0("model #", x$model, + " eta = ", x$eta, + " max.depth = ", x$max_depth, + " min_child_weigth = ", x$min_child_weight, + " subsample = ", x$subsample, + " colsample_bytree = ", x$colsample_bytree, + " gamma = ", x$gamma, + " nrounds = ", x$nround)) + + set.seed(12345) + singleModel <- xgb.train(params = list( + booster = "gbtree", + scale_pos_weight = sqrt(12), + eta = x$eta, + max_depth = x$max_depth, + min_child_weight = x$min_child_weight, + gamma = x$gamma, + lambda = x$lambda, + alpha = x$alpha, + subsample = x$subsample, + colsample_bytree = x$colsample_bytree, + max_bin = x$max_bin, + objective = 'binary:logistic', + eval_metric = "auc"), + data=dtrain, + nrounds = x$nround, + prediction = FALSE, + watchlist = watchlist, + showsd = TRUE, + early_stopping_rounds = 15, + verbose = 2) + + output <- list(score = predict(singleModel, dtest), + id = test_onc$usrds_id + ) + return(output) + })) + + all[[i]] <- random_grid_results # add the results to a list +} + +final_hp_results <- data.frame() + +#looping through each set of the 25 hyperparamters to pool 5 scores together to compute auc +for(i in 1:how_many_models){ + + one <- as.data.frame(data.table::transpose(all[[1]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[1]]$results[[i]]$id) + + two <- as.data.frame(data.table::transpose(all[[2]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[2]]$results[[i]]$id) + + third <- as.data.frame(data.table::transpose(all[[3]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[3]]$results[[i]]$id) + + fourth <- as.data.frame(data.table::transpose(all[[4]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[4]]$results[[i]]$id) + + fifth <- as.data.frame(data.table::transpose(all[[5]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[5]]$results[[i]]$id) + + pooling = one %>% + inner_join(two, by = "usrds_id") %>% + inner_join(third, by = "usrds_id") %>% + inner_join(fourth, by = "usrds_id") %>% + inner_join(fifth, by = "usrds_id") + + pooling$averaged <- apply(pooling[2:ncol(pooling)], 1, mean) #averaging scores + + pooling <- left_join(pooling, test_onc %>% select("usrds_id","died_in_90"), by = "usrds_id") + + auc <- pROC::auc(pooling$died_in_90, pooling$averaged) #compute AUC + + if(i == 21){ + pooling_sample <- pooling[1:5,] #sample to verify it is doing it correctly + save(pooling_sample,file = "2021_pooling_sample.RData") + } + + toAdd <- data.frame(hyper = all[[1]]$hyperparamters[[i]], + auc = auc) + + final_hp_results <- rbind(final_hp_results,toAdd) +} +save(final_hp_results, file = "2021_final_hp_results_random_grid_imputed.RData") + +openxlsx::write.xlsx(as.data.frame(final_hp_results), file = "2021_final_hp_results_random_grid_imputed.xlsx", + sheetName='Sheet1', row.names=FALSE,showNA = F) \ No newline at end of file diff --git a/xgboost/imputed/3_xgb_imputed_final_hyperparams.R b/xgboost/imputed/3_xgb_imputed_final_hyperparams.R new file mode 100644 index 0000000..a845186 --- /dev/null +++ b/xgboost/imputed/3_xgb_imputed_final_hyperparams.R @@ -0,0 +1,298 @@ +# - the "best" single combination of hyperparameters resulting from step 2 are fed into 5 individual models for each imputed dataset +# resulting in 5 predictions, then are averaged from each imputed dataset that will be used to compute AUC. +library(pROC) +library(rsample) +library(RPostgres) +library(DBI) +library(xgboost) +library(sqldf) +library(dplyr) +library(tidyr) +library(magrittr) +##The following 8 libraries are needed to run using Simon Coulomb's approach +library(smoof) +library(mlrMBO) # for bayesian optimisation +library(skimr) # for summarising databases +library(purrr) # to evaluate the loglikelihood of each parameter set in the random grid search +library(DiceKriging) +library(rgenoud) +##The previous 8 libraries are needed to run using Simon Coulomb's approach +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds +library(rBayesianOptimization) +library(openxlsx) +library(Matrix) +library(stringr) + +load('~/universe.RData') +depvar = "died_in_90" + +rhscols = setdiff(names(universe), c("usrds_id", "subset", "died_in_90")) + +trainsubsets = c(0,1,2,3,4,5,6) +testsubsets = c(7,8,9) + +set.seed(123) +how_many_models <- 1 +eta <- data.frame(eta = 0.0501135) +gamma <- data.frame(gamma = 2.937342) +lambda <- data.frame(lambda = 8.20660) +alpha <- data.frame(alpha = 7.27306) +max_depth <- data.frame(max_depth = 7) +min_child_weight <- data.frame(min_child_weight = 2) +nround <- data.frame(nround = 493) +subsample <- data.frame(subsample = 0.7513711) +colsample_bytree <- data.frame(colsample_bytree = 0.6611578) +max_bin <- data.frame(max_bin = 935) + +random_grid <-eta %>% + bind_cols(gamma) %>% + bind_cols(lambda) %>% + bind_cols(alpha) %>% + bind_cols(max_depth) %>% + bind_cols(min_child_weight) %>% + bind_cols(nround) %>% + bind_cols(subsample) %>% + bind_cols(colsample_bytree) %>% + bind_cols(max_bin) %>%as_tibble() + + +df.params <- bind_rows(random_grid) %>% + mutate(rownum = row_number(), + model = row_number()) +list_of_param_sets <- df.params %>% nest(-rownum) + +colnames(list_of_param_sets) <- c("model","hyperparamters") + +train_full = universe %>% + filter(subset <=6 ) %>% as.data.frame() + +test_full = universe %>% + filter(subset > 6 ) %>% as.data.frame() + +print(paste("dimensions for train_full:",dim(train_full))) +print(paste("dimensions for test_full:",dim(test_full))) + +rm(universe) +gc() + +all <-list() + +all_features <- list() + +for(i in 1:5){ + + #### training pre-processing + + train_onc=train_full %>% + #filter(subset <=6 ) %>% + filter(impnum == i) %>% as.data.frame() + + train_onc = train_onc[order(train_onc$usrds_id),] + # train_onc = train_onc[1:1000,] #small sample to make sure code runs + + rownames(train_onc) <- train_onc$usrds_id #preserving usrds_id as rownames because usrds_id will be removed in next line + + train_onc <- train_onc[, c(rhscols,"died_in_90")] #selecting variables + + all_na <- function(x) any(!is.na(x)) #creating function that removes columns containing all NAs + train_onc <- train_onc %>% select_if(all_na) #removing the columns containing all NAs + + train_onc[] <- lapply(train_onc, as.numeric) #force to numeric columns + + print(paste("dimensions for train_onc:",dim(train_onc))) + + #per https://stackoverflow.com/questions/48805977/r-missing-data-causes-error-with-xgboost-sparse-model-matrix + options(na.action='na.pass') + trainm <- sparse.model.matrix(died_in_90 ~ ., data = train_onc) + dtrain <- xgb.DMatrix(data = trainm, label=train_onc[, depvar]) + rm(trainm) + rm(train_onc) + gc() + + #### test pre-processing + + test_onc=test_full %>% + #filter(subset <=6 ) %>% + filter(impnum == i) %>% as.data.frame() + + test_onc = test_onc[order(test_onc$usrds_id),] + + # test_onc = test_onc[1:1000,] #small sample to make sure code runs + + test_ids <- test_onc$usrds_id #preserving usrds_id + rownames(test_onc) <- test_onc$usrds_id #preserving usrds_id as rownames because usrds_id will be removed in next line + + test_onc <- test_onc[, c(rhscols,"died_in_90")] #selecting variables + + test_onc <- test_onc %>% select_if(all_na) #removing the columns containing all NAs + + test_onc[] <- lapply(test_onc, as.numeric) #force to numeric columns + + print(paste("dimensions for test_onc:",dim(test_onc))) + + options(na.action='na.pass') + testm <- sparse.model.matrix(died_in_90 ~ ., data = test_onc) + dtest <- xgb.DMatrix(data = testm, label=test_onc[, depvar]) + rm(testm) + gc() + + watchlist <- list(train = dtrain, eval = dtest) + + random_grid_results <- list_of_param_sets %>% + mutate(results = map(hyperparamters, function(x){ + + message(paste0("model #", x$model, + " eta = ", x$eta, + " max.depth = ", x$max_depth, + " min_child_weigth = ", x$min_child_weight, + " subsample = ", x$subsample, + " colsample_bytree = ", x$colsample_bytree, + " gamma = ", x$gamma, + " nrounds = ", x$nround)) + + set.seed(12345) + singleModel <- xgb.train(params = list( + booster = "gbtree", + scale_pos_weight = sqrt(12), + eta = x$eta, + max_depth = x$max_depth, + min_child_weight = x$min_child_weight, + gamma = x$gamma, + lambda = x$lambda, + alpha = x$alpha, + subsample = x$subsample, + colsample_bytree = x$colsample_bytree, + max_bin = x$max_bin, + objective = 'binary:logistic', + eval_metric = "auc"), + data=dtrain, + nrounds = x$nround, + prediction = FALSE, + watchlist = watchlist, + showsd = TRUE, + early_stopping_rounds = 15, + verbose = 0) + + feature_imp <- xgb.importance(singleModel$feature_names, + model = singleModel) + + all_features[[i]] <- feature_imp # add feature_imp to list + + output <- list(score = predict(singleModel, dtest), + id = test_ids + ) + return(output) + })) + + all[[i]] <- random_grid_results # add the results to a list + +} +print("xgboost model finished") + +final_hp_results_single <- data.frame() + +for(i in 1:how_many_models){ + + one <- as.data.frame(data.table::transpose(all[[1]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[1]]$results[[i]]$id) + + two <- as.data.frame(data.table::transpose(all[[2]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[2]]$results[[i]]$id) + + third <- as.data.frame(data.table::transpose(all[[3]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[3]]$results[[i]]$id) + + fourth <- as.data.frame(data.table::transpose(all[[4]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[4]]$results[[i]]$id) + + fifth <- as.data.frame(data.table::transpose(all[[5]]$results[[i]]))[1,] %>% + tidyr::gather(key = "usrds_id", value = "score") %>% + mutate(usrds_id = all[[5]]$results[[i]]$id) + + pooling = one %>% + inner_join(two, by = "usrds_id") %>% + inner_join(third, by = "usrds_id") %>% + inner_join(fourth, by = "usrds_id") %>% + inner_join(fifth, by = "usrds_id") + + pooling$averaged <- apply(pooling[2:ncol(pooling)], 1, mean) #averaging scores + pooling$usrds_id <- as.character(pooling$usrds_id) + + test_onc$usrds_id <- as.character(rownames(test_onc)) + + pooling <- left_join(pooling, test_onc %>% select("usrds_id","died_in_90"), by = "usrds_id") + + pooling$predicted <- ifelse(pooling$averaged > 0.5, 1,0) + + print("pooling summary after left_join():") + summary(pooling) + + print("conf matrix:") + table(pooling$predicted, pooling$died_in_90) + conf_matrix <- table(pooling$predicted, pooling$died_in_90) + + save(conf_matrix, file = "2021_conf_matrix.RData") + + tp <- conf_matrix[2,2] + fp <- conf_matrix[2,1] + fn <- conf_matrix[1,2] + tn <- conf_matrix[1,1] + + sensitivity = tp / (tp + fn) + specificity = tn / (fp + tn) + fpr = 1 - specificity + tpr = sensitivity + LR = sensitivity / (1 - specificity) + ppv = tp / (tp + fp) + npv = tn / (tn + fn) + f1_score = 2 * ppv * sensitivity / (ppv + sensitivity) + + accuracy <- mean(pooling$predicted == pooling$died_in_90) + + myplot <- pROC::plot.roc(pooling$died_in_90, pooling$averaged) + + save(myplot, file = "2021_myplot_xgb.RData") + + toAdd <- data.frame(hyper = all[[1]]$hyperparamters[[i]], + auc = myplot$auc, + sensitivity = sensitivity, + specificity = specificity, + fpr = fpr, + tpr = tpr, + LR = LR, + ppv = ppv, + npv = npv, + f1_score = f1_score + ) + + write.csv(pooling, '2021_xgb_pooling_results_final_roc.csv') + + final_hp_results_single <- rbind(final_hp_results_single,toAdd) + + save(final_hp_results_single, file = "2021_final_hp_results_single_imputed_xgb.RData") + openxlsx::write.xlsx(as.data.frame(final_hp_results_single), file = "2021_final_hp_results_single_imputed_xgb.xlsx", + sheetName='Sheet1', row.names=FALSE,showNA = F) +} + +print("saving the feature importance") +save(all_features, file = "2021_all_features.RData") + +#averging the feature importance +averaged <- all_features %>% reduce(inner_join, by = "Feature") %>% as.data.frame() + +rownames(averaged) <- averaged$Feature +averaged = averaged %>% select(contains("Gain")) + +averaged$average = as.data.frame(apply(averaged, 1, mean)) #compute average + +averaged$feature = rownames(averaged) + +save(averaged, file = "2021_averaged_feature_importance_xgb.RData") +#openxlsx::write.xlsx(as.data.frame(averaged), file = "2021_averaged_single_hyperparameter_xgb.xlsx", + # sheetName='Sheet1', row.names=FALSE,showNA = F) \ No newline at end of file diff --git a/xgboost/imputed/4_xgb_imputed_calibration.ipynb b/xgboost/imputed/4_xgb_imputed_calibration.ipynb new file mode 100644 index 0000000..06b701c --- /dev/null +++ b/xgboost/imputed/4_xgb_imputed_calibration.ipynb @@ -0,0 +1,379 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 15, + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import pickle\n", + "\n", + "import sys\n", + "sys.path.append('../../onc_functions')\n", + "\n", + "\n", + "# import custom functions\n", + "from plot_functions import onc_plot_calibration_curve\n", + "from calibrate_onc import calibrate_onc" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 8, + "source": [ + "import psycopg2\n", + "from sqlalchemy import create_engine\n", + "\n", + "con = create_engine('postgresql://username:upassword@dbconnection/dbname')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Plot calibration curve of original model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 10, + "source": [ + "# load results from the aucroc evaluated model)\n", + "pred_df = pd.read_csv('./roc_results/2021_xgb_pooling_results_final_roc.csv')\n", + "pred_df = pred_df.loc[:,['averaged','died_in_90','usrds_id']]\n", + "pred_df.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " averaged died_in_90 usrds_id\n", + "0 0.467093 1 31089.0\n", + "1 0.473195 0 34521.0\n", + "2 0.290782 0 46751.0\n", + "3 0.225663 0 50506.0\n", + "4 0.041878 0 54985.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
averageddied_in_90usrds_id
00.467093131089.0
10.473195034521.0
20.290782046751.0
30.225663050506.0
40.041878054985.0
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 10 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 11, + "source": [ + "onc_plot_calibration_curve(\n", + " y_true=pred_df.died_in_90, \n", + " y_proba=pred_df.averaged, \n", + " label='XGBoost_imputed',\n", + " filename='./roc_results/xgb_imputed_orig_calibration')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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UKVboYiIiMglO3nyJNmzZydv3rxJQ7HiDfXciYiIyCWZOXMmJUuWZMOGDQA888wz1KpVy+NUmZeKOxEREbkozjkgcei1du3aZM2qAcFAoOJORERELtiAAQO46667AChatChffPEFpUqV8jiVgIo7ERERuQjh4eFky5aN06dPex0FgD///POcrxUuXNiPSbyn4k5ERETO6+DBg3Tp0oUff/wRgKeffprRo0cTHh7ucbLE4eH777+f3Llzs3nzZpxzf/vauXOn1xH9SsWdiIiInFd4eDgLFizg119/BfDLrU3S6uOPP2bGjBm88sorXH311V7H8ZyduRgys4uOjnYxMTFexxAREQkYGzZs4L333uONN94gLCyMU6dOkS1bNq9j/c2uXbsoX7485cqVY968eWTJkjn6rcxsqXMuOqXXMsd3QERERC5YTEwMo0ePZu3atQABV9gB9OnTh6NHjzJy5MhMU9idj74LIiIikuTnn39m6tSpAHTo0IFNmzYRGRnpcaqUff3110ycOJF+/fpx/fXXex0nYGhY1kfDsiIiktk556hTpw6xsbEsWbIkoK6rO9uhQ4coX748BQsWJCYmJiAmdviThmVFREQkRc45vvrqK44dO4aZ8emnnzJ37tyALuwAnnzySXbu3MkHH3yQ6Qq781FxJyIikomtXr2aNm3aMHToUACuvvpqcufO7XGq1M2ZM4cRI0bw2GOPER2dYudVpqZhWR8Ny4qISGYRHx/PsmXLuOGGG4DEtWEbNmwYFMuHHT9+nKioKABWrlxJzpw5PU7kDQ3LioiISJLnnnuOG2+8ka1btwLQpEmToCjsAPr378+mTZt4//33M21hdz7BcSZFRETkkhw7dowTJ05QsGBBHn74YSpXrkzx4sW9jnVBYmJieOONN+jZsycNGjTwOk7A0rCsj4ZlRUQkVMXFxVGxYkUqVKjA559/7nWci3L69Gmio6PZu3cva9as4bLLLvM6kqdSG5ZVz52IiEiIOnr0KLlz5yZr1qw88cQTlC1b1utIF+21115j5cqVfP3115m+sDsfXXMnIiISghYtWkSJEiX48ccfAejevTt169b1ONXFWbt2LQMGDODOO++kVatWXscJeCruREREQkhCQgIAkZGR3HrrrRQuXNjjRJcmISGBe++9l9y5c/POO+94HScoBGVxZ2ZNzWy9mW00s6dTeL2Emc0xs+VmttLMmnuRU0RExJ/eeustbrrpJuLj48mVKxcfffRRUA/FAvzvf//j559/5q233gr6QtVfgq64M7Mw4D2gGVAe6Ghm5c/a7D/AROdcFaAD8D//phQREfG/IkWKcPXVV3PixAmvo6SLP//8k2eeeYZbbrmFu+++2+s4QSPoijugOrDROfe7cy4WGA+0PmsbB+T1Pb4M+MuP+URERPzi+PHj3HvvvYwbNw6Ajh078vHHHwf8ChNp4ZzjgQcewDnH8OHDA345tEASjLNliwFbkz3fBtQ4a5v+wEwzexjIBTTyTzQRERH/yZYtG+vXr+faa6/1Okq6+/jjj5k+fTrvvPMOV199tddxgkow9tylRUdgjHOuONAc+MjM/vFZzaynmcWYWcyePXv8HlJERORC/fHHH3Tr1o2jR48SFhbGnDlzePrpf1x+HtR2795N3759qV27Ng8++KDXcYJOMBZ324Grkj0v7mtLrgcwEcA5twDIDhQ8+0DOuRHOuWjnXHShQoUyKK6IiEj62b59O1988QXLly8HCJplwy5Enz59OHr0KCNHjiQsLMzrOEEnGIu7JUAZMytlZhEkTpiYfNY2W4CbAcysHInFnbrmREQkKC1evJjRo0cDULduXbZs2cKNN97ocaqMMXnyZCZMmMBzzz1HuXLlvI4TlIJy+THfrU0GA2HAKOfcS2Y2AIhxzk32zZ59H8hN4uSKJ51zM1M7ppYfExGRQNWhQwdiYmJYs2YNERERXsfJMIcOHaJ8+fIUKFCAmJiYkP6slyrklh9zzk0Dpp3V1i/Z4zVAHX/nEhERSS+TJ08mOjqaK6+8knfffZeIiIiQL3aefPJJdu7cyVdffRXynzUjBeOwrIiISEjbsWMH7du354033gCgYMGC5M2b9zx7Bbe5c+cyYsQI/vWvf3HDDTd4HSeoBeWwbEbQsKyIiHgpISGBH374gQYNGgCwYMECoqOjCQ8P9zhZxjtx4gRRUVE451i5ciU5c+b0OlLAS21YVj13IiIiAeDdd9+lYcOGSbNga9WqlSkKO4D+/fuzceNG3n//fRV26SAor7kTEREJBSdOnGDPnj2UKFGCHj16UKRIESpXrux1LL+KiYnh9ddf5957703qtZRLo2FZHw3LioiIPznnqFu3LnFxcSxcuDBTLq91+vRpoqOj2bNnD2vWrCFfvnxeRwoaITdbVkREJFgdOHCAfPnyYWY888wz5MqVK1MWdgCDBg1i5cqVfPXVVyrs0pGuuRMREfGTdevWUaZMGcaNGwdAixYtMu1Q5Lp163jhhRe44447aN26tddxQoqKOxERkQx2+vRpAMqUKUOHDh2oUqWKx4m8lZCQwL333kuuXLkYMmSI13FCjoo7ERGRDPTBBx8QGRnJ0aNHCQsL491336VChQpex/LU0KFD+emnn3jrrbcoXLiw13FCjoo7ERGRDHBmwuL1119P5cqVOXXqlMeJAsOWLVt4+umnadKkCffcc4/XcUKSJlSIiIiko7i4OHr37k2JEiX497//TZ06dahTRytiQmLB+8ADD+CcY/jw4Zl2IklGU3EnIiKSjrJmzcrhw4c5evSo11ECzrhx4/j22295++23KVmypNdxQpbuc+ej+9yJiMjF2rZtG48//jhvvPEGxYoVIyEhgSxZdOVTcrt376Z8+fKULVuWH3/8kbCwMK8jBTUtPyYiIpKBTp48yezZs5OWDlNh90+PPPIIR44cYeTIkSrsMpj+7xMREbkIy5Yt47XXXgPg2muv5c8//6RFixYepwpMU6ZMYfz48fznP/+hfPnyXscJeSruRERELsL48eMZPHgwBw4cANCC9+dw6NAhevXqRWRkJE899ZTXcTIFFXciIiJpNG3aNFauXAlA//79WbNmDfnz5/c4VWB76qmn2LFjBx988AERERFex8kUVNyJiIikwbFjx+jWrVvSUGzOnDm1Hup5/PDDDwwfPpy+fftSvXp1r+NkGpot66PZsiIicraEhASmTp1Ky5YtMTN+/fVXypYtS7Zs2byOFvBOnDhBVFQUCQkJrFy5kly5cnkdKaRotqyIiMhFmDRpEq1bt2b69OkAVKxYUYVdGvXv35+NGzfy/vvvq7DzMxV3IiIiyZw8eZJ169YBcPvtt/Pll1/StGlTj1MFl6VLl/LGG2/Qo0cPGjZs6HWcTEfDsj4alhUREYA2bdqwbNkyfvvtN/XSXYTTp09zww03sHv3btasWaPrEjNIasOyWn5MREQyvf3795M7d24iIiJ4+umnOXTokAq7i/T666/zyy+/8MUXX6iw84iGZUVEJFPbtWsX119/fdIs2Bo1atCkSROPUwWndevW8cILL9CuXTvatGnjdZxMS8WdiIhkSidOnACgcOHCPPTQQ7Rs2dLjRMEtISGB++67j5w5czJkyBCv42RqKu5ERCTT+fzzzylVqhTbt28H4Pnnn6dSpUoepwpuw4YNY/78+bz55psUKVLE6ziZmoo7ERHJNM5MIqxSpQr169cnSxb9GkwPW7Zs4amnnqJx48Z06dLF6ziZniZUiIhIyHPO8dhjj3Hs2DGGDx9O6dKlGT9+vNexQoJzjgceeICEhARGjBiBmXkdKdNTcSciIiHPzMiWLRtxcXEkJCSoxy4dffLJJ3z77bcMHjyYkiVLeh1H0H3ukug+dyIioWX37t089NBDPPvss1SuXBnnnHqV0tmePXsoV64c1157LT/99BNhYWFeR8o0tPyYiIhkOuHh4cTExLB69WoAFXYZ4JFHHuHw4cN88MEHKuwCiIo7EREJGStXruSxxx7DOUf+/PlZv349d911l9exQtLUqVP59NNPefbZZ6lQoYLXcSQZFXciIhIy5s+fz0cffcSff/4JQEREhMeJQtPhw4d54IEHiIyM5JlnnvE6jpxFxZ2IiAS1WbNm8d133wHwwAMPsG7dOl3Yn8GeeuopduzYwQcffKACOgBptqyIiASt+Ph4Hn30UYoWLUqjRo3IkiULl19+udexQtoPP/zAsGHDePTRR6levbrXcSQFmi3ro9myIiLBwTnHxIkTue2228iWLRu///47V155JdmzZ/c6Wsg7ceIElSpVIi4ujl9//ZVcuXJ5HSnT0mxZEREJGT///DMdOnTg448/BuCaa65RYecnL7zwAhs2bGDEiBEq7AKYijsREQl4sbGxnBldqVOnDjNmzKBbt24ep8pcli1bxuuvv0737t1p1KiR13EkFSruREQk4PXp04eGDRuyf/9+AJo0aaJVJvzo9OnT9OjRg0KFCvH66697HUfOQxMqREQkIB08eBCAfPny8eSTT9KqVStNlvDIG2+8wYoVK5g0aRL58+f3Oo6ch2d/9phZYTP7wMy+9T0vb2Y9vMojIiKB4/jx41SsWJEnnngCSLyurnnz5h6nypzWr19P//79uf3222nbtq3XcSQNvOzTHgPMAK70Pf8N6OtVGBER8d6RI0cAyJkzJ//+97/p1auXx4kyt4SEBO69915y5MjBu+++63UcSSMvi7uCzrmJQAKAcy4OiPcwj4iIeGjWrFlcddVVrFixAoBevXpRtWpVb0NlcsOHD2f+/Pm8+eabFClSxOs4kkZeFnfHzKwA4ADMrCZwyMM8IiLigfj4xL/ro6OjdV1dANm6dStPPvkkjRo1omvXrl7HkQvg5YSKfwGTgdJm9hNQCLjDwzwiIuJn/fv3Z9GiRUybNo38+fMzduxYryMJiTeK7tWrFwkJCQwfPhwz8zqSXAAvi7vVwE3AdYAB69GtWUREMpUiRYpQsmRJYmNjyZYtm9dxxOfTTz/lm2++4a233uKaa67xOo5cIM+WHzOzZc65qudr8xctPyYikvEOHjzI/fffz913302LFi28jiMp2LNnD+XKlePaa6/lp59+IiwszOtIkoLUlh/ze8+dmRUBigE5zKwKib12AHmBnP7OIyIi/pMzZ042bdrE1q1bvY4i59C3b18OHz7MyJEjVdgFKS+GZW8BugLFgTeTtR8B/u1BHhERyUBr167ltddeY9iwYWTLlo1FixapaAggRYoUYdeuXf9ob9SoETt37vQgkVwqv1/j5pz70DnXAOjqnGuQ7KuVc+4Lf+cREZGM9ccffzB58mTWrl0LoMIuwKRU2KXWLoHPswkVzrlJZnYrUAHInqx9gFeZREQkfcyZM4edO3fSsWNHmjdvzh9//EHevHm9jiWSKXhW3JnZMBKvsWsAjATaAYu9yiMiIuln4MCB7Nmzh/bt25MlSxYVdiJ+5OWtR2o75+4BDjjnXgBqAWU9zCMiIhfJOcenn37K/v37ARg7dizz588nSxbd4UrE37z8V3fC99/jZnYlcBoo6mEeERG5SBs3buTuu+/mf//7HwCFCxcmZ07dACHQTZgwwesIkgG8vInxVDPLBwwClpG4DNlID/OIiMgFOH36NPPnz6dBgwaUKVOGH3/8kerVq3sdS9JoxowZ3H333YSHh3P69Ol/vF64cGEPUkl68Kznzjn3X+fcQefcJOBq4HpgYFr2NbOmZrbezDaa2dPn2OZOM1tjZqvN7JN0jC4iIsBLL71E48aN2bRpEwC1atXSTNgg8fPPP9O2bVvKly/P7t27cc7940u3QQlenvTcmVkxEodgVzrnYoHLgL4k3v/uyvPsGwa8BzQGtgFLzGyyc25Nsm3KAM8AdZxzB8zsioz4HCIimc3hw4c5cuQIxYoV45FHHqFq1aqULl3a61hyAX799VduvfVWrrzySmbMmEG+fPm8jiTpzO89d2bWF1gBDAEWmtm9wFogB1AtDYeoDmx0zv3uKwzHA63P2uY+4D3n3AEA59zu9EkvIpJ5JSQkUKtWLbp37w5A/vz5adWqlcep5EL8/vvvNGnShJw5czJr1iwNvYYoL3ruegLXOef2m1kJ4DcSe9iWpnH/YkDydWu2ATXO2qYsgJn9BIQB/Z1z0y8ttohI5rRv3z4KFChAlixZGDBgAFdddZXXkeQi7Nixg8aNGxMbG8u8efMoWbKk15Ekg3hxzd1J59x+AOfcFmD9BRR2aZUVKAPUBzoC7/smb/yNmfU0sxgzi9mzZ086RxARCX4xMTGUKlWKqVOnAnD77bdr0kQQOnDgALfccgu7du1i2rRpVKhQwetIkoG86LkrbmbvJHteNPlz51yf8+y/HUj+Z2NxX1ty24BFzrnTwB9m9huJxd6S5Bs550YAIwCio6PdBX0KEZEQFhsbS0REBFFRUXTu3Jny5ct7HUku0rFjx2jRogXr1q3jm2++oUaNswe7JNR4Udw9cdbzC+21WwKUMbNSJBZ1HYBOZ23zFYk9dqPNrCCJw7S/X3hUEZHM58033+TDDz9k8eLFZMuWLenedRJ8YmNjadeuHQsXLmTChAk0btzY60jiB34v7pxzH17i/nFm1huYQeL1dKOcc6vNbAAQ45yb7HutiZmtAeKBJ5xz+y41u4hIKHPOYWaUK1eO6OhoTp06RbZs2byOJRcpPj6eLl26MH36dEaMGEG7du28jiR+Ys5pNBISh2VjYmK8jiEi4ncnTpzgvvvuo2bNmvTu3dvrOJIOnHM89NBDDB06lIEDB/LUU095HUnSmZktdc5Fp/SaFv0TEcnksmfPzuHDhzl+/LjXUSSd9OvXj6FDh/LEE0+osMuEPCvuzKxOWtpERCT9bdy4kXbt2rF//37MjK+//ponn3zS61iSDgYPHsyLL75Ijx49ePXVV72OIx7wsuduSBrbREQknR0/fpwffviBX3/9FQAz8ziRpIexY8fy6KOP0rZtW4YNG6bzmkn5fUKFmdUCagOFzOxfyV7KS+IECRERyQDz589n6dKlPPLII0RFRbFlyxZy5MjhdSxJJ5MnT6Z79+7cfPPNfPLJJ2TN6skKoxIAvOi5iwByk1hY5kn2dRjQVB4RkQwyduxYhgwZwokTJwBU2IWQuXPncuedd1K1alW+/PJLzXLO5DybLWtmVzvn/vTkzVOg2bIiEmqcc0ycOJFq1apx7bXXcvjwYcLCwsiVK5fX0SQdLV26lAYNGlC8eHF+/PFHChQo4HUk8YNAnS2bzcxGmNlMM/v+zJeHeUREQsr+/fvp2bMn77yTuAhQ3rx5VdiFmPXr19O0aVPy58/PzJkzVdgJ4M0KFWd8BgwDRpJ4o2EREblEcXFxTJs2jVatWlGgQAF+/PFHLR0WorZu3Urjxo0xM2bNmkXx4sW9jiQBwsviLs45N9TD9xcRCTmjRo3i/vvv5+eff6ZWrVpERUV5HUkywN69e2nSpAmHDh1i7ty5lC1b1utIEkC8LO6mmNmDwJfAqTONzrn93kUSEQk+R48e5a+//qJs2bJ07dqVK6+8kpo1a3odSzLIkSNHaNasGZs3b2bGjBlUqVLF60gSYLws7rr4/vtEsjYHXONBFhGRoNWiRQv27t3LypUriYiIoEWLFl5Hkgxy8uRJWrduzfLly/nyyy+pV6+e15EkAHlW3DnnSnn13iIiwW7Xrl0ULFiQsLAwXnjhBcLDw8mSRStKhrK4uDg6duzInDlz+Oijj2jZsqXXkSRAebn8WE4z+4+ZjfA9L2Nm+nNTROQ8Nm3axHXXXcfQoYmXLd90003Url3b41SSkZxz9OzZk6+++oq3336bzp07ex1JApiXf+aNBmJJXK0CYDvwondxREQC25mbD19zzTX07t2bW265xeNE4g/OOZ544glGjx5Nv3796NOnj9eRJMB5WdyVds69BpwGcM4dB7QInohICj744APKlCnD/v37MTNefPFFypQp43Us8YOBAwfyxhtv0Lt3b/r37+91HAkCXhZ3sWaWg8RJFJhZaZLNmhURkcReG4AbbriBRo0a4dWqQuKN4cOH8+9//5tOnTrx9ttvY6Y+EDk/L5cfawI8C5QHZgJ1gK7Ouble5NHyYyISSBISErj33nspUKAAgwYN8jqOeGDixIl06NCBZs2a8dVXXxEeHu51JAkgqS0/5uVs2ZlmthSoSeJw7CPOub1e5RERCSRZsmQhZ86c5MiRw+so4oEZM2bQuXNn6tSpw2effabCTi6Il7NlpwBNgLnOuakq7EQks9uyZQstW7Zkw4YNAAwZMoQBAwZ4nEr8bcGCBbRt25by5cszZcoUcubM6XUkCTJeXnP3OnAjsMbMPjezdmaW3cM8IiKeypo1K7/88gvr1q0D0PVVmdCqVau49dZbKVq0KNOnTydfvnxeR5Ig5Flx55z7wTn3IIkrUgwH7gR2e5VHRMQLixYt4t///jcAV155JZs2bdLNaTOp33//nSZNmpAjRw5mzZpFkSJFvI4kQcrT25n7ZsveDjwA3AB86GUeERF/mz17Nh999BF79uwB0LVVmdTOnTtp0qQJJ0+eZMaMGZQqpUWc5OJ5OVt2IlAdmA5MAH5wziV4EgbNlhUR//nyyy8pXLgwtWvXJjY2llOnTpEnTx6vY4lHDh48yE033cSmTZv47rvvqFmzpteRJAgE5GxZ4AOgo3Mu3sMMIiJ+dfLkSf71r39RvXp1ateuTUREBBEREV7HEo8cP36cFi1asHbtWr755hsVdpIu/D4sa2ZPAjjnZgBtz3rtZX/nERHJaPHx8YwbN474+HiyZ8/Od999x8cff+x1LPFYbGws7dq14+eff2bcuHE0btzY60gSIry45q5DssfPnPVaU38GERHxh2+//ZbOnTvz9ddfA1C6dGldW5fJJSQk0LVrV7799luGDx/OHXfc4XUkCSFeFHd2jscpPRcRCUrHjx9n2bJlANx6663MmjWLNm3aeJxKAoFzjocffphPP/2UV155hfvuu8/rSBJivCju3Dkep/RcRCQodevWjWbNmnH8+HHMjEaNGum+dQLA888/z//+9z8ef/xxnnrqKa/jSAjy+2xZM4sHjpHYS5cDOH7mJSC7c86TsQrNlhWRS7V7925y5cpFrly5WL16NXv37uWmm27yOpYEkLfffpu+ffvSvXt3Ro4cqYJfLlpAzZZ1zoX5+z1FRDLa/v37KV++PN26dWPQoEFUqFDB60gSYMaOHUvfvn1p06YNw4cPV2EnGcbLW6GIiAS9w4cPkzdvXi6//HKee+45mjRp4nUkCUCTJ0+me/fuNGzYkE8++YSsWfXrVzKOpytUiIgEs0mTJlGiRAk2bNgAwCOPPEK5cuU8TiWB5ocffuDOO++katWqfPXVV2TPrmXUJWOpuBMRuUDx8Yn3Xq9duzZt27Ylb968HieSQLVs2TJatmzJNddcw7Rp07QSifiFZ8uPBRpNqBCRtHjkkUfYsWMHEydO9DqKBLjffvuNunXrkiNHDn766SeKFy/udSQJIQE1ocLMjpDKLU+cc/oTWEQCVvHixYmIiCA+Pp6wMM0Pk5Rt3bo1acWJWbNmqbATv/JitmweADP7L7AD+IjE26DcBRT1dx4RkdTs2rWL7t2789RTT1GvXj2eeOIJryNJgNu7dy9NmjThwIEDzJ07l7Jly3odSTIZL6frtHLOVUr2fKiZ/QL08yqQiMjZcufOzdatW9m6davXUSQIHDlyhGbNmrF582amT59O1apVvY4kmZCXEyqOmdldZhZmZlnM7C4Sb24sIuKpZcuW0aNHD+Lj48mVKxfLly/nrrvu8jqWBKAiRYpgZklfefPmJSYmhuzZs+sG1uIZL4u7TsCdwC7f1x2+NhERT61fv55vv/2W33//HUDX1sk57dq1K8X2gwcP+jeISDKaLeuj2bIimdvUqVOJi4vjtttuwznHsWPHyJ07t9exJMCltsqEfr9KRkpttqxnPXdmVtbMZpvZKt/zKDP7j1d5RCTzSkhI4KWXXuKdd97BOYeZqbCT81LxJoHKy2HZ94FngNMAzrmVQAcP84hIJpKQkMCoUaM4evQoWbJkYdKkSUyfPl3rfUqa/PXXX9x2221exxBJkZfFXU7n3OKz2uI8SSIimc6KFSvo0aMHY8eOBeDKK68kIiLC41QS6JxzjBo1ivLlyzNz5kyv44ikyMvibq+ZlcZ3Q2Mza0fife9ERDLEyZMnmTt3LgBVq1bl559/plevXt6GkqCxefNmbrnlFnr06EFUVBQrV66kcOHCKW57rnYRf/CyuHsIGA5cb2bbgb7AAx7mEZEQ99RTT9GsWbOkGY61atXSMKycV0JCAu+++y6RkZEsWLCA9957j7lz51KmTBl27tyJc+4fXzt37vQ6tmRiXt7E+E/nXCMzywVkcc4d8TCLiISovXv3Eh8fT+HChXn66adp2bKlelUkzX777Td69OjB/PnzadKkCSNGjODqq6/2OpZIqrzsufvDzEYANYGjHuYQkRB16tQpqlatSp8+fQAoWrQojRo18jiVBIO4uDhee+01oqKiWLVqFaNHj2b69Okq7CQoeNlzdz3QgsTh2Q/MbCow3jk338NMIhIC9u7dS8GCBcmWLRuvvPIKlSpVOv9OIj6//vor3bp1Y+nSpbRp04b33nuPokW19LkED8967pxzx51zE51zbYEqQF7gB6/yiEhomDNnDiVKlGDevHkA3HXXXURGRnqcSoJBbGws/fv3p1q1amzZsoWJEycyadIkFXYSdLzsucPMbgLaA02BGBKXIxMRuWCxsbFERERQvXp1unXrxrXXXut1JAkiS5YsoXv37qxatYq77rqLwYMHU7BgQa9jiVwUL1eo2EziDNkfgYrOuTudc5O8yiMiwatfv37cdNNNxMfHkytXLt577z2uvPJKr2NJEDhx4gRPPvkkNWvW5MCBA0yZMoWPP/5YhZ0ENU967swsDBjlnBvgxfuLSPA7s/STmVGhQgUOHz7M6dOnCQsL8ziZBIsff/yRHj16sGHDBu677z4GDRrEZZdd5nUskUvmSc+dcy6exMkUIiIX7NChQ9x2222MGzcOgPbt2zN48GCyZ8/ucTIJBkeOHKF3797Uq1ePuLg4Zs+ezYgRI1TYScjw8pq7n8zsXWACcOxMo3NumXeRRCQY5M6dm6NHj3L0qO6iJBdm5syZ3HfffWzdupVHHnmEl156iVy5cnkdSyRdeVncVfb9N/nQrAMa+j+KiAS6X3/9lf79+/Phhx+SO3duvvvuO60uIWl24MABHnvsMUaPHs3111/P/PnzqV27ttexRDKEl7dCaZDCV5oKOzNrambrzWyjmT2dyna3m5kzs+j0Sy4iXjh06BA//fQT69evB1BhJ2n21VdfUb58ecaOHcszzzzD8uXLVdhJSPNytmxhM/vAzL71PS9vZj3SsF8Y8B7QDCgPdDSz8ilslwd4BFiUvslFxF+mT5/O8OHDAahbty5//PEH1apV8ziVBIvdu3fTvn172rRpQ+HChVm8eDEvv/yyrs2UkOfl8mNjgBnAmfsV/EbirVHOpzqw0Tn3u3MuFhgPtE5hu/8CrwInLzmpiHhi1KhRDBs2jLi4OABy5MjhcSIJBs45PvnkE8qXL89XX33Fiy++yJIlS6hatarX0UT8wsvirqBzbiKQAOCciwPi07BfMWBrsufbfG1JzKwqcJVz7pt0yioifpCQkMAHH3zA9u3bARg+fDgLFy4ka1ZP77cuQWT79u20atWKu+66i2uvvZbly5fz7LPPEh4e7nU0Eb/xsrg7ZmYFSJxEgZnVBA5d6kHNLAvwJvBYGrbtaWYxZhazZ8+eS31rEblE27Zto3fv3owYMQKA/Pnzky1bNo9TSTBwzjFy5EjKly/P7NmzefPNN/npp58oX/4fV+2IhDwv/xz+FzAZKG1mPwGFgHZp2G87cFWy58V9bWfkASKBub4LrosAk82slXMuJvmBnHMjgBEA0dHR7iI/h4hcglOnTjFjxgxatWpFiRIlWLRokdaClQvyxx9/cN999zF79mzq16/PyJEjKV26tNexRDzj5WzZZcBNQG3gfqCCc25lGnZdApQxs1JmFgF0ILFIPHPcQ865gs65ks65ksBC4B+FnYgEhsGDB9O6dWvWrl0LQFRUFFmyeDmoIMEiPj6et99+m8jISBYvXsywYcOYPXu2CjvJ9LycLXsHkMM5txq4DZjgu1YuVb5r83qTOBljLTDRObfazAaYWauMzCwi6ePAgQNs2rQJgN69ezNz5kzKlSvncSoJJuvWraNevXr07duX+vXrs3r1au6//379YSAC2Jn1Gf3+xmYrnXNRZlaXxJmtrwP9nHM1vMgTHR3tYmLUuSeS0ZxzVK5cmVy5cvHTTz/pfnVyQeLi4nj99dfp378/uXLlYvDgwXTu3Fn/H0mmY2ZLnXMp3sfXy2vuzsyMvRV43zn3jZm96GEeEclAf/31F0WLFsXMGDRoEFdccYV+IcsF+eWXX+jevTvLli2jXbt2vPvuuxQuXNjrWCIBx8v+6+1mNhxoD0wzs2we5xGRDPLLL79QpkwZPv74YwCaNGlC5cqVvQ0lQePUqVM899xzREdHs337dj7//HM+++wzFXYi5+BlMXUnidfN3eKcOwhcDjzhYR4RSWfHjx8HoGLFivTp04f69et7G0iCzqJFi6hatSovvvginTp1Ys2aNdx+++1exxIJaF7Olj0ObAaamdnDQFHn3Eyv8ohI+nrzzTeJjIzk6NGjZMmShVdeeYWrrrrq/DuKkPiHwWOPPUbt2rU5fPgw06ZN48MPP+Tyyy/3OppIwPPsmjsz6wfcAXzhaxptZp8553TdnUgQS0hIIEuWLNSsWZONGzfi1aQtCV4//PADPXr0YNOmTTzwwAO8+uqr5M2b1+tYIkHDy9my64FKzrmTvuc5gBXOueu8yKPZsiKXJjY2lk6dOlG5cmX+85//eB1HgkCRIkXYtWtXiq+VLl2akSNHaihf5BwCdbbsX0B24KTveTb+vtKEiASRiIgIcufOTY4cObyOIkHiXIUdwMqVK8mZM6cf04iEDr8Xd2Y2hMT1ZA8Bq81slu95Y2Cxv/OIyMX77bff6NOnDx988AHFihVj9OjRur2JpAsVdiIXz4ueuzNjn0uBL5O1z/V/FBG5FGFhYaxZs4bffvuNYsWKqbCTNDt9+rTXEURClt+LO+fchwBmlh241te88cy1dyIS2L7//nt+/PFHnn/+eUqXLs2mTZsIDw/3OpYEkVmzZvHII494HUMkZPn9VihmltXMXgO2AR8CY4GtZvaamek3hEiAmz59OuPGjePo0aMAKuwkzTZv3kzbtm1p0qQJsbGxXscRCVle3OduEIk3LC7lnKvmnKsKlAbykbi+rIgEEOccY8eOZcWKFQC88MIL/PLLL+TOndvbYBI0Tpw4Qf/+/SlXrhwzZszgpZdeYtWqVedcYUIrT4hcGr/fCsXMNgBl3VlvbGZhwDrnXBm/BvLRrVBEUnbo0CHKli1L27ZtGTp0qNdxJIg45/jyyy/517/+xZ9//kn79u0ZNGiQbmYtkg5SuxWKFz137uzCztcYT+KsWRHxWGxsLB999BHOOS677DJ++ukn3nvvPa9jSRBZu3YtTZo04fbbbydv3rzMmTOH8ePHq7AT8QMvirs1ZnbP2Y1m1hlY50EeETnLhAkTuOeee5g7dy4A1157LVmyeLkUtQSLw4cP89hjjxEVFUVMTAzvvPMOy5Yt082IRfzIi1uhPAR8YWbdSbwdCkA0kANo40EeESFx+PWPP/6gcuXK3HXXXRQvXpwGDRp4HUuCREJCAh999BFPPfUUu3fvpkePHrz88ssUKlTI62gimY4Xt0LZDtQws4ZABV/zNOfcbH9nEZH/d8cdd7BhwwY2bNhA1qxZVdhJmi1dupTevXuzcOFCatSowdSpU4mOTvFSIBHxA8+WH3POfQ9879X7iwhs3bqVK664gmzZsvHyyy8DkDWrl6sSSjDZs2cPzz77LCNHjuSKK65gzJgx3H333RrCF/GY/gWKZFJbt26lXLlyDBo0CIDo6Gj1tkiaxMXF8e6771K2bFlGjx7No48+yvr16+nSpYsKO5EAoD/RRTKZQ4cOcdlll3HVVVfx/PPPc8cdd3gdSYLIDz/8wMMPP8yvv/5Ko0aNeOeddyhXrpzXsUQkGf2JJZKJjB49mlKlSrF9+3YAnnjiCUqWLOltKAkK27Zto2PHjtSvX5/Dhw8zadIkZs6cqcJOJACpuBPJBOLi4gCoV68e7du3J2fOnB4nkmBx6tQpXnnlFa677jq++uornn/+edasWUPbtm0xM6/jiUgKNCwrEsKcc3Tp0oWIiAhGjhxJ6dKltcqEpNnUqVPp27cvmzZtok2bNrz55pvq6RUJAiruREKYmVGyZEnCw8NxzqmnRdJkw4YN9O3bl2nTpnH99dczc+ZMGjdu7HUsEUkjDcuKhJgtW7Zw8803s3z5cgAGDBjAc889p8JOzuvo0aM888wzREZG8uOPP/L666/zyy+/qLATCTIq7kRCTJ48edixYwfbtm3zOooECeccn376Kddffz0DBw6kY8eOrF+/nscee4yIiAiv44nIBVJxJxICfvzxRx544AGcc+TPn59Vq1bRsmVLr2NJEFi5ciX169enU6dOFClShJ9//pkxY8ZQtGhRr6OJyEVScScSAlatWsWMGTPYsWMHgG4kK+e1f/9+evfuTZUqVVi9ejUjRoxg0aJF1KpVy+toInKJ9BtAJAidGUabMWMGAPfffz+rV6/myiuv9DiZBLr4+HhGjBhB2bJlGTp0KA8++CAbNmzgvvvuIywszOt4IpIOVNyJBKG4uDheeuklRowYAST21OnedXI+CxYsoHr16tx///1UqFCB5cuXM2TIEPLnz+91NBFJRyruRILE6dOnGT58OKdOnSI8PJwZM2YwceJEr2NJENi5cyddunShdu3a7Nq1i08//ZS5c+cSFRXldTQRyQAq7kSCxPz583nggQf44osvAChWrJiG0SRVsbGxvPHGG5QtW5bx48fzzDPPsG7dOjp06KBb44iEMN3EWCSAHTlyhBUrVnDjjTfSoEEDFixYQI0aNbyOJUFg1qxZ9OnTh3Xr1nHrrbfy1ltvUaZMGa9jiYgfqOdOJIA99NBDtGzZksOHDwNQs2ZN9bhIqjZv3kzbtm1p0qQJp0+fZsqUKUydOlWFnUgmouJOJMBs376d/fv3A/DCCy8wffp08ubN63EqCXTHjx/n+eefp1y5csyYMYOXX36Z1atX06JFC6+jiYifaVhWJIAcPnyYqKgo2rVrx/DhwylVqhSlSpXyOpYEkCJFirBr165/tGfJkoWEhAQ6dOjAoEGDKF68uAfpRCQQqLgTCQB79uyhUKFC5M2blzfeeIMbb7zR60gSoFIq7AASEhKYO3cuN910k58TiUig0bCsiMe++uorSpQowfLlywHo2rUrpUuX9jiVBCMVdiIC6rkT8cypU6fIli0bN910E/fddx9XXXWV15EkgO3atYsxY8Z4HUNEgoCKOxEPPPzww6xbt46ZM2eSP39+3nnnHa8jSQBKSEjgu+++Y8SIEXz99dfExcV5HUlEgoCGZUX8xDmX9LhSpUrUqFGD+Ph4DxNJoNqxYwcvv/wypUuX5pZbbuGHH37gkUceYd26dV5HE5EgoJ47ET/YvXs3HTt2pG/fvrRs2ZJ7773X60gSYOLj45k5cyYjRoxgypQpxMfH07BhQwYOHMhtt91GtmzZAChcuHCKkyoKFy7s78giEqBU3In4Qb58+Th16hRHjhzxOooEmO3btzNq1ChGjhzJli1bKFSoEI899hj33ntvijce3rlzpwcpRSSYqLgTySCLFy/mtddeY9y4cWTLlo0ff/xRq0sIkNhL9+233zJixAi++eYbEhISaNy4MW+88QatWrUiIiLC64giEsRU3IlkkL1797J48WL++OMPrr/+ehV2wpYtWxg1ahQffPAB27Zto3Dhwjz11FPce++9XHPNNV7HE5EQoeJOJJ0455g0aRLHjx/nnnvuoXnz5vz2229kz57d62jiobi4OL755htGjBjB9OnTcc5xyy238Pbbb9OyZUvCw8O9jigiIUbFnUg6ev/99zl16hR33303ZqbCLhPbvHkzH3zwAaNGjeKvv/6iaNGi/Pvf/6ZHjx6ULFnS63giEsJU3Ilcgvj4eIYOHUrHjh0pUKAAn3zyCZdddpmGYDOp06dPM2XKFEaMGMHMmTMBaN68OUOHDqV58+ZkzaofuSKS8fSTRuQSrF+/nr59+xIXF0ffvn0pUKCA15HEA7///jsjR45k1KhR7Nq1i+LFi9OvXz+6d+9OiRIlvI4nIpmMijuRC3Ts2DHmzJlDixYtKF++PMuXLycyMtLrWOJnsbGxfP3114wYMYLvvvuOLFmy0KJFC+677z6aNm2qXjoR8Yx++ohcoP/+97+88cYb/PHHHxQvXpyKFSt6HUn8aMOGDYwcOZLRo0ezZ88eSpQowYABA+jWrRvFixf3Op6IiIo7kbTYuXMnsbGxlChRgqeeeooWLVroF3kmcurUKb788kvef/99vv/+e8LCwmjZsiU9e/akSZMmhIWFeR1RRCSJijuR84iLi6NWrVqUK1eOadOmkT9/furWret1LPGD9evX8/777zNmzBj27dtHyZIleemll+jWrRtFixb1Op6ISIpU3Imcw7Zt2yhevDhZs2blnXfeoWzZsl5HEj84efIkkyZNYsSIEcybN4+sWbPSunVrevbsSaNGjciSJYvXEUVEUqWfUiIp+PHHH7nmmmuYMmUKAC1btuS6667zOJVkpDVr1vDoo49SrFgxOnfuzPbt2xk4cCDbtm3j888/p0mTJirsRCQoBGXPnZk1Bd4GwoCRzrmBZ73+L+BeIA7YA3R3zv3p96ASdI4dO0auXLmoUaMG//rXv6hRo4bXkSSdFClShF27dv2jPW/evERFRTF//nzCw8Np06YNPXv2pEGDBirmRCQomXPO6wwXxMzCgN+AxsA2YAnQ0Tm3Jtk2DYBFzrnjZtYLqO+ca5/acaOjo11MTEwGJpdA169fPyZNmsSyZcvIli2b13EknaV2Y+kyZcrQs2dP7rnnHq644go/phIRuThmttQ5F53Sa8HYc1cd2Oic+x3AzMYDrYGk4s45NyfZ9guBzn5NKEHDOYdzjixZslC7dm1OnTpFQkKC17HEz9avX69VRUQkZATjmEMxYGuy59t8befSA/g2QxNJUDp69CjNmjXjf//7HwBNmzbl1VdfJUeOHB4nk/Ry+vRpJk+eTLt27VLdToWdiISSYOy5SzMz6wxEAzed4/WeQE9ASwRlQrly5SJPnjwagg0xzjmWLVvG2LFj+eSTT9i7dy+FChXyOpaIiN8EY8/dduCqZM+L+9r+xswaAc8CrZxzp1I6kHNuhHMu2jkXrR/+mcMvv/xC48aN2bdvH2bGZ599xn333ed1LEkH27dv59VXXyUyMpLo6GiGDRtGgwYNmDJlCtu3/+NHhIhIyArGnrslQBkzK0ViUdcB6JR8AzOrAgwHmjrndvs/ogQqM2PDhg38/vvvFChQwOs4comOHTvGl19+ydixY/nuu+9wzlG7dm2GDRvGnXfeSf78+ZO2LVy4cIqzZQsXLuzPyCIiGS7oijvnXJyZ9QZmkHgrlFHOudVmNgCIcc5NBgYBuYHPfNfSbHHOtfIstHhq8uTJrF27lqeeeoqoqCg2btyoRd2DWEJCAj/88ANjx47l888/5+jRo5QsWZLnnnuOzp07U6ZMmRT327lzp5+Tioh4I+huhZJRdCuU0HX//fezZMkSFi5cSEREhNdx5CKtX7+esWPH8vHHH7Nlyxby5MnDnXfeyT333EPdunV1TzoRyVRC7VYoIqmKj49n2LBhNGnShDJlyvDmm28SERFBeHi419HkAu3bt48JEyYwduxYFi1aRJYsWWjSpAkDBw6kdevW5MyZ0+uIIiIBR8WdhJy9e/fy73//m7/++ouXXnqJXLlyeR1JLkBsbCzffvstY8eOZcqUKZw+fZqKFSvy+uuv06lTJ4oWLep1RBGRgKbiTkLCiRMnmDRpEp07d6Zw4cIsXbqU0qVLex1L0sg5x9KlS/nwww/59NNP2bdvH1dccQW9e/fmnnvuoVKlSroXnYhIGqm4k5AwcuRI+vTpQ2RkJJUrV+baa6/1OpKkwbZt2/j4448ZO3Ysa9euJVu2bLRu3Zp77rmHJk2aaChdROQiqLiToLVnzx527dpFZGQkDzzwAFWqVKFy5cpex5LzOHr0aNLtS2bPno1zjjp16jBixAjuuOMO8uXL53VEEZGgpuJOgpJzjubNmxMbG8uKFSsIDw+nbt26XseSc0hISGDOnDmMHTuWSZMmcezYMUqVKkW/fv24++67NYQuIpKOVNxJUPn999+5+uqrCQsL4+233+ayyy7TtVgBbN26dUm3L9m6dSt58+alY8eOdOnShTp16ujciYhkABV3EjTWrFlD1apVeeONN3jooYeoXbu215EkBfv27WP8+PGMHTuWxYsXExYWxi233MKgQYNo1aoVOXLk8DqiiEhIU3EnAe/gwYPky5ePcuXK8fzzz9O2bVuvI8lZYmNj+eabbxg7dizffPMNp0+fplKlSrzxxht06tSJIkWKeB1RRCTTUHEnAe2tt97i1VdfZfXq1RQoUIBnnnnG60iZSpEiRc65HuuOHTtYsmQJY8eO5dNPP2X//v0ULlyYhx9+OOn2JSIi4n8q7iTgOOeIj48na9as3HzzzWzdupVs2bJ5HStTSqmwO9Nevnx51q1bR/bs2bntttu45557aNy4sdbtFRHxmH4KS0CJi4ujbdu2lC1bltdff52oqCjefPNNr2NJCgoVKsRjjz3GHXfcwWWXXeZ1HBER8VFxJwEla9aslClThquuusrrKJne8ePHU3193rx5fkoiIiIXIovXAUTWr19P3bp12bBhAwBvvPEGjzzyiMepMqdTp04xZcoU7rrrLq644gqv44iIyEVQcSeey5s3L/v27WPbtm1eR8mU4uLimDVrFj169KBIkSK0atWK6dOn06lTJ6+jiYjIRdCwrHhi+vTpTJ8+ncGDB1O0aFFWr15Nliz6W8NfEhISmD9/PuPHj+fzzz9nz5495MmThzZt2tChQwcaNWpEeHg4kydPPudsWRERCUwq7sQTy5cvZ+bMmUn3sFNhl/GccyxZsoTx48czceJEtm/fTo4cOWjZsiUdOnSgWbNmZM+e/W/77Ny506O0IiJyscw553WGgBAdHe1iYmK8jhGyEhISGDlyJOXLl6du3bqcPn2ahIQE3eIkgznnWLlyJRMmTGD8+PH88ccfRERE0KxZMzp06ECLFi3InTu31zFFROQCmdlS51x0Sq+p50784uTJk7zyyis0atSIunXrEh4e7nWkkLZ+/XrGjx/P+PHjWbduHWFhYTRq1Ih+/fpx2223kS9fPq8jiohIBlFxJxnm5MmTjBo1ivvvv5+cOXMyf/58rrzySq9jhazNmzcn9dCtWLECM+Omm27ikUce4fbbb6dQoUJeRxQRET9QcScZZtq0aTz00ENcc801NG3alGLFinkdKeRs376dzz77jPHjx7No0SIAatasyeDBg7njjjtUTIuIZEIq7iRd7du3j/Xr11O7dm3atGnDokWLqF69utexQsqePXuYNGkS48ePZ968eTjnqFy5MgMHDuTOO++kVKlSXkcUEREPqbiTdNW1a1eWLl3KH3/8QbZs2VTYpZODBw/y5ZdfMn78eGbPnk18fDzXX389/fv3p3379lx33XVeRxQRkQCh4k4u2e+//84VV1xB7ty5ee211zh9+rRmwaaDo0ePMmXKFMaPH8/06dOJjY2lVKlSPPnkk3To0IGKFStiZl7HFBGRAKPiTi7Jzp07qVixIr179+bVV1+lXLlyXkcKaidOnODbb79lwoQJTJkyhRMnTlCsWDF69+5Nhw4diI6OVkEnIiKpUnEnF2X37t1cccUVFClShMGDB9O8eXOvIwWt2NhYvvvuO8aPH89XX33FkSNHuOKKK+jWrRsdOnSgTp06usmziIikmYo7uWAffvghDz74ICtWrKBMmTLcd999XkcKOvHx8fzwww+MHz+eSZMmsX//fvLly8edd95Jhw4dqF+/Plmz6p+niIhcOP32kDQ7deoU2bJlo0mTJvTq1Uvri55DkSJFzrke66RJk5gwYQITJ05k165d5M6dm9atW9OhQweaNGlCRESEB4lFRCSUaPkxHy0/dm7OOTp37sypU6f4/PPPvY4T8M53TVz27Nlp0aIFHTp0oHnz5uTIkcNPyUREJFRo+TG5KM45zAwzIzo6mtjY2KQ2uTgff/wxrVq1Ik+ePF5HERGREKXiTlK0ZcsW2rdvz6uvvkq9evV49NFHvY4UsOLj44mJieG7775j1qxZqW571113+SmViIhkViruJEUFChQgISGBw4cPex0l4Djn2LRpE7NmzeK7777j+++/5+DBgwBUqVLF23AiIpLpqbiTJHPmzGHYsGF88skn5MqVi4ULF2oI1mfv3r18//33zJo1i1mzZvHnn38CUKJECW6//XYaN25Mw4YNKVSokL5nIiLiKRV3kmTnzp0sX76c7du3U6JEiUxdpJw8eZL58+cnDbUuX74c5xyXXXYZDRs25Mknn6Rx48Zce+21//g+FS5c+JyzZUVERDKaZsv6ZMbZss45xowZQ548eWjXrh3OOWJjYzPl0mEJCQn88ssvST1z8+fP5+TJk4SHh1OrVi0aN25Mo0aNiI6O1v3nRETEc5otKylyzjFixAiKFi1Ku3btMLNMVdj9+eefST1zs2fPZu/evQBERkbywAMP0LhxY+rVq0fu3Lk9TioiIpJ2Ku4ymdjYWN5991169uxJ7ty5mTJlCpdffrnXsfzi4MGDzJkzJ2kixIYNGwAoWrQozZs3p1GjRjRq1IiiRYt6nFRE5NxOnz7Ntm3bOHnypNdRxA+yZ89O8eLFCQ8PT/M+Ku4ymeXLl/PYY49RsGBB7rnnHgoWLOh1pAwTGxvLwoULk4ZalyxZQkJCArly5aJ+/fo89NBDNG7cmHLlymXq6wtFJLhs27aNPHnyULJkSf3sCnHOOfbt28e2bdsoVapUmvdTcZcJHDx4kJ9//pnmzZtTo0YNfv31VyIjI72Ole6cc6xevTqpZ+6HH37g2LFjhIWFUb16dZ599lkaN25MjRo1tMyXiAStkydPqrDLJMyMAgUKsGfPngvaT8VdJvDUU08xbtw4tmzZwuWXXx5Shd1ff/2VdN3cd999x86dOwEoW7YsXbt2pXHjxtSvX5/LLrvM46QiIulHhV3mcTHnWsVdiPrzzz/Jli0bRYoUoX///tx///0hcW3dkSNH+OGHH5IKujVr1gBQqFAhbr755qRZrSVKlPA4qYhI6AoLC6NixYrExcVRqlQpPvroI/Lly3fO7ffs2UOLFi2IjY3lnXfe4cYbb/Rf2DTq2rUrLVq0oF27dkltf/31F3369Am6ddVV3IWg48ePEx0dTZMmTRg3bhxFixYN+EkCRYoUOee94b788suknrkFCxYQFxdH9uzZqVevHt26daNRo0ZERUWRJUsWD5KLiGQ+OXLkYMWKFQB06dKF9957j2efffac28+ePZuKFSsycuTINL9HfHw8YWFhlxr1klx55ZVBV9gB6LdhCNm6dSsAOXPmZNiwYbzyyiseJ0q7lAq7M+21a9emf//+HD9+nMcff5zZs2dz4MABZsyYweOPP07lypVV2ImIeKRWrVps374dgE2bNtG0aVOqVavGjTfeyLp161ixYgVPPvkkX3/9NZUrV+bEiRPMnDmTWrVqUbVqVe644w6OHj0KQMmSJXnqqaeoWrUqn332WarbPf/881StWpWKFSuybt06AI4ePUq3bt2oWLEiUVFRTJo0CeCcxzmfzZs3J13KNGbMGNq2bUvTpk0pU6YMTz75ZNJ2F3v8jKLfiCFi6tSplCpVinnz5gFw++23B8XQ5IkTJ/j5559T3WbixIns2bOHmJgYXnnlFRo2bEj27Nn9lFBERM4lPj6e2bNn06pVKwB69uzJkCFDWLp0Ka+//joPPvgglStXZsCAAbRv354VK1Zw7NgxXnzxRb777juWLVtGdHQ0b775ZtIxCxQowLJly2jUqFGq2xUsWJBly5bRq1cvXn/9dQD++9//ctlll/Hrr7+ycuVKGjZsyN69e1M9zoVYsWIFEyZM4Ndff2XChAls3bo1XY+fXjQsG+SOHj1K7ty5k5bEioqK8jrSOTnn2LRpE4sWLWLhwoUsXLiQFStWEBcXl+p+d9xxh58SiogEn/r169O1a1e6du3K6dOnady4Mffeey+dO3fm+PHjNG/enF69etG+fXsOHTpE69at6dOnD23btmXv3r20a9eOxx57jJYtW7Jz506KFCly3vc8ceIElStXZvv27ZQrV47GjRtz9OhRfv7557/9zD516tQ/9l24cCFr1qyhTp06QOJtq2rVqpX0evv27dO0Xdu2bQGoVq0aX3zxBQDfffcd48ePT9omf/78TJ06NdXjXIibb745aYJe+fLl+fPPPzl48GC6HT+9qLgLYr1792bx4sUsWLCAnDlz8vLLL3sd6W8OHTrE4sWL/1bM7du3D4BcuXJRvXp1nnjiCWrUqMFtt93mbVgREUmzM9fcHT9+nFtuuYX33nuPrl27ki9fvqRr8c7FOUfjxo359NNPU3w9V65cadru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jZllBS4jcWLF3zjnRjjnop1z0YUKFcqguP+vfv36GoYVEZGQ8O2331K0aFFWrVqV4utt2rQhMjKStm3bJrWdGZbduXMnFStWZNCgQUDiUpudOnUC4O6772b+/PmpttepU4euXbvy/vvvEx8ff9GfoWXLlpgZFStWpHDhwlSsWJEsWbJQoUKFpDXUs2TJkrSee+fOnZMypNXMmTMZOHAglStXpn79+pw8eZItW7Ywb948OnfuDEBUVBRRUVEX/TnOFow9d0uAMmZWisQirgPQ6axtJgNdgAVAO+B7d2YZBhERkRBxvh621C43nzt37kW/74oVK5g1axYLFy6kbt26dOjQgQoVKiRNngD48ssviYmJ4fHHH08xV8uWLRkyZMhFXQM3bNgwFi1axDfffEO1atVYunTpRX2ObNmyAYkF3JnHZ57HxcWluM+Z72nWrFlJSEgA4OTJk+d8D+cckyZN4rrrrruojBcj6HrufNfQ9QZmAGuBic651WY2wMzODPR/ABQws43Av4CMvXpSREQkk3DO0atXLwYPHkyJEiV44oknePzxx+nUqRM//fQTkydPTto2tdmw8+fPT7pTRO3atRk/fjyQuATnjTfemGr7pk2bqFGjBgMGDKBQoUJs3bqVPHnyJK3ClJ4SEhKSbi/2ySefULduXQBKliyZVFQmv/3Y2TluueUWhgwZkrTU5/LlywGoV68en3zyCQCrVq1i5cqV6ZY56Io7AOfcNOdcWedcaefcS762fs65yb7HJ51zdzjnrnXOVXfO/Z76EUVEREJPRky8e//99ylRogSNGzcG4MEHH2Tt2rUsXryYqVOnMmzYMK655hpq1arFiy++yH/+85+kfc9MNIiKimL58uU899xzAAwZMoTRo0cTFRXFRx99xNtvv51q+xNPPEHFihWJjIykdu3aVKpUiQYNGrBmzZpUJ1RcjFy5crF48WIiIyP5/vvv6devH5B414uhQ4dSpUoV9u7dm7T92Tmee+45Tp8+TVRUFBUqVEj6zL169eLo0aOUK1eOfv36Ua1atXTLbBqtTBQdHe3S6/4yIiIiGWXt2rWUK1fO6xiZRu7cuTl69KinGVI652a21DkXndL2QdlzJyIiIiIpC8YJFSIiIiLnNHr06KQh3DPq1KnDe++9d8HH8rrX7mKouBMREZGQ0q1bN7p16+Z1DM9oWFZERCTI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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Calibrate the model \n", + "The XGBoost model can be calibrated by training an isotonic regression on a portion of the testing set." + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 12, + "source": [ + "# get subset of each row for splitting\n", + "df = pd.read_sql_query('''SELECT usrds_id, subset FROM medxpreesrd;''', con)\n", + "df.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id subset\n", + "0 2969676.0 8\n", + "1 2969869.0 9\n", + "2 2970021.0 8\n", + "3 2970067.0 9\n", + "4 2970686.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_idsubset
02969676.08
12969869.09
22970021.08
32970067.09
42970686.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 12 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 13, + "source": [ + "data = pd.merge(pred_df, df, how=\"left\", on=\"usrds_id\")\n", + "data = data.rename(columns={'died_in_90':'y','averaged':'score'})\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y usrds_id subset\n", + "0 0.467093 1 31089.0 9\n", + "1 0.473195 0 34521.0 8\n", + "2 0.290782 0 46751.0 8\n", + "3 0.225663 0 50506.0 9\n", + "4 0.041878 0 54985.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreyusrds_idsubset
00.467093131089.09
10.473195034521.08
20.290782046751.08
30.225663050506.09
40.041878054985.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 13 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 14, + "source": [ + "calibrated_results = calibrate_onc(data, path='./roc_results/',model_name='xgb_imputed')" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "accuracy - original/calibrated: 0.9031552911873056 / 0.9268700521672487\n", + "ROC AUC - original/calibrated: 0.8270572148370063 / 0.8270580630956539\n", + "avg precision - original/calibrated: 0.31194486526045584 / 0.3046086815075088\n", + "\tBrier: 0.059\n" + ] + } + ], + "metadata": {} + } + ], + "metadata": { + "interpreter": { + "hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49" + }, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/xgboost/imputed/5_xgb_imputed_calibrated_plots.ipynb b/xgboost/imputed/5_xgb_imputed_calibrated_plots.ipynb new file mode 100644 index 0000000..c7fe1e6 --- /dev/null +++ b/xgboost/imputed/5_xgb_imputed_calibrated_plots.ipynb @@ -0,0 +1,399 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Plot results from Calibrated XGBoost Imputed model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 22, + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import pickle\n", + "\n", + "# import custom functions\n", + "import sys\n", + "sys.path.append('../../onc_functions')\n", + "\n", + "from plot_functions import (onc_plot_calibration_curve, \n", + " onc_calc_cm, \n", + " onc_plot_roc, \n", + " onc_plot_risk,\n", + " onc_plot_roc_no_threshold)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 14, + "source": [ + "# load results from the calibrated model\n", + "with open('./roc_results/y_calibrated_xgb_imputed.pickle', 'rb') as picklefile: \n", + " calibrated_results = pickle.load(picklefile)\n", + "calibrated_results.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y usrds_id subset p_calibrated\n", + "0 0.467093 1 31089.0 9 0.215902\n", + "3 0.225663 0 50506.0 9 0.081170\n", + "9 0.404925 0 157169.0 9 0.170539\n", + "12 0.115172 0 310420.0 9 0.038161\n", + "14 0.328666 0 343742.0 9 0.132865" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreyusrds_idsubsetp_calibrated
00.467093131089.090.215902
30.225663050506.090.081170
90.4049250157169.090.170539
120.1151720310420.090.038161
140.3286660343742.090.132865
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 14 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 15, + "source": [ + "onc_plot_calibration_curve(\n", + " y_true=calibrated_results.y, \n", + " y_proba=calibrated_results.p_calibrated, \n", + " label='XGBoost imputed calibrated',\n", + " filename='./roc_results/xgb_imputed_calibrated')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAosAAAJcCAYAAACR0e6AAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAACsHklEQVR4nOzdd3QVRRvH8e8kJJQAITFC6AGkCEhXQTqCUgUFRRGkKaLSFEFRlCKKDREUsSCg2LEAShXpTaSI0kWpUgRCCJ2QzPvHvcmbcgMJJNmb5Pc5Z09yZ2d3n72b5D6ZmZ011lpERERERDzxcToAEREREfFeShZFREREJFlKFkVEREQkWUoWRURERCRZShZFREREJFlKFkVEREQkWTmcDiCrCgkJsWFhYU6HISIiInJF69evP2atvd7TOiWL6SQsLIx169Y5HYaIiIjIFRlj9ia3Tt3QIiIiIpIsJYsiIiIikiwliyIiIiKSLCWLIiIiIpIsJYsiIiIikiwliyIiIiKSLCWLIiIiIpIsJYsiIiIikqxskSwaY24wxnxgjPnDGBNtjFmSwu0CjTFTjDEnjDEnjTGfG2OuS+dwRURERLxGdnmCSyWgJbAG8EvFdt8A5YCHgRjgNWAGUD+N4xMRERHxStklWfzRWjsTwBjzLRBypQ2MMXWAO4CG1tpl7rJ/gV+NMU2ttQvTM2ARERERb5AtuqGttTFXsVkL4Ehsoujez1pgt3udiIiISJaXLZLFq1QB2O6hfJt7nYiIiEiWp2QxeUFAhIfyE+51IiIiIlmeksU0ZIzpZYxZZ4xZd/ToUafDERERkUwoKiqKDRs2OB1GHCWLyTsBBHooD3KvS8Ja+6G1tpa1ttb111+frsGJiIhI1jRgwAAaNWrE8ePHnQ4FyD53Q1+N7XieIqcCrulzRERERNJEZGQk1loCAwN56qmnaNasGddd5x1TO6tlMXlzgVBjTL3YAmNMLaC0e52IiIjINTt37hxVqlRh4MCBAJQpU4Z27do5G1Q82aJl0RiTB9ek3ABFgfzGmA7u13OstWeNMbuApdbangDW2tXGmAXAp8aYp/n/pNwrNMeiiIiIXKszZ84QEBBA7ty5GTRoEDfffLPTIXmULZJFoCAwPVFZ7OtSwB5c74VvojodgbHAZFytsD8B/dItShEREckWFi1aRIcOHVi0aBHVqlXjiSeecDqkZGWLZNFauwcwV6gT5qEsAujuXkRERESuSUxMDD4+PlSvXp3mzZsTGOjpXlrvojGLIiIiIhlg1KhRtGrVCmstQUFBfPHFF5QqVcrpsK5IyaKIiIhIBggJCaFIkSJcuHDB6VBSRcmiiIiISDo4efIknTt35qeffgKgd+/efPzxx+TKlcvhyFJHyaKIiIhIOsidOzdbt27ln3/+cTqUa6JkUURERCSN7Ny5k0ceeYSLFy/i7+/P2rVr6dcvc0+komRRREREJI3s2rWLb7/9ls2bNwOQI0fmn3gm85+BiIiIiINWrFjBgQMHuP/++2nZsiW7d++mQIECToeVZpQsioiIiFyDUaNGcfDgQe677z58fHyyVKII6oYWERERSRVrLdOnTyc8PByAqVOnsnr1anx8smZalTXPSkRERCSd/P333zzwwAO8++67AISGhhIQEOBwVOlHyaKIiIhkS6GhoRhjkiyhoaFJ6l66dIlly5YBcMMNN7B48WKee+65jA7ZEUoWRUREJFs6cuRIistHjx5NkyZN2LVrFwD169fPEnc6p0T2OEsRERGRVDp9+jSRkZEUKVKEPn36UKlSJcqUKeN0WBlOyaKIiIhIIjExMdStW5dChQqxYMECgoKCuOeee5wOyxFKFkVERCTbib2TOTk+Pj4MHTqUIkWKZFBE3kvJooiIiGQre/fupUWLFlesd++992ZANN5PN7iIiIhItrFp0ybq1KnDwYMHCQoK8lgnJCQkg6PybkoWRUREJFtYtGgR9evXx9fXlxUrVhAeHs64ceOoVq0a58+fx1qLtZajR486HapXUbIoIiIiWd6XX35J8+bNKVmyJKtXr6Zy5cqAa87Em266ifPnzzscofdSsigiIiJZlrWWN998k06dOnHbbbfx888/88ILLzBhwgQAWrZsyaeffkpgYKDDkXovJYsiIiKSJcXExPDkk08yaNAg7r33XubNm0ehQoU4evQoERERToeXaehuaBEREclyzp8/z0MPPcT06dPp3r07Z86c4ezZs+TKlYtZs2bh46P2spTSOyUiIiJZSkREBM2bN2f69Om8+eab9O/fn4ULF/L7778DKFFMJbUsioiISJaxf/9+WrRowY4dO+jatSsDBw4EYN++fQQEBDgcXeak1FpERESyhM2bN1OnTh3279/PnXfeydKlSzl79iyAEsVroJZFERERyfSWLl1Ky5YtyZs3L8uWLSMsLAwfHx/y5MnjdGiZnloWRUREJFP75ptvuOOOOzh//jx33nknVatWJTAwkHz58jkdWpagZFFEREQypejoaHr16sX999/PzTffzC+//MLHH3/sdFhZjrqhRUREJNOJiYmhZcuWLFiwgIYNGzJ37lxy587tdFhZkloWRUREJNM4e/YsW7ZsoXPnzixYsIAWLVqwcOFCJYrpSC2LIiIikmm0aNGCdevWcfbsWV599VUGDx6MMcbpsLI0JYsiIiLi1Y4ePUpwcDBHjhzhwIEDXLhwgU8//ZQuXbo4HVq2oGRRREREvNbu3bupWbMmjz32GJ999hnh4eHMnTuXZs2aOR1atqFkUURERLzO+fPnyZUrF2FhYbRs2ZJ3332XPHnysGzZMqpXr+50eNmKbnARERERr/LJJ59Qrlw5wsPD+eGHH/j2228JDQ1l1apVShQdoGRRREREvIK1FoDq1atTv359PvzwQzp06ECNGjVYuXIlpUqVcjjC7EnJooiIiDgqJiaGRx99lGeeeQaAm266iRIlSjBkyBDatGnDwoULCQkJcTjK7EtjFkVERMRRPj4++Pr64uPjw4ULF3jkkUeYNm0ajz76KO+++y45cihdcZLXtiwaY24wxtQxxpRzOhYRERFJW//++y/33HMPu3btAmDChAk8//zztGnThmnTpjFq1CgmTpyoRNELeFWyaIzJYYx50RhzBNgBrACejbf+QWPMKmNMZceCFBERkWtmjGHt2rX8+eefABw5coSGDRuyaNEipkyZwvPPP6/Jtr2E16TrxpgcwBzgduASsA2omKjaSmAa0B7YnKEBioiIyDVZv349P/zwA6NGjaJIkSL8/fff5MyZkx07dtC8eXOOHj3Kjz/+SIsWLZwOVeLxppbFPkBT4BcgzFqbpPXQWrsH2AXckbGhiYiIyLVasGABkydP5r///gMgZ86crF69mttuu42zZ8+yZMkSJYpeyJuSxS7AceA+a+2hy9TbBhTPmJBERETkWvz444+sWrUKgKeffpqtW7dSsGBBAGbOnEmTJk0IDg5m1apV1KpVy8lQJRnelCyWB3611kZcod4p4Pr0D0dERESuxYULF+jXrx9jxowBwM/PjwIFCgDwwQcfcM8991ClShVWrVpFmTJlHIxULsebkkULxKSgXhHgfDrHIiIiIlchJiaGr7/+mujoaHLmzMmCBQv48ssv49Zba3nhhRfo3bs3LVq0YNGiRVx/vdqAvJk3JYu7garGmGRjMsbkBqrg6ooWERERLzNv3jzuv/9+fvjhBwDKli2Lv78/AFFRUfTs2ZNRo0bx8MMPM2PGDAICApwMV1LAm5LFWUAxYOBl6gwGgoCZGRKRiIiIXNG5c+f4/fffAWjRogVz586lffv2CeqcPn2au+66iylTpjB8+HA+/PBDzaGYSXjTVXoL6A68aoypDnzrLg8xxrQA7gW6AvuA95wJUURERBLr2bMnCxcuZPfu3QQEBNC8efME648cOUKrVq34/fff+eijj3j44YcdilSuhol9aLc3MMbchKvVMAzXGMYEq4H9QCtrrdfPsVirVi27bt06p8MQERFJF8eOHSN37twEBASwefNmjhw5wu23356k3l9//UXz5s05dOgQ33zzDa1bt3YgWrkSY8x6a63H29G9qRsaa+2fuCbifgKYjWts4k5ccy8OBCpmhkRRREQkKztx4gQVK1Zk2LBhAFSuXNljorh27Vpuu+02IiMjWbx4sRLFTMqbuqEBsNaeBya6FxEREfESp0+fJm/evAQFBfHss89yxx3JPyNj9uzZ3HfffYSGhjJv3jzKli2bgZFKWvKalkVjzEPGmNtSUK+2MeahVO67ojHmF2PMWWPMQWPMSGOMbwq2q2WMWWCMCXcvC40xt6bm2CIiIlnBzJkzKVGiBH/99RcATz31FJUrux62FhoaijEmwdK6dWsuXrzIqlWrlChmcl6TLAJTgZSMeO0JTEnpTo0xQcBCXGMg2wIjcXVpj7jCdsXd2+XA9XSZLu7vfzbGlEzp8UVERDKzmBjXFMi33HILbdq0IW/evEnqHDlyxOO2ly5dolChQukan6Q/r+uGTgGTyvq9gdzAPdbaSFzJXn5guDHmdXeZJ62AfMDd1tqTAMaYVcAxoCXqJhcRkSzu6aefZt++fXzzzTcULlyYTz75xOmQxAHe1LKYUsWA06mo3wKYnygp/ApXAtnwMtv5AZeAM/HKTrvLUpuwioiIZDrXX389RYoUITo62ulQxEGOtix6GHt4w2XGI+YAbgRuB35LxWEqAIviF1hr9xljzrrX/ZjMdt/h6rIeY4x52V32InACmJ6K44uIiGQKR48epVevXjz55JM0aNCAZ555xumQxAs43Q09lYTzKdZ1L8kxuJ4f/WYqjhEERHgoP+Fe55G19qAxpjHwE9DPXXwIuNNaezQVxxcREckU8uTJw86dO9m9ezcNGjRI0TarVq1K56jEaU4ni5/y/2SxK/A3sDKZuheBf4GZ1tpN6R2YMaYwrhbE9fz/xpsngNnGmNustfs8bNML6AVQokSJ9A5RRETkmm3atIkJEyYwceJEAgIC2LRpU4ofw7dr1y7atm2Lr6+vx65q3dySNTiaLFpru8V+b4zpCqyw1vZI48OcAAI9lAe51yVnEK5xix2stVHuGBcBfwFP8//WxjjW2g+BD8H1BJdrC1tERCT9bdmyhZkzZ/L0009Trly5FCeKx48fp2XLllhr2bZtm6bHycKcblmMrxSpu3ElpbbjGpsYxz0tTh73uuRUALbEJooA1tqLxpgtQJl0iFNERCRDzJs3jwsXLtC2bVseeOABWrduTf78+VO8/fnz52nXrh379u3jl19+UaKYxXnN3dDW2r3W2uPpsOu5wJ3GmHzxyjoC54Cll9luL1DZGOMfW2CMyQlUBvakQ5wiIiLpzlrLiBEjGDNmDNZajDGpShRjYmLo3r07K1as4NNPP6Vu3cvdaiBZgTe1LMYxxgQANwD5SWaaGmvtshTu7n1cXcbfG2NeA0oDw4G34k+nY4zZBSy11vZ0F03CNVbxB2PMe+44ngAK4+5qFhERyQystXz22Wfcc889BAQE8O233xISEoIxqZ8JbujQoXz11Ve89tpr3HfffekQrXgbr0oWjTE3AOOAO7h8q6clhbFba08YY24H3sU1TU4EMBZXwhhfDsA33nbrjTHNgWHANHfxn0CzjLjBRkREJK38/vvvPPTQQ0RERNC3b1+KFi16Vfv56KOPGD16NI8++iiDBg1K4yjFWxlrveM+DGNMMWADEAIcxJW8FQRW42plvB5XkrgaiLLWNnYo1BSpVauWXbdundNhiIhINnXhwgXWrl1L/fr1AVixYgW33XYbPj5XNwJt/vz5tGrVimbNmvHjjz+m+EYYyRyMMeuttbU8rfOaMYvAs7gSxZestcVwjTW01tq61tpCwJ3AblxT6NzhXJgiIiLeb8iQITRr1ozDhw8DUK9evatOFDdt2sS9995L5cqV+eabb5QoZjPelCzeCewHRnhaaa392V3nNmBwBsYlIiKSKZw4cYL//vsPgEGDBjFjxgxCQ0OvaZ///vsvrVq1In/+/MyePZt8+fJdeSPJUrwpWSwG/G6tjXG/jgEwxvjFVrDW/o3rDuYHMj48ERER73Xx4kVq1KhBnz59AChcuDDNmze/pn2eOnWKVq1aERkZyZw5c656rKNkbt7UjnweuBDvdeyciwVxPbklVjhQL6OCEhER8Wbh4eEEBwfj7+/PSy+9ROXKldNkv1FRUdx3331s3ryZ2bNnU6VKlTTZr2Q+3tSy+C8Q/xl5u9xf68QWGNc9/tWBkxkYl4iIiFdaunQpJUqUYPny5QB07tyZatWqXfN+rbU88cQTzJs3j4kTJ3LnnXde8z4l8/KmZHEtUNEYk8v9ep7761hjTAtjzE3ABKAsoNuMRUQk24qKcj1crFatWnTq1ImwsLA03f/rr7/ORx99xJAhQ3jkkUfSdN+S+XhTsjgbyA20BrDW/gV8DBQFfgJ+B3oDUcDzzoQoIiLirJEjR9KgQQOio6MJCAjgww8/pHjx4mm2/6+//ppnn32W+++/n1GjRqXZfiXz8poxi9ba7wC/RMWPATuADkAwrmc5j7bW/pnB4YmIiDgq9tF85cqV48iRI1y8eJHcuXOn6TFWrFhB165dqVevHlOmTLnqqXYka/GaSbmzGk3KLSIiaSEyMpIePXrQrl07OnfunG7H+euvv6hduzbXXXcdq1ev5rrrrku3Y4n3ySyTcqeIMcbHGNPd6ThEREQyQkBAAMePHyciIiLdjnH06FFatGiBj48Pc+fOVaIoCWSaZNGdJHbF1S09yel4RERE0svWrVvp2LEjp0+fxtfXl19++SVu/sS0du7cOdq2bcu///7LrFmzKFOmTLocRzIvx8csGmOK4Hp8XyHgCLDAWnswUZ1OwHCgDGDc9URERLKk8PBwFi9ezLZt27j55pvTbexgTEwMXbt2Zc2aNUyfPp06depceSPJdhxNFo0x/YFXAf94xReNMf2ttR8aY0oDnwO34EoSTwFvAm9leLAiIiLp6JdffuGff/7hkUceoV69euzZs4c8efKk6zGHDBnC9OnTefPNN2nfvn26HksyL8e6oY0xDYCxQE5cT2vZAPyNK4F9zxjTDFgJ3ApcAsYBZay1L1lrzzgTtYiISPr44IMPGD9+PJcuXQJI90Tx/fff5/XXX+fxxx/nqaeeStdjSebm5JjFJ9xf3wMKWWtvttaWA6rhenrLTFxd038CVay1T1prjzkSqYiISBqz1jJt2jQOHnSNvHr//fdZu3YtOXKkf6ffnDlzeOKJJ2jVqhXjxo3D9YA0Ec+cTBZrA/uA/tba87GF1totwJNALuAccIe1doczIYqIiKSPAwcO0KtXL9577z0AgoOD03zeRE82btzIfffdR9WqVfnqq68yJDmVzM3Jn5CCwDxrbbSHdavdX5dZa3Uzi4iIZAkXL17k559/plWrVhQvXpxVq1ZRtWrVDDv+/v37ad26NcHBwfz000/kzZs3w44tmZeTLYs5gROeVlhrI9zfHs6waERERNLZuHHjaN26NVu2bAGgevXqGfaUlJMnT9KyZUtOnz7N7NmzKVKkSIYcVzI/b2971uNlREQkUzt58iTh4eGUKlWKJ554gsqVK1OpUqUMjSEqKop7772X7du3M3fuXG666aYMPb5kbk4ni6Huu6JTvd5auyydYhIREUkT1loaN25Mzpw5WbVqFXny5KFFixYZHsNjjz3Gzz//zMcff0zTpk0z9PiS+TmdLN7pXjyxl1lvcT52ERERjw4fPkyhQoUwxvDKK68QEhLi2B3Ho0eP5uOPP2bo0KH06NHDkRgkc3My4dqHuplFRCSL+eOPP6hbty4TJ06kc+fONG/e3LFYvvjiC55//nk6derEyJEjHYtDMjfHkkVrbZhTxxYREUlr586dI3fu3FSqVInevXtTt25dR+NZtmwZ3bt3p0GDBkyePFlzKcpVc/JuaBERkSxh/PjxVK5cmdOnT+Pr68sbb7xBqVKlHItnx44dtGvXjlKlSvHDDz+QM2dOx2KRzE/JooiIyFWy1jWaqmbNmjRp0oToaE9TB2es//77j5YtW+Ln58fcuXMJDg52OiTJ5HSTiIiISCpdvHiRrl27UqlSJYYOHUrdunUd73YGV1f4XXfdxaFDh1iyZImjrZuSdShZFBERSSV/f3/8/Pzw8/NzOpQ4MTExdO7cmbVr1/Ldd99xyy23OB2SZBHqhhYREUmBv//+m9atW/Pvv/8C8Mknn/DMM884HNX/DR48mO+//5633nqLu+++2+lwJAtRsigiIpJCGzduZNu2bQBedXfxhAkTGDNmDH379qV///5OhyNZjJJFERGRZCxbtoyXXnoJgDJlyrB7926vewLKjz/+SL9+/WjTpg1jx471qiRWsgYliyIiIsn46aefmDp1KqdOnQJcYxW9yfr167n//vupXr06X375Jb6+vk6HJFmQ1ySLxpgXjTF3paBeG2PMixkRk4iIZC/WWr788kt+//13AEaMGMGff/5Jvnz5nA3Mg71799K6dWuuv/56fvrpJwICApwOSbIor0kWgeFAuxTUuwsYlq6RiIhItnTq1CkGDBjAhAkTAMidOzd58uRxOKqkIiIiaNWqFefOnWP27NmEhoY6HZJkYd6ULKaUL3qmtIiIpJFLly7x5ZdfYq0lf/78LFu2jPfff9/psJJ18eJF2rdvz44dO/j++++pVKmS0yFJFpcZk8UyQKTTQYiISNbw9ddf06lTJxYtWgRA+fLlvXbsn7WWRx99lEWLFjFp0iSaNGnidEiSDTg6KbeHsYfVLjMeMQdwI1APWJKecYmISNZ26tQpdu/eTZUqVXjggQcoWLBgpki8Ro0axdSpUxk2bBhdu3Z1OhzJJkzscy0dObgxMbi6lFNzn/9ZoJW1dmn6RJU2atWqZdetW+d0GCIi4kHz5s3ZsWMHO3fu9KqnsFzOZ599RpcuXejSpQuffPKJpsiRNGWMWW+treVpndOP+xvJ/5PFF4HfgZnJ1L0I/AvMt9YeyZDoREQkyzh48CAhISH4+/szatQoLl26lGkSxSVLltCjRw8aN27MpEmTlChKhnK0ZTE+dyvjVGttD6djSQtqWRQR8R4HDhygUqVKDB48mOeff97pcFJl27Zt3HbbbRQpUoSVK1dSoEABp0OSLMibWxbjWGsz4802IiLixU6dOkW+fPkoVqwYQ4YM4d5773U6pCsKDQ3lyJGkHWg5cuRQoiiOUIImIiJZ0qeffkqpUqX4999/AXj22WcpU6aMw1FdmadEEeDYsWMZHImIi9e0LMYyxhQFGgNFgFzJVLPW2pcyLioREcksoqOj8fX1pW7durRr145cuZL7KHHG+fPnOXHiBCdOnCAiIiLu+9jXIt7Gm8YsGuBt4HH+3+KZeARv7M0w1lrrnZNguWnMoohIxrLW8vDDD+Pj48NHH32Ursc5deqUx0Tvcklg7PcXLly4pmOLpIdMMWYRGAT0BWKAecB2NPm2iEi2l9wYvkKFCnH48OG418YYihQpgjEGa+1l7xiOjo6OS+BSm/RFREQQHR2d7L6NMRQoUICgoKC4pWjRoglex1+f+PvMcoe2ZB/e1LK4DSgN3G6tXeF0PNdKLYsiImnjcknf+vXr6du3L4888ggFCxZMcdJ36tSpyx7Tz88v2eTuSq/z5cuHj8/V3xJwufP1ls9syXoyS8tiKWB5VkgURUQkY9SsWROAVatWJVkXEBCQIIkrUaIEVatWTVHClzt3bsfmMixUqFCyLakiTvCmZDEC+M/pIEREJPOYMGECgYGBXHfddQkSvgIFCuDv7+90eFclfte6iDfwpmRxEXCz00GIiIh3OHfuHAMHDrxsnccffzyDohHJvrxpnsUXgOuNMS84HYiIiDhr27Zt3HrrrUycONHpUESyPW9qWawLTAGGG2NaAnOBfbjujk7CWvtpBsYmIiIZwFrL5MmT6du3L3nz5mXOnDl0795dY/hEHORNyeJU/j+P4q3ALVeor2RRRCQLOXnyJL179+arr76icePGtGrViiZNmnD48GH2799P4cKFyZHDmz62RLIHb/qt+xRXspjmjDEVgXeAOrhupJkEjLDWJj9R1v+3vQcYAlQGzgK/Ae2ttWfSI1YRkezot99+4/7772fv3r28/PLL3HrrrTRt2pRChQrRuXNnihcv7nSIItmW1ySL1tpu6bFfY0wQsBDYCrQFygBjcI3XHHqFbR8G3gVexzVpeBDQBC9630REMrOYmBjeeusthgwZQuHChXn33Xfp3bs3ACtWrOC2225zOEIR8ZpJudOLMWYIMBgoaa2NdJcNBoYDobFlHrYLAXYDT1lrU/3cKE3KLSJyef/99x9du3Zl3rx53HPPPfj7+zN37lz27t1LYGCg0+GJZCuXm5Tbm+6GTsAYc4Mxpo4xptw17qoFMD9RUvgVkBtoeJnt7nN//eQajy8iIon88ssvVK1alcWLF/Pmm2/y7bff8vLLL/Pjjz8qURTxMl6VLBpjchhjXjTGHAF2ACuAZ+Otf9AYs8oYUzkVu62A6znTcay1+3CNP6xwme1udcfQ0xhzwBgTZYz51RijPhERkasUFRXF888/T7NmzQgMDCRPnjzs3LkTYwylS5emfv36TocoIol4zdg7Y0wOYA5wO3AJ2AZUTFRtJTANaA9sTuGug3Dd1JLYCfe65IQC5XGNaxwMHHd/nWeMKWutTTqPg4iIJGvv3r088MADrF69mp49ezJu3Di++uor6tWr53RoInIZ3tSy2AdoCvwChFlrk7QeWmv3ALuAOzIgHgPkBXpaaz+31s4D2gHR7liTbmBML2PMOmPMuqNHj2ZAiCIimcN3331HtWrV+P333/H396dPnz4EBATQs2dPypcv73R4InIZ3pQsdsHVeneftfbQZeptA1Izh8IJwNMAmCD3usttZ4ElsQXucY/rSdriGbv+Q2ttLWttreuvvz4VIYqIZE3nzp3j8ccfp0OHDpQtW5YVK1bQo0cPihQp4nRoIpJCXtMNjavLd4m1NuIK9U4BqcnEtpNobKIxpjiQh0RjGRPZhqt10SQqNyTzVBkREfm/bdu20bFjR/78809KlizJ8uXLyZkzpx7hJ5LJeFPLoiVlSVgR4Hwq9jsXuNMYky9eWUfgHLD0Mtv95P7aOLbAGBMI1AQ2peL4IiLZirWWSZMmUbNmTQ4fPky/fv3o2LEjPj7e9JEjIinlTS2Lu4Gqxhgfa63HpNEYkxuogqvVL6XeB/oB3xtjXgNK45pj8a340+kYY3YBS621PQGsteuMMTOBj40xzwLHcN3gEgVMSO3JiYhkBydPnqR79+788MMPVK1alblz51K4cGGnwxKRa+BN/+bNAooBAy9TZzCusYYzU7pTa+0JXHdY+wI/AiOAscCwRFVzuOvE1xmYAbwFfIsrUWzi3qeIiMTz22+/UaNGDWbNmkWJEiUYMGCAEkWRLMCbWhbfAroDrxpjquNKzgBCjDEtgHuBrsA+4L3U7NhauxXXY/ouVyfMQ9lp4DH3IiIiHsTExPDUU08xfvx4ihUrxrJly6hTpw7GJB7yLSKZkdcki9bacGNMc1ythvfjGldogVbuxQD7gTbW2lOOBSoiInH+++8/HnroIebPn0+uXLn4+uuvqVOnjtNhiUga8qZuaKy1f+KaluYJYDausYk7cc29OBCoaK1N6WTcIiKSjkaOHEm5cuVYsmQJEydO5Pjx40oURbIgr2lZjGWtPQ9MdC8iIuJloqKiGDZsGKNHjyZ37tysXbuWKlWqOB2WiKQTr2lZNMYUcDoGERFJXnR0NK+88gp169Zl9OjRdO7cmYMHDypRFMnivKll8ZAxZhYwFZif3PQ5IiLijAkTJvD888+TM2dOvvzyS+6//36nQxKRDOBNyaIPrjueOwCHjTGfAZ+472QWEREHnDt3jvnz57NgwQImTpxIpUqVmDlzJmXKlHE6NBHJIF7TDQ2EAn1xPXu5MDAI+NMY86sx5jF1U4uIZLz+/ftz9913M3HiRAYNGsSGDRuUKIpkM17Tsuie6HoCMMEYcyPQDXgQuBmoBbzl7qb+BJinbmoRkfRx9OhRzp07x4IFC/jss88oUKAAX375Jc2bN3c6NBFxgLHWOh1DsowxPkBTXJN1twVy4Zp78ZC1tpiTsV1JrVq17Lp165wOQ0QkVS5dukTZsmW5cOEChw4d4vbbb2fatGl6EotIFmeMWW+treVpnTd1QydhrY2x1i6w1j6Aq5t6PK7JufVXS0QkDR06dAiADRs2cO7cOf777z9eeeUVFixYoERRJJvzmm7o5BhjgoBOuB71V9PhcEREspyVK1fSpEkTOnXqxGeffUbRokVZtmwZt912m9OhiYgX8Mpk0d393BJXgtga8Of/j/ubhmt6HRERuQbnzp0jd+7clCxZkiJFijB16lTat2/PRx99RFBQkNPhiYiX8Kpk0RhTmf/f2FIQV4J4DvgKmAL8Yr15kKWIiJcLDQ3lyJEjHtdNnDiRRx99FGNMBkclIt7Ma5JFY8x6oBquBBFgDa4E8WtrbaRTcYmIZBXW2mQTRYDevXtnYDQikll4TbIIVAcOAp8CU621Ox2OR0Qkyzh9+rSeuCIiV8WbksUWwM+aP1FEJO0FBARw8eJFp8MQkUzIa6bOsdbqedAiImlo8+bNtGjRgn/++YeBAweyePFip0MSkUzIsWTRGNPAGFPuKrZraozplx4xiYhkJRcvXmTNmjXUqFGDt99+m+7duzsdkohkQk62LC4BnvG0whgTbox5J5ntHgTGpldQIiKZ2dy5c3nzzTdZsGABXbp0ISIigurVq7NhwwY+/PBDChUq5HG75MpFRJwes5jc/AwFgIAMjENEJEuYMmUK8+bN49SpU5QpU4YffviBtm3bxk2Hc/jwYYcjFJHMxulkUURErkFMTAyTJk2iRo0afP755/zwww/kzp2b119/nX79+pEzZ06nQxSRTE7JoohIJnb48GH69+8PuMYoPvzww4wcOVLdyiKSZpQsiohkMufPn2fGjBkEBQXx1FNPcf78eRo3bszYsWOpWrWq0+GJSBajZFFEJJMZNWoUL7/8MoDHcYkiImlJyaKISCYQHh7O9u3b+eabb5gwYQIBAQEMHz6cvn37alyiiKQrp5PFUGNMg1SuC03PgEREvM3FixepUaMGBw4cwFrLI488wsiRIylYsKDToYlINuB0snine0nMXmadiEi2sHfvXrZs2cLTTz/N3r17ufnmm5k0aRJVqlRxOjQRyUacTBb34UoKRUQkkTlz5tCmTRtiYmIoU6YMM2bM4K677tK4RBHJcI4li9baMKeOLSLirfbs2cPYsWN577338PPzY9CgQQwdOlTjEkXEMU53Q4uICBAVFcUDDzzA999/jzGGXr16MWLECI1LFBHHKVkUEXHY7NmzGTRoENu2baNYsWJMnz6d2rVrOx2WiAgAPk4HICKSXW3evJnQ0FBat25NVFQUM2fOZN++fUoURcSrKFkUEclg4eHh9OvXj2rVqnHixAnatGnDli1bdAOLiHglJYsiIhkkKiqKF198kUKFCjFhwgQeeeQRDhw4wKxZs/D393c6PBERjzRmUUQkA8ydO5ennnqK7du3kzt3bsaNG8cjjzzidFgiIleklkURkXS0detWbrnlFlq2bEl0dDSzZs0iMjJSiaKIZBpqWRQRSQfHjx9nxIgRcfMlhoSEsHz5cgoVKuR0aCIiqaJkUUTkKoWGhnLkyJEk5fny5SMmJoZz587x6KOPMnToUIKDg8mVK5cDUYqIXBsliyIiV8lToghw6tQpcuXKxV133cV7772XwVGJiKQtx5JFY0z0NWxurbVKdEXEa+3YsYNixYo5HYaIyDVzMuG6lsnENBGZiHi1EiVKOB2CiEiacOxuaGutT+IFGAucBd4CqgNB7qU6MAY4A7zlrisi4pg//vjD6RBERDKE13TlGmN6Av2AJtba5YlWbwI2GWNmAouNMTustR9leJAiku1duHCBl19+mdGjRzsdiohIhvCmFrrHgeUeEsU41toVwHLgsQyLSkTEbc2aNdx000289NJLPPDAAwQHB3usp+lxRCQr8aZksTxwKAX1DgHl0jkWEZE4Z86c4amnnuK2225j165dtG/fnk8//ZTjx49jrU2yHD582OmQRUTSjNd0QwMXcI1NvJLq7roiIulu0aJF9OzZkz179vDYY49RtmxZ7rnnHqfDEhHJMN6ULC4D7jLGvAS8aK218VcaYwwwAqgAzHQgPhHJRiIiIhg0aBCTJk3CGMPnn39Op06dnA5LRCTDeVOy+AJwB/Ac0NEY8xWw270uDLgfuAE4B7zoRIAikj3MmjWLxx57jMOHD/P4448D0LJlS4ejEhFxhtcki9bazcaYlsDnuJLC5xNVMbjGK3a21v6Z0fGJSNZ39OhR+vXrx1dffUX+/Pn59ddfqVWrltNhiYg4ymuSRQBr7VJjzA1AB6AhEPv4g3+BpcC31tpzTsUnIlmTtZYvvviC/v37ExkZSfPmzbn11lupUaOG06GJiDjOq5JFAGvteeAz9yIikq4OHDhAt27d+OWXX6hYsSJLly6lUqVKToclIuI1vGnqnHRjjKlojPnFGHPWGHPQGDPSGOObiu19jDHrjDHWGNM6PWMVkYwRExPDBx98QMWKFVm9ejXFihVj5MiRShRFRBLxupZFdzf0o0Ad4HpgprV2sHvdrUBV4BtrbUQK9xcELAS2Am2BMrgeHegDDE1hWA/z/y5xEcnkdu3axX333cfGjRtp3LgxkyZNolSpUrgmXRARkfi8qmXR/ci/zcBA4DZcN7qExKuSB5gI3J2K3fYGcgP3WGt/tta+j2sKnqeMMflTEFMQ8DJJb7gRkUwmOjqaMWPGUKVKFbZv305ISAiTJ0+mdOnSShRFRJLhNcmiMaYu8AFwHhgE3IrrDuj4lgIngbtSsesWwHxrbWS8sq9wJZANU7D9S8BK4JdUHFNEvMyff/5JuXLlePrpp2nWrBk7d+5k//79hIWFOR2aiIhX86Zu6MGABVpYa1cDSf7Tt9bGGGM2AjemYr8VgEWJ9rPPGHPWve7H5DY0xlQBegBVUnE8EfEiFy9e5JVXXuGVV17BWkuNGjWYMWOGWhJFRFLIa1oWcY1RXBubKF7GYaBwKvYbBER4KD/hXnc57wDvWmt3peJ4IuIlVq1aRVhYGCNGjOC+++7jjz/+YO3atUoURURSwZuSxUDgQArq5SUDWkSNMfcD5YFRqdiml/uu6XVHjx5Nv+BE5LLOnj3L008/Tf369Tl06BD9+/fns88+48Ybb8TXN8UTIYiICN7VDf0fUCoF9crjmqQ7pU7gSkQTC3KvS8IY4we8AbwG+BhjCgCxN8MEGGPyWWtPJd7OWvsh8CFArVq1bOL1IpL+Zs+ezSOPPMKhQ4d49NFH6dy5M/Xq1XM6LBGRTMubksWVQAdjTC1r7TpPFYwxzYBywKRU7Hc7rrGJ8fdTHNed1duT2SYA11Q5b7mX+L4C/sZ1p7aIeImTJ08yePBgPvzwQ4wxzJgxg7Zt2zodlohIpudN3dBjcd39/L0x5g5jTILYjDENgMnAJVxjCVNqLnCnMSZfvLKOwDlcd1d7chponGh5wL3uOeDBVBxfRNLZ1KlTufHGG5k0aRK9e/dm8eLFShRFRNKI17QsWmt/NcYMxtX9OxeIxHV3dDtjTCtc8y0a4Clr7Z+p2PX7QD9cSehrQGlgOPBW/Ol0jDG7gKXW2p7W2kvAkvg7McaEub/901r7a+rPUETS2tGjR+nbty9ff/01gYGBrF69mltuucXpsEREshRvalnEWjsGaAWswzXO0AAFcD3JZTPQzlr7dir3eQK4HfDFNU3OCFytmMMSVc3hriMiXs5ay3vvvUfFihX5/vvvuffee1mzZo0SRRGRdOA1LYuxrLVzgbnGmOtw3fDiC+y31h68hn1uBZpcoU7YFdbvIekk4SKSwf7991/at2/Pr7/+yo033sjixYupXLmy02GJiGRZXpcsxrLWHgeOOx2HiHiH2NbE5557jqioKBo1asQ333zD9ddf73RoIiJZmtd0QxtjvjHGtEh8Y4uIyN9//02JEiXo06cP1atX548//mDx4sVKFEVEMoA3JWYdgJ+A/caY14wxFZ0OSEScdenSJd566y1uuukmjh8/TqtWrZg3bx433KCZq0REMoo3dUP3A7oCNYFBwNPGmHXAVOBLa22Ec6GJSHoKDQ3lyJEjScqNMVhrad26NRMnTqRYsWIORCcikr15TcuitfZda+3NQCXgTVzPgL4ZeBc4ZIz5Wt3UIlmTp0QRXOMUH3/8cWbNmqVEUUTEIcZa73wqnTspbAZ0A9oCuXDNu3gY+Mxa+4xz0V1ZrVq17Lp1Hh9EIyKJGJP8RAPe+jdKRCQrMcast9bW8rTOa1vprLUx1tr51toHgFDgUWA1UBh42tHgRERERLIJr00WE/EF/AB/pwMRkbRjrWXgwIFOhyEiIpfhTTe4JODuhm6Bqxu6Na5E0QD7gU+di0xE0sL+/fvp06cPs2bNcjoUERG5DK9rWTTGVDbGvAn8C8wC2gMxwJfAHUCYtfYFB0MUkWtw4cIF7r77bipUqMDChQt56aWXKFSokMe6yZWLiEjG8ZqWRWNMX1ytiNX4/2P1VuOaOudra22kI4GJSJrZsGED3bp1488//6R8+fLMmzePsLAwhg4d6nRoIiKSDG9qWRwHVAcOAq8CFay1da21HylRFMncDh8+TKtWrbj55ps5evQoY8eOZevWrYSFhTkdmoiIXIHXtCwCXwNTgIXW2hingxGRtPHjjz/SpUsXTp48yQMPPMB7771HgQIFnA5LRERSyJtaFtcAJZQoimQNGzdupHnz5tx1110UKVKEDz74gC+++EKJoohIJuNNLYtjgLnAJKcDEZGrFx0dzcSJE+nfvz8Ar7zyCgMHDsTfXzNfiYhkRt7UsngUOOV0ECJy9WbPnk3dunXp27cv1apVY968eQwZMkSJoohIJuZNLYsrcD0LWkQymbNnz/LYY4/x6aefki9fPj777DM6dep02cf4iYhI5uBNLYsjgWLGmBFGnzAimcb3339P5cqV+fTTT6levTq//fYbDz74oBJFEZEswptaFqsD04ChQAdjzExgL3DOU2VrrZ7iIuKgI0eO0KxZM/7880/Kli3LkiVLaNiwodNhiYhIGvOmZHEqYHFNyH0jUOEK9ZUsijggOjqaSZMm8eyzz3LmzBnq1avHjz/+qLucRUSyKG9KFj/FlSyKiJfauHEjTZo0ISIigkaNGvH+++9Tvnx5p8MSEZF05DXJorW2m9MxiIhn58+f5+WXX+a1117Dx8eHrl27MmXKFI1LFBHJBrwmWRQR7/TRRx/Rr18/zp8/T5cuXRgzZgzXX3+902GJiEgG8aa7oRMwxtxgjKljjCnndCwi2dGxY8fo2rUrvXr1Ijo6mnHjxvHpp58qURQRyWa8Klk0xuQwxrxojDkC7MA19+Kz8dY/aIxZZYyp7FiQIlmctZZ+/fpRokQJvvjiC55//nlOnDhBv379nA5NREQc4DXd0MaYHMAc4HbgErANqJio2kpc0+u0BzZnaIAi2cDOnTvp3bs3ixcvJiAggDVr1lCzZk2nwxIREQd5U8tiH6Ap8AsQZq1N0npord0D7ALuyNjQRLK2s2fP0rJlSypXrsyGDRt49913OX78uBJFERHxnpZFoAtwHLjPWhtxmXrbcE3gLSJpYPny5Tz88MPs3LmT8uXLs2TJEkJDQ50OS0REvIQ3tSyWB369QqIIcArQCHuRa3TgwAHq1atHgwYNuHjxIp988gnbtm1ToigiIgl4U8uiBWJSUK8IcD6dYxHJsqy1fPHFFzz22GOcOnWKTp068eGHHxIQEOB0aCIi4oW8qWVxN1DVGJNsTMaY3EAVXF3RIpJKa9eu5bbbbqNz587ceOONTJs2jc8//1yJooiIJMubksVZQDFg4GXqDAaCgJkZEpFIFhEVFcWrr75KnTp1+PXXXxk3bhyrVq2ic+fOTocmIiJezpuSxbeAw8CrxpgvjDH3uMtDjDEtjDGTgReBfcB7TgUpktl8/fXXVK9enSFDhtCoUSMWLVpEv3798PX1dTo0ERHJBLxmzKK1NtwY0xxXq+H9QEdc4xhbuRcD7AfaWGtPORaoSCYRERFBnz59+PzzzwkMDGTmzJncddddToclIiKZjNckiwDW2j+NMRWB7kALoDTgiytJnAt8aK0942CIIl7PWsvkyZMZOnQo//33H40aNWLSpEmUKVPG6dBERCQT8qpkEcBaex6Y6F5EJBX27t1Lq1at2LJlCzfddBM//fSTJtYWEZFr4k1jFkXkKkVFRfHaa69RsWJFdu/eTePGjVm+fLkSRRERuWZe07JojPEHCgCR7tbF2PK8wLNAVWAP8Lq1dr8TMYp4o7Vr13LHHXdw8uRJWrduzYQJEyhRooTTYYmISBbhTS2LLwCHiPcoP/eci8uAIbhucnkCWG2Muc6RCEW8SGRkJAMGDKBOnTrExMTQvXt3Zs2apURRRETSlDcli7cD/1prV8cruxuoBmwGHgZ+wPUEl94ZHp2IF5k4cSIhISGMHz+e3r17s3//fiZPnowxxunQREQki/GabmggDNiSqKwtrulzOrvvlJ6K687ou4GXMzQ6EQeEhoZy5MgRj+ty5crFm2++Sb9+/TI4KhERyU68KVkMBhJ/Kt4G7LXW/glgrY0xxvwK1Mvo4ESckFyiCHDy5En8/f0zMBoREcmOvKkbOgoIjH1hjCmIa57FFYnqnQXyZmBcIl5JiaKIiGQEb0oWdwJ1jTG53K/b4+qCTpwsFgb+y8jARJxw9OhRp0MQERHxqmRxOq6pc5YZY94CXgMuAjNiKxhjfIEawC4H4hPJEDExMUyaNIkbb7zR6VBERES8KlkcCywGagEDgNzA09ba+K2Id+Dqql6W4dGJZICVK1cSFhbGI488QsWKFZ0OR0RExHuSRWvtBaAp0BC4DyhvrZ2QqNp54ElgWgaHJ5KuwsPDeeyxx6hfvz779++nf//+LF26lEKFCnmsn1y5iIhIWvOmu6Gx1lpg+WXWL8bV+iiSJcTExDB+/HiGDRvGmTNn6N+/Px06dKBu3boAHD582OEIRUQku/OqZDE+99NbYp/UctxaG+NkPCJpbcOGDTz++OP8+uuv5MiRg5UrV3Lrrbc6HZaIiEgCXtMNHcsY09wYMx84BRx2L6eMMfONMS2djU7k2oWHh/Pggw9Sq1Yt9uzZw5gxY9iwYYMSRRER8Upe1bJojHkb6AvEPrMstjUxN9AMaGqMmWCt1SMrJNOJiYlh6tSpDB48mOPHj3PTTTexfPlyAgMDr7yxiIiIQ7ymZdEY0w3oB5wGRgJlcSWJud3fj8DV2viEMaZ7Kvdd0RjzizHmrDHmoDFmpHsansttc7MxZooxZpd7ux3GmGHx5oEUSbENGzZw880307NnTypUqMArr7zCvHnzlCiKiIjX86aWxT7AJaCptfa3ROv+BkYYY+YAK4HHgSkp2akxJghYCGzF9azpMsAYXIny0Mts2tFd9zXgL6AK8JL7a/uUnZJkdydOnOCFF17gvffew1rLyJEjGTp0KMaYK28sIiLiBbwpWawILPWQKMax1v5mjFmK65nRKdUbV+vkPdbaSOBnY0x+YLgx5nV3mSevWmuPxXu9xBhzHvjAGFPSWrs3FTFINhPb5fzMM88QHh7OI488QkBAAAMGDFCiKCIimYo3JYtnSNlj/I4C51Kx3xbA/ERJ4Ve4WgwbAj962ihRohhro/trEUDJoni0ceNGnnjiCVavXk1gYCDr1q2jevXqToclIiJyVbxmzCKu7uWbzWWaXdzrarnrplQFYHv8AmvtPuCse11q1MF1083fqdxOsoGIiAj69OlDrVq12LVrF927d2fIkCFUqVLF6dBERESumje1LA4DVgNjjDHPWGuj4q80xuTA1RpYDNcTXlIqCIjwUH7CvS5FjDGhuMY4Tkv0CELJ5mJiYvj00095+umnOX78OK1atWLatGkEBaX4x0tERMRrOZYsGmMe8lA8FegPdDDGfAvsdpeHAR1wJYrv47rJ5Pd0D9LNGOMPfIPrTu0nL1OvF9ALoESJEhkTnDjq999/54knnmDVqlXUrl2bMmXK0KtXLyWKIiKSZTjZsjgVsB7KDa6ksL+HcnDdsNIb+DSFxzkBeJqfJMi97rLcXd+fApWAutbaZLex1n4IfAhQq1YtT+cmWURERAQvvvgiEyZMIEeOHHzwwQc8/PDD+Ph408gOERGRa+dksvgpnpPFtLadRGMTjTHFgTwkGsuYjLdxTbnTzFqbkvqShVlrmTZtGoMGDeLYsWO0aNGCnTt30rRpUyWKIiKSJTmWLFpru2XQoeYCg4wx+ay1p9xlHXHdUb30chsaY4bgmv/xPmvtivQNU7zdH3/8wRNPPMGKFSsoXbo0c+fOpUaNGly6dIkcObxp+K+IiEjayQ5NIe8DF4DvjTFN3eMKhwNvxZ9Ox/2klo/jve4EvIKrBfRfY0zteMv1GXsK4qSTJ08yYMAAatSowfbt26lUqRI33nhj3HQ4ShRFRCQr87pPOWOMDxDsfhlurY25XP0rsdaeMMbcDryLa07FCGAsroQxvhxA/EcA3uH+2s29xNcd15hLycKstXz22WcMGjSI//77j27duvHmm2/i6+tLvnz5NLm2iIhkC16RLBpjgnF1994FVOX/LZ4xxphNwCzgvWQmyr4ia+1WoMkV6oQlet2NpEmiZBN//vknTzzxBMuXL6dKlSocO3aMOnXqEBwcfOWNJc6FCxcIDw/n1KlTREdHOx2OiEi2ENuoERwcTM6cOa95f44ni8aYu4HJQH7+f8dzLF+gBlAdeNIY87C19rsMDlGykZMnTzJ8+HDeeecd8uTJw6RJk+jevTv//PMPN9xwg9PhZSoXLlxg3759BAUFERYWhp+fn1pjRUTSmbWWqKgoIiMj2bdvHyVKlLjmhNHRMYvGmHuB6bimttkMDAIaATfielZ0I2AwsMVd52tjTGom5BZJEWstn3/+ORUqVGDcuHFUqlSJCxcu0Lp1a3x8fJQoXoXw8HCCgoIICQnB399fiaKISAYwxuDv709ISAhBQUGEh4df8z4dSxbdN4nE3lDS31pb1Vo7xlq7zFq7w1q73f39m9baKvx/MuxJxpiCzkQtWdHmzZtp1KgRnTt3pmDBgqxdu5YlS5awZs0aChUq5HR4mdapU6fInz+/02GIiGRb+fPn59SpU1eueAVOtiz2BfICz1lr37lSZWvtOOB59zZPpHNskg1ERkby1FNPUa1aNTZv3kxgYCAlSpSgVq1aBAUFxd3tLFcnOjoaPz8/p8MQEcm2/Pz80mS8uJPJYgvgODAmFduMAcKBlukSkWQL1lq++OILypcvz9tvv03Pnj3ZuXMnX331Fe+9957T4WUp6noWEXFOWv0NdjJZLA2sttamOOW11l4CVrm3FUm1LVu20LhxYx588MG4LtK77rqL6667jubNm1O8eHGHIxQREfEuTiaLAcDVdKSfcm8rkmKRkZEMHDiQqlWr8scff/DBBx/w+++/M2LECOrVq+d0eCIiIl7LyWTxGBB2FduVdG8rkkRoaCjGmCRLUFAQY8eO5cYbbyQkJISuXbuSO3duXnjhBQIDA50OW+SarVu3jmbNmhESEoIxhmrVqjkdUpY2depUjDFMnTrV6VBE0p2T8yyuB1oaY0pYa/elZANjTEngVmBOukYmmdaRI0c8lsfExLBmzRpOnDjBhg0b8PHJDk+6FG+QeMyQj48PgYGBVKlShW7dutG1a9drHlcUGRlJq1atOH/+PF26dCEkJITQ0NBr2md2NHXqVLp3707Xrl2VBIrE42Sy+DXQBphsjGlprb14ucrGGH9ck3f7uLcVSZVbb70VgObNmzsciWRHw4YNAyAqKopdu3bxww8/sHTpUtatW8e77757Tfteu3Yt//33Hy+//DLPPfdcWoQrV3D33XdTu3ZtChcu7HQoIunOyWTxS+ApoDGw1BjzuLV2o6eKxpiawATgZuB397YiIpnG8OHDE7xeuXIlDRo04L333mPgwIGUKlXqqvd98OBBAIoUKXItIUoqBAYGagiLZBuO9cVZay3QDtiHq2t5nTHmD2PMJGPMy+5lkjFmM7AWuAU4ALR1bysS5/z58wwePNjpMERSrG7dulSoUAFrLevXr0+y/tdff6VDhw6Ehobi7+9P8eLFefTRR+MSQ4A9e/ZgjKFr164AdO/ePW6cbvxu1LNnzzJ69GiqVatGQEAAefPmpU6dOnz5ZdL/u5csWYIxhuHDh7N27VpatWpFcHAwxhj27NkTV+/LL7+kcePGFChQgFy5cnHjjTcyatQoLly4kGSfxhgaNWrEsWPH6NWrF4ULFyZnzpxUqlSJKVOmJPseLViwgDZt2lCwYEFy5sxJ8eLFadu2LQsXLkxSd/78+bRs2ZKQkBBy5sxJmTJlGDRoEBEREcnu/1okN2YxLCyMsLAwzpw5w6BBg+IetXbDDTfw2muvkdzHV0qut4hTHH02tLX2gDGmBvAecC9Q2b3E/20yQAyuxwI+Ya09nuGBildbvXo1PXr0YPv27U6HInJVEk9ePnnyZHr16kXOnDm56667KF68OH/99ReTJk3ixx9/ZM2aNZQoUYICBQowbNgwfv/9d2bOnEnbtm3jbmyJ/RoREUGTJk3YuHEjNWrUoEePHsTExDB//nw6derEli1bGDVqVJKYVq9ezejRo6lXrx49evTg2LFj+Pv7A9CjRw+mTJlCsWLFaN++PQUKFGDNmjW88MIL/PLLL/z888/kyJHw4yUiIoK6devi7+9Phw4duHDhAtOnT6dHjx74+PjEJbyxhg0bxsiRI8mbNy/t2rWjePHiHDx4kFWrVvHZZ5/RtGnTuLojRoxg+PDhBAcH07p1awoWLMgff/zBm2++yZw5c1i9enWGPk0oKiqKO++8k4MHD9KiRQty5MjBjBkzePbZZzl//nzckIRYKb3eIo6x1nrFgmvuxH7AJ7huYJkDfAr0B8o4HV9ql5o1a1pJX2fPnrUDBw60xhh73XXX2a5du9pChQpZXP9sJFgKFSrkdLjZztatW50OwSvE/gwmtnTpUuvj42P9/f3twYMH48p37Nhh/fz8bJkyZeyBAwcSbLNw4ULr4+Nj27Vrl6B8ypQpFrBTpkxJcpyuXbtawL722msJys+dO2fvvPNOa4yxGzdujCtfvHhxXMzvv/9+kv3FHuvuu++2Z8+eTbBu2LBhFrBvv/22x/egZ8+e9tKlS3HlW7Zssb6+vvbGG29MUH/+/PkWsKVKlUryHlhr7f79++O+X7RokQVsnTp17IkTJzzGOmDAgCT78CS2fteuXVNcN/F7XrJkSQvYFi1aJHh/jhw5YgMDA21gYKC9ePFiXPnVXG+R1Ejp32JgnU0uR0tuhRYli95s5cqVtly5chawjz76qO3WrZutX7++jYqKcjo0cbvSH6iGDRvGfdBevHjRNmzY0E6bNs1aa+2ZM2dsw4YN7VdffWWttTYiIsI2bNjQfvfdd9Zaa48ePWobNmxoZ82aZa219tChQ7Zhw4Z27ty51lpr9+3bZxs2bGh//vlna621f//9t23YsKFdsmSJtdba7du324YNG9qVK1daa639888/bcOGDe3atWuttTZB8nStYhOlYcOG2WHDhtnnnnvO3nfffdbPz88aY+z48eMT1B8wYIAF7E8//eRxf+3atbO+vr42MjIyriy5xOXYsWPW19fX1qpVy+O+fv/9dwvYQYMGxZXFJovVqlXzuE21atVsjhw5kiRm1lp76dIle91119mbb745yXuQJ08ee/LkySTbNGjQwAL21KlTcWWtW7e2gP3+++89xhBfu3btLGA3b96cbLzXX3/9Ffdjbdomi3/99VeSbR566CEL2D///DOu7Gqut0hqpEWy6Gg3tEhqnT17lhdeeIGxY8cSGBjIlClT6NatG+fOnSNnzpyaEke81ogRIxK8Nsbw8ccf07179wTlq1evBmDp0qX89ttvSfbz33//ER0dzc6dO6lZs+Zlj/nbb78RHR0dNwYxsaioKAC2bduWZN0tt9ySpOzs2bNs2rSJkJAQ3n77bY/HzJkzp8f9lS1b1mNXcOxTk06cOEHevHkBWLNmDcaYFM1csHr1avz8/Jg+fTrTp09Psv7ixYscPXqU48ePc911111xf2khMDCQG264IUl5/HONlZbXWyS9KFmUTGPlypV0796dv/76i4ceeogZM2bw77//ApA7d26Ho5PUWrJkSdz3fn5+CV7nyZMnwevAwMAEr0NCQhK8Dg0NTfC6ePHiCV6XLl06wevy5csneF25cuUEr9NjQmvXP+5w5swZVq9eTc+ePenduzclS5akSZMmcfWOH3cNy37jjTcuu7/Tp09f8Zix+/rtt988JiKX25eneRpPnDiBtZajR48mSX6vpECBAh7LY8c2Rkf//8mvERERBAUFpej3+vjx41y6dOmK8Zw+fTrDksXUnGtaXm+R9KJkUbze2bNnGTp0KG+//TbBwcEsXLiQ22+/nQMHDlCsWDGnwxNJlYCAAJo2bcqPP/5IjRo16Nq1Kzt27CBPnjwAcdOxnDx58ppvyojd15NPPslbb72Vqm09TRQeu7/q1auzYcOGa4rtcgoUKMDx48c5d+7cFRPGwMBAYmJiCA8PT7d40lNaXm+R9KI+O/FqK1asoGrVqowdO5Y6deoQHh4e1+KhRFEysypVqvDII49w4MABxo4dG1deu3ZtAJYvX37Nx7jlllvw8fFJk30B5M2bl0qVKrFly5Z0Tc5q166NtZZ58+alqO6JEyfYsmVLusWTntLyeoukFyWL4pXOnj3LgAEDaNCgAWfPnmXRokUsXryY9evXU6lSJafDE0kTQ4cOJWfOnLz55ptx49j69OmDn58fTz75JDt37kyyzcWLF1OcWBQsWJAHH3yQdevW8dJLLyXo/oz1999/s3v37hTH/NRTT3Hx4kV69OjhcQ7D2EdqXou+ffsCMHDgwLihJvHFL3vyyScBeOSRRzzOSXjmzBnWrFlzTfGkp7S83iLpRd3Q4nWWL19O9+7d+fvvvwkODqZgwYI0atQIYwzVq1d3OjyRNFO0aFF69+7NuHHjeP311xk9ejQVKlRg8uTJ9OjRg0qVKtG8eXPKlStHVFQU+/btY/ny5Vx//fUpnlf03Xff5a+//uLFF19k2rRp1KtXj0KFCnHw4EG2bdvGb7/9xpdffpniJ8j06NGD9evX895771GmTBnuvPNOSpQoQXh4OLt372bZsmV0796d999//6rflzvuuIOhQ4cyatQobrzxxrh5Fo8cOcKKFSuoXbt23GTYt99+O6+++ipDhgyhbNmytGzZklKlSnH69Gn27t3L0qVLqVevXopaKWOtWLGCbt26eVxXo0YN+vXrd9XnllhaX2+R9KBkUbzGmTNneO6553jnnXcICwtj8eLF5M6dm0KFCnkcPyWSFQwZMoSPPvqI8ePHM2DAAAoVKkTnzp2pWrUqY8aMYfHixSxYsICAgACKFClChw4d6NixY4r3nz9/fpYuXcqHH37IF198wXfffcf58+cpVKgQZcuWZezYsTRr1ixVMU+YMIEWLVrw/vvvs3DhQiIiIggODqZEiRIMGjSIzp07p/ZtSOKll16iTp06jB8/np9++okzZ85QsGBBatWqxUMPPZSg7jPPPEPdunUZP348K1asYObMmQQGBlK0aFF69epFp06dUnXsv//+m7///tvjuoiIiDRNFoE0vd4i6cHE3qEnaatWrVp23bp1ToeRaSxdupQePXrwzz//YIxhzJgxcd1Lkjlt27aNG2+80ekwRESytZT+LTbGrLfW1vK0TmMWxVGnT5+mb9++NGrUCIDFixczduzYZLuAREREJGOpG1ocs2TJEnr06MHu3bvJnTs3ixcvpkSJEnGJo4iIiDhPyaJkuNOnT/PMM8/EDZCfPHky+/fvp1ChQk6HJiIiIokoWZQMtXjxYrp3787evXupUaMGy5cvj5uMWERERLyPxixKhjh9+jSPPfYYTZo0wc/Pj06dOtGnTx8liiIiIl5OLYuS7hYtWkSXLl04ePAg3bp1Y8KECUoSRUREMgm1LEq6OXXqFI899hi33347uXLlomzZsjz66KNKFEVERDIRtSxKuvjll1944IEHOHr0KE899RQvvfQSuXPn1uTaIiIimYxaFiVNRUZG0rt3b5o2bYq1lgoVKjB8+HDy5MmjRFFERCQTUrIoaWbu3LmULFmSDz/8kKeffpp//vmHzZs3ky9fPqdDExERkaukZFGuWWRkJL169aJly5acPn2a++67jzfeeIN8+fLh6+vrdHgiIiJyDTRmUa7JDz/8QI8ePYiMjGTw4ME88cQTlChRwumwREREJI0oWZSrcvLkSQYOHMjHH38MwIQJE3j88ccdjkpERETSmrqhJdU+++wzypYty5QpUxg8eDDr1q1ToigiXsEYo+fLX4WwsDDCwsKcDgOAbt26YYxhz549cWV79uzBGEO3bt2uWDerc+KclSxKikVERNCzZ0+6dOnCiRMnWL58Oa+99ho1a9Z0OjQRr/Txxx9jjKFFixbJ1mnVqhXGGN577z2P6xcvXkzXrl0pV64c+fLlw9/fn9DQUG6//XZeffVVDhw4kGSbRo0aYYxJsOTIkYNChQrRqlUr5s6dm2bnmB6WLFmCMYbhw4c7HYpjpk6dijGGqVOnOh2KXEFyiWxWom5oSZGJEycyatQoDh8+zCOPPMKAAQOoWLGi02GJeLWePXsya9YsZs2axYQJE3jiiScSrJ84cSJz5syhRYsWSVrnIyMj6dq1KzNmzMDPz48GDRrQsmVLAgICOHr0KGvXrmXIkCEMGzaMNWvWUL169STH79q1a1xr0blz59ixYwezZ89mzpw5fPDBB/Tq1Svdzt0p27Zt08T/WVDRokXZtm0bgYGBToeSLSlZlMuKiIjg0Ucf5ZtvviEkJIQ1a9Zw8803Ox2WSKbx0UcfsXr1agYPHkzTpk0pX748ADt37uTpp5/muuuuY/LkyQm2iY6Opn379ixcuJCGDRsybdo0ihcvnmTfW7du5cUXXyQyMtLjsbt165akS/a7776jQ4cOvPLKK1kyWaxQoYLTIUg68PPz07V1kLqhJVmffPIJlSpV4rvvvqNNmzZs2rRJiaJIKhUsWJCPPvqIs2fP0rlzZy5dusSlS5fo3LkzZ8+e5cMPPyQ0NDTBNp9//jkLFy6kbNmyzJ4922OiCFCxYkW+/fZb6tatm+J47rjjDgCOHj3qcf0333xDgwYNCAwMJHfu3Nx0002MHj2aCxcueKy/fv162rdvT8GCBcmZMyclS5bk8ccf59ChQ0nqHjlyhKeffpry5csTEBBAgQIFKF++PN26deOff/4BXAlu48aNARgxYkSCrvQlS5Zc8fw8jVkcPnx43PZffvklNWvWJE+ePBQpUoSnnnoq7twWLVpEo0aNyJ8/P0FBQXTp0oXjx48nOUbs+L6TJ0/Sp08fihYtSq5cuahYsSLjx4/HWpug/pW61ROPF2zUqBHdu3cHoHv37gneg/jj1C5dusR7771H7dq1yZ8/P3ny5KF69eq8++67xMTEJDmOtZZ3332XSpUqkStXLooWLUqfPn04efLkFd9XT7Zv306PHj0ICwsjZ86cFCxYkPr16zNx4sQE9WbMmEHnzp0pV64cAQEBBAQEULNmTcaPH+8xTk+u1NUbExPDW2+9RYUKFciVKxfFihXjySef9PiPVOz7HRkZyVNPPUVYWBh+fn5x1+fgwYOMHDmSunXrEhoair+/P0WKFKFTp05s3bo1wb6GDx9OqVKlANdnZvxrlXgIwfz582nZsiUhISHkzJmTMmXKMGjQICIiIjye08KFC6lfvz4BAQEEBwfTrl07tm/fnqL3K62pZVGSOHHiBC1btmTNmjWULVuWNWvWUKtWLafDEkkiNDSUI0eOJCkvVKgQhw8fdiAiz9q2bUuPHj2YPHkyI0eOBOC3336jW7du3HPPPUnqf/TRRwAMGjSIgICAK+4/R46U/ylfuHAhgMff6eeee47Ro0cTEhJCp06dyJs3L3PnzuW5555j/vz5LFiwAH9//7j6P/30E+3bt8daS4cOHShZsiTr169n4sSJzJw5kxUrVsR9kJ49e5a6devy999/06xZM9q0aYO1lr179zJz5kw6dOhA6dKladeuHeD64G3YsGGCxO9ab8B45513mDt3Lu3ataNRo0YsWLCAsWPHEh4eTtu2bbn//vtp1aoVvXr1YtWqVXz22WccO3bM4xjPixcv0rRpUyIiIrj//vu5ePEi3333Hf3792fHjh1MmDDhquPs1q0bBQoUYObMmbRt25Zq1arFrStQoAAAUVFRtGnThvnz51O+fHk6depErly5WLx4MX379uXXX39l2rRpCfY7YMAAxo8fT+HChenVqxd+fn7MnDmTX3/9lYsXLya4tlcye/Zs7r33Xi5cuEDz5s154IEHiIiIYNOmTbz++us89thjcXWfffZZfHx8uPXWWylatCgnT55k0aJF9O/fn99++y1JnFfjySefZNmyZdx33320bduW+fPn8/bbb7N8+XJWrFhBrly5EtS/ePEiTZo0ITw8nDvuuIP8+fPH/awuW7aMV199lcaNG9O+fXvy5s3LX3/9xbfffsusWbNYuXIlVatWBVyJfUREBOPGjaNq1apxP79A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ne4o8T8VGzduZPTo0ak67uWMGzeOvXv3xr2OiYlh0KBBxMTEJLgWV1KwYEHy5MnD+vXrE3TjR0VF0b9/f44dO5Zkm6CgIIwxyf68PvnkkwA88sgjHDx4MMn6M2fOJPgdatu2LUFBQXzxxResW7cuQd3hw4dn+M0toG7oLC86Opp33nmHwoUL07FjR6fDEclWpk2bxvTp02nQoAEDBw5MsM7Hx4dPPvmEKlWq0LdvXxo1ahTXDejr68v333/PQw89xMyZMyldujQNGzakcuXK5MmTh6NHj7JlyxZWrVqFv79/sneSTp06Ne5DOioqir179zJjxgzOnDlDmzZtEtwUc9tttzF48GBef/11KleuTIcOHQgICGDu3Lls3ryZevXqMWjQoLj6efPmZfLkydx77700bNiQe++9lxIlSrB+/XoWLFhAaGgoH3zwQVz9n3/+mUGDBlGnTh3KlStHwYIFOXDgADNnzsTHxyfBvsuXL0/RokX56quv8PPzo2TJkhhj6NKlS4I7Xp1UuHBhLly4QOXKlbnrrruIiori22+/5dChQzz++OMJ7oT28/Ojf//+vPTSS1SvXp27776bS5cu8fPPP1OkSJG4m2ziq1OnDnny5OHtt9/m+PHjcePU+vbtS2BgIC+88AKbNm3i/fff58cff6RJkyYULVqU//77j7/++ouVK1fy8ssvxz2WtW7duvTt25d33nkn7vrGzrMYFBSU4ps1wDVe84svvqBDhw40btyYFi1aUKVKFSIjI/njjz/Yv38/u3fvBuChhx7ijTfeYMCAASxevJiyZcvy119/8dNPP3HPPffw9ddfX8tliBN7s1THjh0JDAxk/vz5bNq0iZo1azJ48OAU78fHx4d+/frx6quvctNNN9G2bVsuXrzI4sWLCQ8Pp3HjxixevDjBNnnz5uXWW29l+fLlPPjgg5QrVw5fX1/uuusuqlSpEvcc9yFDhlC2bFlatmxJqVKlOH36NHv37mXp0qXUq1ePefPmxe3vww8/pGPHjtSvXz/BPIubN2+mQYMGHpP0dJXcnDpassY8i5cuXbK1a9e2Dz30kLU2c81LJ5lbRsyz6M327t1rAwMDbf78+RPM/5bYRx99FDcnYUxMTJL1CxcutF26dLFlypSxefLksX5+frZgwYK2cePG9uWXX04yp521/59nMf5ijLEFChSw9erVsx98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yVP5yHZcEPtj4cKFrFq1qlawuO222+Z8bvL111/PT3/6UyorKxk6dCh9+vShS5cuSGLixInMnj07rzYvX76cDRs21NtXEPure/fu9fZV6pham4NFM7MW9uSTT3LTTTcxcOBArrzySubOncugQYM444wzeO2112r9oe7YsSODBw9m+vTpTJ06tU6wWAiDBw9mxowZ/PWvf60JFlPB0gcffJD1tmFqdnOqXHr5bDLLQ7w9+Yc//IEQAm+88QbPPPMMN910E5dddhmbNm1izJgxBTrClrds2TI2btxYJ2BMnY/0405dvc28OpWSedWrIam6jzzySB566KG89lmyZEmdz9SGDRtYtmxZndvHuaTa+v777zNw4MB6y95+++3Mnz+fSy65pM5s8FmzZnH99dc36j0bsmTJkpplqdJl6w8gZ6C4YcMGRo8eTa9evfjb3/5W55+hWbNm5d22iooKNm3axIoVKxpdHuIxZZPrZ64lFX3MoplZW7ZixQq+//3vU15ezt13303nzp0ZMGAAY8aMYcmSJbVmjab84Ac/AOKYqrVr1xa8TVVV8bkC6cuWpBb1zrY8zbx583jvvffo169fTaBQX/kNGzbwwgsvAPDVr361Tr4kdt99d0aOHMlTTz0FUGvcZSoA27ixdIeIb9iwgZkzZ9ZJT52P9EXSKyvjE2LffffdOuXnzZuX9Spkfeegf//+bLPNNrz44ouNHjuX6odsty+nT5+e17nea6+9ABr1JKB58+YB8J3vfKdOXiFvpWar6+233+bdd9+lb9++jQ7Gly1bxsqVK9lnn33qBIpr1qypuUWcrqHP61577UVVVRWvv/56o9pQX1+tWrWKv//9742qp5AcLJqZtaCzzjqLRYsWMXbs2FpjpM477zy++c1v8sADD3D33XfX2ufEE0/kwAMP5K233mL48OFZx8wBOddnq8+CBQtqrkalL0tz2mmnATB27NhaazBu3LiRn//852zatInTTz+9Jv2II46gW7du3HvvvTVj2FKuu+465s+fz0EHHUSfPn0AeP3117NeKUmlpT91pXv37gB1JseUmgsvvLDW7cgVK1bUjCFMrZMIMbjr2rUrkyZN4sMPP6xJX7duHWeffXbWuus7Bx07dmTkyJEsXryYs88+m3Xr1tUps3jx4lprAqbWJ7z88strXeH6+OOPufDCCxtzuDVOOeUUunbtyu9//3uef/75Ovnpn9fUckeZ/1S8+uqreU+sqc/111/PwoULa77ftGkT559/Pps2barVFw3Zdttt6dKlC6+88kqt2/jV1dWcc845LFu2rM4+lZWVSMr5eT333HMBOOOMM1i0aFGd/I8++qjWz9CIESOorKzknnvu4eWXX65VdvTo0S06xCEX34Y2M2shd911FxMmTGDIkCGcd955tfI6dOjAHXfcwR577MHIkSP51re+VXMbsKysjIceeoiTTz6ZSZMmsdNOO7HffvsxYMAAunTpwtKlS3n99deZOXMmnTp1YvDgwVnff9y4cTV/pKurq1m4cCETJ07ko48+Yvjw4bUmxeyzzz5ccMEFXHXVVQwYMICjjz6aLbfcksmTJ/Paa6+x7777cv7559eU32qrrfjjH//IMcccw3777ccxxxxDnz59eOWVV3jyySfp1asXt9xyS035p556ivPPP5+9996bXXfdlW233Zb33nuPSZMm0aFDh1p1f+ELX2D77bdn/PjxlJeXs+OOOyKJk046qdaM12Lq3bs3n3zyCQMGDODwww+nurqaBx54gMWLF/OjH/2IIUOG1JQtLy/nnHPOYcyYMXzlK1/hyCOPZMOGDTz11FNst912NZNs0u2999506dKF6667juXLl9eMUxs5ciQVFRVcfPHFzJ49m5tvvplHH32UAw44gO23354PP/yQuXPnMmPGDC6//HJ22203AL7xjW8wcuRIbrjhhpr+Ta2zWFlZ2ejJGhDHa95zzz0cffTR7L///gwbNow99tiD1atX849//IN3332X+fPnA3DyySdz9dVX89Of/pRnn32WXXbZhblz5/LYY49x1FFHcd999zWnG2qkJksde+yxVFRUMGXKFGbPns2ee+7JBRdc0Oh6OnTowNlnn80VV1zBwIEDGTFiBOvXr+fZZ59lxYoV7L///jz77LO19tlqq60YPHgwL7zwAieccAK77rorZWVlHH744eyxxx41z3G/8MIL2WWXXTjkkEPo168fa9asYeHChUybNo19992XJ554oqa+W2+9tWalgfR1Fl977TWGDBmSNUhvSQ4WzaxoCvUM5lL0zjvvMHLkSLp27cqdd95ZM24tXb9+/bj22ms544wzOO2005gyZUrNWKquXbsyceJEpk6dyh133MHMmTOZOXMm1dXVVFZWsvvuu3P55Zdz8skn5xxrdscdd9R8LYmKigq+8pWvcNJJJ3H66afXGbd15ZVX1jwB5M4776S6upqdd96ZsWPHct5559VZtHnEiBHMmDGDX/3qV0yZMoVVq1bRq1cvzjrrLC6++OJaQdDBBx/MO++8w/PPP8+kSZNYvXo1vXv3ZujQofzsZz+rNbO4rKyMhx9+mFGjRjFhwgT+85//EEJg3333LZlgsVOnTjz99NNcdNFFjB8/nmXLlrHTTjsxatQoRo4cWaf8pZdeSpcuXbjttttqntpz3HHHMXr06JqALl1lZSUPPvggl156KePGjauZQXziiSdSUVFBeXk5EydO5O6772bcuHE89thjrFmzhp49e9KvXz/GjBnDCSecUKvO66+/nl133ZWbbrqJW265he7du3PkkUfyq1/9qmaR6cY69NBDefnll7nyyiuZOnUqTz75JJWVlfTv37/WlcrtttuOF154gVGjRjF9+nSmTJlC//79+d3vfsdBBx1UsGDx2muv5eGHH+a2225jwYIFdO/enXPOOYfLLruszoLcDRkzZgw9e/bk9ttv55ZbbqGiooKhQ4cyduxYLrnkkqz73HXXXZx77rk88cQT3HvvvYQQ2GGHHWruJvziF7/gG9/4Br/97W+ZPn06kyZNoqKigu23354zzzyT448/vlZ9Rx99NE888QSXXnop999/P507d2bIkCHMmjWLK664otWDRYWMxxJZYQwaNChkXj4upNQf2QVXHNpi79Fa2tKx2KfefPPNWmvapdtcgkR/Ji2b1K3V9EfvmZWq+n4Xp5P0Sgih7vpS+MqimRWBgzAzs82HJ7iYmZmZWU4OFs3MzMwsJ9+GNjMzy4PHKlp74yuLZmZmZpaTg0UzMzMzy8nBopmZmZnl5GDRzFqM13E1MyueQv0OdrBoZi2irKyM6urqYjfDzKzdqq6upqysrNn1OFg0sxax9dZbs3r16mI3w8ys3Vq9ejVbb711s+txsGhmLaJbt25UVVWxbNky1q9f71vSZmatIITA+vXrWbZsGVVVVXTr1q3ZdXqdRTNrEZ07d6ZPnz6sWLGCBQsWsHHjxmI3ycysXSgrK2PrrbemT58+dO7cudn1OVg0sxbTuXNnevfuTe/evYvdFDMzayLfhjYzMzOznEoiWJTUUdIoSXMlfSLpPUnXZpSRpIskvStpnaTnJX05S127SZoqaa2k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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 16, + "source": [ + "onc_plot_risk(\n", + " y_true=calibrated_results.y, \n", + " y_proba=calibrated_results.p_calibrated,\n", + " label='Predicted (XGBoost Imputed)',\n", + " filename='xgb_imputed_mortality_bar')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAEA4AAArRCAYAAAD2phiuAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAD2EAAA9hAHVrK90AAEAAElEQVR4nOzdd3RVZdYH4J1AIDQpKqJiAUQErCgiVizYu2IvFBXF0XHENnaxt7EXbGAbHStiVwR7QUVEseAg2AWk1wSSfH/M0s8C5Nwkt8HzrMWaNWGfs39eck/uPbnvfgsqKioCAAAAAAAAAAAAAAAAAAAAyE+F2Q4AAAAAAAAAAAAAAAAAAAAAVJ3BAQAAAAAAAAAAAAAAAAAAAJDHDA4AAAAAAAAAAAAAAAAAAACAPGZwAAAAAAAAAAAAAAAAAAAAAOQxgwMAAAAAAAAAAAAAAAAAAAAgjxkcAAAAAAAAAAAAAAAAAAAAAHnM4AAAAAAAAAAAAAAAAAAAAADIYwYHAAAAAAAAAAAAAAAAAAAAQB4zOAAAAAAAAAAAAAAAAAAAAADymMEBAAAAAAAAAAAAAAAAAAAAkMcMDgAAAAAAAAAAAAAAAAAAAIA8ZnAAAAAAAAAAAAAAAAAAAAAA5DGDAwAAAAAAAAAAAAAAAAAAACCPGRwAAAAAAAAAAAAAAAAAAAAAeczgAAAAAAAAAAAAAAAAAAAAAMhjBgcAAAAAAAAAAAAAAAAAAABAHjM4AAAAAAAAAAAAAAAAAAAAAPKYwQEAAAAAAAAAAAAAAAAAAACQxwwOAAAAAAAAAAAAAAAAAAAAgDxmcAAAAAAAAAAAAAAAAAAAAADkMYMDAAAAAAAAAAAAAAAAAAAAII8ZHAAAAAAAAAAAAAAAAAAAAAB5zOAAAAAAAAAAAAAAAAAAAAAAyGMGBwAAAAAAAAAAAAAAAAAAAEAeMzgAAAAAAAAAAAAAAAAAAAAA8pjBAQAAAAAAAAAAAAAAAAAAAJDHDA4AAAAAAAAAAAAAAAAAAACAPGZwAAAAAAAAAAAAAAAAAAAAAOQxgwMAAAAAAAAAAAAAAAAAAAAgjxkcAAAAAAAAAAAAAAAAAAAAAHnM4AAAAAAAAAAAAAAAAAAAAADIYwYHAAAAAAAAAAAAAAAAAAAAQB4zOAAAAAAAAAAAAAAAAAAAAADymMEBAAAAAAAAAAAAAAAAAAAAkMcMDgAAAAAAAAAAAAAAAAAAAIA8VjvbAQCWFwUFBatGxJ5/+vLXETEvC3EAAAAAAAAAAAAAAAAAAKhc/Yho/aevPVNRUfFTNsIsicEBAJmzZ0Tcke0QAAAAAAAAAAAAAAAAAABUy3ERcWe2Q/xeYbYDAAAAAAAAAAAAAAAAAAAAAFVncAAAAAAAAAAAAAAAAAAAAADkMYMDAAAAAAAAAAAAAAAAAAAAII/VznYAgOXI13/+wsCBA2ODDTbIRhYAAAAAAAAAAAAAAAAAACrxySefRN++ff/85b+sGc02gwMAMmfen7+wwQYbRNeuXbORBQAAAAAAAAAAAAAAAACAqvnLmtFsK8x2AAAAAAAAAAAAAAAAAAAAAKDqDA4AAAAAAAAAAAAAAAAAAACAPGZwAAAAAAAAAAAAAAAAAAAAAOQxgwMAAAAAAAAAAAAAAAAAAAAgjxkcAAAAAAAAAAAAAAAAAAAAAHnM4AAAAAAAAAAAAAAAAAAAAADIYwYHAAAAAAAAAAAAAAAAAAAAQB4zOAAAAAAAAAAAAAAAAAAAAADymMEBAAAAAAAAAAAAAAAAAAAAkMcMDgAAAAAAAAAAAAAAAAAAAIA8ZnAAAAAAAAAAAAAAAAAAAAAA5DGDAwAAAAAAAAAAAAAAAAAAACCPGRwAAAAAAAAAAAAAAAAAAAAAeczgAAAAAAAAAAAAAAAAAAAAAMhjBgcAAAAAAAAAAAAAAAAAAABAHjM4AAAAAAAAAAAAAAAAAAAAAPKYwQEAAAAAAAAAAAAAAAAAAACQxwwOAAAAAAAAAAAAAAAAAAAAgDxmcAAAAAAAAAAAAAAAAAAAAADkMYMDAAAAAAAAAAAAAAAAAAAAII8ZHAAAAAAAAAAAAAAAAAAAAAB5zOAAAAAAAAAAAAAAAAAAAAAAyGMGBwAAAAAAAAAAAAAAAAAAAEAeMzgAAAAAAAAAAAAAAAAAAAAA8pjBAQAAAAAAAAAAAAAAAAAAAJDHDA4AAAAAAAAAAAAAAAAAAACAPGZwAAAAAAAAAAAAAAAAAAAAAOQxgwMAAAAAAAAAAAAAAAAAAAAgjxkcAAAAAAAAAAAAAAAAAAAAAHnM4AAAAAAAAAAAAAAAAAAAAADIYwYHAAAAAAAAAAAAAAAAAAAAQB4zOAAAAAAAAAAAAAAAAAAAAADymMEBAAAAAAAAAAAAAAAAAAAAkMcMDgAAAAAAAAAAAAAAAAAAAIA8ZnAAAAAAAAAAAAAAAAAAAAAA5DGDAwAAAAAAAAAAAAAAAAAAACCPGRwAAAAAAAAAAAAAAAAAAAAAeczgAAAAAAAAAAAAAAAAAAAAAMhjBgcAAAAAAAAAAAAAAAAAAABAHjM4AAAAAAAAAAAAAAAAAAAAAPKYwQEAAAAAAAAAAAAAAAAAAACQxwwOAAAAAAAAAAAAAAAAAAAAgDxmcAAAAAAAAAAAAAAAAAAAAADkMYMDAAAAAAAAAAAAAAAAAAAAII8ZHAAAAAAAAAAAAAAAAAAAAAB5zOAAAAAAAAAAAAAAAAAAAAAAyGMGBwAAAAAAAAAAAAAAAAAAAEAeMzgAAAAAAAAAAAAAAAAAAAAA8pjBAQAAAAAAAAAAAAAAAAAAAJDHamc7AABERFRUVERZWVksXLgwSktLf/vfsrKyqKioiPLy8mxHBAAAAAAAAIBKFRYWRkFBQdSuXTvq1KkTderUiaKioqhTp04UFtrnBQAAAAAAgPQwOACArCkvL4958+bF7NmzY/bs2VFWVpbtSAAAAAAAAACQNnXr1o0VVlghGjVqFHXr1s12HAAAAAAAAJYhBgcAkHFz586NGTNmxJw5c6K8vDzbcQAAAAAAAAAgI0pKSmLKlCkxZcqU34YING3aNGrVqpXtaAAAAAAAAOQ5gwMAyJjS0tKYNGlSzJkzJ9tRAAAAAAAAACCrfh0iMH369GjevHmssMIKUVBQkO1YAAAAAAAA5CmDAwBIu7Kysvjll19i+vTpUVFRke04AAAAAAAAAJAzFi1aFD/++GPMmDEjWrRoEXXr1s12JAAAAAAAAPKQwQEApNXChQvj22+/jdLS0pSPLSgoiNq1a0dhYWEUFBTYWQEAAAAAAACAnFZRUREVFRVRXl4eCxcuTOnYefPmxYQJE6Jly5bRsGHDNCUEAAAAAABgWWVwAABpU1paGt9++22iD0PUrl07GjZsGMXFxVGnTp0oKiqKoqIiwwIAAAAAAAAAyEsVFRVRWlr625+5c+fG3LlzKz3m+++/NzwAAAAAAACAlBkcAEBalJSUxLfffhuLFi1aYk2tWrWiSZMm0bBhw6hXr54hAQAAAAAAAAAsMwoKCqJu3bpRt27diIhYccUVo6ysLGbPnh0zZ86MefPmLfY4wwMAAAAAAACoCoMDAKhxZWVllQ4NaNasWay00kpRq1atDCYDAAAAAAAAgOz5dcB+48aNY/bs2TFp0qTF/m791+EBrVq1+m3wAAAAAAAAACxNYbYDALDsmTx58hKHBtStWzdat24dq6yyiqEBAAAAAAAAACyXCgoKYoUVVog2bdpE48aNF1tTUVERP//8c1RUVGQ4HQAAAAAAAPnI4AAAatS8efNixowZi/274uLiWGutteyGAAAAAAAAAAARUVhYGKuuumo0adJksX8/b968mDVrVmZDAQAAAAAAkJcMDgCgxvy628Hi1KtXL9Zcc82oVatWhlMBAAAAAAAAQO4qKCiIFi1aROPGjRf795MnT46ysrIMpwIAAAAAACDfGBwAQI2ZOXNmlJSU/OXrBQUFsdpqqxkaAAAAAAAAAACL8evwgNq1a//l7xYtWhTTp0/PQioAAAAAAADyicEBANSYWbNmLfbrK6+8ctSpUyfDaQAAAAAAAAAgfxQWFsYqq6yy2L9b0u/jAQAAAAAA4FcGBwBQIxYtWhRz5879y9fr1KkTzZo1y0IiAAAAAAAAAMgvjRo1ivr16//l6yUlJVFaWpqFRAAAAAAAAOQLgwMAqBFL2t2gSZMmUVBQkOE0AAAAAAAAAJB/CgoKonHjxov9uyX9Xh4AAAAAAAAiDA4AoIYs6QMKK6ywQoaTAAAAAAAAAED+atSo0WK/bnAAAAAAAAAAS2NwAADVVlFREfPnz//L1+vXrx9FRUVZSAQAAAAAAAAA+alWrVrRoEGDv3y9pKQkysvLs5AIAAAAAACAfGBwAADVtnDhwsV+fXEfZAAAAAAAAAAAlm5Jv29f0u/nAQAAAAAAwOAAAKqtpKRksV+vU6dOhpMAAAAAAAAAQP5b0u/bS0tLM5wEAAAAAACAfGFwAADVtqQPJtStWzfDSQAAAAAAAAAg/xkcAAAAAAAAQKoMDgCg2pb0wYSioqIMJwEAAAAAAACA/Lek37cbHAAAAAAAAMCSGBwAQLUtWrToL1+rXbt2FBb6MQMAAAAAAAAAqSosLFzs8IDF/X4eAAAAAAAAIgwOAKAGVFRU/OVrtWrVykISAAAAAAAAAFg2LG5Y/+J+Pw8AAAAAAAARBgcAUAPKy8v/8rWCgoIsJAEAAAAAAACAZcPifu++uN/PAwAAAAAAQITBAQCkicEBAAAAAAAAAFB1fu8OAAAAAABAKgwOAAAAAAAAAAAAAAAAAAAAgDxmcAAAAAAAAAAAAAAAAAAAAADkMYMDAAAAAAAAAAAAAAAAAAAAII8ZHAAAAAAAAAAAAAAAAAAAAAB5zOAAAAAAAAAAAAAAAAAAAAAAyGMGBwAAAAAAAAAAAAAAAAAAAEAeMzgAAAAAAAAAAAAAAAAAAAAA8pjBAQAAAAAAAAAAAAAAAAAAAJDHDA4AAAAAAAAAAAAAAAAAAACAPGZwAAAAAAAAAAAAAAAAAAAAAOQxgwMAAAAAAAAAAAAAAAAAAAAgjxkcAAAAAAAAAAAAAAAAAAAAAHnM4AAAAAAAAAAAAAAAAAAAAADIYwYHAAAAAAAAAAAAAAAAAAAAQB4zOAAAAAAAAAAAAAAAAAAAAADymMEBAAAAAAAAAAAAAAAAAAAAkMcMDgAAAAAAAAAAAAAAAAAAAIA8ZnAAAAAAAAAAAAAAAAAAAAAA5DGDAwAAAAAAAAAAAAAAAAAAACCPGRwAAAAAAAAAAAAAAAAAAAAAeczgAAAAAAAAAAAAAAAAAAAAAMhjBgcAAAAAAAAAAAAAAAAAAABAHjM4AAAAANJg4sSJUVBQUOmftddeu8Z7X3jhhYl6X3jhhTXeG6hZ3bp1S/R8fvXVV7MdNSctWLAg2rZtu9THbsMNN4zy8vJsRwUAAICMGzx4cKL7Dj179qyxnj/99FM0aNBgqf0OOuigGusHAAAAAAAAyxODAwAAAACAZdKll14a//3vf5dac9VVV0VhodukAAAAkAmrrrpqnHrqqUutefTRR+PFF1/MUCIAAAAAAABYdtTOdgAAAAAAgJr2+eefx1VXXbXUmp122il23XXXDCUil8yYMSO+/fbbmDRpUsybN++3P/Pnz4/CwsIoLi6OunXrRr169WLFFVeMVVZZJVZZZZVo2rRptqMDAADkvTPOOCMGDhwYU6ZMWWLNiSeeGJ9++mkUFxdnMBkAAAAAAADkN4MDAAAAAIBlzoknnhilpaVL/PvCwsK4+uqra6TXQQcdFI8++mii2nr16sXo0aNj3XXXrZHeNW3kyJGx5ZZbRllZWaL6E044IW699dY0p6q6mTNnxocffhgjR46M999/P8aNGxfffvttzJo1q0rnq1u3brRt2zbatWsX6623Xqy//vrRtWvXWGuttWo4efXdc889Vf7vrIpatWpF3bp1o27dutGwYcNYeeWVo3nz5tGyZcto2LBhxnIAZENBQUHi2oqKijQmAYD80KhRozj//PPjpJNOWmLN+PHj4/LLL4+LLroog8kAAAAAAAAgvxkcAAAAy7GJEydGq1at0t7n1wVExcXF0bRp02jRokWsssoq0bp16+jYsWN07Ngx1l9//SgqKkp7FgBg2ffoo4/GiBEjllpz+OGHx8Ybb1wj/W655ZZ49dVXl7pT4q/mz58fvXr1ijfeeCMKCwtrpH9NWbBgQfTs2TPx0IBWrVrFVVddleZUqRs1alQMGTIknnrqqfjkk09qdIFmSUlJfPrpp/Hpp5/+4estWrSIrl27xk477RR77LFHTgwSGDBgQHzzzTfZjhEREauvvnq0a9cuOnfuHFtuuWVss8020bRp02zHAgAAsqhv375x4403xldffbXEmquvvjr69OkTa665ZgaTAQAAAAAAQP4yOACA5V4qu0EBNcPOasufkpKSKCkpiVmzZsXkyZPjyy+//EtNgwYNYsstt4wddtghevToEW3atMlCUgAg382fPz9OO+20pdYUFxfHJZdcUmM9V1555bj11lujR48eierffvvtuO6666J///41lqEmnHfeefH5558nqi0oKIh77rknZ3aS//777+PWW2+Nf//731lZLP/zzz/Hk08+GU8++WSceOKJ0bFjx9hnn33iyCOPjPXWWy/jeXLNDz/8ED/88EMMHz48IiJq164d2267bRxwwAFx+OGHR+PGjbOcEAAAyLSioqK47LLLlvpe+tf3+I888kgGkwEAAAAAAED+MjgAAADICXPnzo2XX345Xn755fjnP/8ZXbp0ieOPPz4OP/zwKCoqynY8gCUaMmRIjB49utK6fffdt8Z2NweW7Jprrolvv/12qTUnnHBCje9WeOCBB8ZBBx2UeDHDueeeG3vuuWe0a9euRnNU1TvvvBP/+te/EtefeOKJ0a1bt/QFSujdd9+N66+/Ph5//PFYtGhRtuP8ZuzYsTF27Ni47LLLonPnznH00UfH0UcfnTODFrJt0aJFMXz48Bg+fHicccYZccQRR8TZZ59tF1HIotGjR8eQIUMqrdt4441j3333TXseAP7fxIkTY/DgwZXWrb322tGzZ8+054GadOCBB0anTp1i1KhRS6x59NFH44033ohtttkmg8kAAAAAAAAgPxkcAAAA5KT33nsv3nvvvTj33HPjnHPOib59+0ZhYWG2YwH8xZAhQ+Lee++ttG7ttdc2OADSbPLkyXHVVVcttaZOnTpx2mmnpaX/LbfcEq+++mpMnjy50toFCxZEr1694s0338z6a5z58+dHz549o7y8PFF969at44orrkhzqqX773//G6eddlo89dRTWc2RxPvvvx/vv/9+nHvuudG3b984+eSTY7XVVst2rJwxd+7cGDhwYAwePDhOOumkuOiii6J+/frZjgXLndGjR8dFF11Uad3RRx9tcABAhk2cODHRNXq77bYzOIC8dNZZZ8VBBx201Jozzjgj3nnnnQwlAgAAAAAAgPxl1Q0AAJDTfvjhh+jXr19svvnm8dFHH2U7DgCQwy688MKYM2fOUmuOPvrotC3aXmmlleLWW29NXP/OO+/Ev/71r7RkScXZZ58d48aNS1RbUFAQgwYNigYNGqQ51eLNnj07TjvttOjYsWNeDA34vRkzZsSVV14ZrVq1ipNOOimmTJmS7Ug5paSkJK655prYeOON47333st2HAAAIEMOOOCAWHfddZda8+6778bjjz+eoUQAAAAAAACQvwwOAAAA8sKHH34YXbt2jTvvvDPbUQCAHPTVV19V+jqhVq1aceaZZ6Y1xwEHHBAHH3xw4vrzzjsvvvzyyzQmWro333wzbrzxxsT1J510Umy77bZpTLRkH374YXTq1CmuvfbaKC0tzUqGmlBaWho333xztGnTJi6++OJsx8k5X331VWy33Xbx73//O9tRAACADCgsLEz0Xv3ss8+OsrKyDCQCAAAAAACA/GVwAAAAkDdKSkriuOOOi9NPPz3bUQCAHDNgwIBYtGjRUmsOOuigaNOmTdqz3HzzzdG8efNEtQsWLIiePXtGeXl5mlP91bx581Lqvc4668Tll1+e5lR/VVFREf/6179iyy23jP/+978Z758us2fPjvPPPz/bMXJSSUlJHH744YaGAQDAcuLII4+Mli1bLrVm3Lhxcf/992coEQAAAAAAAOSn2tkOAAAAkKprrrkmysvL49prr812FAAgB3z55Zfx0EMPLbWmoKAg/vnPf2Ykz0orrRS33XZbHHDAAYnq33333bj22mszPhzpzDPPjPHjxyeqLSwsjEGDBkX9+vXTnOqPFi1aFL169YoHHnigRs5XXFwcG2+8cXTu3DnatGkTa665ZqyxxhrRvHnzqFevXtSvXz+Ki4ujpKQk5s6dG3PmzImZM2fGhAkT4uuvv47x48fHJ598Eu+//36UlJTUSCaW7Pjjj4/mzZvHPvvsk+0oAABAGhUVFcVpp50Wp5xyylLrLr744jjiiCOidm0fdwIAAAAAAIDF8Zs0AAAgkaZNm1Z5R9QFCxbE3Llz48cff4wJEybERx99FDNmzKhWnn/961/Rrl27OO6446p1HgAg/w0YMCDKysqWWrPrrrvGBhtskKFEEfvvv38ccsgh8fDDDyeqP//882PPPfeM9u3bpznZ/7z66qtxyy23JK4/+eSTY+utt05jor+aP39+HHjggfHcc89V6zwdOnSI/fbbL/bee+/o1KlTogUm9evXj/r168fKK68cEREbb7zxH/6+pKQkPvjgg3jjjTfiySefjJEjR1YrY7ZNmDAh1l577SofX1FRESUlJTFv3rz45Zdf4ocffoivvvoqRo0aFW+99VZ8+umnVTpveXl59OzZM8aMGRNrrLFGlfMBAAC579hjj40LL7xwqb87+Prrr+Pee++NPn36ZC4YAAAAAAAA5BGDAwAAgERWWGGFSnf7ScVHH30UQ4cOjXvuuSe+/fbbKp3j5JNPjs6dO8cmm2xSY7lgWXDhhRfGhRdemO0YABkxfvz4+M9//lNp3QknnJCBNH908803x4gRI2LSpEmV1i5YsCB69eoVb731VtSqVSutuebMmRO9e/eOioqKRPVt27aNyy67LK2Z/mzOnDmxyy67xNtvv12l44uLi+OII46Iv//977H++uvXcLqIunXrxlZbbRVbbbVVnHXWWfHNN9/EY489FoMHD67yIvl8VlBQEMXFxVFcXBzNmjWLddddN7bffvvf/v7rr7+OwYMHx+233x5TpkxJ6dwzZsyI4447Lp5//vmajg0AAOSQ+vXrx1FHHRU33njjUuuuuuqq6NWrVxQWFmYoGQAAAAAAAOQPv0UDAACyYpNNNokLLrggvv7667jnnntitdVWS/kcJSUlcfzxx0d5eXkaEgIA+eDqq6+OsrKypda0bNkydt999wwl+n8rrrhi3HbbbYnr33vvvbjmmmvSmOh/Tj/99JgwYUKi2sLCwhg0aFDUq1cvzan+X1lZWRx88MFVGhpQu3bt+Mc//hHfffdd3HnnnWkZGrA4a621VvTv3z8++eSTeOmll2L33XePgoKCjPTOB61bt44BAwbE+PHj49RTT015gc8LL7wQr7zySprSAQAAueK4446rtGbcuHHx5JNPZiANAAAAAAAA5J/a2Q4AAAAs32rVqhW9evWKfffdN/r06ZPyB/5GjhwZgwcPjt69e6cpIQCQqyZNmhT33ntvpXXHHHNM1KpVKwOJ/mq//faLQw89NB566KFE9RdccEHsvffe0b59+7TkeeWVV2LgwIGJ60855ZTYaqut0pJlSf72t7/Fc889l/Jx3bp1i1tuuSU6dOiQhlTJde/ePbp37x5jx46NM888M5599tms5skljRo1imuvvTa23HLLOOSQQ2LRokWJj73iiitixx13TGM6AAAg2zp27BhbbbVVvPXWW0utu/LKK+OAAw7IUCoAAAAAAPijiy66KNsRlnkXXHBBtiNA3kptWx8AAIA0adq0aTz++ONx0kknpXzsFVdcEeXl5WlIBQDksttuuy0WLFiw1JpatWpFnz59MpRo8W666aZYZZVVEtWWlJREz549o6ysrMZzzJ49O3r37h0VFRWJ6tu1axeXXnppjedYmhtvvDFuv/32lI4pKCiI8847L1555ZWsDw34vY4dO8YzzzwTI0aMiM022yzbcXLKAQccEA8++GAUFib/FcUrr7wSEydOTF8oAAAgJ/Tt27fSmvfffz/efvvtDKQBAAAAAACA/GJwAAAAkDMKCgrihhtuiMMOOyyl47766qt4+umn05QKAMhFpaWlMXDgwErr9thjj2jZsmUGEi3ZiiuumNJi+JEjR8bVV19d4zlOPfXU+PbbbxPVFhYWxqBBg6K4uLjGcyzJ2LFj44wzzkjpmHr16sXQoUNjwIABKS1Cz6Ru3brFe++9F9dee23Uq1cv23FyxkEHHZTSUI+KiooYOnRoGhMBAAC5oEePHtG0adNK62688cYMpAEAAAAAAID8kpufpAQAAJZbBQUFcccdd0Tbtm1TOu7BBx9MUyIAIBc9+uij8fPPP1dad+yxx2YgTeX23XfflIYjXXjhhfHZZ5/VWP8XX3wx7rrrrsT1p556anTt2rXG+ldm4cKFceSRR0ZJSUniY+rVqxdPP/107LnnnmlMVjMKCwvj1FNPjdGjR8eWW26Z7Tg545JLLokVVlghcf2wYcPSmAYAAMgFxcXFccQRR1Ra9/jjj8cPP/yQgUQAAAAAAACQPwwOAAAAck6DBg3iuuuuS+mY5557LubPn5+mRABArhk4cGClNU2aNImdd945A2mSuemmm6JFixaJaktKSqJnz55RVlZW7b4zZ86MY445JnH9euutFxdffHG1+6bikksuiY8++ihxfa1atWLIkCGx4447pjFVzVt33XXjjTfeiH/+859RUFCQ7ThZ17x585QGanz44YdpTAMAAOSKgw46qNKaRYsWxT333JOBNAAAAAAAAJA/DA4AAABy0h577BGbbrpp4vq5c+fGO++8k8ZEAECuGDduXLzxxhuV1u21115Rp06dDCRKplmzZnH77bcnrn///ffjqquuqnbfU045Jb7//vtEtbVq1YrBgwdHcXFxtfsm9cMPP8TVV1+d0jFXXHFFTg2FSEVhYWFcdtll8fjjj0ejRo2yHSfrdtttt8S1P/74Y8ydOzeNaQAAgFyw1VZbxaqrrlpp3T333BMVFRUZSAQAAAAAAAD5weAAAAAgZ/Xt2zel+nfffTdNSQCAXJJ0R8EDDzwwzUlSt88++8Thhx+euP7CCy+MsWPHVrnfs88+G4MHD05c379//+jSpUuV+1XFhRdeGPPnz09cv//++8dpp52WxkSZsd9++8XIkSOzHSPrdtxxxygsTP6riqRDMAAAgPxVUFAQ+++/f6V1EydOjGHDhmUgEQAAAAAAAOSH2tkOAAAAsCT77LNP9O3bN/GOQR988EGaEyW3YMGCePPNN+Ojjz6KcePGxZdffhk//fRTzJkzJ+bMmRPz58+PunXrRoMGDWLFFVeMVVddNXr27BlHHXVUxjKWlpbGN998ExMnTowZM2bEvHnzftvBtUGDBtGgQYNo3rx5tG7dOlZfffUoKCjIWLZ0WrBgQbz22mvx5ptvxueffx5ffvll/PLLLzF79uxYsGBBNGzYMBo1ahSNGzeOtm3bRocOHWKDDTaIHXfcMVZeeeVsx1/ulJeXx48//hjffPNNTJ48OebNmxfz5s2LkpKSqF+/fjRq1CgaNWoUK6ywQqy66qqx1lprpbT4kOqpqKiIn3/+OSZMmBCTJk2KuXPn/uHfp0GDBtG4ceNYe+21o1WrVhndwTzdPv300xg2bFh8+umn8fnnn8d3330Xs2fPjjlz5kSdOnV++95s2bJldOjQITp06BBbb711bLTRRtmOnvfKy8vjgQceqLSuUaNGscsuu2QgUepuuummGD58ePz000+V1paWlsbRRx8d7777btSundrt3OnTp8dxxx2XuL59+/YxYMCAlHpU1xdffBGDBg1KXN+4ceO45ZZb0pgos9Zbb71sR8i6Bg0aRLNmzeKXX35JVD979uw0J6qeX375Jb7++uv48ccfY+7cuTF37twoLS2NevXqRYMGDaJRo0ax5pprRuvWraNBgwbZjpt2y/Pj8csvv8R3330XkydPjl9++SUWLFgQJSUlUV5eHvXq1Yv69ev/9qdhw4bRsmXLWH311b2WJadMmTIlhg0bFmPGjInPPvss/vvf/8bMmTNj9uzZMXfu3GjUqFE0bdo0mjVrFhtssEF06dIlunbtmpHXvGVlZTFy5MgYNWpUjB49Oj799NOYOnVqzJw5M2bMmBEREQ0bNowVV1wx1llnnWjfvn1st912sd1220Xjxo3Tni8b5s+fHyNGjIiPPvooxo4dG1988UVMmzYtZs+eHbNnz47atWtHo0aNokmTJr89Jp07d47u3btHs2bNsh0flmjOnDkxYcKE+Pbbb2P27Nm/3RsqKir67R5my5Yto3Xr1rHiiitmO26NmTp1arz88svx/vvvx+effx5fffXVb9fgsrKy3+47rLjiirHeeutFx44dY5NNNolu3bpFvXr1sh2/RvTo0SPR+7/77rsvunfvnoFEAAAAAAAAkPsMDgAAAHJW8+bNY7311ovPP/88Uf3XX3+dco+ki+GTDC+YP39+/Pvf/45HH300Xn/99Up3zv31Q65TpkyJL774IjbccMO0Dg4YM2ZMvP766/HWW2/Fu+++G99++22Ul5cnOra4uDg22WST2HrrraNbt26x0047RZ06ddKWtaZVVFTESy+9FLfffnu8+OKLS/23mTlzZsycOTO+//77GDt2bAwZMiQiIgoLC6Nr165x4IEHRp8+faJRo0YZSr98+fzzz+O1116L9957L957773473//GwsXLkx8fL169aJdu3bRvn37WH/99WP77bePzTffPGrVqlWtXDUxOKNXr17Rq1evap/nV2uttVZMnDixxs6XxC+//BLDhw+Pt956K95666347LPPEu8SXlBQEK1bt46tt946tt5669hzzz2jRYsWaU5csyZMmBC33357PPjgg/HDDz8ssW7RokUxb968mDRpUvz3v/+NV1999be/W3PNNWPvvfeOE044ITp06JCB1MueN954Y6mP/6/23HPPqFu3bgYSpa5p06YxcODA2HvvvRPVf/jhh3HllVfGOeeck1Kfk08+OX788cdEtbVq1Yp7770344/ZlVdeGWVlZYnrL7nkkry7dlC5lVdeOfHggAULFqQ5TXILFy6MV199NV5//fV4880348MPP0xpsMGqq64aW2yxRWy99daxww47xMYbb5y+sBmwPD8es2fPjpdffjnefvvtePfdd+Pzzz+PadOmpXyeoqKiaNmy5W9DlzbddNPYYostYsMNN0x5eMzidOvWLV577bVqnePee++Ne++9t9pZfm/ChAmx9tpr1+g5lzc1eW9j9uzZcffdd8cjjzwS77333lLvG8yYMSNmzJgREyZMiA8//DAGDx4cEREdOnSIPn36xNFHH13ji3jffvvt+Pe//x2PPfZYTJo0aam106ZNi2nTpsVXX30Vzz//fPzrX/+KunXrxj777BMnnHBCdOvWrUazJdWzZ89Ez6NBgwZFz549l1pTVlYWjz/+eDzwwAMxbNiwpb4/W7hwYcyfPz8mT54c48aNi+eeey4i/v9+xzHHHBOHHHLIMjXwLZ8k/b5Ymtdee63GB3+OGDEio8+VRYsWxVtvvRVvvvlmvPXWW/HBBx/ElClTEh/fpEmT315PdO/ePTbffPM0pq158+fPj4cffjjuvPPOSq/Bv17jvvnmmxg1atRvX69fv37stNNOccQRR8T+++9f7Xti2bTNNtvEKqusUun1fsiQITF//vxlZmACAAAAAAAAVIfBAQAAQE7r1KlT4sEB33zzTZrTLN60adPi8ssvj7vvvjumT5+elQxL8tVXX8V9990X//nPf+Krr76q8nkWLFgQ77zzTrzzzjtx9dVXR9OmTWP//fePfv36RadOnWowcc178skn45///Gd8+eWX1TpPeXn5b4ulL7roojj++OPjrLPOysmdCi+88MK46KKLKq274IIL4sILL0x/oEqMHTs2HnjggXjiiSdi3Lhx1TrX/PnzY/To0TF69Ojfvta4cePYYYcdYuedd44DDjggVl555WomXr7MnTs3/vOf/8R//vOfGD58eCxatKhK56moqIjx48fH+PHj4957743CwsLo1q1b9OzZMw499NAaWQyXLl9//XWcddZZ8fjjjyceuLIk3377bdx8881xyy23xB577BEXXHBBbLbZZjWUdPnw0EMPJao74IAD0pykevbaa6848sgj4/77709UP2DAgNhnn31i/fXXT1Q/dOjQeOCBBxLnOeOMM6Jz586J62vC9OnT4z//+U/i+jZt2sQJJ5yQxkRkS9OmTRPX5sLwpvfeey/uueeeeOyxx6q0OPxXP/30Uzz55JPx5JNPRkTEuuuuG4ceemgcc8wx0bJly5qKm3bL6+OxaNGiGDJkSNxzzz3xyiuvRGlpabXPuXDhwpgwYUJMmDAhRowYEffcc09E/G841qabbhrbbrttHHjggbHJJptUuxf82cyZM+Oyyy6LgQMHxsyZM6t1rs8++yz69+8fAwYMiIsvvjj69etX7YWrb775Zpx77rnVHn5RUlISjzzySDzyyCOx0047xfXXXx8dO3as1jmzoaysLO644464+uqrY8KECdU61+/vd/Tv3z/++c9/xsknn5zxgZE1OVAhXZIOYMn0YvtlwRtvvBEPPvhgPP7444kHSi3OjBkz4oUXXogXXnghzj333GjdunUceuih0a9fv1httdVqMHHNKikpiRtvvDGuuOKKar2eivjfsNqhQ4fG0KFDo02bNnH66afHscceG4WFhTWUNnMKCwtj3333jYEDBy61bs6cOTF06NA4+OCDM5QMAAAAAAAAclf+/WYQAABYrqy11lqJa2fMmBElJSVpTPNHFRUVcffdd0e7du3immuuyamhAR988EEceOCBsd5668Ull1xSraEBizN9+vS4++67Y9NNN43dd9893n///Ro9f02YMGFCbL/99rH//vtXe2jAn82YMSOuuOKK6NChQwwdOrRGz708eeGFF2KXXXaJ9ddfP6644opqDw1YkpkzZ8aTTz4ZJ5xwQrRs2TIOPvjgGDZsWKLdNpdn06ZNi4suuijWWmut6NOnT7z00ktVHhqwOOXl5TF8+PA46qijYp111onbb789pV3HM2HRokVx3nnnRfv27ePRRx+t9tCA36uoqIhnnnkmtthiizjttNOWujMo/6+ioiKeeuqpSusKCgpi++23z0Ci6rnhhhti1VVXTVRbWloaPXv2TPQ8nDZtWvTt2zdxjo4dO8YFF1yQuL6m3HfffSl9759++ul5vVsmSzZjxozEtU2aNElbjsqMGDEidtxxx9hiiy3ijjvuqPairj8bN25cXHTRRdGmTZs47rjjqr0QNN2W18dj0aJFcccdd8Taa68dPXr0iOeff75GhgYszfz58+PNN9+Myy67LDp16hTrrLNO/POf/0w8ZA8q8+STT0aHDh3iqquuqvbQgN+bOXNmnHzyybHZZpvF119/XaVzTJ06Nfbff//YZpttqj004M+GDRsWm222Wdx44401et50++STT2KLLbaIfv361fi1cdq0aXH66adH+/btY/jw4TV6bviz8vLyeOKJJ2LzzTePbbfdNgYOHFitoQGL8/XXX8ell14arVu3juOPPz5++OGHGj1/TXjllVeiQ4cOccYZZ9T466nx48fH8ccfH1tuuWWMHTu2Rs+dKTvttFOiul+HTwEAAAAAAMDyzuAAAAAgp62yyiop1c+bNy9NSf5o9uzZsddee8UxxxxT4x9orY6ff/45DjvssOjcuXON7IydxPPPPx9bbLFF/O1vf4tZs2alvV8SjzzySGy88cbx6quvprXPjz/+GPvss0+ceOKJObfgOZd9/PHH0a1bt9htt93ipZdeymjv0tLSeOSRR6J79+7Rpk2bjF0z8kl5eXnccsst0bp167jwwgtj6tSpae/5zTffxAknnBCbb755fPjhh2nvl8TEiRNjm222iUsuuSStiwHLysri2muvjU6dOuXMgshc9tFHH8XPP/9cad1GG20UzZo1y0Ci6mnatGnccccdies//PDDuOKKKyqtO/HEExM9ThERtWvXjsGDB0fdunUT56gple0a+XstWrTI2s6ypN/kyZMT12ZjcMBPP/0UPXr0iB122CEjiyhLS0vjzjvvjA4dOsSll14aCxcuTHvPVCzPj8eHH34YG2+8cfTt2zerCw/Hjx8fV1xxRVx55ZVZy8CyoaysLPr16xf7779//Pjjj2nrM3r06Nhiiy3inXfeSem44cOHx4YbbpjWxaALFiyIv//973HiiSdm5B5KdQ0aNCg23XTT+OCDD9La5+uvv47u3bvHueee634HafHhhx9Gly5d4oADDsjIQNKSkpIYOHBgdOjQIW6++eaceL6XlZXFOeecEzvvvHOVh6sk9d5770WnTp3i3nvvTWufdOjWrVsUFBRUWvfSSy+5XgEAAAAAAEAYHAAAAOS4+vXrp1SfiUXAEyZMiK5du8azzz6b9l6puOuuu6Jdu3bx0EMPZbz3rwuNN9pooxg9enTG+//eJZdcEgcffHBGhxjceuutsf/++1uEXomSkpI45ZRTolOnTjW+U2RVTJgwIe27w+abL774IjbffPP429/+VqM7jSY1atSo6NKlS1x77bUZ7/17H330UXTp0iXefffdjPX84osvomvXrjkzOCFXPf/884nqtt9++zQnqTl77rlnHHXUUYnrL7744vjkk0+W+PdPPPFEPPzww4nPd+aZZ8Zmm22WuL6mjB07NqWdso844oisDDcg/ebNm5d4Z9UVV1wxGjdunOZEf/TYY49F+/bt47HHHsto34j/LWY999xzo1OnTjFu3LiM91+c5fnxuOmmm2KLLbbI29164c/mzJkTe+21V9x2220Z6TdlypTYYYcd4vXXX09UP2jQoOjevXtaBxr83q233hrHH398RnpV1YABA6J3794ZG6BSXl4el156aey3336xYMGCjPRk2VdaWhqnnHJKbL755mkfgLE4s2bNipNOOim6d++ekUGJSzJ//vzYb7/94rLLLsvYEIPS0tLo2bNnXHLJJRnpV1NWWmml2GCDDSqtmz59esoDagAAAAAAAGBZZHAAAACQ0yoqKlKqT7L7UHX89NNPscMOO+TUYpEFCxZEr1694thjj83oYvnFmThxYmy55ZbxyCOPZKX/qaeeGuedd15Weg8dOjQOOOAAO1stwVdffRVdu3aNG264ISd2deOvHn300ejcuXPWF66XlZXFaaedFocddlhWBju88cYb0a1bt5R2v64pkyZNih133DE+++yzjPfOF88991yium7duqU3SA274YYbYrXVVktU++tij0WLFv3l76ZMmZLSgrcNNtggzj///MT1NSnVAUyHHnpompKQbcOHD0/82iCTQy7Ky8vj3HPPjR49emRlmM7vffrpp7H55psnvgamw/L+eJxxxhlx8sknL/baC/mopKQk9t5778RDmWrKggUL4oADDqh0Z+3bbrst+vTpk/H3jnfeeWdcccUVGe2Z1MUXXxwXXHBBVno//fTTscsuu8ScOXOy0p9lx7fffhtbb711TtwbGj58eGy22WZLHcqWLnPmzIldd901nn766Yz3jog477zz4tJLL81K76pKOhwwm6+XAQAAAAAAIFcYHAAAAOS0+fPnp1Rfr169NCX5345Uu+22W0ycODFtPVI1bdq02GabbWLw4MHZjvKb+fPnx6GHHhr3339/Rvtecsklcd1112W055+98MILcdJJJ2U1Qy564403onPnzvHRRx9lOwpLMGDAgDjooINyaiHIQw89FPvvv39GhweMHTs29tprr6wOYZk5c2bsscceMWnSpKxlyFXTpk2L9957r9K6wsLC2HbbbTOQqOY0adIkBg4cmLh+1KhRcfnll//l6/369YspU6YkOkft2rVj8ODBUadOncR9a9IzzzyTuLZdu3bRqVOnNKYhm1JZ3NO5c+c0Jvl/5eXl0bt375xaUDVz5szYa6+94sEHH8x47+X98bj88svj6quvTnsfyJSKioo46qijYsSIEVnp/8svv8Tee++9xNf5gwYNin79+qU8SLKmnHfeeTFy5Mis9F6Shx56KGtDA371+uuvx0EHHWSAClU2atSo2HTTTeP999/PdpTfTJw4MbbffvsYM2ZMxnouWrQoevToEa+//nrGei7OeeedFw8//HBWM6Rihx12SFRncAAAAAAAAABE1M52AAAAgKX5+eefU6qvX79+mpJEHHPMMfHxxx8nqq1Vq1ZsuOGG0bZt21h77bWjUaNGUa9evZg/f37Mnj07JkyYEJ999ll8/vnnVd5ha8qUKbHTTjtl9MOtSZWXl0fPnj2jqKgoDjnkkLT3e/DBB+O8886r8vENGzaMTTfdNNq3bx/NmzePRo0axcKFC2PWrFnx9ddfx6effpp4B/DbbrstNttss8QfaF3WPfvss9GjR4+Uh4CQOWefffZiFyDngmeffTYOPPDAGDJkSBQWpnf+5c8//xy77757lXdRLigoiPXXXz86duwYrVq1ikaNGkVRUVHMnj07fvrpp/j8889j1KhRMW/evErPNXHixDj44IOztpgrV7300ktRVlZWad1GG20UTZo0SX+gGrbnnnvG0UcfHffee2+i+osvvjj22Wef2HDDDSMi4uGHH47HHnsscb9//vOfWVuMP2PGjHj77bcT1++6665pTEM2TZ06NaUFS7vssksa0/xPRUVFHHfccYmfi5lUXl4eRx99dNSqVSsjr7EjPB7Dhw+Pc889Ny3nhmy59NJL45FHHklUu9pqq8Umm2wSbdq0iRVXXDEaNGgQpaWlMX369Bg/fnyMHDkyvv/++5QzjB07Nq655po4++yz//D19957L0444YRE56hbt2506tQp2rZtG2ussUY0bNgwioqKYs6cOfHtt9/GJ598EqNGjUr0+vH3Fi1aFEcffXR88sknUbt29n+VPnbs2OjVq1fiQQprr712bLTRRtG2bdto0qRJFBcXx5w5c2Lq1Km/vSeZNm1albI8//zz0a9fv7jjjjuqdDzLr/feey923XXXmDFjRraj/MXUqVNjhx12iDfeeCPat2+f9n79+vWLF154ocrHt2jRIjbZZJNo165dNGvWLOrXrx/z5s2LGTNmxLhx42L06NGJrssVFRXRq1ev395P5rrtttsuCgsLK72P/vHHH8ePP/4Yq622WoaSAQAAAAAAQO7J/qcdAAAAlmLixImJa5s0aRJ169ZNS46HHnooHn300aXW1KlTJ/bbb7847LDDYocddoiGDRtWet7JkyfH0KFD48Ybb0wpz+zZs2PHHXeMTz75JKXjftW8efPYaaedonPnzrHBBhvEmmuuGc2bN4969epFYWFhzJ07N37++ecYP358vPvuu/HKK6/EO++8k9KOf7/uTLruuuumdWHil19+Gccdd1zKx9WpUycOOOCA6NOnT2yzzTaV7rj8008/xZNPPhm33XZbfPrpp0utPfXUU+PZZ59NOdOyZsSIEbHffvvFwoULq3yO9ddfP7beeuvo0qVLtG7dOtZee+1YYYUVokGDBhERsWDBgpg5c2b88MMP8e2338ann34aY8aMibfeeivxrttJLO17v2fPnokW0w0aNCh69uxZY5lqwoUXXljloQFFRUWxzTbbxJZbbhmdOnWKVq1axeqrrx4NGjSI4uLimD9/fsyYMSO+/vrr+OSTT+K1116L559/PmbPnp1Sn6effjrOOuusuOqqq6qUM4mKioo48sgj49tvv0352E022ST69esXe++9dzRv3nyptQsWLIhXX3017rrrrnjqqaeWulvna6+9FrfcckvKeZZlr776aqK6fN6Z/vrrr4+XX345fvzxx0prFy5cGEcffXSMHDkypk2bFn/7298S99lwww2rNXCnukaOHJnSIr7tt98+jWnIpvPPPz+mT5+eqHa99daLrbfeOs2JIi666KK4++67q3Rs/fr1Y8cdd4zu3bvHBhtsEG3bto3GjRtHvXr1flu0+eWXX8aHH34YL7zwQrz99tsp76hdVlYWRx11VLRs2dLjEel9PEpKSqJ3795VGvTWtGnT2HHHHWPjjTeOddZZJ9ZZZ51YaaWVokGDBtGgQYOoW7dulJSURElJSUyfPj0mT54cP/74Y3z11Vcxbty4+PDDD2Ps2LHVeh29OEv7WTp48ODo1atXpec4+uijY/DgwTUXiox6//3346KLLlpqzVprrRW9e/eOQw45JNZdd91Kz/nxxx/HwIED4+67747S0tLEWS699NI44ogjYs0114yIiEmTJsUBBxwQJSUlSzymbt26cfDBB8fhhx8e2223XaX3gKZPnx4PPfRQXHXVVfHNN98kzvbFF1/EHXfcEf369Ut8TDqUlZVF7969l/qYRES0bNky+vbtGwcffHC0bdt2qbXl5eUxcuTIuPfee+OBBx6IOXPmpJTpzjvvjG233TaOOOKIlI6jcoMHD17i9fXVV19N9Jp4u+22S/y+KVPGjBkT3bt3T/lewK/WXXfd2HHHHWOzzTaLddddN9Zcc81o2rRp1KtXL8rKymLOnDnx3Xffxbhx4+Ktt96K559/Pr766quUekydOjX23XffGDlyZDRu3LhKOZO4//77484770z5uGbNmkXv3r3jiCOOiI022qjS+rFjx8ZDDz0Ud911V0yaNGmJdQsWLIhevXpV6b5qpjVu3Dhat24d//3vfyutffXVV+Owww7LQCoAAAAAAADITQYHAAAAOW3UqFGJa9daa6205TjxxBOX+HcFBQXRu3fvOP/883/7wHtSzZs3j2OOOSb69OmTeJe+8vLyOPTQQ1MeGlBUVBQ9evSIvn37xtZbb73U3bsbN24cjRs3jnbt2sXuu+8eAwYMiG+++Sauv/76uOOOOxLtmB0RMX/+/Nh3331j9OjR0axZs5TyJlFaWhqHHnpo4jy/2m+//eLaa6+NVq1aJT5m1VVXjX79+kW/fv3i4YcfjtNPP32J/2YzZ85c6vfM8uDzzz+P/fffv0qLnVq0aBH9+vWLQw89NNZZZ52l1hYVFUWjRo2iZcuW0aVLl+jRo8dvf/fZZ5/FM888E0OHDq3SQrRl3cMPP1zpoqHF+XWh/EEHHRQrrLDCEut+XRi3+uqrxzbbbBP9+vWL+fPnx3/+85+4/PLLY9y4cYl7Xn311dG5c+c//PvWpGuvvTaGDRuW0jGtWrWKa6+9Nvbbb7/ExxQXF8euu+4au+66a4wbNy5OOeWUeP7555dYf9ZZZ0WLFi1SyrUse//99xPV5cuOiYvTpEmTuOOOO2LPPfdMVD969Oi47LLLYvTo0TF16tRExxQVFcW9994bRUVF1YlaLam8vissLIxtt902jWnIlqFDh8bAgQMT1x977LFpTPM/zz77bAwYMCDl41ZZZZU466yzomfPntGkSZPF1vz6+rp169ax2267xbnnnhvjx4+Pm266KW677baUFtsuXLgwevToEaNGjYpVV1015bxJLe+Pxy233JLSQuPCwsI48MAD4+STT44tttgiatWqtdT6evXqRb169aJJkyaLfV+yYMGCePvtt2PYsGHx7LPPxpgxY1L+b4A/O+KII5Y4vGrFFVeMyy+/PHr27JnS64SNNtoobr311jjllFPiiCOOSPyabd68eXHppZf+9rPguOOOix9++GGxtb/ed7noooti9dVXT5ytadOm0a9fv+jTp0+cc845ce211yY+9uKLL45jjjmm0iGD6XTTTTfFxx9/vMS/b9SoUVxwwQVx8sknJ/43KywsjC222CK22GKLGDBgQJxzzjlx1113pfR++cQTT4ytttoqpXsqLJ8mT54ce++9d8pDA5o2bRp9+vSJY445Jtq1a7fEutq1a0fdunVjxRVXjI033jgOOuiguOGGG+K9996Lq666Kp588snE39vjxo2Lww8/PJ555pmUsib19ddfp3yvsKioKP7xj3/EueeeG40aNUp8XMeOHeOSSy6Jc889N6666qq44oorYv78+YutHTlyZKXDSXLFhhtumGhwwPvvv29wAAAAAAAAAMu1Ja8SAQAAyLJJkyaltLA0nR9YXtJOqKuuumoMHz487rrrrpSHBvxeQUFBrLHGGolqzznnnJR3sz/wwAPj888/jwcffDC23XbbpQ4NWJK11lorrrvuuvjss89it912S3zcd999F6eeemrK/ZK45ppr4qOPPkpcX69evbj77rvjiSeeqNb3yyGHHBJjxoyJvfbaa4k1S/tw/7Ju9uzZsddee8WMGTNSOq5x48Zxww03xMSJE+O8886rdGhAZTp06BBnnHFGvPnmmzF+/Pi48MILY7XVVqvWOZcVo0ePjt69e6d0TOvWrePxxx+PUaNGxTHHHLPUoQFLUq9evejZs2eMHTs2rrjiikp3CP29fv36xS+//JJyz8p8/fXXce6556Z0TI8ePeLjjz9OaWjAn6277rrx3HPPxc0337zExUhz586N8ePHV7nHsqSkpCTxwJx8HhwQEbHHHntEz549E9cPGDAghgwZkrj+7LPPjo033jjlXDUplcEBbdu2jaZNm6YxDdnwzDPPRI8ePaKsrCxRfevWreP4449Pa6ZJkybFUUcdlfKgoZNPPjm++uqrOOWUU5a4SH5J2rRpE9dff318+umnsc0226R07M8//5zW3Z6X98ejvLw8brzxxsT1m222WXz++efxn//8J7baaqtKhwYkUVxcHDvssENcdtll8fHHH8e4cePioosuSvy+ERZnSfdYunfvHp999lkce+yxVR4utO6668Zrr70Wu+66a+JjHnzwwZgxY0Y88cQTMXTo0MXWrLzyyjFs2LC46667Uhoa8Ht169aNa665JqWBNT///HM88sgjVepXU5Z2X2GjjTaKUaNGRf/+/av8b7byyivHHXfcEc8880xKwx5nzZqV9p/L5L+ysrI44IADUhrCU1RUFP/85z9jwoQJcfXVVy91aMDSdOnSJR5//PF4/fXXUzrHs88+G4MHD65Sz8ocf/zxKQ1QWHPNNeONN96IK6+8MqWhAb9XXFwc559/fowcOXKpj0O+3MPcaKONEtWNHDkyzUkAAAAAAAAgtxkcAAAA5KynnnoqpYUqm222WRrT/FXHjh3jvffei27dumWs59tvvx1XXXVV4voVVlghHnnkkXj00UejTZs2NZJhrbXWimeffTYuueSSKCgoSHTMvffeGy+//HKN9P/Vjz/+GJdddlni+oYNG8YLL7yQ8mLpJWnatGkMGTIkI7vf5pt//OMfKS923nXXXePzzz+Pk08+OaXF5Em1atUqLrjggpg4cWLcd9990aFDhxrvkS8WLlwYRx999BJ3m1ucY489NsaMGRP7779/jWSoXbt2nHnmmfH6668nHubwyy+/xCmnnFIj/X/vtNNOS2l3vb///e/xyCOPVPmD+3924oknxtNPPx316tWrkfMtqz7++ONYuHBhotp8HxwQEXHdddclXhhXXl6e+Lwbb7xxnHPOOVWNVWNSGRzQsWPHNCYh0+bNmxfnnHNO7LvvvintKH/77bdH/fr105jsf69fpk2blri+Xr168cQTT8QNN9xQ7Z8Jbdu2jeHDh8c//vGPlI4bPnx43HvvvdXqvSTL++Px6quvJl7o2KNHj3jzzTdj3XXXrZHeS9K2bds4//zzY+LEifHUU0/FVlttldZ+LD/69OkTzz//fDRv3rza56pXr1489thjscEGGySqnzt3btxwww1x0kknLfbv11lnnfjggw9ihx12qHa2iIjjjjsupaFhqQwayKRtt9023nzzzWoP2/vV7rvvHm+88Ua0aNEi8TEvvfRS2nZmZ9lw9dVXx5tvvpm4vn379vH+++/HZZddFo0bN66RDFtvvXV88MEHKQ3969+/f0yePLlG+v9q6NChKd0XXW+99eKdd96JLl261Ej/9ddfP955552M3zuvaUnf63/00UexaNGiNKcBAAAAAACA3GVwAAAAkLPuuOOOlOpr6sOUSbRu3TqGDRuW0d0eFyxYEL179068QHDNNdeMt99+O3r06FHjWQoKCuKcc86J2267LfHwgNNPPz3lHUuX5rzzzou5c+cmqi0qKoqhQ4fGtttuW2P9IyIKCwtj4MCBcdhhh9XoefPZ888/H3fffXdKx5x++unx7LPPxqqrrpqmVP+vqKgojjzyyPjkk0/igQceWOJO78uyiy++OMaMGZOotqCgIG644Ya44447okGDBjWeZfPNN4/XX3898bX0wQcfTGnBcWXeeOONePLJJxPXH3PMMXH99dfXWP9f7bzzzvH444/XyO7Ey6r3338/Ud3qq6+e0m6puapJkyYpvw6qTFFRUQwePLjKO9LWlIULF8aECRMS1y/Pg16WJd99911ccskl0aZNm7jsssuirKws8bFnnHFGdO/ePY3pIl555ZV46KGHEtc3aNAgnn/++ZQWoVWmdu3a8a9//SsuvPDClI7r379/TJ8+vcZyRHg8IiJefPHFRHUdO3aMwYMHp2Xw1ZIUFhbG3nvvHW+++WZcccUVGevLsunwww+PO++8s0ZfhzZo0CAGDx6c+JwXXnhh/Pjjj3/5+hprrBHDhw+PNddcs8ayRURccMEFiXetfvvtt+Pnn3+u0f7V1alTp3j++eejYcOGNXreDh06xCuvvBIrrLBC4mP69++f0hArlh+ff/55Sj/Dd9xxx3jnnXcSPzdT0bBhw3j00UfjiCOOSFQ/bdq0uOSSS2qsf1lZWZx22mmJ61u2bBkjRoxIPGQxqaZNm8awYcOiffv2NXreTEr6/TF//vwYO3ZsmtMAAAAAAABA7jI4AAAAyEnPPvtsfPjhh4nr69WrF127dk1jov9XXFwcQ4YMSWkntppw3XXXxZdffpmodrXVVosRI0akfZfevn37xvnnn5+o9uOPP05pge7S/PDDD3H//fcnrr/uuuti++23r5Hef1ZQUBB33313bLrppmk5fz4pKyuLU089NaVjzj///LjqqquisDCztygKCwvj8MMPT/vuxbnmm2++iSuvvDJx/a233honn3xyGhNFtGnTJp577rnEC19SXUC4NKkstuvatWvccsstNdb7z3bbbTeL/5Yi6eCApLvb5oPdd989evXqVWPnO/fcc9OyECdVP/zwQ0oLzPJ5YcvypKKiIkpKSmLGjBnx3//+N1577bW4++67429/+1tsvPHGseaaa8Z5552X8uLLk08+OaWfW1V13nnnJa4tLCyMBx98MLbbbru0ZLngggvi2GOPTVw/derUGh9q4/GIeOuttxLV/etf/8rq68lMvydl2bLpppvG3XffnXgYYCo6deoUhxxySJWPr1u3bjz++ONpGdZYu3btuPzyyxPVlpeXx5AhQ2o8Q1WttNJKMWTIkLRddzp06BAPPPBA4vpx48bV2H0eli2nnHJKlJSUJKrt1q1bPP3009G4ceO05alVq1YMGjQodtxxx0T1d95552IHmlTFE088EV999VWi2jp16qT1nnPjxo1j6NChaX2s02nttddOPNwk6T0EAAAAAAAAWBYZHAAAAOScuXPnprz4eNddd03LbtiLc9lll2V8YeKMGTPi6quvTlRbt27dGDp0aLRu3TrNqf7nggsuSLwLbNIP51fmhhtuiIULFyaq3XnnnePEE0+skb5LUlxcHPfdd19GdxrNRffcc0988cUXiev79u0bF110URoT8WcXXnhhlJaWJqrt379/HH/88WlO9D/rr79+3H777Ylqn3766fj000+r3fOzzz6L559/PlFtvXr14r777os6depUu+/S9O/fP7bddtu09shXSf/NM/WzL1Ouu+66WH311at9nk6dOsXZZ59dA4mq77vvvkupvqZ32mTxWrVqFQUFBVX+U1hYGMXFxdG0adNo27ZtdOvWLY455pi45ZZb4uOPP045T926deOKK66IG264IQ3/tX/0yiuvxDvvvJO4/uyzz4599tknjYkibrnllthss80S1994440xa9asGunt8fifJK9p11hjjdhpp52q1QeypU6dOvHggw+m9T3sP/7xjyofe/7550fnzp1rMM0f7bbbbtGhQ4dEta+99lracqTq5ptvTsswhd/ba6+9ok+fPonrr7322jSmIR+9/vrr8dJLLyWqbdOmTQwZMiTq1auX5lT/Gxryn//8J1ZZZZVKaxcsWBDXXXddjfS95pprEtdecMEFaR9Mus466+Tt87agoCDWXnvtRLWffPJJesMAAAAAAABADjM4AAAAyDknnHBCjBs3LqVjDj300DSl+aP27dvHSSedlJFev/evf/0rpk+fnqj2yiuvTPuHTH+voKAg7rrrrkQ73n3wwQdVWjz2ewsXLoy77747UW2dOnUSL0aurg4dOsTpp5+ekV65qKysLC6++OLE9Z07d44bb7wxjYn4s6+++iruv//+RLWdO3eOK664Is2J/ujwww+PPffcM1Ft0mvA0tx+++1RUVGRqPacc86JddZZp9o9K1NQUBB33HFH1K5dO+298s3EiRMT1dXEIvtc0rhx47jzzjurdY46derE4MGDc+b76vvvv0+p3m7ay5+uXbvGqFGj4swzz8xIv1QWTm200UZx/vnnpzHN/xQVFcXgwYMTD6yZMWNG3HXXXTXS2+MRMW/evJg6dWqldV26dInCQr9mIz/1798/2rVrl9Yem266abRv3z7l49ZZZ52MvLc+8sgjE9W99dZbaU6SzM477xwHH3xwRnpdc8010axZs0S177zzTowePTq9gcgr5557bqK6WrVqxSOPPBKNGzdOc6L/t+KKK8bNN9+cqPa+++5LPLR0SUaNGhUjR45MVNu+ffs444wzqtUvqT59+sQ222yTkV41Lel7/gkTJqQ5CQAAAAAAAOQun2gCAAByRllZWfz9739PvLD1V2uvvXbsv//+aUr1RxdccEHGF94tXLgwBg4cmKh2s802y8pggzXXXDP+9re/Jaqt7oLfF198MaZNm5ao9thjj41WrVpVq18qTj/99MQfrl/WPP3004l3ka5du3bcc889ad+9nT+69dZbo6ysrNK6WrVqxcCBA7OyyPiKK65ItADvgQceiNLS0ir3KSsri0ceeSRRbfPmzeOUU06pcq9UtWvXLo4++uiM9csHc+bMSbSAM2LZGxwQ8b8dcXv37l3l488777zYYIMNajBR9fz4448p1RscsHyoU6dOHHroofHWW2/F22+/nXgX6Or66aefEu+IGxFx/fXXR1FRURoT/b+OHTsmfn0dETF48OBq9/R4/M/s2bMT1bVs2bLKPSCbGjVqFKeddlpGeu2xxx4pH3POOedk5NqSNNt3330XU6ZMSXOayl122WUZ69WkSZOUFjD/+9//TmMa8snHH38cb7zxRqLav//979GpU6c0J/qrAw88MDbffPNK6yZPnhxPP/10tXql8twYMGBARu/DZPKaUpOSvv765ptv0pwEAAAAAAAAcpfBAQAAQE6YPHly7LzzzlXagfy0006LWrVqpSHVH62xxhpx4IEHpr3Pnw0ZMiQmT56cqPbyyy/P2q6Xp556aqIP9z/55JPV6vPQQw8lqissLMzILoW/t8IKK0S/fv0y2jNX3H777YlrTz755Fh//fXTmIY/Kykpifvuuy9R7SGHHBKbbLJJmhMtXseOHRMt4Pnll18SL0ZYnOHDh8ekSZMS1Z500knRoEGDKveqirPOOisKCgoy2jOXTZw4MXHtsrqI87rrrosVV1wx5eM23XTTOOuss9KQqOrmzJmTuLZ27drRpEmT9IUhqxo0aBCnnXZavPLKKzF9+vT497//HVtuuWVGMzzwwAOJhupE/G+n527duqU30J+cffbZ0ahRo0S1n3zySYwaNapa/Twe/5N0OFE2hixBTTjiiCMyNvBu2223Tal+pZVWisMPPzxNaf5ogw02iKZNmyaq/eKLL9KcZum6d+8em266aUZ7nnjiiYmvuQ8//HBUVFSkORH54I477khU16hRozjnnHPSnGbJzjzzzER11bmHWVFREf/5z38S1a6zzjpxwAEHVLlXVWy99dax9dZbZ7RnTTA4AAAAAAAAACpncAAAAJBV8+fPj9tuuy022WSTGD58eMrHb7DBBtG3b980JPurww8/PCMDCv7snnvuSVS32WabxU477ZTmNEu2yiqrxF577VVp3ffffx9jx46tUo/y8vJ44YUXEtXutttusdZaa1WpT3Ucd9xxWfk+yaZJkyYl3p22Xr16iT+gTc0ZMmRITJs2LVFtthcZH3vssYnqkl4LFufZZ59NVFe7du3o06dPlftU1TrrrJPV63muSeUD/6uvvnoak2TP+++/n/g5/KuioqIYPHhwzi1sXbBgQeLa4uLiNCYh2+bOnRs33HBDXHLJJXHrrbfG+PHjM57hiSeeSFz7j3/8I41JFm/FFVeMo48+OnF9Kv891T1+WX48kl57vvvuuyqdH7ItledRdaW6m/ghhxySaCBhTUmab9y4cWlOsnTHH398xns2bNgwjjzyyES13333XXzyySdpTkSuKykpiQcffDBRbd++fTM2wGRx9t5772jevHmldS+99FKVh2J8/PHH8f333yeq7du3b1aGB55wwgkZ71ldSd/zz5w5M6ZPn57mNAAAAAAAAJCbcutTowAAwHKhtLQ0Pvjgg3jxxRfjtttuiylTplTpPLVq1Yrbb789YwviDjzwwIz0+b05c+YkHqhwzDHHpDlN5fbee+9EC3Reeuml6NixY8rn//jjjxMvnMzULoV/tsYaa8S2224bI0aMyEr/bHj22WcTf5D6qKOOSvThbGrWU089lahuiy22iPXXXz/NaZaue/fuUa9evZg/f/5S61566aW4+uqrq9Qj6fNzhx12iFVXXbVKParriCOOiJdffjkrvXPNxIkTE9cui4MDZs+eHX369El5wcrChQvj559/zvpz+s8qe27/Xt26ddOYZOmeffbZ+OqrrzLas3fv3rHCCitktGe2LVy4MEaMGBEjRoyIM888M/bdd98466yzonPnzmnvPXPmzHj//fcT1bZq1Sp22WWXNCdavBNOOCFuvvnmRLUvv/xyXHLJJVXq4/H4f02bNo1atWpFWVnZUuuGDRsWCxcuzOgiZ6iuVVZZJTbffPOM9Vt99dWjQYMGMXfu3ET1e+65Z5oT/dG6664br7zySqV1P/zwQwbSLN4KK6yQ8cflV4cddljceuutiWpHjBgRG264YZoTkctee+21mDlzZqLabN/DrF27duy+++4xePDgpdZNnjw5Ro8eHZtssknKPZLedygoKIjDDjss5fPXhP322y/q168f8+bNy0r/qlhjjTUS106cODGaNm2axjQAAAAAAACQmwwOAAAAEpk1a1Zcf/31KR9XUVERs2bNiunTp8e0adPi22+/jZEjR6a0aGxJrrzyythyyy2rfZ4kmjZtmvJOeTVh2LBhUVpaWmldYWFh9OjRIwOJlq579+6J6kaOHFml8yf90G1RUVHsvvvuVepRE/bdd9/lanDAM888k7i2Z8+e6QvCYpWXl8dLL72UqPaQQw5Jc5rKFRcXx9Zbb13povmxY8fG/Pnzo169eimd/5dffkm8G+Y+++yT0rlr0p577hm1a9eORYsWZS1Drvj5558T1RUVFUWjRo3SnCbzTj/99Pjmm2+qdOyxxx4bn3zySTRs2LCGU1VdvgwOGDRoUDz++OMZ7bnvvvsud4MDfq+8vDyeeOKJeOKJJ6J79+5x2223RZs2bdLWb/jw4ZUuDP/VAQcckJVdYCMiOnToEB07doyxY8dWWvvBBx/E9OnTq7RAyuPx/2rXrh0tW7as9No7derUuPvuu7OyEzhU1Q477JDx5+/aa6+d6DlbVFQU2267bQYS/b9WrVolqps8eXKakyzZrrvuGnXq1MlK765du0bz5s0T/fePGDEi/v73v2cgFbnqueeeS1S38cYbR7t27dKcpnLdu3evdHBAxP/uYaZzcMBmm20Wq622Wsrnrwn16tWLXXbZJZ588sms9K+KZs2aJa5Nei8BAAAAAAAAljUGBwAAAIlMnz49/vGPf2Q7xm/69OkT/fv3z1i/rbfeOiuLY1588cVEdZtvvnlKH5xMl9VWWy1atGhR6QczR48eXaXzf/DBB4nqNttss2jcuHGVetSEnXfeOWu9s+HVV19NVNeqVavYYost0huGv3j//fdj6tSpiWp33XXXNKdJZtNNN610cEBZWVmMGTMmunTpktK5R40alXjn9p122imlc9ekZs2axaabbhrvvfde1jLkiqQ71KY6RCIfDBs2LAYOHFjl4ydOnBhnnnlm3HLLLTWYqnpSGYZRu7bb18url19+OTbeeOO48cYbo1evXmnp8fbbbyeu3XfffdOSIan9998/0aLb8vLyePfdd2O33XZLuYfH44823njjRENbzjzzzOjSpUuVFhRCNmRjIOJKK62UqK5du3YZfz238sorJ6r75Zdf0pxkybL5nqSwsDB22GGHePjhhyut/fDDDzOQiFyW9B5mLt13SCLd9zCz+RyP+N89zHwaHJDKz4mk9xIAAAAAAABgWeOTlwAAQN455phj4o477shoz4022iij/X6VdMFopnflW5oOHTpUOjhg3LhxsWDBgiguLk7p3El3Cd9yyy1TOm9Na9euXTRt2jSmT5+e1RyZMH78+MT/ncvbQIVckfQ60rx585zY9S/if9eRJKoyOCDpdWSllVaKddddN6Vz17SuXbsaHBDL7+CA2bNnR58+fap9nttuuy0OOuig2G677WogVfXVrVs3cW1JSUkak/B75513Xo0MoSotLY2SkpKYNm1aTJ48OcaPHx9ffvllzJgxI+VzzZkzJ3r37h0vvfRS3H///TU+SOLjjz9OVFevXr3YfPPNa7R3qrp16xYXX3xxotoxY8ZUaaG8x+OvPZ566qlK62bNmhXdunWL++67L/bZZ5+U+0Cmrb/++hnvmfTn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23HHHaOwsGq/9vF45K6kCzGr+xou11/TwvLszjvvzOm+RUVFiXdXX5rVVlstUd3YsWOr3StV8+bNy9ri7oj8uEbvt99+ieoWLlwY999/f5rTZN92220XRUVFiWqz9Ry/4447stK3qgwOAAAAAAAAgGTy/xNTAAAAy7AGDRrErrvumqj2qaeeiokTJ6Y3UA7o0aNHorqff/45HnnkkTSn+aubbrop4z2zrWvXrrHqqqsmqh05cmQMGzYszYkyq2nTponqsrXALiLigAMOSFRXUlISAwcOTHOa7Nt///2jVq1aiWpvvPHGNKf5qwcffDCmTp2a8b65rmvXronqcm1wwEknnRSTJk1KVFu3bt0YNGhQ4u/PVN1+++3RpEmTRLXz58+PPn36JN5ltqqKi4vjoosuSumYY445Jn7++ec0JSJb3n333ZR2EN5www2jYcOGVe5XUFAQu+yyS6LaBQsWZG1I16233pq4Nun7hsXxeOSutdZaK1HdvHnzqtUnH17TwvJq0KBBGV8Q/uabb8bo0aMT1e6yyy6xwgorVLtnu3btEtVNmjQpJkyYUO1+qXjkkUeyuig/H67R2267beIhRDfffHOUl5enOVF2rbDCCrHzzjsnqh06dGh88803aU70RzNmzMirAQ4VFRXxySefJKrdYost0pwGAAAAAAAAcpvBAQAAADmub9++ierKysri7LPPTnOa7Dv44IOjoKAgUe2AAQOirKwszYn+30svvRSvv/56xvrlilq1akXv3r0T15911lnL1AfEV1555UR133//fZqTLNkee+wRLVu2TFR7zTXXVHvH2ly3yiqrxPbbb5+odtiwYfHGG2+kOdH/Ky0tjYsvvjhj/fJJ0gWt7777bkav/UvzxBNPxEMPPZS4/qKLLor27dunLc9qq60W1113XeL6119/PW655Za05fnVUUcdFR07dkxc/9NPP0WPHj1i4cKFaUxFpl199dUp1Xfr1q3aPQ877LDEtdddd13Mnz+/2j1T8dZbb8WIESMS1RYXFyceFLQkHo/clHQxbp06darVJx9e08LyaurUqXHDDTdktOd5552XuDaVnx9Ls+aaa0b9+vUT1b788ss10jOJioqKuP766zPWb3GSXqMnTZoUixYtSnOaxatdu3b06dMnUe24cePirrvuSnOi7Dv00EMT1S1atCgGDBiQ5jR/dNVV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QYO0du1aw2sseT9lVOPGjQ3/LBgSEqKdO3datf/fvffee/rpp59M299SRp+jly9frtOnT5uc5uGKFy+u119/3XD9xIkTNXjw4Cz1udrmzZvVvXt3q+xVuHBhDRo0yHD9tGnTTBuKMWXKFH3yySem7G2mffv26e7du+nWPfnkkypQoIANEgEAAAAAAAAAAABZG4MDAAAAACCbaNmypZ5//nnD9du2bVPdunV14MAB80IZEBYWpu7du6tcuXKaPn26EhMTrbLv008/bdGVRFeuXKn27dtb9YrE69evV/PmzQ398urjYuzYsSpcuLDh+uPHj6t27drav3+/ian+a926dapbt67VHg8NGzY0VLd582aNGjXKKj0zwtXVVdOmTZODg4Oh+vv376t169YaP368UlNTTU73cFevXtXo0aNVvHhxvfbaa7p06ZJV9s2ZM6fGjh1ruP7mzZtq0qSJwsLCrNJf+uOQeatWrbRhwwar7fko8/LyMvT9FhUVpT179tgg0X+99NJLun79uqFaV1dXzZw5U05OTianerCpU6fKy8vLUO39+/f14osvmpxIKlu2rH7++WdDAyL+7uzZs6pbt65effVVq77WZ8b69et18uRJe8fIco4fP64+ffooMDAwQ8Movv76a4sfH+n54IMP5OfnZ7h+1qxZ6t+/v1JSUqya49q1a2rcuLHOnj1reE2rVq3UqlUrq+Z43O+P+Ph4TZs2TWXLllX37t2t+rpviQ0bNmjMmDGGan18fFS/fv1M9zT6M+3t27fVs2dPxcbGZronAMukpKSod+/emjRpktX2jI+PV58+fTR16lTDa/z8/DRixAirZfiTi4uLOnXqZKg2OTlZPXv2VGRkpFUzpKamaujQofr000+tum9mGX2OTkxMVPfu3XXr1i2TEz3c8OHDVa5cOcP1EyZMULt27XTjxg0TU6UtMTFRCxYsUEBAgBo3bmzVIYojR46Ur6+v4fphw4bp3XffterPVp999pkGDhxotf1sadOmTYbq2rVrZ3ISAAAAAAAAAAAAIHtgcAAAAAAAZCMTJkxQqVKlDNefPn1atWvX1vDhwy26SmdmXb9+Xd99952qVq2qwMBALViwwJQrh33zzTdydXU1XL9u3TpVr14904d/4uPj9eGHH6ply5a6d+/eA2vc3Nwy1SO78vHxseiwgSRduHBBAQEBGjdu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qV27tg4cOKB27dqZ3svBwUEDBgzQxo0blTdvXtP7Zdbx48f166+/plv38ssvy8nJyQaJAAAAAAAAAAAAgOyDwQEAAAAA8Ah57rnndOLECY0dOzZLHOxwdHRU48aNNXXqVF25ckXTpk2zyS9dOzs765NPPtHOnTvVoEEDU3rkzp1bEydO1ObNm1W8eHFTejyKqlevrh07dmjq1Kl2+8V2BwcHNWnSRAsWLFCuXLlM65M/f35NmzZNERER+vTTT1W7dm27HbKzRJkyZbRy5UqtX78+yxzILVGihN59992/fnG8UaNGNunbuHFjHT16VK+//ropAyAcHBzUo0cPHTt2TF27drX6/o+DV199Nd2aa9euaenSpVbvPXDgQN28edNQraurq2bOnJktDjQ4OjpqxowZcnNzM1QfGRmpl19+2eRUD9a4cWPt2rVL27ZtU7du3exyJdq0ODo6qlGjRpo5c6YuXbqkL774Qk888YS9Y2UJPj4+atu2rb766iudP39eu3btUnBwcJYZGPB3np6emjJlin799VdVrVrVZn0dHBzUtWtXhYeHa+DAgTbrm57H4f4YPHiwPvroI9WtW9cmg8iMaNq0qXbu3KnPP//c5gMTXF1d9f777+vixYuaMWOG2rRpY/g1AoD1eXh4aOrUqVq/fr1Kly5tSo/ixYtr/vz5WrZsWZb4bEmSWrdurd27d5v+HrVo0aJatmyZJk2alOV+tnwQR0dHDRw4UOfOndOPP/6oLl26yNPT096x0uXq6qoRI0bo1KlT6tevX5YYuJgzZ05169ZNy5cv1/nz5zVs2DCb9PXz89Py5cs1b9480z5fLFu2rDZu3KjJkyfLw8PDlB7W9v3336db4+HhoRdeeMEGaQAAAAAAAAAAAIDsJev/azcAACZLTU21dwQAAKzKzc1N7777roYMGaJ58+ZpwoQJ2rt3r836e3h4qHHjxmrbtq2efvppFShQwGa9/61WrVraunWrVq5cqW+++Ubr1q3L9Gt/sWLFNGTIEL344ovZ4pexsyIHBwf169dPffr00bx58/TVV1/pwIEDpvctVKiQevbsqf79+9v0Ss8FCxbU22+/rbffflt3797Vzp07deDAAZ06dUrnzp3T9evXFRkZqaioKCUkJCgxMTFL/IzatGlT7dq1Szt27NB3332nxYsXKz4+3mb9q1atqjZt2qhT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AAAAAAAAAAAAAAAA2RiDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyMYYHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQDbG4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALIxBgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJCNMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBsjMEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkYwwOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgG2NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2RiDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyMYYHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQDbG4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALIxBgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJCNMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBsjMEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkYwwOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgG2NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2RiDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyMYYHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQDbG4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALIxBgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJCNMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBsjMEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkYwwOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgG2NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2RiDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyMYYHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQDbG4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALIxBgcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJCNMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBsjMEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkYwwOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgG2NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2RiDAwAAAAAAAAAA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K7Ry5Upt375dsbGxNskg/XGI+Pnnn9crr7yiJ554wmZ90+Pj46PPPvtMw4YN08yZMzVp0iSdOHHCZv1z5cql5s2bq127durQoYNy585ts96Puueff17Dhg2z+Pu2VKlSatCggUmpzFW6dGktXLhQERERmjhxombOnKnIyEib9S9atKhat26tDh06qHnz5sqRI4fNev+dk5OTXnrpJfXq1UuTJ0/W5MmTde7cuUzv27x5cw0dOtS0oTIAAAAAAAAAAAAAAAAAAAAAsjeH1NRUe2cAgMeCg4NDPUnb//5n27dvV7169eyUyHoiIiL+c/DP3d1dxYsXt08gAIDdpKSkaMuWLVq1apW2bt2qffv2KTEx0Sp758+fX/Xr11ejRo30zDPPqHDhwlbZN7u4ceOGVq1apRUrVmjXrl26ePFiumscHBxUpkwZNW/eXK1atVKLFi3k4uJig7TpS0xM1IEDB7Rz507t3LlTO3bssMrB2r8rWrSomjVrpo4dO6ply5Zyc3Oz6v5mOXTokJYuXarly5dr//79SkpKstreefPmVe3atRUYGKjAwEDVrv3/2Lv3IL2v+r7jn7Na7VpXW7KRZWIbyU5s42BjbGwMrXFwiAOBNCSkpNAE0naaSwlhmkvbtGlxSJohk2mThozJvSGNCWlDE6flEi4NlwaCAdtQwAmyZVsmRr7pttJKWmn39A8LD4NW+1vtPpc9u6/XzA4zzznP7/tdMbb/eHbfui6jo5qC9Mfx48fz0Y9+NLfffnve+973ZseOHT17dikl27dvz/XXX58bbrghL3zhC3P55Zf37Pm9NDMzkw9/+MN5z3vek/e///354he/mOnp6c73bd26Nc997nPzspe9LC9/+ctz/vnnD2BbAAAAAJYSn8UDAAAAAKerlDLsFZa9W265ZdgrLHv+kliWok984hN5wQte8PUvv6DW+olh7HMqwgEAAyIcAMBKdPjw4dxxxx255557snPnzuzcuTP3339/9u3bl8nJyRw6dCiTk5MZHR3N2rVrs27duqxbty5bt27NRRddlIsvvjgXX3xxrr766lxyySXD/naWlImJidxzzz3ZvXt3JiYmMjExkZmZmaxfvz4bNmzItm3bcumll2bt2rXDXnXe9u7dm3vvvTf33ntv7rvvvtx333154IEHsm/fvkxMTOTgwYM5ePBgDh8+nFWrVmV8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AAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRsdNgLAAAAAAAAAAAAAADAQpRShr3CsldrHfYKAAAAwDyMDHsBAAAAAAAAAAAAAAAAAAAAYOGEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkHAAAAAAAAAAAAAAAAAAAAQMOEAwAAAAAAAAAAAAAAAAAAAKBhwgEAAAAAAAAAAAAAAAAAAADQMOEAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAAAaJhwAAAAAAAAAAAAAAAAAAAAADRMOAAAAAAAAAAAAAAAAAAAAgIYJBwAAAAAAAAAAAAAAAAAAAEDDhAMAAAAAAAAAAAAAAAAAAACgYcIBAAAAAAAAAAAAAAAAAAAA0DDhAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAAAGiYcAAAAAAAAAAAAAAAAAAAAAA0TDgAAAAAAAAAAAAAAAAAAAICGCQcAAAAAAAAAAAAAAAAAAABAw4QDAAAAAAAAAAAAAAAAAAAAoGHCAQAAAAAAAAAAAAAAAAAAANAw4QAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAAAABomHAAAAAAAAAAAAAAAAAAAAAANEw4AAAAAAAAAAAAAAAAAAACAhgkH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wMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABrZ30QMAAAAAAKvtaU972qJHWHrnnnvuokcAAAAAAAAAAAAAYI6OWvQAAAAAAHAkqyqfOX8AAAAAAAAAAAAAgMMjHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAA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AAAAAAAAAGDnhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAIDGhAMAAAAAAAAAAAAAAAAAAACgMeEAAAAAAAAAAAAAAAAAAAAAaEw4AAAAAAAAAAAAAAAAAAAAABo7uOoBAAAAYFUuuuiiVY+w71144YWrHgEAAAAAAAAAAAAAAPa9A6seAAAAAAAAAAAAAAAAAAAAANg54QAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAAAGhMOAAAAAAAAAAAAAAAAAAAAgMaEAwAAAAAAAAAAAAAAAAAAAKAx4QAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAAAGhMOAAAAAAAAAAAAAAAAAAAAgMaEAwAAAAAAAAAAAAAAAAAAAKAx4QAAAAAAAAAAAAAAAAAAAABoTDgAAAAAAAAAAAAAAAAAAAAAGhMOAAAAAAAAAAAAAAAAAAAAgMaEAwAAANbUGMOvmX8BAAAAAAAAAAAAAADsB8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAGMxptEAALguSURBVAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAAAAAAAAAAAAAA0JhwAAAAAAAAAAAAAAAAAAAAADQmHAAAAAAAAAAAAAAAAAAAAACNCQcAAAAAAAAAAAAAAAAAAABAY8IBAAAAAAAA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SZIkSZIkSZIkSZIkSZIkSZIkSZI0xmwcIEmSJEmSJEmSJEmSJEmSJEmSJEmSJEnSGLNxgCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJY8zGAZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkjTEbB0iSJEmSJEmSJEmSJEmSJEmSJEmSJEmSNMZsHCBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJ0hizcYAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSWPMxgGSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJI0xGwdIkiRJkiRJkiRJkiRJkiRJkiRJkiRJkjTGbBwgSZIkSZIkSZIkSZIkSZIkSZIkSZIkSdIYs3GAJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEljzMYBkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiSNMRsHSJIkSZIkSZIkSZIkSZIkSZIkSZIkSZI0xmwcIEmSJEmSJEmSJEmSJEmSJEmSJEmSJEnSGLNxgCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJY8zGAZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkjTEbB0iSJEmSJEmSJEmSJEmSJEmSJEmSJEmSNMZsHCBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJ0hizcYAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSWPMxgGSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJI0xGwdIkiRJkiRJkiRJkiRJkiRJkiRJkiRJkjTGbBwgSZIkSZIkSZIkSZIkSZIkSZIkSZIkSdIYs3GAJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEljzMYBkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiSNMRsHSJIkSZIkSZIkSZIkSZIkSZIkSZIkSZI0xmwcIEmSJEmSJEmSJEmSJEmSJEmSJEmSJEnSGLNxgCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJY8zGAZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkjTEbB0iSJEmSJEmSJEmSJEmSJEmSJEmSJEmSNMZsHCBJkiRJkiRJkiRJkiRJkiRJkiRJkiRJ0hizcYAkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSWPMxgGSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJI0xGwdIkiRJkiRJkiRJkiRJkiRJkiRJkiRJkjTGbBwgSZIk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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 17, + "source": [ + "onc_plot_roc(\n", + " y_true=calibrated_results.y, \n", + " y_pred=calibrated_results.p_calibrated, \n", + " model_name='xgb_imputed');" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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gikOAAAAAAAAAAAAAAAAAAAAgAqmOAAAAAAAAAAAAAAAAAAAAAAqmOIAAAAAAAAAAAAAAAAAAAAAqGCKAwAAAAAAAAAAAAAAAAAAAKCCKQ4AAAAAAAAAAAAAAAAAAACACqY4AAAAAAAAAAAAAAAAAAAAACqY4gAAAAAAAAAAAAAAAAAAAACoYIoDAAAAAAAAAAAAAAAAAAAAoIIpDgAAAAAAAAAAAAAAAAAAAIAKpjgAAAAAAAAAAAAAAAAAAAAAKpjiAAAAAAAAAAAAAAAAAAAAAKhgigMAAAAAAAAAAAAAAAAAAACggikOAAAAAAAAAAAAAAAAAAAAgAqmOAAAAAAAAAAAAAAAAAAAAAAqmOIAAAAAAAAAAAAAAAAAAAAAqGCKAwAAAAAAAAAAAAAAAAAAAKCCKQ4AAAAAAAAAAAAAAAAAAACACqY4AAAAAAAAAAAAAAAAAAAAACqY4gAAAAAAAAAAAAAAAAAAAACoYIoDAAAAAAAAAAAAAAAAAAAAoIIpDgAAAAAAAAAAAAAAAAAAAIAKpjgAAAAAAAAAAAAAAAAAAAAAKpjiAAAAAAAAAAAAAAAAAAAAAKhgigMAAAAAAAAAAAAAAAAAAACggikOAAAAAAAAAAAAAAAAAAAAgAqmOAAAAAAAAAAAAAAAAAAAAAAqmOIAAAAAAAAAAAAAAAAAAAAAqGCKAwAAAAAAAAAAAAAAAAAAAKCCKQ4AAAAAAAAAAAAAAAAAAACACqY4AAAAAAAAAAAAAAAAAAAAACqY4gAAAAAAAAAAAAAAAAAAAACoYIoDAAAAAAAAAAAAAAAAAAAAoIIpDgAAAAAAAAAAAAAAAAAAAIAKpjgAAAAAAAAAAAAAAAAAAAAAKpjiAAAAAAAAAAAAAAAAAAAAAKhgigMAAAAAAAAAAAAAAAAAAACggikOAAAAAAAAAAAAAAAAAAAAgAqmOAAAAAAAAAAAAAAAAAAAAAAqmOIAAAAAAAAAAAAAAAAAAAAAqGCKAwAAAAAAAAAAAAAAAAAAAKCCKQ4AAAAAAAAAAAAAAAAAAACACqY4AAAAAAAAAAAAAAAAAAAAACqY4gAAAAAAAAAAAAAAAAAAAACoYIoDAAAAAAAAAAAAAAAAAAAAoIIpDgAAAAAAAAAAAAAAAAAAAIAKtibrAMDKlSTJhojYFxEbIqIhIvIRMRwRgxHRm6bp1Qzj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VEnmsGHD0tDQkH322aeSPAAAAOhshgMAAAAAAHhZLS0t+f73v58vf/nL2b59e7vzBg4cmE984hN505velKIoKmgIAAAAAABAT7Z+/frMmTMnTz75ZCV5tbW1mThxYiZMmJCamppKMgEAAKArMBwAAAAAAMBftG7dulx22WVZsGBBJXmTJk3KpZdemgMOOKCSPAAAAAAAAHqusizz0EMPZdGiRdm2bVslmfvtt18aGhoydOjQSvIAAACgKzEcAAAAAADAn1m0aFEuueSSrF27tt1Z/fv3z9lnn513vOMdvrUFAAAAAACAVr344ouZPXt2nn766Ury+vTpk0mTJuXoo49OURSVZAIAAEBXYzgAAAAAAID/tn379nzjG9/Id77znZRl2e68Y489NjNnzszBBx9cQTsAAAAAAAB6uueeey633XZbmpubK8kbMWJE6uvrM2TIkEryAAAAoKsyHAAAAAAAQJJk9erVufjii3Pfffe1O6tv3775yEc+kve+972pqampoB0AAAAAAAC9wbBhw7LPPvtkzZo17crp27dvpkyZkiOOOCJFUVTUDgAAALoun9YEAAAAACC//e1vc+qpp1YyGjB+/Ph8//vfz/vf/36jAQAAAAAAAOySoijS0NCQ2traNmeMHDky73znOzN+/HijAQAAAPQafTq7AAAAAAAAnWfr1q35/Oc/n3/7t39rd1ZtbW1OP/30nHbaaenTx28/AwAAAAAA0DZ77bVXJk6cmDvvvHOX3uvXr1+mTp2aQw891GAAAAAAvY5PbgIAAAAA9FIrVqzIBRdckOXLl7c7a+zYsbn88stzxBFHVNAMAAAAAACA3m7ChAl59NFH89xzz+3U+dGjR2f69OkZMGBABzcDAACArslwAAAAAABAL1OWZW677bZ89rOfzdatW9uVVVNTk7/7u7/Lhz/84dTV1VXUEAAAAAAAgN6upqYmDQ0NufXWW9PS0vKy5wYMGJDp06dn9OjRu7EdAAAAdD2GAwAAAAAAepENGzbk6quvzq9+9at2Z40YMSJXXXVVjj322AqaAQAAAAAAwJ8aNmxYJkyYkLvvvvsvPj/ssMMyderU9OvXbzc3AwAAgK7HcAAAAAAAQC/xwAMP5MILL8zq1avbnfXa1742F154YfbYY48KmgEAAAAAAMBfNnHixDz22GN5/vnn//tngwYNSn19fUaOHNmJzQAAAKBrMRwAAAAAANDDtbS05Hvf+16+/OUvp7m5uV1Z/fr1yyc/+cn8zd/8TYqiqKghAAAAAAAA/GW1tbVpaGjIbbfdlrIsM378+Jx00kmpq6vr7GoAAADQpRgOAAAAAADowdatW5fLLrssCxYsaHfW2LFj8+lPfzpjxoypoBkAAAAAAADsnP322y+TJ0/OvvvumxEjRnR2HQAAAOiSajq7AAAAAAAAHWPhwoX527/920pGA97+9rfnpptuMhoAAAAAAADADm3evDkLFixIc3NzpbkTJkwwGgAAAAA70KezCwAAAAAAUK3t27fna1/7Wr773e+mLMt2ZQ0ePDiXXHJJXvnKV1bUDgAAAAAAgJ6oLMssX7488+fPz5YtW9KnT59MmjSps2sBAABAr2E4AAAAAACgB1m9enUuuuii3H///e3OOvbYY3P11VfngAMOqKAZAAAAAAAAPdXGjRszZ86cPP744//9s3vuuSejR4/OPvvs04nNAAAAoPeo6ewCAAAAAABU4ze/+U1OPfXUdo8GFEWRv//7v883vvENowEAAAAAAAC8rLIs8/DDD+dHP/rRn4wG/Nez2bNnp6WlpZPaAQAAQO/Sp7MLAAAAAADQPlu3bs3nPve53HLLLe3OGjZsWK688spMnjy5gmYAAAAAAAD0VOvXr09jY2NWrVr1smfWrl2be++9N8cff/xubAYAAAC9k+EAAAAAAIBubMWKFTn//POzYsWKdmedfPLJufzyy7P33ntX0AwAAAAAAICeqCzLPPDAA7nzzjuzffv2Vs8vXrw4hxxySIYOHbob2gEAAEDvZTgAAAAAAKAbKssyP/nJT3Lddddl69at7cqqra3NWWedlfe+972pqampqCEAAAAAAAA9zQsvvJDZs2dnzZo1O/1Oc3NzZs+enTe/+c0piqID2wEAAEDvZjgAAAAAAKCb2bBhQ66++ur86le/anfWgQcemGuuuSZHHXVUBc0AAAAAAADoiVpaWnLvvfdm8eLFaW5u3uX3n3nmmTzwwAM55phjOqAdAAAAkBgOAAAAAADoVh544IFceOGFWb16dbuzXvva1+bCCy/MHnvsUUEzAAAAAAAAeqK1a9dm9uzZee6559qVc+edd2bUqFEZMmRIRc0AAACA/8lwAAAAAABAN9DS0pKbb745X/nKV9r0LS7/U79+/fLJT34yf/M3f5OiKCpqCAAAAAAAQE/S3NycxYsX5957701LS0u787Zv356lS5fmxBNPrKAdAAAA8P8yHAAAAAAA0MWtW7cul1xySRYuXNjurEMPPTTXXHNNxowZU0EzAAAAAAAAeqJnnnkms2fPzvPPP19JXv/+/TN16tSMHTu2kjwAAADgzxkOAAAAAADowhYuXJhLLrkk69ata3fWO97xjpx33nnp169fBc0AAAAAAADoabZv354777wzDzzwQMqyrCRzzJgxmTZtWgYMGFBJHgAAAPCXGQ4AAAAAAOiCtm/fnq9+9av57ne/2+6swYMH55JLLskrX/nKCpoBAAAAAADQEz311FOZPXt2XnrppUryBg4cmOnTp+eQQw6pJA8AAADYMcMBAAAAAABdzOrVq3PRRRfl/vvvb3fWsccem6uvvjoHHHBABc0AAAAAAADoaZqamrJw4cL8/ve/ryxz3LhxOfnkk9OvX7/KMgEAAIAdMxwAAAAAANCF/PrXv86VV16ZjRs3tiunKIqcdtppOeOMM1JbW1tROwAAAAAAAHqSJ554InPmzMmGDRsqydtjjz0yY8aMjBw5spI8AAAAYOcZDgAAAAAA6AK2bNmSz3/+87nlllvanTVs2LBceeWVmTx5cgXNAAAAAAAA6Gm2bt2a+fPn55FHHqks86ijjsrkyZPTt2/fyjIBAACAnWc4AAAAAACgk61YsSLnn39+VqxY0e6sqVOnZubMmdl7770raAYAAAAAAEBP8+ijj2bu3LnZvHlzJXl77rln6uvrc8ABB1SSBwAAALSN4QAAAAAAgE5SlmVuvfXWXHfddWlqampXVm1tbT72sY/l1FNPTU1NTUUNAQAAAAAA6Ck2b96cuXPn5tFHH60kryiKHHvssTnhhBPSp4+/mgAAAACdzb+dAwAAAAB0gvXr1+fqq6/Or3/963ZnHXjggfn0pz+dI488soJmAAAAAAAA9CRlWWbZsmWZP39+tm7dWknm3nvvnYaGhuy7776V5AEAAADtZzgAAAAAAGA3u//++3PhhRfmqaeeanfWa1/72lx00UUZNGhQBc0AAAAAAADoSTZs2JA5c+bkiSeeqCSvpqYmxx9/fI477rjU1tZWkgkAAABUw3AAAAAAAMBu0tLSkptvvjlf/vKX09LS0q6sfv365VOf+lTe9KY3pSiKihoCAAAAAADQE5RlmYcffjh33HFHtm3bVknmvvvum4aGhuy9996V5AEAAADVMhwAAAAAALAbrF27NpdeemkWLlzY7qzDDjss11xzTUaPHl1BMwAAAAAAAHqSl156KbNnz85TTz1VSV5tbW1OPPHEHHPMMampqakkEwAAAKie4QAAAAAAgA52xx135NJLL826devanfXOd74z5557bvr161dBMwAAAAAAAHqSRx55JHPmzMn27dsrydt///3T0NCQPffcs5I8AAAAoOMYDgAAAAAA6CDbt2/PV77yldx0003tzho8eHAuvfTSvOIVr6igGQAAAAAAAD3RkCFD0tzc3O6cvn37ZvLkyTnyyCNTFEUFzQAAAICOZjgAAAAAAKADrF69OhdeeGEeeOCBdmcde+yxufrqq3PAAQdU0AwAAAAAAICeavjw4TnqqKPa9WdUBx54YOrr6zN48OAKmwEAAAAdzXAAAAAAAEDFfvWrX+Wqq67Kxo0b25VTFEVOO+20nHHGGamtra2oHQAAAAAAAD3ZpEmTsnLlyqxfv36X3uvXr1+mTJmScePGpSiKDmoHAAAAdBTDAQAAAAAAFdmyZUs+97nP5dZbb2131j777JMrr7wykyZNqqAZAAAAAAAAvUXfvn1TX1+fn/3sZzv9zqhRozJ9+vQMGjSoA5sBAAAAHclwAAAAAABABZYvX54LLrggK1asaHfW1KlTc/nll2fo0KEVNAMAAAAAAKC3OfDAA3PEEUfk4Ycf3uG5AQMGZOrUqRkzZkyKothN7QAAAICOYDgAAAAAAKAdyrLMrbfemuuuuy5NTU3tyurTp08+9rGP5T3veU9qamoqaggAAAAAAEBvNGXKlDzxxBPZuHHjX3x+6KGHZurUqenfv/9ubgYAAAB0BMMBAAAAAABttH79+lx55ZX57W9/2+6sAw88MJ/+9Kdz5JFHVtAMAAAAAACA3q6uri4zZszIL3/5yz/5+aBBgzJ9+vSMGjWqk5oBAAAAHcFwAAAAAABAG9x333256KKL8tRTT7U76/Wvf30uuOCCDBo0qIJmAAAAAAAA8AcHH3xwDj300CxbtixJcsQRR+Skk05Kv379OrkZAAAAUDXDAQAAAAAAu6ClpSXf/e5389WvfjUtLS3tyurfv38+9alP5Y1vfGOKoqioIQAAAAAAAPz/pk6dmpdeeimTJk3KgQce2Nl1AAAAgA5iOAAAAAAAYCetXbs2l1xySRYtWtTurMMOOyyf/vSnc8ghh7S/GAAAAAAAAD3Cli1b8txzz+Wggw6qLLN///5585vfbMgaAAAAejjDAQAAAAAAO2HBggW57LLLsm7dunZnvetd78q5556burq6CpoBAAAAAADQ3ZVlmUcffTTz5s3Ltm3b8o53vCNDhgypLN9oAAAAAPR8hgMAAAAAAHZg27Zt+epXv5qbbrqp3VlDhgzJJZdckle84hUVNAMAAAAAAKAn2LRpU+bOnZvHHnvsv382Z86cnHLKKf7CPwAAALDTDAcAAAAAALyMVatW5cILL8yDDz7Y7qwJEybk6quvzv77719BMwAAAAAAALq7sizzyCOPZMGCBdm6deufPFu1alWWLFmSI444opPaAQAAAN2N4QAAAAAAgL/g9ttvz9VXX52NGze2K6coivzDP/xDPvShD6W2traidgAAAAAAAHRnGzZsyJw5c/LEE0+87Jk77rgjI0eOzKBBg3ZjMwAAAKC7MhwAAAAAAPA/bNmyJdddd11+8pOftDtrn332yVVXXZUTTzyx/cUAAAAAAADo9sqyzO9///ssXLgw27Zt2+HZpqamzJkzJ6973etSFMVuaggAAAB0V4YDAAAAAAD+aNmyZbngggvy6KOPtjtr2rRpmTlzZoYOHVpBMwAAAAAAALq7F198MY2NjXnqqad2+p3HH388y5cvz6GHHtqBzQAAAICewHAAAAAAANDrlWWZW265JZ/73OfS1NTUrqw+ffrk7LPPzt/+7d+mpqamooYAAAAAAAB0V2VZ5v77789dd92V7du37/L78+fPz4EHHpgBAwZ0QDsAAACgpzAcAAAAAAD0ai+99FKuuuqq/Pa3v2131kEHHZRrrrkmRx55ZAXNAAAAAAAA6O6ef/75zJ49O88880ybM7Zs2ZJ58+bl1a9+dYXNAAAAgJ7GcAAAAAAA0Gvdd999ufDCC/P000+3O+v1r399LrjgggwaNKiCZgAAAAAAAHRnzc3Nueeee3L33XenpaWl3XkrVqzIU089lQMOOKCCdgAAAEBPZDgAAAAAAOh1WlpacuONN+ZrX/tauz+o1b9//3zqU5/KG9/4xhRFUVFDAAAAAAAAuqtnn302jY2NWbt2bSV5/fr1y8knn5z999+/kjwAAACgZzIcAAAAAAD0Ks8991wuvfTSLFq0qN1Z48aNyzXXXJNDDjmk/cUAAAAAAADo1pqbm/O73/0u9957b8qyrCRz9OjRmTZtWgYOHFhJHgAAANBzGQ4AAAAAAHqN+fPn57LLLsvzzz/f7qx3vetdOffcc1NXV1dBMwAAAAAAALqzp59+Oo2NjXnhhRcqyRswYECmTZuWMWPGVJIHAAAA9HyGAwAAAACAHm/btm35yle+kptvvrndWUOGDMmll16av/qrv2p/MQAAAAAAALq1bdu2ZdGiRXnooYdSlmUlmYcddlhOPvnk9O/fv5I8AAAAoHcwHAAAAAAA9GirVq3KBRdckIceeqjdWccdd1yuvvrqDB8+vIJmAAAAAAAAdGerVq1KY2Nj1q9fX0neoEGDMmPGjBx88MGV5AEAAAC9i+EAAAAAAKDHuv3223PVVVdl06ZN7copiiKnn356Tj/99NTW1lbUDgAAAAAAgO5o69atueOOO7JkyZLKMsePH5+TTjopdXV1lWUCAAAAvYvhAAAAAACgx9m8eXOuu+663Hbbbe3O2nfffXPllVfmxBNPrKAZAAAAAAAA3dnKlSszd+7cbNy4sZK8IUOGpL6+PiNGjKgkDwAAAOi9DAcAAAAAAD3KunXr8rGPfaySb3iZNm1aZs6cmaFDh1bQDAAAAAAAgO5q8+bNmT9/fpYvX15JXlEUOfroo3PiiSemb9++lWQCAAAAvZvhAAAAAACgx9i4cWPOOuusLF26tF05ffr0ydlnn533vOc9KYqionYAAAAAAAB0N2VZZsWKFZk3b162bNlSSebQoUNTX1+f4cOHV5IHAAAAkBgOAAAAAAB6iHXr1uX8889v92jAyJEjc80112T8+PEVNQMAAAAAAKA72rhxY+bOnZuVK1dWklcURY477rhMnDgxtbW1lWQCAAAA/BfDAQAAAABAt9fY2Jgrr7wyzz//fLty3vCGN+SCCy7IwIEDK2oGAAAAAABAd1OWZZYuXZoFCxakqampksxhw4aloaEh++yzTyV5AAAAAP8vwwEAAAAAQLe1efPmfOELX8gtt9zSrpz+/fvn/PPPz1//9V+nKIqK2gEAAAAAANDdrF+/Po2NjVm1alUlebW1tZk4cWImTJiQmpqaSjIBAAAA/hLDAQAAAABAt/TQQw/l4osvzuOPP96unHHjxuXTn/50Ro0aVVEzAAAAAAAAupuyLPPQQw9l0aJF2bZtWyWZw4cPT319fYYOHVpJHgAAAMCOGA4AAAAAALqVlpaW3Hjjjfn617+e5ubmdmW9+93vzjnnnJO6urqK2gEAAAAAANAdFUWRp59+upLRgD59+mTSpEk5+uijUxRFBe0AAAAAWmc4AAAAAADoNlavXp1LL70099xzT7tyhgwZkssuuywNDQ3VFAMAAAAAAKDbmzp1alatWpUtW7a0OWPEiBGpr6/PkCFDKmwGAAAA0DrDAQAAAABAl1eWZX7xi1/k2muvzcaNG9uVddRRR+Wf//mfM3z48IraAQAAAAAA0BMMGDAgU6dOzW9/+9tdfrdv376ZMmVKjjjiiBRF0QHtAAAAAHbMcAAAAAAA0KW99NJL+cxnPpPbb7+93VljxozJl770Jd/wAgAAAAAAwF80duzYLF++PCtXrtzpdw4++ODMmDEjgwYN6sBmAAAAADtmOAAAAAAA6LJ+97vf5dJLL82aNWvanTV69OjMmjXLaAAAAAAAAAAvqyiKTJ8+PU899VSampp2eLZfv36ZOnVqDj300BRFsZsaAgAAAPxlhgMAAAAAgC6nqakpX/va13LzzTenLMt2573mNa/JBRdcYDQAAAAAAACAVg0aNChTpkxJY2Pjy54ZM2ZMpk2blgEDBuzGZgAAAAAvz3AAAAAAANClPProo7nooouydOnSdmcNHDgw559/ft7whjf4lhcAAAAAAAB22uGHH57ly5dn1apVf/LzAQMGZPr06Rk9enQnNQMAAAD4y2o6uwAAAAAAQJKUZZl//dd/zXvf+95KRgMmTJiQf/mXf8kpp5xiNAAAAAAAAIBdUhRF6uvr06fP//9dfePGjcu73vUuowEAAABAl9Sn9SMAAAAAAB1r7dq1ufzyyzN//vx2Z9XW1uaMM87IBz7wgdTW1lbQDgAAAAAAgN5o8ODBmTx5cu67777MmDEjI0eO7OxKAAAAAC/LcAAAAAAA0KkaGxtzxRVX5IUXXmh31sEHH5yrrroqRx55ZPuLAQAAAAAA0K1s3bo1SdKvX7/KMo866qgcfvjh6du3b2WZAAAAAB3BcAAAAAAA0Ck2b96cL3zhC7nlllsqyXvb296W8847LwMGDKgkDwAAAAAAgO7j0Ucfzbx583LAAQfkVa96VWW5RVEYDQAAAAC6BcMBAAAAAMBu99BDD+Xiiy/O448/3u6svfbaK5dcckkaGhoqaAYAAAAAAEB3snnz5sybNy8rVqxIkixfvjyHHnpoRo0a1cnNAAAAAHYvwwEAAAAAwG7T0tKSG2+8MV//+tfT3Nzc7rypU6fmsssuy7BhwypoBwAAAAAAQHdRlmWWLVuWBQsWZMuWLX/ybM6cOdl///3Tr1+/TmoHAAAAsPsZDgAAAAAAdovVq1fn0ksvzT333NPurLq6upx77rl55zvfmaIo2l8OAAAAAACAbmPjxo2ZM2dOHn/88b/4fNOmTbnjjjvS0NCwm5sBAAAAdB7DAQAAAABAhyrLMr/4xS9y7bXXZuPGje3OGzduXK666qqMGTOmgnYAAAAAAAB0F2VZ5uGHH87ChQvT1NS0w7NLlizJ2LFjc9BBB+2mdgAAAACdy3AAAAAAANBhXnrppXzmM5/J7bff3u6soijy/ve/P2eeeWbq6uoqaAcAAAAAAEB38dJLL6WxsTGrV6/e6XfmzJmTd7zjHenbt28HNgMAAADoGgwHAAAAAAAd4q677sqll16aZ555pt1Z++23X6644oqceOKJFTQDAAAAAACguyjLMg888EDuvPPObN++fZfeXb9+fRYtWpRp06Z1UDsAAACArsNwAAAAAABQqaampnzta1/LzTffnLIs25332te+Nueff36GDBlSQTsAAAAAAAC6i+effz6NjY1Zs2ZNmzMeeuihjB07Nvvvv3+FzQAAAAC6HsMBAAAAAEBlVqxYkYsvvjhLly5td9bAgQNz/vnn5w1veEOKoqigHQAAAAAAAN1BS0tL7r333ixevDjNzc3tyirLMrNnz8473vGO1NbWVtQQAAAAoOsxHAAAAAAAtFtZlvnRj36U66+/Pk1NTe3OO+6443LFFVdkxIgRFbQDAAAAAACgu1i7dm1mz56d5557rpK8urq6TJgwITU1NZXkAQAAAHRVhgMAAAAAgHZZu3ZtLr/88syfP7/dWbW1tTnjjDPywQ9+0Ie3AAAAAAAAepHm5uYsXrw49957b1paWirJHDVqVKZPn55BgwZVkgcAAADQlRkOAAAAAADarLGxMVdccUVeeOGFdmcdfPDBueqqq3LkkUe2vxgAAAAAAADdxpo1a9LY2Jjnn3++krz+/ftn6tSpGTt2bIqiqCQTAAAAoKszHAAAAAAA7LLNmzfnC1/4Qm655ZZK8t72trflvPPOy4ABAyrJAwAAAAAAoOvbvn177rzzzjzwwAMpy7KSzLFjx2bq1Kn+3AkAAADodQwHAAAAAAC75MEHH8wll1ySxx9/vN1Ze+21Vy699NLU19dX0AwAAAAAAIDuYvXq1WlsbMxLL71USd7AgQMzffr0HHLIIZXkAQAAAHQ3hgMAAAAAgJ3S1NSUb37zm/nud7+blpaWdudNnTo1l112WYYNG1ZBOwAAAAAAALqDpqamLFy4ML///e8ryzz88MMzZcqU9OvXr7JMAAAAgO7GcAAAAAAA0KqHHnooM2fOzIoVK9qdVVdXl3PPPTfvfOc7UxRFBe0AAAAAAADoDh5//PHMmTMnGzdurCRv8ODBmTFjRg466KBK8gAAAAC6M8MBAAAAAMDL2rZtW/73//7f+c53vpOWlpZ2540bNy5XXXVVxowZU0E7AAAAAAAAuoMtW7ZkwYIFeeSRRyrLPOqoozJ58uT07du3skwAAACA7sxwAAAAAADwFz388MOZOXNmli1b1u6soijy/ve/P2eeeWbq6uoqaAcAAAAAAEB3sGLFisybNy+bN2+uJG/PPfdMQ0ND9t9//0ryAAAAAHoKwwEAAAAAwJ/Ytm1bvvOd7+Rb3/pWmpub252333775YorrsiJJ55YQTsAAAAAAAC6g02bNmXevHl59NFHK8kriiLHHntsTjjhhPTp42PwAAAAAP8vv2MCAAAAAPy3pUuXZubMmVm6dGklea997Wtz/vnnZ8iQIZXkAQAAAAAA0LWVZZlHHnkkCxYsyNatWyvJ3HvvvdPQ0JB99923kjwAAACAnshwAAAAAACQ7du358Ybb8w3v/nNNDc3tztv0KBB+dSnPpU3vOENKYqigoYAAAAAAAB0dRs2bMicOXPyxBNPVJJXU1OT448/Pscdd1xqa2sryQQAAADoqQwHAAAAAEAvt2zZssycOTMPP/xwJXnHHXdcrrjiiowYMaKSPAAAAAAAALq2sizz+9//PgsXLsy2bdsqydx3333T0NCQvffeu5I8AAAAgJ7OcAAAAAAA9FLNzc357ne/m2984xvZvn17u/Nqa2tzxhln5IMf/GBqamoqaAgAAAAAAEB3sHHjxtxxxx2V/ZnTiSeemGOOOcafOQEAAADsAsMBAAAAANALrVixIjNnzsxDDz1USd64ceMyc+bMjBs3rpI8AAAAAAAAuo899tgjkyZNyoIFC9qVs//++6ehoSF77rlnRc0AAAAAeg/DAQAAAADQS7S0tGTRokX58Y9/nP/7f/9vJZm1tbX5h3/4h5x22mnp27dvJZkAAAAAAAB0P0cffXRWrFiRNWvW7PK7ffv2zeTJk3PkkUemKIoOaAcAAADQ8xkOAAAAAIBe4M4778yVV16Z1atXV5Z56KGHZubMmTniiCMqywQAAAAAAKB7Kooi9fX1ueWWW9Lc3LzT7x100EGZMWNGBg8e3IHtAAAAAHo+wwEAAAAA0MP98Ic/zOc+97m0tLRUkldTU5PTTjstp59+evr27VtJJgAAAAAAAN3f0KFDM3HixNx5552tnu3Xr1+mTJmScePGpSiK3dAOAAAAoGczHAAAAAAAPVRLS0uuv/76/OAHP6gsc8yYMZk5c2aOPPLIyjIBAAAAAADoOSZMmJAVK1Zk7dq1L3vmkEMOyfTp0zNw4MDd2AwAAACgZzMcAAAAAAA90JYtW3LxxRfn//7f/1tJXk1NTT7wgQ/kQx/6UOrq6irJBAAAAAAAoOepqanJX/3VX+XWW29NS0vLnzwbMGBApk2bltGjR6coik5qCAAAANAzGQ4AAAAAgB5m3bp1Oe+88/Lggw9WknfIIYfk8ssvz1FHHVVJHgAAAAAAAD3bsGHDMmHChNx9993//bNDDz00U6dOTf/+/TuxGQAAAEDPZTgAAAAAAHqQxx57LGeffXZWr17d7qyampq8733vy5lnnpm6uroK2gEAAAAAANBbTJw4MY899liampoyffr0jBo1qrMrAQAAAPRohgMAAAAAoIdYvHhxPv7xj2f9+vXtzho1alRmzpyZY445poJmAAAAAAAAdHXNzc2pra2tLK+2tjavec1rMnDgQCPVAAAAALtBTWcXAAAAAADa7+c//3k+8pGPtHs0oCiKvO9978sPfvADowEAAAAAAAC9xMqVK/PDH/4wa9asqTR3r732MhoAAAAAsJv06ewCAAAAAEDblWWZb33rW/na177W7qyDDz44l112WSZMmFBBMwAAAAAAALq6LVu2ZP78+Vm2bFmSpLGxMW9729tSW1vbyc0AAAAA2FWGAwAAAACgm9q+fXuuueaa/PSnP21XzpAhQ/LhD384b3nLW9K/f/+K2gEAAAAAANBVlWWZFStWZP78+dm8efN///z555/P4sWLM2nSpE5sBwAAAEBbGA4AAAAAgG5ow4YN+eQnP5lFixa1OaMoilx00UV585vfnKIoKmwHAAAAAABAV7Vx48bMnTs3K1eu/IvP77nnnowePTr77LPPbm4GAAAAQHsYDgAAAACAbubpp5/O2WefnRUrVrQ5Y8SIEbnhhhtyyCGHVFcMAAAAAACALqssyyxdujQLFixIU1PTDs/Nnj07b33rW1NTU7MbGwIAAADQHn4nBwAAAAC6kYcffjgf+MAH2jUacPTRR+fGG280GgAAAAAAANBLrF+/Pr/4xS8ye/bsHY4G/Je1a9fm3nvv3Q3NAAAAAKiK4QAAAAAA6CbmzJmTD33oQ1m7dm2bM17xilfka1/7Wvbee+8KmwEAAAAAANAVlWWZBx98MD/+8Y/z5JNP7tK7ixcvzvPPP99BzQAAAAComuEAAAAAAOgGfvSjH+XjH/94Nm/e3OaM9773vbn22mvTv3//CpsBAAAAAADQFb344ov593//98ybNy/btm3b5febm5vT2NiYsiw7oB0AAAAAVevT2QUAAAAAgJfX0tKSG264Id/73vfanFFTU5NPfOITede73lVhMwAAAAAAALqilpaW3H///bnrrrvS3Nzcrqw1a9bkgQceyDHHHFNROwAAAAA6iuEAAAAAAOiitm7dmksuuSS//e1v25zRv3//XHPNNamvr6+wGQAAAAAAAF3RunXrMnv27Dz77LOV5PXt2zd1dXWVZAEAAADQsQwHAAAAAEAXtG7dunz84x/P/fff3+aMYcOG5frrr8/48eMrbAYAAAAAAEBX09zcnHvuuSd33313WlpaKskcOXJkZsyYkT322KOSPAAAAAA6luEAAAAAAOhiVq5cmbPPPjurVq1qc8aYMWPyxS9+MQcccECFzQAAAAAAAOhqnn322cyePTvr1q2rJK9fv36ZOnVqDj300BRFUUkmAAAAAB3PcAAAAAAAdCF33313Pv7xj+ell15qc8akSZPyz//8zxk8eHCFzQAAAAAAAOhKtm/fnt/97ne57777UpZlJZmjR4/OtGnTMnDgwEryAAAAANh9DAcAAAAAQBfxy1/+Mpdffnm2bdvW5ow3velNufDCC9O3b98KmwEAAAAAANCVPPXUU2lsbMyLL75YSd6AAQMyffr0jB49upI8AAAAAHY/wwEAAAAA0MnKssx3vvOdfOUrX2lXzplnnpl/+Id/SFEUFTUDAAAAAACgK9m2bVsWLVqUBx98sLLMww47LCeffHL69+9fWSYAAAAAu5/hAAAAAADoRNu3b8+nP/3p3HbbbW3O6NOnTy699NKccsopFTYDAAAAAACgK3nyySfT2NiYDRs2VJI3aNCgzJgxIwcffHAleQAAAAB0LsMBAAAAANBJNm7cmE9+8pNZuHBhmzMGDx6c6667LieccEKFzQAAAAAAAOgqtm7dmjvuuCNLliypLHP8+PE56aSTUldXV1kmAAAAAJ3LcAAAAAAAdII1a9bknHPOybJly9qcMWLEiHzxi1/M6NGjK2wGAAAAAABAV/HYY49l7ty52bRpUyV5Q4YMSX19fUaMGFFJHgAAAABdh+EAAAAAANjNli5dmnPOOSfPPvtsmzOOPPLIXH/99dl7770rbAYAAAAAAEBXsHnz5syfPz/Lly+vJK8oihx99NGZNGlS+vTxEXIAAACAnsjv+gAAAADAbjRv3rxccMEF7fpWmIaGhlx99dXp379/hc0AAAAAAADobGVZZvny5Zk/f362bNlSSebQoUNTX1+f4cOHV5IHAAAAQNdkOAAAAAAAdpN/+7d/y7XXXpuWlpY2Z7znPe/Jeeedl5qamgqbAQAAAAAA0Nk2btyYOXPm5PHHH68kr6amJhMmTMjEiRNTW1tbSSYAAAAAXZfhAAAAAADoYC0tLZk1a1ZuuummNmcURZGPf/zj+du//dsKmwEAAAAAANDZyrLMkiVLcscdd6SpqamSzH322ScNDQ0ZNmxYJXkAAAAAdH2GAwAAAACgA23dujWXXXZZfv3rX7c5o1+/frnmmmvS0NBQYTMAAAAAAAC6giVLlqSxsbGSrNra2kycODETJkxITU1NJZkAAAAAdA+GAwAAAACgg7zwwgv5p3/6p9x3331tzth7771z/fXX58gjj6ywGQAAAAAAAF3FYYcdlvvuuy8vvPBCu3KGDx+ehoaG7LXXXpX0AgAAAKB7MSMJAAAAAB3g8ccfz2mnndau0YDRo0fnxhtvNBoAAAAAAADQg9XW1qahoSFFUbTp/T59+mTq1Kn5m7/5G6MBAAAAAL2Y4QAAAAAAqNg999yT0047LU888USbM0444YR861vfyogRIypsBgAAAAAAQFc0fPjwHHXUUbv83ogRI/KOd7wjRx99dJuHBwAAAADoGfp0dgEAAAAA6Eluv/32XHbZZdm2bVubM0455ZRccskl6du3b4XNAAAAAAAA6MomTZqUlStXZv369a2eraury5QpU3L44YcbDAAAAAAgieEAAAAAAKhEWZa56aab8qUvfaldOR/+8IfzoQ99yAe8AAAAAAAAepm+ffumvr4+P/vZz3Z47uCDD86MGTMyaNCg3dQMAAAAgO7AcAAAAAAAtFNzc3Ouvfba3HLLLW3OqK2tzSWXXJI3vvGNFTYDAAAAAACgOznwwANzxBFH5OGHH/6zZ/3798/UqVMzduxYI9QAAAAA/BnDAQAAAADQDps2bcr555+f+fPntzljjz32yGc/+9lMmjSpwmYAAAAAAAB0R1OmTMkTTzyRjRs3/vfPxo4dm6lTp2bAgAGd2AwAAACArqymswsAAAAAQHf1zDPP5PTTT2/XaMD++++fb3/720YDAAAAAAAASJLU1dVl+vTpSZKBAwfmta99bV71qlcZDQAAAABgh/p0dgEAAAAA6I6WLl2ac889N88880ybM8aPH5/rr78+w4YNq7AZAAAAAAAA3d2oUaMyY8aMjBkzJv369evsOgAAAAB0AzWdXQAAAAAAupv58+fn9NNPb9doQH19fb7xjW8YDQAAAAAAAOjmnnjiifzmN79JWZaV5o4fP95oAAAAAAA7rU9nFwAAAACA7uSWW27JZz7zmbS0tLQ5493vfnc+/vGPp6bGricAAAAAAEB3tXXr1ixYsCBLly5NkgwfPjxHH310J7cCAAAAoLcyHAAAAAAAO6GlpSVf+cpXcuONN7Y5oyiKnHfeeTn11FOrKwYAAAAAAMBu9+ijj2bu3LnZvHnzf/9s0aJFGTVqVAYPHtyJzQAAAADorQwHAAAAAEArmpqaMnPmzNx+++1tzujXr1+uuuqqvOIVr6iwGQAAAAAAALvT5s2bM2/evKxYseLPnm3fvj2NjY055ZRTUhRFJ7QDAAAAoDczHAAAAAAAO/Diiy/mn/7pn3Lvvfe2OWPo0KH5whe+kKOPPrrCZgAAAAAAAOwuZVlm2bJlmT9/frZu3fqy51atWpUlS5bkiCOO2I3tAAAAAMBwAAAAAAC8rCeeeCLnnHNOHn/88TZnHHLIIfniF7+YAw88sMJmAAAAAAAA7C4bN27MnDlzdvrPjO64446MHDkygwYN6uBmAAAAAPD/q+nsAgAAAADQFd1333057bTT2jUaMHHixHz72982GgAAAAAAANANlWWZ3//+9/nRj360S39m1NTUlLlz56Ysyw5sBwAAAAB/ynAAAAAAAPw/fv3rX+fMM8/MCy+80OaMU045JbNmzcqQIUOqKwYAAAAAAMBu8dJLL+VnP/tZ5syZk6ampl1+f+XKlVm+fHkHNAMAAACAv6xPZxcAAAAAgK6iLMvcfPPNueGGG9qVc/rpp+eMM85IURQVNQMAAAAAAGB3KMsyDzzwQO68885s3769XVnz58/PgQcemAEDBlTUDgAAAABenuEAAAAAAEjS3Nycf/7nf86//du/tTmjtrY2F110Uf7mb/6mwmYAAAAAAADsDs8//3waGxuzZs2aSvKam5vz3HPPZeTIkZXkAQAAAMCOGA4AAAAAoNfbtGlTLrjggsybN6/NGYMGDcpnP/vZTJ48ucJmAAAAAAAAdLSWlpbce++9Wbx4cZqbmyvJPPDAA1NfX5/BgwdXkgcAAAAArTEcAAAAAECv9uyzz+bcc8/NkiVL2pwxfPjw3HDDDRk7dmyFzQAAAAAAAOhozz33XGbPnp21a9dWkldXV5eTTz4548aNS1EUlWQCAAAAwM4wHAAAAABAr7Vs2bKcffbZeeaZZ9qcccQRR+T666/PPvvsU2EzAAAAAAAAOlJzc3MWL16ce+65J2VZVpI5atSoTJ8+PYMGDaokDwAAAAB2heEAAAAAAHql+fPn5/zzz8+mTZvanDF9+vRcc801GThwYIXNAAAAAAAA6Ehr1qxJY2Njnn/++Ury+vfvn2nTpmXMmDEpiqKSTAAAAADYVYYDAAAAAOhVNmzYkOuvvz4/+clP2pXzzne+M5/4xCdSW1tbTTEAAAAAAAA61LZt23LXXXflgQceSFmWlWSOHTs2U6dOzYABAyrJAwAAAIC2MhwAAAAAQK8xZ86cXHPNNXn22WfbnFEURc4999yceuqpvjEGAAAAAACgm1i9enUaGxvz0ksvVZI3cODAzJgxI6NGjaokDwAAAADay3AAAAAAAD1eS0tLZs2alZtuuqldOXV1dbnqqqvyyle+sqJmAAAAAAAAdKSmpqYsXLgwv//97yvLPPzwwzNlypT069evskwAAAAAaC/DAQAAAAD0aE1NTZk5c2Zuv/32duUMHTo0n//853PMMcdU1AwAfKOt1gABAABJREFUAAAAAICO9Pjjj2fOnDnZuHFjJXmDBw/OjBkzctBBB1WSBwAAAABVMhwAAAAAQI+1fv36fOITn8jvfve7duUcfPDBueGGG3wIDAAAAAAAoBvYsmVLFixYkEceeaSSvKIocuSRR2by5Mnp27dvJZkAAAAAUDXDAQAAAAD0SM8880zOPvvsLFu2rF05xx9/fD73uc9lyJAhFTUDAAAAAACgo6xYsSLz5s3L5s2bK8nbc88909DQkP3337+SPAAAAADoKIYDAAAAAOhxVqxYkY997GNZs2ZNu3Je97rX5bLLLktdXV1FzQAAAAAAAOgImzZtyrx58/Loo49WklcURY499ticcMIJ6dPHR64BAAAA6Pr8LhYAAAAAPcrdd9+df/qnf8r69evblfP3f//3OfPMM1NTU1NRMwAAAAAAAKpWlmUeeeSRLFiwIFu3bq0kc9iwYamvr8++++5bSR4AAAAA7A6GAwAAAADoMX7zm9/kkksuSVNTU5sz6urqcsEFF+RNb3pThc0AAAAAAADoCI2NjVmyZEklWTU1NTn++ONz3HHHpba2tpJMAAAAANhdDAcAAAAA0CP88Ic/zHXXXZeyLNucMXHixFxyySUZOXJkhc0AAAAAAADoKKNGjapkOGDfffdNQ0ND9t577wpaAQAAAMDuZzgAAAAAgG6tpaUls2bNyk033dTmjIEDB+acc87JW9/61tTU1FTYDgAAAAAAgI50yCGHZOzYsVm+fHmb3q+trc2JJ56YY445xp8TAQAAANCtGQ4AAAAAoNvatm1brrjiivziF79oc8Z+++2XWbNmZcyYMRU2AwAAAAAAYHeZOnVqVq1alS1btuzSewcccEDq6+uz5557dlAzAAAAANh9zGICAAAA0C1t3Lgx55xzTrtGAw499NDceOONRgMAAAAAAAC6sQEDBmTq1Kk7fb5v376ZPn163vjGNxoNAAAAAKDH6NPZBQAAAABgVz377LM555xzsnTp0jZnnHjiibnuuuuyxx57VNgMAAAAAACAzjB27NgsX748K1eu3OG5gw46KDNmzMjgwYN3UzMAAAAA2D0MBwAAAADQraxcuTJnnXVWnnrqqTZnvPa1r83MmTNTV1dXYTMAAAAAAAA6S1EUmT59ep566qk0NTX92fN+/frl5JNPzmGHHZaiKDqhIQAAAAB0LMMBAAAAAHQbDz/8cM4666y88MILbc543/vel7PPPjs1NTXV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/E4cAAAAAO3W2NiYiy++uF3fPvPJT34y73rXuypsBQAAAAAAwI6UZZnly5dn/vz52bJlSyWZQ4cOTUNDQ/bbb79K8gAAAACAnWM4AAAAAIA2K8syN998c770pS+lLMs2ZdTU1OTyyy/PG97whorbAQAAAAAA8HK2bduW3/72t1m5cmUleTU1NTnuuONy/PHHp7a2tpJMAAAAAGDnGQ4AAAAAoE2amppy9dVX52c/+1mbM+rq6nLttddmxowZFTYDAAAAAACgNX369Mm2bdsqydpnn33S0NCQYcOGVZIHAAAAAOy6ms4uAAAAAED3s3bt2px55pntGg0YOHBgZs2aZTQAAAAAAACgExRFkfr6+vTp0/bvIautrc3kyZPzlre8xWgAAAAAAHSytv9OHwAAAAC90tKlS3PeeedlzZo1bc7Ya6+9MmvWrBxxxBEVNgMAAAAAAGBXDBkyJJMmTcqCBQt2+d3hw4enoaEhe+21V/XFAAAAAIBdZjgAAAAAgJ3229/+Npdeemm2bNnS5ozhw4fny1/+cg455JDqigEAAAAA/x97dx5md1meD/x+J5mEbEBYwhLWsK9h30Im1lZtrUVFbWtt1aqtK4IgohYhIIoioIK7P23V1rYidasbKpoBwo7suwHCvoRAQvZk3t8fkBoxZOZMzpn187mucwHn+z7P9z4RvCBzzn0AoFf23nvvzJkzp8el0SNHjswhhxySvfbaK6WUFqcDAAAAAHqqrb8DAAAAADDw1Vrzta99LR/4wAfWqzRg1113zde//nWlAQAAAAAAAANEKSUdHR0ZMWJEt2cnT56c173uddl7772VBgAAAADAADOyvwMAAAAAMLAtW7Ysp512Wi666KL12vMnf/InOe200zJ27NgmJQMAAAAAAKAZJk6cmAMOOCBXX331Wq+PGjUqhx12WHbbbTeFAQAAAAAwQCkOAAAAAOAFPf744znhhBNy6623rteet771rXn729+etra2JiUDAAAAAACgmaZOnZo5c+Zk3rx5f/D89ttvnyOPPDLjxo3rp2QAAAAAQE8oDgAAAABgrW699daccMIJefzxx3u9Y9SoUTn11FPzspe9rInJAAAAAAAAaLa2trbMmDEj3/ve91JrzQYbbJAjjjgiO+20U0op/R0PAAAAAOiG4gAAAAAA/shFF12UmTNnZvny5b3esdlmm+Wcc87JXnvt1cRkAAAAAAAAtMpmm22W/fbbLwsWLMgRRxyRMWPG9HckAAAAAKCHFAcAAAAA8H+6urry5S9/OV/72tfWa88ee+yRc845J5MmTWpSMgAAAAAAAJ7v4YcfzmabbZb29vam7TzooINSSmnaPgAAAACgbygOAAAAACBJsmTJkpx66qm5+OKL12vPS1/60pxyyinZYIMNmpQMAAAAAACANS1fvjxXXnllbrvttuyzzz45/PDDm7ZbaQAAAAAADE6KAwAAAADII488kuOPPz533nnneu15xzvekbe+9a3eUAYAAAAAANAic+fOzSWXXJJFixYlSW6++eZMmTIlW2yxRT8nAwAAAAD6U1t/BwAAAACgf91444154xvfuF6lARtssEHOOuusvO1tb1MaAAAAAAAA0ALLli3Lr3/96/zsZz/7v9KAJKm1prOzM6tWrerHdAAAAABAfxvZ3wEAAAAA6D8/+clP8tGPfjQrVqzo9Y5Jkybl05/+dHbbbbcmJgMAAAAAAGC1e+65J5deemmWLFmy1uvz58/Pddddl4MPPriPkwEAAAAAA4XiAAAAAIBhqKurK5///OfzjW98Y7327LPPPjn77LOz6aabNikZAAAAAAAAqy1evDiXXXZZ7rnnnm7PXn/99dlxxx2z2Wab9UEyAAAAAGCgaevvAAAAAAD0rcWLF+f973//epcGvPzlL8+Xv/xlpQEAAAAAAABNVmvNnXfemQsuuKBHpQGrZ2bNmpWurq4WpwMAAAAABqKR/R0AAAAAgL7z0EMP5X3ve19+97vf9XpHKSXvec978sY3vjGllCamAwAAAAAA4Jlnnskll1yS+++/v+HZefPm5YYbbsj+++/fgmQAAAAAwECmOAAAAABgmLjuuuvygQ98IE899VSvd4wdOzZnnHFGOjo6mhcMAAAAAACA1Fpz++2354orrsiKFSt6vee6667LDjvskIkTJzYxHQAAAAAw0LX1dwAAAAAAWu+HP/xh3vWud61XacDWW2+dr3/960oDAAAAAAAAmmzBggX53//931xyySXrVRqQJKtWrcpll13WpGQAAAAAwGAxsr8DAAAAANBaF1xwQT75yU+u14799tsvn/rUp3wzDQAAAAAAQBPVWnPTTTflmmuuycqVK5uyc8stt8z06dObsgsAAAAAGDwUBwAAAAAMYb/+9a9z1lln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ALTQrbfemg9+8IO9ehPbi1/84rzvfe/zDTcAAAAAAMCw9dhjj2XWrFmZP39+U/aNHj06RxxxRHbeeWc/gwEAAAAAhhTFAQAAAAAt8sADD+TYY4/N0qVLG57db7/9csYZZ6Stra0FyQAAAAAAAAa2lStX5pprrslNN92UWmtTdk6ZMiXTpk3LmDFjmrIPAAAAAGAgURwAAAAA0ALz58/PMccc06tvv9lhhx1y7rnnZtSoUS1IBgAAAAAAMLA9/PDD6ezszNNPP92UfWPHjs20adOy4447NmUfAAAAAMBApDgAAAAAoMmWLl2a973vfbn//vsbnt10001z3nnnZcMNN2xBMgAAAAAAgIFrxYoVufLKK3Prrbc2beeuu+6aww8/PKNHj27aTgAAAACAgUhxAAAAAEATdXV15cMf/nBuvvnmhmfHjh2b8847L1tvvXULkgEAAAAAAAxc999/fy655JI888wzTdk3fvz4TJ8+Pdtuu21T9gEAAAAADHSKAwAAAACapNaas846K52dnQ3PjhgxImeddVZ22223FiQDAAAAAAAYmJYtW5bLL788d955Z9N27rnnnjn00EPT3t7etJ0AAAAAAAOd4gAAAACAJvnGN76R7373u72aPfnkk3PYYYc1OREAAAAAAMDAdc899+Syyy7L4sWLm7Jvo402SkdHR7baaqum7AMAAAAAGEwUBwAAAAA0wU9+8pN87nOf69XsO9/5zvzVX/1VkxMBAAAAAAAMTEuWLMlll12WOXPmNGVfKSX77LNPDjrooIwc6a2xAAAAAMDw5HdHAQAAANbTVVddldNOO61Xs69+9avzlre8pcmJAAAAAAAABq7rrruuaaUBEydOzIwZMzJp0qSm7AMAAAAAGKwUBwAAAACshzvvvDPvf//7s2rVqoZnjzzyyHzwgx9MKaUFyQAAAAAAAAamgw46KPfcc08WL17c6x1tbW3Zb7/9sv/++2fEiBFNTAcAAAAAMDi19XcAAAAAgMHqkUceybHHHturN7XtueeeOfPMM72RDQAAAAAAGHZGjx6dI488stfzm2++eV796lfnoIMO8rMWAAAAAIDnjOzvAAAAAACD0YIFC/Le9743jz/+eMOzkydPzmc+85mMGTOmBckAAAAAAAAGvh122CFTpkzJnDlzejwzYsSIHHjggdl3333T1ua7swAAAAAA1qQ4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SAWJAAAAAAD6ttbW1jQ2NtZt36BBg3Lqqadm9913T0NDQ932AgAAAAAAAH2HnyQCAAD0cVdddVUee+yxmmZe9rKXpbm5uaJEAAAAAAB9U1mWuf322/O///u/Wb16dV13jxw5UmkAAAAAAAAAsE1+mggAANCHLV68ON/4xjdqmhk2bFjOP//8ihIBAAAAAPRNy5cvz49+9KPMmTMna9asycyZM1OWZXfHAgAAAAAAAHYRTd0dAAAAgOp87nOfy/r162uaed/73peRI0dWlAgAAAAAoG9pa2vL/Pnzc+utt6a1tfWPzz/yyCO59957M378+G5MBwAAAAAAAOwqFAcAAAD0UXPmzElLS0tNMyeccEJe/epXV5QIAAAAAKBvWbZsWX7/+99n2bJlW319zpw52X///TN48OAuTgYAAAAAAADsahq6OwAAAAD1t2HDhnzmM5+paWbgwIH513/91xRFUVEqAAAAAIC+obW1NTfffHN+8IMfbLM0IEnWrVuX66+/vguTAQAAAAAAALuqpu4O0BsURdG6nZfLsix79X/HoiimJ/ldB8d6/fcJAAC7ku985zt56KGHapp517velf3226+iRAAAAAAAfcOTTz6ZGTNmZPny5Z06/8ADD2TRokUZN25cxckAAAAAAACAXZkbwTtnV/i4zV3hewQAgF3CU089la985Ss1zYwdOzZveMMbKkoEAAAAAND7bdiwIXPnzs0dd9yRsixrmr3++uuz7777ZuDAgRWlAwAAAAAAAHZ1Dd0doBcpt/Loa7b2PfbF7xMAAPq0yy67LGvWrKlp5vzzz09Tk245AAAAAICteeyxx3LNNdfk9ttvr7k0IEnWrl2bOXPmVJAMAAAAAAAAYBN3hdSm2OLrvnpDffGC3/fV7xMAAPqkBQsW5Cc/+UlNM6ecckpOOOGEihIBAAAAAPRe69evz4033pi77rprp3fde++9OeiggzJmzJg6JAMAAAAAAAB4PsUBAAAAfURbW1suvvjimmb69++f9773vdUEAgAAAADoxR5++OHMnDkzzz77bF32DR06NE1N3qoDAAAAAAAAVMNPIwEAAPqIH//4xzV/6tVZZ52Vfffdt6JEAAAAAAC9z3PPPZc5c+bk3nvvrcu+oihy+OGH54QTTki/fv3qshMAAAAAAADghRQHAAAA9AGrVq3KZZddVtPMPvvsk7e+9a0VJQIAAAAA6H0WLVqU66+/PmvXrq3LvuHDh2f69OnZZ5996rIPAAAAAAAAYFsUBwAAAPQBX/nKV7J8+fKaZt73vvdl4MCBFSUCAAAAAOg91qxZk+uvvz4PPPBAXfYVRZGjjz46EydOTFOTt+cAAAAAAAAA1fOTSQAAgF7u/vvvz3e+852aZo4//viccsopFSUCAAAAAOgdyrLMvffemzlz5mTdunV12bnHHnukubk5e+21V132AQAAAAAAAHSG4gAAAIBerCzLfOYzn0lbW1unZxoaGnL++eenKIoKkwEAAAAA9GyrV6/OzJkz88gjj9RlX0NDQ4499tgcc8wxaWxsrMtOAAAAAAAAgM5SHAAAANCL/e53v8vNN99c08zrX//6jBs3rqJEAAAAAAA9W1mWueuuu3LjjTdmw4YNddm51157Zfr06Rk5cmRd9gEAAAAAAADUSnEASbKtjxktt/E1AADQAzz33HO55JJLapoZMWJE3vnOd1aUCAAAAACgZ1uxYkVmzJiRxx9/vC77GhsbM2nSpBx11FFpaGioy04AAAAAAACAHaE4gCTp14kz9anYBwAA6ubqq6/OE088UdPMP/7jP2bo0KEVJQIAAAAA6JnKssztt9+euXPnZuPGjXXZOXr06DQ3N2f48OF12QcAAAAAAACwMxQHkCSduWtofeUpAACATnvsscdy1VVX1TRz+OGH59RTT60mEAAAAABAD7V8+fK0tLRkyZIlddnXr1+/nHDCCTn88MNTFEVddgIAAAAAAADsLMUBJMlenTizpvIUAABAp33+85/P+vW19Xudf/75aWhoqCgRAAAAAEDP0tbWlnnz5uXWW29NW1tbXXbuv//+mTZtWoYO7cxnNAAAAAAAAAB0HcUBJMnY7bzWXo2/rCuCAAAAHbvpppvyu9/9rqaZV7/61TnqqKMqSgQAAAAA0LM89dRTaWlpybJl9Xm7w4ABA3LSSSflkEMOSVEUHQ8AAAAAAAAAdDHFASTJMR28XiZ5qgtyAAAAHdi4cWMuvvjimmYGDx6c8847r6JEAAAAAAA9R2tra2655ZbMnz8/ZVnWZeeLXvSiTJ06NYMHD67LPgAAAAAAAIAqKA7YxRVF0T/JydlUDrA9i7sgDgAA0IHvfve7eeCBB2qaeec735k99tijokQAAAAAAD3HjTfemDvuuKMuuwYNGpQpU6Zk7NixKYqiLjsBAAAAAAAAqqI4gNcm2S2bigO291Pu+7okDQAAsE1PP/10/uu//qummQMPPDCvf/3rK0oEAAAAANCzHHPMMbn33nuzbt26ndpz8MEH5+STT87AgQPrlAwAAAAAAACgWg3dHYDuUxRF/yQfy6bSgI7cU20aAACgI5dddlmeffbZmmbOP//89OvXr6JEAAAAAAA9y+DBg3PSSSft8PyQIUPyyle+MqeccorSAAAAAAAAAKBXaeruAHSPoigGJfmfJIdmU3FA0cHI3MpDAQAA23TnnXfmRz/6UU0z06dPz4knnlhRIgAAAACAnumQQw7J/fffn0ceeaSmuUMPPTQnnnhi+vfvX1EyAAAAAAAAgOo0dHcAulZRFOOKovhQknuSvDbbLg0ot/j66bIs7+6CeAAAwFa0tbXlP//zP2ua6d+/f97//vdXlAgAAAAAoOcqiiLTpk1Lv379OnV+6NCh+au/+qs0NzcrDQAAAAAAAAB6rabuDlCFoiiOTnJMF17vrV11rU4qkvRLMjjJ7klGJxmb5Kgk+2xxJnl+QcDW9pRJflNJSgAAoFN+8pOf5M4776xp5i1veUv222+/ihIBAAAAAPRsu+22WyZPnpxZs2Zt80xRFDniiCNy/PHHd7pkAAAAAAAAAKCn6pPFAUlel+Sjdd5ZbOP3RZIr63ytqmz5PZRbeW5bflBBFgAAoBNWr16dyy67rKaZvffeO2eddVY1gQAAAAAAeonDDjss999/fx5//PE/e2333XfP9OnTs/fee3dDMgAAAAAAAID6a+juABUq6vjoymtV+Si3eLTn3ppyi6+fTvKjTvw3AAAAKnDFFVfk6aefrmnmve99bwYNGlRRIgAAAACA3qEoijQ3N6epqel5zx177LE5/fTTlQYAAAAAAAAAfUpTx0d6tbLjI53SUXlAva7TFTpThNB+rkxyeVmWz1WYBwAA2IYHHngg3/72t2uamThxYl760pdWlAgAAAAAoHcZPnx4Jk2alBtuuCF77LFHpk+fnj333LO7YwEAAAAAAADUXV8vDkg6f6N8T79GV9myBGFJkou7KwgAAOzKyrLMxRdfnNbW1k7PNDQ05Pzzz09R9KW/ogAAAAAA7Jyjjjoq/fv3z/jx49PQ0NDdcQAAAAAAAAAq4aehbE2RTQUC7y7LcmV3hwEAgF3R73//+9x00001zZxxxhk5+OCDK0oEAAAAAFCtsixz55135vrrr6/r3qIocuihhyoNAAAAAAAAAPq0pu4OQI9SbvH1v5dl+b1uSwIAALuwdevW5ZJLLqlpZvjw4fn7v//7ihIBAAAAAFRrxYoVaWlpyRNPPJEkGTNmTA444IBuTgUAAAAAAADQe6hSJ9lUGFAmKTb//l/LsrygG/MAAMAu7Rvf+EYee+yxmmbOPffcDBs2rKJEAAAAAADVaGtry/z58/P973//j6UBSTJz5sysX7++G5MBAAAAAAAA9C5N3R2AblG+4PfthQF/SPLOsixndXEeAABgs8cffzxXXnllTTOHHnpoXvva11YTCAAAAACgIk8//XRaWlqydOnSP3tt9erVuemmmzJ16tRuSAYAAAAAAADQ++wKxQEvvEl+RxQdvF6Pa3S1Lb+nm5J8Psl3y7Js6544AABAknzhC1/IunXrapo5//zz09DQUFEiAAAAAID6am1tzbx583LbbbelrW3bb1NYuHBhDjrooIwePboL0wEAAAAAAAD0Tn29OKCjG/5723XqZUmS2UlakvywLMsHuzcOAACQJDfffHN+85vf1DTzqle9KhMmTKgoEQAAAABAfS1dujQtLS15+umnO3V+xowZOf3009PU1Nff4gIAAAAAAACwc/rqT1XnJfl6Hfe9LUmZ5xcEtP++THJ1Ha9VD61J1m9+rEqydPPjwST3lGW5rPuiAQAAW9Pa2pqLL764ppnBgwfnvPPOqygRAAAAAED9bNy4MbfccksWLFiQsiw7PbdixYrMnTs3J554YoXpAAAAAAAAAHq/PlkcUJblD5P8sF77iqJ4WwfXe3u9rgUAAOyavve972XRokU1zZx99tnZa6+9KkoEAAAAAFAfjz/+eGbMmJEVK1bs0Pztt9+ecePGZdSoUXVOBgAAAAAAANB3NHR3AAAAgF3d8uXLc/nll9c0M2bMmPyf//N/KkoEAAAAALDzNmzYkOuvvz4//vGPd7g0IEnKskxLS0taW1vrmA4AAAAAAACgb2nq7gAAAAC7ui996UtZvXp1TTMf/OAH079//4oSAQAAAADsnEcffTQzZ87MqlWr6rJv/fr1WbVqVXbfffe67AMAAAAAAADoaxQHAAAAdKOFCxfmuuuuq2lm2rRpOfnkk6sJBAAAAACwE9atW5cbbrghd999d912HnbY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2GOPzbx587L//vsPdSwAAAAAAAAAgAGNG+oAw12t9YFSyg1JPph3FwfUJCXJL5dS/nOtdV3HAwIAwBB5/vnn881vfnNQ11x++eUppTSUCAAAAAB2zMSJE3Peeedl/Pjx2WeffYY6DgAAAAAAAABAy7qGOsAI8T+28Vrvp52mJ/nlDmUBAIBh4ctf/nI2bNjQ8vzhhx+euXPnNpgIAAAAgLFk9erV+dGPfpQ33nijrXsPOOAApQEAAAAAAAAAwIijOKAFtdYFSa7LprKAuvXx5tf/Syllj05nAwCAofDiiy/mG9/4xqCuufzyy9PV5R9BAAAAANgxtdY8/PDDufrqq/Poo49m4cKFqXXrt3EBAAAAAAAAAMYWT+207reSbPlRFVu+66T0Ot8tyV92NBEAAAyRL3/5y1m/fn3L84ceemjOO++85gIBAAAAMCa8+eab+d73vpef/OQnWbt2bZLkueeey4MPPjjEyQAAAAAAAAAAhpbigBbVWp9L8i/yzrKAbP68bv71olLKv+10NgAA6KQXX3wx11133aCuufzyy9PV5R8/AAAAANg+tdbcf//9ufrqq/PUU0+963zp0qV58803hyAZAAAAAAAAAMDw4MmdQai1fjnJn+TtsoAtepcH/NdSym90Ph0AAHTG3/zN32T9+vUtz8+cOTPvec97GkwEAAAAwGj2xhtv5Nvf/nYWL17c57+XWr9+fRYtWpRa6zbPAQAAAAAAAABGO8UBg/cvk9yQ/ssD/ncp5feHIBsAADTqpZdeynXXXTeoa37lV34lXV3+0QMAAACAwam15mc/+1muueaaPPfccwPOP/XUU1m2bFkHkgEAAAAAAAAADD/jhjrASFNr7SmlfDzJ/CQfytvlASXvLA/4d6WU05N8tta6fEjCAgAwJl1++eW59957G9n93HPP5eWXX255fuLEifn85z+fz3/+80mS4447LldccUUj2QAAAAAYPV577bUsWLAgL7744qCuW7JkSfbbb79MmTKloWQAAAAAAAAAAMOT4oDtUGtdW0r5WJK/S/KpbCoL2FIY0Ls84Pwk95RS/meSP6q1rhyaxAAAjCX33ntvli5dOtQxkiSrVq0aNlkAAAAAGP42btyYu+66K3feeWd6enoGff3atWtz00035X3ve18D6QAAAAAAAAAAhq+uoQ4wUtVaNya5LMnvJunJ24UByTvLA3ZK8vkky0spf1xKObnzaQEAAAAAAACGt5deeinXX399br/99u0qDdji8ccfz2OPPdbGZAAAAAAAAAAAw5/igB1QN/nPSc5P8tyWlzf/uqU8YEuBwK5JfjvJT0spT5VSvlhK+fVSyqxSyoxSSulwfAAAAAAAAIAht3Hjxtx66625/vrr88orr7Rl5zPPPNOWPQAAAAAAAAAAI8W4oQ4wEpRSWvlxFOPzdlnAP16at8sDtnyeJPsl+aXNH1tsLKWsTLImybodiNuUWms9dKhDAAAAAAAAAKPH888/n4ULF+b1119vy77JkyfnnHPOySGHHNKWfQAAAAAAAAAAI4XigNYcnE0P/5d+ZrYuB8hWn/cuENjW3Lgku23+GI7qwCMAAAAAAAAAA1u/fn1uvfXW3H///am1PW9FHn744Tn77LMzadKktuwDAAAAAAAAABhJFAcMTl/fsVLSf6lAtjrfukRguBvoawMAAAAAAABoyTPPPJOFCxdm5cqVbdk3derUzJ49OwceeGBb9gEAAAAAAAAAjESKA9pjSwlAqw/Yb2tuJBUJAAAAAAAAAAzK2rVrs3Tp0jz00ENt23n00UfnzDPPzIQJE9q2EwAAAAAAAABgJFIcMDitFgMMt907QqEBAAAAAAAAsEOWL1+exYsXZ9WqVW3ZN23atMyZMyf77bdfW/YBAAAAAAAAAIx0igMAAAAAAAAAaMSaNWuyZMmSPProo23ZV0rJcccdl9NOOy3jx49vy04AAAAAAAAAgNFAcQAAAAAAAAAAbVVrzWOPPZabbropb731Vlt27rbbbpkzZ0723nvvtuwDAAAAAAAAABhNFAcAAAAAAAAA0DarVq3K4sWLs3z58rbsK6XkpJNOyimnnJLu7u627AQAAAAAAAAAGG0UBwAAAAAAAACww2qtefjhh3PzzTdn3bp1bdm5xx57ZO7cudlzzz3bsg8AAAAAAAAAYLRSHDA4dagDAAAAAAAAAAw3K1euzMKFC/PMM8+0ZV93d3dOOeWUnHjiienq6mrLTgAAAAAAAACA0UxxQOvKUAcAAAAAAAAAGE5qrbn//vtz6623Zv369W3Zuffee2fOnDnZbbfd2rIPAAAAAAAAAGAsUBzQmkOGOgAAAAAAAADAcPLGG29kwYIFef7559uyb9y4cTn99NNz3HHHpRS97gAAAAAAAAAAg6E4oAW11uVDnQEAAAAAAABguHjyySdz4403ZuPGjW3Zt++++2bOnDnZeeed27IPAAAAAAAAAGCsURwAAAAAAAAAwKBMnz49EyZMyJo1a3Zoz/jx43PWWWflqKOOSimlTekAAAAAAAAAAMaerqEOAAAAAAAAAMDIMmnSpMyaNWuHdhxwwAG55JJLcvTRRysNAAAAAAAAAADYQeOGOgAAAAAAAAAAI8/MmTPz6KOP5oknnhjUdRMnTsysWbNy2GGHKQwAAAAAAAAAAGgTxQEAAAAAAAAADFopJeeee26ee+65rF27tqVrZs6cmXPOOSeTJ09uOB0AAAAAAAAAwNjSNdQBAAAAAAAAABiZpkyZkrPOOmvAucmTJ+d973tfzj//fKUBAAAAAAAAAAANGDfUAQAAAAAAAAAYuY444og8+uijefrpp/s8P/vsszNx4sQOJwMAAAAAAAAAGDu6hjoAAAAAAAAAACNXKSWzZ8/O+PHj3/H6TjvtlA984AM577zzlAYAAAAAAAAAADRMcQAAAAAAAAAAO2TatGk544wz/vHzY445JvPmzcsBBxwwhKkAAAAAAAAAAMaOcUMdAAAAAAAAAICR75hjjslLL72UI488MjNmzBjqOAAAAAAAAAAAY0rXUAcAAAAAAAAAoLPWrFmTe++9t607Syk577zzlAYAAAAAAAAAAAyBcUMdAAAAAAAAAIDOqLXm0UcfzZIlS/LWW29lp512ysEHHzzUsQAAAAAAAAAA2EGKAwAAAAAAAADGgFWrVmXx4sVZvnz5P762ePHizJgxIxMnThzCZAAAAAAAAAAA7KiuoQ4AAAAAAAAAQHNqrXnwwQdz9dVXv6M0IElWr16dm2++eYiSAQAAAAAAAADQLuOGOgAAAAAAAAAAzVi5cmUWLlyYZ555ps+Zhx9+OIceemgOOOCADiYDAAAAAAAAAKCduoY6AAAAAAAAAADtVWvNvffem6uvvrrf0oAtFi1alPXr13cgGQAAAAAAAAAATRg31AHYpJQyJcn0JJN7fXRvPVdrXdjhaAAAAAAAAMAI8vrrr2fBggV54YUXWr7mzTffzK233ppzzjmnwWQAAAAAAAAAADRFcUCHlVJmJDk9ySlJTk4yM8n+SXZu4fIa/zcDAAAAAAAAtqGnpyc/+9nPcvvtt2fjxo2Dvv6+++7LzJkzM2PGjAbSAQAAAAAAAADQJA+hd0ApZVaSjyb5QJLjtj7ufCIAAAAAAABgNHnllVeyYMGCvPzyyzu0Z+HChbn44oszbpy3kgEAAAAAAAAARhLf7dGQUsquSf5pksuTHLnl5T7Gaysr2xBr06JSLkjy2RZGNyT5J7XWt9p1bwAAAAAAAKB9Nm7cmDvvvDN33XVXenp6dnjfG2+8kUcffTRHHnnkwMMAAAAAAAAAAAwbigParJQyLcn/k+SfJ9k5737gv6+SgP6KAVopFhiMJUm+kmSXfmbK5vt+K8nftfn+AAAAAAAAwA568cUXs2DBgrz22mtt2Tdp0qTMmjUrhx56aFv2AQAAAAAAAADQOYoD2qiU8k+S/K8ku+ftIoCtH/rvryCgI2qtK0opf5Tk97IpX1+ZSpLPRnEAAAAAAAAADBsbNmzIbbfdlnvvvTe1tqeD/NBDD82sWbMyefLktuwDAAAAAAAAAKCzFAe0QSllRpIvJLkg2y4MGPKygG34kyT/KslOeXe5wRYlyaxSymG11mUdSwYAAAAAAABs03PPPZcFCxZkxYoVbdk3ZcqUnHvuuTn44IPbsg8AAAAAAAAAgKGhOGAHlVJOT3J9kn2y6UH74V4YkCSpta4opXw5yW9nU+ats/b+Oj6R5P/tUDQAAHbQcccd94+/f/TRR7N69eqWr500aVIOP/zwJmIleWc2AAAAAFq3bt263Hrrrbn//vvbtvPII4/MWWedlYkTJ7ZtJwAAAAAAAAAAQ0NxwA4opXwiyZeSTN780paH7YdtYcBW/jTJb+btwoNt5S5JPhXFAQAAI8YVV1yRJLnpppvyO7/zO4O69k//9E8za9asJmIBAAAAsJ2eeuqpLFq0KG+++WZb9k2bNi2zZ8/O/vvv35Z9AAAAAAAAAAAMPcUB26mU8skkf5dNf4Y7UhhQt/q8Y6UDtdZHSyk/SHJBHzm2lAkcW0o5vNb6SKeyDTellIlJjkiyf5JpSaYkWZ1kZZKnkzxUa103dAkBAN6pp6cnf/Znfzaoa04++eScffbZDSUCAAAAYLDWrl2bJUuW5JFH2vc23bHHHpszzjgj48ePb9tOAAAAAAAAAACGnuKA7VBKuTDbXxqw9QP6/7h2R3Ntp7/LpuKAgXwoyR83G2V4KaWcleRjST6Q5Ngk3f2Mbyyl3Jfku0m+UWtd2nxCAIC+3XjjjXn44YcHdc1v/dZvpZSh+mspAAAAAL09/vjjWbx4cdasWdOWfbvsskvmzJmTGTNmtGUfAAAAAAAAAADDi+KAQSqlHJ3Blwb0LgvYenZtkmeSvJFkTZJZm+c79cTWdUlWJJk2wH0/mDFSHFBK+VSSf53klEFc1p3khM0f/7aUcnuS/1Fr/VoDEUeFUsq/T/JfWxw/pNb6RINxAGBU2bBhQ/7iL/5iUNfMnj07J554YkOJAAAAAGjVmjVrsnjx4jz++ONt2VdKyQknnJBTTz0148Z5exgAAAAAAAAAYLTynSGDUErZKck1SXZKa6UB2yoMuDubfir9zUnuqLU+u9U9etqTtjW11rdKKd9I8gt5Z95/HMmm7LNLKRNrrWs7ma+TSilHJfnLJHPasO7UJH9fSvm1JL9Wa32oDTtHjVLKEUn+01DnAIDR6hvf+EaefvrpludLKfmN3/iNBhMBAAAAMJBaa5YtW5YlS5Zk7dr2vCW3++67Z+7cudlrr73asg8AAAAAAAAAgOFLccDg/NckR2VwpQElycpseiD9r2qty5qLt92+lU3FAVsrefvrmJDkzCQLOxWqk0opH0/yN9lUCtFO5yX5aSnln9Rar2vz7hGplFKS/FWSSUOdBQBGo7feeitXXHHFoK75wAc+kMMPP7yhRAAAAAAM5M0338yiRYvy1FNPtWVfV1dXTj755Jx00knp7u5uy04AAAAAAAAAAIY3xQEtKqWclOQ3MnBpQO/zniR/muT3a62vNBpwx3w/yfps+s9DTd9f27kZhcUBpZTfTPK/038RxI7YKck1pZTfqrX+eUP3GEkuTzJ3qEMAwGj1ta99LS+//HLL893d3fnVX/3VBhMBAAAA0Jdaax588MEsXbo069evb8vOvfbaK3Pnzs3uu+/eln0AAAAAAAAAAIwMigNa98dJutP/g/W9SwOeTPKpWuvS5qPtmFrrylLKzUnm5O2vYVvO7lCkjiml/GKaLQ34x1sl+T+llDdrrX/b8L2GrVLKjCT/fahzAMBotWLFinz5y18e1DUXX3xx9ttvv2YCAQAAANCnFStWZMGCBXnuuefasq+7uzunnXZajj/++HR1dbVlJwAAAAAAAAAAI4figBaUUs7O2w/V91casOVsaZILa60vdSBeu9yUTV/jtmz52k7uXJzmlVLOSHJFWisNWJLkK5t/fSLJyiTTksxMMivJZUnOHOiWSa4opTxQa71tO2OPdH+WZJehDgEAo9Xf/u3fZuXKlS3PT5o0Kb/8y7/cYCIAAAAAtuX+++/P0qVLs2HDhrbs22effTJ37tzssou3YQAAAAAAAAAAxirFAa35NwOcb3mwvmZTacD7a61vNp6qvZb08fqWrytJZpRSdq+1vtqhTI0ppeyc5O+TjB9g9JEkv15r/dE2zl5Lcvvmj/9dSvn5JH+e5NB+9k1I8rVSykm11hWDTz5ylVI+nuSioc4BAKPVyy+/nK9+9auDuubSSy/NHnvs0VAiAAAAAPrS09PTltKA8ePH54wzzsgxxxyTUlrpygYAAAAAAAAAYLTqGuoAw10pZXqSD+Xth+e31vv15Uk+PAJLA5LkthbnTmg0Ref85ySHDDDzwySn91Ea8C611h8kOS3JjwcYPSTJ77ayc7QopeyS5P/0cfxYJ7MAwGj1hS98IWvXrm15fuedd84v/MIvNJgIAAAAgL4ce+yx2XvvvXdox3777Zd58+bl2GOPVRoAAAAAAAAAAIDigBZcnKR78++3/o6b2uv1DUkuqbW+1qlg7VRrfTHJq1s+7Wf00A7EaVQp5ZgkvznA2M1JLqy1vjGY3bXW15N8JMmtA4z+dinl6MHsHuH+R5IZfZz9RieDAMBo9OKLL+b6668f1DW/9Eu/lGnTpjUTCAAAAIB+lVIyd+7cdHd3Dzy8lYkTJ2bu3Ln54Ac/6N/vAAAAAAAAAADwjxQHDOySAc5LNj1o/39qrbd3IE+THsi7yxG2dkgngjTs80nG9XP+apJP1lpXb8/yWuuqJJ9I8no/Y+OS/P+2Z/9IU0qZm+RX+jj++1rr9zuZBwBGo+uvvz4bNmxoeX6vvfbKJz7xiQYTAQAAADCQXXfdNaeeeuqgrjnooIMyb968HHnkkSlloLf1AAAAAAAAAAAYSxQH9KOUMj7JWdlUDLC13q+tSvL7HQnVrEdamDm46RBNKqXMTHLxAGP/sdb61I7cp9a6PJsKCvpzSSnl4B25z3BXSpmU5K+y7UKK15P8807mAYDRqKenJ9dff/2grrn88sszadKkZgIBAAAA0LITTjghe+2114BzkydPznvf+978/M//fKZOndqBZAAAAAAAAAAAjDSKA/p3apItT1Rt68Hnkk0FAl+utb7asVTNea6FmX0aT9Gs30zS3c/5I9n0oHs7/HmSx/o5796cZzT7T0mO6OPs39ZaX+hkGAAYjZYsWZIXX3yx5fkDDjggH/3oRxtMBAAAAECrurq6MmfOnHR19f227WGHHZZLLrkkhx56aErZ1luWAAAAAAAAAACgOGAgZ7Y4d2WjKTrn+QHOS5I9OhGkCaWU7iSfHmDsj2qtG9txv1rrhiR/OsDYpaWUUfnfw1LKCUn+dR/HN6d9BQ0AMKZde+21g5r/9V//9YwbN66hNAAAAAAM1h577JGTTjrpXa9PnTo173//+/Oe97wnkyZNeveFAAAAAAAAAADQy6h8YLmNDu/j9drr9y/WWm/tRJgOeKmfsy1f84gtDkjyniQz+jl/K+0vgfibJOv6Od83yXltvueQ21yGcEWS8ds43pDkV2utdRtnAMAgvPjii1m8eHHL8/vuu2/OP//8BhMBAAAAsD1OPvnk7Lbbbv/4+VFHHZV58+bloIMOGsJUAAAAAAAAAACMJIoD+ndIP2clmx6mb/1JreFvTQszOzWeojkfGeD8O7XWle28Ya319SQ3DDA2UK6R6HeSnNHH2f+qtd7TyTAAMFp94xvfSE9PT8vzH/vYx9LV5R8BAAAAAIab7u7uzJ07NzvvvHM+9KEPZc6cOZk4ceJQxwIAAAAAAAAAYATx1FD/Ds6mcoD+3NeBHJ3yVgszI/k7lAb68brfaei+A+19X0P3HRKllIOT/Jc+jh9P8nudSwMAo1dPT0+uv/76lue7u7tz4YUXNhcIAAAAYAx566238tprr7V15/Tp0/OJT3wi++23X1v3AgAAAAAAAAAwNigO6N8uLcw81niKzlnXwsyExlM0oJQyI8nRA4z9sKHb3zjA+bGllH0auvdQ+L9JpvZx9hu11jWdDAMAo9XNN9+cF154oeX5uXPnZo899mgwEQAAAMDoV2vNo48+mquvvjo33nhjNm7c2Nb9XV3evgUAAAAAAAAAYPv4zpP+9fXwc2+vNp6ic1opBehpPEUzzhjg/Kla61NN3LjW+kSS5wYYO72Je3daKeUXkry/j+Ov1Vq/18k8ADCaXXvttYOav+iiixpKAgAAADA2rF69OjfeeGN+9KMfZc2aNXn99ddz++23D3UsAAAAAAAAAABIojhgIFNamFnVeIrOmdzCzEj9afGnDHB+R8P3/+kA5yc3fP/GlVL2TPKHfRy/keSfdy4NAIxuL774YhYtWtTy/IwZM3LmmWc2mAgAAABg9Kq15qGHHsrVV1+dJ5544h1nd999d1566aWhCQYAAAAAAAAAAL0oDuhfbWFmXOMpOmeXFmZGanHASQOc/6zh+w+0f8QXByT5kyR79nH272qtz3cyDACMZt/61rfS09PT8vxFF12Uri5/9QcAAAAYrDfffDM33HBDFixYkLVr177rvNaahQsXZuPGjUOQDgAAAAAAAAAA3ubpof6tbmFmcuMpOmf/FmZa+TMZjo4Y4PyRhu+/bIDzwxu+f6NKKRckubSP46VJ/m8H4wDAqNbT05Prrruu5fmurq585CMfaTARAAAAwOhTa819992Xq6++Ok8//XS/s6+88kruvvvuDiUDAAAAAAAAAIBtGzfUAYa5VUl2GWCmr5+wPhId2M9Z2fzry50I0k6llJLk4AHGBnqwf0cNtP/ghu/fmFLKTum7GGBDks/WWmsHIwHAqLZ06dI8//zzLc/PnTs3e+21V4OJAAAAAEaXN954IwsXLsxzzz3X8jV33HFHDjnkkOy2224NJgMAAAAAAAAAgL51DXWAYe7NFmYOaDxF5xw3wHlN8mQngrTZ3kkmDTDzbMMZBto/tZQyveEMTfn9JAf1cfaHtdZ7OhkGAEa7a6+9dlDzF110UUNJAAAAAEaXWmvuvvvuzJ8/f1ClAUnS09OTBQsWRJcyAAAAAAAAAABDRXFA/55KUgaYObwTQZpWSulKclI2lQP0ZyQWB+zbwkzrP7Z3+7Syv5Wcw0op5Ywkv93H8RNJfq9zaQBg9HvppZeycOHCludnzJiRs846q8FEAAAAAKPDq6++muuvvz633HJLNm7cuF07Xnzxxdxzjz5lAAAAAAAAAACGxrihDjDMPd7PWc2mUoHTOpSlaaclmZy3v66+9PdnMlztMcD5ilrr2iYD1FpXl1LeTLJTP2MD5RxWSinjk3whfReQ/GatdXUHIwHAqPetb30rPT09Lc9/7GMfS1eXrjAAAACAvmzcuDF33XVX7rzzzkH9e5e+3HbbbZk5c2Z22qm/t4QAAAAAAAAAAKD9FAf0r5WH5A8rpexVa32p8TTN+nCLc3c1GaIhuw9wvqIjKTbdp7/vEhso53Dzb5Ic38fZ1bXW73YyTCeUUs7ewRXHtSUIAGNST09Prrvuupbnu7q68pGPfKTBRAAAAAAj20svvZQFCxbk1Vdfbcu+iRMn5uyzz87UqVPbsg8AAAAAAAAAAAZDcUD/7uvj9ZKk9vr9h5J8uROBGnRx3v6aeuv9Wk+SOzoTp612G+B8ZUdSDHyfEVMcUEo5Msl/7OP4jSS/08E4nbRkqAMAMHYtXbo0zz33XMvzs2fPzvTp0xtMBAAAADAybdiwIbfffnt+9rOfpdZtvT02eIccckjOOeecTJkypS37AAAAAAAAAABgsBQH9K/Vh4Q/lRFcHFBKmZ3k6GwqCSjbGtn86wO11tUdC9Y+kwY4X9WRFMmbA5wPlHNYKKWUJFckmdjHyL+vtbb+VCMA0JLrrrtuUPMXX3xxQ0kAAAAARq7nn38+CxYsyBtvvNGWfZMnT84555yTmTNntmUfAAAAAAAAAABsL8UB/ai1vlJKeSjJEdn2Q/VbXju/lDKz1vpYpzO2SSs/Hb4m+UnDOZoyYYDzDR1JMfB9Bso5XPxqktl9nN2S5P92MAsAjAkvv/xyFixY0PL8Pvvsk7POOqvBRAAAAAAjy/r163Prrbfm/vvvT621LTsPP/zwnH322Zk0aUR0QwMAAAAAAAAAMMopDhjYT5IcmU0PzvdWer1WkvzHJP+sc7Hao5RyRpKPZ9vFCFv7RvOJGqE4oE1KKfsm+YM+jjck+dVaa08HIwHAmPDNb34zPT2t/0/sxz72sXR1dTWYCAAAAGDkePrpp7No0aKsXLmyLfumTp2a2bNn58ADD2zLPgAAAAAAAAAAaAfFAQO7Opt+wnpftjxw/wullD+std7bmVg7rpTSleSP+xnpXZbwejaVKIxEAz01t7EjKQa+T3dHUuyYP0uySx9nf1xrvbuTYYbArB28/rgkf9WOIACMHT09Pbn++utbnu/q6spHP/rR5gIBAAAAjBBr167N0qVL89BDD7Vt59FHH50zzzwzEyYM+z5oAAAAAAAAAADGGMUBA/tJkheSTM/bJQFblLz9cH13ki+XUs6stXbqQfQd9W+TnJV3f129bfkarx9BX9fWNgxw3qn/Hgx0n/UdSbGdSinzknysj+PlST7fuTRDo9Z6845cX0pf/zUDgL7deuutefbZZ1ueP/fcczN9+vQGEwEAAAAMf8uXL8+iRYuyevXqtuzbeeedM2fOnOy7775t2QcAAAAAAAAAAO2mOGAAtdaeUsrXknwub5cE9LblwfqS5OQkf5jkdzqXcPuUUs5P8rvZ9te0LX/eXJrGrRvgvFP/PRg/wPlAOYdMKWXXJP+7n5HfrLW25zvvAIB3uPbaawc1//GPf7yhJAAAAADD35o1a7JkyZI8+uijbdlXSslxxx2X0047LePHD/RWDwAAAAAAAAAADB3FAa35oyS/maQrb5cE9Na7POC3SimP1Vr/pLMRW1dKOTnJNUm6t7y0jbEtX09Ncmut9fYOxWvC+gHOJ3QkxQguDkjyP5Ps08fZNbXW73QyDACMFS+//HIWLFjQ8vzee++dWbNmNZgIAAAAYHiqteaxxx7LTTfdlLfeeqstO3fbbbfMmTMne++9d1v2AQAAAAAAAABAkxQHtKDWuryU8vUkn86mB+m3pXd5wB+WUsbXWv9npzK2qpQyJ8n1SaZl2yUI2/KHTWbqgDcHON+pIyk2/Zn3Z6CcQ6KUcl6Sf9bH8Yokn+tYGAAYY771rW9l48aNLc9/7GMfS1dXV4OJAAAAAIafVatWZfHixVm+fHlb9pVSctJJJ+WUU05Jd3f3wBcAAAAAAAAAAMAwoDigdb+f5JIk3en7gfve5QH/rZRyTJJfr7Wu7VjKfpRSfjvJf0syKX0XICRvfw01yW211qs7EK9Jrw5wvnNHUgx8n4FydlwpZVKSv0rfBRP/odb6bAcjAcCY0dPTk+uuu67l+a6urlx44YUNJgIAAAAYXmqtefjhh3PzzTdn3bp1bdm55557Zu7cudljjz3asg8AAAAAAAAAADpFcUCLaq0PlFL+JMm/TP8P3fcuD/jFJGeXUn6t1rqgAzG3HaiUo5L8SZLze+VL+n4YvLd/2VSuDnplgPNdOxEiyS4DnA+Ucyh8PsnhfZzdmuTPO5gFAMaU2267Lc8+23o/z7nnnpvp06c3mAgAAABg+Fi5cmUWLlyYZ555pi37uru7c8opp+TEE09MV1dXW3YCAAAAAAAAAEAnKQ4YnM8n+WSS/fJ2OcC29C4PODLJP5RSvpPkv9Rab+tE0CQppRyX5J8n+SdJutNaaUDtNXdVrfWmhmN2wssDnE8spexaa329qQCllN2TTBhgbFgVB5RSTkzyr/o43pDkV2utPR2MBABjyrXXXjuo+YsuuqihJAAAAADDR6019913X2677basX7++LTv33nvvzJkzJ7vttltb9gEAAAAAAAAAwFBQHDAItdbVpZRfSvL9JF1prTxgy+8/lORDpZS7k3w5ybdqrY+3O2Mp5YjN95qX5Kxe909aKw3Y8uvyJL/Z7nxD5MkWZvZO8nqDGfZuYaaVnB1RSulO8oX0/f8j/qTWelfnEgHA2PLKK6/kJz/5Scvz06dPz6xZs5oLBAAAADBM9PT05IEHHmhLacC4ceNy+umn57jjjkspfb19BgAAAAAAAAAAI4PigEGqtf5DKeU/Jfl/8/aD9n3ZUh7Qu2DgpCR/lOSPSimPJbklye1JliV5YqD7l1IOSTJ588f0JPsnOWjz3pOT7LPV/ZOBCwO2ntmQ5BdqrSsHyjMS1FrfLKW8kmSPfsYOSvJQgzEOHuD8xVrrqgbvP1ifTnJaH2dPJvl8B7MAwJjzjW98Ixs3bmx5/mMf+1i6u7sbTAQAAAAwPHR3d2fOnDn55je/mVoHequub/vuu2/mzJmTnXfeuY3pAAAAAAAAAABg6CgO2A611j8opZya5OK8sxRgW7b18P6W1w5NMjObHtLe1jVbf16yqWBgoHv9Y9R+zvq6vib5nVrrTS3MjySPp//igMOT/KDB+x82wPnjDd57e+zZz9lNST7d4Z+888nN5Q99WVlr/VrH0gBAg9atW5evfa31/1nr6urKhRde2GAiAAAAgOFl7733znHHHZd77rln0NeOHz8+Z511Vo466qh0+L0OAAAAAAAAAABolOKA7XdpkuuSfDADlwck7y4Q2Pr1VvU3v727t+SvSf6g1voXg8w0EtyX5LR+zo9s+P4D7b+v4fu306fz7rKLpv3BAOfLkygOAGBU+MEPfpBXXumvL+edzjnnnOy9994NJgIAAAAYfk4//fQsX748K1asaPmaAw88MLNnz87UqVMbTAYAAAAAAAAAAEOja6gDjFS11vVJPp7kxrz90P3WD+5vS+n1kV7XtXr91vNbX7v1/lb2bfGXtdb/0OJ1I80dA5yf3PD9Txng/M6G7w8AjAC11lx55fQO7zUAAQAASURBVJWDuuaiiy5qKA0AAADA8DVu3LjMmTOnpdmJEyfm537u5/L+979faQAAAAAAAAAAAKOW4oAdUGtdl+TDSb6UdxYBtKps42N7rhlsWcAWvcsG/kut9TcGef1IMlBxwEmllO4mblxKGZfkxAHGFAcAALntttuybNmyluenT5+ec845p8FEAAAAAMPXvvvum6OPPrrfmZkzZ+YTn/hEDj/88JQy2LfSAAAAAAAAAABg5FAcsINqretrrb+c5F8l6dnycgZXINBpW/KVJOuT/Hqt9fNDG6lxP03yVj/nOyU5taF7n5FkSj/nbyW5vaF7AwAjyJVXXjmo+U996lPp7m6k+wgAAABgRDjzzDMzderUd70+efLkvO9978v555+fyZMnD0EyAAAAAAAAAADoLMUBbVJr/cMks5M8nE0P5CfDs0BgS56STVnPrrX+5RDm6Yha61tJbhpg7H0N3f78Ac4Xbc4HAIxhjz32WJYsWdLy/OTJk3PRRRc1mAgAAABg+JswYUJmz579jteOOOKIfOITn8ghhxwyRKkAAAAAAAAAAKDzFAe0Ua11aZKTkvyPJBsyfAoEaq+PkqQnyZ8lOaXWeucQ5uq0Gwc4/3hD9503wPkPGrovADCCfOUrXxnU/IUXXphp06Y1lAYAAABg5DjwwANz+OGHZ6eddsoHPvCBnHfeeZk4ceJQxwIAAAAAAAAAgI5SHNBmtda1tdZ/k+TIJH+bTQ/pb10g0KkSgd73Kps/fpDkpFrrb9daV3cox3Axf4DzU0opR7bzhqWU45Ic389IzcC5Oq7W+se11tKpjxYiHTLAjoOb/jMBgCa9+uqr+e53v9vyfCkln/70pxtMBAAAANCctWvXptb2vl02a9aszJs3LwcccEBb9wIAAAAAAAAAwEihOKAhtdYnaq2/lOTYJH+e5I28/fB+8s4SgXZ9Z9S2dpZsKi+4NsncWusFtdb72nS/EaXW+miSpQOM/Xabb/u5Ac6X1FqfaPM9AYARZv78+Vm3bl3L8z/3cz+X/fbbr8FEAAAAAM14/PHH8/Wvfz333ntvW/dOnDgxEyZMaOtOAAAAAAAAAAAYSRQHNKzW+nCt9beS7JvkF5N8J8lbebtEoK8ige35yFZ7703ye0kOrbXOq7UuavJrHSH+eoDzf1pKmdGOG5VS9k/yCwOMfbkd9wIARq5169bl6quvHtQ1n/nMZxpKAwAAANCMNWvW5Ic//GFuvPHGrFmzJrfddltWrFgx1LEAAAAAAAAAAGDUUBzQIbXWt2qtf1dr/UiS3ZN8MMn/SvKTJG/knQ/8b+/H8iRfT/IvkhxWaz2x1vp7tdYnO/RljgR/l+TFfs6nJPmDNt3rvyWZ1M/5C5vzAABj2A033JDXXnut5fnjjjsuxx9/fIOJAAAAANqn1ppHHnkkX//61/PYY4/94+sbNmzIwoULU2vt52oAAAAAAAAAAKBV44Y6wFhUa12b5HubP5IkpZRDkhyWZP/NH/smmZZkcjY9fD4xyfokqzd/rEzydDaVBTyZ5IFa68ud+ypGplrrW6WUP0nyX/sZ+yellOtrrddt731KKZ9IcukAY3+8+T8L262UcnCSxwcY+71a6+/uyH0AgGbUWnPVVVcN6prLLrsspZSGEgEAAAC0z6pVq7Jo0aI8+eS2O66fffbZPPjggzn66KM7nAwAAAAAAAAAAEYfxQHDRK318Qz8ADjt8cdJfi3JAf3M/E0p5Zla662DXV5KOSvJFwcYW57kTwa7GwAYXW6++eZ3/KS9gcyYMSPvec97GkwEAAAAsONqrXnwwQdzyy23ZN26df3OLl26NAcccEB22mmnDqUDAAAAAAAAAIDRqWuoA0Cn1VpXJ/l/BhibluQHpZQPD2Z3KeXCJN9PMtB3t/3LWuuawewGAEafq666alDzn/70p9Pd3d1QGgAAAIAdt2LFinznO9/JokWLBiwNSJL169dn0aJFqbV2IB0AAAAAAAAAAIxeigMYk2qt85N8ZYCxXZJ8s5RyVSnlqP4GSynHlFL+Psn1SXYeYO9VtdZrWg4LAIxKy5Ytyy233NLy/JQpU3LhhRc2mAgAAABg+9Vac88992T+/Pl59tlnB3XtU089lWXLljWUDAAAAAAAAAAAxoZxQx0AhtCvJjk1yZH9zJQklya5tJRyZ5IlSR5P8maSaUkOSXJOkhNbvOeDSX5tewMDAKPHVVddNaj5iy66KFOnTm0oDQAAAMD2e+2117Jw4cK88MIL271jyZIl2X///TN58uQ2JgMAAAAAAAAAgLFDcQBjVq31zVLK+5MsSnJAC5ecvPljez2Z5P211jd3YAcAMAq8/PLLueGGG1qe7+rqyqc+9akGEwEAAAAMXk9PT+6+++7ccccd2bhx4w7tWrt2bRYvXpz3ve99bUoHAAAAAAAAAABji+IAxrRa6/JSynuSfC/JoQ3ealmSC2qtTzZ4DwBghLj66quzYcOGluff+973ZsaMGQ0mAgAAABicV155JQsWLMjLL7/cln0TJkzIgQcemFprSilt2QkAAAAAAAAAAGOJ4gDGvFrrslLK6Um+muT9Ddzie0k+XWt9vYHdAMAI89Zbb2X+/PmDuuYzn/lMQ2kAAAAABmfjxo254447cvfdd6enp6ctOw866KCce+65mTp1alv2AQAAAAAAAADAWKQ4AJLUWl9LckEp5ReT/Pck09uw9sUk/7rW+rdt2AUAjBLf/e5388Ybb7Q8f+KJJ+bYY49tMBEAAABAa1544YUsXLgwr732Wlv2TZo0Keecc05mzpyZUkpbdgIAAAAAAAAAwFilOAB6qbX+TSllfpJfTPJbSY7ejjX3J/mzJF+uta5uZz4AYGTr6enJlVdeOahrLrvssobSAAAAALRmw4YNue2223Lvvfem1tqWnYceemhmzZqVyZMnt2UfAAAAAAAAAACMdYoDYCu11lVJ/jzJn5dSjkhyQZJTkhybZL8k05JMSbI6ycokT2dTWcAdSW6otT7SwaxPJBkNP4Ln9wY4f70TIQCgaTfddFOefPLJluf322+/nHfeec0FAgAAABjAs88+m4ULF2bFihVt2TdlypTMnj07Bx10UFv2AQAAAAAAAAAAmygOgH7UWh9O8vBQ5xjtaq2/O9QZAKATrrrqqkHNX3rppenq6mooDQAAAEDf1q1bl1tuuSUPPPBA23YeeeSROeusszJx4sS27QQAAAAAAAAAADZRHAAAAB3w0EMP5ac//WnL8zvttFM+8pGPNJgIAAAAYNuefPLJLFq0KKtWrWrLvmnTpmX27NnZf//927IPAAAAAAAAAAB4N8UBAADQAVddddWg5j/+8Y9nypQpDaUBAAAAeLe33norN998cx555JG27Cul5JhjjskZZ5yR8ePHt2UnAAAAAAAAAACwbYoDRphSym5JzkhyRJIDk+ybZGqSyUk2Jlm1+eOFJMs2f9xZa319KPICAJC8+OKL+f73v9/yfHd3dz71qU81mAgAAADgnR577LHcdNNNWbNmTVv27bLLLpk7d2722WeftuwDAAAAAAAAAAD6pzhgBCilzEpyUZIPZ1NhwGDVUsrPkvxDkq/WWm9vZz4AAPr39a9/PRs3bmx5/ud//uczffr0BhMBAAAAbLJ69ercdNNNefzxx9uyr5SSE044IaeeemrGjfNWJAAAAAAAAAAAdIrv1hmmSinjkvxSkt9JcsyWl7d3XZKTkpyY5F+UUu5L8r+T/HWttfUn2AAAGLTVq1fnmmuuGdQ1l156aUNpAAAAADapteaRRx7JzTffnLVr17Zl5+677565c+dmr732ass+AAAAAAAAAACgdYoDhqFS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A/1bygO2/H7nJBdv/uhP78KA3p8PZMv9/rLW+mqL1zTpoiTd2fafU+8ygadrrc93LBUAQIfVWnPVVVcN6prLLrusoTQAAADA9qi1ZtmyZVmyZEnWrl3b59zdd9+dQw45JHvttVcH0wEAAAAAAAAAADSna6gDNOhfJVmx+fe1v8G8swRgywP0A31sme19fX96Z3g1yX9p4ZpO+KcDnG/5Whd0IAsAwJC5+eabt/lTCPsyY8aM/NzP/VyDiQAAAIDBePPNN/O9730vP/7xj/stDUg2FQwsXLgwGzdu7FA6AAAAAAAAAACAZo3a4oBa69NJfiOtPdSfvF0IkLxdCtDfx9bXtHqPmuQ/1FrfGMR1jSilHJfkrLxdltCfHzefCABg6Fx55ZWDmv/0pz+d7u7uhtIAAAAAraq15oEHHsjVV1+dp556quXrXnnlldx9990NJgMAAAAAAAAAAOicUVsckCS11q8k+VLefmC/FWUQHy1H6ZXhR7XWvxrEtU367CBmFQcAAKPWI488kltvvbXl+alTp+bCCy9sMBEAAADQihUrVuQ73/lOFi1alPXr1w/6+jvuuCOvvfZaA8kAAAAAAAAAAAA6a1QXB2z2q0l+mMGVB7RT73u+kOSXhiDDu5RSpib5hfT9Z9L79cdqrU80HgoAYIh85StfGdT8RRddlKlTpzaUBgAAABhIrTX33HNP5s+fn2effXa79/T09GTBggWpdSjeQgIAAAAAAAAAAGifcUMdoGm11g2llIuS/CjJGXn7gfjSidv3utfqJBfWWrf/u9fa67NJdsmmjH39WWwpW/hup0IBAHTayy+/nBtuuKHl+a6urnzyk59sMBEAAADQn9deey0LFy7MCy+80LZ9r7zySvbcc8+27AMAAAAAAAAAABgKo744IElqratKKT+X5GtJPpxND8P398B8W267+dfepQG3NXi/lpVSxiX5F3k740AUBwAAo9bXv/71bNiwoeX5888/PzNmzGgwEQAAALAtPT09ufvuu3PHHXdk48aNbdm53377Zc6cOZk2bVpb9gEAAAAAAAAAAAyVMVEckCS11jWllI8l+a9J/nU2PdDf++H+tt6u195nk1xca72lzffYEZcm2T99lyf0LhRYneTHnQgFANBpb731VubPnz+oay677LKG0gAAAAB9efnll7NgwYK88sorbdk3YcKEnH32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2lWU84vhmWeeierq6qL++vCLdu/eHTfffHNs2LCh2FEAAADarazYAQCA7m/r1q2ZZ6dMmeIJ2kC3M3HixJg4ceIl/6XexIkT48Ybb4y+ffsWOBkAAAAAAAAA9Ezbt29v1+ea3vKWt+SYpnt773vfGz/+8Y8zzQ4cODDmzp0bkydPjjFjxkS/fv2itLQ0zpw5E/v27YstW7bEmjVr4uzZs+3OcejQofjABz4QjzzySLuv7U4ef/zx+MhHPhKf+9znih3l57z00kvxpje9KU6dOpVpfuLEiTFz5syYOHFiDBkyJPr16xfnz5+PkydPxu7du6O+vj6ef/75SNO03Vm+/vWvx9133x1vfetb233tpfrKV74S73//+6O1tbXDziy21atXx+233x7Hjx8vdpRXOHr0aLz+9a+PpUuXxvTp04sdBwAAIDPFAQBA7rZv3555dsqUKTkmASieG2+8MV566aVoamrKfE2fPn1i4cKFnlgAAAAAAAAAAAW2dOnSds3fdNNN+QTp5r7yla/EN77xjYvOjB49On791389fumXfinmzJkTJSUlF51vbm6O73znO/HFL34xvv/977crz6OPPhpPPfVU3HLLLe26Lg9JksTVV18dc+fOjWnTpsXUqVNj7NixMWLEiBg6dGj07t07evfuHU1NTXHixIk4ceJEHD9+PDZt2hTr1q2LtWvXRn19fZw/f77dZ3/+85+PG264Id7+9rfn8DNrv5aWlnjHO94Rhw8fvujcjTfeGL/2a78Wd911V4wePbrNvfv3748HHnggPvvZz8bevXvblekP/uAP4o1vfGNUVFS067pL8c///M/xvve975KvLykpierq6rjxxhtj3rx5MXHixBg/fnz0798/+vXrF62trXH27Nk4fvx47Nu3L3bv3h0bN26MhoaGWL58eZw4caKAP5tsNmzYEIsXL85cFPGLpk6dGrfcckvMmzcvpk6dGldeeWUMHjw4+vTpEy0tLXH69OnYs2dPbN26NZYvXx7f+c53Ytu2be064+jRo/HWt741nn766aisrLyknAAAAB0tuZQGPQDaL0mSBRGx4r9+bcWKFbFgwYIiJYKOkaZpLF68OHMj7P/8n/9TOzfQbW3bti1+9KMfZZqdMmVK3HDDDR3yl48AAAAAAABcvt27d7/i6cd9+vSJCRMmFCcQABf1oQ99KL7whS9kmu3fv38cO3Ysyso8sy0i4sc//nHcfPPNbc6NHz8+Dh069Ir/Pv7U0KFD45Of/GT85m/+5iV/PuLJJ5+M9773vbFnz57M18yfPz9Wr159SedlMW/evFi3bt2rvnb11VfH7bffHrfffnssWLAgBg4ceFlnHTlyJL7+9a/H3//938dzzz3XrmuHDx8ezz33XAwbNuyyMlzMu971rvja177W5tz06dNj8+bNr/n6woUL43//7/99yZ+5bWpqik9+8pPxl3/5l9HS0pL5ui996Uvx27/925d0ZlZLliyJW2+9NZqbm9t97eTJk+ODH/xgvP3tb48xY8Zc0vmtra1RX18fjz32WDz66KNRX1//ipnKysrMnwHN4tChQzF//vx44YUX2nXd4MGD4z3veU+8973vjWnTprX73NWrV8f//t//Ox5++OFoz300d9xxR3z7299u93kAANDTdPf3yFeuXBk33HDDL375hjRNVxYjz2u5eB0jAMBlOnr0aLveMJ4yZUp+YQCK7Kqrropx48ZddKZfv35x++23x80336w0AAAAAAAAAABy8lo3dr+a173udUoDLsELL7zwmqUBd911Vzz//PPx27/925f1+Yhbb7011qxZE3Pnzs18zdNPPx0rVqxoe7BAxo8fHx//+Mdj48aNsXnz5vjMZz4Tt91222WXBkREDBs2LD7ykY/Epk2b4sEHH4xRo0Zlvvbw4cPxP/7H/7jsDIXwWqUBvXr1ii9+8YtRV1d3WQ/qqqioiE996lPxyCOPRO/evTNf97nPfa5dN5i31969e+Ntb3tbu0sDRo8eHf/0T/8UW7Zsid///d+/5NKAiIiSkpKYO3du/Omf/mmsX78+nn322fjoRz8agwcPvuSdF9PS0hL33HNPu0oDysvL47//9/8eu3btik9/+tOXVBoQEXHdddfFt771rairq2vXjv/4j/+Ir371q5d0JgAAQEdTHAAA5Grbtm2ZZ0tKSmLSpEk5pgEoriRJYtGiRVFeXv6qr0+fPj3uu+++uPLKKzs4GQAAAAAAAAD0HK2trdHQ0JB5fsaMGTmm6Xn++3//7/Hwww8X7En3I0eOjO9973sxefLkzNfcf//9BTn7Yl7/+tfHI488Ejt27IhPfepTuX8f3XPPPbF58+b49V//9czXfPWrX233U987yuDBg2PJkiXxO7/zO5EkSUF2vvnN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TU1N5vmHH344WlpackxEV7Vu3brYtGlTptk//uM/7vDSgJMnT7oxuxMYN25cprm9e/fmnKTjZP05nz59OuckAAAAPYfiAACgoHbu3Jl5duLEiTkmAbqDI0eOxEMPPRQHDx4syL6xY8fGvffeGzNmzIgkSQqyEwAAAAAAAADomt785jdnnj148GD88Ic/zDENXdV3v/vdTHNXXHFF/OEf/mHOaV5p3759HX4mr5T1JvqsJRRdwfjx4zPN+R4FAAAoHMUBAEBB7d69O/Os4gCgLUOHDo0RI0Zc9p6Kioqora2NN73pTTFgwIACJAMAAAAAAAAAurq3vOUt7Zr/p3/6p5yS0JUtWbIk09z73//+qKioyDnNK23evLnDz+SVpkyZkmnu8OHDBXvISrFl/YzomTNn4ujRozmnAQAA6BkUBwAABbVr167Ms4oDgLYkSRI1NTVRWlp6yTvGjx8f9957b0ybNi2SJClgOgAAAAAAAACgK5s0aVLU1tZmnv/mN7/pydi8woYNGzLN3XnnnTkneXUNDQ1FOZefN2fOnMyzy5YtyzFJx2nPzznr/48AAAC4OMUBAEDBtLa2xgsvvJB5XnEAkEVlZWXMmzev3df17t07brnllrj11lujX79+OSQDAAAAAAAAALq697///Zlnm5ub4zOf+UyOaehqTp8+nenp8H369ImZM2d2QKJXWrp0aVHO5edVV1dnnv3BD36QY5KOM3/+/Myza9asyTEJAABAz6E4AAAomH379kVzc3PmecUBQFYzZ86M4cOHZ56fPHly3HfffTF58uRIkiTHZAAAAAAAAABAV/a2t70thg0blnn+/vvvj/379+eYiK5k3759meYmTpxYlM+wNDY2xvLlyzv8XF7p6quvjkGDBmWa/fa3vx1pmuYbqAMMGzYsJk+enGn2+9//fs5pAAAAegbFAQBAwezatSvzbN++fWPkyJE5pgG6k5KSkqitrY2Skov/EaZfv35x2223xS233BJ9+vTpoHQAAAAAAAAAQFdVUVERH/jABzLPnz59Oj760Y/mmIiu5PTp05nmKisrc07y6h599NF2PQyI/JSUlMRtt92WaXbv3r3x4x//ON9AHeSNb3xjprklS5bE8ePH8w0DAADQAygOAAAKZvfu3ZlnJ0yY4CngQLsMGTIk5syZ85qvT5s2Le69994YP358B6YCAAAA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GBzw4osvGucL82H74vRYsrKytHjxYs2cOVPz5s3T6dOnbVv76NGjOnr0qBYtWvTrx6pXr66YmBj17dtXN954Y4n5fg0U1JkzZzRu3Dh9+OGHOnLkSL7W+OXv5Ny5cyVJbdq00YMPPqjBgwcziKuAEhMTNWXKFE2fPl07d+4s8HrJyclas2aN1qxZo/fff18+Pj7q1KmTbr31Vt1+++2F7lxBcnKyFi5cqLlz52rhwoU6e/asI/scOXJEn332mT777DOVKVNGgwYN0iOPPKKGDRs6sh/s07t3b11zzTWXHbw0ZcoU3X///Wrbtq3nigGX4OPtAgAAACgcMjIytGTJEi1evFhpaWlauXKlcnJyvF0LAAAAAAAAAAAAAAAAKLZyc3O1b98+zZkzRy+99JK6deum8PBwdevWTePGjXPs0Iq3JSQk6KGHHlLVqlXVq1cvTZ061ZahAZdy9OhRvffee+rQoYNq166tV199VefPn3dsP29LS0vTBx98oJYtW6p27dp64okntGHDBtuGBlzKxYsXtXbtWr3wwgtq3ry56tSpo2eeeUbx8fGO7luUHT9+XC+//PJlM5UrV9bjjz/uoUYF8/333+vo0aOWr5s9e7bOnDnjQCMUV1u2bNHw4cNVqVIl9enTR5999pmtQwMu5ejRo5o2bZpuvfVWVaxYUX379tW3337L+22BS0hJSdFjjz2miIgIPfXUU/keGvBnNm3apGHDhikqKkqffPKJ3G63bWuXFDt37tSQIUNUq1YtPf3007YMDfgzeXl5Wrlype677z5FRkbq0UcfVVJSkiN7mUpOTtaECRPUo0cPVapUSbfffrumTZvmsddf58+f1yeffKLGjRurf//+VxwiBe97/fXX5XK5Lvn7brdbDz74IF+LUCgwOAAAAKCEc7vd2rdvn2bMmKGDBw/++vHz589r8+bNXmwGAAAAAAAAAAAAAAAAlDw5OTlavHixRo8erYiICN1zzz366aefvF3LFvv27dPIkSNVp04d/fvf//bIIc//dfDgQT399NOqUaOGnn322WJ1WPn48eN6+umnFRUVpQceeEDbtm3zap8DBw7olVdeUe3atdWzZ0/NmzfPq30Ko6efflopKSmXzTz11FMqVaqUhxoVzPjx4/N13cWLF/X555/b3AbFjdvt1ty5c9W1a1e1bt1akydP1oULF7zWJysrS3PmzNEtt9yiqKgoPfvsszpx4oTX+gCFzVdffaUGDRrorbfeUmZmpmP7nDhxQn/5y1/Uvn17rz/3KSrOnDmje+65Ry1atNC0adM8OvwkJSVFb7/9turXr69XX31VWVlZHts7Oztbs2fP1i233KLKlStr5MiR+v777706/MXtduubb75Rs2bN9NRTTykjI8NrXXB5V111lfr163fZzIYNGzR16lTPFAIug8EBAAAAJVhaWpq+//57LV++/E//QWbHjh06deqUF5oBAAAAAAAAAAAAAAAAyMjI0Mcff6zGjRvrwQcfVHJysrcr5Ut6errGjBmjRo0aacKECcrOzvZ2JZ0/f17/+Mc/VLt2bX388cdF+s6QWVlZvx7Qf/XVVz12p1RTeXl5WrhwoXr37q3WrVvru+++K9Kfb7v88MMPmjRp0mUzFStW1N133+2ZQgV0+vRpzZkzJ9/XT5w40cY2KG42b96sq6++Wn369NGKFSu8XecPjh07pn/84x+Kjo7Wo48+quPHj3u7EuA12dnZeuCBBzR48GCP3lV+48aN6tChgz777DOP7VkULVmyRE2bNtXHH3+svLw8r/VITU3V008/rfbt2+vHH3/0yJ516tTRTTfdpG+//bZQvB75rYsXL+qf//yn2rVrp71793q7TpEXGhrqyLpPPvnkFTPPPPOMRwdiAH+GwQEAAAAlkNvt1p49ezRjxgwlJCRcNhcbG6vc3FwPtgMAAAAAAAAAAAAAAADwWzk5OXrvvffUuHFjLV++3Nt1LFm4cKEaN26sN99806t387yU8+fP65577lHnzp21e/dub9exbO7cuWrUqJGeeeYZpaene7vOFW3ZskX9+vVTu3bttGHDBm/X8arHH3/8igf2Hn74YQUHB3uoUcFMmTKlQIfwtm/frs2bN9vYCMXB2bNnNXr0aLVt21br1q3zdp0rysjI0Ntvv63o6Gg9//zz3DkaJc65c+d03XXX6YMPPvDK/pmZmRoxYoQefvhhhhT9iTfeeEPdunXTsWPHvF3lV9u2bVPr1q01b948x/c6c+aM43sU1M6dO9WmTRstWLDA21WKrNDQUPXo0cORta+66ipdf/31l80cPnxY77//viP7A6YYHAAAAFDCXLhwQfPmzdOqVat08eLFK+bPnj2rbdu2OV8MAAAAAAAAAAAAAAAAwGUdO3ZM119/vd566y1vV7mi3NxcjRkzRj179lR8fLy361zRmjVr1Lp1a33++efermIkKytL99xzj/r06aODBw96u45lcXFx6tChg+68806lpKR4u47HrVix4ooHwsqUKaP777/fQ40KbsKECQVeY/z48TY0QXGxZs0aNWvWTOPGjfPqXbHzIzMzUy+99JIaNmzI4U+UGCkpKerRo4dWrVrl7Sp699139de//tXbNQqVMWPG6PHHHy+UAxXS09PVr18/TZ061dtVCoXU1FTddNNN+uqrr7xdpUgaPHiwwsLCHFv/ySefvGLm1Vdf1fnz5x3rAFwJgwMAAABKCLfbrZ07d2rmzJlKSkqydO3WrVt19uxZh5oBAAAAAAAAAAAAAAAAMJWXl6fHHntML774orerXNKZM2fUo0cPvfnmm96uYklmZqbuuOMOPfLII8rNzfV2nUvav3+/OnTooI8//tjbVQrE7XZr0qRJOnDggLereNyzzz57xcx9992nMmXKeKBNwW3cuFE//PBDgdf54osvlJmZaUMjFGVut1uvv/66rrnmGh09etTbdQrk8OHDRf5rNWAiIyNDN954ozZs2ODtKr/64IMPNGbMGG/XKBT++c9/Fvrn5Tk5ORoxYoQWLlzo7SqFQnZ2toYMGcLnIx9Gjhzp6PrXXnut2rVrd9nM2bNn9fbbbzvaA7gcP28XAAAAgPOSk5O1cuVKnThxIl/X5+XlKTY2VjfddJN8fJg9BQAAAAAAAAAAAAAAAHjbCy+8oGrVqunuu+/2dpXfOXz4sK699lodPHiwQOv4+fmpXbt26ty5sxo0aKD69eurWrVqKlWqlMLCwpSXl6eUlBSlpqYqISFBe/fu1Z49e7RixQpt27atQHdTfeedd7Rnzx7NmjVLQUFBBXocdluzZo169eplyx0sg4KC1KZNG7Vr1061a9dWzZo1VbNmTZUuXVqhoaEKCQmRy+X69fN84cIFHTx4UPv379f+/fu1adMmbdmypVAPWSiMFi9erNWrV182ExwcrEceecRDjQpuwoQJtqxz7tw5ffPNN7r99tttWQ9FT05OjoYNG6YvvvjClvVq1Kihjh07qmnTpr9+jatatapCQkIUGhqqoKAgZWRkKDU1VampqTpx4oT27dun/fv3a8+ePVq9erVOnjxpSxegOHvggQeu+L3tzwQHB6tv37667rrr1Lp1a0VERKhs2bLKzs7WuXPn9NNPP2nz5s367rvvtGbNGsvP79588021aNFCQ4YMsdytuJgzZ46efvrpfF9ftWpVderUSR06dFCbNm1UsWJFlStXTuXKlVN2draSk5OVnJysw4cPa/369Vq3bp3WrVunjIwMy3vl5ORo0KBB2rZtm2rVqpXvzk4oV66cWrdurauuukr169dXzZo1FRUVpdKlS6tUqVLy8/NTRkaGTp06pYSEBG3fvl1r167VokWLlJycnK89f/l8rF27Vk2aNLH5ERVPDRo0UMeOHR3f58knn1S/fv0um3nnnXf00EMPqVy5co73Af4XgwMAAACKsby8PG3fvt2WH86cOnVKO3fuVPPmzW1qBwAAAAAAAAAAAAAAABQdNWrUUHx8vOXr3G63UlJSdO7cOSUnJ+vEiROKi4vT+vXrtX79ep0+fTrfnR544AE1b95cbdu2zfcadjp8+LCuueaafH2eJMnHx0c33HCDRo0ape7duyssLOyy+cDAQFWoUEE1a9ZUly5dfv34qVOnNHv2bI0bN04bN27MV5fvv/9effv21ezZswvN8IDFixerX79+Sk9Pz/caERERGjhwoAYMGKCrrrpK/v7+V7wmPDxc4eHhkvSHQ0spKSlas2aNFi5cqC+//FLHjx/Pd7eS4oUXXrhiZsSIEapYsaLzZWyQkZFh2yFv6echBAwOKJmysrI0cOBAzZkzJ99r+Pn5qWvXrho8eLBuvPFGVa1a9YrXlCpVSqVKlZIk1alTR1dfffXvfv+XoTQzZ87UihUrlJeXl+9+QHE0efJkywNkSpUqpccee0yPPPKISpcu/YffDwgIUGhoqKpXr66uXbvqscce0/79+/Xcc89p+vTplgYIjB49Wq1atVLDhg0tdSwOTp06pVGjRuVroFZMTIwefPBB3XTTTfL19f3TzC//nSIiItS0aVP17t1b0s93W//kk0/04YcfKiEhwdK+KSkpGjZsmFauXOnVGx76+fmpS5cu6tGjh7p3765mzZpd8Zpfvp9ER0f/+vnLycnR7Nmz9fbbb+druEZKSoqGDBmiuLg4BQQE5OehGFmxYoVjaxdESkqKqlatqrS0NKP8yJEjHW70s759+6p+/frau3fvJTPnz5/Xv/71L7388sse6QT8FreLBQAAKKbOnDmjWbNmKS4uzpaJzgEBAQoODrahGQAAAAAAAAAAAAAAAFByuFwulS5dWlFRUWrevLm6deump59+WnPmzNHx48c1c+ZMXXPNNfla++LFixo1apRycnLsLZ0Phw8fVkxMTL6GBvj4+GjEiBE6cOCAFi5cqAEDBlxxaMDlVKxYUSNHjtSGDRu0detW9ezZM1/rLF68WH379lVmZma+u9hl9uzZ6tOnT76HBlx77bVatGiREhIS9K9//UsdO3Y0GhpwJWFhYerRo4feeecdHTlyRIsWLdLtt98uPz/ucfhnVqxYobVr114xd++993qgjT1mzpypCxcuXDFnevhv2bJl+R4+gqIrPT1dvXr1yvfQgPDwcD333HNKSkrSokWLNHLkSKOhASYaNmyoe++9V0uXLlViYqLeeust1a5d25a1gaLu8OHDlr9ndejQQXv27NHzzz//p0MDLqVOnTqaNm2ali5dqsqVKxtfl5aWpttuu82W99MXNc8++6xOnjxp6ZoKFSpo1qxZWrFihW655ZZLDg24nPDwcD3xxBPat2+fHnvsMcsDANasWaPJkydb3tcOnTp10gcffKCkpCQtXbpUY8aMMRoacCl+fn665ZZbtGrVKs2dO1dRUVGW19ixY4deeeWVfHcoyqZPn248NMDf31/Dhg1zuNHPXC6XRo8efcXc+++/r5SUFA80An6PV+MAABRz/zvd90r27t2rixcvGmWjoqJUpkyZ/NSSZL0bzOTm5mrLli3avn27bVNNa9SooU6dOik0NNSW9QAAAAAAAAAAAAAAAABIvr6+6t+/v/r3769Vq1Zp6NChlu/KuXPnTn3wwQd66KGHHGp5ZSkpKbrxxht1+PBhy9d27NhRH330kZo2bepAM6lFixaaP3++li5dqtGjR+vAgQOWrl+8eLFGjhypqVOnOtLPxPr16zV48GBlZWVZvrZdu3b697//rbZt2zrQ7Pd8fX11ww036IYbbtCrr76qN998UxMmTMj3sIPiaOzYsVfMdOjQwbG/D04wvcv0HXfcoSVLlujo0aOXzbndbk2cOFEvvviiHfVQBLjdbt1xxx1aunSp5WuDg4P19NNP6+GHH/bIe1yrVaumRx99VA899JBmzpyp1157TVu3bnV8X6Cwevjhhy19n7/11ls1efLkAg0v6tq1q7Zs2aJrr732snf7/q3t27frgw8+0IMPPpjvfYuaAwcOaPz48Zauadeunb799lvbBq8EBATojTfeUK9evdSvXz+dP3/e+Nrnn39eQ4YMsWXQ1ZWULl1aw4YN07333qtGjRo5tk+vXr20c+dO3XHHHZo9e7ala998803dd999loZmFAdW/gz37t1blSpVcrDN7w0fPlxPPvnkZV+jnTt3TuPGjdPf/vY3j/UCJAYHAABQ7H3yySfGWbfbrc6dOxtPR544cWKR+sfpkuDEiRNauXKlkpOTbVkvKChIV199tWrVqiWXy2XLmgAAAAAAAAAAAAAAAAD+qHPnztq+fbvuvPNOzZo1y9K1b7zxhu69914FBAQ4U+4y3G63hg4dqt27d1u6ztfXV88884yeffbZfN3J1KrrrrtOW7du1f33368pU6ZYunbatGlq2bKlHnvsMYfaXdrhw4fVr18/4/f1/aJ06dL65z//qXvuucfyXV7tUKNGDb333nt66qmn9Pjjj+vzzz/3eIfCZtu2bfr++++vmDO5e2lhceDAAcXGxhpl77rrLlWtWtVoeMJnn32m559/3it/duF5Tz75pL755hvL191www366KOPVKtWLQdaXZ6vr68GDx6swYMHa/r06RozZoyOHDni8R6ANy1cuNDSc9Z+/fppypQp8vMr+HHGatWqadmyZerUqZMOHTpkdM1zzz2nW2+91aMHi73pww8/VE5OjnG+QYMGmj9/vsLDw23vcs0112jWrFnq0aOH8SCshIQEzZ49W/3797e9zy+qVaumRx55RPfcc49KlSrl2D6/Vbp0ac2aNUujR4+2dNYnPT1dY8eO1dtvv+1gu8Jl165d2rBhg3F+1KhRDrb5o/DwcA0YMOCKA+befvttPfjggx4ZggH8gldRAADgVykpKZZ+uFDSppUVZtnZ2Vq3bp1mz55t29CA2rVra+DAgapduzZDAwAAAAAAAAAAAAAAAAAPKFu2rL766itde+21lq47evSopk+f7lCry3v++ect3zEzJCREc+bM0QsvvOCRoQG/CAsL0+TJk/XOO+9Yfk/U3//+dy1atMihZn8uLS1NvXv31okTJyxdV79+fW3YsEH33Xef1w9eV61aVVOmTNHq1avVvHlzr3bxtnfeeeeKmbJly2rQoEHOl7HJxIkT5Xa7r5iLjo5W586dNWLECKN1Dx8+nK+7z6PomTx5sl577TVL17hcLj333HP6/vvvvTI04H/deuut+vHHH/Xkk09yKBAl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/tGqq66aL3/5yyO6Zt68edl7773z7W9/u0NVjc1Pf/rTPOlJT8qZZ57Z61K6otUXglp9wWisjj/++JZj9913346c7Ntu6667bp7xjGe0FHv//ffnlFNOaUvet73tbZk6dWrL8a9+9atzxx13tCX3SN1xxx15zWte03L89OnT82//9m+dK+hR3vOe92THHXcc0TWnn3569t5779xzzz0dqmr0HnjggbzmNa/JwQcfPKLTq2EQvf3tb2+5H7388svziU98oiN1LF68OG94wxsyf/78luK32mqr7LPPPh2ppV8ceOCBI4o/7LDD8r//+78dquaxLrnkkhx11FEjumakv6Yml112WfbYY48R/Vmy8sor5+yzz84222zT1lqWB7XWEfWZL3nJSzJjxowOVtQ7BgfQLwwOYNwqpeyU5CtpbWjAeUn+Ncn2SVZJMnnJP3dI8pYkv28lZZKvlFJG9jfb/nRCku1aiLsvyReSPD/JekmmJ5mRZP0kL0jypSRzWthnuyRfHUWdQIMFCxa0HDtlypS25Ky15pprrsnJJ5887HCAc889d0SDDQAAAAAAAAAAAMaDjTbaaESnXR9//PG56aabOlLLSiutlFNPPXVEL9AmyZe//OXst99+PXmx8qabbsozn/nMEZ/y/oQnPCEnnHBCR2palhe84AV5z3veM6Jr5s2bl4MPPjjvfve7R/QZwU665ZZbctBBB2XPPffMbbfd1utyuqafBgfMmTMn3/3ud1uOf9nLXtbBatprJLWO5KW24ayzzjo59NBDW46/4447svfee2fOnFY+Ot8+c+bMyd57750777yz5WsOO+ywrLXWWh2s6v+bOHFivvOd7+Rxj3vciK47++yzs+OOO+biiy/uTGGj8PWvfz2bbLJJvvpVrz0wPqy77rp51ate1XL8Bz/4wfz6179uex0f+chH8vOf/7zl+Pe9730ppdNnz/bWc57znBEN9rr11ltzwAEHPOYwyE647bbbsu+++44o12677ZYnPvGJbavhyiuvzLOf/ezcddddLV+z4oor5ic/+Um2266VV+nGn1/+8pe57rrrWo5/7Wtf28FqeufOO+/M5Zdf3hi32mqrjXhwEoyUwQGMS6WUFZJ8O0MDAIZzTZI9aq0711o/V2u9qNZ6b6114ZJ/XlBr/Wyt9alJ9kpybcN+U5L8z5L8A6mU8pYkL2oIq0k+nWSjWuthtdYf1FpvqbU+XGt9qNZ6c631+7XWQ5NslOSzLaR+cSnlzWMqHniMVifrJWl5IuBw5s6dmx//+Mf5xS9+0TgU4KGHHspvf/vbMecEAAAAAAAAAABY3rz//e9v+TNd8+fPH/GpniPxlKc8JV/84hdHfN3pp5+ebbfdNr/73e86UNXSfec738k222yTiy66aETXzZo1K6effnpWXnnlDlW2bB/72Mey3377jfi6T37yk9l+++1z3nnndaCq1tx///056qijstlmm+Xkk0/uWR29summm+YJT3hCY9xVV13V8YEK3/zmN1t+SW+dddbJs571rI7W0077779/pk2b1lLsr371q1x7bdNH/lvzvve9b0S/J1x00UV59rOfnZtvvrkt+ZvcfPPN2X333Uf0+92qq6464mElY7XBBhvke9/7XqZPnz6i66677rrsuOOOec973tOVl12X5Te/+U123XXXvOIVr8jtt9/eszqgF4466qisuOKKLcUuWrQoL37xi3PJJZe0Lf9xxx2XI488suX4XXbZJQcffHDb8veryZMn521ve9uIrvnVr36VF7zgBR0d6nXjjTdm9913H9EL5kny7ne/u201/OUvf8nuu+8+ooE6K6ywQs4666zssMMObatjeXPccce1HLvVVltlp5126mA1vfPLX/4ytdbGuL333jsTJnitm87y/zDGqw9n6IX14ZydZMda689a2bDW+pMkOyRpGvm4UZIPtbJnvymlrJPkYw1h85PsV2t9W631vqY9lwxgeEuSA5I0jTX9WCll7ZaKBVoyksEBU6ZMGXWeWmuuuOKKfOc73xnRA8+rr766aw9IAQAAAAAAAAAABsWGG26YV77ylS3Hn3DCCbn++us7Vs+rXvWqvP3tbx/xdddff3122WWXHHrooR194fLKK6/Mi170ohx44IG57777RnTtxIkT8/Wvfz1bbrllZ4prUErJ17/+9VG9YHPZZZdll112yUtf+tJceumlHahu6e644468973vzfrrr58PfOADefDBB7uWu98cdNBBLcX94Ac/6Ggdxx9/fMuxhxxyyEC9zLTCCivkBS94QUuxtda2nQi/xhpr5Nhjjx3RNRdccEF22GGHfOc732lLDcvyne98JzvssEMuvPDCEV332c9+NquttlqHqlq2nXbaKSeeeOKI/3+3cOHCfOITn8jmm2+eL37xi3n44Yc7VOFjnXnmmdl1112zyy675Nxzz+1aXugna6yxRj7ykY+0HH/PPfdkjz32yK9//esx5/7Upz6V17/+9S29pJsM9XP/9V//Nea8g+INb3hD1lprrRFdc/bZZ+dpT3taLr744rbXc+aZZ2annXbKlVdeOaLrnva0p+W5z31uW2q4/vrrs/vuu49oWNOsWbPyox/9KE95ylPaUsPy6L777supp57acvxrX/vaDlbTW632863+/QDGYnD+NgdtUkrZIsmbGsJ+m+SFtdY5I9l7yYvyz09yfkPom0spm49k7z7x70lmDrNekxxcaz1tpBvXWk9J8tKGsFlLagDaZMGCpnkd/1+r06n/2f33358f/OAHOeecc0aU72/OOeecEQ04AAAAAAAAAAAAGA8OP/zwlj/XtWDBghx11FEdreeYY47JG9/4xhFft2jRonzpS1/KE57whLzjHe/I1Vdf3baazj///Lz61a/O1ltvnTPOOGPE10+cODFf+9rX8qIXvahtNY3G9OnTc9ZZZ+VpT3vaiK+tteab3/xmttlmm+yzzz459dRTO3I690MPPZSTTz45L3zhC7P++uvn6KOPzpw5I/oo9nKp1ZONTznllI7V8Kc//Sl//OMfW45/2cte1rFaOmUkNZ944olZvHhxW/K+/OUvb3lowd/ceeedOfDAA7P77rvnJz/5SVvq+Juf/vSn2X333XPggQeO6DTlJNl33317ehL3AQcckK997WuZNGnSiK+98cYb88Y3vjEbbbRRPvShD434xdRWXXHFFfnABz6Qxz/+8dlnn30MDIAkhx122Ij6k7vuuiu77757PvShD42qH7n55puz77775u1vf/uIfi9/xzvekW222WbE+QbVrFmzRjzcJkn+/Oc/Z6eddspb3/rW3HHHHWOu48orr8wBBxyQffbZZ8R/Lk2aNClf/OIXx1zD35x44okjPtRy7ty52XnnnVNK6buvfnHSSSe1PLhnypQpefnLX97hinpj/vz5+f73v98Yt+qqq2bPPffsQkWMdwYHMB59MMlwf5u8J8lBtdZ5o9m81vpgkgOT3DdM2KQkR4xm/15ZMnDhJQ1h/1Fr/e5oc9Rav5Pk0w1hB5dSNhttDuAfPfLIIy3HTpkyZUR711pz6aWX5pRTThnRVLZ/Nnfu3Jx/ftM8FgAAAAAAAAAAgPFlww03zCtf+cqW47/2ta/l2muv7Vg9pZR87nOfy2GHHTaq6x988MH853/+ZzbddNM84xnPyCc/+clceOGFLZ8kmwwNSDj33HPzwQ9+MNtuu22e8pSn5IQTTsjChQtHXM/fhgYccsghI762E1ZaaaW/vxQ8GrXWnHnmmdl///2zxhpr5KCDDsrnPve5XHjhhVm0aNGI93vkkUfyu9/9Lp/4xCfyvOc97+97fu9733NY0KNsueWWedKTntQY94tf/CL33ntvR2o4/vjjW4590pOe1FK9/eY5z3lOVltttZZib7nllra+sP+1r30tW2yxxYiv+8UvfpG99torm2yySd773vfm3HPPHfFLtA8//HB+85vf5H3ve18222yz7LnnnvnFL34x4lq23nrrnHDCCSO+rt1e+tKX5jvf+U6mTp06qutvv/32HHnkkdl8882zzTbb5D3veU/OOOOM/O///u+o9rv11lvzP//zPznssMOy5ZZbZosttshRRx2V6667blT7wfJo4sSJ+fa3v51VVlml5WsWLVqUI488Mk984hNzzDHH5K9//WvjNRdeeGHe8pa3ZJNNNslpp43srNOdd945H/3oR0d0zfLggAMOyAEHHDDi6xYsWJDPfOYzWX/99XPwwQfntNNOywMPPNDy9XfccUdOPPHE7Lnnntliiy1GPRzpiCOOGMieZLw57rjjWo590YtelFVXXbWD1fTO2Wefnfvuu68x7oADDhj1oa4wEiMfxQUDrJSycZL9GsLeX2sd2Qihf1JrvbGU8sEkw41nOqCU8t5a6w1jydVF70oy3EiiG5N8oA15Dk+yf5J1l7FeltTy2jbkgnFvwYIFLceOZHDAvffem1//+tdtmTKXJNdcc02e/OQnZ/r06W3ZDwAAAAAAAAAAYHlw+OGH58QTT2zps2ALFy7Mhz/84Zx44okdq+dvwwNWWGGFHH300aPe59e//nV+/etfJxk6MXWTTTbJpptumrXWWiuzZs3KrFmzUmvN3LlzM3fu3Nx000256qqrcs0114zoQJ1lmTFjRr72ta9lv/2aPnbcXTNnzsyZZ56ZV7/61fn2t7896n3mzp2bk08+OSeffHKSZNq0adlggw2y0UYbZYMNNsiKK66YGTNmZMaMGX+Pf/DBBzNnzpxcf/31+ctf/pKbb765bae2L+9e/epX521ve9uwMQsWLMjpp5+eV7/61W3NPX/+/Jx00kktx7/sZS9ra/5umTx5cg488MB8/vOfbyn++OOPz3Oe85y25F5xxRVz5pln5qlPfeqoPjd7zTXX5Oijj87RRx+dSZMmZfPNN89GG22U9dZbL6uuumqmT5+eKVOmZP78+XnooYdyzz335Oabb87111+fP//5z6MajPJoa621Vs4888zMnj17TPu0y4te9KKceeaZOeigg3L33XePep8//elP+dOf/vT3//64xz0uG264YTbaaKOstdZaf/89btq0aXnooYfy4IMPZu7cubn99tvzl7/8JX/5y19G9KIsjGfrr79+vv71r+f5z3/+iHqDW2+9Ne9617vy7ne/O5tvvnl22GGHrLPOOllppZWyYMGC3Hfffbnmmmvyxz/+Mbfccsuoalt99dXz7W9/O5Mmjc9XKI8//vhcccUVueyyy0Z87fz58/Ptb3873/72tzNx4sRsuumm2XLLLbPuuutm1VVXzbRp01JrzUMPPZQ777wzN910U/70pz/lhhtuGHPdL3zhC/P+979/zPvQWRdddFEuuuiiluNf+9rl91XAU089taW4dvf6sCzj8089xrM3JZk4zPo1Sb7cplyfT/LWJBsvY33iknre1aZ8HVNKWTVJ07jUI2qtD481V6113pKhC8ONHHpZKeVdtdZ7xpoPxruRTPVtZXDA4sWLc8kll4x6AvHSrLvuutl1110NDQAAAAAAAAAAAPgnG264YV71qlflK1/5SkvxJ510Ut7//vfniU98Ykfr+vjHP57tttsur3nNa/Lggw+Oaa+5c+fmwgsvzIUXXtim6oa38cYb57TTTuvbE06nTZuWb33rW9lll13yjne8oy2DEh5++OFcddVVueqqq9pQ4chMmzatb15Y7pSXv/zlefe73934mc1TTjml7S8TnXHGGbnrrrtaip0wYUIOOaTpI+P962Uve1nLgwPOOOOM3H333W079XbDDTfML3/5y+y55565+ebRn2G4cOHCXHrppbn00kvbUleTDTfcMGeddVbWW2+9ruRr1bOf/excdNFFOeigg/Lb3/62LXvecccdueOOO/L73/++LfuNxBprrNH1nNBtz33uc/OlL30pr3/961NrHdG1ixcvzuWXX57LL7+8rTWttNJKOeuss7Luuss613T5N2vWrJx55pl51rOeleuuu27U+yxatCh//vOf8+c//7mN1S3dbrvtlm984xspZbizb+kHxx033Kt//2j99dfPHnvs0cFqemfhwoU544wzGuO23nrr7LTTTl2oCJIJvS4AuqWUMjHJwQ1hn6q1tuVN11rrwiSfaQg7pJQyCP8eHpRkuDeGb03yrTbmOynJcOMWpyQ5oI35YNxqZcr03zQNDrjrrrty2mmn5Q9/+ENbhgZMnTo1z3jGM7L33nsv9z8UAAAAAAAAAAAAGK3DDz88kydPbil20aJFOfLIIztc0ZADDzwwv/3tb7P55pt3JV87PO95z8sf/vCHvh0a8GhvetObct5552WTTTbpdSmj9uIXvzhXXHFFHv/4x/e6lI5addVV8+IXv7gx7uyzz86cOXPamvv4449vOfaZz3xm1llnnbbm76anPe1pLf9/af78+fnGN77R1vybbbZZzjvvvGy11VZt3bdTnvSkJ+U3v/lN3/4est566+XXv/513vWud2XixOHOjuxfa6yxRo477rh86Utf6nUp0BWve93r8tnPfrbXZSRJZs+enR//+MfZbrvtel1Kz62//vr51a9+lU033bTXpTTaY4898qMf/SizZs3qdSk0ePjhh3PSSSe1HP/qV786EyYMwiuUI/eLX/wid999d2Pc6173ui5UA0OWz3/bYOl2T7LWMOsPJ2nv3/6TE5MMNxpy7STPbHPOTnhpw/oJtdbW3z5uUGt9JEP3bjhNNQEtaJpe+2jL+sHSokWL8oc//CGnnXZaS81uKzbYYIPsv//+2XTTTU2KAwAAAAAAAAAAGMYGG2wwolPKv/Wtb+XKK6/sYEX/39Zbb52LL744H/rQhzJ16tSu5ByNNdZYIyeddFJ+8IMfZJVVVul1OS3bfvvtc+mll+bjH/94Zs6c2etyWvaUpzwlZ599dr773e9mww037HU5XfGmN72pMWb+/Pk5+eST25bzlltuyU9+8pOW41/+8pe3LXevvPSlrX/E/Ktf/Wrb86+77rr5/e9/nze84Q1t37udDjvssPzud7/L2muv3etShjVp0qR88pOfzB//+MfssssuvS6nZbNmzcq73/3uXH311XnNa17js9CMK29605vyrW99KzNmzOhZDRtttFHOPffcPOUpT+lZDf1m3XXXzfnnn9/SIKNeecc73pEf/ehHPf3/Dq079dRTc99997UUO2HChBH9fXXQtDKMatasWXnlK1/ZhWpgiMEBjCfPb1g/s9b6QDsT1lrvS/KjhrCmunqqlLJqkqc1hH27A6m/1bC+cyllcJ7MQp8ayeCAKVOmPOZ7d9xxR0499dRcdNFFqbWOuZ7p06fn2c9+dvbcc8+B+iEGAAAAAAAAAABALx1++OHLPBzmny1evDhHHnlkhyv6/6ZMmZIPfvCD+dOf/pTnPve5XcvbiilTpuTQQw/NlVdemUMOOaTX5YzKlClT8p73vCdXXXVVXvGKV2TSpEm9LmmZdt555/z4xz/O7373uzz72c/udTldteuuu2bbbbdtjGvnyeQnnHBCFi9e3FLs9OnTs99++7Utd6+87GUvazn2kksuyQUXXND2GmbMmJEvfvGL+f73v5/HP/7xbd9/LB7/+MfnzDPPzOc+97lMnz691+W0bNttt80555yTb3zjG313Tx9thRVWyHvf+97ccMMNOfroo7Piiiv2uiToiZe85CU577zzsvHGG3c995577pk//vGPedKTntT13P1uhRVWyHe/+9184QtfyMorr9zrcv5uo402yplnnpljjjmmr/tY/tFxxx3Xcuwee+yRDTbYoIPV9M69996b73znO41xr3jFK/QFdJXBAYwnezSsn9mhvE37/kuH8rbLs5MMN+LuplrrZe1OWmu9OMmtw4RMSLJ7u/PCeDOSwQGP/qHSggUL8tvf/jbf+973Wp4S1uQJT3hCDjjggDz+8Y83WRMAAAAAAAAAAGAE1l9//RGd4njyySfn8ssv72BFj7XJJpvkzDPPzAUXXJD99tsvEyb07qPs06dPz5vf/OZce+21fffy1Gits846OfHEE3Pdddflne98Z9+8mDJz5sy87nWvywUXXJBzzz03e+21V69L6pk3v/nNjTEXXHBBW15mr7XmhBNOaDn+BS94QWbPnj3mvL32xCc+MTvttFPL8ccff3zHatlnn31yxRVX5Nhjj80aa6zRsTytWGONNXLsscfmiiuu6LsBLiPx0pe+NFdffXVOPfXUPP3pT+91OX+33Xbb5Ytf/GJuvfXWfOxjH8uqq67a65Kg57bZZptceumlOfzwwzN16tSO51tzzTXzta99LWeddVZWWcUZpcM59NBDc9VVV+Wwww7LtGnTelbHKquskiOPPDKXX375QP/ZNB5dd911+eUvf9ly/Gtf+9rOFdNjX//61/PQQw8NG1NKyb/+6792qSIYYgwL40IpZa0kmzeEnd2h9D9tWN+ylLJmrfX2DuUfq6Zxnp26b3/b+5XDrO+R5JQO5ofl3kgGB/ztL+y33nprzjnnnNx///1tqWHmzJnZZZddltsJYgAAAAAAAAAAAN1w+OGH54QTTmjpc2GLFy/Ohz70oZZOR2y37bffPqecckquueaafO1rX8u3vvWtXHvttV3JveOOO+aQQw7JS1/60qy++updydlt6623Xv793/89RxxxRE455ZSccsopOfvss0f0ecGxmjZtWvbaa6/st99+eeELX5gVVliha7n72Utf+tK8//3vz2233TZs3Je+9KV8+ctfHlOue+65Jy972ctajn/hC184pnz95Oijj86vfvWrlmI7PTRk8uTJectb3pJDDz00p5xySr74xS/mnHPO6WjOR9tll13yxje+Mfvvv3+mTJnStbydNGHChOy7777Zd999c+GFF+Zb3/pWTj311Fx//fVdrWOTTTbJfvvtl/333z/bb799V3PDoJgxY0aOOuqovOpVr8onPvGJnHTSSY0v2I7UmmuumUMPPTRve9vb9BsjsPrqq+dzn/tcjjjiiHzmM5/J17/+9dx8881dyb3lllvmNa95TV7/+tdn1qxZXclJe91999054ogjWootpSxXfeY/+9KXvtQY87znPS+bb970Wiu0V6m19roG6LhSyguTnD5MyM211vU7mP+vSdYaJuQFtdbvdyr/WJRSLkqy7TAhr621dmTUYinl9UmG+xP0wlrrkzuRuxNKKU9Lct6jv3feeeflaU97Wo8qguQTn/hEyz/4OeSQQ7LDDjvkyiuvbFv+zTbbLE95ylO6MkUQAAAAAAAAADrphhtueMwH4KdPn54NN9ywNwUBwAD5/e9/nx/84Ac555xzcv7557ftpbKVVlopO++8c3bbbbfsu+++ecITntCWfQfNnDlz8oMf/CC//OUv87vf/S5//vOfs3jx4rbtP2nSpGy//fZ5xjOekWc84xl55jOfmZkzZ7Zt/+XJJz/5ybz73e8eNmbWrFn561//mtmzZ3epKrrp5ptvzplnnvn33/PadZBXksyePTu77rpr9tlnnzzvec/L+ut37BWJvnPBBRfkhz/8Yc4777ycf/75ueeee9q6/+Me97jstttuecYznpHdd9/dC4AwCnfffXeOP/74nH766fn973+fRYsWjWqfmTNn5lnPelYOOuigHHjggcvNYJReqrXmnHPOyRlnnJGf//znueSSS9Kud04nT56cHXfcMc9+9rOz3377ZZtttmnLvtBr5557bnbdddfGuHPOOSe77LJLFyrqD8v7M/Lf/va3efrTn/7P3356rfW3vahnWQwOYFwopRyZZLhRNmfUWl/UwfzfS/L8YUI+WGv9cKfyj1YpZUqSuUkmDxO2Xa314g7l3z7JBcOEzE8yq9a6oBP5283gAPrRRz7ykZxxxhmNcfPnz88OO+yQpz71qW3JO3v27Oy2225ZZ5112rIfAAAAAAAAAPTa8v6hSADolgULFuSCCy7I5ZdfnmuvvTbXXXddrr/++txzzz158MEH8+CDD2bevHkppWTmzJl//1p99dWz8cYbZ+ONN87jH//4bLvtttlyyy0zYcKEXv+S+s4DDzyQP/7xj7n66qtzww035IYbbsiNN96Yu+66K/Pmzcu8efPy0EMP5ZFHHsmUKVMyffr0TJ8+PSuvvHLWWmutrL322llvvfWyxRZbZKuttspmm23mAKEW3X///dlggw1y3333DRv3hS98IYceemh3iqJnaq35y1/+kgsvvDCXXXZZbr755txyyy259dZbM2fOnDz00EN5+OGH/+HfxWnTpmXFFVfMOuusk3XXXTfrrbdettpqq2y//fZ54hOfmFJKr39ZPVdrzdVXX51LLrkk119//d9/j7vlllvywAMP/P33uIceeii11r/f15kzZ+Zxj3tc1l577ay99tp5whOekK222ipbbrll1l577V7/smC5cu+99+bnP/95Lr300vz5z3/O1VdfnXvuuScPPPBA5s6dm4kTJ2b27NmZNWtWHve4x2XzzTfP5ptvnu233z677rqrvqPD7r333lx88cW57LLLcsUVV+Tmm2/O7bffnttvvz0PPvjg3/9sKqVk2rRpmTp1alZYYYWsueaaWXPNNbP++utnyy23zJZbbpltt93WQCmWS694xSvy9a9/fdiYnXfeOeeee26XKuoPy/szcoMDoI+UUs5I8oJhQj5Sax1usMBY8x+V5PBhQk6vtb64U/lHq5SyXZILhwlZlGRGrXV+h/JPSfJQkuGe2G5ba72kE/nbzeAA+tERRxyRH/7wh8tcr7Vm7ty5efjhh/PMZz4zO++885jylVKy5ZZbZscdd8zkycPNJAEAAAAAAACAwbK8fygSAID2+NCHPpQjjzxy2Jgtt9wyl156qZfAAQCgz9xxxx3ZcMMN8/DDDw8b9+Mf/zh77bVXl6rqD8v7M/JBGRxgfCLjxSYN69d0OP9fGtaf2OH8o9V0327s1NCAJFmy980NYf1672AgzJ+/7H+FH3nkkdxzzz1/b2QnTpw4plwrrbRSnv/85+fpT3+6oQEAAAAAAAAAAADAuPRv//ZvWWmllYaNufzyy/O9732vOwUBAAAt+8///M/GoQFPf/rTx93QAPqHwQEs98rQmMUNG8KaXuwfq6b9N+xw/tHaqGG90/etlRxNNQLDWLx48VK/d//99+f+++//h/UJE0bXNpRSsu2222a//fbLmmuuOepaAQAAAAAAAAAAAAbdSiutlLe97W2NcR//+Me7UA0AANCq++67L1/4whca44488sguVANLZ3AA48HjkkxriPlrh2to2n9mKWWNDtcwGhs2rHf6vrWSw+AAaKOHH3449957bx555JG27LfqqqvmRS96UXbaaadMnDixLXsCAAAAAAAAAAAADLK3ve1tWX311YeN+f3vf5+f//znXaoIAABo8l//9V954IEHho3Zfffds8cee3SpIngsgwMYD9ZuIeb2DtfQyv6t1NltTTV1+r61kqMf7xsMjFrr3/85Z86cPPDAA1m8ePGY950wYUJ22GGHvOhFL2p8sA0AAAAAAAAAAAAwnsyePTtHHHFEY9zHP/7xLlQDAAA0mTdvXo499thhY0op+eQnP9mlimDpDA5gPFi1Yf3+Wmt7jtZehlrrvCRzG8Ka6uyFppru7EINdzSs9+N9g4HxtyEBpZTG2FZikmSNNdbIfvvtl+233z4TJ04cU30AAAAAAAAAAAAAy6M3vOENecITnjBszNlnn50//OEPXaoIAABYlq985Su56667ho15yUtekic/+cldqgiWblKvC4AuWKVh/f6uVDGUZ9Yw60119kI/3LumHF27b6WUp41xi63aUgi0Ua317/959uzZueeee/7he4/WNDhg4sSJ2XHHHbP11lu3PGQAAAAAAAAAAAAAYDyaPHlyPvnJT2bfffcdNu7DH/5wvv/973epKgAA4J89/PDDOeaYY4aNmTZtWj72sY91qSJYNoMDGA9Wblh/oCtVNOfpx8EB/XDv+um+ndfFXNB1EyZMyMyZMzN37twR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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 18, + "source": [ + "cm = onc_calc_cm(\n", + " calibrated_results.y,\n", + " calibrated_results.p_calibrated, \n", + " range_probas=[.10,.20, .30, .40, .50])\n", + "cm" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " threshold sensitivity specificity likelihood_ratio_neg \\\n", + "0.1 0.1 0.703327 0.791696 0.37473 \n", + "0.2 0.2 0.423234 0.922829 0.624997 \n", + "0.3 0.3 0.202919 0.977818 0.815163 \n", + "0.4 0.4 0.100409 0.992556 0.906338 \n", + "0.5 0.5 0.0451839 0.997939 0.956788 \n", + "\n", + " likelihood_ratio_pos tp fp tn fn total_survived \\\n", + "0.1 3.37644 6024 22134 84124 2541 106258 \n", + "0.2 5.48439 3625 8200 98058 4940 106258 \n", + "0.3 9.14796 1738 2357 103901 6827 106258 \n", + "0.4 13.4883 860 791 105467 7705 106258 \n", + "0.5 21.9231 387 219 106039 8178 106258 \n", + "\n", + " total_deceased \n", + "0.1 8565 \n", + "0.2 8565 \n", + "0.3 8565 \n", + "0.4 8565 \n", + "0.5 8565 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
thresholdsensitivityspecificitylikelihood_ratio_neglikelihood_ratio_postpfptnfntotal_survivedtotal_deceased
0.10.10.7033270.7916960.374733.376446024221348412425411062588565
0.20.20.4232340.9228290.6249975.48439362582009805849401062588565
0.30.30.2029190.9778180.8151639.147961738235710390168271062588565
0.40.40.1004090.9925560.90633813.488386079110546777051062588565
0.50.50.04518390.9979390.95678821.923138721910603981781062588565
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 18 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 19, + "source": [ + "#save (for the aucroc evaluated model)\n", + "cm.to_csv('./roc_results/2021_xgb_imputed_calibrated_confusion_matrix.csv')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "interpreter": { + "hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49" + }, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/xgboost/imputed/6_xgb_fairness_assess_get_data.ipynb b/xgboost/imputed/6_xgb_fairness_assess_get_data.ipynb new file mode 100644 index 0000000..7c5ff2d --- /dev/null +++ b/xgboost/imputed/6_xgb_fairness_assess_get_data.ipynb @@ -0,0 +1,211 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Data for fairness assessment\n", + "Get the columns of data we want to assess\n", + "Save for each imputation set\n", + "\n", + " inc_age = age\n", + " sex\n", + " dialtyp=type of dialysis\n", + " race" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 9, + "source": [ + "import psycopg2\n", + "from sqlalchemy import create_engine\n", + "\n", + "# other libraries\n", + "import numpy as np\n", + "import pandas as pd\n", + "import sys\n", + "import pickle\n", + "\n", + "print('python-' + sys.version)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 10, + "source": [ + "con = create_engine('postgresql://username:upassword@dbconnection/dbname')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 11, + "source": [ + "#import only the columns we want to look at in this assessment\n", + "df = pd.read_sql_query('''SELECT usrds_id, died_in_90, inc_age, sex, dialtyp, race, hispanic, subset FROM medxpreesrd;''', con)\n", + "df.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset\n", + "0 2969676.0 0.0 72.0 2.0 1.0 2.0 2.0 8\n", + "1 2969869.0 1.0 73.0 2.0 1.0 2.0 2.0 9\n", + "2 2970021.0 0.0 55.0 2.0 1.0 1.0 1.0 8\n", + "3 2970067.0 0.0 72.0 1.0 1.0 1.0 2.0 9\n", + "4 2970686.0 0.0 49.0 2.0 1.0 2.0 2.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubset
02969676.00.072.02.01.02.02.08
12969869.01.073.02.01.02.02.09
22970021.00.055.02.01.01.01.08
32970067.00.072.01.01.01.02.09
42970686.00.049.02.01.02.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 11 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 12, + "source": [ + "#save\n", + "df.loc[:,'died_in_90']=df.loc[:,'died_in_90'].astype(int)\n", + "\n", + "with open('../complete_fairness_data.pickle', 'wb') as picklefile: \n", + " pickle.dump(df, picklefile)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/xgboost/imputed/7_xgb_imputed_fairness.ipynb b/xgboost/imputed/7_xgb_imputed_fairness.ipynb new file mode 100644 index 0000000..bf853bc --- /dev/null +++ b/xgboost/imputed/7_xgb_imputed_fairness.ipynb @@ -0,0 +1,773 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Fairness Assessment" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 17, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import pickle\n", + " \n", + "import datetime\n", + "dte = datetime.datetime.now()\n", + "dte = dte.strftime(\"%Y%m%d\")\n", + "\n", + "# import custom functions\n", + "import sys\n", + "sys.path.append('/ML-AI-PCOR-2021/onc_functions')\n", + "\n", + "from fairness import get_fairness_assessment\n", + "\n", + "print('python-' + sys.version)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 11, + "source": [ + "# load pooled results from the xgboost imputed model (not calibrated)\n", + "\n", + "pred_df = pd.read_csv('./roc_results/2021_xgb_pooling_results_final_roc.csv')\n", + "pred_df = pred_df.loc[:,['averaged','died_in_90','usrds_id']].copy()\n", + "pred_df.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " averaged died_in_90 usrds_id\n", + "0 0.467093 1 31089.0\n", + "1 0.473195 0 34521.0\n", + "2 0.290782 0 46751.0\n", + "3 0.225663 0 50506.0\n", + "4 0.041878 0 54985.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
averageddied_in_90usrds_id
00.467093131089.0
10.473195034521.0
20.290782046751.0
30.225663050506.0
40.041878054985.0
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 11 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 12, + "source": [ + "#load fairness details\n", + "with open('../complete_fairness_data.pickle', 'rb') as f:\n", + " dataset = pickle.load(f)\n", + "dataset.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset\n", + "0 2969676.0 0 72.0 2.0 1.0 2.0 2.0 8\n", + "1 2969869.0 1 73.0 2.0 1.0 2.0 2.0 9\n", + "2 2970021.0 0 55.0 2.0 1.0 1.0 1.0 8\n", + "3 2970067.0 0 72.0 1.0 1.0 1.0 2.0 9\n", + "4 2970686.0 0 49.0 2.0 1.0 2.0 2.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubset
02969676.0072.02.01.02.02.08
12969869.0173.02.01.02.02.09
22970021.0055.02.01.01.01.08
32970067.0072.01.01.01.02.09
42970686.0049.02.01.02.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 12 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 13, + "source": [ + "#combine these 2 dataframes\n", + "data = pred_df.merge(dataset, how='left', on=['usrds_id','died_in_90'])\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " averaged died_in_90 usrds_id inc_age sex dialtyp race hispanic \\\n", + "0 0.467093 1 31089.0 80.0 1.0 1.0 2.0 2.0 \n", + "1 0.473195 0 34521.0 64.0 2.0 1.0 1.0 2.0 \n", + "2 0.290782 0 46751.0 69.0 2.0 1.0 1.0 2.0 \n", + "3 0.225663 0 50506.0 73.0 2.0 NaN 1.0 2.0 \n", + "4 0.041878 0 54985.0 48.0 1.0 1.0 1.0 2.0 \n", + "\n", + " subset \n", + "0 9 \n", + "1 8 \n", + "2 8 \n", + "3 9 \n", + "4 8 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
averageddied_in_90usrds_idinc_agesexdialtypracehispanicsubset
00.467093131089.080.01.01.02.02.09
10.473195034521.064.02.01.01.02.08
20.290782046751.069.02.01.01.02.08
30.225663050506.073.02.0NaN1.02.09
40.041878054985.048.01.01.01.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 13 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 14, + "source": [ + "fairness = get_fairness_assessment(\n", + " data,\n", + " y_proba_col_name='averaged',\n", + " y_true_col_name='died_in_90')\n", + "fairness.head(39)" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Feature Value Count AUC TN FP FN TP\n", + "0 agegroup 1.0 4340 0.868198 4288 6 42 4\n", + "1 agegroup 2.0 12774 0.845767 12527 35 186 26\n", + "2 agegroup 3.0 26120 0.847524 25362 177 483 98\n", + "3 agegroup 4.0 53564 0.818923 51122 627 1555 260\n", + "4 agegroup 5.0 85076 0.800299 79018 1734 3540 784\n", + "5 agegroup 6.0 86140 0.785300 74566 4050 5413 2111\n", + "6 agegroup 7.0 62193 0.765894 47085 6840 4697 3571\n", + "7 agegroup 8.0 15098 0.750794 9313 2817 1268 1700\n", + "8 sex 1.0 198347 0.830897 174200 9500 9565 5082\n", + "9 sex 2.0 146957 0.819263 129080 6786 7619 3472\n", + "10 dialtyp 1.0 310415 0.817315 271340 15004 16289 7782\n", + "11 dialtyp 2.0 15082 0.851288 14766 36 249 31\n", + "12 dialtyp 3.0 13295 0.859224 12995 29 241 30\n", + "13 dialtyp 4.0 77 0.969178 70 3 1 3\n", + "14 dialtyp 100.0 6436 0.781018 4110 1214 404 708\n", + "15 race 1.0 230577 0.818587 197403 13397 12658 7119\n", + "16 race 2.0 93560 0.826826 86110 2440 3801 1209\n", + "17 race 3.0 3225 0.827648 3051 46 96 32\n", + "18 race 4.0 12965 0.846709 12082 306 431 146\n", + "19 race 5.0 3776 0.830553 3563 45 137 31\n", + "20 race 6.0 881 0.811355 776 44 46 15\n", + "21 race 9.0 321 0.770124 296 8 15 2\n", + "22 hispanic 1.0 51021 0.843355 47378 1144 1876 623\n", + "23 hispanic 2.0 292532 0.820910 254706 14866 15187 7773\n", + "24 hispanic 9.0 1752 0.790733 1197 276 121 158" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FeatureValueCountAUCTNFPFNTP
0agegroup1.043400.86819842886424
1agegroup2.0127740.845767125273518626
2agegroup3.0261200.8475242536217748398
3agegroup4.0535640.818923511226271555260
4agegroup5.0850760.8002997901817343540784
5agegroup6.0861400.78530074566405054132111
6agegroup7.0621930.76589447085684046973571
7agegroup8.0150980.7507949313281712681700
8sex1.01983470.830897174200950095655082
9sex2.01469570.819263129080678676193472
10dialtyp1.03104150.81731527134015004162897782
11dialtyp2.0150820.851288147663624931
12dialtyp3.0132950.859224129952924130
13dialtyp4.0770.96917870313
14dialtyp100.064360.78101841101214404708
15race1.02305770.81858719740313397126587119
16race2.0935600.82682686110244038011209
17race3.032250.8276483051469632
18race4.0129650.84670912082306431146
19race5.037760.83055335634513731
20race6.08810.811355776444615
21race9.03210.7701242968152
22hispanic1.0510210.8433554737811441876623
23hispanic2.02925320.82091025470614866151877773
24hispanic9.017520.7907331197276121158
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 14 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 15, + "source": [ + "#save (for the aucroc evaluated model)\n", + "fairness.to_csv('./roc_results/' + str(dte) + '_xgb_imputed_fairness.csv')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/xgboost/imputed/8_xgb_imputed_risk_categories.ipynb b/xgboost/imputed/8_xgb_imputed_risk_categories.ipynb new file mode 100644 index 0000000..2d4b286 --- /dev/null +++ b/xgboost/imputed/8_xgb_imputed_risk_categories.ipynb @@ -0,0 +1,581 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Risk categories" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "!pip install --upgrade pip\n", + "!pip install pandas" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: pip in /usr/local/lib/python3.6/dist-packages (21.0.1)\n", + "Requirement already satisfied: pandas in /usr/local/lib/python3.6/dist-packages (1.1.5)\n", + "Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.6/dist-packages (from pandas) (2.8.1)\n", + "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas) (2021.1)\n", + "Requirement already satisfied: numpy>=1.15.4 in /usr/local/lib/python3.6/dist-packages (from pandas) (1.19.5)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/dist-packages (from python-dateutil>=2.7.3->pandas) (1.15.0)\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 4, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import pickle\n", + "import datetime\n", + "\n", + "# import custom functions\n", + "import sys\n", + "sys.path.append('../../onc_functions')\n", + "\n", + "from risk import get_risk_categories\n", + "\n", + "print('python-' + sys.version)\n", + "dte = datetime.datetime.now()\n", + "dte = dte.strftime(\"%Y%m%d\")" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 5, + "source": [ + "#load fairness details\n", + "with open('../complete_fairness_data.pickle', 'rb') as f:\n", + " dataset = pickle.load(f)\n", + "dataset.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset\n", + "0 2969676.0 0 72.0 2.0 1.0 2.0 2.0 8\n", + "1 2969869.0 1 73.0 2.0 1.0 2.0 2.0 9\n", + "2 2970021.0 0 55.0 2.0 1.0 1.0 1.0 8\n", + "3 2970067.0 0 72.0 1.0 1.0 1.0 2.0 9\n", + "4 2970686.0 0 49.0 2.0 1.0 2.0 2.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubset
02969676.0072.02.01.02.02.08
12969869.0173.02.01.02.02.09
22970021.0055.02.01.01.01.08
32970067.0072.01.01.01.02.09
42970686.0049.02.01.02.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 5 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "# load pooled results from the xgboost imputed model (not calibrated)\n", + "\n", + "pred_df = pd.read_csv('./roc_results/2021_xgb_pooling_results_final_roc.csv')\n", + "pred_df = pred_df.loc[:,['averaged','died_in_90','usrds_id']].copy()\n", + "pred_df.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " averaged died_in_90 usrds_id\n", + "0 0.467093 1 31089.0\n", + "1 0.473195 0 34521.0\n", + "2 0.290782 0 46751.0\n", + "3 0.225663 0 50506.0\n", + "4 0.041878 0 54985.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
averageddied_in_90usrds_id
00.467093131089.0
10.473195034521.0
20.290782046751.0
30.225663050506.0
40.041878054985.0
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 2 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 6, + "source": [ + "# merge the 2 dataframes\n", + "data = pred_df.merge(dataset, how='left', on=['usrds_id','died_in_90'])\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " averaged died_in_90 usrds_id inc_age sex dialtyp race hispanic \\\n", + "0 0.467093 1 31089.0 80.0 1.0 1.0 2.0 2.0 \n", + "1 0.473195 0 34521.0 64.0 2.0 1.0 1.0 2.0 \n", + "2 0.290782 0 46751.0 69.0 2.0 1.0 1.0 2.0 \n", + "3 0.225663 0 50506.0 73.0 2.0 NaN 1.0 2.0 \n", + "4 0.041878 0 54985.0 48.0 1.0 1.0 1.0 2.0 \n", + "\n", + " subset \n", + "0 9 \n", + "1 8 \n", + "2 8 \n", + "3 9 \n", + "4 8 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
averageddied_in_90usrds_idinc_agesexdialtypracehispanicsubset
00.467093131089.080.01.01.02.02.09
10.473195034521.064.02.01.01.02.08
20.290782046751.069.02.01.01.02.08
30.225663050506.073.02.0NaN1.02.09
40.041878054985.048.01.01.01.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 6 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 8, + "source": [ + "risk_cat = get_risk_categories(data,\n", + " y_proba_col_name='averaged',\n", + " y_true_col_name='died_in_90')\n", + "risk_cat" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Risk Category Count Count Died in 90 Count Survived Percent Died in 90\n", + "0 0-0.09 149202 1681 147521 0.011267\n", + "1 0.1-0.19 76283 3315 72968 0.043457\n", + "2 0.2-0.29 44122 3784 40338 0.085762\n", + "3 0.3-0.39 29109 4082 25027 0.140232\n", + "4 0.4-0.49 20156 3946 16210 0.195773\n", + "5 0.5-0.59 13145 3424 9721 0.260479\n", + "6 0.6-0.69 7775 2699 5076 0.347138\n", + "7 0.7-0.79 3919 1753 2166 0.447308\n", + "8 0.8-0.89 1246 755 491 0.605939\n", + "9 0.9-0.99 343 294 49 0.857143" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Risk CategoryCountCount Died in 90Count SurvivedPercent Died in 90
00-0.0914920216811475210.011267
10.1-0.19762833315729680.043457
20.2-0.29441223784403380.085762
30.3-0.39291094082250270.140232
40.4-0.49201563946162100.195773
50.5-0.5913145342497210.260479
60.6-0.697775269950760.347138
70.7-0.793919175321660.447308
80.8-0.8912467554910.605939
90.9-0.99343294490.857143
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 8 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 10, + "source": [ + "#save \n", + "risk_cat.to_csv('./roc_results/' + str(dte) + '_xgb_imputed_risk_cat.csv')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/xgboost/imputed/__init__.py b/xgboost/imputed/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/xgboost/non_imputed/0_xgb_nonimputed_preprocess.R b/xgboost/non_imputed/0_xgb_nonimputed_preprocess.R new file mode 100644 index 0000000..efd6a33 --- /dev/null +++ b/xgboost/non_imputed/0_xgb_nonimputed_preprocess.R @@ -0,0 +1,52 @@ +library(RPostgres) +library(DBI) +library(dplyr) +library(tidyr) +#library(mlrMBO) # for bayesian optimisation +library(skimr) # for summarising databases +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds + +source(file.path("~","ONC_xgboost","category_variables.R")) + +con <- dbConnect( + RPostgres::Postgres(), + dbname = '', + host = '', + port = '', + user = '', + password = '' +) + +universe=dbGetQuery( + con, + "SELECT * + FROM medxpreesrd") + +# data cleaning/preprocessing --------------------------------------------- + +# remove variables specific to imputation that are not relevant here +universe=universe %>% select(-c("wasna_height","wasna_weight", + "wasna_bmi","wasna_sercr","wasna_album", + "wasna_gfr_epi","wasna_heglb", + "cdtype" +)) + +num_vars = setdiff(names(universe) , categoryVars) + +continuous_vars = c("height", "weight", "bmi", "sercr", "album", "gfr_epi", "heglb") + +num_vars = setdiff(num_vars, continuous_vars) +for (cc in num_vars) { + universe[,cc]=as.numeric(universe[,cc]) +} + +for (c in categoryVars) { + universe[,c]=as.factor(universe[,c]) +} + +# one hot encode ---------------------------------------------------------- +universe=data.table(universe) +universe=one_hot(as.data.table(universe), naCols=TRUE, dropUnusedLevels = TRUE) +save(universe, file="universe.RData") diff --git a/xgboost/non_imputed/1_xgb_nonimputed_cv.R b/xgboost/non_imputed/1_xgb_nonimputed_cv.R new file mode 100644 index 0000000..f42b764 --- /dev/null +++ b/xgboost/non_imputed/1_xgb_nonimputed_cv.R @@ -0,0 +1,107 @@ +library(RPostgres) +library(DBI) +library(xgboost) +library(dplyr) +library(tidyr) +library(magrittr) +##The following 8 libraries are needed to run using Simon Coulomb's approach +library(smoof) +library(mlrMBO) # for bayesian optimisation +library(skimr) # for summarising databases +library(purrr) # to evaluate the loglikelihood of each parameter set in the random grid search +library(DiceKriging) +library(rgenoud) +library(here) +##The previous 8 libraries are needed to run using Simon Coulomb's approach +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds + +#Run a 5-fold cross_validation xgboost model on the training data +#(70/30 split into test/validation data) to find the optimal hyperparemeters for xgboost. + +source("../category_variables.R") + +# load non imputed data --------------------------------------------------- +load('universe.RData') + +depvar = "died_in_90" + +trainsubsets = c(0,1,2,3,4,5,6) +#testsubsets = c(7,8,9) + +rhscols = setdiff(names(universe), c("usrds_id", "subset", "died_in_90")) + +train_onc=universe %>% filter(subset %in% trainsubsets) %>% as.data.frame() +#test_onc=universe %>% filter(subset %in% testsubsets) %>% as.data.frame() +rm(universe) +gc() +cv_folds = rBayesianOptimization::KFold(train_onc[, depvar], # creating 5 fold validation + nfolds= 5, + stratified = TRUE, + seed= 0) + +dtrain <-xgb.DMatrix(as.matrix(train_onc[, rhscols]), label = train_onc[, depvar]) +#dtest <-xgb.DMatrix(as.matrix(test_onc[, rhscols]), label = test_onc[, depvar]) +rm(train_onc) +gc() +# Tune parameters --------------------------------------------------- +obj.fun <- smoof::makeSingleObjectiveFunction( + name = "xgb_cv_bayes", + fn = function(x){ + set.seed(12345) + cv <- xgb.cv(params = list( + booster = "gbtree", + scale_pos_weight = sqrt(12), + eta = x["eta"], + max_depth = x["max_depth"], + min_child_weight = x["min_child_weight"], + gamma = x["gamma"], + lambda = x["lambda"], + alpha = x["alpha"], + subsample = x["subsample"], + colsample_bytree = x["colsample_bytree"], + max_bin = x["max_bin"], + objective = 'binary:logistic', + eval_metric = "auc", + tree_method = "hist"), + data=dtrain, + nrounds = x["nround"], + folds = cv_folds, # this was nfold before + prediction = FALSE, + showsd = TRUE, + early_stopping_rounds = 15, + verbose = 1) + + cv$evaluation_log[, max(test_auc_mean)] + }, + par.set = makeParamSet( + makeNumericParam("eta", lower = 0.001, upper = 0.8), + makeNumericParam("gamma", lower = 0, upper = 9), + makeNumericParam("lambda", lower = 1, upper = 9), + makeNumericParam("alpha", lower = 0, upper = 9), + makeIntegerParam("max_depth", lower = 2, upper = 10), + makeIntegerParam("min_child_weight", lower = 1, upper = 5), + makeIntegerParam("nround", lower = 10, upper = 500), + makeNumericParam("subsample", lower = 0.2, upper = 1), + makeNumericParam("colsample_bytree", lower = 0.3, upper = 1), + makeIntegerParam("max_bin", lower = 255, upper = 1023) + ), + minimize = FALSE +) + +des = generateDesign(n=length(getParamSet(obj.fun)$pars)+1, # the number of experiments cannot equal the number of variables therefore to increase computation time, we are adding 1 to the total number of hyperparameters. + par.set = getParamSet(obj.fun), + fun = lhs::randomLHS) ## . If no design is given by the user, mlrMBO will generate a maximin Latin Hypercube Design of size 4 times the number of the black-box function's parameters. + +control = makeMBOControl() +control = setMBOControlTermination(control, iters = 100) # number of Bayesian iterations + +results = mbo(fun = obj.fun, + design = des, + control = control, + show.info = TRUE) + +print(results) + +save(results, file = "2021_xgb_cv_results_nonimputed.RData") \ No newline at end of file diff --git a/xgboost/non_imputed/2_xgb_nonimputed_final_model.R b/xgboost/non_imputed/2_xgb_nonimputed_final_model.R new file mode 100644 index 0000000..45a5757 --- /dev/null +++ b/xgboost/non_imputed/2_xgb_nonimputed_final_model.R @@ -0,0 +1,190 @@ +library(xgboost) +library(sqldf) +library(dplyr) +library(tidyr) +library(magrittr) +##The following 8 libraries are needed to run using Simon Coulomb's approach +library(smoof) +library(mlrMBO) # for bayesian optimisation +library(skimr) # for summarising databases +library(purrr) # to evaluate the loglikelihood of each parameter set in the random grid search +library(DiceKriging) +library(rgenoud) +library(here) +##The previous 8 libraries are needed to run using Simon Coulomb's approach +library(data.table) +library(mltools) #data.table and mltools are needed for "one_hot" function +library(readr) #read rds + + +# load non imputed data --------------------------------------------------- +load("universe.RData") + +depvar = "died_in_90" + +trainsubsets = c(0,1,2,3,4,5,6) +testsubsets = c(7,8,9) + +rhscols = setdiff(names(universe), c("usrds_id", "subset", "died_in_90")) + +train_onc=universe %>% filter(subset %in% trainsubsets) %>% as.data.frame() +train_onc = train_onc[order(train_onc$usrds_id),] + +test_onc=universe %>% filter(subset %in% testsubsets) %>% as.data.frame() +test_onc = test_onc[order(test_onc$usrds_id),] + + +rm(universe) +gc() + +dtrain <-xgb.DMatrix(as.matrix(train_onc[, rhscols]), label = train_onc[, depvar]) +dtest <-xgb.DMatrix(as.matrix(test_onc[, rhscols]), label = test_onc[, depvar]) + +set.seed(297) + +# Cross-validation yields hyperparameters: +#########load the results from step 1 for our best parameters + +load("./roc_auc/2021_xgb_cv_results_nonimputed.RData") + +xeta= results$x[['eta']] +xgamma= results$x[['gamma']] +xlambda= results$x[['lambda']] +xalpha= results$x[['alpha']] +xmax_depth= results$x[['max_depth']] +xmin_child_weight= results$x[['min_child_weight']] +xnround=results$x[['nround']] +xsubsample= results$x[['subsample']] +xcolsample_bytree= results$x[['colsample_bytree']] +xmax_bin=results$x[['max_bin']] + + +scenarios = as.data.frame( + rbind( + + c(xalpha, xcolsample_bytree, xeta, xgamma, xlambda, xmax_bin, xmax_depth, xmin_child_weight, xnround, xsubsample) + + )) +names(scenarios)=c("alpha","colsample_bytree","eta","gamma","lambda","max_bin","max_depth", + "min_child_weight","rounds","subsample") + +scenarios$inx = 1:dim(scenarios)[1] + +watchlist <- list(eval = dtest, train = dtrain) + +attr(dtrain, 'label') <- getinfo(dtrain, 'label') +dy = NULL + +for (i in scenarios$inx) { + s = scenarios[scenarios$inx == i, ] + + param <- + list( + max_depth = s$max_depth, + eta = s$eta, + nthread = 16, + verbosity = 0, + gamma = s$gamma, + lambda = s$lambda, + alpha = s$alpha, + maximize = TRUE, + tree_method = "hist", + max_bin = s$max_bin, + min_child_weight=s$min_child_weight, + eval_metric = "auc", + colsample_bytree=s$colsample_bytree, + subsample=s$subsample, + scale_pos_weight=sqrt(12), + objective = "binary:logistic" + ) + set.seed(297) + starttime = proc.time()[3] + fit <- + xgb.train( + param, + dtrain, + s$rounds, + # nthread=16, + watchlist, + maximize = TRUE, + early_stopping_rounds = 15, + verbose = 1 + ) + + feature_imp = xgb.importance(fit$feature_names, + model = fit) + + save(feature_imp, file = "./roc_auc/2021_xgb_nonimputed_feature_importance.RData") + + endtime = proc.time()[3] + durationinsecs = (endtime - starttime) + + dx = as.data.frame(cbind(predict(fit, newdata = dtest), as.vector(getinfo(dtest, "label")))) + names(dx)[1:2] = c("score", "y") + dx$usrds_id = test_onc$usrds_id + + write.csv(dx,file="./roc_auc/2021_xgb_nonimputed_y_proba.csv") + + openxlsx::write.xlsx(as.data.frame(dx), file = "./roc_auc/2021_nonimputed_predictions.xlsx", + sheetName='Sheet1', row.names=FALSE,showNA = F) + + + outdata = as.data.frame(seq(0, .99, .01)) + names(outdata) = "bin" + + above_thresh = sqldf( + "select a.bin as threshold, sum(b.y) as tp, count(b.y) as detections + from outdata a + left join dx b on a.bin<=b.score + group by a.bin + order by a.bin desc" + ) + + below_thresh = sqldf( + "select a.bin as threshold, sum(b.y) as fn, count(b.y) as nondetections + from outdata a + left join dx b on a.bin>b.score + group by a.bin + order by a.bin desc" + ) + + + perfdata = above_thresh %>% left_join(below_thresh, by = c("threshold")) + perfdata$tp = replace_na(perfdata$tp, 0) + perfdata$fn = replace_na(perfdata$fn, 0) + + perfdata = perfdata %>% mutate( + fp = detections - tp, + tn = nondetections - fn, + sensitivity = tp / (tp + fn), + specificity = tn / (fp + tn), + fpr = 1 - specificity, + tpr = sensitivity, + LR = sensitivity / (1 - specificity), + ppv = tp / detections, + npv = tn / (tn + fn) + ) + + + perfdata$iter = i + + perfdata$durationinsecs = durationinsecs + + # pos.scores = dx$score[dx$y == 1] + # neg.scores = dx$score[dx$y == 0] + # + # #perfdata$auc_tim_test = mean(sample(pos.scores, 7000, replace = T) > sample(neg.scores, 7000, replace = T)) + perfdata$auc_xgb_test = max(fit$evaluation_log$eval_auc) + perfdata$auc_xgb_train = max(fit$evaluation_log$train_auc) + + dy = as.data.frame(rbind(dy, perfdata)) + + print(paste0("Finished iteration ", i, " auc_tim_test: ", max(perfdata$auc_xgb_test, " Duration ", durationinsecs))) +} +########## +dy = dy %>% mutate( + accuracy = (tp + tn) / (tp + tn + fp + fn), + f1_score = 2 * ppv * sensitivity / (ppv + sensitivity) +) +write.csv(dy,file="./roc_auc/2021_xgbResults_nonimputed.csv") +#sink() diff --git a/xgboost/non_imputed/3_xgb_nonimputed_calibration.ipynb b/xgboost/non_imputed/3_xgb_nonimputed_calibration.ipynb new file mode 100644 index 0000000..7e27673 --- /dev/null +++ b/xgboost/non_imputed/3_xgb_nonimputed_calibration.ipynb @@ -0,0 +1,430 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Calibrate results from XGBoost non-imputed model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 16, + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import pickle\n", + "\n", + "import sys\n", + "sys.path.append('../../onc_functions')\n", + "\n", + "# import custom functions\n", + "from plot_functions import onc_plot_calibration_curve\n", + "from calibrate_onc import calibrate_onc" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 17, + "source": [ + "#connect to posgres database\n", + "import psycopg2\n", + "from sqlalchemy import create_engine\n", + "\n", + "con = create_engine('postgresql://username:password@location/dbname')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Plot calibration curve of original model" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 18, + "source": [ + "# load results from the model\n", + "pred_df = pd.read_csv('./roc_auc/2021_xgb_nonimputed_y_proba.csv')\n", + "pred_df.drop(columns=['Unnamed: 0'],inplace=True)\n", + "pred_df.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y usrds_id\n", + "0 0.580939 1 31089.0\n", + "1 0.399797 0 34521.0\n", + "2 0.339976 0 46751.0\n", + "3 0.274023 0 50506.0\n", + "4 0.046709 0 54985.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreyusrds_id
00.580939131089.0
10.399797034521.0
20.339976046751.0
30.274023050506.0
40.046709054985.0
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 18 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 19, + "source": [ + "onc_plot_calibration_curve(\n", + " y_true=pred_df.y, \n", + " y_proba=pred_df.score, \n", + " label='XGBoost_non-imputed',\n", + " filename='./roc_auc/xgb_nonimputed_orig_calibration')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAncAAAJNCAYAAABTK1OpAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAAB5u0lEQVR4nO3deZyN5f/H8dfHGCO7ELJkiLIPJkLKUpK1pBCFFktUKpVW0p4WkS+pLElZ0iIpiWTJniGyLzFCluzLmJnr98cc85s0xmBm7nPOvJ+Pxzycc93b+8zN+Mx139d9mXMOEREREQkOWbwOICIiIiJpR8WdiIiISBBRcSciIiISRFTciYiIiAQRFXciIiIiQUTFnYiIiEgQyep1AH9RsGBBV6pUKa9jiIiIiJzTsmXL9jrnCiW3TMWdT6lSpVi6dKnXMURERETOycz+PNsyXZYVERERCSIq7kRERESCiIo7ERERkSCi4k5EREQkiKi4ExEREQkiKu5EREREgoiKOxEREZEgouJOREREJIiouBMREREJIiruRERERIJIwBV3ZjbSzP42s1VnWW5mNtjMNprZSjOrntEZRURERLwScMUdMBpoksLyW4Cyvq+uwLAMyCQiIiLiFwKuuHPOzQH2p7BKK+ATl2AhkM/MimZMOhERERFvBVxxlwrFgO1J3kf72kRERESCXjAWd6lmZl3NbKmZLd2zZ4/XcURERCQAOedYsmSJ1zESBWNxtwMokeR9cV/bfzjnRjjnIp1zkYUKFcqQcCIiIhJc3nrrLWrXrs2aNWu8jgJAVq8DpIMpQC8zGw/UAg4653Z6nElERESCyMmTJzl48CCXXXYZ999/P4UKFeKqq67yOhYQgMWdmX0O1AcKmlk00A8IBXDODQemAU2BjcAxoIs3SUVERCQYOee44YYbyJUrFzNmzCB//vx07tzZ61iJAq64c861P8dyB/TMoDgiIiKSSRw9epScOXNiZjz88MNceumlmJnXsf4jGO+5ExEREUlTq1evpnTp0kydOhWAu+66iyZNUnrsrndU3ImIiIicRXx8PABly5alcePGlChR4hxbeE/FnYiIiEgyRo4cSa1atTh58iTZsmVj7NixVK1a1etY56TiTkRERCQZRYsW5fLLL+fIkSNeRzkvKu5EREREgJiYGHr37s2wYQnT0t9yyy188803FChQwONk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pqLiTkREMo3TD+6vVq0a9evX18jNdLJx40YGDhxIx44due6667yOk+lohgofzVAhIhK8nHM8/vjjHD16lA8++MDrOEGvRYsWzJ49m/Xr11O0aFGv4wQlzVAhIiKZmpkRFhZGbGws8fHx6rFLR9999x1Tp05l4MCBKuw8op47H/XciYgEl7///puePXvy7LPPEhERgXNOz6tLZydOnKBSpUpkzZqVlStXki1bNq8jBa2Ueu70q4uIiASl0NBQli5dyurVqwFU2GWAd955h02bNjF48GAVdh5ScSciIkFj5cqVPP744zjnyJ8/P+vWraNDhw5ex8oUtm/fziuvvELr1q31nECPqbgTEZGgMW/ePMaOHcuff/4JoN6jDNSnTx/i4+N5++23vY6S6am4ExGRgDZjxgx++uknALp3787atWspVaqUt6EymVmzZjFx4kSefvppfe/9gAZU+GhAhYhI4ImLi6Nq1aoULVqUGTNmeB0nUzp16hTVqlXj2LFjrF69mksuucTrSJmCHoUiIiJBwznHxIkTufXWWwkLC2PKlClcfvnlXsfKtIYOHcrq1av5+uuvVdj5CV2WFRGRgPLrr7/Srl07Pv30UwBKly5N9uzZPU6VOe3evZt+/frRpEkTWrZs6XUc8VFxJyIifi8mJobTt87UrVuX6dOn06VLF49TSd++fTl+/DjvvfeeHjXjR1TciYiI33v44Ydp2LAh+/fvB6Bx48aaZcJjCxYsYPTo0Tz22GOUK1fO6ziShAZU+GhAhYiIfzlw4AAA+fLlY/Pmzaxdu5amTZt6G0qAhIEstWrVYufOnaxbt45cuXJ5HSnT8csZKsyssJl9bGbf+95XMLP7vMojIiL+49ixY1SuXJknnngCSLivToWd//j4449ZtmwZb731lgo7P+Rln/ZoYDpweojTeqC3V2FERMR7hw8fBiBHjhw888wz9OjRw+NEcqb9+/fzzDPPcP3119OuXTuv40gyvCzuCjrnJgLxAM65WCDOwzwiIuKhGTNmUKJECaKiogDo0aMH1atX9zaU/Mfzzz/PP//8w5AhQzSIwk95WdwdNbMCgAMws2uBgx7mERERD8TFJfxeHxkZScuWLbn00ks9TiRnExUVxfDhw+nZsydVqlTxOo6chWcDKsysOjAEqASsAgoBdzjnVniRRwMqREQyXv/+/Vm0aBHTpk1T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n3WqME0hJiKg0bIiGSJfvnycPHmSw4cPex1F/FR8fDw//vgjQ4cO5bvvvsPMaNWqFT179qRhw4b/updu165dHiYVEX+n4k4knSxevJg333yTcePGERYWxty5c3Wzu/zHP//8w6hRoxg2bBgbN27ksssu45lnnqFbt24aZCMiF0TFnUg62bt3L4sXL2bLli1cffXVKuzkX5YvX87QoUP57LPPOH78OHXq1OHFF1/k9ttvJywszOt4IhLAVNyJpBHnHJMnT+bYsWPcc889NG3alPXr15M9e3avo4mfOHnyJJMmTeJ///sfCxYsIEeOHHTs2JEHH3yQiIgIr+OJSJBQcSeShj788ENOnjzJ3XffjZmpsBMAtm3bxvDhw/noo4/Ys2cPZcuW5d1336Vz587ky5fP63giEmRU3IlchLi4OIYNG0b79u0pUKAAn332GXnz5tUlWCE+Pp6ZM2cydOjQxFHSzZs3p2fPntx4441kyaKHFYhI+lBxJ3IR1q1bR+/evYmNjaV3794UKFDA60jisQMHDjBmzBj+97//sX79egoWLMhTTz1Ft27duOKKK7yOJyKZgIo7kfN09OhRfv75Z5o3b06FChVYvnw5lSpV8jqWeGzlypUMHTqUTz/9lGPHjnHttdcyduxY7rjjDg2QEJEMpeJO5Dy99NJLvP3222zZsoXixYtTuXJlryOJR2JiYpg8eTJDhw5l/vz5ZM+enbvuuouePXtSvXp1r+OJSCal4k4kFXbt2kVMTAwlS5bkqaeeonnz5prjMxOLjo7mgw8+4MMPP2T37t2UKVOGt956iy5dunDppZd6HU9EMjkVdyLnEBsbS+3atSlfvjzTpk0jf/78XHfddV7HkgzmnGPWrFn873//45tvviE+Pp5mzZrRs2dPGjdurAESIuI3VNyJnEV0dDTFixcna9asDB48mHLlynkdSTxw6NChxAESa9eupUCBAjz++ON0796d8PBwr+OJiPyHftUUScbcuXMpXbp04iMsWrRowVVXXeVxKslIq1atokePHlx++eU8/PDD5M6dm9GjRxMdHc0bb7yhwk5E/FZA9tyZWRPgPSAE+Mg59/oZyx8D7gdigT3Avc65PzM8qASco0ePkjNnTmrVqsVjjz1GrVq1vI4kGejUqVN89dVXDB06lDlz5hAWFkb79u158MEHueaaa7yOJyKSKuac8zrDeTGzEGA9cBMQDSwB2jvn/kiyTgNgkXPumJn1AOo759qmtN/IyEi3dOnSdEwu/u6FF15g8uTJ/Pbbb3p0RSbz119/MWLECEaMGMHOnTsJDw+nR48e3HvvvXp2oYj4JTNb5pyLTG5ZIPbc1QQ2Ouc2A5jZeKAVkFjcOed+TrL+QqBjhiaUgOGcwzlHlixZqFOnDidPniQ+Pt7rWJIOihQpwu7du//THhYWRmxsLPHx8TRp0oQPP/yQJk2aEBIS4kFKEZGLF4jFXTFge5L30UBK187uA75P10QSkI4cOUKbNm1o3rw5vXr1okmTJjRp0sTrWJJOkivsAE6ePEmfPn3o3r07ZcqUyeBUIiJpLxCLu1Qzs45AJHDDWZZ3BboClCxZMgOTiT/ImTMnuXPn1iXYTODEiRMpLh84cGAGJRERSX+BOFp2B1AiyfvivrZ/MbMbgWeBls65k8ntyDk3wjkX6ZyLLFSoULqEFf+yYsUKbrrpJvbt24eZMWnSJB544AGvY0k6OHXqFN9//z2dOnWicOHCXscREckwgVjcLQHKmlm4mWUD2gFTkq5gZtWAD0go7P72IKP4KTNjw4YNbN682esokg7i4uKYNWsWXbt2pUiRIjRt2pQpU6bQpk0br6OJiGSYgBstC2BmTYFBJDwKZaRz7hUzGwAsdc5NMbOfgMrATt8m25xzLVPap0bLBq8pU6awZs0annrqKSBhxomsWYP6joRMJT4+ngULFjB+/HgmTZrE7t27yZkzJ7feeitt27alcePGhIWFYWZn3Ucg/hwUkcwt2EbL4pybBkw7o+2FJK9vzPBQ4re+++47lixZwqOPPkq2bNlU2AUB5xzLli1jwoQJTJgwge3bt5M9e3aaNWtGu3btaNq0KTly5PjXNoULF052UIUu2YpIsAnInrv0oJ674BEXF8fw4cNp3LgxZcuW5ejRo2TLlo3Q0FCvo8lFWrVqFePHj2f8+PFs2rSJ0NBQbr75Ztq1a0fLli3JnTu31xFFRDJE0PXciaRk7969PPPMM/z111+88sor5MyZ0+tIchHWr1/PhAkTGD9+PH/88QdZsmShUaNGPPPMM9x2223kz5/f64giIn5FxZ0EhePHjzN58mQ6duxI4cKFWbZsmZ5ZFsD+/PPPxIJu+fLlmBn16tVj6NChtGnThssuu8zriCIifkvFnQSFjz76iIcffphKlSoRERHBlVde6XUkOU9//fUXkyZNYsKECSxYsACAWrVq8c4773DHHXdQvHhxjxOKiAQGFXcSsPbs2cPu3bupVKkS3bt3p1q1akRERHgdS87D3r17mTx5MuPHj+eXX37BOUfVqlV57bXXuPPOOyldurTXEUVEAo6KOwlIzjmaNm1KTEwMUVFRhIaGct1113kdS1LhwIEDfP3114wfP56ffvqJuLg4rr76avr160fbtm25+uqrvY4oIhLQVNxJQNm8eTNXXHEFISEhvPfee+TNmzfF55eJfzhy5Ajffvst48eP54cffiAmJobw8HCefPJJ2rZtS5UqVXQeRUTSiIo7CRh//PEH1atX5+2336Znz57UqVPH60iSguPHj/P9998zfvx4pk6dyvHjxylWrBg9e/akXbt2XHPNNSroRETSgYo78XsHDhwgX758lC9fnn79+tG6dWuvI8lZxMTEMGPGDCZMmMDXX3/N4cOHueyyy+jSpQvt2rWjbt26ZMkSiLMeiogEDhV34tfeffdd3njjDVavXk2BAgV4+umnvY4kZ4iNjeWXX35h/PjxTJ48mX/++Yd8+fJx55130q5dO+rXr69ZQUREMpB+4orfcc4RFxdH1qxZadSoEdu3bycsLMzrWJlSkSJFzjpl1xdffJE4n+vff/9Nrly5uPXWW2nXrh033XQT2bJl8yCxiIho+jEfTT/mH2JjY2ndujXlypXjrbfe8jpOpneue+KyZ89OixYtaNu2LU2bNuWSSy7JoGQiIpmbph+TgJE1a1bKli1LiRIlvI4i5zBu3DhatGih+VxFRPyMijvx3Lp167jvvvsYNWoUZcuW5e233/Y6Uqa3fv16xo8fn+I6d911VwalERGR86HiTjyXJ08e9u3bR3R0NGXLlvU6TqaV3HyuIiISePRMAvHEDz/8QO/evQEoWrQoq1evpkGDBt6GyoR27tzJ4MGDqVOnDqVKleKpp54iW7ZsvPvuu2zfvt3reCIicgHUcyeeWL58OT/++GPiM+z07LOMk9J8rm3btiU8PDxx3cKFC591tKyIiPgnjZb10WjZ9BUfH89HH31EhQoVuO666zh16hTx8fF6xEkGOXjwYOJ8rjNmzCAuLo6rrrqK9u3baz5XEZEApNGy4rkTJ07w2muvceONN3LdddcRGhrqdaSgd/ToUaZOncr48eOZ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dzp27PivbvWMtn//fpYsWZLYK7d48eLEhyxmz56dGjVq8OCDD1KzZk1q1arFFVdckeKAh8KFC591tKyIiFycatWqUaVKFT7//HPGjRtHjx49ePnllzl16hTt2rX7T3FXqFAhRo8eTfv27RMv27788sv/KYZSu15Szz33HD179qRSpUqEhITQr18/Wrduner9dOvWjd69ewMJj8BKTW/cheQMZOac8zqDX4iMjHRLly71OkaK4uPjadWqFR07dky83yEjnDx5khUrVvzr8uqGDRuAhIcrli9fPrGIq1WrFpUqVdJUXiKSqa1Zs4by5ct7HUOCRHJ/n8xsmXMuMrn11XPn5xYsWMALL7zAV199Ra5cufj222/T9XjOOTZu3Pivy6tRUVHExMQACZcDatWqRZcuXahVqxY1atRIvHFVREREvKfizs/Fx8ezdetWtm3bRoUKFdJ8/3v37k0s5E5fXj09fVeOHDmIjIzkkUceSeyZK168uJ4nJyIi4sdU3PmhcePGsX//fh566CHq1q3LmjVryJr14k/ViRMnWL58+b8ur27evBmALFmyULFiRW677bbEy6sVKlRIk+OKiIhIxtH/3H5oypQp7N69m549e5IlS5ZkC6yUpuvatWsX8fHxrF+//l+XV1esWJE4FL148eLUrFmTbt26JV5ezZUrV7p/NhEREUlfKu78wKlTp3j33Xfp0KEDxYoV46OPPiJHjhwpzsCQ0nRdjRs3ZvHixRw8eBCAXLlycc0119CnT5/Ey6uXX355unwWERER8ZaKOz8QHR1Nv379CAkJ4fHHHyd37twXtb89e/bQtm3bxMurV199tefPwRMREZGMEZDFnZk1Ad4DQoCPnHOvn7E8DPgEqAHsA9o657ZmdM6UHDp0iKlTp3LXXXcRHh7OqlWrKFOmTJrse/ny5WmyHxEREQk8ATfzupmFAEOBW4AKQHszO3MY6X3AP865K4F3gTcyNuW5DRo0iLvvvjtxQENaFXYiIiIA27dvJzw8PPEJCP/88w/h4eFs3bqVDRs20Lx5c8qUKUONGjVo0KABc+bMAWD06NEUKlSIiIgIKlasSJs2bTh27Fia5YqKimLatGlptr/zVadOnXQ/xoVMBzp69Og0m60p4Io7oCaw0Tm32TkXA4wHWp2xTitgjO/1F0Aj84Pnd0RHR7Nu3ToA+vTpw8KFCyld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SCb1/fffU7RoUVatWpXs8ttuu41KlSrRunXrxLbTxdeuXbuoXLkyAwcOBGDBggXcddddANx9993Mmzcvxfa6devSuXNnPvzww8TeqtRq1qwZYWFhFCxYkMsuu4zdu3czb948brvtNnLmzEmuXLlo3bo1c+fOBSA8PJyIiAgAatSowdatW895jGuuuYaiRYsSFhZGmTJlaNy4MQCVK1f+1/Z33nknWbJkoWzZspQuXZq1a9em+nPMnDmTZcuWcc011xAREcHMmTPZvHkzixYton79+hQqVIhs2bKlWOieLy8GVPQys5W+y7b5fW3FgO1J1on2tZ2tvQBwwDkXe0b7v/blW37Qt76IiEimEhUVxYwZM1i4cCHvvvsuO3fupGLFivz222+J63z11VeMHj06ceBFUmZGixYtEgdbnK/hw4fz8ssvs337dmrUqMG+fftSvW1YWFji65CQEGJjY1NYO/n1t2/fTkREBBEREQwfPjzFbbJkyZL4PkuWLP863pl9RGZG1qxZiY+PT2w7W2+ec45OnToRFRVFVFQU69ato3///il+louV0QMqhgEvAc7359vAvRmcIZGZdQW6ApQsWdKrGCIikglk9GOknHP06NGDQYMGUbJkSZ544gn69OnDRx99xGuvvcaUKVMS77tLaTTsvHnzKFOmDJAw0nT8+PHcfffdjBs3jnr16qXYvmnTJmrVqkWtWrX4/vvv2b59O7lz5+bw4cMX9Jnq1atH586d6du3L845vvrqK8aOHXvW9UuUKEFUVNQFHSupSZMm0alTJ7Zs2cLmzZu56qqrOHz4MP/73/+Ij49nx44dLF68OHH90NBQTp06RWhoKI0aNaJVq1Y8+uijXHbZZezfv5/Dhw9Tq1YtHnnkEfbt20eePHmYNGkSVatWveiskMHFnXNu9+nXZvYhMNX3dgdQIsmqxX1tnKV9H5DPzLL6eueSrn96X9FmlhXI61s/uTwjgBEAkZGR7sI/mYiIiH/58MMPKVmyJDfddBMADz74IKNGjWLx4sVMnTqVxx57jN69e1O4cGFy587Nc889l7jthAkTmDdvHvHx8RQvXpzRo0cDMGTIELp06cLAgQMpVKgQo0aNSrH9iSeeYMOGDTjnaNSoEVWrVqVkyZK8/vrrRERE8PTTT5/X5cjq1avTuXNnatasCcD9999PtWrVUnUJ9mKULFmS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z4KplyuYeh9FRETg3MVdb+ArM+vA/xdzkUA24LZ0zCUiIiIiFyDF4s45txuoY2YNgEq+5u+cc7PSPZmIiIiInLdUPefOOfcz8HM6ZxERERGRi6RZJkRERESCiIo7ERERkSCi4k5EREQkiKi4ExEREQkiKu5EREREgoiKOxEREZEgouJOREREJIiouBMREREJIiruRERERIKIijsRERGRIKLiTkRERCSIeFLcmdlWM/vdzKLMbKmv7VIzm2FmG3x/5ve1m5kNNrONZrbSzKon2U8n3/obzKxTkvYavv1v9G1rGf8pRURERDKelz13DZxzEc65SN/7vsBM51xZYKbvPcAtQFnfV1dgGCQUg0A/oBZQE+h3uiD0rfNAku2apP/HEREREfGeP12WbQWM8b0eA9yapP0Tl2AhkM/MigI3AzOcc/udc/8AM4AmvmV5nHMLnXMO+CTJvkRERESCmlfFnQN+NLNlZtbV11bYObfT93oXUNj3uhiwPcm20b62lNqjk2kXERERCXpZPTrudc65HWZ2GTDDzNYmXeicc2bm0juEr7DsClCyZMn0PpyIiIhIuvOk5845t8P359/AVyTcM7fbd0kV359/+1bfAZRIsnlxX1tK7cWTaU8uxwjnXKRzLrJQoUIX+7FEREREPJfhxZ2Z5TSz3KdfA42BVcAU4PSI107AN77XU4B7fKNmrwUO+i7fTgcam1l+30CKxsB037JDZnatb5TsPUn2JSIiIhLUvLgsWxj4yvd0kqzAZ865H8xsCTDRzO4D/gTu9K0/DWgKbASOAV0AnHP7zewlYIlvvQHOuf2+1w8Co4FLgO99XyIiIiJBL8OLO+fcZqBqMu37gEbJtDug51n2NRIYmUz7UqDSRYcVERERCTD+9CgUEREREblIXo2WFfErpfp+53WENLH19WZeRxAREY+p505EREQkiKjnTjK1YOnpCpaeRxERuXjquRMREREJIiruRERERIKIijsRERGRIKLiTkRERCSIqLgTERERCSIq7kRERESCiIo7ERERkSCi4k5EREQkiKi4ExEREQkiKu5EREREgoiKOxEREZEgorllRYJIMM0xGyzz/oqIZDT13ImIiIgEEfXciQSBYOrlCqbeRxERL6jnTkRERCSIqLgTERERCSIq7kRERESCiIo7ERERkSCi4k5EREQkiGi0rIj4pWAaNRtM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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Calibrate the model\n", + "### The XGBoost model can be calibrated by training an isotonic regression on a portion of the testing set. \n", + "\n", + "In order to split the predictions from the test set into a test/train for the classifier, pull in the subset information from the postgres data and merge it with the predictions from the XGBoost model." + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 4, + "source": [ + "df = pd.read_sql_query('''SELECT usrds_id, subset FROM medxpreesrd;''', con)\n", + "df.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id subset\n", + "0 2969676.0 8\n", + "1 2969869.0 9\n", + "2 2970021.0 8\n", + "3 2970067.0 9\n", + "4 2970686.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_idsubset
02969676.08
12969869.09
22970021.08
32970067.09
42970686.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 4 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "### Merge the XGB model results with the subset information" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 5, + "source": [ + "data = pd.merge(pred_df, df, how=\"left\", on=\"usrds_id\")\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y usrds_id subset\n", + "0 0.580939 1 31089.0 9\n", + "1 0.399797 0 34521.0 8\n", + "2 0.339976 0 46751.0 8\n", + "3 0.274023 0 50506.0 9\n", + "4 0.046709 0 54985.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreyusrds_idsubset
00.580939131089.09
10.399797034521.08
20.339976046751.08
30.274023050506.09
40.046709054985.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 5 + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "## Run calibration function" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 6, + "source": [ + "calibrated_results = calibrate_onc(data, path='./roc_auc/', model_name='xgb_nonimputed')" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "accuracy - original/calibrated: 0.9015441157259434 / 0.9268265068845092\n", + "ROC AUC - original/calibrated: 0.8265685870901824 / 0.8264862757849065\n", + "avg precision - original/calibrated: 0.31252417413164046 / 0.3062717318927639\n", + "\tBrier: 0.059\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "## Plot calibrated results" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 7, + "source": [ + "onc_plot_calibration_curve(\n", + " y_true=calibrated_results.y, \n", + " y_proba=calibrated_results.p_calibrated, \n", + " label='XGBoost_non-imputed calibrated',\n", + " filename='./roc_auc/xgb_nonimputed_calibrated')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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adq0KWPHjiV37tzcddddnHHGGZEuL+oowImIiEhIbdq0iVatWjFr1ixKlChBoUKFyJs3L4DC20lSgBMREZGQmTNnDo0bN+bAgQN88skn1KpVi5IlS0a6rKinACciIiIhMW7cONq1a8e+fft49tln+fvf/x7pkrINnS0oIiIip9XOnTvp2bMn1113HZUrV2bcuHH06dMn0mVlK5qBExERkdPm0KFDXHrppSxbtozrrruODz/8kDPPPDPSZWU7moETERGRU7Z27VpWrFhB8+bNWbZsGYmJiXz66acKbyGiGTgRERE5Jb///jtVqlQhJiaGP/74g+HDh9O5c+dIl5WtKcCJiIjISdm8eTMlSpQgKSmJ1NRUcufOzTfffEPDhg0jXVq2p0OoIiIicsI+/vhjzj//fB5//HEaN25M2bJlmTVrlsJbmCjAiYiISKbt378fgEaNGhEXF8cTTzzB5ZdfzvTp07ngggsiXF3OoQAnIiIimdK9e3euvfZa9uzZw2233cbs2bO5/fbbGT9+PIULF450eTmKzoETERGRo3J3zAyAGjVqcOaZZ9KwYUPmz5/PgAED6NWrV9pyCR/NwImIiEiGNm3axOWXX864ceOAQIAbOXIkv/76K2PHjuXuu+9WeIsQBTgRERHJ0DnnnAPA3r17+fTTT2nYsCG5c+dm2rRptGjRIsLV5WwKcCIiIpJm+vTptG7dmoMHD5I3b14mT57MypUrad26NXFxcfz444/ExcVFuswcTwFORERE0uzYsYN58+axatUqDh48SNeuXenbty8dOnTg22+/pUSJEpEuUdBFDCIiIjmauzNq1CgOHDhA586dueaaa1i8eDG7d++mcePGfP/99zz22GM89thjOt8tC1GAExERyeGGDRtGSkoKN998M2bGypUradmyJevWreM///kPN954Y6RLlCPoEKqIiEgOk5yczIABA9i+fTtmxocffsjEiRMxMyZNmkTdunXZvXs33377rcJbFqUAJyIiksMsWbKE++67jxEjRgCBq01jYmJ46623aNq0KWXKlGHmzJnUrVs3wpXK0SjAiYiI5AC7d+9m7NixAFSpUoX58+fTs2dPAFJSUrjnnnu44447aNKkCVOnTqV8+fIRrFaORwFOREQkB3jqqado06YN69evBwIhzszYvXs3rVq1YsCAAdx9992MHTuWggULRrha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5ppruOyyy8iTJ08EKxX5f5qBExGRHMndee6552jatCklSpRg1qxZtGrVin379jFw4EBSUlIoUKAA06ZNY9CgQZEuV+RPFOBERCTH2bVrF23atKFv3760adOGmTNnctFFFwEwfvx4evXqxf/+9z8gcLGCmUWyXJG/UIATEZEcZfHixdSuXZvPP/+c/v37M3LkSPbt28fUqVMBaN26NbNnz6Zx48YRrlTk6HQOnIiI5Bgff/wxiYmJnHHGGXzzzTc0atQIgMTERObPn8+KFSvImzcvNWvWjGyhIsehGTgREcn2kpOT6dOnD23atKFy5crMnTuX0qVL88cffwDQv39/Jk6c+Jeb9YpkVQpwIiKSrW3dupVmzZrx/PPPc/vtt/P9998TExNDtWrV6NevHwCVKlWiSpUqEa5UJPN0CFVERLKtWbNmccMNN7BlyxbeeecdmjdvTr58+ShVqhQDBw7kmmuuiXSJIidFM3AiIpItDR06lMsuu4xcuXIxdepUUlNTqVixYtrD57t27UqpUqUiXKXIydEMnIiIZCsHDhzgrrvuYsiQIVx99dW88847lC1blvPOO4+lS5cqtEm2YO4e6RrCKiEhwWfPnh3pMkREJATWrl3LDTfcwKxZs+jbty/Lli3D3fnoo48iXZrISTGzOe6ecGS7ZuBERCRb+N///keHDh3Yv38/n3zyCddffz0DBgwgNTUVd9fNeCVbUYATEZGo5u68+OKL9OnTh4oVK3LuuedSrFgxAP75z39GtjiRENFFDCIiErV2795N+/bt6d27N61bt+aHH37g7LPPZs+ePZEuTSSkNAMnIiJRacmSJVx//fUsWbKEuLg4PvzwQ3Lnzs20adN0uFSyPc3AiYhI1Pn000+59NJL2bp1K3379iU5OZlNmzYBKLxJjqAAJyIiUSMlJYUHHniA1q1bc+655zJ37lz69etHUlISZcqUiXR5ImGjQ6giIhIVfvvtNzp27MjXX39N8eLFqVatGmXLlgXQM0wlx1GAExGRLG/atGm0bNmSvXv38vbbb/P3v/+dc845J9JliUSMDqGKiEiWNmzYMK644gp27NjBQw89RNeuXSlatKjOdZMcTQFORESypI0bN9K8eXNuueUWGjRowJQpU3jkkUciXZZIlqBDqCIikuWsW7eOGjVqsHXrVu6++2769+9P7tz6J0vkMM3AiYhI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ddiLkizF3Xnvvff417/+xe+//06BAgW44447uOqqqyJdmoiISEhl2QAnciy//vort9xyC1OmTKFevXoMHjyY0qVLU7hw4UiXJiIiEnJZ8hCqyNEcPHiQfv36ERcXx5w5c4iJieH111+nSpUqCm8iIpJjKMBJ1Jg6dSqVK1fmkUceoVWrVvz6668sXbqUatWqRbo0ERGRsNIhVMnydu7cSZ8+fRg8eDB58+alYsWKjBw5UleXiohIjqUAJ1mWuzN69Gh69OjBzp07+de//kX79u05//zzFd5ERCRHU4CTLGnVqlXceeedjB8fuBD5nnvuoX///hGuSkREJGtQgJMsJTk5mQEDBvDoo4+SK1cuBgwYwDnnnMMNN9wQ6dJERESyDAU4yTJmz55Nt27dmDdvHjExMUyfPp1LL7000mWJiIhkOQpwEnYlS5Zk8+bNGS4rVaoUgwYNIjk5mRo1aoS5MhERkeigACdhd7TwBrBo0SIKFSoUxmpERESij+4DJ1mKwpuIiMjxKcBJWLl7pEsQERGJegpwEjYrVqygcePGkS5DREQk6inAScilpKTw0ksvUalSJb777rtIlyMiIhL1dBGDhNTPP//Mrbfeyo8//khsbCxFihRhyZIlbNmy5S99S5QoEYEKRUREoo8CnITEgQMHePLJJ3n22Wc5++yz+fDDD2nbti25cuXSY7BEREROkQKcnHbTp0+na9euabcESUxMpEOHDpEuS0REJNvQOXBy2uzZs4du3bpRr149du/ezfjx41m/fj0DBgyIdGkiIiLZimbg5LT46quv6NatG2vWrCFXrly8+eabNG/ePNJliYiIZEuagZNTsn37dlq3bk3Tpk0544wz+OGHH1i9ejUtWrSIdGkiIiLZlmbg5KS4Ox999BE9e/Zk69atFCxYkJkzZ1KwYMFIlyYiIpLtaQZOTtiGDRu4/PLLadeuHWXLlmXChAksXrxY4U1ERCRMNAMnmebuDB06lH/961/s2rWLhg0bMmnSJHLn1l8jERGRcNIMnGTKr7/+Su3atbntttuoUaMGgwcP5osvvlB4ExERiQD96yvHlJyczIABA3jwwQc5dOgQjz76KI8//rhuxisiIhJBCnByVHPnzqVr164kJSXRvHlz6tWrR9++fRXeREREIkwBTv7iwIEDPPXUUzzzzDPkzp2bkSNH0q5dOwU3ERGR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sss8OTnZ3d1btmzpw4cPd3f3oUOHeqtWrY7ZHhsb6+vWrXN39x07dqRt/8477zxm3Y899pjXrVvX9+/f71u3bvVzzjnHDx486LNnz/bY2Fjfs2eP79692ytXruxz5871lStXekxMjM+bN8/d3du2bevvv/9+htsuUKCAu7t/++23XqhQId+wYYPv37/fzzvvPH/00Ufd3X3AgAF+9913u7t7586dvWnTpp6SkuJLly710qVL+759+/7yOVq0aOHffvvtn8ZwD/xdaNmypR88eNDd3bt37+7vvvuub9iwwcuWLetbtmzxAwcOeL169TL8vtx///1ptbi7b9++3d3dt23b5u7uycnJfvnll/v8+fPd3f3yyy/3WbNmubv7+eef71u3bvWVK1c64FOmTHF39y5duvgLL7yQ1ue5555L2/5vv/2W9vqhhx7yV199Ne37MGbMmLRlV155pS9dutTd3WfMmOFXXHGFu7tfe+21/u6777q7+2uvvfan70V66X9GDgNmewZ5RjNwIiKSo0yYMIFSpUrxyy+/HLXP9ddfT2xsLK1bt05ra9++PUlJSWzatIm4uDheeOEFAKZPn07Hjh0B+Mc//sGUKVOO2V6/fn0SExMZMmRI2qxTZrVo0YJ8+fJRrFgxzj33XDZv3syUKVO4/vrrKVCgAGeddRatW7fmhx9+AKBChQrEx8cDULNmzbTz/Y7l0ksvpVSpUuTLl48LLriAJk2aABAXF/en9du1a0euXLm48MILqVixYtpsU2ZMmjSJOXPmcOmllxIfH8+kSZNYsWIFM2fOpFGjRhQvXpy8efPSvn37DNf/5ptvuPPOO9PeH54NHT16NDVq1KB69eosWLDguOenlS1blvr16wPQqVOntH0E/GnsX375hQYNGhAXF8eIESNYsGDBX7a1Z88epk2bRtu2bdNmFTdu3AjA1KlTufHGG4HA34XTQQFORERyjKSkJL7++mtmzJjByy+/nPYPbJUqVZg7d25av08//ZThw4enXfCQnplx7bXXpl3gcKLefPNN+vXrx9q1a6lZsybbtm3L9Lr58uVLex0TE0NycvIJ91+7di3x8fHEx8fz5ptvHnOdXLlypb3PlSvXn8Y78rYXZkbu3LlJTU1NazvaUzfcnc6dO5OUlERSUhJLlizh8ccfP+ZnOZ6VK1fSv39/Jk2axE8//USLFi2O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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/xgboost/non_imputed/4_xgb_nonimputed_calibrated_plots.ipynb b/xgboost/non_imputed/4_xgb_nonimputed_calibrated_plots.ipynb new file mode 100644 index 0000000..e8ea9d6 --- /dev/null +++ b/xgboost/non_imputed/4_xgb_nonimputed_calibrated_plots.ipynb @@ -0,0 +1,404 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Plot the calibrated results from XGBoost non-imputed" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 13, + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import pickle\n", + "import sys\n", + "sys.path.append('../../onc_functions')\n", + "\n", + "#import custom plotting functions\n", + "from plot_functions import (onc_plot_calibration_curve,\n", + " onc_calc_cm, \n", + " onc_plot_roc, \n", + " onc_plot_precision_recall, \n", + " onc_plot_risk, \n", + " onc_plot_roc_no_threshold)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 14, + "source": [ + "# load results from the calibrated model\n", + "with open('./roc_auc/y_calibrated_xgb_nonimputed.pickle', 'rb') as picklefile: \n", + " calibrated_results = pickle.load(picklefile)" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 15, + "source": [ + "calibrated_results.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y usrds_id subset p_calibrated\n", + "0 0.580939 1 31089.0 9 0.294018\n", + "3 0.274023 0 50506.0 9 0.102941\n", + "9 0.332714 0 157169.0 9 0.138813\n", + "12 0.128133 0 310420.0 9 0.039980\n", + "14 0.285353 0 343742.0 9 0.110308" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreyusrds_idsubsetp_calibrated
00.580939131089.090.294018
30.274023050506.090.102941
90.3327140157169.090.138813
120.1281330310420.090.039980
140.2853530343742.090.110308
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 15 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 16, + "source": [ + "onc_plot_calibration_curve(\n", + " y_true=calibrated_results.y, \n", + " y_proba=calibrated_results.p_calibrated, \n", + " label='XGBoost_non-imputed calibrated',\n", + " filename='./roc_auc/xgb_nonimputed_calibrated')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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9hVs+XvSvXv553907dq1xj/ziWQ9WBQRqcx1113H3Llz+dvf/sYbb7zBww8/zGmnncbJJ59cplyLFi3Iz8+ntLSUH3/8kXbt2pXJHzBgQPTLdcqUKRx77LEpbT8/P5+9996bESNG8Mknn/Dmm2/y9NNPc8455wBEB50nm9ajVatWLFiwgOXLl1NQUJBSeQjGAAI0a9aMWbNm0b9/fyZOnMjkyZMB2HHHHfnrX/9Kv379yM/PT2lf0hU7Ti5Ww4YN2bRpy4QS6e5TVbbx8ccflwtq2rRpk3KwmOhu2siY1YrySktLy+XtsssuCbcRueGqJm9EWLp0KQCvvvoqr776atJyq1evLtOWytqcquXLl1NYWMi2225badlZs2bRo0cPNm7cyNFHH80pp5xCs2bNaNCgAR9//DETJkxIegNYqnbccceEAVRFfVHRPp999tk8//zztGvXjlNPPZWWLVtGA8thw4al1d5IX3399dcVBuSRvoptb6L+atiwYVamhlKwKCI57ZVXXmHEiBEccMAB3H777Xz99dd06tSJSy+9lM8//7zMH86GDRty2GGH8dZbb/Haa6+VCxYz4bDDDmPGjBm8++670WAxEmj89NNPCc/cRO5ujpSLLZ9IfHmA3XffnYceegh3Z86cObz++uuMGDGCf/3rX2zevJmBAwdmaA+rpir7lK7evXuXuWs4mxYvXpwwPbL/sfsZOQO9cePGcuUTBc+VidR99913c9VVV6VcvrI2p6p58+YsXbqUtWvXVhowDho0iLVr15Y5Ux9x2223MWHChLS2nciSJUvYtGlTuYAxUV9EmFm5NAhutnr++eejd2vH3gC3efNm7rjjjrTaFtn26aefzrhx49JaZ/HixeX+hm3cuJElS5aw++67p9WO6sqFqXNERBJatmwZF154Ifn5+YwePZrGjRvTsWNHBg4cyOLFi7niiivKrRO5s3Lo0KGsWbMm422KXBaNvSwVmdQ70dQo8+bNY+HChbRt2zZ6Bq2i8hs3buTNN98Egkud8cyM/fffnz59+kTPKsVemo18YcaekasN++67L02aNOGTTz5JGABNnToVSLxPW6MPP/yQVatWlUuP9GnsRO+FhcFDv77//vty5d9///2E9VfUj4cffjhA9H1SmaZNm7LXXnvxww8/8M033yRtc6oOP/xw3J2XX3650rLz5s2jRYsW5QJFoEp3YSeycePGhNMsJeqLysybNw+AU045pdxMCe+++y5r164tt05FfdW+fXuaN2/OrFmzEp6hTiTyGUl0fN56661a/2yDgkURyWGXX345P/74I4MGDeLAAw+Mpl9zzTX8/ve/Z+zYsYwePbrMOueddx5HH300X375JSeffHLCR/pB1c7oFBcXR88OxH75XXTRRUBwFiV2DsZNmzZx7bXXsnnzZi6++OJoemRuvqeeeopZs2aV2cawYcOYP38+xxxzTPRJULNnz054ViiS1qRJk2jaDjvsAMCCBQvS3r/qaNSoEeeeey6rVq3i5ptvLpP3zTffMHz4cPLz8zn//PNrtV01ZcWKFdGpnCLef/99nnjiCQoKCjj99NOj6YceeigAjzzySJmzi99//325OiIq6sdOnTrx+9//nnHjxpWblD7is88+4+eff47+fuGFF7J582auv/76Mv/ozJ8/n+HDh1e2u2X06dMHCD6HicbvxaYVFRWxbNkyPv300zJlHnrooehwiky48cYby1weXrZsWXSMYGQexFREppiKD6B//vnnck+Riqiorxo2bEifPn1YtGgRV111VcJgc9GiRcyZMyf6e+Ts+eDBg1m2bFk0fd26ddx4440p70sm6TK0iOSkxx9/nGeffZZu3bpxzTXXlMlr0KABjz76KAceeCB9+vThyCOPjF6WycvLY9y4cVxwwQVMmDCBdu3a0b17dzp27EiTJk345ZdfmD17Nm+//TaNGjXisMMOS7j9UaNGRb8wSktL+e677xg/fjy//vorJ598cpmbYo444giuu+467rjjDjp27MiZZ57Jdtttx6RJk/j888/p2rUrffv2jZbffvvtefjhhznrrLPo3r07Z511Fq1bt+aDDz7glVdeoWXLltx3333R8q+++ip9+/alc+fO7LPPPuy8884sXLiQCRMm0KBBgzJ177vvvuy2226MGTOG/Px82rRpg5lx/vnnl7tJI9OGDBnCm2++yb333st7773HUUcdFZ1ncdWqVdx7773RuSO3dt26dePBBx/knXfeoUuXLtF5Fjdv3sx9990XnbMPgqEL3bp1Y/r06Rx66KH06NGDxYsX88ILL9CzZ8+EZxyPPvpo7rzzTi699FL++Mc/0rRpU5o3b86VV14JwJNPPkmPHj24+OKLGT58OIcddhjNmzdn4cKFfPrpp3z++efMnDmTnXfeGQgCu/Hjx/Pcc89x8MEH07NnT5YvXx6dSH7ixIkp7/txxx1Hv379GDRoEPvtt190nsXFixfz1ltvcfjhh0cnz7766quZPHkyXbt25U9/+hMFBQW8//77vPXWW5x55pmMHTu2Gr0QaNWqFevXr6djx46ccsoplJaWMnbsWBYtWsRf//pXunXrlnJdv/vd7+jSpQvjxo3jiCOOoGvXrixevJhJkyax7777Rm+IitW5c2eaNGnCsGHDWLp0aXQ8ZJ8+fSgoKODmm2/mk08+YeTIkbzwwgv06NGD3XbbjZ9//pmvv/6aGTNmMHjwYDp06ABAly5d6NOnD/fcc0/070lknsXCwsKsPPJQwaLIVipTz2DORQsWLKBPnz40a9aMxx57LDrmK1bbtm3597//zaWXXspFF13E5MmTo+OQmjVrxvjx43nttdd49NFHefvtt3n77bcpLS2lsLCQ/fffn8GDB3PBBRckHfsTeYIGBJd+CwoK+O1vf8v555/PxRdfXG7M0+233x59IsNjjz1GaWkpe+65J4MGDeKaa64pN4nuqaeeyowZM7j11luZPHkyK1asoGXLllx++eXcfPPNZb6UevbsyYIFC5g+fToTJkxg5cqVtGrVimOPPZa///3vZe4EzcvL4/nnn+eGG27g2WefZdWqVbg7Xbt2rfFgsUWLFsycOZPbbruNcePGcdddd7Htttty6KGH0rdv3+gTcOqCtm3bMnLkSG644QZGjhzJ+vXrOfjgg/nnP/9Jz549y5WfMGECffv2ZcKECdxzzz3svffe3HHHHRx33HE888wz5cr37NmToUOH8sADDzBs2DA2bNhAmzZtosHi7rvvzgcffMA999zDc889xxNPPMGmTZto2bIlHTp0oE+fPhxwwAHR+ho3bsyUKVMYMGAATz/9NHfffTdFRUX069eP008/Pa1gEWDgwIF07tyZ4cOH8+KLL/Lrr7+y884706lTJy644IJoueOPP54XXniBQYMG8fTTT5OXl8ehhx7K1KlT+fbbbzMSLDZq1IgpU6Zw0003MWbMGJYsWUK7du244YYbomdBU5WXl8fEiRPp168f//3vfxk+fDi77bYbl1xyCf369YsGdLEKCwt57rnnuOWWWxg1ahS//vorEFzlKCgoID8/n/HjxzN69GhGjRrFiy++yOrVq9lpp51o27Yt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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": { + "scrolled": true + } + }, + { + "cell_type": "code", + "execution_count": 17, + "source": [ + "onc_plot_risk(\n", + " y_true=calibrated_results.y, \n", + " y_proba=calibrated_results.p_calibrated,\n", + " label='Predicted (XGBoost Non-Imputed)',\n", + " filename='xgb_nonimputed_mortality_bar')" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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1jE4AAAAAAAAAACQkfl5OgAAAAAApMSZ3U8iIyNTfaN4apimqU8++UQlS5bUO++841VDA3777Te1atVK999/v0aPHp2moQF3cuXKFX3yySeqUqWKGjVqpK1bt7r0/K5w7Ngx1atXTy1atEjz0IB/i4yM1NixY1W6dGktXLjQpefOSH7++Wc9+uijKlu2rMaOHZvmoQHJuXr1qn744Qf17NlTBQsW1FNPPaUVK1ak+obTjOLy5csaMWKEChcurM6dO2vZsmWpHhpwJ0lJSVq1apWef/553XvvvZo2bVqab2x3tYSEBA0dOlSlSpXSvHnz0jw04Hamaeqnn35SzZo11bdvX0VHR7vs3OmZaZpasGCBwzrDMFy+q54d3nvvPeXPn99SbVxcnDp06GDp6/Dy5cvq3r275RxlypTRsGHDLNe7ymeffebU536/fv18cgEPHLOyYPYWT+wCe8vq1avVoEED1axZUzNmzEjTIvk7OXTokEaMGKHixYurW7duOnbsmEvP72oZ9flISEjQjBkzVKRIEbVu3VpLlixxydCAlERHR2v9+vUaM2aMKleurHvvvVcDBw60PGQP3issLEyvv/66pdqEhAQNGTLE5kTeLyEhQbNmzVKpUqXUsmVLzZ8/36XXgkzT1Lp169SzZ08VKVJEb775pq5du+ay87vT1atX1bNnTz3wwAMuGRrwb4sXL1blypU1bNgwr/tZDmlz6dIltWvXTo888kiahwb827Jly1SuXDmNGzcu1eeYN2+eihUrpmHDhqV5aMDtrly5on79+unBBx/02EL01EhISNCYMWNUsWJFffXVVy7/ely2bJkqVaqknj17KioqyqXnBv7t1KlT6tOnjwoVKqRevXppw4YNLr2GGxcXpx9//FHNmzdXuXLlnBpm6C5RUVHq0aOHKleu7JKhAbdLSEjQl19+qQoVKmjs2LEuvdbrLvnz51eZMmUc1h04cEAHDhxwQyIAAAAAAAAAALwPgwMAAAAAeLW8efM6VX/z5k2bkvzT9evX1bRpU3Xp0kWXLl1yS08rzp07p2effVbVqlVzyc7YVixZskQ1a9bUSy+95DU303/zzTeqWLGi7Ts5nTlzRs2aNdOLL77ITfJO2LVrl8LDw/X4449r2bJlbu0dFxenb775Rg0bNlTx4sXd9prhS5KSkjR58mQVK1ZMw4cP159//ml7zz/++EM9e/ZU9erVtW3bNtv7WXH8+HE9+OCDGj16tK2LARMTEzVhwgRVrlzZaxZEerMdO3bo3LlzDusqVKignDlzuiFR2oSFhWnGjBmW67dt26axY8c6rHvxxRctPU+SFBAQoNmzZysoKMhyDleZPn265dp8+fKpQ4cO9oWBR124cMFyrScGB5w9e1atW7dW/fr1tWrVKtv7xcXF6aOPPlLp0qX15ptvKj4+3vaezsjIz8e2bdtUsWJFde/eXadPn/ZYjiNHjmjs2LFpWnQJ7/HKK69YHiQ0b9487dixw+ZE3mvr1q2qVq2aOnXqZNvgudtdunRJQ4YMUalSpfTdd9/Z3s+VduzYoXLlymnatGm2Ds2Lj4/XyJEj1aRJE5cu4IbnbNu2TeXLl9cXX3xhW4+4uDgNGDBAnTp1cur7elRUlLp06aI2bdrYeq1i06ZNqlWrlnbu3GlbD1e5dOmS6tatq8GDB9s6UDcpKUnTpk1T1apVtWvXLtv6IOOKjY3ViBEjVKJECb377rtuGVIRERGhp59+Wg8//LB+//132/tZsWvXLlWpUkXTp0+39Xc7MTExGjhwoMLDw91y7dfV6tevb6lu8eLFNicBAAAAAAAAAMA7MTgAAAAAgFfLnDmzU/XuWAR87Ngx1apVS4sWLbK9lzM+/vhjlSxZUnPnznV771sLjStUqODxm2pHjx6tp556yq1DDKZMmaIWLVqwCN2B2NhY9e7dW5UrV9batWs9HUfHjh2zfXdYX3PgwAFVr15dL730kkcWfWzfvl01atTQhAkT3N77djt27FCNGjX066+/uq3ngQMHVKtWLa8ZnOCtlixZYqmuXr16NidxnSZNmuj555+3XD9q1Cjt2bMn2ce///57ffXVV5bP179/f1WtWtVyvatEREQ4tVP2c88955HhBrDfzZs3Le9UnytXLmXPnt3mRP/07bffqlSpUvr222/d2lf6azHHkCFDVLlyZbcskLUiIz8fH3zwgWrWrKmIiAi390b6ljlzZg0dOtRSrWmaGjhwoM2JvE9SUpIGDx6smjVreuSaw5kzZ9SqVSu1bNlS169fd3t/Z33//feqU6eOTp486baeP//8sx555BHduHHDbT3hegsXLlTdunV19uxZt/SbNWuWWrZsaWlx7OXLl/XQQw/pk08+cUOyv4az1qtXz6u/7x85ckS1a9fWpk2b3NbzwIEDeuCBB9w+CBTp28aNG1W2bFkNHz5cMTExbu+/cuVKlS9fXl9++aXbe99u6dKleuCBB3Tw4EG39dywYYNq166to0ePuq2nK1i97sfgAAAAAAAAAABARsXgAAAAAABezdld0QzDsCnJX86ePav69et71U2jMTEx6tixo7p27erWxfJ3cvz4cdWuXVvffPONR/r36dPH8oILV1u4cKFatmypxMREj/T3docPH1atWrX03nvv2bpbElJv3rx5qlatmscXricmJqpv37569tlnPTLYYd26dQoPD3dq92tXOX/+vBo0aKB9+/a5vbevsHrDb3h4uL1BXOy9997T3Xffbak2Li5OHTp0UEJCwn8eu3jxonr06GG5b7ly5fTGG29YrnclZwcwPfPMMzYlgaetWrXK8nsDdw65SEpK0pAhQ9S6dWuP76C8d+9eVa9e3aOLHjL68/H666+rV69ed3ztBVyhS5cuKl68uKXapUuXesUgNne5evWqmjRpojFjxnj8Z8nvv/9eNWvW1OHDhz2aIyVz585V69atPTLYcMuWLWrevDnXRXzU4sWL1bJlS7d/7vz444/q27dvijUXLlxQvXr13H69IjIyUo0aNfLI9QFHzp49q3r16nnk9SgqKkpNmzb1yCAppD8ffPCBwsPD9fvvv3s0R3R0tNq2bau+ffs6/TspV/j222/VtGlTRUVFub33oUOHFB4e7rahMa7w0EMPyc/P8S2P69atY6gRAAAAAAAAACBDYnAAAAAAAK8WHR3tVH1ISIhNSaRr167p8ccf1/Hjx23r4azLly/rwQcf1OzZsz0d5W/R0dF65pln9Pnnn7u17+jRo/Xuu++6tee//fzzz3r55Zc9msEbrVu3TtWqVdOOHTs8HQXJGDlypNq0aeNVN1LOnTtXLVq0cOvwgIiICDVt2tSjQ1iuXr2qxo0b6/z58x7L4K0uX76szZs3O6zz8/NT3bp13ZDIdXLkyKHp06dbrt++fbveeuut/3z8hRde0MWLFy2dIyAgQLNnz1amTJks93Wln376yXJtyZIlVblyZRvTwJOcWfxdrVo1G5P8T1JSkjp16qQ333zTLf2suHr1qpo2bao5c+a4vXdGfz7eeustjR8/3vY+yNgCAwM1cuRIy/UDBw60MY33uLXD+JIlSzwd5W/79u1T7dq1tWfPHk9H+Y+ffvpJzz//vEcHLKxcudKpz2V4hy1btqhNmzYeG5Dz7rvvJvs9/fr162rQoIF2797t5lR/OXHihLp27eqR3smJiopSkyZNdPLkSY9liIuLU9u2bbV69WqPZYBvS0pKUteuXdWrVy/Fx8d7Os7fJkyYoB49erh1eMDq1avVtm1bjz4PJ0+eVNOmTT0yeCg1cubMqQoVKjisi4uL04oVK9yQCAAAAAAAAAAA7xLg6QAAAAAAkJJz5845VZ85c2abkvy1A+CuXbss1fr7+6t8+fIqUaKEihQpoqxZsyokJETR0dG6fv26jh07pn379mn//v2pvqH74sWLevjhhz1242xKkpKS1KFDBwUGBurpp5+2vd+cOXM0dOjQVB+fJUsWValSRaVKlVKePHmUNWtWxcfH69q1azp69Kj27t1reQfwqVOnqmrVqqpfv36q86QnixYtUuvWrZ0eAgL3GTRo0B0XIHuDRYsWqVWrVpo/f76lXaTS4ty5c2rUqFGqd1E2DENly5ZVmTJlVLRoUWXNmlWBgYG6fv26zp49q/3792v79u2WbsA9fvy4nnrqKW7A/5dly5ZZ2r20QoUKypEjh/2BXKxJkyZq3769Pv30U0v1o0aNUrNmzVS+fHlJ0ldffeXUjo8DBw702GL8yMhIbdy40XL9Y489ZmMaeNKff/6pr776ynL9o48+amOav5imqW7duln+WnSnpKQktW/fXv7+/m55jy3xfKxatUpDhgyx5dzAvz3zzDMaN26cpZ/xN23apIULF+qJJ55wQzLPiIyMVMOGDS1fh3GnS5cuqUGDBlq9erXKlCnj6TiSpD179lhe+G0YhkqWLKnSpUuraNGiyp49uzJnzqy4uDhFRkbq2LFj+u2333Ts2LFUZRk9erSaNWvG4CcfcenSJTVr1szSLteBgYGqVKmSSpYsqUKFCilLliwKDAxUVFSUTp48qYiICG3bti1VAwD79Omjxo0b/+NnOdM01b59e+3du9fSOQoVKqQKFSqoePHiypkz59+f15cvX9bhw4e1adMmXbhwwelsCxcu1BdffKHnnnvO6WPt0KNHD23fvt1SbXBw8N/XPPPnz6+sWbMqMTHx7+vTERER2rNnT6oWScfFxalFixbasGGDSpcu7fTxyLgSExPVoUMHffHFF56OckczZsxQQECAJk+ebHuvffv26cknn0z14NSA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q3Xr1tq+fbvy58/vdF6rMvrzMXnyZP3xxx+W6/38/NSqVSv16tVLNWvWlL+/f4r1ISEhCgkJUY4cOe74c0lMTIw2btyoFStWaNGiRZZ2oYfva9y4sR544AFt2LDBYe3evXs1Z84ctWvXzg3J3GvQoEFatWqV08dVqlRJAwcO1JNPPqmAgDv/GjxnzpzKmTOnSpcurZYtW2rixIlav369xo8fr4ULFzrV7+TJk3r66ae1bNkyh1/zdurXr1+Kww+eeOIJjRkzRmXKlHHqvMWLF9fw4cPVp08f9e3bVx999JHlY9evX68lS5bo8ccfd6on3Gvu3Lkp/mzerFkzjRs3TiVLlrR8zixZsqh9+/Zq166dJk6cqEGDBlm+NjR16lS9/vrruueee/Tbb79p+PDhydYWLlxY77zzjlq2bCnDMCznq127tmrXrq1evXrp2Wef1ZEjRywdd+LECc2YMUO9evWy3MvVbg0JSUm9evX0/vvvq2zZspbPmzt3bnXu3FmdO3fWggUL9Oqrr+rYsWOWj9+7d6/69ev3j6EPQHLGjRtnaQDrv9WtW/fvwZ0pDcPIkiWLsmTJokKFCik8PFx9+vTR1atXNXv2bI0fP16nT5+23LN3796qVKmSatWq5XReK/r27evUgBVJqlChgt5//32nrpNkyZJFLVu2VMuWLbV161b16tVLv/76a7L13bt3d+rnMU+xev3v999/V2RkZLI/mwIAAAAAAAAAkB6lvy0oAAAAAKQb58+fd2phqTOLwJ2V3E6o+fPn16pVq/Txxx87PTTgdoZh6J577rFUO3jwYKd3s2/VqpX279+vOXPmqG7duqnakbBw4cJ69913tW/fPqdu/D558qT69OnjdD8r3nnnHe3YscNyfUhIiD755BN9//33afp8efrpp7V79241bdo02Zpdu3al+vy+7vr162ratKkiIyOdOi579ux67733dPz4cQ0dOtTh0ABHSpcurddff13r16/XkSNHNHz4cN19991pOmd6sXPnTnXq1MmpY4oVK6bvvvtO27dvV5cuXVIcGpCckJAQdejQQRERERo7dqyCgoIsH/vCCy/o0qVLTvd05OjRoxoyZIhTx7Ru3Vq7du1yamjAv913331avHixPvzwQ2XKlOmONVFRUZYXMaR3sbGxlgfm+PLgAOmvBYMdOnSwXD9y5EjNnz/fcv2gQYNUsWJFp3O5kjODA0qUKKGwsDAb08ATfvrpJ7Vu3VqJiYmW6osVK+ZwkVRanT9/Xs8//7zTg4Z69eqlw4cPq3fv3k4vRChevLgmTZqkvXv36sEHH3Tq2HPnzum5555z6hhnZPTnIykpSe+//77l+qpVq2r//v36+uuv9cADD7hkAXFwcLDq16+vMWPGaNeuXTp06JBGjBhh+edG+K6xY8darh02bJhPLOxyxvLly/X22287dUzmzJk1bdo0/fbbb2rdunWyQwOSU6dOHS1YsEDLly9XwYIFnTp21apVGjNmjFPHuNr+/fvv+PFs2bJp3rx5WrBggdNDA/59nhkzZmjGjBlOXU969913U90T7pHcddfMmTNrzpw5mj9/vlNDA27n5+envn376scff7T8s39iYqKmTZumxMREdevWLdn3iu3bt1dERIRatWrl1NCA21WvXl2bNm1ShQoVLB/z4YcfenQo5aVLl3TmzJk7Pubv76+xY8dq5cqVTg0N+LdmzZpp165dTg9u/PDDD7Vx48ZU90XGsGTJEg0aNMipYypVqqRVq1Zp7dq1euqpp1IcGpCc7Nmz65VXXtHBgwf12muvWf5eFh8fr44dOyo2Ntbpno5s2LBBkydPduqYl19+WVu2bEnTcMVq1app/fr1Gjx4cLKvn2fOnLHlGqyr3X///cleU72daZqWh5ECAAAAAAAAAJBeMDgAAAAAgNdasGCBUzdjVq1a1cY0/1WmTBlt3rxZ4eHhbuu5ceNGp26gz5Ytm7755hvNmzdPxYsXd0mGwoULa9GiRRo9erTlm3M//fRTLV++3CX9bzlz5oxTN+dnyZJFP//8s9OLpZMTFham+fPnu2X3W1/z6quvOr3Y+bHHHtP+/fvVq1cvpxaTW1W0aFENGzZMx48f12effabSpUu7vIeviI+PV/v27RUdHW35mK5du2r37t1q0aKFSzIEBASof//++uWXXywPc7h06ZJ69+7tkv6369u3r1M3AL/yyiv65ptvlDVrVpf0f/HFF/Xjjz+m6sbnjGTXrl2Wd6n09cEB0l+LrAoUKGCpNikpyfJ5K1asqMGDB6c2lss4MzggLYvc4H1u3rypwYMHq3nz5k4tdJ02bZoyZ85sY7K/3r9cvnzZcn1ISIi+//57vffee2n+nlCiRAmtWrVKr776qlPHrVq1KlW7dVqR0Z+PNWvW6I8//rBU27p1a61fv1733XefS3onp0SJEnrjjTd0/PhxLViwQA888ICt/eA5derUUaNGjSzVHjt2TDNmzLA5kftER0erZ8+eTh1TrFgx/fbbb+revXuqhiTe7uGHH9bOnTtVr149p4578803nRp86Q6FCxfW1q1b1apVK5eds2vXrpowYYLl+uXLl+vo0aMu6w/3yJUrl3755Rc9++yzLjnfo48+qo8++shy/ccff6xx48YlOyh0zJgxmj17tkJDQ9OcLXfu3Fq0aJHy5s1rqf7w4cNatWpVmvu6WmBgoL7++mv1798/1YMUbpc1a1Z988036tWrl1PH9e7d26ODFeDdrly5os6dO1u+hmEYhoYMGaLNmzc7/X05OaGhoXrnnXf0448/Wh6IevDgQY0aNcol/W8xTVOvvPKKU8dMmDBB77//vqWF8o74+/tr9OjRmjlzZprfO3lSYGCgSpUqZamWwQEAAAAAAAAAgIzGd38DAAAAACDdc/bm9xo1atiU5L+KFSumFStWuHW3x5iYGHXq1MnyzXWFChXSxo0bnd4hygrDMDR48GBNnTrV8g2p/fr1c+nNo0OHDlVUVJSl2sDAQC1cuDBNu/HciZ+fn6ZPn+6ym6nTgyVLluiTTz5x6ph+/fpp0aJFyp8/v02p/icwMFDt2rXTnj179MUXX7jkZktfM2rUKO3evdtSrWEYeu+99zRjxgyX3JT/b9WrV9cvv/xi+bV0zpw5Ti04dmTdunX64YcfLNd36dJFkyZNcln/Wx555BF99913LtmdOL2yeoNvgQIFlDNnTpvT2C9HjhwuXwQYGBio2bNnKzAw0KXndVZ8fLyOHTtmuT4jD3pJT06ePKnRo0erePHiGjNmTLK7x97J66+/roYNG9qYTlq5cqXmzp1ruT40NFRLlizRk08+6bIMAQEBmjhxooYPH+7Uca+99pquXLnishwSz4ckLV261FJdmTJlNHv2bFsGXyXHz89PTzzxhNavX+/UzvTwLWPGjLH8s/bo0aMt/2zs7caMGePUELqSJUtq3bp1lheNWZErVy4tXrxYjz32mOVjYmNjnR54YKeCBQtqzZo1tgw06d27t5o2bWq5ft68eS7PAPtkyZJFy5YtU5UqVVx63nbt2ql58+aWai9cuJDssLPhw4dr4MCBLkz218+QH374oeX6b7/91qX9XeHT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m6pUqZIKFCigjh076vPPP0/VzqTAvxmGoTFjxliuHzx4sMuGrtjB115/8uXLpxw5cliqTcvrj7MyZ87stl7/ZhiGpTrTNG1OgtTwxOeO1c8ZT31ee/vntC9dq3DmWi7Sl0uXLunq1auWajPK9chz585ZqvOlr3FvYfXfLTo6mvcjAAAAAAAAAIAMI8DTAQAAAADgTipUqKDu3burY8eOCg4O9nQcy7vNuNKpU6cs11q9cd2bXLt2zal6qzebZsmSRVmyZElNJJfKly+fpyO4xcmTJy3VFStWzPLN13CdyMhI3bhxw1Jt79691bt3b3sDuZizryOS9dcST+7aeUu2bNmUOXNm3bx509NRPMrqwnF/f3+bk7hHnz59LL+2BgcHK2fOnDpz5ozD2qSkJHXq1Em7du3y6HursLAwy7WmaerChQte8fUI16tWrZp+++03Pfroo9q6daulY0aOHKnHHntM1atXT1NvK18ztzgz3MBOxYsXt1R38eJFJSQkKCDA+q9/eD7urEKFCnrttdc0fvx4p4+95cyZM5o9e7Zmz54tSSpQoIBq166tWrVqqVatWqpcubLlnY2BWxo3bqwHHnjA0kCgvXv3as6cOWrXrp0bkjnPV19/tm3b5rDOmb9bWnnDdTM7TZo0ye09W7VqpYIFC7q9r7t58+eON2fzJG+43mg1Q0xMjCIjI33yujXSxpnfazRv3ty+IDZx9nrk5cuXFRsba6nWG65/eMPrjDOs/qxnmqYSExNT9bMhAAAAAAAAAAC+hqvhAAAAALxCcHCwatasqfr166t169ZesZPc7Txxs6ozN9j5oujoaKfqL126ZKkud+7cqYnjcnny5PF0BLewusOSN9z0mBHxOvJPcXFxun79uqVab3ktyZ07d4bfodiZncN83c8//6xPPvnEcv3IkSNVrlw5Pf7445bqDx06pKFDh6ZpEWxaObsA69y5c3wPScfCwsK0dOlSVa1aVUePHnVYn5iYqJ49e2rr1q2p2gn+Fqu7PUre854ub968lupM09S5c+ec+lrj+Ujem2++qW3btmnVqlWpOv7fTp8+rXnz5mnevHmS/vo5s2rVqqpTp47q1aununXrslASlowdO1YPPvigpdphw4bpqaee8sohFVZff7JkyWL5PaHdrL7+uHOn7fQ+pO/VV191e8+KFStmiMEB3vy5483ZPMXf3185c+b0dAynrpdcvHiRwQEZENcj/8nq7zUk77geedddd8nPz09JSUmejmKJ1X+PTJkyMTQAAAAAAAAAAJBhpP7OOgAAAACwKDAwUFmzZtVdd92le++9V3Xq1FGrVq3Ur18/zZw5U5s3b1ZkZKRWr16toUOHet3QAEkKCgpye88LFy64vac7OXuDndV6b7kZ1Vty2M3qDku+tlNResHrSOrrveVr2FtyeFJoaKilOl8fHHD16lV17drVcn3NmjXVp08fPfbYY+rYsaPl4959911t3rw5NRFdIjWDAzzh22+/lWmaaf7z0EMPeSS/LwkLC9OcOXMsLw7bvn27vv322zT1tDpERvKehfLO5Lhx44ZT5+b5SF5gYKAWLFigevXqpfocKYmJidH69es1duxYPfroowoLC1Pjxo01c+ZMXb582ZaeSB/q1KmjRo0aWao9duyYZsyYYXOi1LH6+uMtrz2S9Sxpee0BgDvJli2bVwxUcOY6ha//nI7U4Xpk6uu94Tqgn5+fsmbN6ukYlll9fq1eXwQAAAAAAAAAID1gcAAAAAAASwoXLpzqBVNxcXG6du2aLl68qMOHD2vdunWaN2+e3n77bXXs2FHVq1f3yMJ8Z6RlR9PUSu83VsbHxztVHxMTY6nOWz6XvCWH3bgxz7vxOvJPVl9HJO/5GvaWHJ6UUQYHvPrqq5Z35QsODtasWbPk7+8v6a9hAAUKFLB0bGJiojp16qTY2NhUZ02Le+65x6n648eP2xMEXqVmzZp69tlnLdePGzcuTf2c+X6QOXPmNPVyFWdyOPt6yPORsixZsujnn3/Wyy+/nKbzWBETE6PFixerc+fOyp8/v9q0aaMVK1bY3he+acyYMZYXkI4ePVpRUVE2J3Ke1dcfb3ntkaxn8fX3pgC8j7dcH3AmhzPvM5F+pPfvgVyP9C5WP9+86f0kAAAAAAAAAAB2Y3AAAAAAAHip9H6DnWmaTtXHxcVZqsuUKVNq4ricL91clxZWP0+Dg4NtToI74XXkn6y+jki8lniTjLA4a8mSJZo1a5bl+pEjR+r+++//+/+zZ8+u6dOnWz5+3759GjFihFMZXSV37txO3ay9b98+G9PAm/Tt29dy7fbt27Vr165U90rvCzecXaDF8+FYpkyZ9P7772vFihUqVapUms9nRVxcnObNm6eGDRuqcuXKmj9/vlv6wndUqFBBTz/9tKXa8+fPa9KkSfYGSgVfGxAoWc/CYlkAruaL1yk8NbAOnuXL12es4Hqkd2GwMQAAAAAAAAAA/8XgAAAAAADwUun9Bjtn3dpV2ZHExESbk1iTkJDg6QhuYfXvafXfD67F68g/OfN5yGuJ97B6Y6+vfr5fvXpVXbt2tVxfs2ZN9enT5z8fb9y4sdq1a2f5POPHj9e2bdss17tSuXLlLNdGRETYmATepGLFik4tyJ43b16qeznzGu8t72ECAgIs1zr7vYPnw7oGDRpo9+7dmjVrltsGCEjSjh079OSTT6pu3bo6cOCA2/rC+40aNUqBgYGWasePH6/Lly/bnMg5Vl9/vOW1R7L++sP7eACu5ovXKZx5z4b0w1evz9iF65H2unnzpqU6BgcAAAAAAAAAADISBgcAAAAAgJfyphvjvYHVXW68ZScrb8lht+DgYEt1GeX58Da8jvyTL+6K5y05PCksLMxSXUxMjE/d2HxL7969dfr0aUu1wcHBmjVrVrJf2++9957y5ctn6VwJCQnq+H/s3Wd4VOXWxvE7vZCE0ItA6L1IbwLSOzZAQBQiCGJDQRRQlKZwjnoOdhGFBBABRUB6771JC733XhISQkLyfvDSVz2QPDOZPYX8f9eVL3LvZ61MJjsz23nWjoxUUlKSca+OUqVKFePsnj17LOwE7qZly5bG2UWLFtldx5a7OLrLediWPkxfn/2Bx8M2vr6+6t69u2JiYrRs2TJ17dpVYWFhDq1xP2vWrFHlypX17bffOqUe3F+xYsXUo0cPo+yNGzc0evRoizuyjen5x13OPZJ5L44+9wCAu5wLXfk6DJ6B65F/x/VIa926dcsoFx4ebm0jAAAAAAAAAAC4EQYHAAAAAICbCg4OdnULbsX0g6amd5ixmrv0YbWgoCCj3O3bty3uBPfCeeTvbPnAurv8DrtLH65UqFAh4+y5c+cs7MTx5s2bp6ioKOP88OHDVbp06fv+e7Zs2fTNN98Yr7d7926NHDnSOO8oVatWNc5eunSJu2tnItWrVzfO7ty50+7NDLb8Pbhz545dNRzNyg1aPB72a9SokSZNmqSLFy9q/vz5evXVV1WuXDl5eXlZVvP27dvq3bu33nrrLctqwLO89957xu/LvvjiC+OBRc5g+vvpLuceicEBAFzHXa4P2NIH58LMieuRf+eJ1yMTEhJc3YIx09e2ERERFncCAAAAAAAAAID7YHAAAAAAALgp0w/+S1JSUpJSU1M96mvo0KE2PR6md/G8dOmSTetaxV36sJrpB0GvXbtmcSe4F1vOI+PGjXP5ecHWr+PHj9v0eAQHB8vX19co6y6/w+7ShysVLlzYOHv69GnrGnGw69evq1evXsb5mjVrql+/funmHnvsMXXu3Nl43VGjRmnnzp3GeUewZXCAJK1YscKiTuBuSpYsaZxNSkpSTEyMXXVs+fvoLq9hbOnDlu/P1nxmeDzsERAQoJYtW+qzzz7Tnj17dOXKFc2bN08DBw5UvXr1LNk099FHH2nEiBEOXxeeJ1++fHrttdeMsgkJCRo+fLjFHZkz/f10l3OPZN6LM849ADKX+Ph4t9hUbMt1CtPruXiw2PI3cMmSJS6/vmjr18qVK216PGz5PXCH64BxcXEP5OAAW64vAgAAAAAAAADg6RgcAAAAAABuKmvWrMZZT/ogl73y5ctnlLty5YpSUlIs7iZ9Fy9edHULTpErVy6jnKfdBfxBwXnk77y8vJQnTx6jrDt8UPfu3bu6evWqq9twOVs+2OtOd9BNT9++fXX27FmjbGBgoKKiouTj42OU//zzz5U7d26jbFJSkiIjI5WcnGyUd4SKFSsqZ86cxvnly5db2A3cScGCBW3K2zpA5g/Zs2c3zrrLa7oLFy4YZ235/mzNZ4bHwxGyZcumVq1aadSoUVq9erVu3Lih9evX6+OPP9YTTzzhsJ7ef/99LV682CFrwbO9/fbbCg8PN8qOHz9ehw4dsrYhQ6a/C5cvX1ZqaqrF3ZgxPf+44tzzoHLFptBHH33U1d82cE/ucK3CtAdbrsF4Knf52+RuuB75d3nz5pWXl5dR1h1+x93lPZ+JmzdvKjY21igbERFhcTcAAAAAAAAAALgPBgcAAAAAgJuyZeNUXFychZ24B9PBASkpKTp16pTF3aTv2LFjrm7BKUyfp550F/AHCeeR/2V6LrF3M6ojHT9+nA+h6/cPWJveqdlTzjVz587VxIkTjfPDhg1T6dKljfM5cuTQV199ZZzfsWOHRo8ebZzPKG9vb7Vs2dI4v3DhwkyxmQBSSEiITXnT4Rv/lD9/fuOsuww/Mu0jMDDQ5s2qPB7W8/f3V+3atdW/f3/98ssvunz5srZt26aRI0eqRo0axhuJ/ik1NVUvvfSSEhMTHdwxPE22bNn01ltvGWWTk5M1ZMgQizsyY3r+SU5OdouNdJL5+ceWcysAmHKHaxWm1zxz5colX19fi7txLd6n3hvXI//Oz89POXLkMMp60u+4O7DlOqAtg0kBAAAAAAAeBF5eXnxZ/AUA7ozBAQAAAADgpmy5A4on3WHZXgUKFDDOHjhwwMJOPKcHZzD9IOiJEycyxQdB3U2+fPnk5+dnlM0M5xHJ/FziDr/D7tCDO/Dy8lKhQoWMsp4wOODatWvq1auXcb5mzZrq37+/zXWeeuopdejQwTg/YsQI7d271+Y69mrdurVxNi4uTnPmzLGwG7iLgIAAm/K3bt2yq85DDz1knD148KBdNRxt//79Rjl7NqryeDifl5eXqlSponfeeUebNm3SiRMn9MEHH9h1F8wjR45owoQJFnQJT9O3b1/lzZvXKDt9+nTt2LHD4o7S52nnn6SkJB09etQoa8v3BgCm3OE6gWkPGT0Pmn7o0pUDF+Pj411W253x/zX+F9cjrcHgAAAAAAAAAAAA7o3BAQAAAADgpooUKWKcPXHihIWduIesWbMa3yl8z549FnfjGT04Q4kSJYxyqampTt2Qit95e3sbf1g3M5xHJKlMmTJGOXf4HXaHHtyF6bnm1KlTFneSca+99prxnWoDAgI0YcIE+fj42FXriy++UM6cOY2yd+7cUWRkpO7evWtXLVu1aNHCeLCJJP3www8WdgN3cfv2bZvy9t5lPX/+/MbPP9MN6lYz7cOejec8Hq5XsGBBDR48WEeOHFF0dLTNAw+++OILizqDJwkODtaQIUOMsqmpqRo0aJDFHaXPlt9Rdzj/HD58WMnJyUZZTzn/APAs7nBtzfRaRdmyZTNUx/T16Z07dzJUJyNM39tnNvnz55e/v79RluuRf+cO1wLdoQdTpoMDAgICbBpMDQAAAAAAAACAp2NwAAAAAAC4qYoVK8rb2+xt265duyzuxj2UL1/eKLd+/XqLO0nb9evX3WJTgzNUrlzZOLt27VoLO8H9mP6MOI/83d69e3Xz5k2Lu0nbhg0bXFrfnVStWtUoFxMTY3EnGfPrr79q8uTJxvnhw4cbf7j8XnLnzq3PP//cOL9lyxZ98skndtezRdasWdWuXTvj/Lx583TkyBELO4I7iI2NtSkfFBRkVx0/Pz+VKlXKKLt582a7ajjSiRMndPHiRaNshQoVbF6fx8N9+Pj46LnnntPu3btVs2ZN4+P27t2bad5/IG0vvPCCihYtapRdtGiRVq1aZXFHabPld9Qdzj+29OBp5x8AnsHV1zxv3Lihffv2GWVNr7/cT0BAgFHO1uFjjuQJwwtdwdvbW5UqVTLKcj3y79zhWqA79GDKdJjKww8/LF9fX4u7AQAAAAAAAADAfTA4AAAAAADcVGhoqPFmwS1btljcjXuoWLGiUW7t2rVKTU21uBv3re9MlStXNh5wsXTpUou7wb3UqFHDKHfy5EnjTXiezPQ8kpKSonXr1lncjfvWdzfVq1c3yh04cMCldxtMy9WrV9W7d2/jfM2aNdW/f/8M1+3UqZOeeOIJ4/z777+vAwcOZLiuiRdffNE4e/fuXf373/+2sBu4A1s33oSEhNhdy/TvwaFDh1z+99GWvwemG3T+icfDvWTPnl2LFi1SyZIljY9ZuXKldQ3BY/j5+Wn48OHG+UGDBlnYTfpy5Mih/PnzG2Xd4bVxZjj/AHBvv/32m83Dthxp3bp1xtc8TV9f3o/pkLAbN24oOTk5Q7XstXv3bpfU9QSm1yO3b9+ulJQUi7txPdPfh8uXLxsP57DCjRs3POp5vXPnTqOc6XVFAAAAAAAAAAAeFAwOAAAAAAA3VqtWLaPcmjVrlJiYaHE3rlevXj2j3IULF1w6TGH27Nkuq+1sISEhKleunFF25cqVLr+DuxV8fHyMcq76EKzpeUSSlixZYmEn7qFcuXLKnj27UXbOnDkWd3N/GzZs0KVLl1xW392YfsA3KSnJpR+wTsurr76q8+fPG2UDAgI0YcIE4/NLer766ivj5/3t27f1/PPPO+Wc1bhxY5UoUcI4Hx0dzR0dH3C23jE9Z86cdteqXLmycXbx4sV213GEBQsWGGdt+b7sPS4zPB7uIGvWrPr888+N89u2bctQPXd/TQtzXbp0Md6ctmHDBv36668Wd5Q209/TmJgYnT592uJu0rZw4UKjXNasWVWkSBGLuwGQGSUnJxufi6xg+jfDx8dHderUyVCt4OBgo+EBqampLhtstX37dpfUldz/tZvp9ci4uDiPusO9verWrWs8fNeV1yPnzp2ru3fvuqy+rUyHHDA4AAAAAAAAAACQ2TA4AAAAAADcWMuWLY1ycXFxmeJu7g0aNDD+UOQvv/xicTf3lpyc7PKNF87WqlUro9zt27c1Y8YMi7txPn9/f6NcUlKSxZ3cW61atZQtWzaj7KxZs6xtxg14eXnp0UcfNcrOnj3bZR+WfRB/VzIiT548KlCggFF2165dFndju1mzZmnKlCnG+eHDh6tMmTIOq583b159+umnxvn169fblLeXl5eXXn75ZeN8YmKi+vbta2FHcLXNmzfblC9evLjdtRo1amScdeXfx6SkJM2dO9comz17drvvcM3j4Z6aNWumokWLGmWPHj2aoVru/poW5ry8vPThhx8a59955x2XDoTwlPPP1q1bjQcYNWzYUF5eXhZ3BCCzmjlzpkvq3r171/iaZ+XKlRUeHp7hmrlz5zbKHTlyJMO1bPXbb7+5bGCB5P6v3Zo1a2a8UT4zXI/Mli2bHn74YaOsq/6/huRZ1yPPnz9v/DvI4AAAAAAAAAAAQGbD4AAAAAAAcGMtWrRQYGCgUXb8+PEWd+N64eHhqlq1qlE2OjraJR+MnDVrlks/NOoKbdq0Mc5+8803FnbiGgEBAUa5uLg4izu5N19fX+Of0Zw5czLFXe6bNGlilDt79qzmz59vcTf/KzExURMnTnR6XXdn+iFfdxsccOXKFb344ovG+Zo1a6p///4O76Nr165q27atcf6dd97R4cOHHd7HP/Xu3VsFCxY0zs+cOdMlv5dwDlt+tt7e3hkaHFC5cmXlzJnTKDtv3jxdvXrV7loZMXv2bF2/ft0o27hxY+PNOf/E4+G+TIfJZfQ1nLu/poVtWrdurbp16xpl9+zZox9++MHiju6vadOmxtlJkyZZ2EnaoqKijLO2fE8AYKuZM2fqypUrTq87d+5cnTt3zijbuHFjh9TMnz+/UW7Pnj0OqWcLV94VXnL/1265c+c2fi0yefLkTDGcyvR65KZNm7R7926Lu/lf586dc/nz2ham1/9CQ0NVqlQpi7sBAAAAAAAAAMC9eP4npgAAAADgAZYlSxa1aNHCKDt79mwdP37c2obcQIcOHYxy58+f1/Tp0y3u5n99/vnnTq/parVr11a+fPmMsps3b9bSpUst7si5smXLZpRz1QY7SXrqqaeMcomJiRo7dqzF3bjek08+KR8fH6PsZ599ZnE3/+uHH35wySYAd1e7dm2jnLsNDnj11Vd14cIFo2xAQIAmTJhg/Py01TfffGN818eEhAT16NFDqamplvTyh8DAQA0bNsymY3r27Knz589b1BFcZePGjTbdKbRixYoKCQmxu56Xl5eaN29ulL19+7bLhnR99dVXxlnT9w33wuPhviIiIoxy8fHxGarjCa9pYZvRo0cbZ99//33duXPHwm7ur0KFCnrooYeMsps3b9bWrVst7uh/xcXF2TS0wPR8CgD2uH37tr799lun17Xlmqfp9dv0mG723bhxo0PqmUpNTdWECROcWvOfPOG1m+n1yPPnz2vatGkWd+N6tvxeuOJ65Ndff63k5GSn17XXzp07jXI1atR4IAbKAQAAAAAAAABgC66MAwAAAICb6927t1Hu7t27Gjx4sMXduN7TTz8tLy8vo+zw4cN19+5dizv6f4sXL9bq1audVs9d+Pj46PnnnzfODxw4UCkpKRZ25Fy5cuUyyp0+fdriTu6vdevWKlCggFH2448/zvAda91dnjx51LBhQ6Ps0qVLtWbNGos7+n937tzRiBEjnFbPk5huwNq4caNTz/1p+eWXX/Tjjz8a54cNG6YyZcpY1k/+/Pn13//+1zi/evVqffnll5b184fnnntO5cqVM86fO3dOHTp0yBR3JMxMPvroI5vyjz76aIZrdunSxTj73//+VwkJCRmuaYt169ZpxYoVRtnAwEDjjTn3w+PhnsLCwoxy/v7+GarjCa9pYZtHHnlErVq1MsoeO3bMJZtQ/2DL+eeDDz6wsJN7+/TTT3Xz5k2jbO3atVWsWDGLOwKQ2X388cfG5yVHWLVqlZYtW2aULVWqlKpWreqQuqbvj5cuXWr50Lu/mjVrlo4dO+a0evfiCa/dnn32WQUHBxtl33vvPSUmJlrckWtVq1ZNxYsXN8pGR0fr6NGjFnf0/65cuaIxY8Y4rZ4jrFu3zij3oAyUAwAAAAAAAADAFgwOAAAAAAA317x5c+O7K/3444/Gm2k8VcGCBY03/B48eNApGx4lKSkpSQMGDHBKLXf0wgsvGN+5Z9u2bU77uThD/vz5jXL79u2zuJP78/X1VZ8+fYyyN27cyBTP5eeee844279/f6dtRB8zZoyOHz/ulFqepmLFikZ3o71586a2b9/uhI7SdvnyZePfO+n3O6C9+eabFnb0u+7du6tly5bG+YEDB1q+IcLHx0djx4616Q5wa9euVY8ePR6oQTSZ2fLly/XLL7/YdIwjNoU3b95cefPmNcqePXtWn376aYZrmkpNTdXbb79tnH/88ceVNWvWDNXk8XBP586dM8qFhoZmqI7pa9pTp07p1q1bGaoF5/nwww+NB++NHDnSZT/bbt26GWdnzZqlDRs2WNjN312+fNmm4Ta2fC8AYK+rV69q+PDhTql19+5d9e/f3zhvy/WW9FSpUsUod/bsWW3atMlhddNy9+5dvf/++06plRZPuB6ZPXt2PfPMM0bZY8eOadSoURZ35Hqmvx9JSUlOuUb0hyFDhig2NtZp9TIqJSXFeICzLdfAAAAAAAAAAAB4UDA4AAAAAADcnJeXl/r162ec79q16wN/t3BbPqw6ePBgp9yd54MPPtCuXbssr+OuIiIi1L59e+P822+/rd9++826hpyoRIkSRrldu3bp9u3bFndzf7179zbeUBYdHa0pU6ZY3JFrderUyWgTuiRt2bJFH3/8scUdSfv373eLD5+7M9MP+7rDEJ1XXnlFFy9eNMoGBAQoKipKPj4+Fnf1u2+//db4Dta3bt1Sz549Lb97Y926dW3+UPykSZPUrVs3pw32gDUuXrxo8+ai4sWL65FHHslwbR8fH0VGRhrnR4wYoUOHDmW4rolvvvnG+A6KktSrV68M1+TxcE8HDhwwykVERGSoTnh4uHLmzJluLjU1VVu2bMlQLThPpUqV1KlTJ6PshQsX9Pnnn1vc0b2VK1dOtWvXNs736tVLd+7csbCj//fyyy/rxo0bRtmwsDDjxxsAMmrMmDFO2Sz/0Ucfadu2bUbZ4OBgvfjiiw6rXbt2bfn6+hplx44d67C6afnkk0+0e/dup9RKi+n1yM2bN1vcSdreeOMN42sdI0eONN4M7qn69OmjoKAgo+zMmTM1bdo0izv6/RraN998Y3kdR/rtt9907dq1dHMREREqV66cEzoCAAAAAAAAAMC9MDgAAAAAADxAjx49jD/gdPbsWbVp08aj7hBjq5YtWxo/Hrdu3dKTTz5p6Z0TFy5cqJEjR1q2vqcYMWKE8Yd5ExIS9OSTTxrfQdWdFS9e3Oj7TkxM1JIlS5zQ0b3lyJFDgwcPNs737NlTq1atsrAj1/Lz81Pfvn2N8++++65WrlxpWT83b97Uk08+6dLhEp6gVatWRjlXDw6YMWOGTR/uHjZsmMqUKWNhR39XoEABffLJJ8b55cuX69tvv7Wwo9+NGDFCFStWtOmYyZMn64knntD169etaQqWunTpkpo0aaIzZ87YdJwt5+/0vPHGGwoODjbKxsfH69lnn1ViYqLD6t9LTEyM3nrrLeN8nTp11LBhQ4fU5vGQkpOT7T7W0W7cuKFff/3VKOuIDTGmf4vmzJmT4VpwnhEjRsjPz88oazqowgrvvPOOcXbPnj16++23LezmdxMnTtT06dON86+88oqyZs1qYUcA8P/u3r2rjh07WjpAdsWKFRoyZIhxPjIyUtmzZ3dY/SxZsqh69epG2R9++MHy4bGbN2/We++9Z2kNU6av206cOOHSQQdlypRRz549jbJ3797VU089pZiYGIu7cp2cOXPaNKytV69e2rdvn2X9nDp1Sp07d7Z8WKSjmV73Mx1ACgAAAAAAAADAg4bBAQAAAADgAXx8fGza4Ld582a1bNlSV65csbAr2xw+fFg9e/Z0yEYELy8vjRgxwji/c+dOPf3005Zsatq8ebM6derE3Y4llSxZ0viDoJJ07NgxNWrUSBcuXLCwK+sFBASocuXKRtn//Oc/FneTtjfeeEOFCxc2yiYkJKht27ZaunSptU3ZICEhQZ999pnGjBnjkPVeeukl5c+f3yibnJys9u3ba+fOnQ6p/Vfx8fF68sknLf0g8IOiSZMm8vf3Tze3du1al238vHz5sl566SXjfI0aNfTmm29a2NG99ezZU02bNjXODxgwQKdOnbKwI8nf31/Tp09XtmzZbDpuzpw5qlq1qvFdMOEe1q1bp6pVq9q8iSUiIsKhd5PPlSuXevfubZzftGmTpXezv3Tpktq2bau4uDjjY2zZzJUeHo/fNy+/8MILOnLkSIbWcYT//Oc/io+PN8o2aNAgw/Vq1apllJswYYLRHT7hHooVK6YePXq4uo10tW7dWlWqVDHOjxkzRuPHj7esn/Xr19t0fsuSJYveeOMNy/oBgHs5efKk2rZtqxs3bjh87Z07d6pDhw7G762zZMli08BKU08++aRRLikpSa+99prD6//h6NGjevzxxy0fmmWqaNGiyp07t1HW1dcjhw8frrCwMKPs5cuX1aRJE+3YscPirsxdv35dw4cP15QpUxyy3qBBg4yHtd28eVNt2rTRyZMnHVL7ry5fvqw2bdp45LX55cuXG+UYHAAAAAAAAAAAyKwYHAAAAAAAHqJ58+Z67rnnjPPr1q1TrVq19Ntvv1nXlIG1a9eqU6dOKl26tL7//nslJSU5ZN0nnnjCpjuJzps3T23btnXoHYmXLl2qpk2bWvLhXE81atQoPfTQQ8b5/fv3q0aNGk7/MOiSJUtUq1Ythz0f6tevb5RbuXKlhg0b5pCa9ggICNB3330nLy8vo3xsbKxatmypTz/91KV3njp37pyGDx+uwoULq2/fvjp9+rRD1s2SJYtGjRplnL9y5YoaNWqktWvXOqS+9PuHdFu0aKFly5Y5bM0HWWhoqNHvW1xcnLZs2eKEjv7XSy+9pIsXLxplAwICNGHCBPn4+Fjc1b2NGzdOoaGhRtnY2Fi98MILFncklSpVSrNmzTIaEPFXR48eVa1atfTaa6859G99RixdulQHDx50dRtuZ//+/erWrZvq1atn1zCKMWPG2Pz8SM8777yjnDlzGucnTpyoXr16KSUlxaF9nD9/Xg0bNrTpTqktWrRQixYtHNpHZn88EhMT9d1336lUqVLq1KmTQ//u22LZsmUaOXKkUTY8PFx169bNcE3T17TXrl3TM888o4SEhAzXhHO89957CgoKcnUb6bJ1Y2OvXr0UHR3t8D7WrVunli1b2rQ5dMiQITadOwHAUTZt2qTGjRvr7NmzDltz7dq1atSokU1DaQcOHGg8nNEW7du3N76ONW/ePEs2ye/bt08NGjTQuXPnHL52RtSrV88oFx0draioKGubSUPu3LltGgJ67tw51atXT1OnTrWuKQNHjhzRm2++qUKFCun999/X1atXHbJugQIF9Pbbbxvnjx49qvr16ysmJsYh9aXfB/o2aNBAu3btctiaznL37l2tWbMm3VxgYKAaN27shI4AAAAAAAAAAHA/DA4AAAAAAA/y5Zdfqnjx4sb5w4cPq0aNGhoyZIhNd+nMqIsXL+qLL75QpUqVVK9ePU2bNk137951eJ3PPvtMAQEBxvklS5aoSpUqGd78k5iYqPfee0/NmzfXzZs375kJDAzMUA1PFR4ernHjxtl0zMmTJ1WnTh2NHj3aYYMl7iU5OVlTp05VzZo11axZM23atMlhaz/22GPG2aFDh6px48ZatGiRpd/v/TRu3FhvvfWWcT45OVmvv/66GjVq5NAPqKYnKSlJ8+fPV8eOHRUREaH333/feDO2LZ599lk98sgjxvmrV6+qYcOGGjVqVIZ/fsuWLVPlypXT/LBrZj2XpOXpp582ys2dO9fiTv7XTz/9pJ9++sk4P2zYMJUtW9bCjtIWERGhf//738b5RYsWWXpn3z/Ur19fUVFRxptD/pCcnKzPP/9cJUqU0KhRoxz2oX5bLV68WE2bNlXTpk3dbmOJq+zbt09ffvmlGjZsqLJly2rixIl2DaTp1q2bHn/8cYf3lyNHDn3yySc2HTNu3Di1bdvWps1Uadm0aZNq1aqlvXv3Gh8THBysr776yiH1/4rH43d3797VtGnTVK9ePVWqVEmff/65Ll265LD10zJp0iS1bdvWeBhDZGSk/Pz8Mly3cePGCgkJMcouWLBAlSpVUlRU1H3fE8F95MuXz9K7MDtKgwYNFBkZaZy/e/euIiMjNXjwYIddc5gwYYKaNm1q0/O6QoUK6t+/v0PqA8D9+Pv73/c90rZt21S5cuUMvw9OSkrS6NGj1bBhQ5veT5UoUUJvvvlmhmrfT+HChdW8eXPj/IABA2y+NpmWadOmqWbNmg4bYulIptcjU1NTFRkZqQ4dOmjdunUOH/hlIjIy0vh6jiTdunVLnTt3Vvv27XXy5EkLO/u7hIQETZ8+XS1btlSJEiX0ySefKDY21uF1BgwYYNP/5zlx4oRq1Kih77//PsPDXadNm6YqVarc9zqvl5eXw4f1OdKqVauMfiZt2rRRlixZnNARAAAAAAAAAADux9fVDQAAAAAAzIWEhGjatGmqX7++bt26ZXRMUlKSRo4cqW+//Vb9+/dXZGSkcuXK5fDejh8/rgULFmjWrFlatmyZJYMC/ql8+fIaNWqU+vXrZ3zMsWPHVK9ePXXs2FEDBgxQtWrVjI9NSEjQjz/+qJEjR+rYsWNpZocNG2bTnYMeJC1btlT//v1t2nB2+/ZtDRo0SNHR0Ro0aJC6dOkiX1/HXLbYuXOnJk+erEmTJunChQsOWfOf6tatq0KFChl/kHX58uVavny5QkJCVLVqVZUoUUJ58uRRWFiY8Qczw8LC9Pzzz9vV74gRI7RhwwatXr3a+JiVK1eqQoUK6tKli1577TVVr17drtppiYuL0/LlyzVv3jzNmDHDYZsP0+Ll5aVJkyapUqVKxpuDkpOTNXjwYEVFRWnIkCHq2LGjTR+o3bBhg/71r39p9uzZaeZatmyp+Ph4rVq1ynjtzOCpp57Syy+/rDt37qSZmzFjhj744AMndSVdunRJL7/8snG+Ro0alm2ssEXv3r01ffp0rVixwijfr18/NW/eXA899JClfXXu3FmJiYnq2bOnza8pLl++rMGDB2vEiBHq2rWrOnXqpPr16zvs78q9HDlyRNOmTdOkSZO0f/9+y+pYZfz48cqePXuG10lKStKdO3d09epVXbhwQUeOHNH+/ft1/fr1DK9do0YNSzbJ/+G5557TtGnTNH/+fONj5s+frwoVKmjUqFF67rnnbB52IUk3b97UyJEjNWbMGJsH0owePVpFihSxuaYJHo+/27Vrl1577TX169dPTZs21WOPPabWrVurQIECDq2zZ88eDRs2TD///LPxMQEBAQ7bEB4UFKTHH39ckydPNsofOnRIkZGReuGFF1SxYkWVKVNGBQoUUHh4uAICAoyfA88//7zCwsIy0joMvP322xo7dqxDzslW+vjjj7V06VKdOnXKKJ+amqpRo0Zp8eLFGjNmjE1Dwf7qyJEj6t+/f7qv0f/J399f48ePt/R1BgBIvw+BadGihcaOHXvPf7948aLatm2r5s2ba9CgQWrQoIHx2nfu3NFPP/2kESNG6MCBAzb15efnpylTplg6+LB///5auHChUTYlJUW9evXS1q1b9fHHHys0NNSumrt379bAgQPTfD1cpkwZ7du3z671HeGxxx5TlixZjP8/wc8//6yff/5Z2bJlU9WqVVW8eHHlzp1bISEhxkOoChQooPbt29vV79ixY7Vz506b3jPPmDFDc+fO1QsvvKCXXnpJZcqUsat2Wq5du6bFixdrzpw5mj17tlMGMAcFBemHH35Q3bp1lZycbHTMrVu31LNnT33zzTd699131bZtW3l7m90vKDU1VYsXL9aHH36Y7vXgF198UfPnz9eJEyeM1nY20/dKnTt3trgTAAAAAAAAAADcF59gAAAAAAAPU6VKFf38889q166dTZtpLl68qLfffltDhgxR8+bN1bp1azVp0kRFixa1eVNPQkKCDhw4oC1btmjjxo1au3atDh48aOu34hCvv/66lixZogULFth03PTp0zV9+nRVrFhRLVu2VJ06dVS6dGnlyZNHISEhSkpK0s2bN3Xs2DHt3r1by5Yt08KFC402WTzxxBPq2LFjph0cIEn//ve/dfDgQc2ZM8em4/bv369u3brp7bffVocOHfTEE0+oZs2aCg4ONl7jzJkzWrdunVatWqV58+Y55UOO3t7eeuONN/TGG2/YdFxcXJxWrVpl18bwiIgIuwcH+Pn5afbs2apfv752795tfFxKSoomT56syZMnq0KFCnr88cfVokULValSxeYPiKekpOjkyZP67bfftHHjRm3YsEEbN25MdzO4FQoXLqyxY8fa/IHSgwcP6tlnn9Ubb7yhli1bqmHDhipfvrwKFy6ssLAw+fj4KC4uTufPn9e+ffu0bt06zZ8/3+hD5WFhYfr222/VtWtXe7+tB1a2bNnUokUL/frrr2nmDhw4oN27d6tChQpO6eull14yvhN1QECAJkyYIB8fH4u7Sp+Xl5e+//57VahQwWizwY0bN9S7d+8M38nSRPfu3ZUtWzZ16tRJt2/ftvn4hIQEjRs3TuPGjVP27Nn//Htfo0YNVaxY0e476N29e1f79+/Xjh07tH79ei1dulSHDh2yay13MWLECFe3kKYyZcpo7ty5Nr0esMfkyZNVrVo1HT161PiYc+fOqXv37vrggw/Up08fPfXUUypUqFCax6SmpmrHjh2aPHmyJkyYYNcm3i5duujVV1+1+Thb8Hj8r+TkZC1YsODP9x7ly5dXvXr1VLduXVWrVk3Fixe3+dx+4sQJzZs3T7/++qsWL15s8x1E33zzTRUuXNimY9LSr18/48EBf0hOTtb27du1fft2u2o+/vjjDA5wgmzZsumtt97S4MGDXd1KmrJnz66ff/5Z9evXV2JiovFx27ZtU7169dSgQQP17t1bLVu2VHh4eJrHJCYmatWqVfr+++81c+ZMmweWSNLnn39u00BCAMiIjz76SPPnz09zuMqiRYu0aNEilSxZUq1atdIjjzyismXLKl++fAoJCdHdu3cVGxur48ePa8+ePVqxYoXmz5+vy5cv29XTiBEjLD8PNmnSRI0aNdLy5cuNj/n22281Y8YMvfrqq3ruueeMBkxduXJF8+bN0w8//KDFixenmS1durQ++ugjtWnTxrgnRwsLC1PPnj316aef2nTctWvXtHTpUi1dutTmmg0aNLB7cEDWrFm1aNEi1alTR2fOnDE+LjExUV988YW++OIL1apVS+3atVPz5s1VoUIF44EHf0hOTtaxY8e0ffv2P69Hbt261SlDkP+pRo0aGjlypAYOHGjTcVu3btXjjz+uAgUKqFWrVmrQoIHKli2rQoUKKSQkRF5eXoqNjdWZM2cUExOj1atXa/78+Tp+/Hi6axcqVEj/+te/bBog50wpKSmaOXNmurmsWbOqdevWTugI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rlmzZmn58uWqUaOGU2vbK3v27OrXr58OHDigiRMnqnjx4q5uya3UqFFD48eP16lTpzRgwAAFBAS4uiVJvz/XNm3apF69esnLy8slPYSFhenrr7/WDz/8oKCgIJf08AceD9fy8fFR//79tXbtWhUsWNApNcuWLaudO3fqgw8+UI4cOZxSE87RpUsXVaxY0dVtGGvZsqW2bdumBg0auKyHEiVKaPny5erXr5/LegCAf+rRo4cWLlzolOvBWbNm1bRp0/TVV1/Jx8fH8nr3ExQUpAULFuiJJ55wWs18+fJp1apV6tixo9Nq2uPll1/Wnj179NRTT3nMgBsfHx+999572rBhg9OHAZvy9vZWq1atVL9+fUvr+Pj46Ouvv9a0adOcMjApIiJCixcv1vPPP295LUcYO3ZsupkcOXLomWeecUI3AAAAAAAAAAC4N8/4P0UAAAAAACOdO3fWgQMHNGrUKLfY2OHt7a2GDRtq3LhxOnv2rL777juFh4dbXtfX11cffvihNm7cqEceecSSGtmyZdNXX32llStXqnDhwpbUeBBVqVJFGzZs0Lhx4ywfInE/Xl5eatSokeUfwsyTJ4++++47HT9+XP/6179Uo0YNl22ys0XJkiU1b948LV261G025BYpUkQDBw7U/v37tXr1aqdtGGrYsKH27t2rN954w5IBEF5eXurSpYtiYmLc/sPn7uq1115LN3P+/HnNnj3b4bVffPFFXblyxSgbEBCgCRMmuHRzhSlvb2+NHz/e+C6Fly9fdtnd3Bo2bKhNmzZp3bp1evrpp93uDoXe3t5q0KCBJkyYoNOnT+uTTz5RsWLFXN2WWwgPD1fr1q313//+VydOnNCmTZsUGRnpNgMD/iokJERjx47V6tWrValSJafV9fLyUseOHbVv3z6n33UyLZnh8XjllVc0YsQI1apVy202XDVu3FgbN27Uxx9/7PSBCQEBARo8eLBOnTql8ePHq1WrVh51J1vcm5eXlz744ANXt2GTYsWKacWKFRo3bpzy5MnjtLpBQUF65513tGvXLss3DAKAPRo3bqw9e/bopZdesuQ9kbe3t7p37+5W1y6yZMmiGTNmaPTo0Za/LomMjNSePXtUvXp1S+s4SrFixfTzzz/r4MGDeu+991S+fHlXt2SkWrVqWrdunaZPn67SpUu7uh1JUrly5TRixAgdP35c8+bN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gSTL5OzrjBw5cpXuf+9739uruVmzZuWzn/3sKu1gcJkyZUpe+9rX9mr2f5cELFq0KN/5znd69WxvCwraZZ111skhhxzSq9kf/vCHufrqqzucqPve8pa39GrumWeeyWmnndbZMP/LJz/5yUH5+zIAAAAAAAAAAAAAMHAUBwAAwBC3zjrr5N/+7d/69Mzll1+ef/iHf+hQolXz8MMP56CDDsrixYt7/cw222yTE044oYOpeu+aa67JpZdeOiC7Hn744Xzxi1/s9fwRRxzRwTQD67HHHuvV3IQJE1bp/ne84x29LuL40pe+lN/97nertIfBZfr06b2au+qqq/7Hf4MzZszIrFmzWj5XSunKz8MPfvCDfZpdsGBBB9N039ve9rYMHz68V7P/9m//lkceeaTDiZ53/fXX56KLLhqQXQAAAAAAAAAAAADA4KU4AAAAyLvf/e7stddefXrm9NNP79ObzzvpmWeeyf77759HH320188MGzYsX/3qVzNq1KgOJuubo48+Os8++2zH9xx11FGZM2dOr2Z33HHH7LLLLh1ONDBqrbn77rt7NbvJJpus0o5x48bl6KOP7tXswoULc9hhh2XhwoWrtIvB45BDDsn48eNbzi1dujTf/OY3//y/zzvvvF7dP23atGy22WarGm+V7bLLLtl55517Nfu73/0uH/rQhzqcqLumTJmSgw8+uFezs2fPzlFHHdXhRM//OvKud70ry5Yt6/guAAAAAAAAAAAAAGBwUxwAAAAkSc4555xevfH1L330ox/Nqaee2qFEvfPoo49m9913zx133NGn54455pjsuuuuHUq1ah555JG87W1v6+gbQE899dRceeWVvZ4/7rjj+rVvyZIl/Xq+na655pr/8d3eV+YVr3jFKu/52Mc+lnXXXbdXs7fffnsOO+ywQfXjRN+NGzcuhx56aK9mzz///CTJY489lquuuqpXz7zzne9c5Wz99YUvfKHXs1/5ylfy+c9/voNpuu/444/v9ewVV1yRz3zmMx1Mkxx55JH53e9+19EdAAAAAAAAAAAAAEAzKA4AAACSJJtuumkuuOCClFL69NyJJ56Yo48+OosXL+5QshX77//+7+y66659Lg3Yeeed86//+q8dStU/l112WY455pjUWtt+9ze+8Y188pOf7PX89ttv3+vvrr0i++67b0499dQ8++yz/bqnv5YtW5bPfvazvZodM2ZMpk6dusq7Jk6cmFNOOaXX8z/4wQ9y6KGHZsGCBau8s91uvfXWvOlNb8q8efO6HaUxpk+f3qu53/zmN7n55pvzjW98I0uXLm05P27cuLzpTW/qZ7pVt/POO+fv//7vez3/T//0T/nc5z7XwUR9U2vNjBkzcvTRR7flvh122CEHHXRQr+dPPPHEfOMb32jL7v/t4x//eC688MKO3A0AAAAAAAAAAAAANI/iAAAA4M/e+MY39umN5X9y9tlnZ6eddhrQ73r85S9/OVOnTs3MmTP79NwGG2yQ73//+xk5cmRngrXBWWedlXe9611ZtGhR2+7893//90yfPr1PhQSnnXZahg3r3/9tfPLJJ3PiiSdmk002yUc/+tHcd999/bpvVX3qU5/Kj3/8417Nvu51r8uYMWP6te8973lPXvva1/Z6/pJLLskee+yRBx54oF97+6PWmiuuuCL77bdfXv3qV+d73/teRwosVlfTpk3LFlts0avZ8847L+eff36vZt/85jdn/Pjx/YnWb6eddlrWXXfdXs+fcMIJmT59eubOndvBVCs3f/78fPWrX80rX/nKvOENb8jNN9/ctru/8IUv9Pr3kFprpk+fni9/+ctt279kyZJ88IMf7HUZCgAAAAAAAAAAAAAwNCgOAAAA/oeTTjpplb679a9+9atsv/32+fjHP57Zs2d3INnzbrrppuyxxx459thjs3Dhwj49O3bs2Hz/+9/P5MmTO5Sub0aPHr3Cs/POOy+77bZbfvvb3/Zrx1NPPZW3ve1tOeaYY7Js2bJeP/f2t78906ZN69fuv/Tss8/mi1/8Yrbccsvst99++c///M8+//tbFUuWLMmHP/zhnHLKKb1+5qijjur33mHDhuWb3/xm1l577V4/c/PNN2fbbbfNaaedlsWLF/c7Q289+OCD+dznPpctttgi+++/f6688soB2726OeKII3o1d+655/b65/b06dP7kag91ltvvZx33nkppfT6mfPPPz/bbrttLr/88g4me7FbbrklH/7wh7PhhhvmPe95T+64446279hiiy1y3HHH9Xp+2bJlOfbYY/PWt741Tz75ZL9233vvvdlzzz1zxhlnrHBmZb+3AAAAAAAAAAAAAACrL8UBAADA/1BKyYUXXpiDDjqoz88uWLAgn/3sZ7P55pvnU5/6VB555JG2ZKq15oc//GEOPvjg7LjjjvnZz37W5zvGjh2bSy+9NDvuuGNbMrXDwQcfnG233XaF57fcckte9apX5f3vf3/uueeePt391FNP5XOf+1y23HLLfOtb3+rTs5tssklbvzv2X6q15sorr8xhhx2W9dZbL0cccUQuvvjijpRNXH755dlpp51y+umn9/qZl7/85TnwwAPbsn/DDTfMBRdckOHDh/f6mXnz5uUjH/lItt5665x99tkdK+G4884788UvfjG77bZbNt1005xwwgm5//77O7JrKDn88MMzbFjrP2pZtGhRr+7bbLPNsvvuu/c3Vlvst99++djHPtanZ2bOnJkDDjgg06ZNyw9+8IMsXbq07bmWLl2aX/ziF/nnf/7nbLXVVtlhhx1y+umnZ9asWW3f9ZdOPvnkvOY1r+nTM9/+9rez5ZZb5rOf/WyeeuqpPj37wAMP5CMf+Uhe8YpX5Nprr13h3AYbbJD3vve9fbobAAAAAAAAAAAAAFg99HQ7AAAAMPiMHDkyF198cd785jdnxowZfX7+ySefzMknn5xPf/rT2WeffbLffvtlr732yste9rJe37FgwYJce+21ueaaa/L9738/9957b59z/MmfSgP23HPPVb6jE0aMGJGvfe1r2WmnnVb4htolS5bkrLPOytlnn52dd945++67b3bYYYdsvfXWWWeddTJu3LgsXLgws2bNyr333pvbbrstV199da655posXLiwz5l6enpy4YUXZo011ujvp9fS7Nmzc8EFF+SCCy7IiBEjsuOOO2a33XbLrrvumu222y4bbbRRn+6rtea2227LpZdemu9973v59a9/3edMp59+eq/e+N1b+++/f/7jP/4jRx55ZJ+emzlzZo4++ugcd9xxOfDAA7P//vtnzz33zMYbb9znDHPmzMmdd96Zm266KTfccEN+/vOf56GHHurzPbT20pe+NK973etyzTXXtOW+I444IqWUttzVDp/5zGfy+9//PhdccEGfnrv22mtz7bXXZv31188b3/jG7L///tlll10yadKkPmf4wx/+kDvuuCM33HDDn/977nRJwPKMGDEi3/rWt/LqV786c+bM6fVzs2bNysc//vGccsopef3rX5+999472223XbbccsusscYaGT16dObPn5+nnnoq3cibAgABAABJREFUd911V375y1/myiuvzC9+8YssW7as5f1nnXVWbr311v58agAAAAAAAAAAAABAQykOAAAAlmvEiBH57ne/myOPPLLPbxL9k6VLl+aKK67IFVdckSRZc801s/XWW2frrbfOuuuum/Hjx2f8+PF57rnnMnfu3MyZMyczZ87MXXfdlfvuuy9Llizp9+exzjrr5Pvf/36mTZvW77s64TWveU1OPfXUnHDCCSudq7Xmuuuuy3XXXdfRPOecc0523XXXju5Ynueee+7Pby7+k4kTJ2brrbfOhhtumA022CBrr712Ro8endGjR2fx4sWZN29e5s6dm8cffzx33XVX7r777sybN2+VMxxzzDHZa6+92vHp/A/vfve78/TTT+cf//Ef+/zsvHnzctFFF+Wiiy5K8vx/z694xSuy8cYbZ4MNNsj48eMzZsyYlFKyaNGiLFy4MM8880yeeOKJPP7447nvvvvy6KOPtvtTYiWmT5/eluKAUkqOOOKINiRqn1JKzj333Dz77LOrVCrz2GOP5cwzz8yZZ56ZJJkyZUq23nrrbLTRRpk8eXLGjh2b0aNHZ+nSpVm0aFEWLFiQp556Ko8//ngee+yx3H333V0pCViRLbfcMhdffHEOOOCAPv9+tXDhwlx22WW57LLL2pbnfe97Xw466CDFAQAAAAAAAAAAAAAwRCkOAAAAVmjEiBE5//zzs/322+e4447r9xv5Z82alRtvvDE33nhjmxKu3Pbbb59LLrkkL33pSwdk36r62Mc+lrvuuivnnXdeV3OcfPLJeec739nVDH9p9uzZufnmm3PzzTd3fNcee+yRL3zhCx27//jjj8+kSZPyvve9L0uXLl3le5588sn89Kc/bWMy2u3ggw/OxIkTM3v27H7ds+eee2aTTTZpU6r26enpycUXX5z3ve99Offcc/t118yZMzNz5sz2BOuSffbZJ+ecc07e/e53p9ba1RxnnHFG1/YDAAAAAAAAAAAAAN03rNsBAACAwe9DH/pQrrnmmmy44YbdjtJr73znO3PttdcO+tKAPznnnHNy4IEHdm3/v/zLv+Skk07q2v5u2m233XLppZdm5MiRHd1z5JFHZsaMGVlzzTU7uofuGjNmTA477LB+3zN9+vT+h+mQnp6efPWrX80pp5ySYcP80dI73/nOnH/++enp6U4/59SpU/Pd7363a/sBAAAAAAAAAAAAgMHBV3cDAAC9sscee+TOO+/MMcccM6jfKLrZZpvlqquuyte+9rWMGTOm23F6bcSIEbnkkkty5JFHDujeUaNG5dxzz80JJ5wwoHsHi7e//e25+uqrM378+AHZd8ABB+T222/PHnvsMSD76I7+vul/woQJOeSQQ9oTpoNOPPHE/OQnP8kmm2zS7Shd9453vCMzZszIGmusMaB7//Zv/zY//vGPM3HixAHdCwAAAAAAAAAAAAAMPoP33T4AAMCgM2HChJxxxhm5/vrrs8suu3Q7zv8wfvz4fPzjH88dd9yRvffeu9txVklPT0++8pWv5LTTTsvYsWM7vm+bbbbJjTfemHe9610d3zXYrLnmmjn33HPzjW98I6NHjx7Q3RtvvHF+9KMf5Ywzzsjaa689oLt7a+21186HP/zhAf+xWV3ssssu2WqrrVb5+UMPPXRAfg1oh2nTpuXXv/51PvjBD2bEiBHdjrNcW265ZY466qiO79l///1z2223Zaeddur4rp6ennziE5/IJZdc0pj/VgAAAAAAAAAAAACAzlIcAAAA9NnUqVPzi1/8Ij/60Y/y+te/vqtZ1lxzzZx44omZOXNmPvOZz2TMmDFdzdMOH/rQh3L77bd3rABhwoQJOfXUU3PrrbfmVa96VUd2/MmXv/zlfPjDH86WW27Z0T291dPTkyOPPDK//e1vu1qYMGzYsBxzzDG59957c/zxx2f8+PFdy/InI0eOzIEHHphvf/vb+f3vf58vfelL6enp6Xasxpo+fXpXnu2GNdZYI6effnp+85vf5E1velOGDev+HzdNmjQp73rXu/LjH/84d99994AUByTJlClTcu211+bf//3f85KXvKQjO6ZOnZpbbrkln/70pzN8+PCO7AAAAAAAAAAAAAAAmsc7AAAY8k466aRuRwBorD333DN77rlnbrvttlxwwQW56KKL8uijj3Z877Bhw7L77rvnrW99aw477LBMnDix4zsH2uabb56rrroqN9xwQz7/+c9nxowZWbZsWb/uXH/99XPkkUfmAx/4QNZbb702JV253XbbLbvttlu+9KUv5Z577smll16ayy67LNddd10WLFgwIBmS599EfPjhh+fYY4/N5ptvPmB7W1lzzTXz+c9/Pp/4xCfy9a9/PWeddVbuuuuuAdu/xhprZO+9986BBx6Ygw46KJMmTRqw3au7ww8/PJ/4xCf6/PN2iy22yG677dahVJ215ZZb5rvf/W5mzpyZM888M1//+tfz5JNPDtj+jTfeOPvtt18OOuig7L333hk5cuSA7f5Lw4cPz/vf//68/e1vz9lnn52zzz47DzzwQL/v3XvvvXP88cd3rFQGAAAAAAAAAAAAAGi2UmvtdgaAIaGUsnOS6/7yteuuuy4777xzlxK1z8yZM1/0xr8xY8ZkypQp3QkEQNcsW7YsP/3pT3P55Zfn5z//eW699dY899xzbbl7vfXWy6677po99tgjhxxySDbccMO23NsUf/zjH3P55Zfn0ksvzY033piHH3645TOllGy11VbZe++9s++++2afffbJiBEjBiBta88991xuu+223HDDDbnhhhty/fXXt+WNtX9p4403zl577ZW/+7u/y9/8zd9k9OjRbb2/U26//fbMmDEj//Vf/5Vf/epXWbJkSdvufslLXpKpU6dm2rRpmTZtWqZOnZqeHp2CdMaSJUvys5/9LDNmzMgVV1yRe+65p213l1Ky6aabZqeddsq0adOy++675+Uvf3nb7m+nZcuW5Sc/+Ukuv/zyXHXVVfntb3+bpUuXtnxu8uTJec1rXpMDDjggBx54YDbaaKMBSAsAAAAAwGDma3QAAACAVkop3Y6w2jv55JO7HWG155vEMhhdf/312WWXXf73y7vUWq/vRp4VURwAMEAUBwAwFC1YsCA33XRT7rzzztx///25//7788ADD2TWrFmZP39+5s2bl/nz56enpydjx47NuHHjMm7cuEyePDmbbbZZNt9882y++ebZfvvts9VWW3X70xlU5syZkzvvvDOPP/545syZkzlz5mTZsmUZP358JkyYkClTpmTrrbfO2LFjux2115555pnce++9uffee3Pfffflvvvuy8yZMzNr1qzMmTMnc+fOzdy5c7NgwYIMHz48o0aNytixY7POOutk3XXXzUtf+tJstdVW2WabbbLjjjuuFm+yXbhwYX71q1/llltuyT333JOHHnooDz30UP74xz9mwYIFmT9/fhYuXJienp6MHDkyY8aMyVprrZW11147kydPzpQpU7Lppptmq622yitf+cqsv/763f6UGMKeeeaZ3Hzzzbn11lvzwAMP5MEHH8zDDz/8598TFixYkMWLF2fEiBEZNWpUxo0bl7XWWivrrLNONthgg2y66abZbLPNss022+SVr3xlJk6c2O1PaZUs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AAAAAAAAAAAAAAAAAAA0mOIAAAAAAAAAAAAAAAAAAAAAaDDFAQAAAAAAAAAAAAAAAAAAANBgigMAAAAAAAAAAAAAAAAAAACgwRQHAAAAAAAAAAAAAAAAAAAAQIMpDgAAAAAAAAAAAAAAAAAAAIAGUxwAAAAAAAAAAAAAAAAAAAAADaY4AAAAAAAAAAAAAACARiql+OjwBwAAANAMigMAAAAAAAAAAAAAAAAAAACgwRQHAAAAAAAAAAAAAAAAAAAAQIMpDgAAAAAAAAAAAAAAAAAAAIAGUxwAAAAAAAAAAAAAAAAAAAAADaY4AAAAAAAAAAAAAAAAAAAAABpMcQAAAAAAAAAAAAAAAAAAAAA0mOIAAAAAAAAAAAAAAAAAAAAAaDDFAQAAAAAAAAAAAAAAAAAAANBgigMAAAAAAAAAAAAAAAAAAACgwRQHAAAAAAAAAAAAAAAAAAAAQIMpDgAAAAAAAAAAAAAAAAAAAIAGUxwAAAAAAAAAAAAAAAAAAAAADaY4AAAAAAAAAAAAAAAAAAAAABpMcQAAAAAAAAAAAAAAAAAAAAA0mOIAAAAAAAAAAAAAAAAAAAAAaDDFAQAAAAAAAAAAAAAAAAAAANBgigMAAAAAAAAAAAAAAAAAAACgwRQHAAAAAAAAAAAAAAAAAAAAQIMpDgAAAAAAAAAAAAAAAAAAAIAGUxwAAAAAAAAAAAAAAAAAAAAADaY4AAAAAAAAAAAAAAAAAAAAABpMcQAAAAAAAAAAAAAAAAAAAAA0mOIAAAAAAAAAAAAAAAAAAAAAaDDFAQAAAAAAAAAAAAAAAAAAANBgigMAAAAAAAAAAAAAAAAAAACgwRQHAAAAAAAAAAAAAAAAAAAAQIMpDgAAAAAAAAAAAAAAAAAAAIAGUxwAAAAAAAAAAAAAAAAAAAAADaY4AAAAAAAAAAAAAAAAAAAAABpMcQAAAAAAAAAAAAAAAAAAAAA0mOIAAAAAAAAAAAAAAAAAAAAAaDDFAQAAAAAAAAAAAAAAAAAAANBgigMAAAAAAAAAAAAAAAAAAACgwRQHAAAAAAAAAAAAAAAAAAAAQIMpDgAAAAAAAAAAAAAAAAAAAIAGUxwAAAAAAAAAAAAAAAAAAAAADaY4AAAAAAAAAAAAAAAAAAAAABpMcQAAAAAAAAAAAAAAAAAAAAA0mOIAAAAAAAAAAAAAAAAAAAAA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AAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABnZk3QMAAAAAAIfbRRddtO4RDrwLL7xw3SMAAAAAAAAAAAAAsEQnrHsAAAAAAAAAAAAAAAAAAAAA4PgJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAADYRVU5lnwAAAAAAAAAAAAAANeNcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAACAgQkHAAAAAAAAAAAAAAAAAAAAwMCEAwAAAAAAAAAAAAAAAAAAAGBgwgEAAAAAAAAAAAAAAAAAAAAwMOEAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAAAGJhwAAAAAAAAAAAAAAAAAAAAAAxMOAAAAAAAAAAAAAAAAAAAAgIEJBwAAAAAAAAAAAAAAAAAAAMDAhAMAAAAAAAAAAAAAAAAAAABgYMIBAAAAAAAAAAAAAAAAAAAAMDDhAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAAABiYcAAAAAAAAAAAAAAAAAAAAAAMTDgAAAAAAAAAAAAAAAAAAAICBCQcAAAAAAAAAAAAAAAAAAADAwIQDAAAAAAAAAAAAAAAAAAAAYGDCAQAAAAAAAAAAAAAAAAAAADAw4QAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAAAAAAAAAAAAAAAYmHAAAAAAAAAAAAAAAAAAAAAADEw4AAAAAAAAA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AAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGEw4AAAAAAAAAAAAAAAAAAACAwYQDAAAAAAAAAAAAAAAAAAAAYDDhAAAAAAAAAAAAAAAAAAAAABhMOAAAAAAAAAAAAAAAAAAAAAAGO7zfCwAAAMB+ueyyy/Z7hQPv0ksv3e8VAAAAAAAAAAAAAADgwDtpvxcAAAAAAAAAAAAAAAAAAAAAjp1wAAAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAACDCQcAAAAAAAAAAAAAAAAAAADAYMIBAAAAJ6iq8ln5AwAAAAAAAAAAAAAAcBAIBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAAAAAAAAAAAAAAAAAAAAAADCYcAAAAAAAAAAAAAAAAAAAAAIMJBwAAAAAAAAAAAAAAAAAAAMBgwgEAAAAAAAAAAAAAAAAAAAAwmHAA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" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": { + "scrolled": true + } + }, + { + "cell_type": "code", + "execution_count": 18, + "source": [ + "onc_plot_roc(\n", + " y_true=calibrated_results.y, \n", + " y_pred=calibrated_results.p_calibrated, \n", + " model_name='xgb_nonimputed');" + ], + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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AAAAAAAAAAAAAAAAAAAAJUxxAAAAAAAAAAAAAAAAAAAAAJQwxQEAAAAAAAAAAAAAAAAAAABQwhQHAAAAAAAAAAAAAAAAAAAAQAlTHAAAAAAAAAAAAAAAAAAAAAAlTHEAAAAAAAAAAAAAAAAAAAAAlDDFAQAAAAAAAAAAAAAAAAAAAFDCFAcAAAAAAAAAAAAAAAAAAABACVMcAAAAAAAAAAAAAAAAAAAAACVMcQAAAAAAAAAAAAAAAAAAAACUMMUBAAAAAAAAAAAAAAAAAAAAUMIUBwAAAAAAAAAAAAAAAAAAAEAJUxwAAAAAAAAAAAAAAAAAAAAAJUxxAAAAAAAAAAAAAAAAAAAAAJQwxQEAAAAAAAAAAAAAAAAAAABQwhQHAAAAAAAAAAAAAAAAAAAAQAlTHAAAAAAAAAAAAAAAAAAAAAAlTHEAAAAAAAAAAAAAAAAAAAAAlDDFAQAAAAAAAAAAAAAAAAAAAFDCFAcAAAAAAAAAAAAAAAAAAABACVMcAAAAAAAAAAAAAAAAAAAAACVMcQAAAAAAAAAAAAAAAAAAAACUMMUBAAAAAAAAAAAAAAAAAAAAUMIUBwAAAAAAAAAAAAAAAAAAAEAJUxwAAAAAAAAAAAAAAAAAAAAAJUxxAAAAAAAAAAAAAAAAAAAAAJQwxQEAAAAAAAAAAAAAAAAAAABQwhQHAAAAAAAAAAAAAAAAAAAAQAlTHAAAAAAAAAAAAAAAAAAAAAAlTHEAAAAAAAAAAAAAAAAAAAAAlDDFAQAAAAAAAAAAAAAAAAAAAFDCFAcAAAAAAAAAAAAAAAAAAABACVMcAAAAAAAAAAAAAAAAAAAAACVMcQAAAAAAAAAAAAAAAAAAAACUMMUBAAAAAAAAAAAAAAAAAAAAUMIUBwAAAAAAAAAAAAAAAAAAAEAJUxwAAAAAAAAAAAAAAAAAAAAAJUxxAAAAAAAAAAAAAAAAAAAAAJQwxQEAAAAAAAAAAAAAAAAAAABQwhQHAAAAAAAAAAAAAAAAAAAAQAlTHAAAAAAAAAAAAAAAAAAAAAAlTHEAAAAAAAAAAAAAAAAAAAAAlDDFAQAAAAAAAAAAAAAAAAAAAFDCFAcAAAAAAAAAAAAAAAAAAABACVMcAAAAAAAAAAAAAAAAAAAAACVsRdYBgKUrSZKGiGiJiIaIWB0RZRHRFxG9EXEtTdO7GcYDAAAAAAAAAAAAAAAAAIAlQXEAUDRJklRHxG9GxJ+NiD8dERtnuL4vIs5ExD+IiN9P0/TRvIcEAAAAAAAAAAAAAAAAAIAlRnEAvEGSJDsj4thLx9GIqH3ba9I0TeY92CKVJEldRPw/IuK3I6J+Di9dHRG/8evjbyRJ8j9GxH+SpmlH8VMCAAAAAAAAAAAAAAAAAMDSpDiAZS9Jkq3xeknAukxDlZAkSf61iPhrEdH4nqMqIuIvRsT/JkmSvx4R/0GapiPvmw8AAAAAAAAAAAAAAAAAAJY6xQEsK0mSbIiIH8bUooANmYYqUUmSVEbEfx0R/3qRR1dExP8zIv50kiT/SpqmD4o8HwAAAAAAAAAAAAAAAAAAlhTFASw3/zgiPsg6RKlLkmRlRPz/IqJtHm/zUUR8nSTJiTRNr8/jfQAAAAAAAAAAAAAAAAAAoKTlsg4AlJYkScoj4v8b81saMGlzRPxRkiRbF+BeAAAAAAAAAAAAAAAAAABQkhQHAHP1n0fEvziL6wYj4r+PiP9VROyOiFURURURWyLiX4qIvx4RXbOYsyMifv/XhQUAAAAAAAAAAAAAAAAAAMArFAcAs5Ykyf8iIv7qLC79HyKiOU3Tfy1N099P0/RmmqaDaZqOpGn6IE3Tf5ym6b8dEbsi4t+PiPEZ5n0UEf/Z+6UHAAAAAAAAAAAAAAAAAIClSXEAzOxWRPyTrENkLUmSVRHxX81wWRoRfyVN0/9dmqYPZ5qZpulQmqb/YUT8qYh4McPl/5ckSY7MLi0AAAAAAAAAAAAAAAAAACwfK7IOAIvM3Yg4FxHnf/14Lk3T7iRJdkbEzSyDLQL/bkRsmeGa/1uapv/lXAenaXo6SZI/ExH/LCIqprksFxG/ExHH5zofAAAAAAAAAAAAAAAAAACWMsUBLGcP4tflAPGrooCv0zR9km2kxSlJkoaI+KszXPZ7aZr+F+96jzRNf54kyb8TEW+b8aMkSf7FNE3/8bveBwAAAAAAAAAAAAAAAAAAlhrFASw3vxMRXRFxLk3TR1mHKSF/JSKq37Le9+tr3tf/OyL+YkQcfcs1/05EKA4AAAAAAAAAAAAAAAAAAIBfy2UdABZSmqZ/J03Tv680YPaSJFkREf+nGS77a2madr3vvdI0TeNXxQBv86eSJDnwvvcCAAAAAAAAAAAAAAAAAIClQnEAMJN/ISLWv2V9KCL+y2LdLE3TfxYR7TNc9r8t1v0AAAAAAAAAAAAAAAAAAKDUKQ4AZjLTJv3/KU3T7iLf82/NsP6vJkmSFPmeAAAAAAAAAAAAAAAAAABQkhQHANNKkiQXEX9mhsv+P/Nw69+NiPG3rG+PiEPzcF8AAAAAAAAAAAAAAAAAACg5igOAtzkWEbVvWR+JiD8q9k3TNH0aEV/NcNlPin1fAAAAAAAAAAAAAAAAAAAoRYoDgLf50zOs/zxN06F5uvfPZlj/5+fpvgAAAAAAAAAAAAAAAAAAUFIUBwBv89EM6z+fx3ufnWH9h/N4bwAAAAAAAAAAAAAAAAAAKBmKA4C3+XCG9V/O473PzbBenyTJ9nm8PwAAAAAAAAAAAAAAAAAAlATFAcAbJUlSHxEzbcz/Zr7un6ZpT0Tcn+GyI/N1fwAAAAAAAAAAAAAAAAAAKBWKA4Dp7JlhfSwibs9zhs4Z1mfKCAAAAAAAAAAAAAAAAAAAS57iAGA6u2ZYv5mm6cQ8Z5ipOGCmjAAAAAAAAAAAAAAAAAAAsOQpDgCms3OG9QcLkGGmeygOAAAAAAAAAAAAAAAAAABg2VuRdQBg0do8w/qjBcgw0z1myggAAAAAAAAAAAAAAADAAkrTNMbHx4t6pGlamP3y8fI9Zzo/+fFszs/l+Vzuk/V7yOfzhXMvP5/8OCIin89Pef7qNW97/Ztmzfb6t639vb/392L37t0z/acHy57iAGA6DTOsP16ADF0zrM+UEQAAAAAAAAAAAAAAAKCkjI+Px/DwcIyMjMTo6GjRN+EX4xgbG5t2bXLTOMxkdHQ0BgcHY+3atZEkybTX+W8KZkdxADCd+hnWXyxAhpnuMVNGAAAAAAAAAAAAAAAAgPeSz+djdHQ0RkZGYmRkJIaHhwsb+ycfX37+8vqbrpnptTZJs9SlaRr9/f0xPDwcEREDAwNRU1Pz1uuBmSkOAKZTN8N63wJkmOke1UmSVKZpOrIAWSJJkk/fc8SBogQBAAAAAAAAAAAAAACAZW58fLzoG/mnWxsdHc367cKSMTIyEv39/VMKMoaGhqKysjLKy8vf+BrFATA7igOA6VTNsD6wABn6Z3FNVUQsSHFARJxdoPsAAAAAAAAAAAAAAABASUnTNEZHR99pI/+7bPKfmJjI+i0Dc5DP56O/vz9GRt68HbCvry/q6uoiSZI3vhaYmeIAYDoVM6yPL0CG2dxjppwAAAAAAAAAAAAAAACwLE1MTLx1I/+7bPKfbiP/dJuBAYaHh2NgYOCtBQATExMxODgYq1atem0tTdP5jAdLhuIAYDqKAwAAAAAAAAAAAAAAAKCI0jSNsbGxWW/Gf5+N/MPDwzExMZH1WwaWsXw+H319fTE6Ojqr64eGhqKysjJWrJi6/VlxAMyO4gBgOrkZ1hfiu4bZ3KNs3lMAAAAAAAAAAAAAAACwZOXz+QXbyD86OmoDLLAsDA8PR39//5w+56VpGn19fVFXV/faeWBmigOA6YzPsL4Qnz9mc4+xeU/xP/vsPV9/ICL+m2IEAQAAAAAAAAAAAAAAKFXj4+MxODg4p2NoaCjGx8cjn8/HxMRETExMvPH5q+fy+Xzhda+ujY6OxvDwcIyPz7SNBoDZmpiYiP7+/hgdHX2n10/+G1FdXV04l8/nixUPljTFAcB0ZvpXeSE+f5TP4pp3++rhHaRp+ov3eX2SJMWKAgAAAAAAAAAAAAAAsCDSNI3h4eE5b/R/08b/gYGBGBoaeufNpAAsbpOf69M0fa85g4ODUVFREStW/Gob4/vOg+VCcQAwnbEZ1isWIMOiKg4AAAAAAAAAAAAAAABY7Cb/UnOxjqGhIRs2AXiriYmJ6Ovri7GxmbYlzm2m4gCYG8UBwHT6Z1ivWYAMq2dYTyNicAFyAAAAAAAAAAAAAAAAFF2apjE0NBRDQ0NF2+hfzE2bAMW2YsWKOR3l5eVRVlYWuVwuIiKSJJlyTHqf85Mfz+b8XJ7P5T4L8d5yudyUtZc/ftPaq6950zVpmsb169ejs7Mz0jR9473f9r/Fm3Ju2rQpfvjDH0ZNTU3hnlu2bHnjf0/AVIoDgOn0zLC+ZgEyzHSP3jRNJxYgBwAAAAAAAAAAAAAAsMxNTEwUNvkPDw8XHoeHh995k//Q0JC/ogzMaK6b7WfaiF/MeXM5JjeBszQ8ffo0Tp48GUmSxJ49e957XmVlZXzyySexd+9e/53AO1IcAEyne4b12gXIMNM9ZsoIAAAAAAAAAAAAAAAsA2maxtjYWGEj/8sb+6fb7D/d2svXvHxufHw867cJLBLl5eVRVVUVlZWVUVlZWXj+6uOr5950/tW1V8+vWLHCJmoWlYmJiTh//nxcvHixaOU3O3fujOPHj0d1dXVR5sFypTgAmM7TGdY3LkCGme6hOAAAAAAAAAAAAAAAAEpAmqYxOjpa1I38rz7m8/ms3yaQkSRJpmy4n2kz/vts5K+srIxcLpf1W4ZMdHV1xcmTJ+P58+dFmbdy5cr47LPPYvfu3QoyoAgUBwDTuTPD+oYFyDDTPW4vQAYAAAAAAAAAAAAAACB+tfm/r68vuru7o7u7O54+fTrl+YsXL9662b9Yf5UYKA3l5eULtpG/vLzcpmOYR2NjY/H111/H999/X7R/z5ubm+Ozzz6LqqqqoswDFAcA07s1w/qOBciwc4b1mwuQAQAAAAAAAAAAAAAAlrSxsbHo6ekpFABMFgK8WgzQ3d0do6OjWccF3lGSJAu2kb+qqipyuVzWbxkogvv378epU6eir6+vKPNWrVoVx48fjx07FmKLIiwvigOA6cy0KX9TkiSr0jQdmMcMzTOsKw4AAAAAAAAAAAAAAIA3SNM0+vr6Xtv4/3I5wOS53t7erOPCsrVixYoF28hfXl4eSZJk/ZaBEjE6OhpffPFFdHR0FG1mS0tLfPLJJ1FRUVG0mcD/THEAMJ1rETEaEW/7F3hfRPxyPm6e/Oq7kD0zXPb9fNwbAAAAAAAAAAAAAAAWq7Gxsejp6ZlSAPCmYoDu7u4YHR3NOi6UpIXayF9ZWRllZWVZv12A19y+fTvOnDkTAwPF+bvDq1evjhMnTsSWLVuKMg94M8UBwBulaTqaJMn3EXHkLZcdiXkqDohflQasfst6GhEX5+neAAAAAAAAAAAAAACwYNI0jb6+vtc2/r9cDjB5rre3N+u4UFRVVVVRXV392rFy5cpYtWrVlMeKiorI5XJRVlYWZWVlMz5/9Vwul4sVK1YUnpeXl7+2kb+ioiJ+9fcwAZaf4eHhOHv2bHR2dhZlXpIksX///vjhD38Y5eXlRZkJTE9xAPA2v4y3FwccjYi/M0/3PjrD+vU0TV/M070BAAAAAAAAAAAAAOC9jY2NRU9Pz5QCgDcVA3R3d8fo6GjWcWFGuVzutc387/uYy+WyflsA/No//af/NB48eFCUWbW1tdHW1hYbNmwoyjxgZooDgLc5ExH/h7es/3PzeO8fz7B+Zh7vDQAAAAAAAAAAAAAAb5SmafT19b228f/lcoDJc729vVnHZZmrqqqK6urqoh3l5eWRJEnWbwuAefLxxx/HH/zBH0Sapu88I0mS+OCDD+Lo0aNRVlZWxHTATBQHAG/zT2dYb02SZEuapvfn4d7//AzrP5uHewIAAAAAAAAAAAAAsEyNjY1FT0/PlAKANxUDdHd3x+joaNZxWYJyuVysWrVqzpv5V65cGatWrXrjYy6Xy/ptAVBCGhsb4+DBg/HNN9+80+sbGhqira0t1q1bV+RkwGwoDgCmlabpvSRJOiKi5S2X/bmI+J1i3jdJkg8jYtfbosXMpQYAAAAAAAAAAAAAACwzaZrG0NBQ9Pf3R19fX/T39095/uq558+fF8oAent7s45PCSkrK4uVK1dGVVVVrFy5MlauXDnnDf+vHuXl5ZEkSdZvDYBl7tixY3H79u05fW1UVlYWH374YXzwwQdKayBDigOAmfxuRPx7b1n/V6PIxQG/nvk2J9M0fVzkewIAAAAAAAAAAAAAkLHR0dHCxv6Xj1c3/r+pCGDyyOfzWb8NFoHy8vLCxv7JY3KD/+Tzlx9fPfem9ZfXVqywLQuApWnFihVx4sSJ+MM//MNZXb9+/fpoa2uLurq6eU4GzMRXqMBM/od4e3HAJ0mSHEvT9FwxbpYkyaqI+DdmkQkAAAAAAAAAAAAAgEUkn8/H4ODgWzf1v23jf19fX4yOjmb9NlggFRUVb9zE/z6b/V9+LCsry/otAkDJ2rRpU/zgBz+IS5cuTXvNihUr4tixY3Hw4MFIkmQB0wHTURwAvFWapleSJDkbEZ+95bJ/NyL+lSLd8v8YEW+rFhqIiN8r0r0AAAAAAAAAAAAAAIiINE1jdHT0tY38cykAGBwcjDRNs34rLIAkSaKuri7WrVsXDQ0Nhcf6+vqoqal5YxHAq4UAuVwu67cBALzFxx9/HHfu3In+/v7X1jZt2hQnTpyItWvXZpAMmI7iAGA2/nq8vTjgf5kkyY/TNP3j97lJkiSNEfHvzXDZ307T9Pn73AcAAAAAAAAAAAAAYKmZmJiIgYGBN272n20BwPj4eNZvg4xVVVUVSgAmCwEmj5fP1dXVRVlZWdZxAYB5VF5eHidOnIh/+A//4ZRzn3zySbS0tESSJBmmA95EcQCUsCRJZqpi/O/SNP1LRbjVH0TElYjY95Zr/m6SJIffdVN/8quvEv5uRLytYmgsIv7Gu8wHAAAAAAAAAAAAAFis0jSNoaGhaTf0z6YAYHBwMOu3wSKVJEnU1dW9tvn/1cd169bFypUrbQIEAAq2bt0ae/fujatXr8a2bdvi888/j5qamqxjAdNQHADMKE3TfJIk/3ZE/OFbLtsREf9TkiR/Nk3ToXe4zX8eEX92hmv+izRN77zDbAAAAAAAAAAAAACAeTM2Njbthv7ZFgDk8/ms3wYlprKysrDh/+XN/68WAtTV1UVZWVnWcQGAEvXpp5/G1q1bo6mpScEQLHKKA4BZSdP07ydJ8g/i7Zv7fxwR/yRJkv91mqYPZzM3SZLKiPidiPi3Zrj0YUT8h7MKCwAAAAAAAAAAAAAwB/l8Pvr6+qK7uzt6e3vnXAAwMjKS9VtgiUiSJOrq6gob/18tAXi5IGDlypU27wEABePj43H+/PlYuXJlHDp0qGhzKysro7m5uWjzgPmjOIBlJ0mSExGxd44va5jF3H/zHeKcTNP02ju8Lit/OSIuRETjW645HhHfJUnyH0XE307TtO9NFyVJsiIifjMi/uOI2DfDffMR8ZemmwUAAAAAAAAAAAAA8Ko0TQtlAD09PdHd3V04enp64unTp9HT01NYm5iYyDoyS1hlZWVhw//Lm/9fLgRoaGiI+vr6KCsryzouAFBiHj58GKdOnYre3t4oKyuLHTt2xNq1a7OOBSwwxQEsR/9GRPzv52Hu33qH1/zrEVEyxQFpmj5IkuQvRsQ/jIjcWy6tj4i/ERH/cZIkfxwR7RHRFRETv147GBE/jrcXELzsP0nT9J+8c3AAAAAAAAAAAAAAYElI0zQGBgambPx/tRDg5edjY2NZR2YJS5Ik6urqpmz+f7kEYLIcYN26dbFy5cpIkiTryADAEjM2NhZfffVVfP/994VzExMTcfLkyfjpT3/q6w9YZhQHAHOSpuk/TpLk34qIvx0RM33VsDIi/syvj3f1dyPi33+P1wMAAAAAAAAAAAAAi9zg4OBrG/8nP361IGB0dDTruCxxlZWVhQ3/LxcAvFoMUF9fH2VlZVnHBQCWqXv37sXp06ejr6/vtbVHjx7FpUuXYv/+/RkkA7KiOACYszRN/9skScoi4r+K+f088nci4i+naZrO4z0AAAAAAAAAAAAAgHkwPDz8xo3/byoIGB4ezjouS1BFRUXU1NTE6tWro6amZsrzl8/V1dVNKQeorq7213kBgEVrZGQkvvjii7hy5cpbr/vqq69i+/btsXr16gVKBmRNcQDwTtI0/VtJklyLiP8xItYXefxYRPzf0zT9nSLPBQAAAAAAAAAAAADew+jo6Bs3/r+pIGBwcDDruJSwXC5X2Nj/6qb/NxUAvLw2eVRUVGT9NgAAiurWrVtx5syZWX2tPTY2FqdPn47f+I3fUIoEy4TiAOCdpWn6J0mStEbEfxoR/2ZE5Iow9o8j4v+cpunlIswCAAAAAAAAAAAAAGYwNjYWz549e23j/5sKAvr7+7OOS4lYuXLlGzf8z7YAYOXKlTa4AQD82tDQUJw9ezauX78+p9fdu3cvrl69Gvv27ZunZMBiojgAeC9pmvZExG8nSfLXIuKvRsRfjIg1cxwzFhH/ICL+X2ma/klxEwIAAAAAAAAAAADA8jM+Ph7Pnj0rbP5/WynAixcvso7LIlNWVvbaRv65FACsWrUqVqywZQUA4H2laRrXr1+Ps2fPxvDw8DvN+OKLL2Lbtm1RXV1d5HTAYuO7MJadNE3/UkT8pYxjFEWapoumPjFN02sR8VeSJPm/RsTnEfGnIuJARLRERENErI6Isojoi4jeiOiMiO8j4kxE/JM0Tf20EQAAAAAAAAAAAADeIp/PF8oAXt74//LHkwUBz58/zzouGaqurn5t4/9cCgAqKysjSRbNr6sDACxLAwMDcebMmbh9+/Z7zRkZGYkzZ87ET37yE1/jwRKnOAAoqjRNxyLin/36AAAAAAAAAAAAAADeIp/PR29v72sb/18tBOju7o7nz59HPp/POjLzrKKiYtoN/dMVAbx8zapVqyKXy2X9NgAAeEdpmsaVK1fiiy++iNHR0aLM7O/vj7GxsaioqCjKPGBxUhwAAAAAAAAAAAAAAABFlKZpvHjx4rWN/y9/PFkQ0NPTowxgCcnlcrFq1arXNvXPpQDAZi4AgOWrr68vTp06Fffv3y/KvLKysjh69GgcOnRIuRQsA4oDAAAAAAAAAAAAAABgBmmaRn9//2sb/18tBJh8HB8fzzoy7yCXy0VtbW2sXbv2jZv6ZyoAWLlyZSRJkvXbAACgxKRpGt9//3189dVXRfteYsOGDdHW1ha1tbVFmQcsfooDAAAAAAAAAAAAAABYltI0jcHBwdc2/r/88csFAWNjY1lH5h0kSRJ1dXVRX18fDQ0NheNNH9fW1vpLrAAALKjnz5/HyZMno6urqyjzVqxYER999FHs379fqRUsM4oDAAAAAAAAAAAAAAAoWWNjY/H8+fN49uzZa48vP+/r64t8Pl943dDQUHR3d8fIyEiG6XkftbW1UV9fH+vWrYv6+vopz18uBKitrY2ysrKs4wIAwBT5fD6++eabOH/+fExMTBRl5pYtW+Lzzz+PNWvWFGUeUFoUBwAAAAAAAAAAAAAAsCikaRpDQ0OvbfqffP6mQoCBgYGsY1NEa9asiYaGhtc2/79aClBXVxcrVtgSAQBAaeru7o6TJ0/G06dPizKvoqIiPvnkk9i3b18kSVKUmUDp8V0yAAAAAAAAAAAAAAALYmBgILq6uuLRo0fR1dU15Zg8NzIyknVMiqympua1jf8vFwJMPq+rq4uKioqs4wIAwLyZmJiI9vb2uHDhQuTz+aLM3LFjRxw/fjxWrVpVlHlA6VIcAAAAAAAAAAAAAADAexsZGXmtDODVkoD+/v6sY1Ik1dXVb9z8/6aCAGUAAAAQ8fjx4zh58mQ8e/asKPOqqqris88+i6ampkiSpCgzgdKmOAAAAAAAAAAAAAAAgLcaHx+PJ0+evFYI8HIpwPPnz7OOyXuqqqoqbPZ/tRDg1VKAqqqqrOMCAEBJGB8fj6+//jq+++67SNO0KDObmpris88+i5UrVxZlHrA0KA4AAAAAAAAAAAAAAFjG8vl89PT0FMoAXn6cPLq7uyOfz2cdlXdQUVHxxo3/byoIqK6uzjouAAAsKQ8fPoyTJ0/GixcvijKvuro6jh8/Hjt37izKPGBpURwAAAAAAAAAAAAAALBEpWkavb29hQKAVwsBurq64vHjxzE+Pp51VOZgxYoVb9z4/6aCgFWrVkWSJFlHBgCAZWV0dDS++uqruHTpUtFm7tu3Lz755JOorKws2kxgaVEcAAAAAAAAAAAAAABQogYGBqYtBJg8NzIyknVMZqGsrGzaEoBXP169erUyAAAAWKTu3r0bp0+fjv7+/qLMq6mpiRMnTsTWrVuLMg9YuhQHAAAAAAAAAAAAAAAsQiMjI6+VAUwWAkyWAgwMDGQdk7fI5XJRV1f32sb/devWvVYIsHr16sjlcllHBgAA3tHIyEicPXs2rl27VrSZ+/fvj48++ijKy8uLNhNYuhQHAAAAAAAAAAAAAAAssPHx8Xjy5MmUMoCXH7u6uuL58+dZx+QNkiSJurq61zb+v+nj2tpaZQAAALAMDA8Px+/93u/F4OBgUeatXbs2Tpw4EZs2bSrKPGB5UBwAAAAAAAAAAAAAAFBE+Xw+enp6ppQAvPy8q6srnj59GmmaZh2Vl9TW1kZ9fX2sW7cu6uvrpzx/uRCgtrY2ysrKso4LAAAsIlVVVbFly5a4du3ae81JkiQOHToUR48ejRUrbAEG5sZnDQAAAAAAAAAAAACAWUrTNHp7e6ctBOjq6orHjx/H+Ph41lGXnYqKiqirq4u6urqora2d8nzyqKqqKlyfy+WitrY2Ghoaoq6uzqYcAADgvXz22Wdx7969GBoaeqfX19fXR1tbWzQ2NhY5GbBc+MkGAAAAAAAAAAAAAMCvDQwMTFsIMHluZGQk65jLwurVq6ds/H9TIcDLj1VVVZEkSdaxAQCAZaqysjKOHz8eP/vZz+b0ulwuF0eOHInDhw9HWVnZPKUDlgPFAQAAAAAAAAAAAADAsjAyMvLGIoCXnw8MDGQdc1loaGiIDRs2xMaNG2PDhg1Tjo0bN0Z9fX2sWOHX3QEAgNKya9eu2LVrV9y8eXNW1zc2NkZbW1vU19fPczJgOfCTFAAAAAAAAAAAAACg5I2Pj8fjx4+nFAO8Wg7w/PnzrGMuC2vWrJm2EGDDhg3R2NgYFRUVWccEAACYF8ePH48HDx7EyMjItNeUlZXFsWPH4uDBg5HL5RYwHbCUKQ4AAAAAAAAAAAAAABa1fD4f3d3d0xYCdHV1xdOnTyNN06yjLnnV1dVvLASYLAVYv359rFy5MuuYAAAAmVm5cmV89tln8cd//MdvXN+4cWO0tbXF2rVrFzgZsNQpDgAAAAAAAAAAAAAAMpOmafT29k5bCPDo0aN4/PhxTExMZB11yauoqIj169cXygBefpw8ampqIkmSrKMCAAAsas3NzdHZ2Rl3794tnCsvL4+PPvoofvCDH/i+CpgXigMAAAAAAAAAAAAAgHkzMDDwWiHAq+UAIyMjWcdc8nK5XKEU4E2FABs2bIi6ujqbVwAAAIogSZL4/PPP43d/93djbGwstmzZEidOnIjVq1dnHQ1YwhQHAAAAAAAAAAAAAADvZGRk5I1FAC+fGxgYyDrmstDQ0DBtIcDGjRtj3bp1kcvlso4JAACwbNTU1MSPfvSjSNM09u7dq6gNmHeKAwAAAAAAAAAAAACA14yPj8fjx4+nLQTo6uqK58+fZx1zWVizZs1rhQCTH2/cuDEaGxujvLw865gAAAAla2JiIi5cuBA/+MEPYuXKlUWbu3fv3qLNApiJ4gAAAAAAAAAAAAAAWGby+Xx0d3dPWwjw6NGj6O7ujjRNs4665FVXV79WCvByMcD69euLumkFAACAqbq6uuLkyZPx/Pnz6OnpiZ/85CdZRwJ4J4oDAAAAAAAAAAAAAGAJSdM0ent7p5QAvFwK0NXVFY8fP46JiYmsoy55FRUV0xYCTB41NTWRJEnWUQEAAJadsbGxOHfuXHz33XeF4rybN2/GzZs3Y9euXRmnA5g7xQEAAAAAAAAAAAAAUEIGBgamLQSYPEZGRrKOueTlcrlYv379tIUAGzdujNraWqUAAAAAi9CDBw/i1KlT8eLFi9fWzpw5E5s3b47KysoMkgG8O8UBAAAAAAAAAAAAALBIjIyMFEoBXi0DmDw3MDCQdcwlL0mSqK+vn1II8GoxwLp16yKXy2UdFQAAgDkYHR2NL7/8Mi5fvjztNUNDQ3H27Nn48Y9/vIDJAN6f4gAAAAAAAAAAAAAAWCD5fD6ePn0a9+7di7t37xaOe/fuRVdXVzx//jzriMvCmjVrYuPGja+VAUwWBDQ2NkZ5eXnWMQEAACiiO3fuxOnTp2dVyHft2rVoamqK7du3L0AygOJQHAAAAAAAAAAAAAAARZTP56Orq6tQCPBqQcDIyEjWEZe06urqaQsBJp9XVVVlHRMAAIAFMjw8HGfPno3Ozs45ve706dPxW7/1W1FRUTFPyQCKS3EAAAAAAAAAAAAAAMzRxMREPHr06LVSgLt378b9+/djdHQ064hLUkVFxbSFAJOPNTU1WccEAABgEUjTNG7evBk///nPY2hoaM6vHxgYiC+//DI+//zzeUgHUHyKAwAAAAAAAAAAAADgDcbGxuLhw4dTygEmCwLu378fExMTWUdcUnK5XKxfv35KIcBkGcDkUVtbG0mSZB0VAACARW5wcDDOnDkTt27deq85ly9fjqampti8eXNxggHMI8UBAAAAAAAAAAAAACxbo6Ojce/evbh3795rBQGPHj2KfD6fdcQlIUmSqK+vLxQBvFoIsGHDhli3bl3kcrmsowIAAFDC0jSNa9euxS9+8YsYGRkpyszvvvtOcQBQEhQHAAAAAAAAAAAAALCkDQ0Nxf379wuFAJMlAXfu3InHjx9HmqZZRyx5a9eunbYQYOPGjdHY2Bjl5eVZxwQAAGAJ6+/vj9OnT8fdu3eLMi+Xy8WHH34YH3zwQVHmAcw3xQEAAAAAAAAAAAAAlLyBgYFCIcCrBQFPnjzJOl5Jq66unrYQYOPGjbF+/fqoqqrKOiYAAADLVJqmcfny5fjyyy9jbGysKDMbGxujra0t6uvrizIPYCEoDgAAAAAAAAAAAACgJLx48eK1coDJgoCenp6s45WkioqK18oAXn7csGFD1NTUZB0TAAAA3qi3tzdOnToVDx8+LMq8srKyOHbsWBw8eDByuVxRZgIsFMUBAAAAAAAAAAAAACwaQ0NDcefOnbh161bcvn077ty5UygIePHiRdbxSkpZWVmsX7/+jcUAk0dtbW0kSZJ1VAAAAJiTNE3jm2++iXPnzsXExERRZm7atClOnDgRa9euLco8gIWmOAAAAAAAAAAAAACABZWmaTx58iRu3bpVKAiYfN7V1ZV1vJKQJEk0NDRMWwiwYcOGWLdunb+OCAAAwJLz7NmzOHnyZDx+/Lgo88rLy+Pjjz+O1tZW5XpASVMcAAAAAAAAAAAAAMC8yOfzcfPmzbh58+aUkoDbt2/H4OBg1vEWtbVr176xEGDy48bGxigvL886JgAAACyYiYmJuHDhQrS3t0c+ny/KzG3btsXnn38eNTU1RZkHkCXFAQAAAAAAAAAAAAC8s3w+H8+fP4+enp7C8fDhw7h48WJcuHAh+vv7s464KFVUVMTWrVtj69atsW3btti2bVts3bo1Nm/eHOvXr4+qqqqsIwIAAMCi8eTJkzh16lR0d3cXZV5lZWV8+umnsWfPnkiSpCgzAbKmOAAAAAAAAAAAAACAKUZGRqKnpyeePXsW3d3db318/vx50f7K31JTVVU1pRRg8vm2bduisbExcrlc1hEBAABgURsfH4/z58/HN998E2maFmXmzp074/jx41FdXV2UeQCLheIAAAAAAAAAAAAAgGUoTdN48uRJdHZ2RmdnZ1y7di06Ozvj/v37MTg4mHW8klFdXR3btm2L7du3v1YQ0NDQ4K8WAgAAwDt69OhRnDx5Mnp7e4syb+XKlfGjH/0odu3a5ft1YElSHAAAAAAAAAAAAACwxA0NDcWNGzfi2rVrhYKAa9euxYsXL7KOVhJWr15dKAN4+di6dWvU1dXZbAAAAABFNDY2Fl999VVcunQp0jQtysw9e/bEp59+GlVVVUWZB7AYKQ4AAAAAAAAAAAAAWCLy+Xw8ePBgSkFAZ2dn3L17t2i/aL9U1dbWxvbt22Pr1q2vFQSsWbMm63gAAACwLNy/fz9OnToVfX19RZm3atWq+Pzzz2P79u1FmQewmCkOAAAAAAAAAAAAAChBL168KBQDTBYFXL9+PYaGhrKOtmg1NDRMKQSYLAnYunVrrF69Out4AAAAsGyNjIzEF198EVeuXCnazNbW1vj444+joqKiaDMBFjPFAQAAAAAAAAAAAACL2Pj4eNy+fTuuXbs2pSTg8ePHWUdblNavXz+lHGCyGGDr1q1RXV2ddTwAAADgFY8ePYo/+qM/ioGBgaLMW716dZw4cSK2bNlSlHkApUJxAAAAAAAAAAAAAMAikKZpdHd3F4oBOjs7o7OzM27cuBHj4+NZx1s0kiSJjRs3FgoBJssBtm/fHlu2bInKysqsIwIAAABzUFNTE6Ojo+89J0mSOHDgQBw7dizKy8uLkAygtCgOAAAAAAAAAAAAAFhgw8PDcePGjejs7CyUBFy7di2eP3+edbRFY926dbFjx47YuXNn7Nixo1AQsHnz5qioqMg6HgAAAFAkNTU18fHHH8eZM2feeUZtbW20tbXFhg0bipgMoLQoDgAAAAAAAAAAAACYJ/l8Ph49ehTXrl2bcty7dy/y+XzW8TJXXl4e27Zti507dxaOHTt2xI4dO6KmpibreAAAAMACaW1tjevXr8fDhw/n9LokSeLw4cPx4YcfRllZ2TylAygNigMAAAAAAAAAAAAAiqCvry+uX79eKAfo7OyMzs7OGBwczDpa5srLy6O1tTV27949pSBg8+bNfqkfAAAAiCRJ4sSJE/F7v/d7MTExMavXNDQ0RFtbW6xbt26e0wGUBsUBAAAAAAAAAAAAAHMwOjoat27dKhQDdHZ2xvXr16OrqyvraJkqKyuL+vr6KceOHTvi8OHDsX///qisrMw6IgAAALCIrV27No4dOxZffvnlW68rKyuLDz/8MD744IPI5XILlA5g8VMcAAAAAAAAAAAAAPAG+Xw+7t27F9evXy+UA3R2dsadO3cin89nHW9BVFdXv1YGMN2xevXqSJIk68gAAABACTt06FDcvHkzHj9+/Mb1DRs2xIkTJ6Kurm6BkwEsfooDAAAAAAAAAAAAgGUtTdPo7u6Ozs7OKQUBN27ciJGRkazjzbuysrLYuXNn7NmzJ5qbm2PPnj2xc+fOaGhoiKqqqqzjAQAAAMtIkiTR1tYWv//7vz+luHHFihXxwx/+MA4cOKC4EGAaigMAAAAAAAAAAACAZaO/vz+uX79eKAeYPF68eJF1tAWxbt262LNnT6EkoLm5OXbu3BkVFRVZRwMAAACIiIi6uro4cuRInD9/PiIiNm/eHCdOnIg1a9ZknAxgcVMcAAAAAAAAAAAAACw5o6OjcevWrejs7CyUBFy/fj0ePXqUdbQFUVlZGU1NTdHc3DylKKC2tjbraAAAAAAzOnz4cNy/fz/27NkTLS0tkSRJ1pEAFj3FAQAAAAAAAAAAAEDJyufzcf/+/SnlAJ2dnXH79u3I5/NZx1sQW7ZsmVIQsGfPnti6dWvkcrmsowEAAADLwMTERNy/fz+2b99etJllZWXx05/+VGEAwBwoDgAAAAAAAAAAAAAWvTRNo6enZ0o5QGdnZ9y4cSOGh4ezjrcgampqYs+ePYWSgObm5mhubo7q6uqsowEAAADL1JMnT+LkyZPR09MTP/3pT2PTpk1Fm600AGBuFAcAAAAAAAAAAAAAi8rAwMCUcoDJ5729vVlHWxC5XC527txZKAbYs2dP7NmzJzZs2OAX5gEAAIBFYXx8PM6dOxfffvttpGkaERGnTp2KP//n/3ysWGHrKkAWfPYFAAAAAAAAAAAAMjE2Nha3bt2aUg5w/fr1ePjwYdbRFkx9fX2hGGDPnj3R3Nwcu3btioqKiqyjAQAAALzRw4cP49SpU6+VPPb29sa5c+fik08+ySgZwPKmOAAAAAAAAAAAAACYV/l8Ph48eDClHKCzszNu374dExMTWcdbEBUVFbF79+4pBQHNzc1RX1+fdTQAAACAWRkbG4uvvvoqvv/++2mv+fbbb6OpqSkaGxsXMBkAEYoDAAAAAAAAAAAAgCJJ0zSePXsWnZ2dU44bN27E8PBw1vEWzKZNmwrlAJNFAdu2bYuysrKsowEAAAC8k3v37sWpU6eiv7//rdelaRp/8id/En/uz/05PwsBWGCKAwAAAAAAAAAAAIA5GxwcjOvXrxfKASafP3/+POtoC6a2tjaam5ujqamp8NjU1BSrVq3KOhoAAABAUYyMjMQvfvGLuHr16qxf8+zZs2hvb49jx47NYzIAXqU4AAAAAAAAAAAAAJjW2NhY3L59e0o5wPXr1+PBgwdZR1swVVVVsXv37mhubi4cTU1NUV9fH0mSZB0PAAAAYF7cunUrzpw5E4ODg3N+7YULF2LXrl3R0NAwD8kAeBPFAQAAAAAAAAAAAEDk8/l4+PBhoRxg8rh9+3ZMTExkHW9B5HK52LlzZzQ1NRXKAZqbm2Pz5s2Ry+WyjgcAAACwIIaGhuLnP/953Lhx451n5PP5OHXqVPzmb/6mn6sALBDFAQAAAAAAAAAAALDM9PT0RGdn55SSgBs3bsTQ0FDW0RbMxo0bp5QDNDc3x44dO6KioiLraAAAAACZSNM0rl+/HmfPno3h4eH3nvfkyZO4cuVKtLa2FiEdADNRHAAAAAAAAAAAAABL1ODgYNy4caNQDjBZFPDs2bOsoy2YNWvWFIoBJo/du3dHTU1N1tEAAAAAFo2BgYE4ffp03LlzpyjzcrlcHD58OPbu3VuUeQDMTHEAAAAAAAAAAAAAlLixsbG4c+fOlHKAzs7OePDgQdbRFkxlZWU0NTVFc3PzlMeGhoZIkiTreAAAAACLUpqm0dHREV9++WWMjo4WZea6deuira0tGhoaijIPgNlRHAAAAAAAAAAAAAAlIp/Px6NHjwrFAJMlAbdv347x8fGs4y2IXC4XO3bseK0kYMuWLZHL5bKOBwAAAFAy+vr64tSpU3H//v2izCsrK4ujR4/GoUOH/JwGIAOKAwAAAAAAAAAAAGARevbs2ZRygM7Ozrhx40YMDg5mHW3BbNiwYUo5QHNzc+zcuTMqKiqyjgYAAABQstI0je+++y6+/vrropVRbtiwIdra2qK2trYo8wCYO8UBAAAAAAAAAAAAkKHBwcG4efNmoRxgsiigp6cn62gLZs2aNYVigMmigKampqipqck6GgAAAMCS8vz58zh58mR0dXUVZd6KFSvio48+iv3790eSJEWZCcC7URwAAAAAAAAAAAAAC2B8fDzu3LlTKAiYLAm4f/9+1tEWTEVFRTQ1NRXKASYf161b5xfLAQAAAOZRPp+Pixcvxi9/+cuYmJgoyswtW7bEiRMnYvXq1UWZB8D7URwAAAAAAAAAAAAARZSmaTx8+DCuX79eKAfo7OyMW7duxfj4eNbxFkQul4vt27e/VhKwdevWyOVyWccDAAAAWFa6u7vj5MmT8fTp06LMq6ioiE8++ST27dunDBJgEVEcAAAAAAAAAAAAAO9odHQ0Ojs7o6OjIzo6OqKzszM6OztjcHAw62gLZv369dHc3Fw4mpqaYteuXVFRUZF1NAAAAIBlbWJiIn75y1/GxYsXI5/PF2Xmjh074vjx47Fq1aqizAOgeBQHAAAAAAAAAAAAwCyMjo7GtWvX4vLly3H58uXo6OiI69evx/j4eNbRFsTq1aunlANMPq5evTrraAAAAAC84vHjx3Hy5Ml49uxZUeZVVVXFZ599Fk1NTZEkSVFmAlBcigMAAAAAAAAAAADgFcPDw4WSgI6Ojrh8+XJcv369aH+ZbTGrqKiI3bt3F8oBJgsCGhsb/VI4AAAAwCI3Pj4eX3/9dXz33XeRpmlRZjY1NcVnn30WK1euLMo8AOaH4gAAAAAAAAAAAACWtaGhobh69WqhIODy5ctx8+bNJV8SkMvlYuvWrYVygMlj69atkcvlso4HAAAAwBw9ePAgTp06FS9evCjKvOrq6jh+/Hjs3LmzKPMAmF+KAwAAAAAAAAAAAFg2BgcH48qVK3H58uXo6OiIjo6OuHXr1pIvCVi/fn00NzdHU1NT4XHXrl1RWVmZdTQAAAAA3tPo6Gh8+eWXcfny5aLN3LdvX3zyySd+fgRQQhQHAAAAAAAAAAAAsCQNDAwUSgImiwJu374daZpmHW3e1NTURHNz82slAWvWrMk6GgAAAADz4O7du3H69Ono7+8vyrzVq1fH559/Hlu3bi3KPAAWjuIAAAAAAAAAAAAASl5fX99rJQF37tzJOta8qaioiF27dhXKASaPxsbGSJIk63gAAAAALJDHjx8XrTRg//798dFHH0V5eXlR5gGwsBQHAAAAAAAAAAAAUFJevHgRHR0d0dHRUSgKuHfvXtax5kWSJLFt27ZCMcBkUcDWrVujrKws63gAAAAAZOzw4cNx8+bN6OnpeecZa9eujRMnTsSmTZuKmAyAhaY4AAAAAAAAAAAAgEWrt7e3UA4wWRTw4MGDrGPNi8bGxinlAE1NTbFr166oqqrKOhoAAAAAi1RZWVm0tbXFH/zBH0SapnN6bZIkcejQoTh69GisWGG7KUCp85kcAAAAAAAAAACARaGnpyc6OjoKBQGXL1+OR48eZR2r6GpqaqaUAzQ3N0dzc3OsWbMm62gAAAAAlKDGxsY4dOhQXLx4cdavqa+vj7a2tmhsbJzHZAAsJMUBAAAAAAAAAAAALLju7u64fPnylJKAx48fZx2rqMrLy2PXrl2FYoDJkoD169dHkiRZxwMAAABgCTl69GjcunUrent733pdLpeLI0eOxOHDh6OsrGyB0gGwEBQHAAAAAAAAAAAAMK+ePHlSKAmYLAp48uRJ1rGKas2aNdHS0lI49uzZE9u3b/fL1wAAAAAsiBUrVsSJEyfiD//wD6e9prGxMdra2qK+vn4BkwGwUBQHAAAAAAAAAAAAUBRpmhZKAiaPjo6O6O7uzjpaUa1duzZaW1ujpaUlWltbo7W1NTZt2hRJkmQdDQAAAIBlbNOmTfGDH/wgLl26NOV8WVlZHDt2LA4ePBi5XC6jdADMN8UBAAAAAAAAAAAAzFmapvHo0aNCOUBHR0dcvnw5nj17lnW0oqqrq5tSEtDS0hIbN25UEgAAAADAovTxxx/HnTt3or+/PyIiNm7cGG1tbbF27dqMkwEw3xQHAAAAAAAAAAAA8FZpmsbDhw/j8uXLhaKAy5cvR29vb9bRiqq+vj5aW1unHI2NjUoCAAAAACgZ5eXlceLEifjZz34WH330UfzgBz/w8y2AZUJxAAAAAAAAAAAAAAVpmsb9+/enlAR0dHTEixcvso5WVI2NjdHa2hotLS3R0tJSKAkAAAAAgIWUz+djeHg4qqurizZz69at8Rf+wl+Iqqqqos0EYPFTHAAAAAAAAAAAALBM5fP5uHfvXnR0dEwpCujv7886WlGtX78+WltbC0UBra2t0dDQkHUsAAAAAJa5p0+fxsmTJyOXy8Vv/uZvRi6XK9pspQEAy4/iAAAAAAAAAAAAgGUgn8/HnTt3CuUAly9fjitXrsTAwEDW0Ypq48aNU0oCWlpaor6+PutYAAAAAFAwMTER58+fj4sXL0aaphER8e2338YHH3yQcTIASpniAAAAAAAAAAAAgCUmn8/HrVu3CgUBHR0dceXKlRgcHMw6WlFt3ry5UBAw+VhbW5t1LAAAAACYVldXV5w8eTKeP38+5fy5c+di586dsXbt2myCAVDyFAcAAAAAAAAAAACUsImJibh161Zcvny5cFy9ejWGh4ezjlZUW7dujdbW1kJBQEtLS6xZsybrWAAAAAAwK2NjY/H111/H999/H2mavrY+MTERJ0+ejJ/+9KeRJEkGCQEodYoDAAAAAAAAAAAASsT4+HjcuHEjOjo6oqOjo1ASMDIyknW0otq+fXu0tLQUigL27dsXq1evzjoWAAAAALyT+/fvx6lTp6Kvr++t1z169CguXboU+/fvX6BkACwligMAAAAAAAAAAAAWobGxsbhx40Zcvny5UBJw7dq1GB0dzTpa0SRJEjt27HitJGDVqlVZRwMAAACA9zY6OhpffPFFdHR0zPo1X331VWzfvl2RJgBzpjgAAAAAAAAAAAAgY6Ojo3H9+vUpJQGdnZ0xNjaWdbSiyeVysXPnzkJJQEtLS+zbty+qq6uzjgYAAAAARXf79u04c+ZMDAwMzOl1Y2Njcfr06fiN3/iNSJJkntIBsBQpDgAAAAAAAAAAAFhAw8PD0dnZGVeuXInLly/H5cuX4/r16zE+Pp51tKLJ5XKxa9euaG1tLRx79uyJlStXZh0NAAAAAObV8PBwnD17Njo7O995xr179+Lq1auxb9++IiYDYKlTHAAAAAAAAAAAADBPXrx4ER0dHXHlypXCcfv27cjn81lHK5qysrJoamqKlpaWaGlpKZQEVFVVZR0NAAAAABZMmqZx48aNOHv2bAwNDb33vC+++CK2bdsW1dXVRUgHwHKgOAAAAAAAAAAAAOA9pWkajx8/jitXrkwpCnj06FHW0YpqxYoV0dTUFK2trVNKAioqKrKOBgAAAACZGRwcjDNnzsStW7eKMi9JkmhtbY3KysqizANgeVAcAAAAAAAAAAAAMAf5fD5u375dKAeYPHp7e7OOVlTl5eXR3NxcKAloaWmJ5uZmJQEAAAAA8GtpmsbVq1fjiy++iJGRkaLMbGhoiLa2tli3bl1R5gGwfCgOAAAAAAAAAAAAmMbo6Gh0dnZOKQi4du1aDA8PZx2tqCoqKmLPnj3R0tISra2t0draGrt3747y8vKsowEAAADAotTX1xenT5+Oe/fuFWVeWVlZHDlyJA4fPhy5XK4oMwFYXhQHAAAAAAAAAAAAxK9+0ffq1atx5cqV6OjoiCtXrsTNmzcjn89nHa2oKioqYt++fdHa2hotLS3R0tISu3fvjhUr/DoZAAAAAMwkTdO4dOlSfPXVVzE2NlaUmevXr4+2traoq6sryjwAlif/Tw8AAAAAAAAAALCspGkaT58+jStXrhSOjo6OePDgQdbRiq6qqir27t0bra2thaKAXbt2RVlZWdbRAAAAAKDk9Pb2xsmTJ+PRo0dFmbdixYo4duxYHDx4MJIkKcpMAJYvxQEAAAAAAAAAAMCSlaZp3Lt3Ly5fvlwoCbh69Wr09PRkHa3oqqurY9++fdHS0lIoCdi5c2fkcrmsowEAAABAScvn8/Htt9/GuXPnYmJioigzN23aFCdOnIi1a9cWZR4AKA4AAAAAAAAAAACWjDRN4+7du3H+/PnC8eTJk6xjFV11dfWUgoDW1tbYvn27kgAAAAAAKLKenp44efJk0X7OWF5eHp988km0tLREkiRFmQkAEYoDAAAAAAAAAACAEpamady7d29KUcDjx4+zjlVUNTU1hXKAyaKArVu3KgkAAAAAgHk0MTERFy5ciPb29sjn80WZuW3btvj888+jpqamKPMA4GWKAwAAAAAAAAAAgJKRpmk8ePAgzp07F+fPn49z584tqaKANWvWREtLy5SigC1btvjLYwAAAACwgJ48eRInT56Mnp6eosyrrKyMzz77LJqbm/2sD4B5ozgAAAAAAAAAAABYtNI0jYcPH8a5c+cKZQFdXV1ZxyqK+vr62LdvX+zbt69QErBp0ya/OAwAAAAAGRkfH4/z58/HN998E2maFmXmrl274kc/+lFUV1cXZR4ATEdxAAAAAAAAAAAAsKg8ePAgzp8/H+fPn49z587Fo0ePso703rZs2RL79u2LlpaWQlnAunXrso4FAAAAAPzaw4cP49SpU9Hb21uUeStXrozjx4/Hrl27ijIPAGaiOAAAAAAAAAAAAMjUw4cPpxQFPHz4MOtI7yyXy8Xu3bsL5QAtLS2xd+/eqKmpyToaAAAAAPAGY2Nj8dVXX8X3339ftJl79uyJzz77LCorK4s2EwBmojgAAAAAAAAAAABYUI8ePZpSFPDgwYOsI72Tqqqq2Lt3b6EkYN++fdHU1BQVFRVZRwMAAAAAZuHevXtx+vTp6OvrK8q8VatWxeeffx7bt28vyjwAmAvFAQAAAAAAAAAAwLzq6uoqlAScP38+7t+/n3WkOVu7dm3s27cvWlpaCiUB27dvj1wul3U0AAAAAOAdTExMxKlTp6K/v78o81pbW+Pjjz9WLApAZhQHAAAAAAAAAAAARTM2NhbXrl2L7777Lr799tv45ptvSq4oYNOmTbFv377Yu3dvoShg/fr1kSRJ1tEAAAAAgCIpKyuL48ePxz/6R//oveasWbMmTpw4EZs3by5SMgB4N4oDAAAAAAAAAACAd/b48eP49ttvC8fly5djdHQ061izksvlYufOnbFv374px5o1a7KOBgAAAAAsgO3bt8eePXvi2rVrc35tkiRx4MCB+OEPfxgrVtiqCUD2/GsEAAAAAAAAAADMyvDwcHR0dBRKAr777rt4/Phx1rFmJUmS2LNnTxw4cKBQENDc3BxVVVVZRwMAAAAAMvTpp5/GvXv3YmhoaNavqaurixMnTsSGDRvmMRkAzI3iAAAAAAAAAAAA4DVpmsa9e/cKBQHffvttXL16NSYmJrKONmt79+6No0ePxtGjR+PDDz+MNWvWZB0JAAAAAFhkqqqq4vjx4/Gzn/1sxmtzuVx88MEH8eGHH0ZZWdkCpAOA2VMcAAAAAAAAAAAARH9/f1y6dCm+/fbbwtHb25t1rDnZs2fPlKKAtWvXZh0JAAAAACgBu3btil27dsXNmzenvWbdunXR1tYWDQ0NC5gMAGZPcQAAAAAAAAAAACxDjx8/jgsXLkR7e3u0t7fH9evXI03TrGPNSXNz85SigNra2qwjAQAAAAAl6kc/+lE8ePAgRkZGppwvKyuLDz/8MD744IPI5XIZpQOAmSkOAAAAAAAAAACAJS5N07hz506hJKC9vT0ePHiQdaw5a2pqiqNHj8axY8cUBQAAAAAARVVdXR2ffvpp/Mmf/Enh3IYNG6Ktrc3PIgEoCYoDAAAAAAAAAABgiZmYmIirV69Ge3t7XLhwIS5cuBA9PT1Zx5qz3bt3x7Fjx+Lo0aPx4YcfRl1dXdaRAAAAAIAlbM+ePXH9+vV4+PBhfPTRR7F///5IkiTrWAAwK4oDAAAAAAAAAACgxI2MjMT3338f7e3t0d7eHt98800MDg5mHWvOdu/eHUePHi0UBdTX12cdCQAAAABYxPL5fCRJUrTN/UmSxIkTJ2JiYiLWrFlTlJkAsFAUBwAAAAAAAAAAQInp6+uLixcvFooCLl++HGNjY1nHmrNdu3YVigKOHj2qKAAAAAAAmLXu7u44depUHDhwIPbs2VO0uatWrSraLABYSIoDAAAAAAAAAABgkXvy5Em0t7fHhQsXor29PTo7OyNN06xjzdmOHTvi2LFjhaKAhoaGrCMBAAAAACVmYmKi8PPSfD4fZ8+eja1bt8bKlSuzjgYAmVIcAAAAAAAAAAAAi0iapnH37t1ob28vHPfv38861pxVV1fHgQMH4uDBg3Hw4ME4cOBA1NbWZh0LAAAAAChhjx8/jpMnT8azZ88K50ZGRuLMmTPxk5/8JMNkAJA9xQEAAAAAAAAAAJChfD4fV69eLZQEXLhwIXp6erKONSdJksTu3bsLJQEHDx6MnTt3Ri6XyzoaAAAAALAEjI+Px7lz5+Lbb7+NNE1fW79582bcvHkzdu3alUE6AFgcFAcAAAAAAAAAAMACGh0dje+++y4uXLgQ7e3tcfHixRgcHMw61pzU1tYWCgIOHDgQ+/fvj1WrVmUdCwAAAABYgh4+fBinTp2K3t7et1535syZ2Lx5c1RWVi5QMgBYXBQHAAAAAAAAAADAPOrr64tvvvkm2tvbo729PS5duhRjY2NZx5q1srKy2LdvXxw4cKBQFrBly5ZIkiTraAAAAADAEjY2NhZffvllXLp0aVbXDw0NxdmzZ+PHP/7xPCcDgMVJcQAAAAAAAAAAABTR06dPCyUBFy5ciGvXrkWaplnHmrXGxsY4dOhQoSSgpaXFX+gCAAAAABbU3bt34/Tp09Hf3z+n1127di2amppi+/bt85QMABYvxQEAAAAAAAAAAPCO0jSNu3fvxoULFwplAffu3cs61pzs2LEjjhw5Ujg2bdoUSZJkHQsAAAAAWIZGRkbiF7/4RVy9evWdZ5w+fTp+67d+KyoqKoqYDAAWP8UBAAAAAAAAAAAwS/l8Pq5du1YoCWhvb4+enp6sY81aLpeLffv2xZEjR+Lw4cNx+PDhqK+vzzoWAAAAAEDcvHkzfv7zn8fg4OB7zRkYGIgvv/wyPv/88yIlA4DSoDgAAAAAAAAAAACmMTo6Gt9//320t7fHhQsX4uLFizEwMJB1rFmrqKiIAwcOxJEjR+LIkSNx6NChqK6uzjoWAAAAAEDB0NBQ/PznP48bN24UZV6SJFFeXh5pmkaSJEWZCQClQHEAAAAAAAAAAAD8Wn9/f1y8eDHa29ujvb09Ll26FGNjY1nHmrXVq1fHBx98UCgKaGlpiYqKiqxjAQAAAAC8Jk3T6OzsjF/84hcxPDxclJl1dXXR1tYW69evL8o8ACgligMAAAAAAAAAAFi2nj59WigJuHDhQly7di3SNM061qw1NjbGkSNH4vDhw3HkyJFoamqKXC6XdSwAAAAAgLcaGBiI06dPx507d4oyL5fLFX5OWlZWVpSZAFBqFAcAAAAAAAAAALAspGkad+/ejQsXLhTKAu7du5d1rDnZvn17HDlypHBs3rw5kiTJOhYAAAAAwKykaRodHR3x5ZdfxujoaFFmNjY2xokTJ6KhoaEo8wCgVCkOAAAAAAAAAABgScrn83Ht2rVCScCFCxeiu7s761izlsvlYu/evYWSgMOHD0d9fX3WsQAAAAAA3smLFy/i1KlT8eDBg6LMKysri6NHj8ahQ4cil8sVZSYAlDLFAQAAAAAAAAAALAmjo6Px/fffF0oCLl68GAMDA1nHmrWKioo4cOBAHD58OI4cORKHDh2KVatWZR0LAAAAAOC9pGka3333XXz99dcxPj5elJkbNmyItra2qK2tLco8AFgKFAcAAAAAAAAAAFCS+vv745tvvon29vZob2+PS5cuxejoaNaxZq2mpiY++OCDOHLkSBw5ciRaW1ujoqIi61gAAAAAAEXz7NmzOHXqVHR1dRVlXnl5efzwhz+M/fv3R5IkRZkJAEuF4gAAAAAAAAAAAEpCd3d3oSSgvb09Ojs7I5/PZx1r1tatW1coCTh8+HA0NzdHLpfLOhYAAAAAQNHl8/m4ePFi/PKXv4yJiYmizNyyZUucOHEiVq9eXZR5ALDUKA4AAAAAAAAAAGDRSdM07t27F+3t7XHhwoVob2+Pu3fvZh1rTrZv3x6HDx8ulAVs2bLFX8ACAAAAAJa87u7uOHnyZDx9+rQo8yoqKuKTTz6Jffv2+RkrALyF4gAAAAAAAAAAADKXz+ejs7Mz2tvbC0d3d3fWsWYtl8vFnj17CiUBhw8fjoaGhqxjAQAAAAAsmImJifjlL38ZFy9ejHw+X5SZO3bsiOPHj8eqVauKMg8AljLFAQAAAAAAAAAALLjR0dG4dOlSoSTg4sWLMTAwkHWsWauoqIj9+/cXSgI++OADv7gKAAAAACxbXV1dcerUqXj27FlR5lVVVcWPfvSj2L17dyRJUpSZALDUKQ4AAAAAAAAAAGDeDQwMxMWLF+P/z96fB+ld2Oei5/PrVrcWtAsJBAgsgQRIaF8QQt2NCau6he0AdmySnJycxPGSW1MzVbdmbtXM3Fu35o/ZqmbmXu/x8cnmLRATW2oBNhi6JYFAW0tiFwgQq3Ykoa2lfn/zR3J042MbhHj7fbV8PlWqVOn9vc/3KZwq4+63n+7p6cnGjRvz3HPPpbe3t961TtnQoUMzc+bMk0MBU6dOTXNzc71rAQAAAADU1YkTJ7J27do8++yzKcuyKplXXnllFi1alMGDB1clDwDOF4YDAAAAAAAAAACour1792bjxo0n/2zdujWVSqXetU7ZhRdemNmzZ58cCrjqqqvS0NBQ71oAAAAAAGeMd955J93d3Tlw4EBV8oYMGZKWlpZcccUVVckDgPON4QAAAAAAAAAAAD6Rsizz9ttvnxwJ6Onpyfbt2+td62O5/PLLM2vWrJNjAZdeemmKoqh3LQAAAACAM9KOHTuyfPnyquVdffXVWbhwYQYOHFi1TAA43xgOAAAAAAAAAADgY6lUKnnllVfS09Nzcixg9+7d9a51yhoaGjJ58uSTIwGzZs3KmDFj6l0LAAAAAOCsMW7cuFx22WV56623PlHOsGHD0tLSkssuu6xKzQDg/GU4AAAAAAAAAACAD9Xb25vnn38+GzduTE9PTzZt2pQPPvig3rVOWXNzc6ZNm3ZyJGDGjBkZOnRovWsBAAAAAJy1iqJIS0tLHnjggRw/fvy0MqZNm5YFCxakqampyu0A4PxkOAAAAAAAAAAAgN9w6NChbNq0KT09Pdm4cWOee+659Pb21rvWKbvgggsyc+bMzJ49O7Nnz87UqVPT3Nxc71oAAAAAAOeUYcOGZcGCBVm9evXHet+IESPS1taWiy++uJ+aAcD5yXAAAAAAAAAAAMB5bu/evdm4cePJP1u3bk2lUql3rVM2ZsyYkyMBs2fPzlVXXZWGhoZ61wIAAAAAOOdNnTo1r776at57772PfLYoisyYMSNz587NgAF+tBEAqs1/uwIAAAAAAAAAnEfKsszbb799ciSgp6cn27dvr3etj2XChAmZPXt2Zs2aldmzZ+eyyy5LURT1rgUAAAAAcN4piiJtbW154IEH0tfX93ufGz16dNra2jJ27NgatgOA84vhAAAAAAAAAACAc1ilUskrr7ySnp6ek2MBu3fvrnetU1YURSZPnpzZs2efHAu48MIL610LAAAAAIB/M2LEiMybNy9PP/30b73W0NBw8mu7jY2NdWgHAOcPwwEAAAAAAAAAAOeQ3t7evPDCCydHAjZt2pQPPvig3rVOWVNTU6ZNm3ZyKGDGjBkZOnRovWsBAAAAAPAhpk+fnm3btmXXrl0n/27s2LFpa2vL6NGj69gMAM4fhgMAAAAAAAAAAM5ihw8fzqZNm7Jx48b09PTk2WefTW9vb71rnbILLrggM2fOzKxZszJ79uxMmzYtzc3N9a4FAAAAAMDH0NDQkLa2tvzsZz9LURSZN29epk+fnoaGhnpXA4DzhuEAAAAAAAAAAICzyP79+7N+/fps3LgxGzduzMsvv5xKpVLvWqds9OjRmT179sk/kydP9sFRAAAAAIBzwOjRo9PW1pZx48ZlxIgR9a4DAOcdwwEAAAAAAAAAAGewgwcPZuPGjVm3bl3WrVuXrVu3pizLetc6ZZdddtnJkYBZs2ZlwoQJKYqi3rUAAAAAAM5r+/bty7p163LTTTelqamparmTJ0+uWhYA8PEYDgAAAAAAAAAAOIMcPnw4PT09J4cCXnzxxVQqlXrXOiVFUWTy5MmZNWvWybGACy+8sN61AAAAAAD4N5VKJT09PdmwYUMqlUqGDBmSG2+8sd61AIAqMBwAAAAAAAAAAFBHR48ezebNm08OBTz77LNnzVBAU1NTpk2bdnIoYMaMGRk2bFi9awEAAAAA8Dvs2rUr3d3d2bNnz8m/e+655zJp0qSMHz++js0AgGowHAAAAAAAAAAAUEO9vb159tlnTw4FbNmyJcePH693rVMyZMiQzJw5M7Nnz87s2bMzbdq0NDc317sWAAAAAAAfoq+vL+vXr8+mTZtSluVvvd7d3Z277747Awb4cUMAOJv5b3IAAAAAAAAAgH504sSJPP/881m3bl3Wrl2bTZs2pbe3t961Tsno0aNPjgTMmjUrU6ZMSUNDQ71rAQAAAABwit577710d3fn/fff/73P7N+/P+vXr8/1119fu2IAQNUZDgAAAAAAAAAAqKK+vr689NJLWbt2bdatW5eenp4cOXKk3rVOyWWXXfYbQwETJkxIURT1rgUAAAAAwMd0/PjxrF27Ns8991zKsvzI5zdv3pxJkyZl7NixNWgHAPQHwwEAAAAAAAAAAJ9ApVLJ1q1bs27duqxbty4bNmzIoUOH6l3rIxVFkcmTJ2fWrFknhwJ8IBQAAAAA4Oz39ttvp7u7OwcPHjzl95Rlma6urnzuc59LY2NjP7YDAPqL4QAAAAAAAAAAgI+hLMts27bt5FDA+vXrc+DAgXrX+khNTU2ZOnVqZs+endmzZ2fGjBkZNmxYvWsBAAAAAFAlx44dy5o1a/LSSy+d1vv37t2bnp6ezJ07t8rNAIBaMBwAAAAAAAAAAPAhyrLM9u3bf2MoYO/evfWu9ZGGDBmSmTNnZvbs2Zk1a1amTZuWgQMH1rsWAAAAAAD94I033siqVaty6NChT5SzcePGTJw4MaNHj65SMwCgVgwHAAAAAAAAAAD8O2VZ5p133jk5FLBu3brs2rWr3rU+0ujRozNr1qzMnj07s2fPzuTJk9PY2FjvWgAAAAAA9KOjR49m9erVefXVV6uS91+/Rm44AADOPoYDAAAAAAAAAIDz3o4dO7Ju3bqsXbs269aty3vvvVfvSh9p3LhxmTdvXubOnZvZs2dnwoQJKYqi3rUAAAAAAKiBsiyzbdu2PPnkkzly5EhVMkeOHJm2trZcdNFFVckDAGrLcAAAAAAAAAAAcN7ZvXt31q1bd/LPW2+9Ve9KH2n06NGZN2/eyT+GAgAAAAAAzk+HDh3KqlWr8sYbb1QlryiKzJo1K3PmzEljY2NVMgGA2jMcAAAAAAAAAACc8/bt25f169efHAp4/fXX613pIw0fPvw3hgImTpxoKAAAAAAA4DxWlmVefvnlPPXUU+nt7a1K5pgxY9LW1pYLL7ywKnkAQP0YDgAAAAAAAAAAzjkHDhzIhg0bTg4FvPLKK/Wu9JGGDh2aOXPmnBwKuOqqq9LQ0FDvWgAAAAAAnAEOHjyY7u7uvP3221XJa2xszJw5czJz5kxfiwaAc4ThAAAAAAAAAADgrHfo0KFs3Ljx5FDASy+9lLIs613rQw0ePDizZ88+ORRwzTXX+HAmAAAAAAC/oSzLPP/883nmmWdy/PjxqmRedNFFaW1tzahRo6qSBwCcGQwHAAAAAAAAAABnnSNHjmTTpk1Zt25d1q5dmxdeeCGVSqXetT5Uc3NzZs2adXIoYOrUqRkwwEc3AAAAAAD43fbv35+urq689957VckbMGBA5s+fn+uuuy5FUVQlEwA4c/juMwAAAAAAAABwxuvt7c3mzZuzdu3arFu3Ls8991xOnDhR71ofqqmpKdOnTz85FHDdddelubm53rUAAAAAADjDVSqVbNmyJevWrUtfX19VMi+55JK0trZm+PDhVckDAM48hgMAAAAAAAAAgDPO8ePH8+yzz2bdunVZt25dtmzZkt7e3nrX+lCNjY2ZNm3ayaGAmTNnZuDAgfWuBQAAAADAWWTv3r3p6urKrl27qpLX1NSUhQsX5pprrklRFFXJBADOTIYDAAAAAAAAAIC66+vry/PPP39yKGDTpk05evRovWt9qIaGhlxzzTWZN29e5s+fn5kzZ2bIkCH1rgUAAAAAwFmor68vPT092bhxYyqVSlUyJ0yYkJaWlgwdOrQqeQDAmc1wAAAAAAAAAABQF++//36efPLJdHd356mnnsqhQ4fqXelDFUWRyZMnnxwKmD17tg9bAgAAAADwie3atStdXV3Zu3dvVfIGDhyYRYsW5aqrrkpRFFXJBADOfIYDAAAAAAAAAICaKMsyr732Wrq7u7Ny5cps2bKlar81qb9MmjQp8+fPz7x58zJ37twMHz683pUAAAAAADhHnDhxIuvXr8/mzZtTlmVVMidOnJjFixdn8ODBVckDAM4ehgMAAAAAAAAAgH7T29ubDRs2pLu7O6tWrco777xT70of6oorrsi8efNODgWMHj263pUAAAAAADgHvfvuu+nu7s7+/furkjd48OAsXrw4EydOrEoeAHD2MRwAAAAAAAAAAFTV3r17s2rVqqxatSpr1qzJ4cOH613p97r00ktPDgXMmzcvY8eOrXclAAAAAADOcVu2bMlTTz1VtbzJkydn0aJFGThwYNUyAYCzj+EAAAAAAAAAAOATKcsyW7duzapVq9Ld3Z3nnnsuZVnWu9bvdNFFF/3GUMD48ePrXQkAAAAAgPPMJZdckoaGhlQqlU+UM3To0LS0tGTChAlVagYAnM0MBwAAAAAAAAAAH1tvb2/WrVuX7u7urFy5Mjt27Kh3pd9pzJgxJ0cC5s+fn0svvTRFUdS7FgAAAAAA57ExY8Zk1qxZ2bBhw2lnXHvttbn++uvT3NxcxWYAwNnMcAAAAAAAAAAAcEp2796dVatWZeXKlXn66adz9OjRelf6LSNHjszcuXMzf/78zJs3L1dccYWhAAAAAAAAzjizZ8/Oa6+9ln379n2s9w0fPjytra255JJL+qkZAHC2MhwAAAAAAAAAAPxOZVnmpZdeysqVK7Ny5co8//zz9a70W4YNG5a5c+dm3rx5mTdvXiZNmpSGhoZ61wIAAAAAgA/V2NiYtra2/PznP09Zlh/5fFEUmT59eubNm5cBA/xYIADw2/wbAgAAAAAAAABw0tGjR7N27dqTYwG7du2qd6XfMGTIkMyZM+fkUMCUKVMMBQAAAAAAcFYaN25cpk+fns2bN3/oc6NGjUpbW1vGjRtXo2YAwNnIcAAAAAAAAAAAnOd27tyZVatWZeXKlXn66afT29tb70onDRo0KLNmzTo5FHDttdemsbGx3rUAAAAAAKAq5s2blzfeeCP79+//rdcaGhoyc+bMzJkzx9fGAYCPZDgAAAAAAAAAAM4zlUolL774YlauXJnu7u689NJL9a50UmNjY2bNmpX58+dn3rx5mTZtWpqamupdCwAAAAAA+sWAAQPS2tqaZcuW/cbfX3jhhWlra8uYMWPq1AwAONsYDgAAAAAAAACA88CRI0fyzDPPpLu7O6tWrcqePXvqXemk4cOHZ/HixWlpacnChQszbNiwelcCAAAAAICaGT9+fKZOnZrnn38+jY2NmTt3bmbMmJGGhoZ6VwMAziKGAwAAAAAAAADgHPXee+9l5cqVWblyZdatW5fe3t56Vzpp0qRJaWlpSUtLiw8/AgAAAABw3rv++utz9OjRzJs3LyNHjqx3HQDgLGQ4AAAAAAAAAADOEZVKJc8999zJsYCtW7fWu9JJAwYMyNy5c0+OBVx66aX1rgQAAAAAAKfl/fffz65duzJ58uSqZTY1NeWWW26pWh4AcP4xHAAAAAAAAAAAZ7HDhw9nzZo1WblyZVatWpV9+/bVu9JJI0eOzOLFi9Pa2prrr78+F1xwQb0rAQAAAADAaatUKtm0aVM2bNiQsiwzZsyYjB49ut61AACSGA4AAAAAAAAAgLPOO++8k5UrV6a7uzvr16/PiRMn6l3ppMmTJ6elpSUtLS2ZNm1aGhoa6l0JAAAAAAA+sT179qSrqyu7d+8++Xfd3d35zGc+k6Io6tgMAOBfGQ4AAAAAAAAAgDNcpVLJli1bTo4FbNu2rd6VTmpqasr8+fPT0tKSxYsXZ/z48fWuBAAAAAAAVdPX15cNGzZk06ZNqVQqv/Hazp07s2XLlsyYMaNO7QAA/jeGAwAAAAAAAADgDPTBBx/kqaeeysqVK7N69ers37+/3pVOGj16dFpaWtLS0pIFCxZkyJAh9a4EAAAAAABVt3PnznR1dWXfvn2/95m1a9fmiiuuyIgRI2rYDADgtxkOAAAAAAAAAIAzxJtvvpmVK1dm5cqV2bBhQ/r6+upd6aSrr7765FjAtddem4aGhnpXAgAAAACAfnHixImsXbs2zz77bMqy/NBn+/r60t3dnY6OjhRFUaOGAAC/zXAAAAAAAAAAANRJWZZ5/vnn8+ijj2blypV5/fXX613ppObm5ixYsCCtra1ZvHhxxo0bV+9KAAAAAADQ79555510d3fnwIEDp/yed999Ny+88EKmTp3aj80AAD6c4QAAAAAAAAAAqLFjx46lq6srP/nJT7J58+Z61zlp7NixaWlpyeLFi7NgwYIMGjSo3pUAAAAAAKAment78/TTT+eFF144rfc//fTTufzyyzN06NAqNwMAODWGAwAAAAAAAACgBiqVSnp6etLZ2ZlHH300hw4dqnelJMnUqVOzePHitLa25uqrr05RFPWuBAAAAAAANfXmm29m5cqV+eCDD0474/jx4+nu7s6dd97pa+0AQF0YDgAAAAAAAACAfrR9+/Z0dnZmxYoVeffdd+tdJwMHDsz111+f1tbW3HjjjRk7dmy9KwEAAAAAQF0cO3YsTz75ZLZu3VqVvLfeeiu7du3KuHHjqpIHAPBxGA4AAAAAAAAAgCrbv39/fvnLX6azszPPPvtsvevkoosuSktLS1paWjJv3rwMHDiw3pUAAAAAAKCuXnvttaxatSpHjhypSt6IESPS2tpqNAAAqBvDAQAAAAAAAABQBb29vVm1alVWrFiRVatW5cSJE3XrUhRFpk2bltbW1ixevDiTJ09OURR16wMAAAAAAGeKI0eOZNWqVXnttdeqklcURWbMmJG5c+dmwAA/rgcA1I9/EwEAAAAAAACA01SWZbZs2ZIVK1bkl7/8ZQ4cOFC3LoMHD87ChQvT0tKSxYsXZ/To0XXrAgAAAAAAZ5qyLPPKK6/kySefzLFjx6qSOXr06LS1tWXs2LFVyQMA+CQMBwAAAAAAAADAx/T2229nxYoVWbFiRd5888269Rg/fnxaWlrS0tKSuXPnprm5uW5dAAAAAADgTPXBBx9k5cqVVfuafkNDQ2bPnp1Zs2alsbGxKpkAAJ+U4QAAAAAAAAAAOAUHDx7Mo48+ms7OzvT09NSlQ1EUmT59elpbW9PS0pJJkyalKIq6dAEAAAAAgDNdWZZ58cUXs2bNmhw/frwqmWPHjk1bW1tGjx5dlTwAgGoxHAAAAAAAAAAAv8eJEyfy1FNPpbOzM93d3ent7a15hyFDhmTRokVpaWnJokWLMmrUqJp3AAAAAACAs82BAwfS1dWVd999typ5jY2NmTdvXqZPn56GhoaqZAIAVJPhAAAAAAAAAAD4d8qyzAsvvJAVK1bkkUceyb59+2re4dJLL01ra2taWloye/bsNDU11bwDAAAAAACcjcqyzLPPPpu1a9fmxIkTVcm8+OKL09bWlhEjRlQlDwCgPxgOAAAAAAAAAIAkO3bsyEMPPZTOzs689tprNb/f3NycT3/60/nTP/3TTJkyJUVR1LwDAAAAAACczfbt25fu7u7s2LGjKnlNTU1ZsGBBpk6d6uv2AMAZz3AAAAAAAAAAAOetw4cP59e//nU6Ozuzbt26lGVZ8w6zZs1Ke3t7brnllgwbNqzm9wEAAAAA4GxXqVTS09OTjRs3pq+vryqZl112WVpaWnztHgA4axgOAAAAAAAAAOC8UqlU8vTTT2fFihX59a9/nWPHjtW8w4QJE7JkyZIsWbIkl156ac3vAwAAAADAuWL37t3p6urKnj17qpI3cODALFy4MFOmTElRFFXJBACoBcMBAAAAAAAAAJwXtm7dms7Ozjz88MPZvXt3ze8PHz48t956a9rb2zN9+nQfNgQAAAAAgE+gr68vGzZsSE9PT8qyrErmFVdckZaWlgwZMqQqeQAAtWQ4AAAAAAAAAIBz1u7du/Pwww9nxYoVefnll2t+f8CAAVm8eHGWLFmSxYsXp7m5ueYdAAAAAADgXLNjx450dXXl/fffr0re4MGDs2jRokyaNMnwLwBw1jIcAAAAAAAAAMA55ejRo3niiSfS2dmZp59+OpVKpeYdrrvuurS3t+e2227LiBEjan4fAAAAAADORWVZZs2aNXn22WdTlmVVMq+66qosWrQogwYNqkoeAEC9GA4AAAAAAAAA4KxXqVSyYcOGdHZ25rHHHsvhw4dr3mH8+PFZsmRJlixZkiuuuKLm9wEAAAAA4FxXFEVOnDhRldGACy64IIsXL/Y1fQDgnGE4AAAAAAAAAICz1muvvZYVK1ZkxYoV2bFjR83vX3DBBbnlllvS3t6eWbNmpaGhoeYdAAAAAADgfHL99ddn+/btOXTo0GlnXHPNNbn++uszcODAKjYDAKgvwwEAAAAAAAAAnFX27duXRx55JCtWrMjzzz9f8/sNDQ254YYb0t7enra2Nh8qBAAAAACAGmpubk5LS0sefvjhj/3eYcOGpbW1NZdeemk/NAMAqC/DAQAAAAAAAACc8Xp7e9Pd3Z0VK1Zk9erV6evrq3mHq6++Ou3t7bnjjjsyevTomt8HAAAAAAD+1eWXX57Jkydn69atp/R8URSZNm1a5s+fn6ampn5uBwBQH4YDAAAAAAAAADgjlWWZTZs2pbOzM7/61a/ywQcf1LzDuHHjcscdd6S9vT1XXnllze8DAAAAAAC/2w033JC33norR44c+dDnRo4cmdbW1lx88cU1agYAUB+GAwAAAAAAAAA4o7z55ptZsWJFOjs7884779T8/uDBg3PzzTenvb098+bNS0NDQ807AAAAAAAAH27QoEFZvHhxfvWrX/3O14uiyMyZMzN37tw0NjbWuB0AQO0ZDgAAAAAAAACg7g4cOJBf/epX6ezszObNm2t+vyiKLFiwIO3t7bnpppsyZMiQmncAAAAAAAA+nokTJ2bixIl57bXXfuPvx4wZk9bW1owdO7ZOzQAAas9wAAAAAAAAAAB1cfz48axevTorVqzIypUrc/z48Zp3mDRpUjo6OnLHHXdk3LhxNb8PAAAAAAB8MjfeeGPeeeedHDt2LA0NDZkzZ05mzpyZxsbGelcDAKgpwwEAAAAAAAAA1ExZlnnuueeyYsWKPPLII9m/f3/NO4wePTp33HFH2tvbM2XKlBRFUfMOAAAAAABAdQwZMiSLFi3Kc889l7a2towaNarelQAA6sJwAAAAAAAAAAD97p133slDDz2Uzs7ObN++veb3m5ubc9NNN6WjoyPXX3+93zIEAAAAAAB1sn///gwYMCAXXHBB1TKvuuqqXHXVVcaCAYDzmuEAAAAAAAAAAPrFBx98kMceeyydnZ3ZsGFDXTrMmTMnHR0dufnmmzN06NC6dAAAAAAAAJKyLLNly5asXbs2l1xySe64446q/aC/wQAAAMMBAAAAAAAAAFRRX19f1qxZk87OzjzxxBPp7e2teYcrrrgi7e3tueOOO3LJJZfU/D4AAAAAAPCb9u3bl66uruzcuTNJ8uabb+aVV17J5MmT69wMAODcYTgAAAAAAAAAgE+kLMu8/PLL6ezszMMPP5y9e/fWvMOIESNy++23p729PVOnTvWbhQAAAAAA4AzQ19eXnp6ebNy4MZVK5Tdee/LJJ3PZZZdl8ODBdWoHAHBuMRwAAAAAAAAAwGnZuXNnHn744Sxfvjzbtm2r+f2mpqa0tLSkvb09ixYtSlNTU807AAAAAAAAv9uuXbvS3d2dPXv2/M7Xjx07ltWrV+eWW26pcTMAgHOT4QAAAAAAAAAATtnhw4fz+OOPp7OzM2vXrk1ZljXvMGPGjLS3t+fWW2/N8OHDa34fAAAAAAD4/fr6+rJu3bps3rz5I7+PsG3btrz22muZOHFijdoBAJy7DAcAAAAAAAAA8KEqlUrWrl2bzs7O/PrXv87Ro0dr3uGSSy5JR0dH7rzzzkyYMKHm9wEAAAAAgI/23nvvpbu7O++///4pv2fVqlW55JJLMnDgwP4rBgBwHjAcAAAAAAAAAMDv9Oqrr6azszMPPfRQdu3aVfP7Q4cOzW233Zb29vbMmDEjRVHUvAMAAAAAAPDRjh8/nmeeeSbPP/98yrL8WO89cuRInnrqqdx00039Uw4A4DxhOAAAAAAAAACAk/bs2ZNHHnkky5cvz8svv1zz+42NjbnxxhvT3t6elpaWNDc317wDAAAAAABw6t5+++10d3fn4MGDp53x8ssv58orr8yECROq2AwA4PxiOAAAAAAAAADgPPf222+nq6srTzzxRHp6elKpVGreYerUqWlvb89tt92WUaNG1fw+AAAAAADw8Rw7dixr1qzJSy+9VJW8lStX5gtf+EIaGxurkgcAcL4xHAAAAAAAAABwninLMi+88EKeeOKJdHV15dVXX61Lj4suuihLlizJkiVLMnHixLp0AAAAAAAAPr433ngjq1atyqFDh6qSN3z48LS2thoNAAD4BAwHAAAAAAAAAJwHent7s379+nR1daW7uzs7d+6sS48hQ4bklltuyZIlSzJnzpw0NDTUpQcAAAAAAPDxHTlyJE8++WTVRomLosh1112XefPmpampqSqZAADnK8MBAAAAAAAAAOeogwcPZvXq1enq6srq1atz+PDhuvRoaGjIwoULs2TJktx0000ZNGhQXXoAAAAAAACnpyzLbNu2LatXr87Ro0erkjlq1Ki0trbmoosuqkoeAMD5znAAAAAAAAAAwDmkUqlkzZo1WbZsWZ544okcP368bl2mTJmS9vb23H777bnwwgvr1gMAAAAAADh9hw4dyqpVq/LGG29UJa8oisyaNStz5sxJY2NjVTIBADAcAAAAAAAAAHBOeP3117Ns2bKsWLEiu3btqluPCy+8MHfeeWeWLFmSyZMn160HAAAAAADwyZRlmZdffjlPPfVUent7q5I5ZsyYtLW1GRwGAOgHhgMAAAAAAAAAzlIHDx7Mr371qyxbtixbtmypW4+BAwfm5ptvTnt7exYsWJCGhoa6dQEAAAAAAD65gwcPpru7O2+//XZV8hobGzNnzpzMnDnT9xEAAPqJ4QAAAAAAAACAs0ilUsnatWvzi1/8Io8//njV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8nR+PxYwP8nPy7J8rBO7Ppmky3/lWVmW05NML4riH5McnOTYP/zfsUn2SLJrfv/PrP4Pr2zM7//5LU/yTJLHkjyY5O4k95dlWXbqfwAAAAAAeoQFCxbks5/9bB5++OFKc/v375+TTjop//AP/5AhQ4ZUmg0AAAAAAABJUhRFpk2blvXr12e33Xbr6joAAAD0QoYDYAvKsnw0yaNd3aOn+MNf+F/whz8AAAAAUIkXX3wxN910U372s59Vnv1//s//yYc+9KHsvvvulWcDAAAAAADQM61bty6zZs3K2LFjM3LkyMpyt99++2y//faV5QEAAMCfMhwAAAAAAEC31NTUlO9973v56le/mnXr1lWafdRRR+Wcc87JAQccUGkuAAAAAAAAPVdZlnnssccyZ86cbNy4McuXL89uu+2W+vr6rq4GAAAArTIcAAAAAABAtzNr1qx87nOfy9KlSyvNHTVqVM4555xMnjw5RVFUmg0AAAAAAEDP9fLLL2fGjBl56qmn/vi1devW5e677860adO6sBkAAABsHcMBAAAAAAB0G0uXLs3111+fmTNnVpo7fPjwnH766Xnb296W2traSrMBAAAAAADoucqyzMMPP5x77rknmzZt+ovnCxcuzJgxY7LXXnt1QTsAAADYeoYDAAAAAADocuvWrcvXvva1fPvb387mzZsryx0wYEBOPvnknHzyyRk0aFBluQAAAAAAAPR8q1atSmNjY5599tktnpsxY0ZOOOGE1NXVdVIzAAAA2HaGAwAAAAAA6DJlWebnP/95brrpprz44ouVZr/pTW/KmWeemZ133rnSXAAAAAAAAHq2sizzm9/8Jvfee+9WjVqvWbMmc+fOzeTJkzuhHQAAALSN4QAAAAAAALrEI488ks985jNZsGBBpbkHHHBALrzwwhxyyCGV5gIAAAAAANDzrVy5MtOnT8/zzz+/Te899NBDGTNmTHbbbbcOagYAAADtYzgAAAAAAIBOtXLlynzxi1/Mj3/845RlWVnusGHDcuaZZ+Ytb3lLampqKssFAAAAAACg52tpacn999+f+fPnp6WlZZvfL8sy06dPzzvf+c706+evYgAAAND9+LdVAAAAAAA6RXNzc26//fZ86Utfypo1ayrLrampyUknnZQPfvCDGTJkSGW5AAAAAAAA9A4vvPBCGhsbs2LFinblrFq1Kr/+9a9z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ebW1tTnqqKNy8MEHp6amppJMAAAAoHqGAwAAAAAAOlBLS0u+853v5Atf+EKampranTdo0KCcf/75edvb3paiKCpoCAAAAAAAQG/x2GOPZcaMGdm8eXMlebvttlumTZuW7bffvpI8AAAAoOMYDgAAAAAA6CBPP/10rrjiitx3332V5B155JG57LLLsscee1SSBwAAAAAAQO8ydOjQNDc3tzunrq4uEyZMyIEHHmjMGgAAAHoIwwEAAAAAABUryzI/+tGPcuONN2b9+vXtzuvfv3/OPvvsvOtd70pNTU0FDQEAAAAAAOiNdt111xx00EF58MEH25yx5557pqGhIUOGDKmwGQAAANDRDAcAAAAAAFRo+fLlufLKK3PPPfdUkjd+/PhcccUVGTlyZCV5AAAAAAAA9G5HH310lixZkjVr1mzTe/X19Zk4cWLGjh2boig6qB0AAADQUQwHAAAAAABUoCzL/PSnP81nP/vZrF27tt15/fr1y+mnn56TTz45tbW1FTQEAAAAAACgL6irq0tDQ0N++tOfbvU7I0eOzJQpUzJ48OAObAYAAAB0JMMBAAAAAADt9NJLL+Xqq6/O9OnTK8kbO3Zsrrjiiuy3336V5AEAAAAAANC37Lnnntl///3zyCOPbPHcwIEDM2nSpIwePTpFUXRSOwAAAKAjGA4AAAAAAGiHO++8M9dcc01WrVrV7qyampqccsop+cAHPpC6uroK2gEAAAAAANBXTZw4MU899VTWrl37V5/vu+++mTRpUgYMGNDJzQAAAICOYDgAAAAAAKANVq9enX/6p3/Kf/3Xf1WSt88+++TKK6/MgQceWEkeAAAAAAAAfVv//v0zderU/OIXv/izrw8ePDhTpkzJyJEju6gZAAAA0BEMBwAAAAAAbKOZM2fmqquuyooVK9qdVRRF3vOe9+RDH/pQ6uvrK2gHAAAAAAAAv7f33ntn3333zeOPP54k2X///XPMMcf4uRQAAAD0QoYDAAAAAAC20tq1a/O5z30ud9xxRyV5e+65Zy6//PIcfvjhleQBAAAAAADA/zZp0qSsXr06Rx99dPbcc8+urgMAAAB0EMMBAAAAAABbYd68ebniiivy3HPPVZL3zne+M+ecc04GDRpUSR4AAAAAAAA934YNG/Liiy9mr732qixzwIABedvb3paiKCrLBAAAALofwwEAAAAAAFuw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8cwzz6SxsTGrV6+uJG/QoEGZMmVK9tlnn0ryAAAAAHoawwEAAAAAwFYpyzLf/OY3c8stt7TrN76MGTMmN9xwQ/bYY48K2wEAAAAAANATNDU15Z577snDDz9cWea4ceMyceLE1NfXV5YJAAAA0NMYDgAAAAAAWtXU1JRPfepT+dnPftaunIaGhnzqU5/KoEGDKmoGAAAAAABAT7F06dLMmDEja9eurSRvyJAhmTp1avbaa69K8gAAAAB6MsMBAAAAAMAWrVixIhdccEF+85vftCvnfe97Xz784Q+npqamomYAAAAAAAD0BBs2bMicOXPy2GOPVZZ50EEHZcKECamrq6ssEwAAAKAnMxwAAAAAALyihQsX5vzzz8/y5cvbnFFXV5dPfvKTOf744ytsBgAAAAAAQE+wePHizJo1K+vXr68kb/vtt8+0adOy2267VZIHAAAA0FsYDgAAAAAA/qq77rorl156aTZs2NDmjOHDh+e6667LIYccUmEzAAAAAAAAurt169Zl1qxZeeKJJyrJK4oihxxySI488sj06+dj8AAAAAD/m++YAAAAAAB/pizLfO1rX8uXvvSlduWMHTs2119/vd/2AgAAAAAA0IeUZZnHHnssc+bMycaNGyvJHD58eKZNm5add965kjwAAACA3shwAAAAAADwRxs3bswVV1yRX/7yl+3KOe6443LFFVdk4MCBFTUDAAAAAACgu3v55ZczY8aMPPXUU5Xk1dTU5PDDD89hhx2W2traSjIBAAAAeivDAQAAAABAkuT555/PBRdckIceeqhdOaeeemr+8R//MTU1NRU1AwAAAAAAoDsryzIPP/xw7rnnnmzatKmSzJ133jnTpk3L8OHDK8kDAAAA6O0MBwAAAAAAeeKJJ/LhD384zz//fJsz+vfvn8svvzyvf/3rK2wGAAAAAABAd7d27drcfffd2bx5c7uzamtrc9RRR+Xggw82VA0AAACwDQwHAAAAAEAft2TJkpx++ulZsWJFmzN22mmnXH/99TnwwAMrbAYAAAAAAEBPsN122+Xoo4/OnDlz2pWz2267Zdq0adl+++0ragYAAADQdxgOAAAAAIA+bOnSpTnttNPaNRpw4IEH5rrrrssuu+xSYTMAAAAAAAB6kvHjx2fx4sVZvnz5Nr9bV1eXCRMm5MADD0xRFB3QDgAAAKD3q+nqAgAAAABA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6JOWL1+eM888M0888USbM0444YR89KMfTU1NTYXNAAAAAAAA2Fbr1q3LrFmz2vWznz9VFEUOOeSQHHnkkenXz0euAQAAAOj+fBcLAAAAgD5n8eLFOfPMM/P888+3OeO0007LqaeemqIoKmwGAAAAAADAtijLMo899ljmzJmTjRs3VpK54447pqGhITvvvHMleQAAAADQGQwHAAAAANCnLFiwIOeee25Wr17dpvdramrysY99LO94xzsqbgYAAAAAAMC2amxszMKFCyvJqqmpyeGHH57DDjsstbW1lWQCAAAAQGcxHAAAAABAnzFz5sxcdNFFbf5tM/3798+nPvWpHHfccRU3AwAAAAAAoC1GjhxZyXDAzjvvnGnTpmX48OEVtAIAAACAzmc4AAAAAIA+4T//8z9z5ZVXpqWlpU3vDx48ODfccEOOOOKIipsBAAAAAADQVvvss0/GjBmTRYsWten92traHHXUUTn44INTU1NTcTsAAAAA6DyGAwAAAADo1cqyzG233ZabbrqpzRk77rhjbr755owdO7bCZgAAAAAAAFRh0qRJWbZsWTZs2LBN7+2+++5paGjI9ttv30HNAAAAAKDzGA4AAAAAoNdqaWnJjTfemO985zttzhgxYkRuvfXW7LHHHhU2AwAAAAAAoCoDBw7MpEmTctddd23V+bq6uhxzzDE54IADUhRFB7cDAAAAgM5hOAAAAACAXmnTpk254oor8otf/KLNGQcccEA+//nPZ/jw4RU2AwAAAAAAoGpjxozJokWLsmTJki2e22uvvTJ16tQMGTKkk5oBAAAAQOcwHAAAAABAr7Nu3bpcdNFFmTNnTpszjjnmmHz2s5/NoEGDKmwGAAAAAABARyiKIlOmTMmzzz6bpqamv3heX1+fY489Nvvtt1+KouiChgAAAADQsWq6ugAAAAAAVGnlypU5/fTT2zUa8IY3vCE33nij0QAAAAAAAIAeZPDgwZk4ceJffH2fffbJiSeemLFjxxoNAAAAAKDX6tfVBQAAAACgKs8880zOPPPMLF26tM0ZJ510Us4///zU1NjcBAAAAAAA6GnGjRuXRYsWZdmyZRk4cGAmT56cUaNGGQwAAAAAoNczHAAAAABAr/DYY4/lrLPOyosvvtjmjDPPPDPve9/7fHAMAAAAAACghyqKIg0NDZk/f36OOeaYDBgwoKsrAQAA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xx13rCQPAAAAANh2NV1dAAAAAIDe6/HHH8/JJ5/c7tGA97znPbnpppuMBgAAAAAAAFSkKIo0NDSkX7+2/x6y2traTJgwIX/zN39jNAAAAAAAuljbv9MHAAAAAFvw3//937n00kuzfv36Nmf0798/H//4x/PmN7+5wmYAAAAAAAAkydChQ3P00Udnzpw52/zurrvummnTpmWHHXaovhgAAAAAsM0MBwAAAABQqZaWlnz1q1/Nl7/85Xbl7LTTTrnuuusyfvz4ipoBAAAAAADwv40fPz6LFy/O8uXLt+p8v379MmHChBx00EEpiqKD2wEAAAAAW6umqwsAAAAA0HusW7cuH/vYx9o9GjB+/PjcdtttRgMAAAAAAAA6WFEUaWhoSG1tbatn99xzz5x44okZP3680QAAAAAA6Gb6dXUBAAAAAHqHZcuW5fzzz8+iRYvalfPmN785H//4x9O/f/+KmgEAAAAAALAlw4YNyxFHHJF58+b91ef9+/fPxIkTM27cOIMBAAAAANBNGQ4AAAAAoN3mzZuXiy66KKtXr25zRk1NTc4999y8+93v9oEzAAAAAADg/2fvzsPsLuuzgd/PTBJCIIGwhH0L+74TIGSitdWWt2pRtNX2xdq6sFiqKEsRBBQRAcWiAtbltdpaFS2KdbfUTCDsS9gFZAn7EgIhC9nmef8IqRFDZs7knFk/n+s6V+D8nu/3d58IvUrmnPvQx/bee+888MADmT179u89v8022+Swww7LOuus00/JAAAAAICeUBwAAAAAQK/VWvPd7343n/nMZ9LV1dXrPePGjcunPvWpTJo0qYnpAAAAAAAA6Km2trZMnTo1l19+eWqtGT16dA499NBsv/32Sp8BAAAAYBBQHAAAAABAryxevDjnnnturrjiijXaM3HixHzmM5/JVltt1aRkAAAAAAAA9MZGG22UffbZJ3Pnzs2hhx6atddeu78jAQAAAAA9pDgAAAAAgIbNnj07J554Ym677bY12jN16tR84hOfyJgxY5qUDAAAAAAAYPh44oknstFGG2XkyJFN23nAAQeklNK0fQAAAABA31AcAAAAAEBD7rrrrnzkIx/J008/vUZ73vOe9+R973tf2trampQMAAAAAABgeFi8eHGuu+663H333dlzzz1zyCGHNG230gAAAAAAGJwUBwAAAADQYz/5yU9y9tlnZ/Hixb3eMXr06Jx11ll53ete18RkAAAAAAAAw8OsWbMyffr0zJ8/P0lyxx13ZOLEidlkk036ORkAAAAA0J8UBwAAAADQra6urnz+85/PN7/5zTXas9lmm+Uzn/lMdtpppyYlAwAAAAAAGB4WLVqUGTNm5L777vu952ut6ezszFve8pa0t7f3UzoAAAAAoL8pDgAAAABgtebOnZvTTjstM2bMWKM9+++/f84999yMHz++SckAAAAAAACGhwcffDBXXXVVFi5cuMrrc+bMyc0335wDDzywj5MBAAAAAAOF4gAAAAAAXtVDDz2UE044IbNmzVqjPW9/+9tzwgknZMQIfxwFAAAAAADQUwsWLMjVV1+dBx98sNuzt956a7bbbrtstNFGfZAMAAAAABhovFMbAAAAgFWaPn16TjvttMyfP7/XO0aMGJGTTz45RxxxRBOTAQAAAAAADG211tx333255pprsmjRoh7PTJs2LUcccUTa2tpanBAAAAAAGGgUBwAAAADwe2qt+frXv56LL744tdZe79lggw1y3nnnZZ999mleOAAAAAAAgCFu3rx5mT59eh555JGGZ2fPnp2ZM2dm3333bUEyAAAAAGAgUxwAAAAAwP966aWX8vGPfzy/+MUv1mjPLrvskgsuuCCbbrppk5IBAAAAAAAMbbXW3HPPPbn22muzZMmSXu+5+eabs+2222b8+PFNTAcAAAAADHRt/R0AAAAAgIHhySefzN///d+vcWnAG97whnzlK19RGgAAAAAAANBDc+fOzX/9139l+vTpa1QakCTLli3L1Vdf3aRkAAAAAMBgMaK/AwAAAADQ/2655ZacdNJJmTNnTq93lFLygQ98IEcddVRKKU1MBwAAAAAAMDTVWnP77bfnxhtvzNKlS5uyc9NNN82UKVOasgsAAAAAGDwUBwAAAAAMc//5n/+ZT3/601m2bFmvd6yzzjo555xzMnny5CYmAwAAAAAAGLrmzJmTadOm5emnn27KvpEjR+aggw7KbrvtpuQZAAAAAIYhxQEAAAAAw1RXV1cuvPDC/Md//Mca7dl6663z2c9+Nttuu21zggEAAAAAAAxhXV1dufXWW3PLLbesUbHzyrbYYot0dHRk7NixTdkHAAAAAAw+igMAAAAAhqFaay644IJ897vfXaM9hx56aD75yU96ExoAAAAAAEAPPPvss5k2bVpmz57dlH1rrbVWDj744Oy0004ppTRlJwAAAAAwOCkOAAAAABhmaq256KKL1rg04KijjsoHPvCBtLW1NSkZAAAAAADA0LRs2bLcdNNNmTlzZmqtTdm5zTbb5LDDDss666zTlH0AAAAAwOCmOAAAAABgmPnSl76Ub37zm72eHzVqVE4//fT82Z/9WRNTAQAAAAAADE1PPfVUpk2blueff74p+0aPHp3Jkydn4sSJKaU0ZScAAAAAMPgpDgAAAAAYRr72ta/lK1/5Sq/nJ0yYkAsuuCC77bZbE1MBAAAAAAAMPUuWLMkNN9yQO++8M7XWpuzcfvvtc+ihh2bttdduyj4AAAAAYOhQHAAAAAAwTHzrW9/KxRdf3Ov5vfbaK+eff3423HDDJqYCAAAAAAAYeh577LF0dnbmxRdfbMq+ddZZJ4cddli22WabpuwDAAAAAIYexQEAAAAAw8D3vve9fPazn+31/Jvf/OacfPLJGTVqVBNTAQAAAAAADC2LFy/Otddem3vuuadpO3fZZZdMmjQpa621VtN2AgAAAABDj+IAAAAAgCHuiiuuyLnnntur2ba2tnzkIx/J2972tpRSmpwMAAAAAABg6Hj44Ydz1VVXZf78+U3ZN3bs2HR0dGSLLbZoyj4AAAAAYGhTHAAAAAAwhP3sZz/LJz7xiV7Njh07Nueff34OOOCAJqcCAAAAAAAYOl566aXMmDEj999/f1P2lVKy++6758ADD8zIkSObshMAAAAAGPoUBwAAAAAMUVdeeWU+9rGPpdba8OyYMWPyxS9+MbvttlsLkgEAAAAAAAx+tdY88MADmTFjRhYuXNiUneuvv346Ojqy6aabNmUfAAAAADB8KA4AAAAAGIKuuuqqnHrqqenq6mp4du21187nP/95pQEAAAAAAACvYsGCBbnqqqvy0EMPNWVfKSV777139t9//7S3tzdlJwAAAAAwvCgOAAAAABhirrvuupx00klZunRpw7OjRo3KhRdemL333rsFyQAAAAAAAIaG+fPn5+GHH27Krg033DAdHR3ZeOONm7IPAAAAABieFAcAAAAADCE333xzTjjhhCxevLjh2ZEjR+aCCy7IAQcc0IJkAAAAAAAAQ8fGG2+cvffeO7feemuvd7S1tWW//fbL3nvvnfb29uaFAwAAAACGJcUBAAAAAEPEbbfdlg9+8INZtGhRw7Pt7e0599xzc+ihh7YgGQAAAAAAwNCz//7756GHHsrzzz/f8OyECRMyderUjB8/vvnBAAAAAIBhqa2/AwAAAACw5u6+++4cf/zxWbBgQcOzbW1t+eQnP5mpU6e2IBkAAAAAAMDQ1N7eno6OjpRSGpo5+OCD8+Y3v1lpAAAAAADQVCP6OwAAAAAAa+a+++7Lcccdl3nz5jU8W0rJmWeemT/+4z9uQTIAAAAAAIChbdNNN81uu+2WO++8s9uzm222WTo6OrLeeuv1QTIAAAAAYLhRHAAAAAAwiD300EM59thjM3fu3F7Nn3rqqTn88MObnAoAAAAAAGD4OOiggzJr1qy8+OKLq7w+cuTITJo0KbvuumtKKX2cDgAAAAAYLtr6OwAAAAAAvfPII4/k6KOPzpw5c3o1f9JJJ+WII45ocioAAAAAAIDhZeTIkeno6Fjlta222ipve9vbsttuuykNAAAAAABaakR/BwAAAACgcU888USOOeaYPPvss72aP/744/P2t7+9yakAAAAAAACGpy222CI777xzfvOb3yRJ1lprrRxyyCHZcccdFQYAAAAAAH1CcQAAAADAIPP000/n6KOPzpNPPtmr+aOPPjpHHXVUk1MBAAAAAAAMbwcffHAeffTRTJgwIZMnT86YMWP6OxIAAAAAMIwoDgAAAAAYRJ577rkcc8wxeeyxx3o1/+53vzt///d/3+RUAAAAAAAAg8+CBQua+uH+tdZaK0cccYTCAAAAAACgX7T1dwAAAAAAeub555/PMccck4cffrhX8+985ztz7LHHppTS5GQAAAAAAACDx5IlS3L11Vfn29/+dp5//vmm7lYaAAAAAAD0F8UBAAAAAIPAiy++mOOOOy6//e1vezX/1re+NR/60IeUBgAAAAAAAMPao48+mu9973u58847s3Tp0nR2dqbW2t+xAAAAAADW2Ij+DgAAAADA6i1YsCDHH398fvOb3/Rq/o1vfGNOPvlkpQEAAAAAAMCwtWjRolx77bV/8POWJ598MnfddVd23333fkoGAAAAANAcigMAAAAABrCFCxfmH//xH3P77bf3av4Nb3hDTj/99LS1tTU5GQAAAAAAwODw0EMP5aqrrsqCBQtWef3666/P1ltvnbFjx/ZxMgAAAACA5vGOcQAAAIABavHixfnwhz+cW265pVfzr33ta3PWWWcpDQAAAAAAAIalhQsX5r//+7/zi1/84lVLA5JkyZIl6ezsTK21D9MBAAAAADTXiP4OAAAAAMAfWrJkSU466aRcf/31vZo/7LDDcs4552TECH/8AwAAAAAADC+11jzwwAO5+uqr89JLL/Vo5rHHHsu9996bnXfeucXpAAAAAABawzvHAQAAAAaYZcuW5aMf/WiuuuqqXs0fdNBBOe+88zJy5MgmJwMAAAAAABjY5s+fn6uuuioPP/xww7PXXHNNttxyy6yzzjotSAYAAAAA0Fpt/R0AAAAAgN/p6urKxz72sVx55ZW9mt93333zmc98JqNGjWpyMgAAAAAAgIGr1pp77rknl112Wa9KA5Jk8eLFueqqq1JrbXI6AAAAAIDWG9HfAQAAAABYrqurK5/4xCfy85//vFfze+65Z/75n/85a6+9dpOTAQAAAAAADFwvvvhiOjs789hjj63xrocffjgPPPBAtt9++yYkAwAAAADoO4oDAAAAAAaAWmvOO++8/OhHP+rV/C677JKLLrooY8aMaXIyAAAAAACAganWmjvvvDM33HBDlixZ0pSdm2yySTbYYIOm7AIAAAAA6EuKAwAAAAD6Wa01F154Yb73ve/1an777bfPF7/4xYwdO7bJyQAAAAAAAAam559/Pp2dnXnyySebsm/EiBE58MADs8cee6SU0pSdAAAAAAB9SXEAAAAAQD+qtebiiy/Ot771rV7Nb7PNNrnkkkuy3nrrNTkZAAAAAADAwNPV1ZXbbrstN910U5YtW9aUnZtvvnk6Ojoybty4puwDAAAAAOgPigMAAAAA+tFXv/rV/L//9/96NbvFFlvkkksuyQYbbNDkVAAAAAAAAAPP7Nmz09nZmWeeeaYp+0aNGpVJkyZll112SSmlKTsBAAAAAPqL4gAAAACAfvKNb3wjl156aa9mN91001x66aWZMGFCk1MBAAAAAAAMLMuWLcstt9ySW2+9NV1dXU3ZufXWW2fKlClZZ511mrIPAAAAAKC/KQ4AAAAA6Aff+c53ctFFF/VqdqONNsoll1ySzTbbrMmpAAAAAAAABpann34606ZNy5w5c5qyb6211sqhhx6aHXbYIaWUpuwEAAAAABgIFAcAAAAA9LHLL788559/fq9mN9hgg1x66aXZaqutmpwKAAAAAABg4Fi6dGluvPHG3H777am1NmXnxIkTM3ny5Ky99tpN2QcAAAAAMJAoDgAAAADoQz/5yU9yzjnn9Gp23Lhxufjii7Pttts2NxQAAAAAAMAA8sQTT6SzszMvvPBCU/aNGTMmkydPznbbbdeUfQAAAAAAA5HiAAAAAIA+8qtf/Spnnnlmr74VZ911180Xv/jF7LDDDi1IBgAAAAAA0P+WLFmS6667LnfddVfTdu6000455JBDstZaazVtJwAAAADAQKQ4AAAAAKAPTJs2LR/96EfT1dXV8OyYMWNy0UUXZdddd21BMgAAAAAAgP73yCOPZPr06Zk3b15T9q277rqZMmVKttpqq6bsAwAAAAAY6BQHAAAAALTYNddck1NOOSXLli1reHattdbK5z73uey1114tSAYAAAAAANC/Fi1alGuuuSb33ntv03butttumTRpUkaOHNm0nQAAAAAAA53iAAAAAIAWuvHGG/PhD384S5YsaXh21KhR+exnP5v99tuvBckAAAAAAAD614MPPpirr746CxYsaMq+9dZbLx0dHdlss82asg8AAAAAYDBRHAAAAADQIjNnzswHP/jBLF68uOHZESNG5NOf/nQmTZrUgmQAAAAAAAD9Z+HChbn66qvzwAMPNGVfKSV77rlnDjjggIwY4a2xAAAAAMDw5E9HAQAAAFrgrrvuyj/8wz/kpZdeani2ra0t55xzTqZMmdKCZAAAAAAAAP3r5ptvblppwPjx4zN16tRMmDChKfsAAAAAAAYrxQEAAAAATXbvvffmAx/4QBYsWNDwbCklH//4x/NHf/RHLUgGAAAAAADQ/w444IA8+OCDvfpZygptbW3ZZ599su+++6a9vb2J6QAAAAAABqe2/g4AAAAAMJQ88MADOfbYYzN37txezZ9++un50z/90yanAgAAAAAAGDjWWmutHHbYYb2e33jjjXPEEUfkgAMOUBoAAAAAAPCyEf0dAAAAAGComDVrVo455pg8//zzvZo/5ZRT8qY3vam5oQAAAAAAAAagbbfdNhMnTswDDzzQ45n29vbsv//+2WuvvdLW5ruzAAAAAABWpjgAAAAAoAkef/zxHH300Zk9e3av5k844YQceeSRTU4FAAAAAAAwcE2ePDmPP/54XnrppW7PbrLJJpk6dWrWX3/91gcDAAAAABiE1K0CAAAArKGnnnoqRx99dJ5++ulezR977LF55zvf2eRUAAAAAAAAA9vaa6+dQw89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LVrU8Gx7e3vOPffcHHrooS1IBgAAAAAA0DuLFy/Otddem3vuuadpO3fddddMmjQpo0aNatpOAAAAAABaT3EAAAAAMOTdc889+Yd/+IcsWLCg4dm2tracffbZmTp1aguSAQAAAAAA9M7DDz+cq666KvPnz2/KvrFjx6ajoyNbbLFFU/YBAAAAANC3FAcAAAAAQ9r999+f4447LvPmzWt4tpSSM888M3/yJ3/SgmQAAAAAAACNe+mllzJjxozcf//9TdlXSsnuu++eAw88MCNHjmzKTgAAAAAA+p7iAAAAAGDIeuihh3LsscfmhRde6NX8qaeemsMPP7zJqQAAAAAAAHqnq6srP/jBDzJ37tym7Ft//fUzderUbLLJJk3ZBwAAAABA/2nr7wAAAAAArfDoo4/mmGOOyXPPPder+RNPPDFHHHFEk1MBAAAAAAD0XltbW/bee+813lNKyb777pu3vvWtSgMAAAAAAIaIEf0dAAAAAKDZnnzyyRx99NF55plnejV//PHH5y//8i+bnAoAAAAAAGDN7bLLLvntb3+bxx9/vFfzG264YaZOnZqNNtqoyckAAAAAAOhPbf0dAAAAAKCZnnvuuRx99NF58sknezX//ve/P0cddVSTUwEAAAAAADRHKSUdHR0ZMaKx745qb2/PgQcemCOOOEJpAAAAAADAEKQ4AAAAABgyaq0566yz8uijj/Zq/m//9m/znve8p8mpAAAAAAAAmmvcuHE58MADe3x+woQJectb3pJ99903bW3eOgoAAAAAMBQ1VjcLAAAAMID95Cc/ydVXX92r2Xe84x057rjjUkppcioAAAAAAIDm22OPPfLAAw/kqaeeetUzI0aMyIEHHpg99tjDz0AAAAAAAIY4tbEAAADAkPDII4/k05/+dK9m3/rWt+aEE07whjkAAAAAAGDQKKWko6Mj7e3tq7y+2Wab5cgjj8yee+7pZyAAAAAAAMPAiP4OAAAAALCmFi9enFNPPTULFixoePaNb3xjTj75ZG+YAwAAAAAABp3x48dnv/32yw033PC/z40cOTIHH3xwdtllFz//AAAAAAAYRhQHAAAAAIPeF77whdx9990Nz73+9a/P6aefnra2thakAgAAAAAAaL299947DzzwQGbPnp2tttoqU6ZMybrrrtvfsQAAAAAA6GOKAwAAAIBBbfr06fnWt77V8Nxr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+Zsk07PqAoBGrGp+RYlAe5L/k+RHSR4spXy0lLLpGr0IAAAAaNCNN96YG2+8seG5j370o9l3331bkAgAAAAAABguNt544+y9994Nz7W1tWW//fbLW97ylkyYMKEFyQAAAAAAYM0oDhgAaq2La63fqrVOTbJbkouSPJ/flQCsXADQUyWrLhFY8dzWST6e5OFSymWllD9pwksBAACA1aq15pJLLml47qijjsob3/jGFiQCAAAAAACGm/333z/rr79+j89vvPHGOeKII3LAAQekvb29dcEAAAAAAGANKA4YYGqt99RaP5hkiyTvTnJNVl0A0IhVza8oERiZ5C1JflZKua+U8pFSyoZr9CIAAADgVVxzzTWZOXNmQzMdHR35wAc+0KJEAAAAAADAcNPe3p6Ojo6UUro9N2nSpLz5zW/Ohht6Wx0AAAAAAAOb4oABqtb6Uq31X2utk5PsleSSJC/mdyUAKxcA9FTJqksEVjy3fZJPJ3m0lPLvpZSOZrwWAAAASJJZs2bljDPOaGhmxx13zNlnn522Nn+EAQAAAAAANM+mm26a3Xbb7VWvb7LJJnnrW9+avffe288pAAAAAAAYFPxp9iBQa72j1npcks2TvDfJjVl1AUAjVjW/okRgrSR/leR/Sil3llKOL6Wst2avAgAAgOFszpw5Oe644zJnzpyG5s4888yMGTOmRakAAAAAAIDh7KCDDsrYsWN/77mRI0dm8uTJedOb3pT111+/f4IBAAAAAEAvKA4YRGqtC2qtX621HpRk/yRfTjI/vysBWLkAoKdKVl0isOK5XZNcmOTxUsrXSimTmvFaAAAAGD6WLVuWj370o3niiScamvujP/qj7Lzzzi1KBQAAAAAADHcjR45MR0fH//79FltskSOPPDK77757SimrmQQAAAAAgIFHccAgVWu9pdb6/iSbJzk2ya1ZdQFAI15tviRZO8m7kswopdxSSnl/KWXd3r8CAAAAhotLLrkk119/fUMzpZQcffTRLUoEAAAAAACw3BZbbJE999wzU6dOzeGHH56xY8f2dyQAAAAAAOgVxQGDXK11Xq310lrrfkkOTvL1JAvzhwUAjZQIlJUeK8+veG7vJBcneayUckkpZZ81fyUAAAAMRf/zP/+Tr3/96w3Pvf71r8/EiRObHwgAAAAAABi0li1bljvuuCNdXV1N3XvIIYdk5513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Ix9pUSIAAAAAABgYli1blhtvvDGXX355nnrqqUybNi1dXV39HQsAAAAAAGDIGtHfAdZEKeXKXozVWuvr+uA+Q03Dv28AAABD2X333ZcvfelLDc+ddtppvgEJAAAAAIAh7emnn860adMyZ86c/33umWeeye2335699967H5MBAAAAAAAMXYO6OCDJa5LUBs6XBs/39j5DTW9/3wAAAIakJUuW5IwzzsjSpUsbmnvLW96SQw89tEWpAAAAAACgfy1dujQ33nhjbr/99tT6h283uvHGG7PttttmvfXW64d0AAAAAAAAQ1tbfwdoktKDR1/dZ6g9AAAAeIWvfvWruffeexua2XzzzfPBD36wNYEAAAAAAKCfPfHEE/n+97+f2267bZWlAUmybNmyTJs27VWvAwAAAAAA0Hsj+jtAk/TVT5L8xAoAAGCYu+uuu/K1r32t4bkzzzwzY8aMaUEiAAAAAADoP0uWLMl1112Xu+66q0fnn3zyydx1113ZfffdW5wMAAAAAABgeBkqxQGlB2ea8aH/ntxnqFGWAAAA8LLFixfnjDPOSFdXV0Nz73jHO7Lffvu1KBUAAAAAAPSPRx55JNOnT8+8efMamrv++uuz9dZbZ+zYsS1KBgAAAAAAMPy09XcAAAAAGCwuueSSPPjggw3NbL311jnuuONalAgAAAAAAPreokWL8utf/zo//elPGy4NSJIlS5aks7MztfpOEwAAAAAAgGYZ0d8BAAAAYDC49dZb82//9m8NzbS1teWss87K6NGjW5QKAAAAAAD61oMPPpirrroqCxcuXKM9jz32WO69997svPPOTUoGAAAAAAAwvCkOAAAAgG4sWLAgZ5xxRsPffPSud70re+65Z4tSAQAAAABA31m4cGGuvvrqPPDAA03ZV0rJvHnzmrILAAAAAAAAxQEAAADQrc9//vN57LHHGprZYYcd8t73vrdFiQAAAAAAoG/UWnP//fdnxowZWbRoUVN2jh8/Pq95zWuy8cYbN2UfAAAAAAAAQ6c4oLGvfBz49wEAAGCAuP7663PZZZc1NNPe3p6zzjoro0aNalEqAAAAAABovfnz52f69OmZNWtWU/a1tbVln332yb777pv29vam7AQAAAAAAGC5oVAcUIbYfQAAABgg5s2bl7POOqvhufe+973ZeeedW5AIAAAAAABar9aae+65J9ddd10W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mQQAAOjhnnvuuXz84x+vee6DH/xghg4dWkEiAAAAAICeoSzL3HfffZk9e3bWr19fl5177LFHmpubs9dee9VlHwAAAAAAAEBHKA4AAADo4a6++uosXbq0pplTTz01r3jFK6oJBAAAAADQA6xZsyYzZszIkiVL6rKvoaEhxx57bI455pg0NjbWZScAAAAAAABARykOAAAA6MHmzZuX73znOzXNDBs2LB/4wAcqSgQAAAAA0L2VZZl77rknt956azZu3FiXnXvttVemTZuWkSNH1mUfAAAAAAAAQK0UB5AkxTaeL7fxNQAA0A2sX78+V1xxRc1z73//+314FQAAAADok1atWpXp06fniSeeqMu+xsbGTJo0KUceeWQaGhrqshMAAAAAAABgZygOIEn6deBMfSr2AQCAuvniF7+YRx55pKaZk08+OX/2Z39WUSIAAAAAgO6pLMssXLgwc+fOzaZNm+qyc999901zc3OGDx9el30AAAAAAAAAu0JxAEkytANnNlSeAgAA6LB77rkn//Vf/1XTzODBg/NP//RPKYqiolQAAAAAAN3PypUr09LSkqeeeqou+/r165cTTjghEyZM8O+tAAAAAAAAQLehOIAk2asDZ9ZWngIAAOiQTZs25YorrkhbW1tNcxdeeGH23XffilIBAAAAAHQvbW1tmT9/fu64446a/z11W172spdl6tSpGTq0I7+jAQAAAAAAAKDzKA4gScZu57X2avzlnREEAADYsa9+9atZvHhxTTNHH310zjrrrIoSAQAAAAB0L08//XRaWlqyfHl9Pu4wYMCAnHTSSTnkkENSFMWOBwAAAAAAAAA6meIAkuSYHbxeJnm6E3IAAAA78PDDD+c///M/a5rp379/Lr300jQ0NFSUCgAAAACge2htbc3tt9+eO++8M2VZ1mXngQcemClTpmTw4MF12QcAAAAAAABQBcUBfVxRFP2TnJzN5QDb81gnxAEAALajra0tl19+eTZu3FjT3AUXXJADDjigolQAAAAAAN3HrbfemrvuuqsuuwYNGpRTTjklY8eOTVEUddkJAAAAAAAAUBXFAZyeZLdsLg7Y3rvc93dKGgAAYJu++93vZsGCBTXNvPzlL89f/uVfVpQIAAAAAKB7OeaYY3Lfffdl/fr1u7Tn4IMPzsknn5yBAwfWKRkAAAAAAABAtRq6OgBdpyiK/kku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Qy699NL069evokQAAAAAADtn3bp1ufnmm/PAAw/UZV9RFDniiCNy/PHHp6nJR1sAAAAAAAAAOsK7q7UpujoAAADQ882dOzczZ86saeacc87J4YcfXlEiAAAAAIDalWWZBx54IDfffHOef/75uuwcMWJEmpubs/fee9dlHwAAAAAAAEBfoTigY6YnKbs6BAAA0PO1tbXlqquuqmlmv/32yzvf+c5qAgEAAAAA7ITnnnsuM2bMyCOPPFKXfQ0NDTn66KMzceLENDY21mUnAAAAAAAAQF+iOKADyrJ8RVdnAAAAeoef/exnuffee2ua+chHPpKBAwdWlAgAAAAAoOPKssxvf/vb3HLLLdmwYUNddu65556ZNm1a9thjj7rsAwAAAAAAAOiLFAcAAAB0kg0bNuSaa66paeaEE07IpEmTKkoEAAAAANBxzz77bKZPn57HHnusLvsaGxszceLEHH300WloaKjLTgAAAAAAAIC+SnEAAABAJ/nmN7+ZJ598sqaZCy64oKI0AAAAAAAdU5Zl7r777syZMyebNm2qy8699947zc3NGTFiRF32AQAAAAAAAPR1igMAAAA6wapVq/KVr3ylppn/83/+T4455phqAgEAAAAAdMAzzzyTlpaWLF26tC77mpqacvzxx+eII45IURR12QkAAAAAAACA4gAAAIBO8aUvfSlr1qzp8PnGxsb83d/9XYWJAAAAAAC2ra2tLQsWLMjtt9+e1tbWuuwcPXp0mpubM2zYsLrsAwAAAAAAAOAPFAcAAABU7NFHH813vvOdmmbOPPPMjBkzpqJEAAAAAADbtnz58rS0tOTpp5+uy77+/ftn8uTJOfTQQ1MURV12AgAAAAAAAPBiigMAAAAqdvXVV2fTpk0dPj948OC84x3vqDARAAAAAMAfa21tzbx58zJ//vy0tbXVZeeYMWMyderUDBkypC77AAAAAAAAANg6xQEAAAAVWrBgQX75y1/WNPM3f/M3GTFiREWJAAAAAAD+WFmW+eEPf5hly5bVZd/AgQNz0kkn5eCDD05RFHXZCQAAAAAAAMC2KQ4AAACoSFmWueqqq2qaGTVqVM4555xqAgEAAAAAbENRFBk3blxdigPGjRuXU045JYMGDapDMgAAAAAAAAA6QnEAAABARf73f/83CxYsqGnm3e9+dwYMGFBRIgAAAACAbTvyyCPz4IMP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AAAAAAAAbE3XQAcAAICmvPzyy/npT3/a8vyUKVNy8sknNxcIAAAABrFaa5YsWZIrr7xyi6UBSbJu3brMmzcvtdYOpwMAAAAAAAAAAKA3Iwc6AAAANOX73/9+1q1b1/L87Nmz09WlWwsAAIAdz4oVK7JgwYIsXbq0z9mnn346999/f4444ogOJAMAAAAAAAAAAKAVigMAABiWaq2ZM2dOy/NdXV256KKLmgsEAAAAg1CtNQ8++GAWLVqUNWvWtHxu8eLF2X///TNhwoQG0wEAAAAAAAAAANAqv04VAIBh6a677sqjjz7a8vyZZ56Zvfbaq8FEAAAAMLgsX7483//+9zN37tx+lQYkydq1azN//vzUWhtKBwAAAAAAAAAAQH+MHOgAAADQhDlz5vRrfvbs2Y3kAAAAgMGm1pp77rknt9xyS9auXbvNex5//PE8/PDDOeSQQ9qYDgAAAAAAAAAAgG2hOAAAgGFnxYoV+dGPftTy/O67754zzzyzwUQAAAAwOLzyyiuZN29enn322bbsu+WWW3LQQQelq6urLfsAAAAAAAAAAADYNooDAAAYdq677rq8/vrrLc+/+93vzsiR/tEYAACA4au7uzs///nPc+utt2b9+vVt2TllypTMnDlTaQAAAAAAAAAAAMAg4OkoAACGnTlz5vRr/j3veU8zQQAAAGAQePHFFzNv3ry88MILbdk3atSonH766Tn88MNTSmnLTgAAAAAAAAAAALaP4gAAAIaVBx98MPfee2/L8yeeeGL233//BhMBAADAwFi/fn1uv/323HHHHenu7m7Lzv322y8zZszIxIkT27IPAAAAAAAAAACA9lAcAADAsHL11Vf3a3727NnNBAEAAIAB9Pzzz2fu3Ll5+eWX27JvzJgxmT59eg4++OCUUtqyEwAAAAAAAAAAgPZRHAAAwLCxevXqfP/73295fuLEifmVX/mVBhMBAABAZ61bty4/+9nPctddd6XW2pad06ZNy5lnnplx48a1ZR8AAAAAAAAAAADtpzgAAIBh41/+5V+yfPnylucvuOCCjBkzpsFEAAAA0DnPPPNM5s2bl1dffbUt+8aNG5ezzjorU6dObcs+AAAAAAAAAAAAmqM4AACAYePqq6/u1/zs2bObCQIAAAAdtHbt2tx00025995727bzkEMOyfTp0xXuAQAAAAAAAAAADBGKAwAA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xZEjR9p0XWNjYyxZsiRuv/32yOVyGaUDAAAAAAAAgM7t2LFj8YY3vCFeeOGFy97Rs2fPuOuuu+Ltb3973H777TF48OBLXtOvX7/o169fRERce+21ccstt/ziudbW1li3bl38+Mc/jm9961uxYsWKy84GAAAAQNehOAAAaBetra2xffv21PMTJkzIMA1A59fS0hKrV6+OdevWRZIkl7Vj586dsX37dmUtAAAAAAAAAPAaDh06FK9//etj/fr1l3X96NGj44/+6I/ive997y9KAAohn8/HjBkzYsaMGfGRj3wktm3bFt/4xjfi7/7u72L//v0FOwcAAACAziVf7AAAQPewf//+OHfuXOp5N7ECXNiBAwfi29/+dqxdu/aySwN+btmyZW36/RkAAAAAAAAAuoNz587Fvffee1mlAQMHDowvf/nLsW3btvjIRz5S0NKA1zJx4sT4sz/7s9i5c2c8/PDDcc0112R6HgAAAAAdk+IAAKBdbN26NfVseXl5jBo1KsM0AJ3T+fPnY9myZfHUU0/F8ePHC7Jz1KhRkcvlCrILAAAAAAAAALqKd73rXfH888+3+brf/M3fjI0bN8YHPvCBKC8vzyDZhfXo0SN+//d/P1566aX44he/GAMHDmzX8wEAAAAoLsUBAEC72L59e+rZ8ePHRz7vjykAv2zPnj3x6KOPRl1dXSRJcsX7+vTpE3feeWe87nWvix49ehQgIQAAAAAAAAB0DX/xF38R//Zv/9ama8rLy+Phhx+ORx55JIYPH55RsnRKSkrigx/8YGzZsiV+//d/3wcKAAAAAHQTpcUOAAB0D20pDpg4cWKGSQA6l6ampli+fHm89NJLBds5efLkuOmmmxQGAAAAAAAAAMCvef755+OTn/xkm64ZMGBAfOc734n58+dnlOryDB48OB5++OG477774vd+7/fi4MGDxY4EAAAAQIYUBwAA7WLr1q2pZxUHAPzMyy+/HEuWLIkzZ84UZF+/fv2iuro6Ro0aVZB9AAAAAAAAANCVnD17Nt75zndGa2tr6mv69+8f3//+92POnDkZJrsyd911V6xbty5+7/d+L5599tlixwEAAAAgI/liBwAAur7W1tbYuXNn6nnFAUB3d+7cufjRj34U3//+9wtSGpDL5aKqqioeeOABpQEAAAAAAAAAcAH//b//99i8eXPq+R49esQzzzzT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473vfW8888wz0dTU1K4ZIn723r2HHnoopk6dGs8//3y7n3+lduzYEbNnz45Pf/rTBflwjgtJkiT+/u//Pqqrq2Pv3r2ZnXM5Fi1aFDNnzoy3v/3t7X4D/5kzZ+If//EfY+7cuXHTTTe127mrV6+Om266Ke6///5YuXJl5uc1NjbGww8/HDfccEN88YtfbFORDAAAQEekOAAAyNT27dtTz/bt2zeGDh2aYRqA4jh69Gg8+eST8cILLxSk+bysrCwWLlwYb3rTm6KioqIACQEAAAAAAACg+6mtrW3TjcLvfe97o6SkJMNEXduJEyfi7rvvji984QvtduaZM2figQceiH/7t39rtzP/7M/+LJ588slMb3Zviw0bNsTChQvjL/7iLyJJkmLHSWXJkiUxZ86cqKura7czV61aFdXV1bFv3752O/NCTpw4Eb/9278dt9xyS6xbt67YcWLTpk2Zn9HU1BR/+Id/GHPmzIlVq1Zlft6vO3nyZHzoQx+K22+/PY4cOdLu5wMAABSK4gAAIFPbtm1LPTthwgSfmA10Oa2trfG9730vDh06VJB9V199dTz44INx/fXX+z0TAAAAAAAAAK7Ad77znTbN/8Zv/EZGSbq+U6dOxe233x7f//732/3s1tbWeMc73hE//OEP2/3sjqKlpSX+3//3/43f+Z3f6TCFBhfyk5/8JG6//fY4fPhwu5+9bdu2uOOOO+L06dPtfvbPrVy5MmbMmBGPPPJI0TK0t1deeSUWLFgQn//856O1tbWoWX70ox/F7Nmz46c//WlRcwAAAFwuxQEAQKbaUhwwceLEDJMAFEc+n4+5c+de8Z4ePXrErbfeGnfddVf07du3AMkAAAAAAAAAoHv7z//8z9Szc+fOjfHjx2eYpus6d+5c3HPPPbFy5cqiZTh//nz89m//duzfv79oGTqCRx55JO6///5oaWkpdpTXtGrVqrjnnnvi3LlzRctQV1cXH/zgB4ty9qOPPhoLFiyIHTt2FOX8YnjxxRdj1qxZRf394dft3Lkzbr311li/fn2xowAAALRZabEDAABdm+IAgIjx48fH+PHjL/uHeuPHj4/58+dH7969C5wMAAAAAAAAALqnrVu3xubNm1PPv/nNb84wTdf20EMPxU9+8pNUs/3794+ZM2fGxIkT46qrroo+ffpESUlJnDlzJvbs2RObNm2KlStXxtmzZ9uc4+DBg/H+978/nnjiiTZf25U8/fTT8ZGPfCQ+//nPFzvKr9i7d2+88Y1vjFOnTqWaHz9+fEyZMiXGjx8fgwYNij59+sT58+fj5MmTsXPnzli7dm289NJLkSRJm7N8/etfj/vuuy/e8pa3tPnay/XVr3413ve+90Vra2u7nVlsL7zwQtx1111x/PjxYkd5lSNHjsTrXve6WLx4cVx//fXFjgMAAJCa4gAAIDNNTU2xa9eu1PMTJkzIMA1Acc2fPz/27t0bjY2Nqa/p1atXLFiwwCcWAAAAAAAAAECBLV68uE3zt9xySzZBurivfvWr8Y1vfOOiMyNHjozf/d3fjbe97W0xY8aMyOfzF51vamqK7373u/GlL30pfvCDH7Qpz5NPPhnPPfdc3HbbbW26Lgu5XC4mT54cM2fOjEmTJsV1110Xo0aNimHDhsXgwYOjZ8+e0bNnz2hsbIwTJ07EiRMn4vjx41FfXx+rV6+OVatWxdq1a+P8+fNtPvsLX/hCzJs3L97+9rdn8JW1XUtLS/zWb/1WHDp06KJz8+fPj9/5nd+Je++9N0aOHHnJvfv27YtHHnkkPve5z8Xu3bvblOmP//iP4w1veEP06NGjTdddjn/913+N9773vZd9fT6fj1mzZsX8+fNj9uzZMX78+Bg7dmz07ds3+vTpE62trXH27Nk4fvx47NmzJ3bu3Bl1dXWxbt26WLp0aZw4caKAX00669evj9tvvz11UcSvu+666+K2226L2bNnx3XXXRdjxoyJgQMHRq9evaKlpSVOnz4du3btis2bN8fSpUvju9/9bmzZsqVNZxw5ciTe8pa3xIoVK6KiouKycgIAALS33OU06AHQdrlcbm5ELPvlx5YtWxZz584tUiLI3pYtW+I3f/M3U88/++yzMWjQoAwTARTXli1b4sc//nGq2WuvvTbmzZvXLj98BAAAAAAA4Mrt3LnzVZ9+3KtXrxg3blxxAgFwUR/60Ifii1/8YqrZvn37xrFjx6K01Ge2RUT85Cc/iVtvvfWSc2PHjo2DBw++6r+PPzd48OD41Kc+Fe9+97sv+/0Rzz77bDz00ENt+oCbOXPmxAsvvHBZ56Uxe/bsWL169Ws+N3ny5Ljrrrvirrvuirlz50b//v2v6KzDhw/H17/+9fiHf/iH2LBhQ5uuHTp0aGzYsCGGDBlyRRku5p3vfGd87Wtfu+Tc9ddfHxs3brzg8wsWLIj/+T//52W/57axsTE+9alPxV//9V9HS0tL6uu+/OUvxwc+8IHLOjOtRYsWxR133BFNTU1tvnbixInxwQ9+MN7+9rfHVVdddVnnt7a2xtq1a+Opp56KJ598MtauXfuqmYqKijh+/Phl7X8tBw8ejDlz5sTLL7/cpusGDhwY73nPe+Khhx6KSZMmtfncF154If7n//yf8fjjj0db7qO5++674zvf+U6bzwMAgO6mq79G/vzzz8e8efN+/eF5SZI8X4w8F3LxOkYAgCuwbdu21LMVFRUxcODADNMAFN8111wTV1999UVn+vTpE3fddVfceuutSgMAAAAAAAAAICMXurH7tdx4441KAy7Dyy+/fMHSgHvvvTdeeuml+MAHPnBF74+44447YuXKlTFz5szU16xYsSKWLVt26cECGTt2bHz84x+Purq62LhxY3z2s5+NO++884pLAyIihgwZEh/5yEeivr4+Hn300RgxYkTqaw8dOhT//b//9yvOUAgXKg0oLy+PL33pS1FbW3tFH9TVo0eP+PSnPx1PPPFE9OzZM/V1n//859t0g3lb7d69O9761re2uTRg5MiR8S//8i+xadOm+KM/+qPLLg2IiMjn8zFz5sz48z//81izZk389Kc/jY9+9KOZvZ+zpaUl7r///jaVBpSVlcV/+2//LXbs2BGf+cxnLqs0ICLipptuim9/+9tRW1vbph3/+Z//Gf/8z/98WWcCAAC0N8UBAEBmtm/fnnp24sSJkcvlMkwDUHy5XC4WLlwYZWVlr/n89ddfHw8++GCMGTOmnZMBAAAAAAAAQPfR2toa69atSz1fWVmZYZru57/9t/8Wjz/+eME+6X748OHx/e9/PyZOnJj6mocffrggZ1/M6173unjiiSdi27Zt8elPfzrz76P7778/Nm7cGL/7u7+b+pp//ud/bvOnvreXgQMHxqJFi+K//Jf/UrD3Fr7pTW+KRx55JPW+TZs2xU9+8pOCnP3rkiSJd7/73XH06NE2XfeOd7wjNm7cGL/zO78TJSUlBc9VVVUV/9//9//Frl274otf/OIlPySlrT7zmc/EkiVLUs9ff/31sXLlyvjLv/zLqKioKEiGBQsWxKpVq+K+++5Lfc1HP/rROHjwYEHOBwAAyJLiAAAgM1u3bk0925Yf2gB0Zn37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PXr00NGjR21qZk5hYaHeffddNWvWTAsWLHB3nQqtW7duhnJpaWl64YUXbOvhdDp12223adGiRbbtAWv06dNH/fv3N5zfsmWLrrnmGrcND3A6naVeIzIyUg899JDh/Icffqh7771XRUVFpd7bKqtWrdKNN97o7hoAAAAAcFEMDgAAAKWWkJBgOFuvXj15ePAUBKiInE6n9u7dq1mzZunYsWN/+r3Y2Ngy9YMcAAAAAAAAAAAAAACAv9KxY0dNnz7d9Ouctm3bpjZt2ujNN99UYWGhTe0u7aefflKHDh300EMPKSMjw209Kotrr73WcPZf//qXpk6danmHvLw83XTTTZo2bZrla8MeH374oYKCggzn16xZo+7du7t0OInT6dS3335reDjGpTzzzDNq3ry54fwHH3yga6+91q03rCkoKNDMmTPVrVs39enTR8uWLXNbFwAAAAAwglN7AACg1JKSkgxn69WrZ2MTAO6SkZGhH3/8UWvXrlVBQcFfZtLS0rRjxw7XFgMAAAAAAAAAAAAAACiBwYMH6/XXXzd9XXZ2th577DG1b99eX3/9tctuslBUVKQZM2aoXbt2GjhwoH7++WeX7AupZ8+eCgsLM5R1Op26/fbbLT3gv2/fPvXs2VMzZ860bE3YLyoqSm+88Yapa3bt2qWOHTvq888/l9PptKmZlJubq08//VStWrXSyJEjtW/fPkvWDQgI0Ndffy1fX1/D1yxatEgtW7bUtGnTVFxcbEkPI/bt26enn35a9evX14033qgNGza4bG8AAAAAKA0GBwAAgFJLSEgwnG3QoIGNTQC4mtPp1M6dOzV79mylpKRcMr99+3adOXPGBc0AAAAAAAAAAAAAAABK55FHHtGrr75aomv37Nmjm2++WU2bNtUbb7yhxMREi9v9Ki4uTg899JDq1aunUaNGadeuXbbsgwvz8PDQPffcYzhfWFioMWPGaPTo0UpLSyvxvmlpaXryySfVoUMHbdmy5YK5Fi1aqG7duiXeB/a56667NGzYMFPXnD17VnfccYeio6P1ww8/WDZAwOl0av369fr73/+usLAwjR8/3rKBAf+tffv2eu+990xdc/r0aY0ZM0bt27fX9OnTlZeXZ3kvp9Opbdu26Z///Kc6dOigli1b6qWXXtKJEycs3wsAAAAA7OTl7gIAAKD8S0pKMpytV6+ejU0AuFJaWppiY2OVmppq+Jri4mKtXr1agwcPlocHc8wAAAAAAAAAAAAAAEDZ9vjjjys4OFj33ntviQ7oHjlyRBMmTNDjjz+u6Oho9e3bV926dVN0dLSqVq1qai2n06mjR49qzZo1io2N1apVq3T06FHTnWC9u+++W2+//bapG2pMnz5d33//vcaMGaM77rhD7du3v+TrafLz87V+/XpNnz5dM2fOVFZW1kXz3t7e+uqrr3TDDTcY7gXXmjp1qhISEhQXF2fquri4OA0ZMkRRUVEaOXKkBg0apE6dOsnHx8fwGkeOHNHatWu1atUq/fTTTzp58qTZ+iUyfvx4HT9+XC+++KKp63bv3q3Ro0frvvvu05AhQzRgwADFxMSodu3apjukp6drz5492rRpkzZu3Kg1a9a47PEDAAAAgJ0YHAAAAEqlsLBQx48fN5xv0KCBjW0AuEJRUZF27Nih7du3q7i42PT1qamp2r17t9q1a2dDOwAAAAAAAAAAAAAAAGvdfffdqlq1qu644w7l5OSUaA2n06mNGzdq48aNkiSHw6GwsDBFRUUpMjJStWvXVkBAgAICAuTr66ucnBxlZWUpKytLycnJOnTokA4dOqTc3FwrHxosUrVqVb388ssaP368qetycnL08ccf6+OPP1aVKlXUpUsXNWrUSNWqVVPVqlVVXFysrKwsJSUl6eDBg9q2bZupu62/8MIL6tixo9mHAxfy9/fXvHnz1KtXLx08eND09UePHtWrr76qV199VX5+fmrTpo0aNmyo+vXrKzg4WAEBASouLlZeXp7S09OVnJys+Ph47d27V5mZmTY8ImMmTpyoM2fO6MMPPzR9bXp6uqZMmaIpU6ZIksLCwtSiRQtFREQoLCxMgYGB8vPzk9PpVH5+vvLy8nTmzBmdPHlSJ06c0MGDB03dLAcAAAAAyhMGBwAAgFJJTk42dXC4Xr16NrYBYLfU1FTFxsYqLS2tVOts2bJFkZGRCgkJsagZAAAAAAAAAAAAAACAfW6++Wa1bdtWw4cP1y+//FLq9ZxOp44fP67jx49r7dq1FjQ0pyR36MbF3XHHHZo3b54WLFhQouvPnTunJUuWWNbn1ltv1T/+8Q/L1oN96tatqzVr1uiqq67Szz//XOJ18vLyFBcXp7i4OAvb2eeDDz5QzZo1NXHixFKtk5ycrOTkZItaAQAAAED55uHuAgAAoHxLTEw0nA0KClK1atVsbAPALoWFhdq0aZPmzp1b6qEBklRUVKRDhw5Z0AwAAAAAAAAAAAAAAMA1WrdurS1btmjs2LHurlJiUVFR+v777/Xkk0+6u0qF43A4NHXqVDVr1szdVTRw4EB99tln7q4BE+rUqaPY2FjFxMS4u4pLvfDCC5o0aZL8/PzcXQUAAAAAKgQGBwAAgFIxMzigfv36cjgcNrYBYIcTJ07ou+++086dO+V0Oku9nr+/v6666ip17NjRgnYAAAAAAAAAAAAAAACuExgYqC+++EIrV65U69at3V3HsJo1a+qVV17R3r17NWTIEHfXqbCqV6+uZcuWKSoqym0dbrnlFn333Xfy8vJyWweUTPXq1bV8+XI9/vjjleq1ln/7298UFxentm3bursKAAAAAJR7DA4AAAClYmZwQL169WxsAsBqBQUFWrdunebPn6+MjAxL1mzSpImGDx+uhg0bVqofbgEAAAAAAAAAAAAAgIqld+/e2rFjh/71r3+pbt267q5zQbVr19Zrr72m+Ph4PfHEE9zV2wUiIiK0YcMGXX755S7d18PDQy+//LKmTp0qX19fl+4N63h6eurVV1/VsmXL1Lx5c3fXcZnWrVtr8+bNev755xUYGOjuOn8pPDxcDz74oLtrAAAAAMBFMTgAAACUipnBAQ0aNLCxCQArHT9+XLNnz9aePXvkdDpLvV5gYKD69++vPn368ANoAAAAAAAAAAAAAABQIXh6euq+++5TQkKCpkyZojZt2ri70u969uyp6dOnKykpSRMmTCizB3Erqjp16mj16tV69NFH5eFh/0v2L7vsMm3evFn/+Mc/bN8LrnHFFVdo165deu2111SjRg23dPD09NTgwYM1c+ZMl+zn6+ur5557TgcPHtS4cePk4+Pjkn0vJjAwUCNHjtT8+fOVkJCgp59+2t2VAAAAAOCiGBwAAABKxczggHr16tnYBIAV8vPzFRsbqwULFigzM9OSNVu0aKHhw4erfv36lqwHAAAAAAAAAAAAAABQlvj4+OjWW2/Vrl27tGrVKt19990KDQ11eY/27dvrxRdf1C+//KLVq1fr5ptvLhMHbysrX19fvfHGG9qyZYv69u1ryx6tW7fWpEmTtHHjRnXq1MmWPeA+3t7emjBhghITE/X++++rcePGLtm3UaNGmjhxohITEzV37lz169fP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l+1dUFCgefPm6YYbblCdOnV0++23a/HixW4d/uJ0OjVnzhy1bdtWTz755J/u1l4efPLJJ2rUqJFeeeUVt/a/1HPq0ho2bJg6dux40cysWbO0Zs0aW3sAl8LgAAAAgEosOztbixcv1sqVK//yH2N27dql1NRUNzQDAAAAAAAAAAAAAAAAIP1618JPPvlErVq10v3336/09HR3VyqRnJwcPfbYY2rZsqUmT56sgoICd1dSRkaG/vnPf6pRo0b65JNPyvVdavPz838/oP/yyy+77E6pRhUXF2vRokW69tpr1alTJ/3www/l+v1tlZ9//llffPHFRTO1atXSHXfc4ZpCpXT69GnNnz+/xNdPmTLFwjaoaLZu3aru3bvruuuu06pVq9xd509SUlL0z3/+U1FRUXr44Yd14sQJd1cC3KagoED33nuvRo4c6dK7ym/evFldu3bVl19+6bI9y6Nly5apTZs2+uSTT1RcXOy2HllZWXrqqafUpUsX/fLLLy7Zs3Hjxho8eLC+//77MvH9yH87f/68XnnlFUVHR2v//v3urmNIamqqrrvuOt11110VahjbxTzxxBOXzEyYMMEFTYALY3AAAABAJeR0OrVv3z7NmjVLiYmJF83FxsaqqKjIhe0AAAAAAAAAAAAAAAAA/K/CwkK9//77atWqlVauXOnuOqYsWrRIrVq10ptvvunWu3leSEZGhu666y717NlTe/fudXcd03788Ue1bNlSTz/9tHJyctxd55K2bdumIUOGKDo6Wps2bXJ3HbeaMGHCJQ/sPfjgg/L393dRo9KZNm1aqQ7h7dy5U1u3brWwESqCtLQ0jR8/Xpdffrk2bNjg7jqXlJubq3feeUdRUVF67rnnyuWdo4HSOHv2rK688kp98MEHbtk/Ly9Pt956qx588EGGFP2FN954Q3379lVKSoq7q/xux44d6tSpkxYsWGD7XuXhcPvu3bvVuXNnLVy40N1VLmrt2rVq06aNfvzxR3dXcamhQ4eqadOmF81s3LhR3333nYsaAX/G4AAAAIBK5ty5c1qwYIHWrFmj8+fPXzKflpamHTt22F8MAAAAAAAAAAAAAAAAwCWlpKToqquu0ltvveXuKpdUVFSkxx57TAMGDFB8fLy761zSunXr1KlTJ3311VfurmJIfn6+7rrrLl133XU6cuSIu+uYFhcXp65du+q2225TZmamu+u43KpVqy55ICwkJET33HOPixqV3uTJk0u9xqRJkyxogopi3bp1atu2rT799FO33hW7JPLy8jRx4kS1aNGizB/+BKySmZmp/v37a82aNe6uovfee0/33Xefu2uUKY899pgmTJhQJgcq5OTkaMiQIZo+fbq7q5QJWVlZGjx4sL799lt3V/lLc+fO1dVXX62TJ0+6u4rLeXh46PHHH79k7sknn+QGnnAbBgcAAABUEk6nU7t379bs2bOVnJxs6trt27crLS3NpmYAAAAAAAAAAAAAAAAAzCguLtajjz6qF154wd1VLujMmTPq37+/3nzzTXdXMSUvL0+33HKLHnrooTJ90OPQoUPq2rWrPvnkE3dXKRWn06kvvvhChw8fdncVl3vmmWcumbn77rsVEhLigjalt3nzZv3888+lXufrr79WXl6eBY1QnjmdTr3++uvq3bu3jh8/7u46pZKQkFDuP1cDRuTm5uqaa67Rpk2b3F3ldx988IEee+wxd9coE1555ZUy/7y8sLBQt956qxYtWuTuKmVCQUGBRo0aVebeH59//rmGDRtWqZ+v3XLLLYqIiLho5sCBA5o2bZqLGgF/5OXuAgAAwF6tW7c2lU9ISNC5c+cMZevWratatWqVpJYk891Qcunp6Vq9enWJJ7oVFxcrNjZWgwcPlocHs6cAAAAAAAAAAAAAAACAsuD5559XWFiY7rjjDndX+YOEhARdccUVOnLkSKnW8fLyUnR0tHr27KnmzZurWbNmCgsLU1BQkIKDg1VcXKzMzExlZWUpMTFR+/fv1759+7Rq1Srt2LGjVHdTfffdd7Vv3z7NnTtXfn5+pXocVlu3bp0GDhyojIyMUq/l5+enzp07Kzo6Wo0aNVJkZKQiIyNVpUoVBQYGKiAgQA6H4/f387lz53TkyBEdOnRIhw4d0pYtW7Rt27YyPWShLFq6dKnWrl170Yy/v78eeughFzUqvcmTJ1uyztmzZzVnzhzdfPPNlqyH8qewsFBjxozR119/bcl6DRo0ULdu3dSmTZvfP8eFhoYqICBAgYGB8vPzU25urrKyspSVlaWTJ0/q4MGDOnTokPbt26e1a9fq1KlTlnQBKrJ77733kl/b/oq/v78GDRqkK6+8Up06dVJERISqVq2qgoICnT17VgcOHNDWrVv1ww8/aN26daaf37355ptq3769Ro0aZbpbRTF//nw99dRTJb4+NDRUPXr0UNeuXdW5c2fVqlVL1apVU7Vq1VRQUKD09HSlp6crISFBGzdu1IYNG7Rhwwbl5uaa3quwsFAjRozQjh071LBhwxJ3tkO1atXUqVMnXXbZZWrWrJkiIyNVv359ValSRUFBQfLy8lJubq5SU1OVmJionTt3av369VqyZInS09NLtOdv74/169eXifM33377re68884Sf58VEhKi7t27q0ePHmratKkaN26sOnXq/P59R2FhofLy8pSamqoTJ07o8OHD2r9/v7Zt26bNmzeX+P1oNW9vbz366KN68MEHL5p78cUXNXr0aHl5cYwbrsVHHAAAFdxnn31mKj927Fjt2bPHUPa5557TddddV5JacJHi4mLt3LnTkh/MpKamavfu3WrXrp1F7QAAAAAAAAAAAAAAAIDypUGDBoqPjzd9ndPpVGZmps6ePav09HSdPHlScXFx2rhxozZu3KjTp0+XuNO9996rdu3a6fLLLy/xGlZKSEhQ7969S/R+kiQPDw9dffXVGjdunPr166fg4OCL5n19fVWzZk1FRkaqV69ev789NTVV8+bN06effqrNmzeXqMvixYs1aNAgzZs3r8wMD1i6dKmGDBminJycEq8RERGh4cOHa9iwYbrsssvk7e19yWuqV6+u6tWrS/rzTYMyMzO1bt06LVq0SDNnztSJEydK3K2yeP755y+ZufXWW0t1cydXys3NteyQt/TrEAIGB1RO+fn5Gj58uObPn1/iNby8vNSnTx+NHDlS11xzjUJDQy95TVBQkIKCgiRJjRs3Vvfu3f/w+78NpZk9e7ZWrVql4uLiEvcDKqKpU6eaHiATFBSkRx99VA899JCqVKnyp9/38fFRYGCgwsPD1adPHz366KM6dOiQnn32WX3zzTemDi6PHz9eHTt2VIsWLUx1rAhSU1M1bty4Eh30jomJ0f3336/BgwfL09PzLzO//TlFRESoTZs2uvbaayVJaWlp+uyzz/Thhx8qMTHR1L6ZmZkaM2aMVq9e7dabHnp5ealXr17q37+/+vXrp7Zt217ymt++nkRFRf3+/issLNS8efP0zjvvlGi4RmZmpkaNGqW4uDj5+PiU5KFYYvXq1RozZozpjyVfX1/dcMMNGjt2rK666qoLfixJkqenp3x9fRUSEqLGjRurR48ev/+e0+nUjh07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XTu3dnG3d99995KZqlWrasSIEfaXsciUKVPkdDovmYuKilLPnj116623Glo3ISGhRHefR/kzdepU0wfqHA6Hnn32WS1evFgNGza0qZlxN954o3755Rf94x//cPndjgF3mjBhguFs06ZNNW3aNHl5eVm2f1hYmGbNmiUfHx9D+YyMDL300kuW7V+WFRYW6quvvjKcDwoK0sKFC229uWTv3r316aefmrrmiy++sKVLvXr19Mknn+jIkSN69NFHFRQUZMs+F+JwOPTJJ59o2LBhpq774osvlJ+fb1OrP9u4caOpYQX33HOPvv32W/n7+9vY6sLcce7FyMCvuLg4rV+/3gVtgF8xOAAAAPzu9OnThrNVq1a19Jt2lFxycrK+++477d6929A/vl9KQECA+vXrpyuvvNJt37ABAAAAAAAAAAAAAAAAlZm3t7e+++47NW3a1NR1M2bMsKnRha1fv970Aaxq1app2bJlGjBggE2tLu2BBx7Q1KlTTb0OrqioSGPHjrXs5i5GPPbYY/r5559NXXPVVVdp06ZNat68uU2tSqZ79+7avHmzHn744Up5M5vU1FRDwz3GjBlTbl67V1xcrC+//NJQdsyYMXI4HGrWrJmio6MNXTN58uTS1EM5cOTIEd19992mrvH19dXs2bP1wgsvlKnPJYGBgXr55Ze1bt06NWrUyN11ANv99NNP2r17t6Gsh4eHvv76a1sOZ3fq1En//Oc/Dec///xznTlzxvIeZc3mzZt16tQpw/mHH35YkZGR9hX6f2PGjDH8PECSVqxYofPnz1u2f82aNfXmm2/q4MGDuvPOO+Xr62vZ2mY5HA598cUXpr5mnD17Vj/88IONrf7D6XTq/vvvV3FxsaH8TTfdpPfff9/tQ8tcbfjw4YZuyvqvf/3LBW2AX1Wuv4UAAOCi0tLSDGftnCQHY86fP681a9boxx9/1Llz5yxZs1mzZho+fLgaNGhgyXoAAAAAAAAAAAAAAAAASqZq1ap68803TV2zYsUKnT171p5CfyE/P1+333674cMkkuTn56cff/xRXbt2tbGZMaNHj9aHH35o6poTJ07o4YcftqnRHy1btkwff/yxqWv69OmjefPmKSQkxKZWpePj46O33npLP/30k2rXru3uOi716aefGrpD7B133OGCNtZYvHixjh07Zig7ZsyY3///2LFjDV0zd+5c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99xzxC/tHn744fnZz37WoYra7+Mf/3j233//pfYzg7vttlumTJnSGHfVVVflr3/9axcqGjoB9Stf+UrL8a997Ws7WE17jOTFz5NOOqktOffaa6+sssoqLce///3vb0vesRpJHauttlr23HPPjtVSSsmXvvSllv4becKVV16Z/fffv6enY4/ETTfdlJ133jnnnntur0uBtjvggAMyc2ZrrxFdfPHF+clPftLhipLjjz++5fcjdt5552y88cYdrqg3Nt9886ywwgotx3/iE5/oYDVLNm/evHzqU59qOX6bbbbJtGnT2l7HpZdemj322CNz5sxp+ZqVV145P/vZz7L55pu3vZ5+sNNOO2XLLbdsKfYb3/hG2w8PHc5HP/rRlv8uueyyy2a33XbrcEVP9fOf/7yluBe/+MUdP9yV8cvgAMa9Usqbk5yR9r74/mQzk5xZSjmqQ/v3RClllSQXJnlpB9PsmeTXpZT+HVMJA24kD86WWWaZjtRw00035bTTTsv111+fZGiIQLen5wIAAAAAAAAAAAyKDTbYYESnQH7pS1/K7bff3pFadtttt7zxjW8c0TXf/va3c/TRR3eknpF67LHHsu++++bKK68c0XUnnnhiV05h//SnP53VVlut5fhHH300e++9d371q191sKqxu+eee7LXXnvl3e9+d8unzA6iGTNmZJddWjvX7he/+EVni1nk5z//ecsvdy277LLZe++9O1zR2B188MGZMKG1V2O+9a1vtWVQxeTJk/O6172u5fizzz47P/zhD8ecdyzOOeecEZ0qfeihh3b8ZbZnPvOZ+eAHPziia37wgx/kwAMPzPz58ztUVXt861vfytZbbz3iP19gUCy//PL5h3/4h5bj3/GOd3T0v9s///nPOfHEE1uO/5d/+ZeO1ZIk66+/fkopLX29/vWvb2vuUsqIBr/86le/yve+97221tCK448/fkR/R+lET3LFFVdk9913zwMPPNDyNSuuuGLOPffcll+sH1Tvec97WoqbP39+1/5ud+mll+bkk09uOf7QQw8d0YCidml1cMDLXvayDlfCeGZwAONaKeXQJJ9K0pkjtJ+UKsn/K6W0/nSgj5VSlkvy4yRP70K6LZL8ZFFOoM0ee+yxlmPb3TA/8sgj+elPf5qf/vSnT3kIe+ONN3Z16hgAAAAAAAAAAMAgef/735/Jkye3FPvYY4/l3//93ztWy/HHH5+11lprRNd88pOfzBFHHNHyaZGdMGfOnLzkJS/Jz372sxFdt/fee+eggw7qUFX/10orrZQvfOELI7rm4Ycfzktf+tJ861vf6lBVY/PTn/40z3zmM3POOef0upSuaPWFoFZfMBqrk046qeXYffbZpyMn+7bb2muvnec///ktxc6ZMydnnHFGW/IeffTRmTp1asvxhx12WO6+++625B6pu+++O294wxtajp82bVre/va3d66gJ3nPe96T7bfffkTXfOc738lLX/rS3HfffR2qavQefPDBvOENb8hBBx00otOrYRC94x3vaLkfveqqq/Kxj32sI3UsXLgwRxxxRMuHKm655ZbZa6+9OlJLvzjggANGFH/UUUflf//3fztUzVNdccUVOe6440Z0zUh/TU2uvPLKvOhFLxrRnyUrrLBCzj333Gy11VZtraUfvfrVr85GG23UUux3v/vdfOMb3+hoPY888kgOO+ywlv/+WErJP/3TP3W0psVZsGBBS0PcSil56Us7eZYz453BAYxbpZQdknwxrQ0NuDDJPyXZNsmKSSYv+t/tkrw1ycWtpEzyxVLKyP5W259OTrJNC3EPJPlskpcnWSfJtCTTk6ybZO8kn08yu4V9tknylVHUCTR4/PHHW45t1+CAWmuuv/76nHbaacMOB7jgggtGNNgAAAAAAAAAAABgvNhggw1GdNr1SSedlFtvvbUjtSy//PI588wzR/QCbZJ84QtfyL777tuTFytvvfXWvOAFLxjxKe9Pe9rTRnTKZTvsvffeLZ/4+YSHH344Bx10UN797neP6HOCnXT77bfnwAMPzO67754777yz1+V0TT8NDpg9e3a+/e1vtxz/mte8poPVtNdIah3J8IThrLXWWjnyyCNbjr/77rvz0pe+NLNnt/Lx+faZPXt2XvrSl+avf/1ry9ccddRRWWONNTpY1f9v4sSJOf3007PaaquN6Lpzzz0322+/fS6//PLOFDYKX/3qV7PJJpvkK1/x6gPjw9prr53Xv/71Lcd/6EMfaumF2pH68Ic/nPPOO6/l+Pe9730ppdPnz/bWS17ykhEN9rrjjjuy//77P+VAyE648847s88++4wo1y677JKNN964bTVcc8012W233XLPPfe0fM1yyy2Xn/zkJ9lmm1Zepxt8EydOzAc/+MGW44844ohcccUVHaml1pojjjgif/zjH1u+Zt99980mm2zSkXqGc9lll7XU62299dZZffXVu1AR45XBAYxLpZRlk3wrQwMAhnN9khfVWneqtX661vr7Wuv9tdb5i/730lrrp2qtz0myR5IbGvabkuR/FuUfSKWUtyZ5ZUNYTXJCkg1qrUfVWs+utd5ea3201vpIrfW2Wuv3a61HJtkgyadaSP2qUspbxlQ88BQjeTF/pD/UWZy5c+fmRz/6UX7+85835n7kkUfym9/8Zsw5AQAAAAAAAAAAlkb/+q//2vIpr/PmzRvxqZ4j8exnPzuf+9znRnzdd77znWy99da56KKLOlDV4p1++unZaqut8vvf/35E182cOTPf+c53ssIKK3SosiX7yEc+kn333XfE13384x/PtttumwsvvLADVbVmzpw5Oe6447LZZpvltNNO61kdvbLpppvmaU97WmPctdde2/GBCt/4xjdafklvrbXWygtf+MKO1tNO++23X5ZZZpmWYn/5y1/mhhuaPvbfmve9730j+j3h97//fXbbbbfcdtttbcnf5Lbbbsuuu+46ot/vVlpppREPKxmr9dZbL9/73vcybdq0EV134403Zvvtt8973vOerrzsuiS//vWv87znPS+ve93rctddd/WsDuiF4447Lsstt1xLsQsWLMirXvWqtr5c/OUvfznHHntsy/E777xzDjrooLbl71eTJ0/O0UcfPaJrfvnLX2bvvffu6FCvW265JbvuumtuvPHGEV337ne/u201/PnPf86uu+46ooE6yy67bH784x9nu+22a1sdg+C1r31tdt5555Zi586dmz322CNXX311W2uotebtb397vvrVr7Z8zZQpU/LRj360rXW0qtVhYHvttVeHK2G8MziA8erfMvTC+nDOTbJ9rfVnrWxYa/1Jku2SNP0Ov0GSY1rZs9+UUtZK8pGGsHlJ9q21Hl1rfaBpz0UDGN6aZP8kTSNNP1JKWbOlYoGWzJs3r+XYVn/AtDi11lx99dU5/fTTR/Sw87rrruvaw1EAAAAAAAAAAIBBsv766+fQQw9tOf7kk0/OTTfd1LF6Xv/61+cd73jHiK+76aabsvPOO+fII4/s6AuX11xzTV75ylfmgAMOyAMPPDCiaydOnJivfvWr2WKLLTpTXINSSr761a9mhx12GPG1V155ZXbeeecccsghIzqlc6zuvvvuvPe97826666bD3zgA3nooYe6lrvfHHjggS3FnX322R2t46STTmo59uCDD86ECYPzusmyyy6bvffeu6XYWmvbToRfddVVc+KJJ47omksvvTTbbbddTj/99LbUsCSnn356tttuu1x22WUjuu5Tn/pUVl555Q5VtWQ77LBDTjnllBH/ezd//vx87GMfy+abb57Pfe5zefTRRztU4VOdc845ed7znpedd945F1xwQdfyQj9ZddVV8+EPf7jl+Pvuuy8vetGL8qtf/WrMuT/xiU/k8MMPT621pfiJEyfm//2//zfmvIPiiCOOyBprrDGia84999zsuOOOufzyy9tezznnnJMddtgh11xzzYiu23HHHfOyl72sLTXcdNNN2XXXXUc0rGnmzJn54Q9/mGc/+9ltqWGQlFLy2c9+NpMmTWop/u67785zn/vc/PjHP25L/rlz5+bAAw/MJz/5yRFd9853vjMbbbRRW2oYqVb7+Vb/fgCjNTh/k4M2KaU8PcmbG8J+k+QVtdbZI9l70YvyL09ySUPoW0opm49k7z7xn0lmDLNekxxUaz1rpBvXWs9IckhD2MxFNQBtMpLBAVOnTh1Vjjlz5uTss8/O+eefn8cfb5oP8lTnn3/+iOoEAAAAAAAAAAAYL97//ve3fCjM448/nuOOO66j9Rx//PH5x3/8xxFft2DBgnz+85/P0572tLzzne/Mdddd17aaLrnkkhx22GF5xjOeke9+97sjvn7ixIk59dRT88pXvrJtNY3GtGnT8uMf/zg77rjjiK+tteYb3/hGttpqq+y1114588wzO3I69yOPPJLTTjstr3jFK7Luuuvmox/9aGbPHtHHsZdKrZ5sfMYZZ3Sshj/84Q/53e9+13L8a17zmo7V0ikjqfmUU07JwoUL25L3ta99bctDC57w17/+NQcccEB23XXX/OQnP2lLHU/46U9/ml133TUHHHDAiE5TTpJ99tmnpydx77///jn11FNbfkHxyW655Zb84z/+YzbYYIMcc8wxI34xtVVXX311PvCBD2SjjTbKXnvtZWAAJDnqqKNG1J/cc8892XXXXXPMMceMqh+57bbbss8+++Qd73jHiH4vf+c735mtttpqxPkG1cyZM0c83CZJ/vSnP2WHHXbI2972ttx9991jruOaa67J/vvvn7322mvEfy5NmjQpn/vc58ZcwxNOOeWUER9sOXfu3Oy0004ppfTdVzdsueWW+cAHPtBy/AMPPJCXvvSlOfLII0f8/+8n+/73v58tt9xyxIOWttlmmxxzzDGjzjsWd911V3796183xj3jGc/o2UA6xg+DAxiPPpRkuL9J3pfkwFrrw6PZvNb6UJIDkjwwTNikJB8czf69smjgwqsbwv6r1vrt0eaotZ6e5ISGsINKKZuNNgfwf43khfwpU6aMaO9aa/74xz/mjDPOGNFEtr83d+7cXHJJ0zwWAAAAAAAAAACA8Wf99dfPoYce2nL8qaeemhtuuKFj9ZRS8ulPfzpHHXXUqK5/6KGH8t///d/ZdNNN8/znPz8f//jHc9lll7V8kmwyNCDhggsuyIc+9KFsvfXWefazn52TTz458+fPH3E9TwwNOPjgg0d8bScsv/zyf3speDRqrTnnnHOy3377ZdVVV82BBx6YT3/607nsssuyYMGCEe/32GOP5aKLLsrHPvax7Lnnnn/b83vf+54Dg55kiy22yDOf+czGuJ///Oe5//77O1LDSSed1HLsM5/5zJbq7TcveclLsvLKK7cUe/vtt7f1hf1TTz01T3/600d83c9//vPsscce2WSTTfLe9743F1xwwYhfon300Ufz61//Ou973/uy2WabZffdd8/Pf/7zEdfyjGc8IyeffPKIr2u3Qw45JKeffvqoDzy76667cuyxx2bzzTfPVlttlfe85z357ne/m//93/8d1X533HFH/ud//idHHXVUtthiizz96U/PcccdlxtvvHFU+8HSaOLEifnWt76VFVdcseVrFixYkGOPPTYbb7xxjj/++PzlL39pvOayyy7LW9/61myyySY566yRnXe600475d///d9HdM3SYP/998/+++8/4usef/zxfPKTn8y6666bgw46KGeddVYefPDBlq+/++67c8opp2T33XfP05/+9FEPR/rgBz84kD3J0uZf//Vf85KXvKTl+FprPv/5z2fDDTfMm9/85lx88cUtDfm4995788UvfjHbbbdd9t5779xyyy0jqnPZZZfNN77xjRG/+9Qu3/72t1v6dR5ySNO5yzB2ZSQPUWDQlVI2THJdkonDhB1Va/1sG3K9Nclwo5kWJHlarfXmsebqhlLKV5K8fpiQW5JsVmt9dIx5pie5Nsnaw4SdVGt941jy9EIpZcckFz75exdeeOGoJr9Cu5x22mn5+Mc/3lLs8573vHziE59oKfb+++/Pr371q7ZMmEuSyZMn59WvfnWmTZvWlv0AAAAAAAAAoN1uvvnmp7zkM23atKy//vq9KQiAlt18883ZYIMNWopdb731cvPNN3e2oBG6+eabs8kmm+Txxx9vKf51r3tdTjnllA5Xlbz3ve/NRz/60bbsNXPmzGyyySbZdNNNs8Yaa2TmzJmZOXNmaq2ZO3du5s6dm1tvvTXXXnttrr/++jz22GNjzjl9+vSceuqp2XfffdvwK2ivRx99NIcddli+9a1vtW3PZZZZJuutt1422GCDrLfeelluueUyffr0TJ8+PcnQIUAPPfRQZs+enZtuuil//vOfc9ttt7Xt1Pbf//732XrrrduyVz864YQTcvTRRzfGnXTSSTnssMPamnvevHlZa621cs8997QU//GPfzzvete72lpDt7z5zW/OZz7zmZZi999//5x22mlty33zzTfnOc95zpg/Oztp0qRsvvnm2WCDDbLOOutkpZVWyrRp0zJlypTMmzcvjzzySO67777cdtttuemmm/KnP/1pVINRnmyNNdbIxRdfnHXWWWdM+7TTz372sxx44IG5995727bnaqutlvXXXz8bbLBB1lhjjb/9HrfMMsvkkUceyUMPPZS5c+fmrrvuyp///Of8+c9/HtGLssN5xSteke985ztt2Qv61Q9+8IO8/OUvH1VvMGHChGy++ebZbrvtstZaa2X55ZfP448/ngceeCDXX399fve73+X2228fVV2rrLJKLrvssqy99nCvKbXX+uuv3/JLz4ceemhHB7fMnTs3O+64Y6688sox7TNx4sRsuumm2WKLLbL22mtnpZVWyjLLLJNaax555JH89a9/za233po//OEPbfn70ite8YqcddZZKaWMea8nHHPMMTn22GPbtl+vdfO94Pvuuy/bbbddbrrpplFdv/zyy2eHHXbIxhtvnNVWWy3Tp0/P/PnzM2fOnNx000258sorc+WVV4761zR58uT84Ac/yIte9KJRXd8Ou+22W84777xhYyZOnJhbb701a665Zpeq6r6l/Rn5b37zmzz3uc/9+28/t9b6m17UsyQGBzCulFL+K8k7hgm5PsnmtdaRj8x8aq5JGXoBfsNhwo6vtfb9U5VSykpJ/pJkuJE7h9ZaT21Tvjck+fIwIfOSrFFrva8d+brF4AD60de+9rWccMIJLcXutttu+djHPjZszMKFC3PFFVeMevrw4qy99tp53vOel1mzZrVlPwAAAAAAAADohKX9Q5EAS7NBHxyQJIcffni++MUvthQ7ceLEXH311dl44407XNXQ4TZveMMb8tBDD3U8VzttuOGGOeuss/r+hNNPf/rTeec739mWQQm9tMwyy+TKK6/MRhtt1OtSOubee+/NmmuumXnz5g0b97KXvSznnHNOW3OffvrpOeCAA1qKnTBhQm699dastdZaba2hW5bwIs9iTZkyJX/5y1+y0kortS3/Nddck9133z233XZb2/bstPXXXz8//vGPs8kmm/S6lKe47bbbcuCBB+Y3v+mr97BG5R/+4R/yhS98oddlQMd96UtfyuGHH97VF5qHs/zyy+e8887LNtts09W8/TQ4IEluvfXWvPCFL8yNN97Y0Tztsssuu+Scc87JzJkz27qvwQFjc+ONN+YFL3hB3/U5kyZNyqmnnpqDDjqoZzXcc889WX311Rvfo3r5y1+e733ve12qqjeW9mfkgzI4YEKvC4BuKaVMTNL0J8An2jE0IElqrfOTfLIh7OBSyiD8d3hghh8acEeSb7Yx39eTDDdqcUqS/duYD8atpgfQTzZ16tRh1++5556cddZZ+e1vf9uWoQFTp07N85///Lz0pS81NAAAAAAAAAAAAGAY73//+zN58uSWYhcsWNC1F2YOOOCA/OY3v8nmm2/elXztsOeee+a3v/1t3w8NSIZOV7/wwgv78oXfVr3qVa/K1VdfvVQPDUiSlVZaKa961asa484999zMnj27rblPOumklmNf8IIXDOzQgCTZcccdW/53ad68efna177W1vybbbZZLrzwwmy55ZZt3bdTnvnMZ+bXv/513/4ess466+RXv/pV3vWud2XixIm9LmdUVl111Xz5y1/O5z//+V6XAl3xpje9KZ/61Kd6XUaSZNasWfnRj37U9aEB/WjdddfNL3/5y2y66aa9LqXRi170ovzwhz9s+9AAxm7DDTfML37xi6yzzjq9LuVvlllmmZx55pk9HRqQJGeddVZL71G96U1v6kI1YHAA48uuSdYYZv3RJO39m39ySpLh3spdM8kL2pyzEw5pWD+51vp4u5LVWh/L0L0bTlNNQAtGMjhgST9UWrBgQX7729/mrLPOyr333tuWutZbb73st99+2XTTTVNKacueAAAAAAAAAAAAS6v11lsvhx12WMvx3/zmN3PNNdd0sKL/3zOe8YxcfvnlOeaYYxoPsOmlVVddNV//+tdz9tlnZ8UVV+x1OS3bdttt88c//jH/8R//kRkzZvS6nJY9+9nPzrnnnptvf/vbS83pk03e/OY3N8bMmzcvp512Wtty3n777fnJT37ScvxrX/vatuXulUMOaf1j5l/5ylfann/ttdfOxRdfnCOOOKLte7fTUUcdlYsuuihrrrlmr0sZ1qRJk/Lxj388v/vd77Lzzjv3upyWzZw5M+9+97tz3XXX5Q1veIPPQzOuvPnNb843v/nNTJ8+vWc1bLDBBrngggvy7Gc/u2c19Ju11147l1xySUuDjHrlne98Z374wx/29N8dhrfhhhvmoosuWtyJ6123zjrr5Lzzzsvee+/d61JaGka13nrrZc899+xCNWBwAOPLyxvWz6m1PtjOhLXWB5L8sCGsqa6eKqWslGTHhrBvdSD1NxvWdyqlDM5TWehTIxkcsLgf2Nx9990588wz8/vf/z611jHXM23atOy2227ZfffdB+oHGAAAAAAAAAAAAL32/ve/f4kHxPy9hQsX5thjj+1wRf+/KVOm5EMf+lD+8Ic/5GUve1nX8rZiypQpOfLII3PNNdfk4IMP7nU5ozJlypS85z3vybXXXpvXve51mTRpUq9LWqKddtopP/rRj3LRRRdlt91263U5XfW85z0vW2+9dWNcO08mP/nkk7Nw4cKWYqdNm5Z99923bbl75TWveU3LsVdccUUuvfTSttcwffr0fO5zn8v3v//9bLTRRm3ffyw22mijnHPOOfn0pz+dadOm9bqclm299dY5//zz87Wvfa3v7umTLbvssnnve9+bm2++OR/96Eez3HLL9bok6IlXv/rVufDCC7Phhht2Pffuu++e3/3ud3nmM5/Z9dz9btlll823v/3tfPazn80KK6zQ63L+ZoMNNsg555yT448/vq/7WIasueaa+cUvfpG3ve1tPRuMs88+++Tyyy/Pjjs2vfLYeddcc01+9atfNca9+c1vzsSJE7tQERgcwPjyoob1czqUt2nfF3cob7vslmS4P8VvrbVe2e6ktdbLk9wxTMiEJLu2Oy+MN4899ljLsVOmTPnbPz/++OP5zW9+k+9973t54IEH2lLL0572tOy///7ZaKONTNUEAAAAAAAAAAAYoXXXXTeHHXZYy/GnnXZarrrqqg5W9FSbbLJJzjnnnFx66aXZd999M2FC7z7OPm3atLzlLW/JDTfc0HcvT43WWmutlVNOOSU33nhj/vmf/7lvXlidMWNG3vSmN+XSSy/NBRdckD322KPXJfXMW97ylsaYSy+9tC0vs9dac/LJJ7ccv/fee2fWrFljzttrG2+8cXbYYYeW40866aSO1bLXXnvl6quvzoknnphVV121Y3laseqqq+bEE0/M1Vdf3XcDXEbikEMOyXXXXZczzzyzL047fsI222yTz33uc7njjjvykY98JCuttFKvS4Ke22qrrfLHP/4x73//+xd7iGG7rb766jn11FPz4x//OCuu6JzS4Rx55JG59tprc9RRR2WZZZbpWR0rrrhijj322Fx11VUD/WfTeDR58uSccMIJufDCC7P99tt3Le8Tf58888wz++a/8y984QuNMdOnT88b3/jGLlQDQ4xgYVwopayRZPOGsHM7lP6nDetblFJWr7Xe1aH8Y9U0yrNT9+2JvQ8dZv1FSc7oYH5Y6j3++OMtxz4xOOCOO+7I+eefnzlz5rSlhhkzZmTnnXfOeuut15b9AAAAAAAAAAAAxqv3v//9OfnkkzNv3rzG2IULF+aYY47J6aef3oXK/q9tt902Z5xxRq6//vqceuqp+eY3v5kbbrihK7m33377HHzwwTnkkEOyyiqrdCVnt62zzjr5z//8z3zwgx/MGWeckTPOOCPnnntuS/9etMsyyyyTPfbYI/vuu29e8YpXZNlll+1a7n52yCGH5F//9V9z5513Dhv3+c9/vqWXkIZz33335TWveU3L8a94xSvGlK+ffPSjH80vf/nLlmI7PTRk8uTJeetb35ojjzwyZ5xxRj73uc/l/PPP72jOJ9t5553zj//4j9lvv/3+zyFig2zChAnZZ599ss8+++Syyy7LN7/5zZx55pm56aabulrHJptskn333Tf77bdftt12267mhkExffr0HHfccXn961+fj33sY/n617+eRx55pK05Vl999Rx55JE5+uij9RsjsMoqq+TTn/50PvjBD+aTn/xkvvrVr+a2227rSu4tttgib3jDG3L44Ydn5syZXclJZzznOc/JxRdfnG9961s54YQTcskll3QkzzbbbJOjjz46r371qzN58uSO5BiNRx99NKecckpj3Bve8Ia+GXTA+FBqrb2uATqulPKKJN8ZJuS2Wuu6Hcz/lyRrDBOyd631+53KPxallN8n2XqYkDfWWjsyZrGUcniSzw8Tclmt9VmdyN0JpZQdk1z45O9deOGF2XHHHXtUESQf+tCHcs4557QU+8Y3vjFbbLFFrrnmmrbl32yzzfLsZz+7KxMEAQAAAAAAAKCTbr755qd8+H3atGlZf/31e1MQAAyYiy++OGeffXbOP//8XHLJJW17qWz55ZfPTjvtlF122SX77LNPnva0p7Vl30Eze/bsnH322fnFL36Riy66KH/605+ycOHCtu0/adKkbLvttnn+85+f5z//+XnBC16QGTNmtG3/pcnHP/7xvPvd7x42ZubMmfnLX/6SWbNmdakquum2227LOeec87ff89p1mFeSzJo1K8973vOy1157Zc8998y663bsNYm+c+mll+YHP/hBLrzwwlxyySW577772rr/aqutll122SXPf/7zs+uuu2bzzZvOtgT+3r333puTTjop3/nOd3LxxRdnwYIFo9pnxowZeeELX5gDDzwwBxxwwFIzGKWXaq05//zz893vfjfnnXderrjiirTrvdPJkydn++23z2677ZZ99903W221VVv2pf/89re/zcknn5wf/ehHufHGG8e014Ybbph99tkn++23X5797Ge3qcL2+trXvpbXvva1w8ZMmjQp119//bh5Rry0PyP/zW9+k+c+97l//+3n1lp/04t6lsTgAMaFUsqxST44TMh3a62v7GD+7yV5+TAhH6q1/lun8o9WKWVKkrlJhhvFs02t9fIO5d82yaXDhMxLMrPW2vqR6T1kcAD96AMf+EB++MMfNsbNmzcvO+64Y571rPbM6pg1a1Z22WWXrLXWWm3ZDwAAAAAAAAB6bWn/UCQAdNPjjz+eSy+9NFdddVVuuOGG3Hjjjbnpppty33335aGHHspDDz2Uhx9+OKWUzJgx429fq6yySjbccMNsuOGG2WijjbL11ltniy22yIQJE3r9S+o7Dz74YH73u9/luuuuy80335ybb745t9xyS+655548/PDDefjhh/PII4/ksccey5QpUzJt2rRMmzYtK6ywQtZYY42sueaaWWeddfL0pz89W265ZTbbbDOHCLVozpw5WW+99fLAAw8MG/fZz342Rx55ZHeKomdqrfnzn/+cyy67LFdeeWVuu+223H777bnjjjsye/bsPPLII3n00Uf/z3+LyyyzTJZbbrmstdZaWXvttbPOOutkyy23zLbbbpuNN944pZRe/7J6rtaa6667LldccUVuuummv/0ed/vtt+fBBx/82+9xjzzySGqtf7uvM2bMyGqrrZY111wza665Zp72tKdlyy23zBZbbJE111yz178sWKrcf//9Oe+88/LHP/4xf/rTn3Ldddflvvvuy4MPPpi5c+dm4sSJmTVrVmbOnJnVVlstm2++eTbffPNsu+22ed7znqfv6LD7778/l19+ea688spcffXVue2223LXXXflrrvuykMPPfS3P5tKKVlmmWUyderULLvssll99dWz+uqrZ911180WW2yRLbbYIltvvbWBUuPQ9ddfnwsuuCB/+tOfcs011+TGG2/M7NmzM3fu3L/9Nz59+vTMmDEja6yxRtZff/1stNFGedaznpXnPOc5WWeddXr9S2i0yy675Pzzzx825pBDDsnXvva1LlXUe0v7M3KDA6CPlFK+m2TvYUI+XGsdbrDAWPMfl+T9w4R8p9b6qk7lH61SyjZJLhsmZEGS6bXWeR3KPyXJI0mGe1q7da31ik7kbzeDA+hH73vf+/KTn/xkieu11sydOzePPvpodt111zH/+1pKyRZbbJHtt98+kycPN5MEAAAAAAAAAAbL0v6hSAAA2ueYY47JscceO2zMFltskT/+8Y9eAgcAgD5zxRVXZOuttx42ZsKECbnyyiuz+eabd6eoPrC0PyMflMEBRicyXmzSsH59h/P/uWF94w7nH62m+3ZLp4YGJMmivW9rCOvXewcDYbgBQo899ljuu+++PProo0ky5gfPyy+/fF7+8pfnuc99rqEBAAAAAAAAAAAAwLj19re/Pcsvv/ywMVdddVW+973vdacgAACgZR/5yEcaY1796lePq6EB9A+DA1jqlaE3XddvCGt6sX+smvZfv8P5R2uDhvVO37dWcjTVCAxj4cKFi/3enDlzMmfOnP+zPmHC6NqGUkq23nrr7Lvvvll99dVHXSsAAAAAAAAAAADA0mD55ZfP0Ucf3Rj3H//xH12oBgAAaNX111+fM844Y9iYiRMn5oMf/GCXKoL/y+AAxoPVkizTEPOXDtfQtP+MUsqqHa5hNNZvWO/0fWslh8EBMAZ/Pzjg0Ucfzf3335/HHnusLfuvtNJKeeUrX5kddtghEydObMueAAAAAAAAAAAAAIPu6KOPziqrrDJszMUXX5zzzjuvSxUBAABNPvaxjy32INcnO/TQQ7Ppppt2qSL4vwwOYDxYs4WYuzpcQyv7t1JntzXV1On71kqOfrxvMDCeaFRrrZk9e3YefPDBJTavpZSW950wYUK22267vPKVr2x8qA0AAAAAAAAAAAAw3syaNaulU0j/4z/+owvVAAAATe6444589atfHTZm2rRp+bd/+7cuVQRPZXAA48FKDetzaq3tOVp7CWqtDyeZ2xDWVGcvNNX01y7UcHfDej/eNxgYtdYkrQ0FaHVwwKqrrpp999032267bSZOnDim+gAAAAAAAAAAAACWVkcccUSe9rSnDRtz7rnn5re//W2XKgIAAJbk+OOPz7x584aNefvb35611lqrSxXBU03qdQHQBSs2rM/pShVDeWYOs95UZy/0w71rytG1+1ZK2XGMW2zZlkKgjRYuXPi3f541a1buu+++vw0T+HsTJgw/b2jixInZfvvt84xnPKPlIQMAAAAAAAAAAAAA49XkyZPz8Y9/PPvss8+wcf/2b/+W73//+12qCgAA+Ht33313vvjFLw4bs+qqq+bd7353lyqCxTM4gPFghYb1B7tSRXOefhwc0A/3rp/u24VdzAVd8eTBARMmTMiMGTMyd+7cEe+zxhprZJdddslyyy3XzvIAAAAAAAAAAAAAlmqvetWrsuuuu+a8885bYszZZ5+dX/3qV9lll126WBkAAPCED33oQ3nooYeGjfnIRz7i3Sp6bvijg2HpsEzD+vC/W7dP05u4TXX2Qj/cu0G8bzAwnjw4IEmmTZuWyZMnLzZ2woSntg2TJ0/OzjvvnL322ktjCwAAAAAAAAAAADAKJ554YiZOnDhszLve9a4uVQMAADzZtddemy9/+cvDxjzrWc/KYYcd1qWKYMkMDmA8mNKwPr8rVTTnaaqzF/rh3g3ifYOB8feDA5Jk1qxZKaU85ft//7111lkn+++/f57+9KcvNh4AAAAAAAAAAACAZltuuWX+6Z/+adiYSy65JKeddlqXKgIAAJ7w7ne/O/PnL/k1x1JKPvWpTy320FboNv8WMh70w8vvreTpxxfg++HeDeJ9g4GxuMEBEydOzIwZM57y/SeGA0ydOjUveMEL8pKXvCQzZ87seI0AAAAAAAAAAAAAS7sPf/jDWWuttYaNed/73pfHH3+8SxUBAAAXXHBBvvvd7w4bc/jhh2fHHXfsUkUwvEm9LgC6oGlAxoKuVNGcZ2JXqhiZfrh3/XTfnjvG67dM8oV2FALtsrjBAUkybdq0PPbYY//n4XIpJRtssEF22mmnTJ8+vVslAgAAAAAAAAAAACz1Zs2alRNPPDH77bffEmNuuOGGfOYzn8nb3va2LlYGAADj17ve9a5h11ddddV89KMf7VI10MzgAMaDphPru/XfQVOefhz9OD/J5GHWu3Hv+ua+1Vp/M5brnzitHfpJrXWJazNnzswDDzyQWmsmTJiQbbfdNi9+8Yu7WB0AAAAAAAAAAADA+LHvvvvmxBNPzH333bfEmIkT+/G8OgAAWPrcdddd2WOPPbLHHnssMeb5z39+ll9++e4VBQ0MDmA8mNew3q3/DoZ7AT9prrMX5qX3gwMG8b7BwFi4cOES1yZNmpTp06dnwYIFmTlzZtZaa60uVgYAAAAAAAAAAAAw/rz1rW/tdQkAAECS1VdfPcccc0yvy4ARMTiA8aDpRPopXaliMF+A74d7N4j3DQbGrFmzsvzyy2fhwoWptWbBggWptWbhwoVZuHBhZs2a9bf/u5TS63IBAAAAAAAAAAAAAAAAgMUwOIDxYG7D+syuVJHMalhvqrMX5iZZfpj1bty7QbxvMDBOOOGEluJqrZ0tBAAAAAAAAAAAAAAAAAAYtQm9LgC64L6G9WW7UkVznqY6e6Ef7t0g3jdY6pRSUkrpdRkAAAAAAAAAAAAAAAAAwGIYHMB4cG/D+vLdKCLJcg3rTXX2Qj/cu6Yc/XjfAAAAAAAAAAAAAAAAAACgawwOYDy4p2F9aill+U4WUEpZMcmUhrB+fAG+6d6t3oUamnL0430DAAAAAAAAAAAAAAAAAICuMTiA8eDWFmJW63ANrezfSp3d1lRTp+9bKzlu6UINAAAAAAAAAAAAAAAAAADQtwwOYKlXa52b5lPp1+twGes3rP+11vpQh2sYjZsb1jt935Lme3dTF2oAAAAAAAAAAAAAAAAAAIC+ZXAA40XTy+Ubdzj/0xrW+/Xl917ft2Rw7x0AAAAAAAAAAAAAAAAAAHSFwQGMF1c1rG/a4fxN+zfV1ytNda1cSlmxU8lLKSsnadq/X+8dAAAAAAAAAAAAAAAAAAB0hcEBjBeXNaxv0+H82zas/77D+Uel1npzkvsbwjp575ru27211ts6mB8AAAAAAAAAAAAAAAAAAPqewQGMF02DA7YupUzsROJSyqQkWzWE9eXggEWa7t2zOpi7ae9+vm8AAAAAAAAAAAAAAAAAANAVBgcwXvwuyaPDrM9M516A3yHJ9GHWH01yaYdyt8MFDesv6GDuFzasN9UGAAAAAAAAAAAAAAAAAABLPYMDGBdqrY8m+XVD2Is7lP5FDevnL6qvX53bsL5LKWVKu5OWUpZJsnND2E/bnRcAAAAAAAAAAAAAAAAAAAaNwQGMJ00vme/Tobz7Naz/pEN52+WiJA8Osz4jyR4dyPuyJNOGWZ+d5JIO5AUAAAAAAAAAAAAAAAAAgIFicADjyRkN69uWUjZtZ8JSypZJnjFMSE1zXT1Va52f5DsNYQd3IHXTnmctqg0AAAAAAAAAAAAAAAAAAMY1gwMYN2qtNyS5qCHsLW1O+9aG9QtrrTe3OWcnfL1hfd9SyprtSlZKWTfJKxrCmmoCAAAAAAAAAAAAAAAAAIBxweAAxpuTGtYPK6Ws0Y5EpZS1k7y2IezkduTqgnOT3DbM+uQk72pjvnclmTTM+q1Jft7GfAAAAAAAAAAAAAAAAAAAMLAMDmC8+WqSvw6zPj3JR9uU62NJlhlm/e5F9fS9WuuCJCc0hL25lLLpWHOVUp6e5MiGsE8sqgkAAAAAAAAAAAAAAAAAAMY9gwMYV2qtjyY5sSHsdaWUV40lTynlgCQHN4SdUGt9bIx51i+l1IavY8aS40m+kOS+YdYnJ/laKWXKaBOUUqYm+VqSScOE3ZfkS6PNAQAAAAAAAAAAAAAAAAAASxuDAxiPTkhyW0PMKaWUHUazeSnlOUm+3BB2S5oHGPSVWuvcJB9qCNsuyVdKKSP+vaWUMjHJKUm2aQj9wKJaAAAAAAAAAAAAAAAAAACAGBzAOFRrfTjJOxrCZiX5SSllr5HsXUp5RZIfJ5nZEPrOWusjI9m7T3w2yR8aYg5OckYpZdlWNy2lLJfk20kObAi9IsnnW90XAAAAAAAAAAAAAAAAAADGA4MDGJdqrWck+UZD2HJJvldK+XopZbPhAkspTy+lfCvJd5I0vTD/9VrrmS0X20dqrQuSvDbJow2hr0pyVSnl9aWUZZYUVEqZVkp5Y5KrkuzdsOcjSV67qAYAAAAAAAAAAAAAAAAAAGCRSb0uAHroiCTPSrLpMDElycFJDi6l/D7JhUluSjI3yawkGyTZKclWLea8JsmRoy24H9Ra/1BKeUuSLzaErp3kK0k+UUr5eZIrktyToXu6cobu2a5pHrTwhLfUWv84uqoBAAAAAAAAAAAAAAAAAGDpZXAA41atdW4pZY8k5ydZp4VLtln0NVq3Jtmj1jp3DHv0hVrrl0op6yT5YAvhyyd51aKv0Tqm1vrlMVwPAAAAAAAAAAAAAAAAAABLrQm9LgB6qdZ6S4ZOvb+hw6n+nGTXWuutHc7TNbXWDyX5ty6kOrbWemwX8gAAAAAAAAAAAAAAAAAAwEAyOIBxr9b65yTbJ/lxh1L8KMn2tdZODyfoukXDAw5MMrcD289Nsn+t9ZgO7A0AAAAAAAAAAAAAAAAAAEsNgwMgSa31/lrrS5K8Pslf27TtX5McWmt9aa31gTbt2Xdqracl2TzJmW3c9owkm9daz2jjngAAAAAAAAAAAAAAAAAAsFQyOACepNZ6SpINk7w5ydWj3OZPi67foNZ6artq62e11ttrrfsleVaSryV5ZBTbPJLkq0m2rbXuX2u9vZ01AgAAAAAAAAAAAAAAAADA0mpSrwuAflNrfSjJZ5J8ppSySZKXJNk2yRZJ1koyK8n0JA8neTDJ7RkaFnBZkh/WWq/vYq03Jyndytek1npZkteWUg5PsmuS5yfZMskmSVbI0L1Lhu7bfUmuS3JVkl8k+XmtdTQDBwAAAAAAAAAAoC/VWntdAgAAAAAAdJzn4f3B4AAYRq31ugy93M4ILBoAcM6iLwAAAAAAAAAAWOpNmDDhKd/zQUkAAAAAAMaDxT0PX9xzczrLHQcAAAAAAAAAAIAxKqU85XsLFy7sQSUAAAAAANBdi3sevrjn5nSWwQEAAAAAAAAAAAAwRpMmTXrK9x5//PHFnrIEAAAAAABLi4ULF+bxxx9/yvcX99yczjI4AAAAAAAAAAAAAMZoypQpi/3+vHnzulwJAAAAAAB0z+KGBiRLfm5O5xgcAAAAAAAAAAAAAGNkcAAAAAAAAOPRkp6DGxzQfQYHAAAAAAAAAAAAwBhNnjx5sd83OAAAAAAAgKWZwQH9w+AAAAAAAAAAAAAAGKMlfQDyoYce6nIlAAAAAADQPUt6Dr6kgbt0jsEBAAAAAAAAAAAAMEYTJkzI1KlTn/L9hx9+OAsWLOhBRQAAAAAA0FkLFixY7OCAqVOnZsIEr7F3mzsOAAAAAAAAAAAAbbDssss+5Xu11jz44IM9qAYAAAAAADprSc+/F/e8nM4zOAAAAAAAAAAAAADaYNasWYv9/uzZs1Nr7XI1AAAAAADQObXWzJ49e7FrBgf0hsEBAAAAAAAAAAAA0AZTp07N1KlTn/L9hx9+eImnLgEAAAAAwCB68MEH8/DDDz/l+1OnTs2UKVN6UBEGBwAAAAAAAAAAAECbLOkUpbvvvjsLFy7scjUAAAAAANB+CxcuzN13373YtSU9J6fzDA4AAAAAAAAAAACANllhhRUyadKkp3x//vz5ueuuu1Jr7UFVAAAAAADQHrXW3HXXXZk/f/5T1iZNmpQVVlihB1WRGBwAAAAAAAAAAAAAbTNx4sSsuuqqi12bPXu24QEAAAAAAAysJ4YGzJ49e7Hrq666aiZOnNjlqniCwQEAAAAAAAAAAADQRssuu2ymT5++2LUHHnggd955ZxYuXNjlqgAAAAAAYPQWLlyYO++8Mw888MBi16dPn55ll122u0XxfxgcAAAAAAAAAAAAAG1USsnqq6+eUspi12fPnp0bbrghc+bMSa21y9UBAAAAAEDraq2ZM2dObrjhhsyePXuxMU3PxemOSb0uAAAAAAAAAAAAAJY2U6dOzdprr53bb799scMB5s+fnzvuuCPTp0/Pcsstl1mzZmXixIk9qBQAAAAAAJ5qwYIFefDBBzN79uw8/PDDS4wrpWTttdfO1KlTu1gdi2NwAAAAAAAAAAAAAHTAzJkzhx0ekCQPP/xwHn744dx5552ZMWNGZsyYkSlTpvzty+lMAAAAAAB0Wq018+bN+9vXQw89lIceeqjxuieGBsycObMLVdLE4AAAAAAAAAAAAADokFaGBzxhcR/EnDx5ciZMmJBSiiECAAAAAAC0Ta01tdYsXLgwjz/++IivNzSg/xgcAAAAAAAAAAAAAB00c+bMbLDBBrnrrrvy8MMPj+ja0XxYEwAAAAAAOmn69OlZffXVM3Xq1F6XwpMYHAAAAAAAAAAAAAAdNnXq1Ky77rqZM2dO/vrXv2b+/Pm9LgkAAAAAAEZk0qRJWXXVVbPsssumlNLrcvg7BgcAAAAAAAAAAABAF5RSstxyy2XmzJm5//77M2fOnDz22GO9LgsAAAAAAIY1derULLvssllhhRUyceLEXpfDEhgcAAAAAAAAAAAAAF00ceLErLzyyll55ZUzb968zJkzxxABAAAAAAD6yhPDApZddtlMmTKl1+XQAoMDAAAAAAAAAAAAoEemTJnytyECCxcuzOOPP5558+b97Wv+/PmptWbhwoW9LhUAAAAAgKXMhAkTUkrJpEmTMmXKlL99TZ48ORMmTOh1eYyQwQEAAAAAAAAAAADQByZMmJCpU6dm6tSpvS4FAAAAAAAYMEY9AAAAAAAAAAAAAAAAAAAAwAAzOAAAAAAAAAAAAAAAAAAAAAAGmMEBAAAAAAAAAAAAAAAAAAAAMMAMDgAAAAAAAAAAAAAAAAAAAIABZnAAAAAAAAAAAAAAAAAAAAAADDCDAwAAAAAAAAAAAAAAAAAAAGCAGRwAAAAAAAAAAAAAAAAAAAAAA8zgAAAAAAAAAAAAAAAAAAAAABhgBgcAAAAAAAAAAAAAAAAAAADAADM4AAAAAAAAAAAAAAAAAAAAAAaYwQEAAAAAAAAAAAAAAAAAAAAwwAwOAAAAAAAAAAAAAAAAAAAAgAFmcAAAAAAAAAAAAAAAAAAAAAAMMIMDAAAAAAAAAAAAAAAAAAAAYIAZHAAAAAAAAAAAAAAAAAAAAAADzOAAAAAAAAAAAAAAAAAAAAAAGGAGBwAAAAAAAAAAAAAAAAAAAMAAMzgAAAAAAAAAAAAAAAAAAAAABpjBAQAAAAAAAAAAAAAAAAAAADDADA4AAAAAAAAAAAAAAAAAAACAAWZwAAAAAAAAAAAAAAAAAAAAAAwwgwMAAAAAAAAAAAAAAAAAAABggBkcAAAAAAAAAAAAAAAAAAAAAAPM4AAAAAAAAAAAAAAAAAAAAAAYYAYHAAAAAAAAAAAAAAAAAAAAwAAzOAAAAAAAAAAAAAAAAAAAAAAGmMEBAAAAAAAAAAAAAAAAAAAAMMAMDgAAAAAAAAAAAAAAAAAAAIABZnAAAAAAAAAAAAAAAAAAAAAADDCDAwAAAAAAAAAAAAAAAAAAAGCAGRwAAAAAAAAAAAAAAAAAAAAAA8zgAAAAAAAAAAAAAAAAAAAAABhgBgcAAAAAAAAAAAAAAAAAAADAADM4AAAAAAAAAAAAAAAAAAAAAAaYwQEAAAAAAAAAAAAAAAAAAAAwwAwOAAAAAAAAAAAAAAAAAAAAgAFmcAAAAAAAAAAAAAAAAAAAAAAMMIMDAAAAAAAAAAAAAAAAAAAAYIAZHAAAAAAAAAAAAAAAAAAAAAADzOAAAAAAAAAAAAAAAAAAAAAAGGAGBwAAAAAAAAAAAAAAAAAAAMAAMzgAAAAAAAAAAAAAAAAAAAAABpjBAQAAAAAAAAAAAAAAAAAAADDADA4AAAAAAAAAAAAAAAAAAACAAWZwAAAAAAAAAAAAAAAAAAAAAAwwgwMAAAAAAAAAAAAAAAAAAABggBkcAAAAAAAAAAAAAAAAAAAAAAPM4AAAAAAAAAAAAAAAAAAAAAAYYAYHAAAAAAAAAAAAAAAAAAAAwACb1OsCAMaR6X//jT/+8Y+9qAMAAAAAAAAAAAAAAAAAgBYs4V3Qp7wz2mul1trrGgDGhVLKPyT5Qq/rAAAAAAAAAAAAAAAAAABgTA6vtX6x10U82YReFwAAAAAAAAAAAAAAAAAAAACMnsEBAAAAAAAAAAAAAAAAAAAAMMAMDgAAAAAAAAAAAAAAAAAAAIABVmqtva4BYFwopayRZK+/+/aNSR7uQTmwOFsm+cLffe/wJFf2oBYAAMYf/SgAAL2mJwUAoJf0owAA9JJ+FACAXtOT0u+mJ9nw7753dq31zl4UsySTel0AwHix6A+AL/a6DliSUsrivn1lrfU33a4FAIDxRz8KAECv6UkBAOgl/SgAAL2kHwUAoNf0pAyIn/W6gCYTel0AAAAAAAAAAAAAAAAAAAAAMHoGBwAAAAAAAAAAAAAAAAAAAMAAMzgAAAAAAAAAAAAAAAAAAAAABpjBAQAAAAAAAAAAAAAAAAAAADDADA4AAAAAAAAAAAAAAAAAAACAAWZwAAAAAAAAAAAAAAAAAAAAAAwwgwMAAAAAAAAAAAAAAAAAAABggBkcAAAAAAAAAAAAAAAAAAAAAAPM4AAAAAAAAAAAAAAAAAAAAAAYYAYHAAAAAAAAAAAAAAAAAAAAwAAzOAAAAAAAAAAAAAAAAAAAAAAGmMEBAAAAAAAAAAAAAAAAAAAAMMAMDgAAAAAAAAAAAAAAAAAAAIABZnAAAAAAAAAAAAAAAAAAAAAADDCDAwAAAAAAAAAAAAAAAAAAAGCAlVprr2sAAAAAAAAAAAAAAAAAAAAARmlCrwsAAAAAAAAAAAAAAAAAAAAARs/gAAAAAAAAAAAAAAAAAAAAABhgBgcAAAAAAAAAAAAAAAAAAADAADM4AAAAAAAAAAAAAAAAAAAAAAaYwQEAAAAAAAAAAAAAAAAAAAAwwAwOAAAAAAAAAAAAAAAAAAAAgAFmcAAAAAAAAAAAAAAAAAAAAAAMMIMDAAAAAAAAAAAAAAAAAAAAYIAZHAAAAAAAAAAAAAAAAAAAAAADzOAAAAAAAAAAAAAAAAAAAAAAGGAGBwAAAAAAAAAAAAAAAAAAAMAAMzgAAAAAAAAAAAAAAAAAAAAABpjBAQAAAAAAAAAAAAAAAAAAADDADA4AAAAAAAAAAAAAAAAAAACAAWZwAAAAAAAAAAAAAAAAAAAAAAwwgwMAAAAAAAAAAAAAAAAAAABggBkcAAAAAAAAAAAAAAAAAAAAAAPM4AAAAAAAAAAAAAAAAAAAAAAYYAYHAAAAAAAAAAAAAAAAAAAAwAAzOAAAAAAAAAAAAAAAAAAAAAAGmMEBAAAAAAAAAAAAAAAAAAAAMMAm9boAABgPSilTk2ySZO0ks5JMT/JwkgeT3J7k2lrrvN5V2L9KKatn6N6tkGTZRd+ek+T+JNfVWu/qVW0AAINCPwoAQK/pSQEA6CX9KAAAvaQfHZ1SyipJ1kmyRobu2zJJapJHM3Tv7kxyW631np4VCQDAUq+UslKSzZKslKG+dGKG+tHZSa6vtd7Ww/LgKUqttdc1AMBSqZTynCSvTPLSJFtkqDFckgVJrkrygyTfrbVe1PEC+1QpZfkk+yZ5WZIXZmhgwHDuS/KLJOck+Xat9YEOlgcAMDD0o60rpaya5BlJtszQvdo0Qw94l1/0tUyGPnjwUJK7ktyR5E9Jrkjyy1rrrV0vGgBgAOhJAQDoJf1o+5RSZiV5fpLnZOj56SZJVs7//9LbY0nmLvq6LcmNSW5IcnmSi73IBQCMR/rRkSulbJlkzwx9dnTbJKu0eOndSS7Los+S1lqv6kiBAACMC6WU6UlekaHedLckqzdc8mCSCzL0XtOZDkil1wwOAIA2K6W8Osm7MvTQcrQuTfKftdb/aU9V/a+UsnaS9yY5NMmMUW7zUJKTk3y01np7m0oDABgo+tFmi6a/vjBDD3R3zdCHXMfi2iTfTHJKrfXmMe4FADDw9KTdUUp5X5J/bzF8A70qADBe6Efbo5SyTIaG/r8xyfOSTBrDdn/O/38gwLm11rljLhAAoE/pR0emlDI1yeuSvCVDA//b4Yokn0zytVrrvDbtCQAwcEop6yfZ7klfz8rQYUpLVGstHS+sT5VSVshQL39EkhVHuc28JP+T5CO11mvaVRuMhMEBANAmpZTNknw+yS5t3PYXSY6stV7bxj37SillQpKjkxyTZGabtp2b5ENJTqi1LmzTngAAfU0/OrxSyjpJ9k9yQJIdknTi4faCDD3wPbbWel0H9gcA6Gt60u4ppWySoQ+/LtPiJQYHAABLPf1oeywaGPCWJO/J6D8cO5x5Sd5Qa/16B/YGAOgZ/ejIlVIOSHJ8knU6lOLmJEfXWr/Tof0BAPrGosM8/35IwMoj3We8Dg4opbwuQ73pKm3acl6S/8rQ50kfa9Oe0BKDAwCgDUop+yQ5Je178f3J5iZ5Xa31rA7s3VOllOUydDLrSzuU4pwkh9RaZ3dofwCAvqAfXbJSyluSHJTkOenMsIDFmZfko0k+XGud36WcAAA9pSftnlJKSfLzJM8fwWUGBwAASzX9aHuUUvZM8tl07sWtJxxdaz2hwzkAALpGPzoypZRZSb6Y5MAupTwlyVG11oe7lA8AoKNKKasl2T7/d1DAau3Ye7wNDiilTM3QM9HDOpTikiSvqrX+pUP7w1MYHAAAY1RKeXOST6WzLyHVJP9Ua/1MB3N0VSlllQxNw316h1NdleQFtdZ7OpwHAKAn9KPDK6U8mmRqj9L/OskBHvgCAEs7PWl3lVIOz9DJZSNhcAAAsNTSj45dKWWZDJ1+dVSXUhocAAAsNfSjI7PoJbcfJdm6y6kvTvKyWut9Xc4LANB2pZTLk2zVib3H0+CAUsq0JD/MyIb2j8ZfkuxSa72hw3kgSTKh1wUAwCArpRyazj/wzaL9/18p5XUdztMVpZTlkvw4nR8akCRbJPnJopwAAEsV/Wjf2ynJr0spG/a6EACATtGTdlcpZY0kH+91HQAA/UI/OnallOWT/CTdGxoAALDU0I+OTCll2SQ/TfeHBiTJs5P8qJQyvQe5AQDoM6WUyUnOSueHBiTJmkl+VkpZuwu5IKXW2usaAGAglVJ2SHJBkskthF+Y5BuL/vfmJA8mmZVkwyTPTXJIhh5KNpmXZOda629HUXLfKKWcleSVLYQ+kOSbSX6Q5PIk92ToAfjKGXpwvGeSVydpZSjAWbXWfUZcLABAn9KPtqaU8miSqSO45J4kv09yY5LbMnSvHk+yQpKVMjSYaqckM0ew5y1Jnl1rvXsE1wAA9D09afeVUr6d5FWjuHSDWuvNbS4HAKCn9KNjV0pZNcnPkmw5gsuuS3JFkj8nuTfJQ0mWSbL8oq+NMvTz/OE+BHt0rfWEkdYLANBP9KMjN4LPjibJ3CTfztA9/m2Svya5L0OfIV0xyWpJdkjyvAw9M53W4r5fq7W+tvWqAQD6Tynl8iRbdWLvWmunh2L1hVLKCUne1kLow0nOTPLdJJcluTvJggx9nvQZSV6c5DUZ6k+bXJKhfv7xUZQMLTM4AABGYdHU08uTbNAQen2Sf6y1/qyFPXdP8pkM/RB9ODcl2brWOqeFUvtOKeWtSU5sCKuLYo6ttT7QsN8KSY5N8pYW0r+11vqpVuoEAOhn+tHWtTA44JEkP07ywyTn1lpvbGHPSUlemORfkryoxVIuTLJLrXVBi/EAAH1NT9p9pZR9MvSBhNEwOAAAWKroR8eulDIjyS+SbNdC+BVJvpzkjFrrnS3uv1KGhrC+IsleSVZ90rLBAQDAQNOPjlwp5aAMDU9o8kiSf0vy2Vrr7Bb3XilDnyF9b5IpLVyyd631+63sDQDQjwwOGJtSyt4ZGgTQ5OtJ3tX0TLSUMi3JPyf5YJJJDXv+d631nS0VCqNkcAAAjEKLk6XOTbJfqw8uF+27fIYmpL6wIfQTtdZ3tLpvvyilrJXk2iQzhgmbl+TVtdazRrj3fhl6qDzc9N65STattf5lJHsDAPQb/Wjrhhkc8OskX0zy7Vrrg2PY/wUZeji8Zgvh7661fny0uQAA+ometLtKKcsluTrJGotZvjFDJ5MNx+AAAGCpoh8dm1JKSfK9DL3QP5xbkrwzQ89RR/1Bw1LKhCQvSPJPSfZO8s8GBwAAg0w/OjKLhvNfm+bnmNcl2bfWeuUo8zwryRlJ1m8I/VOSZ9RaF44mDwBAr41ycMDNGeq3dh8uaGkfHLBooOq1SdYaJqwmeUut9dMj3Pt5Sc5OsuwwYQuTbFdr/f1I9oaRMDgAAEaolPL0DE3TH24K1G+SvKjW+vAo9p+R5LwkOwwTNj/JM2utV490/14qpXwjyUHDhNQMPSj/9ij33z/JaQ1h36i1HjKa/QEA+oF+dGT+bnDA/AwNm/pErfXyNuZYJcl3kjy3IfTBJBvWWu9pV24AgF7Qk3ZfKeULSf5hCcsvSfKjhi0MDgAAlhr60bErpbwrSdOQ0/9Jcni7T7ItpaybZLla6x/buS8AQLfoR0eulPKqDA1EGM5dSZ5Ta71ljLk2TnJhkpUbQl9aa216rgoA0JdaGBxwW5LfJbl00f/+rtZ6byll/SQ3Dbf3OBgc8JEk720IO3q0g09LKTtlqJ+fMkzYr2utO49mf2jFhF4XAAAD6EMZ/oHvfUkOHM0D3ySptT6U5IAkDwwTNinJB0ezf68selj+6oaw/xrt0IAkqbWenuSEhrCDSimbjTYHAEAf0I+O3PwkX0yySa310HYODUiSWuv/Jnl5kmsaQmel+dQJAIBBoCftolLK85O8aQnL36q1/rib9QAA9AH96BiUUrZJclxD2CeSHNTuoQFJUmu91dAAAGDA6UdHrpXDnl471qEBSVJrvT7J61sIdQAVALC0+EuS72WoP9wzyaq11nVrrfvUWv+91vrjWuu9vS2xP5RSVkrzZzjPGO3QgCSptf46yb80hO1UStljtDmgSam19roGABgYpZQNk1yXZOIwYUfVWj/bhlxvTXLiMCELkjxtUE6JKqV8JcM/jL0lyWa11kfHmGd6kmuTrD1M2Em11jeOJQ8AQC/oR0eulPLNJMfUWq/tQq5NklyZZPIwYbclWb/WurDT9QAAdIKetLtKKctk6PSyTRaz/ECGnqneXUpp+qHvBkvzfQIAxg/96NiUUkqSizL86bWn1Fpf352KAAAGi3505Bb1oPckWXGYsJ/VWl/U5ry/TLLLMCF31lrXbGdOAIBuKaW8McndSX5Xa71rBNetn+Sm4WJqrWVs1fWvUsqHkhwzTMiDSTautd49xjwlyW+TPGuYsPNqrbuNJQ8syYReFwAAA+bNGf6B7/VJvtCmXJ9JcuMw6xMX1dP3Fk3lOrgh7INjHRqQJIum9H6oIew1pZThHkIDAPQr/egI1VoP6sbQgEW5rsvQfRvOOkm27UI5AACdoiftrg9k8UMDkuQ9Y/3AAgDAANKPjs1rM/zQgCuTHNGlWgAABpF+dOTWz/BDA5LkSx3I2/T/hzVKKWt1IC8AQMfVWr9caz17JEMDxrtSyqQkRzWEHd+On8HXodPe/6UhbNdSypZjzQWLY3AAALSolDIxyUENYZ+otS5oR75a6/wkn2wIO7iUMgh/nh+YZMow63ck+WYb8309Q9PTlmRKkv3bmA8AoOP0owPj+BZiXtDpIgAAOkFP2l2llGcmedcSln+T9n0AGQBgIOhHx6aUMjnJccOE1CSvr7U+1qWSAAAGin501DZqWF+Y5NwO5P1phnrc4TytA3kBAOhPuydZdZj1R5J8ul3Jaq3nJfl9Q9gh7coHT9bvf0kEgH6ya5I1hll/NMnX2pzzlCTzhllfM4Px0lFTM3tyrfXxdiVb9EGGUxrCNNgAwKDRjw6AWuvtSa5oCHtGN2oBAOgAPWmXLPqw7xeTTF7M8vwkRyw6pQAAYDzRj47Nq5OsM8z6N2qtl3arGACAAaQfHZ0VGtbvrLXe0+6ktda/Jmk6gXflducFAKBvNb1D9O1a671tzvnFhvWDSymlzTnB4AAAGIGXN6yfU2t9sJ0Ja60PJPlhQ1hTXT1VSlkpyY4NYd/qQOpvNqzvVEpZsQN5AQA6RT86OH7VsL5hV6oAAGg/PWn3vC3JDktY+69a6x+7WQwAQJ/Qj47NOxrW/70rVQAADC796OhMbVhv+9CAJ/nfhvVpHcwNAECfWDS4/2UNYZ14r+n0DB0MsCTrJnlmB/IyzhkcAACte1HD+jkdytu074s7lLdddksy3ASsW2utV7Y7aa318iR3DBMyIUMTgAEABoV+dHA0nVqwfDeKAADoAD1pF5RS1k/y4SUs35Tk2O5VAwDQV/Sjo1RK2SbJ1sOE/KrWenWXygEAGFT60dGZ3bD+UAdzN+09p4O5AQDoH9tl+M9tPpbkZ+1OWmu9J8klDWH93s8zgAwOAIAWlFLWSLJ5Q9i5HUr/04b1LUopq3codzvs1rDeqfvWyt5ND/IBAPqCfnTgOLUAAFjq6Em76nNJZixh7aha6yPdLAYAoB/oR8fsoIb1b3SlCgCAAaUfHZN7G9ZX6mDupr2bagMAYOnQ9F7Trzv4c/imft57TbSdwQEA0JodGtZvq7Xe1onEtdabk9zZELZ9J3K3SdO9+3UHc1/YsN7P9w0A4Mn0o4NlesP6o12pAgCgvfSkXVBKeW2SPZaw/D+11h91sx4AgD6iHx2bAxrWz+5KFQAAg0s/OnrXJKnDrK/WwdxNe9/YwdwAAPQP7zUxrhgcAACt2bZh/bIO5/9dw/o2Hc4/KqWUKUm2aAjr5L1rum9bllImdzA/AEC76EcHyzoN6/d3pQoAgPbSk3ZYKWXlJP+9hOXZSd7evWoAAPqOfnSUSimbJFlvmJBra613dKseAIABpR8dpVrrfUmuGiZk+VLKM9qdt5SyVZLlhgm5sdbaNJABAIClQy/7+aZefsVSyrodzM84ZHAAALRm64b1P3Q4f9P+/frQd4skw72YvyDJnzqY/8okC4dZn5Lk6R3MDwDQLls3rOtH+0vTQ+YbulIFAEB7bd2wricduxOTrLyEtffWWu/qZjEAAH1m64Z1/eiSvaBh/eJuFAEAMOC2bljXjw7vBw3rL+tAzj0b1n/WgZwAAPSZUsqKSZpezO9YP79okFbT4NZ+7+cZMJN6XQAADIhNGtav73D+Pzesb9zh/KPVdN9uqbXO61TyWuu8UsptGf70hI2TXNGpGgAA2kQ/OiBKKcsl2akh7Mpu1AIA0GZ60g4qpbwkycFLWL4oyee6WA4AQD/Sj47eLg3rLZ2mVUpZKUOD+VdJMitDBwU8lOR/k9yc5I5aax19mQAAfU0/OjafSfLOJBOXsP62Usona62PtCNZKWVmkre1UBMAAEu/pl758SS3dLiGPydZa5j1fu/nGTAGBwBAg1JKSbJ+Q1jTQ9mxatp//Q7nH60NGtY7fd+eyDHc4ICmGgEAeko/OnD2SzKlIeaX3SgEAKBd9KSdtehDrEsaDDA/yeFewAIAxjP96Jht3bC+xF9bKeWFSfbP0GmtTadyzS6lXJTkp0nOrLXePIIaAQD6ln507Gqtt5RSvp7kdUsIWSPJB5K8r00p/y3JqsOsn1drvbxNuQAA6G9N7wzdVGtd0OEa/pzk+cOse6+JtprQ6wIAYACslmSZhpi/dLiGpv1nlFKGe8jZK+s3rHf6vrWSQ4MNAPQ7/eiAWPSBkaZTC/6S5NIulAMA0E560s46LksefvrftdY/drMYAIA+pB8dpVLK5DSfjnvDYq7bp5RyRZLzkvxjmocGJMlySfZIcnySm0opPy6l7DrCkgEA+pF+tD3ekeTuYdbfW0pZ0mCBlpVSjkxy9DAhjyY5aqx5AAAYGOs3rHuviaWOwQEA0GzNFmLu6nANrezfSp3d1lRTp+9bKzn68b4BADyZfnRwvDrJMxpivlFrXdiNYgAA2khP2iGllB2SvGUJyzcnObZ71QAA9C396OhtnGRyQ8zfXt4qpaxZSvlRkjOTPHOMuXdP8rNSyndLKUsalAUAMAj0o21Qa703yWuSzBsm7CullI+UUiaNdP9SytRSyglJPtsQ+q5a67Uj3R8AgIHlvSbGHYMDAKDZSg3rc2qtj3WygFrrw0nmNoQ11dkLTTX9tQs1DDehNunP+wYA8GT60QFQSpmR5D8awuYn+X9dKAcAoN30pB2w6PTXL2XJP7N986JfNwDAeKcfHb11GtbnJ3kgSUopz01yaZI92lzD3kl+X0p5eZv3BQDoFv1om9Raz01yQIb60MWZkOS9Sf5YSjm8lDK9ac9SyqxSyj8luSrJ2xrCj6u1+pk9AMD44r0mxp0RT2IDgHFoxYb1OV2pYijPzGHWm+rshX64d005+vG+AQA8WT/0VE/kGbR+tJs+lqTp1KxTa623dKMYAIA205N2xruTPGMJa6fXWn/QzWIAAPqYfnT01mhYf7DWWkspOyf5UZIZHapjhSTfKaUcVWv9fIdyAAB0in60jWqt3y2lvDDJ15Osu4SwzZJ8PsmnSimXJflthl7ouj9JyVB/uVqSZyfZOs3vxTye5P211v8c8y8AAIBB0w/9vPea6CqDAwCg2QoN6w92pYrmPP3YKPbDvRvE+wYA8GT90FO1kmfc9lWllN2THNUQ9mCS93ehHACATtCTtlkpZdMk/7qE5dlpPhkLAGA80Y+OXtPggHmllM2S/CCdGxrwhAlJPldKebzWelKHcwEAtJN+tM1qrReUUrZK8uEk/5Bk6hJCpyR5zqKv0boqyRtrrRePYQ8AAAZXP/TzTTmml1Km1lof60ItjAMTel0AAAyAZRrWH+pKFcnchvWmOnuhH+7dIN43AIAn64eeKtFXLVYpZa0kX8vQqQbD+WCt9a4ulAQA0Al60jYqpZQkX8ySPwz7vlrrnV0sCQCg3+lHR2+5hvUJSc5IMmuYmOuTHJ/kxUk2TbJ8kulJNkyyU4YGpl6cpLZY0+dKKbu0GAsA0A/0ox1Qa32g1vqWDPWVH03y5zanuCzJQUmeaWgAAMC41g/9fFMvnwxYP09/m9TrAgBgAExpWJ/flSqa8zTV2Qv9cO8G8b4BADxZP/RUreQZd31VKWVKktOSrNIQ+qskn+x8RQAAHaMnba8jkjxvCWsXJ/lcF2sBABgE+tHRm9awvkqW/Hzz1iTvqrWetoT1mxZ9XZjkI6WUHZJ8KskODTknJzm1lPKMWmu3TucFABgL/WgH1Vr/Ukr5cJKLkrwvzf1kkyuSHGFYAAAAi/RDP99KjoHs5+lPE3pdAAAMgH5oElvJ049NYj/cu0G8bwAAT9YPPVUrecZjX/X5JM9tiJmT5PW11oVdqAcAoFP0pG1SSlkzQ6dnLc78DH2gVe8IAPB/6UdHb7SnVH0/yebDDA14ilrrJUmek+S4FsLXS/LhUdYGANBt+tEOKaU8rZTyxST3JPlOxj40IEm2SvLrUsr5pZQ3lFImt2FPAAAGVz/08wYH0FUGBwBAs6Y/Lxd0pYrmPBO7UsXI9MO9G8T7BgDwZP3QU7WSZ1z1VaWUf0ny+hZCX19rvanD5QAAdJqetH0+nWS5JaydUGu9opvFAAAMCP3o6I3mJanTkuxTa314pBfWIR9I8u4Wwv+xlLLeiKsDAOg+/WiblVKWK6WclOSaJG9KMq3NKSYm2TnJl5PcUEo5spRS2pwDAIDB0A/9fCs5Bqafp/8ZHAAAzZomO03qShXNeR7vShUj0w/3bhDvGwDAk/VDT9VKnnHTV5VSDs6ST4l9sv+qtZ7V6XoAALpAT9oGpZT9krxyCcu3JPlQ96oBABgo+tHRG+mHXq9OcmitdUynbNVaP57kfxrCpiR561jyAAB0iX60jUopz0vyhySHpTsvR62T5LNJflJKWbML+QAA6C/90M+3kmMg+nkGg8EBANBsXsN6tx76Np0E0FRnL/TDvRvE+wYA8GT90FMl+qokSSlljyQnJ2k6jeCsJP/S8YIAALpDTzpGpZTlk3xqmJA3j+ZEVwCAcUI/OnojqWlBhoYGPNqm3G9OcndDzOtLKVPblA8AoFP0o21SStkryblJ1m0h/LYkX0pyaJKtMjQAYHqSGYv+eeskr0/y5SS3t7Dfi5JcXkrZcqR1AwAw0Pqhn2/q5ZMB6OcZHAYHAECzpqlNU7pSxWA+9O2HezeI9w0A4Mn6oadK9FUppeyU5Ntpvhc/T3JQrXVh56sCAOgKPenYHZ9k9SWsnVlrPaebxQAADBj96OiNpKazaq2/bVfiWuu9Sf6rIWzFJC9sV04AgA7Rj7ZBKeUlSc5M8/26MsnBSTastf5DrfXUWusfaq2311ofqbU+vOifr6i1nlJrfVOSDZK8JsmfGvZeJcnPSilPH+uvBwCAgdEP/bzBAXSVwQEA0Gxuw/rMrlSRzGpYb6qzF/rh3g3ifQMAeLJ+6KmScd5XlVK2TnJOhk4wGM4lSfautT7W8aIAALpHTzoGpZQXJHnDEpbnJHlr14oBABhM+tHRe2gEsZ/tQP6TkjzaEPOyDuQFAGgn/egYlVLWSPL1NL+U9akkz6q1frPWOr/V/Wut82utX0+ybZLPNISvmuR7pZQZre4PAMBA64d+vqmXr0ke7kIdjBMGBwBAs/sa1pftShXNeZrq7IV+uHeDeN8AAJ6sH3qqVvIstX1VKWWzJD9JslxD6B+TvLTW2rcfyAAAGCU96SiVUpZJ8oUkZQkh76+1/qWLJQEADCL96Oi1WtOttdbz2p281npvku83hD2n3XkBANpMPzp2JyVZsSHmbbXWt9ZaR33Saq31sVrrm5O8syF0oyT/Ndo8AAAMlH7o55tyzK61LuhCHYwTBgcAQLN7G9aX70YRaX5JqanOXuiHe9eUox/vGwDAk/VDT5UMZj86ZqWUDZKcm2SVhtDrk7y41trPH8YAABgtPenofSjJxktYuyTNp18BAKAfHYtWa7qwgzU07f3MUsqkDuYHABgr/egYlFJ2TfKShrBP1Vo/2a6ctdb/TvLZhrAjSinPbFdOAAD6Vj/08005+rKXZ3AZHAAAze5pWJ9aSlm+kwWUUlZMMqUhrB8bxaZ7t3oXamjK0Y/3DQDgyfSjPVJKWSvJz5Ks1RB6S5IX1Vrv7nxVAAA9oScdhVLKVkn+eQnL85McUWtd2MWSAAAGlX509Jru3RMu6mANFzesT03zM1gAgF7Sj47NOxvW70jyLx3I+89J7mqIeUcH8gIA0F+818S4Y3AAADS7tYWY1TpcQyv7t1JntzXV1On71kqOW7pQAwDAWOhHe6CUslqGhgZs0BB6Z5Ldaq1L1a8fAODv6ElHqJQyMcmXkizp5NQTa62Xd68iAICBph8dvVZr+lMHa2hl73U6mB8AYKz0o6NUSlkjyUsbwv691vpou3PXWh9OclxD2EGdHvoAAEDPea+JccfgAABoUGudm+bpTet1uIz1G9b/Wmt9qMM1jMbNDeudvm9J8727qQs1AACMmn60+xad1vDTJJs2hP5vhoYG3ND5qgAAekdPOioHJdluCWu3JvlQF2sBABho+tExafXn4Q90sIY5SRY2xKzYwfwAAGOiHx2T5ycpw6zPT/KNDub/epIFw6xPSfK8DuYHAKD3bm5Y914TS50lnXABAPxfNyVZaZj1jZP8pIP5n9aw3q9NYlNdG3ehhkG9dwAAT6Yf7ZJSynIZupfPaAi9P8mLa61Xd74qAIC+oCcdmZWHWft1hk6y6lYtSXJgKWW4Dzc/WGv9n65VAwAwcvrRUai1zi2l/G+SVRpCH+hgDbWUMjvJCsOETe9UfgCANtGPjk7TS/mX1Fpndyp5rfWBUspvkzxnmLBdkny/UzUAANBzTb3yGqWUGR0exDWo/TwDyuAAAGjNVVny6VBJ80mkY9W0/1Udzj9aTXWtXEpZsdZ6XyeSl1JWTvPJBP167wAAnkw/2gWllJlJfpDkWQ2hDyZ5Sa31is5XBQDQN/Sk7XPQoq9u+mjD+i1JDA4AAPqZfnT0rkzywoaYRzpcwyMZfnCAzzECAP1OPzo6GzasX9KFGi7O8IMDNutCDQAA9M71SeYlmTJMzKZJLutE8jJ0okDToav92s8zoCb0ugAAGBBNDeA2Hc6/bcP67zucf1RqrTdn6CTW4XTy3jXdt3trrbd1MD8AQLvoRzuslDItQ6cIPLch9OEke9Zau/EBBgCAfqInBQCgl/Sjo3dpCzHLdbiGpv07PbgAAGCs9KOjs1LD+v92oYamHE01AgAwwGqt89L8Yn4n+/mNk8waZr0mcYgVbWVwAAC0pumh79allImdSFxKmZRkq4awfn3omzTfu6bTXMeiae9+vm8AAE+mH+2gUsrUJN9J8oKG0MeSvKLWen6nawIA6EN6UgAAekk/Onq/ayFm+U4lL6VMTjKjIWxup/IDALSJfnR0VmhYv6cLNTTlMDgAAGDp18/vNd1Qa53TwfyMQwYHAEBrfpfk0WHWZ6ZzjeIOSaYPs/5oWjshoFcuaFh/QQdzv7Bhvak2AIB+oR/tkEUfWj0tye4NoY8n2bfWem7nqwIA6Et6UgAAekk/Onqt/Fx81Q7mb2XvOzqYHwCgHfSjo7OgYX1qF2pYpmG9dqEGAAB6y3tNjCsGBwBAC2qtjyb5dUPYizuU/kUN6+cvqq9fNb1YtUspZUq7k5ZSlkmyc0PYT9udFwCgE/SjnbHoxIevJ9m7IXR+klfXWs/pfFUAAP1JTwoAQC/pR0ev1npHkqsawrbvYAnbtRBzawfzAwCMmX501B5qWF+lCzU05Xi4CzUAANBbTe81bV5KWatDuZv6ee810XYGBwBA65qasX06lHe/hvWfdChvu1yU5MFh1mck2aMDeV+WZNow67OTXNKBvAAAnaIfbaNSSklyUpL9G0IXJjm01vrtzlcFAND39KQAAPSSfnT0ftSw/pwO5m7a+6Za65wO5gcAaBf96Mjd1bC+dhdqWKdh/e4u1AAAQA/VWm9Pck1DWNv7+VLKtkk2GCakpnmoAYyYwQEA0LozGta3LaVs2s6EpZQtkzxjmJCa5rp6qtY6P8l3GsIO7kDqpj3PWlQbAMCg0I+212eTvK4hpiY5vNb6jS7UAwAwCPSkLaq1nlBrLd36aqGkDRr2WL/T9wQAoA30o6N3WsP6s0spy3Yo9+4N6xd3KC8AQLvpR0fupob1F3ahhl0b1ptqBABg6XB6w3ov3mv6Za31rx3IyzhncAAAtKjWekOSixrC3tLmtG9tWL+w1npzm3N2wtcb1vctpazZrmSllHWTvKIhrKkmAIC+oh9tn1LKJ5Ic0ULoW2qtX+50PQAAg0JPCgBAL+lHR6/WekmGP1FrepoHrY5YKWWHJNs2hP243XkBADpBPzoqv29YX7+UslmnkpdSnpFk7YawP3QqPwAAfaXpHaLnlFK2a1eyUsqMJG9oCPNeEx1hcAAAjMxJDeuHlVLWaEeiUsraSV7bEHZyO3J1wblJbhtmfXKSd7Ux37uSTBpm/dYkP29jPgCAbtGPjlEp5bgkb28h9J9rrZ/ucDkAAINITwoAQC/pR0fvSw3rR5VSJrY5Z9OLc/OTfL/NOQEAOkk/OjIXthDzzx3M/+4WYlqpEQCAAVdrvTbNvd/725jyyCQrDLP+UJIz2pgP/sbgAAAYma8m+esw69OTfLRNuT6WZJlh1u9eVE/fq7UuSHJCQ9ibSymbjjVXKeXpGWqwh/OJRTUBAAwa/egYlFLek9Ye7P5rrfW/Ol0PAMCA0pMCANBL+tHR+0KS+4dZ3zxtHPhfStk1ySENYWfVWu9tV04AgC7Qj45ArfXqJNc3hB1aStms3blLKVsnOagh7JZa6x/anRsAgL7V9LnQV5ZSXjjWJKWUVZJ8oCHsS7XWB8aaCxbH4AAAGIFa66NJTmwIe10p5VVjyVNKOSDJwQ1hJ9RaHxtjnvVLKbXh65ix5HiSLyS5b5j1yUm+VkqZMtoEpZSpSb6WZNIwYfel+SQFAIC+pB8dU663JPmPFkL/vdb67+3ICQCwNNKTAgDQS/rR0au1Ppjkkw1hx5ZSthprrlLK8hk6jbc0hH5irLkAALpJPzoq32hYn5Tk24t6yLZY9KLWmWl+X+Zb7coJAMDotdCTntymVN9Jcm1DzFfG0puWUkqSryRZbpiwx5P892hzQBODAwBg5E5IcltDzCmllB1Gs3kp5TlJvtwQdkuaHz73lVrr3CQfagjbLkNN9oh7lFLKxCSnJNmmIfQDi2oBABhUJ0Q/OiKllMPSWr3/VWv9107XAwCwFDghelIAAHrnhOhHR+s/M/y9m5LkJ6WUZ442QSllpSQ/S7JeQ+h3aq2/GW0eAIAeOiH60ZH4TJJHG2I2T/LdUsqKY01WSlktydlJNmwInZfk/401HwAAg6PWujDJPzeErZehwVbTRpnmP5Ps2RBzQq311lHuD40MDgCAEaq1PpzkHQ1hszL0w/S9RrJ3KeUVSX6cZGZD6DtrrY+MZO8+8dkkf2iIOTjJGaWUZVvdtJSyXJJvJzmwIfSKJJ9vdV8AgH6kHx2ZRScxfDHNJ1t9ptba9EAYAIDoSQEA6C396OjVWh9K8raGsFWT/KKU8sqR7l9K2SbJL5Ns2xA6N80f0AUA6Ev60ZGptf41rQ052CXJ5aWU5402VynlRUkuT9LK0IbP1VpvH20uAAAGU6317CTnNIS9MEP9/Bqt7ltKmVpK+UKSdzaE3pnkw63uC6MxqdcFAMAgqrWeUUr5RoZecl+S5ZJ8r5TyzSQfrrVes6TAUsrTk3wwzS++J8nXa61njqjgPlFrXVBKeW2Si5MsM0zoq5JsX0r5QJJv1VoXO2120QSvg5Mcm2SthvSPJHltrXXByCsHAOgv+tHWLDqJ4WtJJjaE3pqhDyC8qfNV/c05tdY7u5gPAKCt9KQAAPSSfnT0aq1nlVK+nOSNw4StkOSsUspPkxyX5NfD/ay9lLJFkrcmeVNaO8zobbXWG0ZQNgBAX9GPjti/Jdk/yYYNcesk+VUp5WdJ/ivJz2qt84a7oJQyNckeGXpBa5cW67k9yb+2GAsA0JdKKbsk2WSEl63Uwr6j+RzlL2ut14/iul45PEMDp1YZJmbnJFeWUo5L8qVa64OLCyqlTEryiiT/nmTThrwLk7x+SXtBu5Raa69rAICBVEqZmeR3aW7snvD7JBcmuSlD0/NnJdkgyU5Jtmpxj2uSbF9rnTuyahevlLL+onqGc2yt9Zh25HtS3jdl6NTXVjyQ5OdJrkhyT4ZOil05Q/ds1yTLtrjPm2qtXx5ZpQAA/Us/2tL+r0/yldFc2wUvrLX+otdFAACMhZ60f5RSmn7ou0Gt9eZu1AIA0C360THlXSbJBUme1eIl9yQ5N0NDWO9KMj/JqknWSPKCJBuNIP0na61vG0E8AEBf0o+OONfW/197dx5ubVnWjf97Mk+Kgqg4ICjiPIDzPGQ55JSpmWbiiGZvWb2/SsvCMhvebFbBCae0TDPNnDFnwQFxxARlVBRQQARkPH9/rFWSMqx77bX2vdd+Pp/juA+D57yu8/ss7r2e1bP3dd6Z/P53HLDsh5k8qOrzSb6b5HuZ/Azpbpkcets/yZ2SbD9gzwuS3Lu7PzVgDQDAhlNVr0nypLFzTD25u18z7+IZvt/92u4+cN79r6DnA5O8K7MNQj0/k3NNn0vynSSXZPKZ9DZJ7pcrH0BwWS/s7ucPTwvDbDN2AABYVd39g+kHxY9mMuX0quw/veZ1UpIHLuovfMfU3a+sqhtmMiH3qlwjyc9Nr3kdbGgAALDZ+DwKAMDYfCYFAGBMPo/Or7t/WFUPzuSHXW81w5JrJXncAlq/PslvLGAfAIDR+Tw6THcfXVWPSvK2JDvMuGyHJPeZXotwYZLHGhoAAEB3v7eqnp7klZkMp7oyOyZ5yPSa12GZ7QwVrNks0zAAgCvQ3Sdm8tT7ry+51XFJ7t/dJy25z7rp7j9M8kfr0OoF3f2CdegDALDufB4FAGBsPpMCADAmn0fn192nZ/I0rPU6NPVXSZ7U3ZeuUz8AgKXzeXSY7n5PkgclOW2E9t9L8tDufscIvQEA2IC6+9VJDkpy8ZJbvSrJ07q7l9wHkhgcAABr1t3HJblTkvcuqcV7ktypu5f9F8vrbjo84BeSLGMC7g+SPKa7D17C3gAAG4bPowAAjM1nUgAAxuTz6PymwwPuneSQJbY5M5Pv3f+WH4wFADYjn0eH6e4PJ7lDJr+v9XJ4kgO6+/3r2BMAgBXQ3a9I8tNZznCri5L8Wnc/zUBV1pPBAQCwAN19Znc/KMmBWdyHxdMymbb/4O4+a0F7bjjd/eYkt0jy1gVu+5Ykt+jutyxwTwCADcvnUQAAxuYzKQAAY/J5dH7dfUF3PyvJfZJ8foFbX5Tk0CT7+d49ALDZ+Tw6THef0t0PTvLIJJ9bYqvPJ3l0dz+gu09cYh8AAFZYd38ok3NNL0+yqAP+/5nkdt399wvaD2ZmcAAALFB3vzbJjZM8O8kxc27zlen6fbr7dYvKtpFN/xL40ZlMkX1DkvPn2Ob8JK/PZCrsY7r7lEVmBABYBT6PAgAwNp9JAQAYk8+j8+vujyTZP8lDk7w7ycVzbnVCkj/N5PV7ZnefsZiEAAAbn8+jw3T327v7gCT3TfLKJKcvYNvvJnl1kvt39+27e5EPtQIAYJPq7u9190FJbp7kJUm+P8c2FyX5tyT36+77d/e8/z8BrEl199gZAGDTqqr9kjwoyQFJbpXk+kmulmSnJOclOSfJKZn8Re9RSd7d3ceOk3bjqKodk9w/kyca3DrJfkmumclrl0xet+8l+VqSLyf5UJL/7O55Bg4AAGxaPo8CADA2n0nXR1UdfBUlf7PZnkoGADALn0fnV1W7JnlAkntk8rStffOj79tvnclw/7OSnJTkuCSfTvKx7j56hLgAABuSz6PDVFUluU2Su03/d78k10tynUxes+2npRdk8vp9J8m3khyb5EtJjkhydDskAwDAGlXVtknulcnZpltnMlBg9/zo70fPSXJ2Jn83+uUkH0vyvu6eZ+AALJTBAQAAAAAAAAAAAAAAAAAAALDCtho7AAAAAAAAAAAAAAAAAAAAADA/gwMAAAAAAAAAAAAAAAAAAABghRkcAAAAAAAAAAAAAAAAAAAAACvM4AAAAAAAAAAAAAAAAAAAAABYYQYHAAAAAAAAAAAAAAAAAAAAwAozOAAAAAAAAAAAAAAAAAAAAABWmMEBAAAAAAAAAAAAAAAAAAAAsMIMDgAAAAAAAAAAAAAAAAAAAIAVZnAAAAAAAAAAAAAAAAAAAAAArDCDAwAAAAAAAAAAAAAAAAAAAGCFGRwAAAAAAAAAAAAAAAAAAAAAK8zgAAAAAAAAAAAAAAAAAAAAAFhhBgcAAAAAAAAAAAAAAAAAAADACjM4AAAAAAAAAAAAAAAAAAAAAFaYwQEAAAAAAAAAAAAAAAAAAACwwgwOAAAAAAAAAAAAAAAAAAAAgBVmcAAAAAAAAAAAAAAAAAAAAACsMIMDAAAAAAAAAAAAAAAAAAAAYIUZHAAAAAAAAAAAAAAAAAAAAAArzOAAAAAAAAAAAAAAAAAAAAAAWGEGBwAAAAAAAAAAAAAAAAAAAMAKMzgAAAAAAAAAAAAAAAAAAAAAVpjBAQAAAAAAAAAAAAAAAAAAALDCDA4AAAAAAAAAAAAAAAAAAACAFWZwAAAAAAAAAAAAAAAAAAAAAKwwgwMAAAAAAAAAAAAAAAAAAABghRkcAAAAAAAAAAAAAAAAAAAAACvM4AAAAAAAAAAAAAAAAAAAAABYYQYHAAAAAAAAAAAAAAAAAAAAwAozOAAAAAAAAAAAAAAAAAAAAABWmMEBAAAAAAAAAAAAAAAAAAAAsMIMDgAAAAAAAAAAAAAAAAAAAIAVZnAAAAAAAAAAAAAAAAAAAAAArDCDAwAAAAAAAAAAAAAAAAAAAGCFGRwAAAAAAAAAAAAAAAAAAAAAK8zgAAAAAAAAAAAAAAAAAAAAAFhhBgcAAAAAAAAAAAAAAAAAAADACttm7AAAAAAAAAAAALCRVdXeSY6fsfzE7t57eWnmU1XbJLlTkv2T3DrJTZJcN8m1k+ycZPsk28243du7+5FX0W/vrPhrthlV1QlJbjRj+T7dfcLy0gAAAAAAALBIBgcAAAAAAAAAAMAmVFU7JHlEkickuV+SXcZNBAAAAAAAACyLwQEAAAAAAAAAbGpVtVOS6yTZKckOmTxVe+skFyW5MMn5Sc5OclZ3nzdWToBFqapdkvyfJL+Z5FojxwEAAAAAAADWgcEBAAAAAAAAwBapqnZPckCS2yfZecDSE7r7NcvIxNpU1c2T3DnJrabXTZPsmeRqA/a4IMm3knxzen09ybHT6yvdfeaCYwMsVFU9MMnLk+w1dhYAAAAAAABg/RgcAAAAAAAAAGx6VbVbJkMC7pjkDtP/3XvO7T6c5DULCcaaTJ+o/fDpdd8k11nAttsn2Wd6XV7Pk5J8PslRSY5IcqRhAsBGUVXPS/LCJDV2FgAAAAAAAGB9GRwAAAAAAAAAbCpVdc1MhgP893XHXMEhcFZTVd0zyf9J8rAkO65z+72m18Om/9xV9dUkH5xeH+ru761zJoBU1Z8l+Z2xcwAAAAAAAADjMDgAAAAAAAAAWFlVdY385JCAG4+ZieWpqocmeX6SO4+d5TIqyS2m17OTXFpVn0ryziT/0d1Hj5gN2EJU1dNjaAArpKoOnrW2u2euBQAAAAAA2JIZHAAAAAAAAACsjKq6XZKfyY+GBNxk3ESsh6q6ZZK/SfLTI0eZxVZJ7jq9XlhV9+3uD4+cCdjEquomSf567Bww0B8OqD14WSEAAAAAAAA2E4MDAAAAAAAAgFXyG0meNHYI1kdVVZLnJPmzJNuNm2ZuNXYAYNP76yQ7jx0CAAAAAAAAGJfBAQAAAAAAAABsOFV19SRvSvKQsbMAbFRVdcckD5tj6SVJjkzyuSRfSnJmknOSnDfj+jPm6AkAAAAAAAAskcEBAAAAAAAAAGwoVXWdJO9JcvuRowBsdM8eWH9hkr9Icmh3n7KEPAAAAAAAAMBIDA4AAAAAAAAAYMOoqmsn+ViSfcfOArCRVdVOSR49YMlpSR7S3Z9dUiQAAAAAAABgRAYHAAAAAAAAALAhVNXOSf4jixkacHGSLyb5dJJjkhyb5FtJzkhydpILklyUZPskOybZJcn1ptdeSW6V5NbTa5cF5AFYtPtm2PvTgYYGAAAAAAAAwOZlcAAAAAAAAAAAG8Urk9xxDesvSvKOJP+c5H3dffYMa86fXt9LctKP/2JVbZ3kdknumeQ+SX46ydXWkBFgUR4woPbw7n730pIAAAAAAAAAozM4AAAAAAAAANhSnZDks0nOSXLgqElIVf1iksfNufzcJC9J8uLuPm1xqZLuviTJUdPr76pq2yT3TvLwJI9Nct1F9gM2pu4+IUmNnePH3HlA7WFLS3EFNuhrtsXr7r3HzgAAAAAAAMByGBwAAAAAAAAAbAmOz2RIwP9c3f29JKmq+8bggFFV1TWS/MOcy/8jybO6++TFJbpi3X1RksOTHF5Vv5Hk/kken8kQgZ3XIwPA1K0G1H5gaSkAAAAAAACADcHgAAAAAAAAAGCzueyQgM8kOeq/hwSwYf12kt0Grukkz+3uP19CntkCdF+ayWHcD1TVc5I8MclBSW4zViZgy1BVeyS5xozl3+nu7ywxDgAAAAAAALABGBwAAAAAAAAArLJv5EdDAj6b5LPdfea4kRiiqnZL8msDl3WSg7r7FUuINJfu/n6SlyR5SVXdP8n/TfKgcVMBm9j1BtR+bWkpAAAAAAAAgA3D4AAAAAAAAABglXwsyTFJPpPkKEMCNoVfSrLzwDV/sZGGBvy47v5gkg9W1S2TfH/sPMCmdN0Btd6HAAAAAAAAYAtgcAAAAAAAAACwMrr7lWNnYOGePLD+y0l+fxlBFq27vzJ2BmDTGjJw5ZylpQAAAAAAAAA2jK3GDgAAAAAAAADAlqmq9kpy+4HLfqe7L15CHIBVssOA2guWlgIAAAAAAADYMAwOAAAAAAAAAGAs9xtY//Uk71pGEIAVs+3YAQAAAAAAAICNxeAAAAAAAAAAAMZyz4H1/9bdvZQkAKulxg4AAAAAAAAAbCzbjB0AAAAAAAAAgC3WzQfWf2gZIZhdVV0zya5Jrja9LklyTpLvJzm1uy8ZMR4AAAAAAAAAbLEMDgAAAAAAAABgLDcdWH/MUlJwuapq9yQPTnKvJLdMcqsk17ySJRdW1bFJvpLkP5O8p7uPX3rQEVXVdkkOSHKHJDdJsk+SvTN5nXZOslOS7ZP8MMm50+uUJMdPr6OSfKK7z1jv7GOoqmsluXOSW2fyOt0oyV6ZDKPYKT96vS5KckEmQynOSHJakhOSfCOT++vo7j5pfdPDRFXtmMnX/AH50X18oyS750f38Y5JLs3kPj4vk/v49CQnZXIf/1eSzyf5LwNXAAAAAAAAWBSDAwAAAAAAAABYd1W1TZLrDFz2nWVkWVVVdXCSP5yx/AXdffAMe26X5AlJnpzk7km2HhBpu0yGC9wqyWOm+30pyaFJXtfd3x+w14ZVVTdJ8thMhircKckOMyzbeXolk+EC9/qxPb+W5B1J/rm7P7O4tOOqqh2S/EySRya5dybDFWax/fS6epLrX8Hepyf5WJIPJ3l3d39trXnh8lRVJblrkkcl+akkt8lsP3O1dZJtk+yS5NpXUHNeVR2R5CNJ3p/kiO6+dM2hWbOqekaS681Yflp3v3SZeRahqn42kz+3ZtFJ/qy7L1hiJAAAAAAAYMGqu8fOAAAAAAAAADCaqrpvJk9Hn9WHu/u+SwmzBamqXZOcNXDZNp7M/COLHBxQVdsn+bUkz8nsByWHODfJXyX58+4+dwn7L9X09XlSkqcnueOS2x2b5MVJXrOqBzar6q5J/k+Sh2dyaHo9fC3JvyZ5fXd/ZdGbV9XeSY6fsfzE7t57zj4nZPL0+o1o0J9/6/WaLUtV3SiT+/gXs5z3xctzepJ/T/KGJB/qJfxg18B7bJ/uPmGOHntn9v/2Y3ptdx94eb9QVX+Q5AUz7tNJbtrdX19UsEWrqq2SfCOz/7f3eRcAAAAAAFbQVmMHAAAAAAAAAGCLtPNVl/yEXReeglTV3ZN8LslfZHmHY3dO8vwkx1bVLyypx8JV1c5V9btJTkhyaJY/NCBJbprkkCQnVNUzp4c9V0JVPbKqPpnkk0ken/UbGpAk+yX53SRfrqpPV9WTpgMfYJCq2r+q3pzk60l+K+s3NCBJ9kjylCQfTHJiVT2vqvZYx/78yCuSXDRjbSU5aIlZFuHBGTaU5JBlBQEAAAAAAJZnZb65DAAAAAAAAMCmUnOscXhywarqj5J8NMkt1qnlnkn+qaoOq6p5hkesm6p6ZJJjkvxpkuuOEOG6SV6W5Iiq2n+E/jOrqttW1YeSvC3JXUeOk0wGPLwmydtHzsEKqao9qurlST6T5DFJth450g2T/EmSk0fOsUXq7lMzeU+b1YFVtd2y8izAkMEGpyX512UFAQAAAAAAlsfgAAAAAAAAAADGcN4ca/ZedIgtVVVtW1WvT/L8jPOzAwcmObKqrj9C7ytVVbtX1dszOTB6w7HzJLlTJsMDnjl2kB83vY/+IslRSe4zdp7LscPYAVgNVfVLSY5N8vRsvJ+n2n7sAFuwlw6o3SPJo5YVZC2q6gZJHjJgyWHdfeGy8gAAAAAAAMuz0b7RBQAAAAAAAMCW4QdJeuCan15GkC1NVW2TyZPYf2nkKLdK8vGquunIOf5HVd0xk0PwDx87y4/ZLsnLquqw6X+/0VXV3kk+muT/y/hPZoe5VNVOVfXqJK9PsuvYedhYuvvDSb48YMmGG/Ay9fTM/j7dSV6+xCwAAAAAAMASGRwAAAAAAAAAwLrr7ouSfGfgsiFPy+WKvTTJg8cOMXWjJB+pqhuNHaSqHpfkY0n2GjvLlTgwyZuratsxQ1TV3TMZsHCXMXPAWlTVdZN8IsmTx87ChvbSAbX3qaqbLy3JHKpq6yRPHbDk/d39jWXlAQAAAAAAlsvgAAAAAAAAAADGcsLA+ltU1SOXkGOLUVW/lcmThzeS6yZ5d1Vdc6wAVfWkJP+YZPuxMgzwc0neOj0Muu6q6oFJ3p9ktP9esFZVtXeSjya53chR2Phen+ScAfXPWFaQOT00yfUH1B+yrCAAAAAAAMDybTN2AAAAAAAAAAC2WEcnuevANX9aVe/u7guWkGdTq6rbJfnTAUuOT/KeJB9P8tUkJ2dyePKiJFdLcq0kN0ty+yQPTHK3JPMeZr9FJofhH9Ddl865x1yq6slJXpWk1rjVd5McleQLmbxW30pyXpLzk+yQZJckN0py0yR3T3LLNfR8WJIXJ3nOmhIPVFUPTvJvSbZbwHYXJPlski9lcq+dkuQHSc6d/vqOmbxmeya5XpKbJ7l1kr0W0JstWFXtleRjGXaY+op0kq9k8rV/fCYDcc7O5Gv/okzu4x0zGZCyZ5J9M7mPbxo/t7USuvucqnpDkmfNuORJVfW87v7hMnMN8MwBtd9K8u/LCgIAAAAAACyfb0ABAAAAAAAAMJYjM+xAWzI5PPzGqnpsd1+yhEyb1TZJDkuy7VXUdZJ/TfJ33f2RK6k7c3odm+SdSV5YVdfL5EnLv5b5nkZ/vyS/m+RFc6ydS1XdP8nLM/8B/hOSvCaT1+Co7u4BvfdM8guZfA3cbI7ev15VX+juV8+xdrCqun2SN2dtQwNOT/KWJP+c5Ih5BoBU1R5J7pnkvpkMUNhnDXk2nO7ee5a6qjowk6/pWby2uw+cM9KmUlW7JnlX1jY04IdJ/iPJm5Ic3t1nzZFjp0wG59wrkyfC3yFrH16yYXT3CbmK309Vzfx+2d1jvzYvzeyDA3ZL8pgkr19enNlU1d5JfmbAkld198VLigMAAAAAAKyDrcYOAAAAAAAAAMAW6/2ZHFQf6lFJXj89eMlsnpZk/6uo+XySe3T3o69iaMDl6u5vdffBmTxJ++XDIyZJXlBVd5pz7SBVtW+Sf8l8D134QpJHJLlJd7+guz87ZGhAknT3qd39N0lumeTxmTzpeai/q6obz7FukOlQiHcm2WXOLb6RyYCEG3b3r3T3h+cZGpAk3X16d7+tu3+9u2+c5HZJ/l+SU+fMxhaiqrbOZHDFrebc4vuZDDbZa/o++dZ5hgYkSXef190fnL5/3CnJDZP8VibvLWww3f2lJEP+XDxoWVkGenpm//nAS5K8YolZAAAAAACAdWBwAAAAAAAAAACj6O5vJjlizuW/mORzVfXgBUbazK5zFb/+yiR37e5PrrVRd3+3uw9K8ugk5wxcvk2SQ6tqqT/PUFXbZjI0YLeBS89N8itJ9u/ud3T3pWvN0t2XdvebktwikyeYD7FzkldW1dKexj3d+7WZ7wntFyR5QZJbdveh8w4LuDLd/YXu/u1MDl4/KsnHF92DTeN5SR4w59p/TrJfd/9ed5++wExJJn8edvdfdfftktxl2s+T3zeWlw6ovUdV3XppSWYw/XPuKQOWvKu7T15WHgAAAAAAYH0YHAAAAAAAAADAmF69hrX7JXlXVR1RVY+rqu0XFWoL88Lufnp3/3CRm3b3WzM5pHvWwKX7J3nqIrNcjt9LcvuBa45JcrvuftkiBgb8uO7+fnc/fpptiPslecKi81zGszPfYesTMxlGcfAyBgb8uO6+pLvf1t33THL3JIcn6WX3ZTVU1f5Jnj/H0vOTPKG7H9fd31lwrMvV3Z/q7scl2TeToS4GCGwM/5rk2wPqD1pWkBk9Isl1B9QfuqwgAAAAAADA+jE4AAAAAAAAAIAxvSHJWp/efJdMntT+rap6ZVU9uKp2XHu0LcKLu3uew7Qz6e5PJXlQkqFDCV5YVTsvIVKq6raZPHl8iI8muVt3f30Jkf6X7n5Rkv9v4LKDq2qbRWepqr2T/PkcSz+V5I7dffRCA82ouz/Z3Q9I8rQx+rOxVNXWSV6bZNuBS89Ics/ufuPiU1217j6xu5+e5OZj9Od/6+6LkrxiwJInVtVOy8ozgyGDC05M8u5lBQEAAAAAANaPwQEAAAAAAAAAjGb6lPsXLGi73TJ5Uv27knyvqj5QVX9QVfevqqsvqMdm8p4kv73sJt19ZIYf4L52kqcsIU6SvDjDDhB/KsnPdvfZS8rzE7r7L5McMmDJTZIcuIQof5xk6MHXzyZ5YHefsYQ8g6zHoAdWwoFJbjNwzfeSPKC7j1p8nGHcxxvKoUkumbF21ySPW2KWK1RV+yb5qQFLXtHdly4rDwAAAAAAsH4MDgAAAAAAAABgbIck+dyC99whk0NzL0hyeJKzquprVfXGqvqtqrpPVV1twT1XyfeSHLheBwW7+x+TvGngst+YPil8YarqvkkeMGDJt5M8srvPWWSOGf1aki8MqP/1RTavqtsmefzAZd9M8pDuPmuRWWBeVbVDkoMHLrs4yaO6+/OLT8Qq6+5vJnn7gCUHLSvLVXhGkpqx9uIkr1piFgAAAAAAYB0ZHAAAAAAAAADAqLr7kiS/mOQHS2xTSW467fOXST6U5Oyq+mpVvaGqnlNV96yqHZeYYSP5ze7+zjr3/LVMBhbMap8kD19whhcOrH9id5+64Awz6e6Lkjw5Sc+45NZVdbcFRjg4w36u5OIkj+nu0xaYAdbqGUluMHDNc7v7w8sIw6bw0gG1d66q2y8ryOWpqu2SHDhgydu7+9tLigMAAAAAAKwzgwMAAAAAAAAAGF13/1eSX05yyTq2rSQ3S/KEJH+d5KNJvl9VR1XVS6vq56vqmuuYZ718Mcnr1rtpd5+R5M8HLvulRfWvqjsmuceAJa/v7g8sqv88uvuoJP80YMlTF9G3qm6Q4UMb/qq7P7mI/rBAvzKw/ogkL15GEDaH7j48yVcHLDloWVmuwKOS7DGg/pBlBQEAAAAAANafwQEAAAAAAAAAbAjd/bYkT0ly6Ygxtkmyf5JnJXlLkjOq6siq+u2q2mfEXIv0h90961PsF+3vkwx5Iv1DqurqC+r99AG1FyZ53oL6rtWfDKh9aFXVAno+PcnWA+pPTvJHC+gLC1NV98tkOMysLk3yrBHfH1kdLxtQ+4Sq2mVpSX7SMwfUHpvk8GUFAQAAAAAA1p/BAQAAAAAAAABsGN39uiSPSPKDsbNMbZXkzkn+PMk3quqIqnpKVe00cq55nZTk7WM17+7zk7x6wJIdMrkf1qSqdk7yiwOWHNbdp6y17yJ095eTfHzG8uskOWAt/aaDB548cNmLuvvctfSFJXjqwPp/6e6jlxGETee1SWZ9z7takscvMcv/qKqbJ7nPgCUvNygDAAAAAAA2F4MDAAAAAAAAANhQuvudSe6S5Kixs1yOuyR5VZJvVtWLqmr3sQMN9KruvnTkDC8fWP9TC+j54EwOb87qkAX0XKS3DKh94Bp7HZDkhgPqT01y2Bp7wkJV1TZJHjJw2YuWkYXNp7vPTvKPA5YctKwsP+YZA2ovSPKaJeUAAAAAAABGYnAAAAAAAAAAABtOd38lyV2TPD/JeSPHuTzXSPLcJCdU1R9V1Y4j55nVkAPoS9Hdxyf57IAl91tA258dUPv5DfjU8XcNqL3zGns9dGD9a7r7gjX2hEW7R5JrDqj/ZHd/YVlh2JReOqD2gKq609KSJKmqHZI8acCSt3b3GcvKAwAAAAAAjMPgAAAAAAAAAAA2pO6+qLtfmGS/TJ5oftHIkS7PLpkMNzimqh42dpircNx0IMNG8G8Daveqqn3mbVRVleRBA5b8+7y9lqW7v5bkuzOWH7DGdkOf0v76NfaDZXAfs1Td/fkknxiw5KBlZZl6TJLdBtQfsqwgAAAAAADAeAwOAAAAAAAAAGBD6+5vdvdTkuyb5G+SnD1uost1oyTvqKp/qKrtxw5zBf5z7ACXMTTL/mvodask1x1Q/7419Fqmz81Yd8Oq2n2eBtMnVg8ZPHBMdx8zTy9YsrsPqO0k/7qsIGxqLxlQ+7iquvrSkgwbTPCV7v7o0pIAAAAAAACjMTgAAAAAAAAAgJXQ3Sd1928k2TPJgUk+lOSSMTNdjmcn+WhV7TF2kMsx5MnIy/aZJBcOqL/NGnrdYUDtJZlk24i+MaD2xnP2uG2SbQbUf2DOPrA0VbVVktsPWPKl7v7OkuKwub0lyWkz1u6c5InLCFFVt05yjwFLDl1GDgAAAAAAYHwGBwAAAAAAAACwUrr7/O5+bXffL5MhAs9I8u9Jzhk32f+4U5JPVNXeYwf5MZ8eO8B/6+4LknxxwJK1DA44YEDtMd19/hp6LdMpA2pvMGePIUMWkuSDc/aBZbpZkl0G1LuPmUt3X5jkVQOWHLSkKEP2PS/J65aUAwAAAAAAGJnBAQAAAAAAAACsrO4+vbtf0d0PT7JbknsleX6SdyX57ojR9k3y3qq61ogZLuuSJMeOHeLH/NeA2n3X0Gf/AbXHraHPsp09oHbewQFDBzR8bs4+sEzuY9bTIZn8GTuL21TV3RbZvKp2SvLEAUv+ubvPWmQGAAAAAABg49hm7AAAAAAAAAAAsAjdfXGSj02vJElV3SSTp6gfkMkB8v2T7LFOkfZL8o6quvc025hOnD4ZeSMZMjhgzzX0GTJ04IQ19Fm28wfUznuP7zWg9vvdfeKcfWCZhtzHSfLFpaRgi9DdJ1XVfyR5+IxLnpnkkwuM8Lgkuw6oP2SBvQEAAAAAgA3G4AAAAAAAAAAANq3u/nqSryd583//u6q6YSYDBA5Icpckd06y25Ii3C3JHyV53pL2n9UpI/e/PN8cUHutqtpm6ACGqtomyXUGLHlOVT1nSI8Nasc5191wQO3X5uwByzbkPk6GDTGBy/PSzD444LFV9ZzuPnNBvQ8aUHt0d39qQX0BAAAAAIANyOAAAAAAAAAAgBVWVddIcvsRI/ywu48Ysf9g3X1ykpOTvCNJqqqS3DrJA5I8OMn9stjvp/9OVb21uz+7wD2HOm3E3ldkSKatMhkAMGTYQJJcb7p2S7MegwO+NWcPWLYh9/H3u/vcpSVhS/G+JMcl2XeG2h2S/HKSv11r06q6fSbDj2Z1yFp7AgAAAAAAG5vBAQAAAAAAAACr7fZJ/nPE/icm2XvE/mvW3Z3ki9Prr6fDGB6b5ClJ7rKAFlsl+ask91nAXvM6fcTeV2ToMINd5uhxvTnWbAaDBwdMB2hcc8CSU4f2gHWy+4Ba9zFr1t1dVS9L8uIZlxyUBQwOSPLMAbXnJPnHBfQEAAAAAAA2sC1xqj4AAAAAAAAAXKHuPqu7X97dd01y9yTvWsC2966qn1nAPvM6b8TeV+T8gfU7zNHjanOs2Qy2nmPN0GEDZ87RA9bDkHvZfcyiHJbZ/1y7RVXdey3NqmqXJI8fsOSN3f2DtfQEAAAAAAA2PoMDAAAAAAAAAOAKdPcnu/tnkzwgyTfWuN1z1p5obheO2PuKXDCwfp7BAUMPw2/Jhr5WP1xKCli7Ifey+5iF6O4zk7xpwJKD1tjy8Rk2HOeQNfYDAAAAAABWgMEBAAAAAAAAAHAVuvvwJLdN8uY1bPOgqrrhgiINddFIfa/M0EzbzdFjnmEDWyqDA9gsDA5gLC8dUPvzVbX7GnoNGTxwZHcfvYZeAAAAAADAijA4AAAAAAAAAABm0N3ndvcvJHn9nFtUkkcuLtEg247U98oMzXThHD22n2MNAAzW3Z9N8qkZy7dP8uR5+lTVnZIcMGDJIfP0AQAAAAAAVo/BAQAAAAAAAAAwzFOTfHDOtQ9dZJABthup75UZeqh/nieDXzTHmi3V+QPrd1hKCli7Ifey+5hFe8mA2mdUVc3R46ABtWcl+ec5egAAAAAAACvI4AAAAAAAAAAAGKC7L0ryi0l+MMfyu8x5SHCtdhqh51XZcWD9PIMDzhtY/yfdXZvgOnCO18rgADYLgwMY05uTfHfG2psmud+Qzavq6kkeN2DJ67p76Ps7AAAAAACwogwOAAAAAAAAAICBuvu0JH81x9Jdk9x8wXFmsccIPa/KtQfWzzOoYejggC35EPHQg6XXXEoKWLsh97L7mIXq7h8mefWAJc8c2OKJSXYeUH/IwP0BAAAAAIAVZnAAAAAAAAAAAMznLzP8YHqS7LfoIDPYiIMDhmTqJN+Zo8c5A+t3nKPHptDdndmfkp0key4rC6zR6QNq3ccsw8uSXDpj7SOr6joD9j5oQO1HuvuYAfUAAAAAAMCKMzgAAAAAAAAAYIV194e6u0a89h77NRhLd5+T5MNzLN1r0VlmcIMRel6VIZlO7+6L5+hxysD6a8/RYzM5eUDt9ZaWAtZmyH189aoa8vR2uErdfXyS98xYvm2SJ89SWFV3S3KbAVEOHVALAAAAAABsAgYHAAAAAAAAAMD83jfHmjEOXO9dVduN0PfK3GxA7alz9jg1yUUD6jfigIX1NOTA9X5LSwFrM+Q+Toa9F8GsXjqg9hlVVTPUPXPAnmckecuAegAAAAAAYBMwOAAAAAAAAAAA5vepOdaM8XTrrZPcdIS+V2bIYd3j5mnQ3ZcmOWXAkhvN02cTOXFA7dWrakt/vdiYhtzHybAnuMOs3p3k+Blr90nyM1dWUFXXTPLYAf0P6+4LB9QDAAAAAACbgMEBAAAAAAAAADC/0+dYs+PCU8zmjiP1/QlVtX2GHdb94hraHTOgds+quvYaeq26oa/z/ktJAWvjPmZ008E1hwxYctBV/PovJ9lh1vZJDh3QGwAAAAAA2CQMDgAAAAAAAACA+c0zOOCShaeYzd1H6nt57pBkuwH1X1pDr08NrN+SDxF/dmD9/ZeSAtbm2CTfH1DvPmZZXpXkghlrH1ZV17uSX7+qwQKXdXh3f31APQAAAAAAsEkYHAAAAAAAAAAA8/vBHGvOXXiK2Wykw7FDs3xuDb2GDg643xp6rbovJrloQP0DlhUE5tXdneToAUtuXVXXWVIctmDd/d0k/zxj+TZJnnp5v1BV905yiwGtDxlQCwAAAAAAbCIGBwAAAAAAAADA/HaZY81YgwP2raohBw+X6REDak/q7m+sodeRSS4dUP+za+i10rr7wgwbtHCLDXRPwWV9dEBtJXnUsoJwhWZ+X66qWmaQJXvpgNqnVdXl/TzfQQP2ODXJ2wfUAwAAAAAAm4jBAQAAAAAAAAAwvz3nWPOdhaeY3aNH7J0kqaq9k9xhwJL/XEu/7v5ekk8MWHLrqrr5WnquuP8YWP/EpaSAtXEfb3wXDqjddmkplqy7j0zy2RnL90ry4Mv+i6raPcnPD2j56u6+eEA9AAAAAACwiRgcAAAAAAAAAADzm+eA+XELTzG7p17B04zX0zMyecL3rA5fQM+3Dawf8nTnzeadA+sPrKrtl5IE5ndkktMH1N+tqm67rDBcriGDA3ZaWor18dIBtc/8sX9+cpJZ32MvTfLyAb0AAAAAAIBNZuwfBgAAAAAAAACAVXbvOdaMOTjgRkkePlbzqtohyVMGLLkgyTsW0Hro4IADq2rXBfRdOd39xQy7R/fM5GArbBjdfWmGv3c8bxlZuELnDKi9xrJCrJM3JTlzxtoHV9UNk6SqKpNhO7N6d3efNDQcAAAAAACweRgcAAAAAAAAAABzmB7oe+jAZWcmOX4JcYY4eJp9DL+a5DoD6t/V3WevtWl3H5/k8AFLrpHkd9fad4W9cmD9c6tq1Z8IzubzioH1j6mq2y0lCZfn9AG1ey4txTro7vOTHDZj+dZJnjb9v++X5KYDWh0yJBcAAAAAALD5GBwAAAAAAAAAAPO5f5J9B675yPRJ2GO6XZJfWu+mVbVbhh/Gf8MCI/ztwPpfr6r9Fth/lRyW5KIB9Xsl+YMlZYG5dPeRST4/YMlWSV424mCVLc2QwQH7LC3F+nlZkp6x9qlVtU2SZw7Y/+Qk7x6cCgAAAAAA2FQMDgAAAAAAAABgFFV136raeuwca/DHc6z54MJTzOevqura69zz75LsPqD+hCRvX2D//0hy3ID6HZO8YXp4c4vS3aclefPAZb9ZVXddRh5Yg38YWH+3JL+5jCD8hBMG1N5mWSHWS3cfl+T9M5ZfP8lTkzxyQItXdPclQ3MBAAAAAACbi8EBAAAAAAAAAIzlhUm+XFWPXrUnPFfVQZkcMB3ikgw/jL0s10pyWFWty88NVNXjkjxh4LK/XuQhyO6+NMkfDFx2pww/eLxZvCDJxQPqt03ylhEGUsCVeW2Srw9c82dVde9lhOF/+dqA2nstLcX6esmA2r/N5H11FhcneeXwOAAAAAAAwGZjcAAAAAAAAAAAY7pZkn9J8pmqeuQqDBCoqjsn+Zs5lr63u7+94Dhr8ZAkf7rsJlV1xySvHrjsjCSvWkKcf0pyxMA1B1XVHy8hy0JVWVe+kQAAEq5JREFU1SOqasdF7dfdx2b4f7frJ3lXVe26qBywFt19UZLnD1y2TZK3VdVtlxCJH/nygNq7VdX1l5Zk/bwzyUkz1m4/YN93dPepc+QBAAAAAAA2GYMDAAAAAAAAANgIDkjytiTHVNVTq2q7sQNdnukh+Pck2WGO5X+/4DiL8NtV9QfL2ryq7pDkvUmGHmj//e4+d9F5uruTPCfJpUPzVNVLqmpD/ZxFTTysqj6b5N8y7KDpLA5OcvbANXdI8t6q2n3BWQarqpuMnYEN4Z+SHDlwzW5JPlBV+y8hzyCb+D7+ZJKesXarJL+9xCzrorsvTXLoErZexp4AAAAAAMAK2lDf0AYAAAAAAABgi3ezJK9McmJVvaiqbjx2oP9WVU9M8pEk15xj+ce6+z0LjrQoL6iql1XVQg+dV9UjkxyeyQHcIT6f5BWLzHJZ3X1kkj+bY+mvJHl/Vd1gwZEGq6qdquqgTJ7Y/Y5MBm8s3PQJ1s+ZY+ldknymqm632ESzqaq7VtX7M3kvYQs3HRjy5CQ/HLh0jyQfq6rHLT7VVauqvarq0CRfHaP/snX3WUm+MGDJr1bVLy4pznp6ZZILF7jf15O8f4H7AQAAAAAAK8zgAAAAAAAAAAA2ousmeW6S46rqfVX1hKq6+hhBqurGVfWOJK9LsuMcW3SS31lsqsG+cxW//swkn6yqu6y1UVXtVlUvSfK2JLsOXH5xkmdOn8q8TH+Y4U8gT5L7J/liVT27qrZZcKarVFV3qqp/SHJKkkOS3GLZPbv7NUneOcfSvZMcWVXPr6rtFhrqclTV1lX1c1X10UyeZP6AJLXsvqyG7j4mye/PsXSnJG+qqjdW1bUXHOtyTb/O35jJgfBnJFn395p19G8DardK8saq+seq2n9JeZauu09L8pYFbvny6XAMAAAAAACAlO8bAAAAAAAAAKumqk5IcqOxcyzIC7r74LFDjKGqPpbkHgOWXJDkvUnemuR93f3tpQSbqqo7JHl2kidmbQc3X9zd/3cxqX6kqg7O5AD8LP4kyUOSXNVhy87kQOPfdvfHB+a5biaHXH89yW5D1l7GH3T3H8+5dpCq2jvJEUmuM+cWxyb5f0ne2N3nLirXZVXVVknunORhSR6V5OZXseSa06d4LzrHHpkMWthnzi2+nuTPk7y2uxf5pO1U1W2SPCHJLyfZ88d++cPdfd8F9dk7yfEzlp/Y3Xsvou8VqaoDkxw2Y/lru/vA5aW5fBvwNdsqk4EmD59zi7OT/H0m749nLCxYkqq6XpLHJnlyktv++K9398KGYAz8DLVPd5+wqN6Xk+UWSb4y5/ITknwiyTFJTk7yvSTnZzKAZlbf7u6vztl/blV1jyQfW8BWFya5QXefvoC9AAAAAACATWAzT6QGAAAAAAAAYHPZPpMDnw9Pkqo6JsnhST6e5OgkX1vLk+qrasckd0jywCSPSHKbNeZNks8n+b0F7LNWFyd5SpJP58p/VqCSPCbJY6rquCTvyeRg5lczecr9OdO9dkmye5KbJbl9kp/JZAjEWn4O4SNJXrSG9YN09wlV9eAkH0py9Tm2uGmSlyf5y6p6W5J/T/KB7j573kzTe/A2Se6eyet5nyR7zLvfonT36VX10EzuhV3n2OImmbxWf1JVb07y5iRHzDNEoKp2T3KvJPfNZKDCjefIwxaouy+tqsdncmD79nNssWuS30/yW1X1ziT/lOTweb7mp1/rd8nka/xnk9wxk/ffLUp3H1NV78vkz5Ch9p5ea/HaJAeucY/BuvvjVfX5JLdb41b/amgAAAAAAABwWQYHAAAAAAAAALCqbjG9fnX6z+dX1ZcyeQrxydPrjCTnZfIU4h8m2TbJdpkcFN8jyXUzOdS8X5JbZbHfRz8pyc929wUL3HNu3X10VT03yf+bccm+mby2v3pVhQvwtSSP6u5L1qHX/+juz1XVI5O8K8kOc25z9SRPml5dVccm+VwmT1o/Oclpmdx/5yfZetpnhyTXyOT+2zPJXpncy3sn2WrOHEvV3V+pqsdkMiBh+zm32SPJs6fXD6vqM0m+lMlrdUqSH2Ty9ZpMXqOrZfL6XD+Tr9FbZ/Kk9C3ugDWL0d3nVtXDMhkecKM5t9kx0wErSS6tqi8nOSqT+/jEJGdnch9flMl9vFOS6yS5Xibvq7fK5H7edv7fyabyx5lvcMCqe2mSQ9e4xyGLCAIAAAAAAGweBgcAAAAAAAAAsFnsmORO02ts307ywO7+5thBLqu7/7KqbpbkaWNnuYzvJHlQd393jObd/Z9V9VOZHIjfbY3bVSYHgvdbc7ANqLvfX1UPTfL2TA5Dr8UOSe45vWDddPcpVXXvJIdncpB/LbZKcpvpxRy6+2NV9aokTx07yzr7xyR/kWTXOdcf090fXmAeAAAAAABgE9iQU+oBAAAAAAAAYIV9Ocldu/urYwe5As9K8p6xQ0ydnOS+3X38mCG6+xNJ7pHkhDFzrILu/kCSByU5a+QoMLfuPinJvZN8aewsJEmek+RzY4dYT919bpLXrmGLQxeVBQAAAAAA2DwMDgAAAAAAAACAxXlLknt094ljB7ki3X1xkkdk8rTjMR2TyWu1IQYsTHPcIclbx86y0XX3RzN5rbaog75sLt19apK7JnnT2Fm2dN39gyQPSXLU2FnW2cvmXHd+ktctMggAAAAAALA5GBwAAAAAAAAAwFi+kOTisUMsyHeTPL67H9PdZ48d5qp094VJnpjkRUl6hAhvSHLn7j55hN5XqLu/192PTvLUJN8fO89AneTSdWvW/Y0kd09ySMa5h2DNuvvc7n58kmclOXfsPFuy7v52knsleXm2kPeU6cCaD86x9M3dfeai8wAAAAAAAKvP4AAAAAAAAAAARtHdv5LkukmenuS9SS4aN9FczkvyZ0lu2t0r9dTqnvi9JPdJ8rV1avudJE/o7idOnzC9IXX3q5Psm8nToDf6cItTk/xpkn27e12HHXT3D7v7WUnumeTo9ew9o9PHDsBq6O5DktwiyVvHznI5zhg7wHrp7vO6+6Akd0nyjqzjMJQRvWSONYcsPAUAAAAAALApGBwAAAAAAAAAwGi6+7vd/cruflCS3ZP8fJJXJ/nWuMmu0qlJXpjkJt393FV+8m93fzTJ7ZL8XiYH+5fhvCQvyuRw+xuX1GOhuvv06XCL2yZ5bZILRo50WWcmOSzJg5Ls1d3P6+5vjBWmuz+R5I5Jnpbkv8bKMXVxkncmeWB3P2bkLKyQ7j65ux+d5Kcy31PgF+2zSZ6a5IZjB1lv3f3p7n5EJgNcfifJJ7Oaw4Vm8Y4kQwbpfKG7j1hWGAAAAAAAYLVtM3YAAAAAAAAAAEiS7j4nyb9Or1TVLZPcb3rdO8ke46VLkpyV5D1J/iXJO7p7oz+Jfmbd/cMkL6qqFyf55SRPzuSJz2t9IMFXkhya5LXdffYa9xpFdx+T5MCq+r9Jnp7J63PzEaJ8Ncm7k7wryYe7e0Mdou3uS5K8qqpeneThSZ6d5P5Jtl6H9pcmOTKTr803dveyBmCwBejuDyb5YFUdkOQ5SX4uyS7r1P5rmfwZ+Pru/so69dywuvv4JH+R5C+qasckd8pkmMu+SW6S5DpJrpXkGkm2T7JdVu/n4e6QYffXIcsKAgAAAAAArL7q7rEzAAAAAAAAAMBVqqobJ7lzJgcHb5/kVpkcGlyWs5J8KskRST6c5CMbaVhAVR2c5A9nLH9Bdx88cP89kjwkyT0yea1vmcnhzCtyUZLjknw5yYeSvLe7jxvSc1VU1c2SPDLJgzI59Hm1Bbc4L8kXM7n/Ppbko9196oJ7LN30HnpUJoME7p4rv3+GOiGTr8sPJXn3ljYsoKqum9kHWHy7u7+6zDybWVXtkMl74aOS3CfJDRa4/Xcz+Rr/UJL3+O+05amqVyV5yozlP0hyvemgJQAAAAAAgJ9gcAAAAAAAAAAAK6uqds/kQPs+SW40vfbM5AnE10qyayZPId4+k6cQX5zkgiQXJjk/yfeSnD69Ts3k4Pux0+uE3sDfVF/24IAr6Ll7kqtnclD+akkuSXJOku8nOXUjDVZYL1W1VSYHuO+Y5KZJ9ppe10+yc5KdkuyYyZOwL8qP7r0zk5yRyb13UpLjp9dXkhzX3Zeu629kyaqqktwiyV2S7Jdk70y+bq+T//06df73a/TdTL42T0jyjUwGUxzd3d9d198ATFXVDZLcLZP7eZ/pdf1Mnhq/0/TaKpP7+IIkZ2fytX5akhMz+Tr/aib38YnrnZ+No6qunuRbmbwHzuLl3X3QEiMBAAAAAAArbpuxAwAAAAAAAADAvKaHhz86vViy6evtwPZlTA/4f2V6cQWmQzi8Tqy87j4lyb+MnYNN4fGZfWhAkhy6rCAAAAAAAMDmsNXYAQAAAAAAAAAAAGAL8/QBtZ/u7qOWlgQAAAAAANgUDA4AAAAAAAAAAACAdVJVd0xywIAlhywrCwAAAAAAsHkYHAAAAAAAAAAAAADr56ABtWcn+adlBQEAAAAAADYPgwMAAAAAAAAAAABgHVTVbkmeMGDJ67r7vGXlAQAAAAAANg+DAwAAAAAAAAAAAGB9PDPJjgPqX7asIAAAAAAAwOZicAAAAAAAAAAAAAAsWVXtmOTXByz5UHcfs6w8AAAAAADA5mJwAAAAAAAAAAAAACzfrya59oD6v1lSDgAAAAAAYBMyOAAAAAAAAAAAAACWqKquleS5A5Ycm+TflxQHAAAAAADYhAwOAAAAAAAAAAAAgOX6yyTXHFD/4u6+dFlhAAAAAACAzcfgAAAAAAAAAAAAAFiSqnp8kicNWHJyksOWFAcAAAAAANikDA4AAAAAAAAAAACAJaiqn0/y6oHL/qy7L1xGHgAAAAAAYPMyOAAAAAAAAAAAAAAWqKr2q6rXJXlLku0HLD02ySuWkwoAAAAAANjMthk7AAAAAAAAAAAAAGx0VXXXJDtc3i8luVqSaya5TZK7J7nr9N8P9TvdfdHcIQEAAAAAgC2WwQEAAAAAAAAAAABw1f4pyY2WuP+7uvttS9wfAAAAAADYxLYaOwAAAAAAAAAAAABs4c5J8itjhwAAAAAAAFaXwQEAAAAAAAAAAAAwrmd194ljhwAAAAAAAFaXwQEAAAAAAAAAAAAwnr/v7n8cOwQAAAAAALDaDA4AAAAAAAAAAACAcbwpyXPGDgEAAAAAAKw+gwMAAAAAAAAAAABgfV2S5E+T/FJ3Xzp2GAAAAAAAYPVtM3YAAAAAAAAAAAAA2IJ8OcmTu/vTYwcBAAAAAAA2j63GDgAAAAAAAAAAAACb3KVJ3pPkkUluZ2gAAAAAAACwaNuMHQAAAAAAAAAAAAA2iR8mOTPJWUm+k+QzSY5M8vHuPnXEXAAAAAAAwCZX3T12BgAAAAAAAAAAAAAAAAAAAGBOW40dAAAAAAAAAAAAAAAAAAAAAJifwQEAAAAAAAAAAAAAAAAAAACwwgwOAAAAAAAAAAAAAAAAAAAAgBVmcAAAAAAAAAAAAAAAAAAAAACsMIMDAAAAAAAAAAAAAAAAAAAAYIUZHAAAAAAAAAAAAAAAAAAAAAArzOAAAAAAAAAAAAAAAAAAAAAAWGEGBwAAAAAAAAAAAAAAAAAAAMAKMzgAAAAAAAAAAAAAAAAAAAAAVpjBAQAAAAAAAAAAAAAAAAAAALDCDA4AAAAAAAAAAAAAAAAAAACAFWZwAAAAAAAAAAAAAAAAAAAAAKwwgwMAAAAAAAAAAAAAAAAAAABghRkcAAAAAAAAAAAAAAAAAAAAACvM4AAAAAAAAAAAAAAAAAAAAABYYQYHAAAAAAAAAAAAAAAAAAAAwAozOAAAAAAAAAAAAAAAAAAAAABWmMEBAAAAAAAAAAAAAAAAAAAAsMIMDgAAAAAAAAAAAAAAAAAAAIAVZnAAAAAAAAAAAAAAAAAAAAAArDCDAwAAAAAAAAAAAAAAAAAAAGCFGRwAAAAAAAAAAAAAAAAAAAAAK8zgAAAAAAAAAAAAAAAAAAAAAFhhBgcAAAAAAAAAAAAAAAAAAADACjM4AAAAAAAAAAAAAAAAAAAAAFaYwQEAAAAAAAAAAAAAAAAAAACwwgwOAAAAAAAAAAAAAAAAAAAAgBVmcAAAAAAAAAAAAAAAAAAAAACsMIMDAAAAAAAAAAAAAAAAAAAAYIUZHAAAAAAAAAAAAAAAAAAAAAArzOAAAAAAAAAAAAAAAAAAAAAAWGEGBwAAAAAAAAAAAAAAAAAAAMAKMzgAAAAAAAAAAAAAAAAAAAAAVpjBAQAAAAAAAAAAAAAAAAAAALDCDA4AAAAAAAAAAAAAAAAAAACAFWZwAAAAAAAAAAAAAAAAAAAAAKwwgwMAAAAAAAAAAAAAAAAAAABghRkcAAAAAAAAAAAAAAAAAAAAACvs/wfvJt2ej4APowAAAABJRU5ErkJggg==" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 19, + "source": [ + "cm = onc_calc_cm(\n", + " calibrated_results.y, \n", + " calibrated_results.p_calibrated, \n", + " range_probas=[.10,.20, .30, .40, .50])\n", + "cm" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " threshold sensitivity specificity likelihood_ratio_neg \\\n", + "0.1 0.1 0.694337 0.795667 0.384159 \n", + "0.2 0.2 0.396264 0.931967 0.647808 \n", + "0.3 0.3 0.199533 0.978364 0.818169 \n", + "0.4 0.4 0.120957 0.990589 0.887394 \n", + "0.5 0.5 0.0463514 0.997798 0.955753 \n", + "\n", + " likelihood_ratio_pos tp fp tn fn total_survived \\\n", + "0.1 3.39807 5947 21712 84546 2618 106258 \n", + "0.2 5.82462 3394 7229 99029 5171 106258 \n", + "0.3 9.22226 1709 2299 103959 6856 106258 \n", + "0.4 12.8527 1036 1000 105258 7529 106258 \n", + "0.5 21.0479 397 234 106024 8168 106258 \n", + "\n", + " total_deceased \n", + "0.1 8565 \n", + "0.2 8565 \n", + "0.3 8565 \n", + "0.4 8565 \n", + "0.5 8565 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
thresholdsensitivityspecificitylikelihood_ratio_neglikelihood_ratio_postpfptnfntotal_survivedtotal_deceased
0.10.10.6943370.7956670.3841593.398075947217128454626181062588565
0.20.20.3962640.9319670.6478085.82462339472299902951711062588565
0.30.30.1995330.9783640.8181699.222261709229910395968561062588565
0.40.40.1209570.9905890.88739412.85271036100010525875291062588565
0.50.50.04635140.9977980.95575321.047939723410602481681062588565
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 19 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 20, + "source": [ + "#save (for the aucroc evaluated model)\n", + "cm.to_csv('./roc_auc/2021_xgb_nonimputed_calibrated_confusion_matrix.csv')" + ], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "interpreter": { + "hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49" + }, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/xgboost/non_imputed/5_fairness_assess_get_data_xgboost.ipynb b/xgboost/non_imputed/5_fairness_assess_get_data_xgboost.ipynb new file mode 100644 index 0000000..58a6faa --- /dev/null +++ b/xgboost/non_imputed/5_fairness_assess_get_data_xgboost.ipynb @@ -0,0 +1,202 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Data for fairness assessment\n", + "Get the columns of data we want to assess\n", + "Save for each imputation set\n", + "\n", + " inc_age = age\n", + " sex\n", + " dialtyp=type of dialysis\n", + " race" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "import psycopg2\n", + "from sqlalchemy import create_engine\n", + "\n", + "# other libraries\n", + "import numpy as np\n", + "import pandas as pd\n", + "import sys\n", + "import pickle\n", + "\n", + "print('python-' + sys.version)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 3, + "source": [ + "con = create_engine('postgresql://username:password@location/dbname')" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 3, + "source": [ + "#import only the columns we want to look at in this assessment\n", + "df = pd.read_sql_query('''SELECT usrds_id, died_in_90, inc_age, sex, dialtyp, race, hispanic, subset FROM medxpreesrd;''', con)\n", + "df.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset\n", + "0 2969676.0 0.0 72.0 2.0 1.0 2.0 2.0 8\n", + "1 2969869.0 1.0 73.0 2.0 1.0 2.0 2.0 9\n", + "2 2970021.0 0.0 55.0 2.0 1.0 1.0 1.0 8\n", + "3 2970067.0 0.0 72.0 1.0 1.0 1.0 2.0 9\n", + "4 2970686.0 0.0 49.0 2.0 1.0 2.0 2.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubset
02969676.00.072.02.01.02.02.08
12969869.01.073.02.01.02.02.09
22970021.00.055.02.01.01.01.08
32970067.00.072.01.01.01.02.09
42970686.00.049.02.01.02.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 3 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 4, + "source": [ + "#save the dataset\n", + "with open('../complete_fairness_data.pickle', 'wb') as picklefile: \n", + " pickle.dump(df, picklefile)" + ], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/xgboost/non_imputed/6_xgb_nonimputed_fairness.ipynb b/xgboost/non_imputed/6_xgb_nonimputed_fairness.ipynb new file mode 100644 index 0000000..6f891b9 --- /dev/null +++ b/xgboost/non_imputed/6_xgb_nonimputed_fairness.ipynb @@ -0,0 +1,781 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + " # Fairness" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import pickle\n", + " \n", + "import datetime\n", + "dte = datetime.datetime.now()\n", + "dte = dte.strftime(\"%Y%m%d\")\n", + "\n", + "# import custom functions\n", + "import sys\n", + "sys.path.append('../../onc_functions')\n", + "\n", + "from fairness import get_fairness_assessment\n", + "\n", + "print('python-' + sys.version)" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Calculate Fairness Assessment\n", + "- get the true y-values and the y_prediction_probability from the model\n", + "- get details to evaluate for fairness" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 3, + "source": [ + "# load results from the model\n", + "pred_df = pd.read_csv('./roc_auc/2021_xgb_nonimputed_y_proba.csv')\n", + "pred_df.drop(columns=['Unnamed: 0'],inplace=True)\n", + "pred_df.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y usrds_id\n", + "0 0.580939 1 31089.0\n", + "1 0.399797 0 34521.0\n", + "2 0.339976 0 46751.0\n", + "3 0.274023 0 50506.0\n", + "4 0.046709 0 54985.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreyusrds_id
00.580939131089.0
10.399797034521.0
20.339976046751.0
30.274023050506.0
40.046709054985.0
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 3 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 4, + "source": [ + "with open('../complete_fairness_data.pickle', 'rb') as f:\n", + " dataset = pickle.load(f)\n", + "dataset.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset\n", + "0 2969676.0 0 72.0 2.0 1.0 2.0 2.0 8\n", + "1 2969869.0 1 73.0 2.0 1.0 2.0 2.0 9\n", + "2 2970021.0 0 55.0 2.0 1.0 1.0 1.0 8\n", + "3 2970067.0 0 72.0 1.0 1.0 1.0 2.0 9\n", + "4 2970686.0 0 49.0 2.0 1.0 2.0 2.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubset
02969676.0072.02.01.02.02.08
12969869.0173.02.01.02.02.09
22970021.0055.02.01.01.01.08
32970067.0072.01.01.01.02.09
42970686.0049.02.01.02.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 4 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 5, + "source": [ + "# merge results with fairness details\n", + "data = pred_df.merge(dataset, how='left', on=['usrds_id'])\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y usrds_id died_in_90 inc_age sex dialtyp race hispanic \\\n", + "0 0.580939 1 31089.0 1 80.0 1.0 1.0 2.0 2.0 \n", + "1 0.399797 0 34521.0 0 64.0 2.0 1.0 1.0 2.0 \n", + "2 0.339976 0 46751.0 0 69.0 2.0 1.0 1.0 2.0 \n", + "3 0.274023 0 50506.0 0 73.0 2.0 NaN 1.0 2.0 \n", + "4 0.046709 0 54985.0 0 48.0 1.0 1.0 1.0 2.0 \n", + "\n", + " subset \n", + "0 9 \n", + "1 8 \n", + "2 8 \n", + "3 9 \n", + "4 8 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreyusrds_iddied_in_90inc_agesexdialtypracehispanicsubset
00.580939131089.0180.01.01.02.02.09
10.399797034521.0064.02.01.01.02.08
20.339976046751.0069.02.01.01.02.08
30.274023050506.0073.02.0NaN1.02.09
40.046709054985.0048.01.01.01.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 5 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 7, + "source": [ + "fairness = get_fairness_assessment(\n", + " data,\n", + " y_proba_col_name='score',\n", + " y_true_col_name='died_in_90')\n", + "fairness.head(39)" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Feature Value Count AUC TN FP FN TP\n", + "0 agegroup 1.0 4340 0.859782 4289 5 45 1\n", + "1 agegroup 2.0 12774 0.844446 12523 39 188 24\n", + "2 agegroup 3.0 26120 0.848271 25361 178 487 94\n", + "3 agegroup 4.0 53564 0.818192 51089 660 1548 267\n", + "4 agegroup 5.0 85076 0.799289 78955 1797 3508 816\n", + "5 agegroup 6.0 86140 0.785491 74353 4263 5370 2154\n", + "6 agegroup 7.0 62193 0.764716 46951 6974 4626 3642\n", + "7 agegroup 8.0 15098 0.748486 9194 2936 1235 1733\n", + "8 sex 1.0 198347 0.830416 173954 9746 9456 5191\n", + "9 sex 2.0 146957 0.818450 128760 7106 7551 3540\n", + "10 dialtyp 1.0 310415 0.816646 270848 15496 16115 7956\n", + "11 dialtyp 2.0 15082 0.850065 14758 44 248 32\n", + "12 dialtyp 3.0 13295 0.858981 12988 36 245 26\n", + "13 dialtyp 4.0 77 0.965753 70 3 1 3\n", + "14 dialtyp 100.0 6436 0.779859 4051 1273 398 714\n", + "15 race 1.0 230577 0.817986 196977 13823 12509 7268\n", + "16 race 2.0 93560 0.826123 85998 2552 3760 1250\n", + "17 race 3.0 3225 0.819874 3044 53 98 30\n", + "18 race 4.0 12965 0.845486 12063 325 436 141\n", + "19 race 5.0 3776 0.833047 3566 42 142 26\n", + "20 race 6.0 881 0.808297 772 48 46 15\n", + "21 race 9.0 321 0.789957 295 9 16 1\n", + "22 hispanic 1.0 51021 0.843191 47324 1198 1852 647\n", + "23 hispanic 2.0 292532 0.820216 254208 15364 15037 7923\n", + "24 hispanic 9.0 1752 0.790421 1183 290 118 161" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FeatureValueCountAUCTNFPFNTP
0agegroup1.043400.85978242895451
1agegroup2.0127740.844446125233918824
2agegroup3.0261200.8482712536117848794
3agegroup4.0535640.818192510896601548267
4agegroup5.0850760.7992897895517973508816
5agegroup6.0861400.78549174353426353702154
6agegroup7.0621930.76471646951697446263642
7agegroup8.0150980.7484869194293612351733
8sex1.01983470.830416173954974694565191
9sex2.01469570.818450128760710675513540
10dialtyp1.03104150.81664627084815496161157956
11dialtyp2.0150820.850065147584424832
12dialtyp3.0132950.858981129883624526
13dialtyp4.0770.96575370313
14dialtyp100.064360.77985940511273398714
15race1.02305770.81798619697713823125097268
16race2.0935600.82612385998255237601250
17race3.032250.8198743044539830
18race4.0129650.84548612063325436141
19race5.037760.83304735664214226
20race6.08810.808297772484615
21race9.03210.7899572959161
22hispanic1.0510210.8431914732411981852647
23hispanic2.02925320.82021625420815364150377923
24hispanic9.017520.7904211183290118161
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 7 + } + ], + "metadata": { + "scrolled": false + } + }, + { + "cell_type": "code", + "execution_count": 8, + "source": [ + "#save (for the aucroc evaluated model)\n", + "fairness.to_csv('./roc_auc/' + str(dte) + '_xgb_nonimputed_fairness.csv')" + ], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/xgboost/non_imputed/7_xgb_nonimputed_risk_categories.ipynb b/xgboost/non_imputed/7_xgb_nonimputed_risk_categories.ipynb new file mode 100644 index 0000000..b491dc0 --- /dev/null +++ b/xgboost/non_imputed/7_xgb_nonimputed_risk_categories.ipynb @@ -0,0 +1,576 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Risk categories" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "!pip install --upgrade pip\n", + "!pip install pandas" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: pip in /usr/local/lib/python3.6/dist-packages (21.0.1)\n", + "Requirement already satisfied: pandas in /usr/local/lib/python3.6/dist-packages (1.1.5)\n", + "Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.6/dist-packages (from pandas) (2.8.1)\n", + "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas) (2021.1)\n", + "Requirement already satisfied: numpy>=1.15.4 in /usr/local/lib/python3.6/dist-packages (from pandas) (1.19.5)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/dist-packages (from python-dateutil>=2.7.3->pandas) (1.15.0)\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import pickle\n", + "\n", + "import sys\n", + "sys.path.append('../../onc_functions')\n", + "from risk import get_risk_categories\n", + "\n", + "print('python-' + sys.version)\n", + "import datetime\n", + "dte = datetime.datetime.now()\n", + "dte = dte.strftime(\"%Y%m%d\")" + ], + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "python-3.6.9 (default, Oct 8 2020, 12:12:24) \n", + "[GCC 8.4.0]\n" + ] + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "source": [ + "with open('../complete_fairness_data.pickle', 'rb') as f:\n", + " dataset = pickle.load(f)\n", + "dataset.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " usrds_id died_in_90 inc_age sex dialtyp race hispanic subset\n", + "0 2969676.0 0 72.0 2.0 1.0 2.0 2.0 8\n", + "1 2969869.0 1 73.0 2.0 1.0 2.0 2.0 9\n", + "2 2970021.0 0 55.0 2.0 1.0 1.0 1.0 8\n", + "3 2970067.0 0 72.0 1.0 1.0 1.0 2.0 9\n", + "4 2970686.0 0 49.0 2.0 1.0 2.0 2.0 8" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
usrds_iddied_in_90inc_agesexdialtypracehispanicsubset
02969676.0072.02.01.02.02.08
12969869.0173.02.01.02.02.09
22970021.0055.02.01.01.01.08
32970067.0072.01.01.01.02.09
42970686.0049.02.01.02.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 2 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 3, + "source": [ + "# load results from the model\n", + "pred_df = pd.read_csv('./roc_auc/2021_xgb_nonimputed_y_proba.csv')\n", + "pred_df.drop(columns=['Unnamed: 0'],inplace=True)\n", + "pred_df.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y usrds_id\n", + "0 0.580939 1 31089.0\n", + "1 0.399797 0 34521.0\n", + "2 0.339976 0 46751.0\n", + "3 0.274023 0 50506.0\n", + "4 0.046709 0 54985.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreyusrds_id
00.580939131089.0
10.399797034521.0
20.339976046751.0
30.274023050506.0
40.046709054985.0
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 3 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 7, + "source": [ + "#merge the 2 dataframes from above \n", + "data = pred_df.merge(dataset, on=['usrds_id'])\n", + "data.head()" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " score y usrds_id died_in_90 inc_age sex dialtyp race hispanic \\\n", + "0 0.580939 1 31089.0 1 80.0 1.0 1.0 2.0 2.0 \n", + "1 0.399797 0 34521.0 0 64.0 2.0 1.0 1.0 2.0 \n", + "2 0.339976 0 46751.0 0 69.0 2.0 1.0 1.0 2.0 \n", + "3 0.274023 0 50506.0 0 73.0 2.0 NaN 1.0 2.0 \n", + "4 0.046709 0 54985.0 0 48.0 1.0 1.0 1.0 2.0 \n", + "\n", + " subset \n", + "0 9 \n", + "1 8 \n", + "2 8 \n", + "3 9 \n", + "4 8 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
scoreyusrds_iddied_in_90inc_agesexdialtypracehispanicsubset
00.580939131089.0180.01.01.02.02.09
10.399797034521.0064.02.01.01.02.08
20.339976046751.0069.02.01.01.02.08
30.274023050506.0073.02.0NaN1.02.09
40.046709054985.0048.01.01.01.02.08
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 7 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 8, + "source": [ + "risk_cat = get_risk_categories(data,\n", + " y_proba_col_name='score',\n", + " y_true_col_name='died_in_90')\n", + "risk_cat" + ], + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Risk Category Count Count Died in 90 Count Survived Percent Died in 90\n", + "0 0-0.09 148693 1702 146991 0.011446\n", + "1 0.1-0.19 75410 3256 72154 0.043177\n", + "2 0.2-0.29 44315 3722 40593 0.083990\n", + "3 0.3-0.39 29430 4064 25366 0.138090\n", + "4 0.4-0.49 20283 3893 16390 0.191934\n", + "5 0.5-0.59 13228 3399 9829 0.256955\n", + "6 0.6-0.69 7967 2679 5288 0.336262\n", + "7 0.7-0.79 4098 1827 2271 0.445827\n", + "8 0.8-0.89 1457 838 619 0.575154\n", + "9 0.9-0.99 417 351 66 0.841727" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Risk CategoryCountCount Died in 90Count SurvivedPercent Died in 90
00-0.0914869317021469910.011446
10.1-0.19754103256721540.043177
20.2-0.29443153722405930.083990
30.3-0.39294304064253660.138090
40.4-0.49202833893163900.191934
50.5-0.5913228339998290.256955
60.6-0.697967267952880.336262
70.7-0.794098182722710.445827
80.8-0.8914578386190.575154
90.9-0.99417351660.841727
\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 8 + } + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 9, + "source": [ + "#save \n", + "risk_cat.to_csv('./roc_auc/' + str(dte) + '_xgb_nonimputed_risk_cat.csv')" + ], + "outputs": [], + "metadata": {} + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/xgboost/non_imputed/__init__.py b/xgboost/non_imputed/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/xgboost/numeric_columns.pickle b/xgboost/numeric_columns.pickle new file mode 100644 index 0000000..9228b54 Binary files /dev/null and b/xgboost/numeric_columns.pickle differ